diff --git a/.gitignore b/.gitignore index b46dc164..d18813be 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,5 @@ sync.sh *.p12 *.swp +.env +/node_modules diff --git a/application/config/migration.php b/application/config/migration.php index 3832109d..652244a9 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 178; +$config['migration_version'] = 179; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index ed920caf..649fe31c 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -1,4 +1,4 @@ -load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - $this->lang->load(array( - 'lotw', - 'eqsl' - )); - } + $this->load->model('user_model'); + if (!$this->user_model->authorize(2)) { + $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + redirect('dashboard'); + } + $this->lang->load(array( + 'lotw', + 'eqsl' + )); + } - public function index() - { - // Render Page - $data['page_title'] = "Awards"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/index'); - $this->load->view('interface_assets/footer'); - } + public function index() + { + // Render Page + $data['page_title'] = "Awards"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/index'); + $this->load->view('interface_assets/footer'); + } - public function dok () - { + public function dok() + { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $CI = &get_instance(); + $CI->load->model('logbooks_model'); + $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - $this->load->model('dok'); - $this->load->model('bands'); - $this->load->model('modes'); + $this->load->model('dok'); + $this->load->model('bands'); + $this->load->model('modes'); - if($this->input->method() === 'post') { - $postdata['doks'] = $this->security->xss_clean($this->input->post('doks')); - } else { - $postdata['doks'] = 'both'; - } + if ($this->input->method() === 'post') { + $postdata['doks'] = $this->security->xss_clean($this->input->post('doks')); + } else { + $postdata['doks'] = 'both'; + } - $data['worked_bands'] = $this->bands->get_worked_bands('dok'); - $data['modes'] = $this->modes->active(); + $data['worked_bands'] = $this->bands->get_worked_bands('dok'); + $data['modes'] = $this->modes->active(); - if ($this->input->post('band') != NULL) { - if ($this->input->post('band') == 'All') { - $bands = $data['worked_bands']; - } else { - $bands[] = $this->security->xss_clean($this->input->post('band')); - } - } else { - $bands = $data['worked_bands']; - } + if ($this->input->post('band') != NULL) { + if ($this->input->post('band') == 'All') { + $bands = $data['worked_bands']; + } else { + $bands[] = $this->security->xss_clean($this->input->post('band')); + } + } else { + $bands = $data['worked_bands']; + } - $data['bands'] = $bands; + $data['bands'] = $bands; - if($this->input->method() === 'post') { - $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); - $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); - $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); - $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')); - $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); - $postdata['band'] = $this->security->xss_clean($this->input->post('band')); - $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - } else { - $postdata['qsl'] = 1; - $postdata['lotw'] = 1; - $postdata['eqsl'] = 0; - $postdata['worked'] = 1; - $postdata['confirmed'] = 1; - $postdata['band'] = 'All'; - $postdata['mode'] = 'All'; - } + if ($this->input->method() === 'post') { + $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); + $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); + $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); + $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')); + $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); + $postdata['band'] = $this->security->xss_clean($this->input->post('band')); + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + } else { + $postdata['qsl'] = 1; + $postdata['lotw'] = 1; + $postdata['eqsl'] = 0; + $postdata['worked'] = 1; + $postdata['confirmed'] = 1; + $postdata['band'] = 'All'; + $postdata['mode'] = 'All'; + } - if ($logbooks_locations_array) { - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - $data['dok_array'] = $this->dok->get_dok_array($bands, $postdata, $location_list); - $data['dok_summary'] = $this->dok->get_dok_summary($bands, $postdata, $location_list); - } else { - $location_list = null; - $data['dok_array'] = null; - $data['dok_summary'] = null; - } + if ($logbooks_locations_array) { + $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; + $data['dok_array'] = $this->dok->get_dok_array($bands, $postdata, $location_list); + $data['dok_summary'] = $this->dok->get_dok_summary($bands, $postdata, $location_list); + } else { + $location_list = null; + $data['dok_array'] = null; + $data['dok_summary'] = null; + } - // Render Page - $data['page_title'] = "Awards - DOK"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/dok/index'); - $this->load->view('interface_assets/footer'); + // Render Page + $data['page_title'] = "Awards - DOK"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/dok/index'); + $this->load->view('interface_assets/footer'); + } - } - - public function dxcc () { - $this->load->model('dxcc'); + public function dxcc() + { + $this->load->model('dxcc'); $this->load->model('modes'); $this->load->model('bands'); @@ -108,18 +112,16 @@ class Awards extends CI_Controller { if ($this->input->post('band') != NULL) { // Band is not set when page first loads. if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands $bands = $data['worked_bands']; - } - else { + } else { $bands[] = $this->security->xss_clean($this->input->post('band')); } - } - else { + } else { $bands = $data['worked_bands']; } $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - if($this->input->method() === 'post') { + if ($this->input->method() === 'post') { $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); @@ -136,8 +138,7 @@ class Awards extends CI_Controller { $postdata['Antarctica'] = $this->security->xss_clean($this->input->post('Antarctica')); $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - } - else { // Setting default values at first load of page + } else { // Setting default values at first load of page $postdata['qsl'] = 1; $postdata['lotw'] = 1; $postdata['eqsl'] = 0; @@ -156,45 +157,44 @@ class Awards extends CI_Controller { $postdata['mode'] = 'All'; } - $dxcclist = $this->dxcc->fetchdxcc($postdata); + $dxcclist = $this->dxcc->fetchdxcc($postdata); $data['dxcc_array'] = $this->dxcc->get_dxcc_array($dxcclist, $bands, $postdata); $data['dxcc_summary'] = $this->dxcc->get_dxcc_summary($bands, $postdata); - // Render Page - $data['page_title'] = "Awards - DXCC"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/dxcc/index'); - $this->load->view('interface_assets/footer'); - } + // Render Page + $data['page_title'] = "Awards - DXCC"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/dxcc/index'); + $this->load->view('interface_assets/footer'); + } - public function waja () { - $footerData = []; - $footerData['scripts'] = [ - 'assets/js/sections/wajamap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wajamap.js")) - ]; + public function waja() + { + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/wajamap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wajamap.js")) + ]; - $this->load->model('waja'); + $this->load->model('waja'); $this->load->model('modes'); $this->load->model('bands'); $data['worked_bands'] = $this->bands->get_worked_bands('waja'); $data['modes'] = $this->modes->active(); - if ($this->input->post('band') != NULL) { // Band is not set when page first loads. + if ($this->input->post('band') != NULL) { // Band is not set when page first loads. if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands $bands = $data['worked_bands']; - } - else { + } else { $bands[] = $this->security->xss_clean($this->input->post('band')); } - } - else { + } else { $bands = $data['worked_bands']; } $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - if($this->input->method() === 'post') { + if ($this->input->method() === 'post') { $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); @@ -211,8 +211,7 @@ class Awards extends CI_Controller { $postdata['Antarctica'] = $this->security->xss_clean($this->input->post('Antarctica')); $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - } - else { // Setting default values at first load of page + } else { // Setting default values at first load of page $postdata['qsl'] = 1; $postdata['lotw'] = 1; $postdata['eqsl'] = 0; @@ -234,14 +233,15 @@ class Awards extends CI_Controller { $data['waja_array'] = $this->waja->get_waja_array($bands, $postdata); $data['waja_summary'] = $this->waja->get_waja_summary($bands, $postdata); - // Render Page - $data['page_title'] = "Awards - WAJA"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/waja/index'); - $this->load->view('interface_assets/footer', $footerData); - } + // Render Page + $data['page_title'] = "Awards - WAJA"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/waja/index'); + $this->load->view('interface_assets/footer', $footerData); + } - public function vucc() { + public function vucc() + { $this->load->model('vucc'); $this->load->model('bands'); $data['worked_bands'] = $this->bands->get_worked_bands('vucc'); @@ -255,7 +255,8 @@ class Awards extends CI_Controller { $this->load->view('interface_assets/footer'); } - public function vucc_band(){ + public function vucc_band() + { $this->load->model('vucc'); $band = str_replace('"', "", $this->security->xss_clean($this->input->get("Band"))); $type = str_replace('"', "", $this->security->xss_clean($this->input->get("Type"))); @@ -263,15 +264,16 @@ class Awards extends CI_Controller { $data['type'] = $type; // Render Page - $data['page_title'] = "VUCC - " .$band . " Band"; - $data['filter'] = "band ".$band; + $data['page_title'] = "VUCC - " . $band . " Band"; + $data['filter'] = "band " . $band; $data['band'] = $band; $this->load->view('interface_assets/header', $data); $this->load->view('awards/vucc/band'); $this->load->view('interface_assets/footer'); } - public function vucc_details_ajax(){ + public function vucc_details_ajax() + { $this->load->model('logbook_model'); $gridsquare = str_replace('"', "", $this->security->xss_clean($this->input->post("Gridsquare"))); @@ -280,130 +282,133 @@ class Awards extends CI_Controller { // Render Page $data['page_title'] = "Log View - VUCC"; - $data['filter'] = "vucc " . $gridsquare . " and band ".$band; + $data['filter'] = "vucc " . $gridsquare . " and band " . $band; $this->load->view('awards/details', $data); } - /* + /* * Used to fetch QSOs from the logbook in the awards */ - public function qso_details_ajax(){ - $this->load->model('logbook_model'); + public function qso_details_ajax() + { + $this->load->model('logbook_model'); - $searchphrase = str_replace('"', "", $this->security->xss_clean($this->input->post("Searchphrase"))); - $band = str_replace('"', "", $this->security->xss_clean($this->input->post("Band"))); - $mode = str_replace('"', "", $this->security->xss_clean($this->input->post("Mode"))); - $type = $this->security->xss_clean($this->input->post('Type')); - $qsl = $this->input->post('QSL') == null ? '' : $this->security->xss_clean($this->input->post('QSL')); - $searchmode = $this->input->post('searchmode') == null ? '' : $this->security->xss_clean($this->input->post('searchmode')); - $data['results'] = $this->logbook_model->qso_details($searchphrase, $band, $mode, $type, $qsl, $searchmode); + $searchphrase = str_replace('"', "", $this->security->xss_clean($this->input->post("Searchphrase"))); + $band = str_replace('"', "", $this->security->xss_clean($this->input->post("Band"))); + $mode = str_replace('"', "", $this->security->xss_clean($this->input->post("Mode"))); + $type = $this->security->xss_clean($this->input->post('Type')); + $qsl = $this->input->post('QSL') == null ? '' : $this->security->xss_clean($this->input->post('QSL')); + $searchmode = $this->input->post('searchmode') == null ? '' : $this->security->xss_clean($this->input->post('searchmode')); + $data['results'] = $this->logbook_model->qso_details($searchphrase, $band, $mode, $type, $qsl, $searchmode); - // This is done because we have two different ways to get dxcc info in Cloudlog. Once is using the name (in awards), and the other one is using the ADIF DXCC. - // We replace the values to make it look a bit nicer - if ($type == 'DXCC2') { - $type = 'DXCC'; - $dxccname = $this->logbook_model->get_entity($searchphrase); - $searchphrase = $dxccname['name']; - } + // This is done because we have two different ways to get dxcc info in Cloudlog. Once is using the name (in awards), and the other one is using the ADIF DXCC. + // We replace the values to make it look a bit nicer + if ($type == 'DXCC2') { + $type = 'DXCC'; + $dxccname = $this->logbook_model->get_entity($searchphrase); + $searchphrase = $dxccname['name']; + } - $qsltype = []; - if (strpos($qsl, "Q") !== false) { - $qsltype[] = "QSL"; - } - if (strpos($qsl, "L") !== false) { - $qsltype[] = "LoTW"; - } - if (strpos($qsl, "E") !== false) { - $qsltype[] = "eQSL"; - } + $qsltype = []; + if (strpos($qsl, "Q") !== false) { + $qsltype[] = "QSL"; + } + if (strpos($qsl, "L") !== false) { + $qsltype[] = "LoTW"; + } + if (strpos($qsl, "E") !== false) { + $qsltype[] = "eQSL"; + } - // Render Page - $data['page_title'] = "Log View - " . $type; - $data['filter'] = $type . " " . $searchphrase . " and band ".$band . " and mode ".$mode; - if (!empty($qsltype)) { - $data['filter'] .= " and ".implode('/', $qsltype); - } - $this->load->view('awards/details', $data); - } + // Render Page + $data['page_title'] = "Log View - " . $type; + $data['filter'] = $type . " " . $searchphrase . " and band " . $band . " and mode " . $mode; + if (!empty($qsltype)) { + $data['filter'] .= " and " . implode('/', $qsltype); + } + $this->load->view('awards/details', $data); + } - /* + /* Handles showing worked SOTAs Comment field - SOTA:# */ - public function sota() { + public function sota() + { - // Grab all worked sota stations - $this->load->model('sota'); - $data['sota_all'] = $this->sota->get_all(); + // Grab all worked sota stations + $this->load->model('sota'); + $data['sota_all'] = $this->sota->get_all(); - // Render page - $data['page_title'] = "Awards - SOTA"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/sota/index'); - $this->load->view('interface_assets/footer'); - } + // Render page + $data['page_title'] = "Awards - SOTA"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/sota/index'); + $this->load->view('interface_assets/footer'); + } - /* + /* Handles showing worked WWFFs Comment field - WWFF:# */ - public function wwff() { + public function wwff() + { - // Grab all worked wwff stations - $this->load->model('wwff'); - $data['wwff_all'] = $this->wwff->get_all(); + // Grab all worked wwff stations + $this->load->model('wwff'); + $data['wwff_all'] = $this->wwff->get_all(); - // Render page - $data['page_title'] = "Awards - WWFF"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/wwff/index'); - $this->load->view('interface_assets/footer'); - } + // Render page + $data['page_title'] = "Awards - WWFF"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/wwff/index'); + $this->load->view('interface_assets/footer'); + } - /* + /* Handles showing worked POTAs Comment field - POTA:# */ - public function pota() { + public function pota() + { - // Grab all worked pota stations - $this->load->model('pota'); - $data['pota_all'] = $this->pota->get_all(); + // Grab all worked pota stations + $this->load->model('pota'); + $data['pota_all'] = $this->pota->get_all(); - // Render page - $data['page_title'] = "Awards - POTA"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/pota/index'); - $this->load->view('interface_assets/footer'); - } + // Render page + $data['page_title'] = "Awards - POTA"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/pota/index'); + $this->load->view('interface_assets/footer'); + } - public function cq() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + public function cq() + { + $CI = &get_instance(); + $CI->load->model('logbooks_model'); + $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->load->model('cq'); - $this->load->model('modes'); + $this->load->model('modes'); $this->load->model('bands'); $data['worked_bands'] = $this->bands->get_worked_bands('cq'); - $data['modes'] = $this->modes->active(); // Used in the view for mode select + $data['modes'] = $this->modes->active(); // Used in the view for mode select if ($this->input->post('band') != NULL) { // Band is not set when page first loads. if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands $bands = $data['worked_bands']; - } - else { + } else { $bands[] = $this->input->post('band'); } - } - else { + } else { $bands = $data['worked_bands']; } $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - if($this->input->method() === 'post') { + if ($this->input->method() === 'post') { $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); @@ -411,9 +416,8 @@ class Awards extends CI_Controller { $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')); $postdata['band'] = $this->security->xss_clean($this->input->post('band')); - $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - } - else { // Setting default values at first load of page + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + } else { // Setting default values at first load of page $postdata['qsl'] = 1; $postdata['lotw'] = 1; $postdata['eqsl'] = 0; @@ -421,14 +425,14 @@ class Awards extends CI_Controller { $postdata['confirmed'] = 1; $postdata['notworked'] = 1; $postdata['band'] = 'All'; - $postdata['mode'] = 'All'; + $postdata['mode'] = 'All'; } if ($logbooks_locations_array) { - $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; $data['cq_array'] = $this->cq->get_cq_array($bands, $postdata, $location_list); $data['cq_summary'] = $this->cq->get_cq_summary($bands, $postdata, $location_list); - } else { + } else { $location_list = null; $data['cq_array'] = null; $data['cq_summary'] = null; @@ -436,39 +440,38 @@ class Awards extends CI_Controller { // Render page $data['page_title'] = "Awards - CQ Magazine WAZ"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/cq/index'); - $this->load->view('interface_assets/footer'); - } + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/cq/index'); + $this->load->view('interface_assets/footer'); + } - public function was() { - $footerData = []; - $footerData['scripts'] = [ - 'assets/js/sections/wasmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wasmap.js")) - ]; + public function was() + { + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/wasmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wasmap.js")) + ]; $this->load->model('was'); - $this->load->model('modes'); + $this->load->model('modes'); $this->load->model('bands'); $data['worked_bands'] = $this->bands->get_worked_bands('was'); - $data['modes'] = $this->modes->active(); // Used in the view for mode select + $data['modes'] = $this->modes->active(); // Used in the view for mode select if ($this->input->post('band') != NULL) { // Band is not set when page first loads. if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands $bands = $data['worked_bands']; - } - else { + } else { $bands[] = $this->security->xss_clean($this->input->post('band')); } - } - else { + } else { $bands = $data['worked_bands']; } $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - if($this->input->method() === 'post') { + if ($this->input->method() === 'post') { $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); @@ -476,9 +479,8 @@ class Awards extends CI_Controller { $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')); $postdata['band'] = $this->security->xss_clean($this->input->post('band')); - $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - } - else { // Setting default values at first load of page + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + } else { // Setting default values at first load of page $postdata['qsl'] = 1; $postdata['lotw'] = 1; $postdata['eqsl'] = 0; @@ -486,7 +488,7 @@ class Awards extends CI_Controller { $postdata['confirmed'] = 1; $postdata['notworked'] = 1; $postdata['band'] = 'All'; - $postdata['mode'] = 'All'; + $postdata['mode'] = 'All'; } $data['was_array'] = $this->was->get_was_array($bands, $postdata); @@ -498,10 +500,42 @@ class Awards extends CI_Controller { $this->load->view('awards/was/index'); $this->load->view('interface_assets/footer', $footerData); } + public function wab() + { + // get worked squares from Worked_all_britain_model + $this->load->model('worked_all_britain_model'); + $data['worked_squares'] = array_filter($this->worked_all_britain_model->get_worked_squares()); - public function iota () { + $data['confirmed_squares'] = array_filter($this->worked_all_britain_model->get_confirmed_squares()); + + // Render page + $data['page_title'] = "Awards - Worked All Britain"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/wab/index'); + $this->load->view('interface_assets/footer'); + } + + public function wab_details_ajax() + { + $this->load->model('logbook_model'); + + $wab = str_replace('"', "", $this->security->xss_clean($this->input->post("Wab"))); + + $wab = str_replace(["Small Square ", " Boundry Box"], "", $wab); + + $data['results'] = $this->logbook_model->wab_qso_details($wab); + + // Render Page + $data['page_title'] = "Log View - WAB"; + $data['filter'] = "WAB " . $wab; + $this->load->view('awards/wab/details', $data); + } + + + public function iota() + { $this->load->model('iota'); - $this->load->model('modes'); + $this->load->model('modes'); $this->load->model('bands'); $data['worked_bands'] = $this->bands->get_worked_bands('iota'); // Used in the view for band select @@ -509,19 +543,17 @@ class Awards extends CI_Controller { if ($this->input->post('band') != NULL) { // Band is not set when page first loads. if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands $bands = $data['worked_bands']; - } - else { + } else { $bands[] = $this->security->xss_clean($this->input->post('band')); } - } - else { + } else { $bands = $data['worked_bands']; } $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - $data['modes'] = $this->modes->active(); // Used in the view for mode select + $data['modes'] = $this->modes->active(); // Used in the view for mode select - if($this->input->method() === 'post') { + if ($this->input->method() === 'post') { $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')); $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')); @@ -534,9 +566,8 @@ class Awards extends CI_Controller { $postdata['Oceania'] = $this->security->xss_clean($this->input->post('Oceania')); $postdata['Antarctica'] = $this->security->xss_clean($this->input->post('Antarctica')); $postdata['band'] = $this->security->xss_clean($this->input->post('band')); - $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - } - else { // Setting default values at first load of page + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + } else { // Setting default values at first load of page $postdata['worked'] = 1; $postdata['confirmed'] = 1; $postdata['notworked'] = 1; @@ -549,7 +580,7 @@ class Awards extends CI_Controller { $postdata['Oceania'] = 1; $postdata['Antarctica'] = 1; $postdata['band'] = 'All'; - $postdata['mode'] = 'All'; + $postdata['mode'] = 'All'; } $iotalist = $this->iota->fetchIota($postdata); @@ -563,7 +594,8 @@ class Awards extends CI_Controller { $this->load->view('interface_assets/footer'); } - public function counties() { + public function counties() + { $this->load->model('counties'); $data['counties_array'] = $this->counties->get_counties_array(); @@ -574,7 +606,8 @@ class Awards extends CI_Controller { $this->load->view('interface_assets/footer'); } - public function counties_details() { + public function counties_details() + { $this->load->model('counties'); $state = str_replace('"', "", $this->security->xss_clean($this->input->get("State"))); $type = str_replace('"', "", $this->security->xss_clean($this->input->get("Type"))); @@ -583,13 +616,14 @@ class Awards extends CI_Controller { // Render Page $data['page_title'] = "US Counties"; - $data['filter'] = $type . " counties in state ".$state; + $data['filter'] = $type . " counties in state " . $state; $this->load->view('interface_assets/header', $data); $this->load->view('awards/counties/details'); $this->load->view('interface_assets/footer'); } - public function counties_details_ajax(){ + public function counties_details_ajax() + { $this->load->model('logbook_model'); $state = str_replace('"', "", $this->security->xss_clean($this->input->post("State"))); @@ -602,297 +636,305 @@ class Awards extends CI_Controller { $this->load->view('awards/details', $data); } - public function gridmaster($dxcc) { - $dxcc = $this->security->xss_clean($dxcc); - $data['page_title'] = "Awards - ".strtoupper($dxcc)." Gridmaster"; + public function gridmaster($dxcc) + { + $dxcc = $this->security->xss_clean($dxcc); + $data['page_title'] = "Awards - " . strtoupper($dxcc) . " Gridmaster"; - $this->load->model('bands'); - $this->load->model('gridmap_model'); - $this->load->model('stations'); + $this->load->model('bands'); + $this->load->model('gridmap_model'); + $this->load->model('stations'); - $data['homegrid']= explode(',', $this->stations->find_gridsquare()); + $data['homegrid'] = explode(',', $this->stations->find_gridsquare()); - $data['modes'] = $this->gridmap_model->get_worked_modes(); - $data['bands']= $this->bands->get_worked_bands(); - $data['sats_available']= $this->bands->get_worked_sats(); + $data['modes'] = $this->gridmap_model->get_worked_modes(); + $data['bands'] = $this->bands->get_worked_bands(); + $data['sats_available'] = $this->bands->get_worked_sats(); - $data['layer']= $this->optionslib->get_option('option_map_tile_server'); + $data['layer'] = $this->optionslib->get_option('option_map_tile_server'); - $data['attribution']= $this->optionslib->get_option('option_map_tile_server_copyright'); + $data['attribution'] = $this->optionslib->get_option('option_map_tile_server_copyright'); - $data['gridsquares_gridsquares']= lang('gridsquares_gridsquares'); - $data['gridsquares_gridsquares_worked']= lang('gridsquares_gridsquares_worked'); - $data['gridsquares_gridsquares_lotw']= lang('gridsquares_gridsquares_lotw'); - $data['gridsquares_gridsquares_paper']= lang('gridsquares_gridsquares_paper'); + $data['gridsquares_gridsquares'] = lang('gridsquares_gridsquares'); + $data['gridsquares_gridsquares_worked'] = lang('gridsquares_gridsquares_worked'); + $data['gridsquares_gridsquares_lotw'] = lang('gridsquares_gridsquares_lotw'); + $data['gridsquares_gridsquares_paper'] = lang('gridsquares_gridsquares_paper'); - $indexData['dxcc'] = $dxcc; + $indexData['dxcc'] = $dxcc; - $footerData = []; - $footerData['scripts']= [ - 'assets/js/leaflet/geocoding.js', - 'assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js', - 'assets/js/sections/gridmaster.js' - ]; + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/leaflet/geocoding.js', + 'assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js', + 'assets/js/sections/gridmaster.js' + ]; - $this->load->view('interface_assets/header',$data); - $this->load->view('awards/gridmaster/index',$indexData); - $this->load->view('interface_assets/footer',$footerData); + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/gridmaster/index', $indexData); + $this->load->view('interface_assets/footer', $footerData); } - public function ffma() { - $data['page_title'] = "Awards - Fred Fish Memorial Award (FFMA)"; + public function ffma() + { + $data['page_title'] = "Awards - Fred Fish Memorial Award (FFMA)"; - $this->load->model('bands'); - $this->load->model('ffma_model'); - $this->load->model('stations'); + $this->load->model('bands'); + $this->load->model('ffma_model'); + $this->load->model('stations'); - $data['homegrid']= explode(',', $this->stations->find_gridsquare()); + $data['homegrid'] = explode(',', $this->stations->find_gridsquare()); - $data['layer']= $this->optionslib->get_option('option_map_tile_server'); + $data['layer'] = $this->optionslib->get_option('option_map_tile_server'); - $data['attribution']= $this->optionslib->get_option('option_map_tile_server_copyright'); + $data['attribution'] = $this->optionslib->get_option('option_map_tile_server_copyright'); - $data['gridsquares_gridsquares']= lang('gridsquares_gridsquares'); - $data['gridsquares_gridsquares_worked']= lang('gridsquares_gridsquares_worked'); - $data['gridsquares_gridsquares_lotw']= lang('gridsquares_gridsquares_lotw'); - $data['gridsquares_gridsquares_paper']= lang('gridsquares_gridsquares_paper'); - $data['grid_count'] = $this->ffma_model->get_grid_count(); - $data['grids'] = $this->ffma_model->get_grids(); + $data['gridsquares_gridsquares'] = lang('gridsquares_gridsquares'); + $data['gridsquares_gridsquares_worked'] = lang('gridsquares_gridsquares_worked'); + $data['gridsquares_gridsquares_lotw'] = lang('gridsquares_gridsquares_lotw'); + $data['gridsquares_gridsquares_paper'] = lang('gridsquares_gridsquares_paper'); + $data['grid_count'] = $this->ffma_model->get_grid_count(); + $data['grids'] = $this->ffma_model->get_grids(); - $footerData = []; - $footerData['scripts']= [ - 'assets/js/leaflet/geocoding.js', - 'assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js', - 'assets/js/sections/ffma.js' - ]; + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/leaflet/geocoding.js', + 'assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js', + 'assets/js/sections/ffma.js' + ]; - $this->load->view('interface_assets/header',$data); - $this->load->view('awards/ffma/index'); - $this->load->view('interface_assets/footer',$footerData); - } + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/ffma/index'); + $this->load->view('interface_assets/footer', $footerData); + } - public function getFfmaGridsjs() { - $this->load->model('ffma_model'); + public function getFfmaGridsjs() + { + $this->load->model('ffma_model'); - $array_grid_4char = array(); - $array_grid_4char_lotw = array(); - $array_grid_4char_paper = array(); + $array_grid_4char = array(); + $array_grid_4char_lotw = array(); + $array_grid_4char_paper = array(); - $grid_4char = ""; - $grid_4char_lotw = ""; + $grid_4char = ""; + $grid_4char_lotw = ""; - $query = $this->ffma_model->get_lotw(); - if ($query && $query->num_rows() > 0) { - foreach ($query->result() as $row) { - $grid_4char_lotw = strtoupper(substr($row->GRID_SQUARES,0,4)); - if(!in_array($grid_4char_lotw, $array_grid_4char_lotw)){ - array_push($array_grid_4char_lotw, $grid_4char_lotw); - } - } - } + $query = $this->ffma_model->get_lotw(); + if ($query && $query->num_rows() > 0) { + foreach ($query->result() as $row) { + $grid_4char_lotw = strtoupper(substr($row->GRID_SQUARES, 0, 4)); + if (!in_array($grid_4char_lotw, $array_grid_4char_lotw)) { + array_push($array_grid_4char_lotw, $grid_4char_lotw); + } + } + } - $query = $this->ffma_model->get_paper(); - if ($query && $query->num_rows() > 0) { - foreach ($query->result() as $row) { - $grid_4char_paper = strtoupper(substr($row->GRID_SQUARES,0,4)); - if(!in_array($grid_4char_paper, $array_grid_4char_paper)){ - array_push($array_grid_4char_paper, $grid_4char_paper); - } - } - } + $query = $this->ffma_model->get_paper(); + if ($query && $query->num_rows() > 0) { + foreach ($query->result() as $row) { + $grid_4char_paper = strtoupper(substr($row->GRID_SQUARES, 0, 4)); + if (!in_array($grid_4char_paper, $array_grid_4char_paper)) { + array_push($array_grid_4char_paper, $grid_4char_paper); + } + } + } - $query = $this->ffma_model->get_worked(); - if ($query && $query->num_rows() > 0) { - foreach ($query->result() as $row) { - $grid_four = strtoupper(substr($row->GRID_SQUARES,0,4)); - if(!in_array($grid_four, $array_grid_4char)){ - array_push($array_grid_4char, $grid_four); - } - } - } + $query = $this->ffma_model->get_worked(); + if ($query && $query->num_rows() > 0) { + foreach ($query->result() as $row) { + $grid_four = strtoupper(substr($row->GRID_SQUARES, 0, 4)); + if (!in_array($grid_four, $array_grid_4char)) { + array_push($array_grid_4char, $grid_four); + } + } + } - $vucc_grids = $this->ffma_model->get_vucc_lotw(); - foreach($vucc_grids as $key) { - $grid_four_lotw = strtoupper(substr($key,0,4)); - if(!in_array($grid_four_lotw, $array_grid_4char_lotw)){ - array_push($array_grid_4char_lotw, $grid_four_lotw); - } - } + $vucc_grids = $this->ffma_model->get_vucc_lotw(); + foreach ($vucc_grids as $key) { + $grid_four_lotw = strtoupper(substr($key, 0, 4)); + if (!in_array($grid_four_lotw, $array_grid_4char_lotw)) { + array_push($array_grid_4char_lotw, $grid_four_lotw); + } + } - $vucc_grids = $this->ffma_model->get_vucc_paper(); - foreach($vucc_grids as $key) { - $grid_four_paper = strtoupper(substr($key,0,4)); - if(!in_array($grid_four_paper, $array_grid_4char_paper)){ - array_push($array_grid_4char_paper, $grid_four_paper); - } - } + $vucc_grids = $this->ffma_model->get_vucc_paper(); + foreach ($vucc_grids as $key) { + $grid_four_paper = strtoupper(substr($key, 0, 4)); + if (!in_array($grid_four_paper, $array_grid_4char_paper)) { + array_push($array_grid_4char_paper, $grid_four_paper); + } + } - $vucc_grids = $this->ffma_model->get_vucc_worked(); - foreach($vucc_grids as $key) { - $grid_four = strtoupper(substr($key,0,4)); - if(!in_array($grid_four, $array_grid_4char)){ - array_push($array_grid_4char, $grid_four); - } - } + $vucc_grids = $this->ffma_model->get_vucc_worked(); + foreach ($vucc_grids as $key) { + $grid_four = strtoupper(substr($key, 0, 4)); + if (!in_array($grid_four, $array_grid_4char)) { + array_push($array_grid_4char, $grid_four); + } + } - $data['grid_4char_lotw'] = ($array_grid_4char_lotw); - $data['grid_4char_paper'] = ($array_grid_4char_paper); - $data['grid_4char'] = ($array_grid_4char); - $data['grid_count'] = $this->ffma_model->get_grid_count(); - $data['grids'] = $this->ffma_model->get_grids(); + $data['grid_4char_lotw'] = ($array_grid_4char_lotw); + $data['grid_4char_paper'] = ($array_grid_4char_paper); + $data['grid_4char'] = ($array_grid_4char); + $data['grid_count'] = $this->ffma_model->get_grid_count(); + $data['grids'] = $this->ffma_model->get_grids(); - header('Content-Type: application/json'); - echo json_encode($data); - } + header('Content-Type: application/json'); + echo json_encode($data); + } - public function getGridmasterGridsjs($dxcc) { - $this->load->model('gridmaster_model'); + public function getGridmasterGridsjs($dxcc) + { + $this->load->model('gridmaster_model'); - $dxcc = $this->security->xss_clean($dxcc); + $dxcc = $this->security->xss_clean($dxcc); - $array_grid_4char = array(); - $array_grid_4char_lotw = array(); - $array_grid_4char_paper = array(); + $array_grid_4char = array(); + $array_grid_4char_lotw = array(); + $array_grid_4char_paper = array(); - $grid_4char = ""; - $grid_4char_lotw = ""; + $grid_4char = ""; + $grid_4char_lotw = ""; - $query = $this->gridmaster_model->get_lotw($dxcc); - if ($query && $query->num_rows() > 0) { - foreach ($query->result() as $row) { - $grid_4char_lotw = strtoupper(substr($row->GRID_SQUARES,0,4)); - if(!in_array($grid_4char_lotw, $array_grid_4char_lotw)){ - array_push($array_grid_4char_lotw, $grid_4char_lotw); - } - } - } + $query = $this->gridmaster_model->get_lotw($dxcc); + if ($query && $query->num_rows() > 0) { + foreach ($query->result() as $row) { + $grid_4char_lotw = strtoupper(substr($row->GRID_SQUARES, 0, 4)); + if (!in_array($grid_4char_lotw, $array_grid_4char_lotw)) { + array_push($array_grid_4char_lotw, $grid_4char_lotw); + } + } + } - $query = $this->gridmaster_model->get_paper($dxcc); - if ($query && $query->num_rows() > 0) { - foreach ($query->result() as $row) { - $grid_4char_paper = strtoupper(substr($row->GRID_SQUARES,0,4)); - if(!in_array($grid_4char_paper, $array_grid_4char_paper)){ - array_push($array_grid_4char_paper, $grid_4char_paper); - } - } - } + $query = $this->gridmaster_model->get_paper($dxcc); + if ($query && $query->num_rows() > 0) { + foreach ($query->result() as $row) { + $grid_4char_paper = strtoupper(substr($row->GRID_SQUARES, 0, 4)); + if (!in_array($grid_4char_paper, $array_grid_4char_paper)) { + array_push($array_grid_4char_paper, $grid_4char_paper); + } + } + } - $query = $this->gridmaster_model->get_worked($dxcc); - if ($query && $query->num_rows() > 0) { - foreach ($query->result() as $row) { - $grid_four = strtoupper(substr($row->GRID_SQUARES,0,4)); - if(!in_array($grid_four, $array_grid_4char)){ - array_push($array_grid_4char, $grid_four); - } - } - } + $query = $this->gridmaster_model->get_worked($dxcc); + if ($query && $query->num_rows() > 0) { + foreach ($query->result() as $row) { + $grid_four = strtoupper(substr($row->GRID_SQUARES, 0, 4)); + if (!in_array($grid_four, $array_grid_4char)) { + array_push($array_grid_4char, $grid_four); + } + } + } - $vucc_grids = $this->gridmaster_model->get_vucc_lotw($dxcc); - foreach($vucc_grids as $key) { - $grid_four_lotw = strtoupper(substr($key,0,4)); - if(!in_array($grid_four_lotw, $array_grid_4char_lotw)){ - array_push($array_grid_4char_lotw, $grid_four_lotw); - } - } + $vucc_grids = $this->gridmaster_model->get_vucc_lotw($dxcc); + foreach ($vucc_grids as $key) { + $grid_four_lotw = strtoupper(substr($key, 0, 4)); + if (!in_array($grid_four_lotw, $array_grid_4char_lotw)) { + array_push($array_grid_4char_lotw, $grid_four_lotw); + } + } - $vucc_grids = $this->gridmaster_model->get_vucc_paper($dxcc); - foreach($vucc_grids as $key) { - $grid_four_paper = strtoupper(substr($key,0,4)); - if(!in_array($grid_four_paper, $array_grid_4char_paper)){ - array_push($array_grid_4char_paper, $grid_four_paper); - } - } + $vucc_grids = $this->gridmaster_model->get_vucc_paper($dxcc); + foreach ($vucc_grids as $key) { + $grid_four_paper = strtoupper(substr($key, 0, 4)); + if (!in_array($grid_four_paper, $array_grid_4char_paper)) { + array_push($array_grid_4char_paper, $grid_four_paper); + } + } - $vucc_grids = $this->gridmaster_model->get_vucc_worked($dxcc); - foreach($vucc_grids as $key) { - $grid_four = strtoupper(substr($key,0,4)); - if(!in_array($grid_four, $array_grid_4char)){ - array_push($array_grid_4char, $grid_four); - } - } + $vucc_grids = $this->gridmaster_model->get_vucc_worked($dxcc); + foreach ($vucc_grids as $key) { + $grid_four = strtoupper(substr($key, 0, 4)); + if (!in_array($grid_four, $array_grid_4char)) { + array_push($array_grid_4char, $grid_four); + } + } - $data['grid_4char_lotw'] = ($array_grid_4char_lotw); - $data['grid_4char_paper'] = ($array_grid_4char_paper); - $data['grid_4char'] = ($array_grid_4char); - $data['grid_count'] = $this->gridmaster_model->get_grid_count($dxcc); - $data['grids'] = $this->gridmaster_model->get_grids($dxcc); - $data['lat'] = $this->gridmaster_model->get_lat($dxcc); - $data['lon'] = $this->gridmaster_model->get_lon($dxcc); - $data['zoom'] = $this->gridmaster_model->get_zoom($dxcc); + $data['grid_4char_lotw'] = ($array_grid_4char_lotw); + $data['grid_4char_paper'] = ($array_grid_4char_paper); + $data['grid_4char'] = ($array_grid_4char); + $data['grid_count'] = $this->gridmaster_model->get_grid_count($dxcc); + $data['grids'] = $this->gridmaster_model->get_grids($dxcc); + $data['lat'] = $this->gridmaster_model->get_lat($dxcc); + $data['lon'] = $this->gridmaster_model->get_lon($dxcc); + $data['zoom'] = $this->gridmaster_model->get_zoom($dxcc); - header('Content-Type: application/json'); - echo json_encode($data); - } + header('Content-Type: application/json'); + echo json_encode($data); + } - /* + /* Handles showing worked Sigs Adif fields: my_sig */ - public function sig() { - // Grab all worked sig stations - $this->load->model('sig'); + public function sig() + { + // Grab all worked sig stations + $this->load->model('sig'); - $data['sig_types'] = $this->sig->get_all_sig_types(); + $data['sig_types'] = $this->sig->get_all_sig_types(); - // Render page - $data['page_title'] = "Awards - SIG"; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/sig/index'); - $this->load->view('interface_assets/footer'); - } + // Render page + $data['page_title'] = "Awards - SIG"; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/sig/index'); + $this->load->view('interface_assets/footer'); + } - /* + /* Handles showing worked Sigs */ - public function sig_details() { + public function sig_details() + { - // Grab all worked sig stations - $this->load->model('sig'); - $type = str_replace('"', "", $this->security->xss_clean($this->input->get("type"))); - $data['sig_all'] = $this->sig->get_all($type); - $data['type'] = $type; + // Grab all worked sig stations + $this->load->model('sig'); + $type = str_replace('"', "", $this->security->xss_clean($this->input->get("type"))); + $data['sig_all'] = $this->sig->get_all($type); + $data['type'] = $type; - // Render page - $data['page_title'] = "Awards - SIG - " . $type; - $this->load->view('interface_assets/header', $data); - $this->load->view('awards/sig/qso_list'); - $this->load->view('interface_assets/footer'); - } + // Render page + $data['page_title'] = "Awards - SIG - " . $type; + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/sig/qso_list'); + $this->load->view('interface_assets/footer'); + } - /* + /* Handles exporting SIGS to ADIF */ - public function sigexportadif() { - // Set memory limit to unlimited to allow heavy usage - ini_set('memory_limit', '-1'); + public function sigexportadif() + { + // Set memory limit to unlimited to allow heavy usage + ini_set('memory_limit', '-1'); - $this->load->model('adif_data'); + $this->load->model('adif_data'); - $type = $this->security->xss_clean($this->uri->segment(3)); - $data['qsos'] = $this->adif_data->sig_all($type); + $type = $this->security->xss_clean($this->uri->segment(3)); + $data['qsos'] = $this->adif_data->sig_all($type); - $this->load->view('adif/data/exportall', $data); - } + $this->load->view('adif/data/exportall', $data); + } /* function was_map This displays the WAS map and requires the $band_type and $mode_type */ - public function was_map() { - $stateString = 'AK,AL,AR,AZ,CA,CO,CT,DE,FL,GA,HI,IA,ID,IL,IN,KS,KY,LA,MA,MD,ME,MI,MN,MO,MS,MT,NC,ND,NE,NH,NJ,NM,NV,NY,OH,OK,OR,PA,RI,SC,SD,TN,TX,UT,VA,VT,WA,WI,WV,WY'; - $wasArray = explode(',', $stateString); + public function was_map() + { + $stateString = 'AK,AL,AR,AZ,CA,CO,CT,DE,FL,GA,HI,IA,ID,IL,IN,KS,KY,LA,MA,MD,ME,MI,MN,MO,MS,MT,NC,ND,NE,NH,NJ,NM,NV,NY,OH,OK,OR,PA,RI,SC,SD,TN,TX,UT,VA,VT,WA,WI,WV,WY'; + $wasArray = explode(',', $stateString); $this->load->model('was'); - $bands[] = $this->security->xss_clean($this->input->post('band')); + $bands[] = $this->security->xss_clean($this->input->post('band')); - $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; - $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; - $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL: 1; - $postdata['worked'] = $this->input->post('worked') == 0 ? NULL: 1; - $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL: 1; - $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; + $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL : 1; + $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL : 1; + $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL : 1; + $postdata['worked'] = $this->input->post('worked') == 0 ? NULL : 1; + $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL : 1; + $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL : 1; $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); @@ -900,14 +942,14 @@ class Awards extends CI_Controller { $states = array(); - foreach ($wasArray as $state) { // Generating array for use in the table + foreach ($wasArray as $state) { // Generating array for use in the table $states[$state] = '-'; // Inits each state's count } foreach ($was_array as $was => $value) { foreach ($value as $key) { - if($key != "") { + if ($key != "") { if (strpos($key, '>W<') !== false) { $states[$was] = 'W'; break; @@ -932,37 +974,38 @@ class Awards extends CI_Controller { function cq_map This displays the CQ Zone map and requires the $band_type and $mode_type */ - public function cq_map() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + public function cq_map() + { + $CI = &get_instance(); + $CI->load->model('logbooks_model'); + $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->load->model('cq'); $bands[] = $this->input->post('band'); - $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; - $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; - $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL: 1; - $postdata['worked'] = $this->input->post('worked') == 0 ? NULL: 1; - $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL: 1; - $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; + $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL : 1; + $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL : 1; + $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL : 1; + $postdata['worked'] = $this->input->post('worked') == 0 ? NULL : 1; + $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL : 1; + $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL : 1; $postdata['band'] = $this->security->xss_clean($this->input->post('band')); - $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); if ($logbooks_locations_array) { - $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; $cq_array = $this->cq->get_cq_array($bands, $postdata, $location_list); - } else { + } else { $location_list = null; $cq_array = null; } - $zones = array(); + $zones = array(); foreach ($cq_array as $cq => $value) { foreach ($value as $key) { - if($key != "") { + if ($key != "") { if (strpos($key, '>W<') !== false) { $zones[] = 'W'; break; @@ -983,40 +1026,41 @@ class Awards extends CI_Controller { echo json_encode($zones); } - /* + /* function waja_map */ - public function waja_map() { - $prefectureString = '01,02,03,04,05,06,07,08,09,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47'; - $wajaArray = explode(',', $prefectureString); + public function waja_map() + { + $prefectureString = '01,02,03,04,05,06,07,08,09,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47'; + $wajaArray = explode(',', $prefectureString); $this->load->model('waja'); $this->load->model('bands'); $bands[] = $this->security->xss_clean($this->input->post('band')); - $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; - $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; - $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL: 1; - $postdata['worked'] = $this->input->post('worked') == 0 ? NULL: 1; - $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL: 1; - $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; + $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL : 1; + $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL : 1; + $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL : 1; + $postdata['worked'] = $this->input->post('worked') == 0 ? NULL : 1; + $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL : 1; + $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL : 1; $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - $waja_array = $this->waja->get_waja_array($bands, $postdata); + $waja_array = $this->waja->get_waja_array($bands, $postdata); - $prefectures = array(); + $prefectures = array(); - foreach ($wajaArray as $state) { // Generating array for use in the table + foreach ($wajaArray as $state) { // Generating array for use in the table $prefectures[$state] = '-'; // Inits each state's count } foreach ($waja_array as $waja => $value) { foreach ($value as $key) { - if($key != "") { + if ($key != "") { if (strpos($key, '>W<') !== false) { $prefectures[$waja] = 'W'; break; @@ -1041,28 +1085,29 @@ class Awards extends CI_Controller { function dxcc_map This displays the DXCC map */ - public function dxcc_map() { + public function dxcc_map() + { $this->load->model('dxcc'); $this->load->model('bands'); $bands[] = $this->security->xss_clean($this->input->post('band')); - $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; - $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; - $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL: 1; - $postdata['worked'] = $this->input->post('worked') == 0 ? NULL: 1; - $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL: 1; - $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; + $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL : 1; + $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL : 1; + $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL : 1; + $postdata['worked'] = $this->input->post('worked') == 0 ? NULL : 1; + $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL : 1; + $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL : 1; $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - $postdata['includedeleted'] = $this->input->post('includedeleted') == 0 ? NULL: 1; - $postdata['Africa'] = $this->input->post('Africa') == 0 ? NULL: 1; - $postdata['Asia'] = $this->input->post('Asia') == 0 ? NULL: 1; - $postdata['Europe'] = $this->input->post('Europe') == 0 ? NULL: 1; - $postdata['NorthAmerica'] = $this->input->post('NorthAmerica') == 0 ? NULL: 1; - $postdata['SouthAmerica'] = $this->input->post('SouthAmerica') == 0 ? NULL: 1; - $postdata['Oceania'] = $this->input->post('Oceania') == 0 ? NULL: 1; - $postdata['Antarctica'] = $this->input->post('Antarctica') == 0 ? NULL: 1; + $postdata['includedeleted'] = $this->input->post('includedeleted') == 0 ? NULL : 1; + $postdata['Africa'] = $this->input->post('Africa') == 0 ? NULL : 1; + $postdata['Asia'] = $this->input->post('Asia') == 0 ? NULL : 1; + $postdata['Europe'] = $this->input->post('Europe') == 0 ? NULL : 1; + $postdata['NorthAmerica'] = $this->input->post('NorthAmerica') == 0 ? NULL : 1; + $postdata['SouthAmerica'] = $this->input->post('SouthAmerica') == 0 ? NULL : 1; + $postdata['Oceania'] = $this->input->post('Oceania') == 0 ? NULL : 1; + $postdata['Antarctica'] = $this->input->post('Antarctica') == 0 ? NULL : 1; $dxcclist = $this->dxcc->fetchdxcc($postdata); @@ -1074,7 +1119,7 @@ class Awards extends CI_Controller { $newdxcc[$i]['adif'] = $dxcc->adif; $newdxcc[$i]['prefix'] = $dxcc->prefix; $newdxcc[$i]['name'] = ucwords(strtolower($dxcc->name), "- (/"); - if ($dxcc->Enddate!=null) { + if ($dxcc->Enddate != null) { $newdxcc[$i]['name'] .= ' (deleted)'; } $newdxcc[$i]['lat'] = $dxcc->lat; @@ -1090,27 +1135,28 @@ class Awards extends CI_Controller { function iota This displays the IOTA map */ - public function iota_map() { + public function iota_map() + { $this->load->model('iota'); $this->load->model('bands'); $bands[] = $this->security->xss_clean($this->input->post('band')); - $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; - $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; - $postdata['worked'] = $this->input->post('worked') == 0 ? NULL: 1; - $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL: 1; - $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; + $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL : 1; + $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL : 1; + $postdata['worked'] = $this->input->post('worked') == 0 ? NULL : 1; + $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL : 1; + $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL : 1; $postdata['band'] = $this->input->post('band'); - $postdata['mode'] = $this->input->post('mode'); - $postdata['includedeleted'] = $this->input->post('includedeleted') == 0 ? NULL: 1; - $postdata['Africa'] = $this->input->post('Africa') == 0 ? NULL: 1; - $postdata['Asia'] = $this->input->post('Asia') == 0 ? NULL: 1; - $postdata['Europe'] = $this->input->post('Europe') == 0 ? NULL: 1; - $postdata['NorthAmerica'] = $this->input->post('NorthAmerica') == 0 ? NULL: 1; - $postdata['SouthAmerica'] = $this->input->post('SouthAmerica') == 0 ? NULL: 1; - $postdata['Oceania'] = $this->input->post('Oceania') == 0 ? NULL: 1; - $postdata['Antarctica'] = $this->input->post('Antarctica') == 0 ? NULL: 1; + $postdata['mode'] = $this->input->post('mode'); + $postdata['includedeleted'] = $this->input->post('includedeleted') == 0 ? NULL : 1; + $postdata['Africa'] = $this->input->post('Africa') == 0 ? NULL : 1; + $postdata['Asia'] = $this->input->post('Asia') == 0 ? NULL : 1; + $postdata['Europe'] = $this->input->post('Europe') == 0 ? NULL : 1; + $postdata['NorthAmerica'] = $this->input->post('NorthAmerica') == 0 ? NULL : 1; + $postdata['SouthAmerica'] = $this->input->post('SouthAmerica') == 0 ? NULL : 1; + $postdata['Oceania'] = $this->input->post('Oceania') == 0 ? NULL : 1; + $postdata['Antarctica'] = $this->input->post('Antarctica') == 0 ? NULL : 1; $iotalist = $this->iota->fetchIota($postdata); @@ -1136,9 +1182,10 @@ class Awards extends CI_Controller { echo json_encode($newiota); } - function returnStatus($string) { + function returnStatus($string) + { foreach ($string as $key) { - if($key != "") { + if ($key != "") { if (strpos($key, '>W<') !== false) { return 'W'; } diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 4ee58f47..8f5b125a 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -135,10 +135,11 @@ class Labels extends CI_Controller { $offset = xss_clean($this->input->post('startat')); $grid = $this->input->post('grid') === "true" ? 1 : 0; $via = $this->input->post('via') === "true" ? 1 : 0; + $awards = $this->input->post('awards') === "true" ? 1 : 0; $this->load->model('labels_model'); $result = $this->labels_model->export_printrequestedids($ids); - $this->prepareLabel($result, true, $offset, $grid, $via); + $this->prepareLabel($result, true, $offset, $grid, $via, $awards); } public function print($station_id) { @@ -146,18 +147,19 @@ class Labels extends CI_Controller { $offset = xss_clean($this->input->post('startat')); $grid = xss_clean($this->input->post('grid') ?? 0); $via = xss_clean($this->input->post('via') ?? 0); + $awards = xss_clean($this->input->post('awards') ?? 0); $this->load->model('stations'); if ($this->stations->check_station_is_accessible($station_id)) { $this->load->model('labels_model'); $result = $this->labels_model->export_printrequested($clean_id); - $this->prepareLabel($result, false, $offset, $grid, $via); + $this->prepareLabel($result, false, $offset, $grid, $via, $awards); } else { redirect('labels'); } } - function prepareLabel($qsos, $jscall = false, $offset = 1, $grid = false, $via = false) { + function prepareLabel($qsos, $jscall = false, $offset = 1, $grid = false, $via = false, $awards = false) { $this->load->model('labels_model'); $label = $this->labels_model->getDefaultLabel(); @@ -232,11 +234,7 @@ class Labels extends CI_Controller { } if ($qsos->num_rows() > 0) { - if ($label->qsos == 1) { - $this->makeMultiQsoLabel($qsos->result(), $pdf, 1, $offset, $ptype->orientation, $grid, $via); - } else { - $this->makeMultiQsoLabel($qsos->result(), $pdf, $label->qsos, $offset, $ptype->orientation, $grid, $via); - } + $this->makeMultiQsoLabel($qsos->result(), $pdf, $label->qsos, $offset, $ptype->orientation, $grid, $via, $awards); } else { $this->session->set_flashdata('message', '0 QSOs found for print!'); redirect('labels'); @@ -244,7 +242,7 @@ class Labels extends CI_Controller { $pdf->Output(); } - function makeMultiQsoLabel($qsos, $pdf, $numberofqsos, $offset, $orientation, $grid, $via) { + function makeMultiQsoLabel($qsos, $pdf, $numberofqsos, $offset, $orientation, $grid, $via, $awards) { $text = ''; $current_callsign = ''; $current_sat = ''; @@ -261,7 +259,7 @@ class Labels extends CI_Controller { ( ($qso->COL_BAND_RX !== $current_sat_bandrx) && ($this->pretty_sat_mode($qso->COL_SAT_MODE) !== '')) ) { // ((($qso->COL_SAT_NAME ?? '' !== $current_sat) || ($qso->COL_CALL !== $current_callsign)) && ($qso->COL_SAT_NAME ?? '' !== '') && ($col->COL_BAND_RX ?? '' !== $current_sat_bandrx))) { if (!empty($qso_data)) { - $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via); + $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via, $awards); $qso_data = []; } $current_callsign = $qso->COL_CALL; @@ -281,19 +279,46 @@ class Labels extends CI_Controller { 'sat_mode' => $this->pretty_sat_mode($qso->COL_SAT_MODE ?? ''), 'sat_band_rx' => ($qso->COL_BAND_RX ?? ''), 'qsl_recvd' => $qso->COL_QSL_RCVD, - 'mycall' => $qso->COL_STATION_CALLSIGN + 'mycall' => $qso->COL_STATION_CALLSIGN, + 'awards' => $this->stationAwardsList($qso) ]; } if (!empty($qso_data)) { - $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via); + $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via, $awards); } } + + function stationAwardsList($station_profile) { + $awards = ""; + if (trim($station_profile->station_iota) !== '') { + $awards .= "IOTA:" . $station_profile->station_iota . " "; + } + + if (trim($station_profile->station_sota) !== '') { + $awards .= "SOTA:" . $station_profile->station_sota . " "; + } + + if (trim($station_profile->station_wwff) !== '') { + $awards .= "WWFF:" . $station_profile->station_wwff . " "; + } + + if (trim($station_profile->station_pota) !== '') { + $awards .= "POTA:" . $station_profile->station_pota . " "; + } + + if (trim($station_profile->station_sig) !== '' && trim($station_profile->station_sig_info) !== '') { + $awards .= $station_profile->station_sig . ":" . $station_profile->station_sig_info; + } + + return $awards; + } + // New begin function pretty_sat_mode($sat_mode) { return(strlen($sat_mode ?? '') == 2 ? (strtoupper($sat_mode[0]).'/'.strtoupper($sat_mode[1])) : strtoupper($sat_mode ?? '')); } - function finalizeData($pdf, $current_callsign, &$preliminaryData, $qso_per_label,$orientation, $grid, $via) { + function finalizeData($pdf, $current_callsign, &$preliminaryData, $qso_per_label,$orientation, $grid, $via, $awards) { $tableData = []; $count_qso = 0; @@ -313,7 +338,7 @@ class Labels extends CI_Controller { if($count_qso == $qso_per_label){ - $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via); + $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via, $awards); $tableData = []; // reset the data $count_qso = 0; // reset the counter } @@ -321,12 +346,12 @@ class Labels extends CI_Controller { } // generate label for remaining QSOs if($count_qso > 0){ - $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via); + $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via, $awards); $preliminaryData = []; // reset the data } } - function generateLabel($pdf, $current_callsign, $tableData,$numofqsos,$qso,$orientation,$grid=true, $via=false){ + function generateLabel($pdf, $current_callsign, $tableData,$numofqsos,$qso,$orientation,$grid=true, $via=false, $awards=false){ $builder = new \AsciiTable\Builder(); $builder->addRows($tableData); $text = "Confirming QSO".($numofqsos>1 ? 's' : '')." with "; @@ -347,6 +372,7 @@ class Labels extends CI_Controller { } $text.="\n"; if ($grid) { $text .= "My call: ".$qso['mycall']." Grid: ".$qso['mygrid']."\n"; } + if ($awards) { $text .= $qso['awards']."\n"; } $text .= "Thanks for the QSO".($numofqsos>1 ? 's' : ''); $text .= " | ".($qso['qsl_recvd'] == 'Y' ? 'TNX' : 'PSE')." QSL"; $pdf->Add_Label($text,$orientation); diff --git a/application/language/bulgarian/awards_lang.php b/application/language/bulgarian/awards_lang.php index 8102d266..035cce79 100644 --- a/application/language/bulgarian/awards_lang.php +++ b/application/language/bulgarian/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + +/* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/bulgarian/general_words_lang.php b/application/language/bulgarian/general_words_lang.php index bf10e996..7f36760b 100644 --- a/application/language/bulgarian/general_words_lang.php +++ b/application/language/bulgarian/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Manager'; $lang['general_word_qslcard_via'] = 'Чрез'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'eQSL Cards'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/chinese_simplified/awards_lang.php b/application/language/chinese_simplified/awards_lang.php index 75f393d1..1e117ddf 100644 --- a/application/language/chinese_simplified/awards_lang.php +++ b/application/language/chinese_simplified/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - 通联全日本都道府县奖状 $lang['awards_waja_description_ln2'] = "WAJA,通联全日本都道府县奖状,鼓励许可的业余无线电操作者与所有日本都道府县的电台通联"; $lang['awards_waja_description_ln3'] = "也许可以通过展示出已经通联(或收听)过来自日本47个都道府县的电台发来的QSL卡片,并按照WAJA(HAJA)的顺序进行排列,都道府县的名称可以忽略"; $lang['awards_waja_description_ln4'] = "请访问 https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm 获得更多信息"; + +/* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/chinese_simplified/general_words_lang.php b/application/language/chinese_simplified/general_words_lang.php index 3cc4db85..e5e7f2ca 100644 --- a/application/language/chinese_simplified/general_words_lang.php +++ b/application/language/chinese_simplified/general_words_lang.php @@ -79,6 +79,10 @@ $lang['general_word_qslcard_bureau'] = '卡片局'; $lang['general_word_qslcard_electronic'] = '电子卡片'; $lang['general_word_qslcard_manager'] = '卡片管理员'; $lang['general_word_qslcard_via'] = '通过(via)'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_eqslcard'] = '电子 QSL 卡片'; $lang['general_word_eqslcards'] = 'eQSL 卡片'; $lang['general_word_lotw'] = 'Logbook of the World(LoTW)'; diff --git a/application/language/chinese_simplified/menu_lang.php b/application/language/chinese_simplified/menu_lang.php index 882a46c5..493198e8 100644 --- a/application/language/chinese_simplified/menu_lang.php +++ b/application/language/chinese_simplified/menu_lang.php @@ -17,6 +17,7 @@ $lang['menu_post_contest_logging'] = '比赛日志(手动)'; $lang['menu_bandmap'] = '波段地图'; $lang['menu_view_qsl'] = '浏览QSL卡片'; $lang['menu_view_eqsl'] = '浏览eQSL卡片'; +$lang['menu_view_sstv'] = 'View SSTV Images'; $lang['menu_notes'] = '笔记'; diff --git a/application/language/czech/awards_lang.php b/application/language/czech/awards_lang.php index 8102d266..fe7fe689 100644 --- a/application/language/czech/awards_lang.php +++ b/application/language/czech/awards_lang.php @@ -193,3 +193,12 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; +/* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/czech/general_words_lang.php b/application/language/czech/general_words_lang.php index 7137b00b..f19e095b 100644 --- a/application/language/czech/general_words_lang.php +++ b/application/language/czech/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Správce'; $lang['general_word_qslcard_via'] = 'Přes'; $lang['general_word_eqslcard'] = 'eQSL karta'; $lang['general_word_eqslcards'] = 'eQSL karty'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/czech/menu_lang.php b/application/language/czech/menu_lang.php index 67f52b07..c4ee11ce 100644 --- a/application/language/czech/menu_lang.php +++ b/application/language/czech/menu_lang.php @@ -17,6 +17,7 @@ $lang['menu_post_contest_logging'] = 'Uložit závodní log'; $lang['menu_bandmap'] = 'Bandmap'; $lang['menu_view_qsl'] = 'Zobrazit QSL'; $lang['menu_view_eqsl'] = 'Zobrazit eQSL'; +$lang['menu_view_sstv'] = 'View SSTV Images'; $lang['menu_notes'] = 'Poznámky'; diff --git a/application/language/dutch/awards_lang.php b/application/language/dutch/awards_lang.php index 8102d266..502ff497 100644 --- a/application/language/dutch/awards_lang.php +++ b/application/language/dutch/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/dutch/general_words_lang.php b/application/language/dutch/general_words_lang.php index d416cde8..8641c810 100644 --- a/application/language/dutch/general_words_lang.php +++ b/application/language/dutch/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Manager'; $lang['general_word_qslcard_via'] = 'Via'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'eQSL Cards'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/english/awards_lang.php b/application/language/english/awards_lang.php index 8102d266..035cce79 100644 --- a/application/language/english/awards_lang.php +++ b/application/language/english/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + +/* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/finnish/awards_lang.php b/application/language/finnish/awards_lang.php index 8102d266..e57fe358 100644 --- a/application/language/finnish/awards_lang.php +++ b/application/language/finnish/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/finnish/general_words_lang.php b/application/language/finnish/general_words_lang.php index 332c2038..dfcb87a2 100644 --- a/application/language/finnish/general_words_lang.php +++ b/application/language/finnish/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Manageri'; $lang['general_word_qslcard_via'] = 'Via'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'eQSL Cards'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/finnish/menu_lang.php b/application/language/finnish/menu_lang.php index e044d6f7..c3de61fe 100644 --- a/application/language/finnish/menu_lang.php +++ b/application/language/finnish/menu_lang.php @@ -17,6 +17,7 @@ $lang['menu_post_contest_logging'] = 'Post Contest Logging'; $lang['menu_bandmap'] = 'Bandikartta'; $lang['menu_view_qsl'] = 'Näytä QSL'; $lang['menu_view_eqsl'] = 'Näytä eQSL'; +$lang['menu_view_sstv'] = 'View SSTV Images'; $lang['menu_notes'] = 'Muistio'; diff --git a/application/language/french/awards_lang.php b/application/language/french/awards_lang.php index 208a5272..9d659893 100644 --- a/application/language/french/awards_lang.php +++ b/application/language/french/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/french/general_words_lang.php b/application/language/french/general_words_lang.php index a002b504..c1f15a03 100644 --- a/application/language/french/general_words_lang.php +++ b/application/language/french/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = "Manager"; $lang['general_word_qslcard_via'] = "Via"; $lang['general_word_eqslcard'] = "Carte eQSL"; $lang['general_word_eqslcards'] = "Cartes eQSL"; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = "Logbook of the World"; $lang['general_word_lotw_short'] = "LoTW"; diff --git a/application/language/german/awards_lang.php b/application/language/german/awards_lang.php index 54f1b3c9..f9e0ba14 100644 --- a/application/language/german/awards_lang.php +++ b/application/language/german/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/greek/awards_lang.php b/application/language/greek/awards_lang.php index 8102d266..035cce79 100644 --- a/application/language/greek/awards_lang.php +++ b/application/language/greek/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + +/* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/greek/general_words_lang.php b/application/language/greek/general_words_lang.php index 603a09fc..eeda31be 100644 --- a/application/language/greek/general_words_lang.php +++ b/application/language/greek/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Διευθυντής'; $lang['general_word_qslcard_via'] = 'Μέσω'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'Κάρτες eQSL'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/italian/awards_lang.php b/application/language/italian/awards_lang.php index 8102d266..035cce79 100644 --- a/application/language/italian/awards_lang.php +++ b/application/language/italian/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + +/* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/italian/general_words_lang.php b/application/language/italian/general_words_lang.php index e44111a4..72034936 100644 --- a/application/language/italian/general_words_lang.php +++ b/application/language/italian/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Manager'; $lang['general_word_qslcard_via'] = 'Via'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'Cartoline eQSL'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/polish/awards_lang.php b/application/language/polish/awards_lang.php index 8102d266..502ff497 100644 --- a/application/language/polish/awards_lang.php +++ b/application/language/polish/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/polish/general_words_lang.php b/application/language/polish/general_words_lang.php index abe07d7a..6cfb385a 100644 --- a/application/language/polish/general_words_lang.php +++ b/application/language/polish/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Manager'; $lang['general_word_qslcard_via'] = 'Via'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'eQSL Cards'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/russian/awards_lang.php b/application/language/russian/awards_lang.php index 88dc4f9b..f5c7d763 100644 --- a/application/language/russian/awards_lang.php +++ b/application/language/russian/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/russian/general_words_lang.php b/application/language/russian/general_words_lang.php index 449cc322..bb95754e 100644 --- a/application/language/russian/general_words_lang.php +++ b/application/language/russian/general_words_lang.php @@ -82,6 +82,10 @@ $lang['general_word_qslcard_manager'] = 'Менеджер'; $lang['general_word_qslcard_via'] = 'через'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'eQSL'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/russian/menu_lang.php b/application/language/russian/menu_lang.php index a5e674e5..5c1ea02d 100644 --- a/application/language/russian/menu_lang.php +++ b/application/language/russian/menu_lang.php @@ -17,6 +17,7 @@ $lang['menu_post_contest_logging'] = 'Журнал прошедших сорев $lang['menu_bandmap'] = 'План диапазонов'; $lang['menu_view_qsl'] = 'Просмотр QSL'; $lang['menu_view_eqsl'] = 'Просмотр eQSL'; +$lang['menu_view_sstv'] = 'View SSTV Images'; $lang['menu_notes'] = 'Заметки'; diff --git a/application/language/spanish/awards_lang.php b/application/language/spanish/awards_lang.php index 3cff941b..249c970e 100644 --- a/application/language/spanish/awards_lang.php +++ b/application/language/spanish/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Diploma Worked All Japan prefectu $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures (Trabajadas todas las prefecturas de Japón) en la radioafición, fomenta que los operadores de radioafición licenciados trabajen todas las prefecturas de Japón."; $lang['awards_waja_description_ln3'] = "Puede ser otorgado por haber contactado (escuchado) y recibido una tarjeta QSL de una estación de radioaficionado localizada en cada una de las 47 prefecturas de Japón. La lista de tarjetas QSL debe ser ordenada por su número de referencia WAJA (HAJA), sin embargo los nombres de las prefecturas pueden ser omitidos."; $lang['awards_waja_description_ln4'] = "Para más información, por favor visite: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm (en inglés)."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/spanish/general_words_lang.php b/application/language/spanish/general_words_lang.php index fef4cac7..9131c7a2 100644 --- a/application/language/spanish/general_words_lang.php +++ b/application/language/spanish/general_words_lang.php @@ -82,6 +82,10 @@ $lang['general_word_qslcard_manager'] = 'Manager'; $lang['general_word_qslcard_via'] = 'Vía'; $lang['general_word_eqslcard'] = 'Tarjeta eQSL'; $lang['general_word_eqslcards'] = 'Tarjetas eQSL'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/language/spanish/menu_lang.php b/application/language/spanish/menu_lang.php index 49a653d8..47614697 100644 --- a/application/language/spanish/menu_lang.php +++ b/application/language/spanish/menu_lang.php @@ -17,6 +17,7 @@ $lang['menu_post_contest_logging'] = 'Registrar Entrada de Concurso'; $lang['menu_bandmap'] = 'mapa de Bandas'; $lang['menu_view_qsl'] = 'Ver Tarjetas QSL'; $lang['menu_view_eqsl'] = 'Ver Tarjetas eQSL'; +$lang['menu_view_sstv'] = 'View SSTV Images'; $lang['menu_notes'] = 'Notas'; diff --git a/application/language/swedish/awards_lang.php b/application/language/swedish/awards_lang.php index 8102d266..502ff497 100644 --- a/application/language/swedish/awards_lang.php +++ b/application/language/swedish/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/swedish/general_words_lang.php b/application/language/swedish/general_words_lang.php index 8230402a..acc4555e 100644 --- a/application/language/swedish/general_words_lang.php +++ b/application/language/swedish/general_words_lang.php @@ -25,7 +25,7 @@ $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; $lang['general_word_count'] = "Count"; $lang['general_word_filtering_on'] = "Filtering on"; -$lang['general_word_never'] = "Never"; +$lang['general_word_never'] = "Never"; $lang['general_word_export'] = "Export"; $lang['general_word_import'] = "Import"; $lang['general_word_startdate'] = "Start Date"; @@ -82,6 +82,10 @@ $lang['general_word_qslcard_manager'] = 'Manager'; $lang['general_word_qslcard_via'] = 'Via'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'eQSL Cards'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; @@ -125,8 +129,8 @@ $lang['gen_hamradio_callsign'] = 'Signal'; $lang['gen_hamradio_de'] = 'De'; $lang['gen_hamradio_dx'] = 'Dx'; $lang['gen_hamradio_mode'] = 'Mode'; -$lang['gen_hamradio_ant_az'] = 'Antenna Azimuth'; -$lang['gen_hamradio_ant_el'] = 'Antenna Elevation'; +$lang['gen_hamradio_ant_az'] = 'Antenna Azimuth'; +$lang['gen_hamradio_ant_el'] = 'Antenna Elevation'; $lang['gen_hamradio_rst_sent'] = 'Skickat'; $lang['gen_hamradio_rst_rcvd'] = 'Mottagen\'d'; $lang['gen_hamradio_band'] = 'Band'; diff --git a/application/language/swedish/menu_lang.php b/application/language/swedish/menu_lang.php index 93186c6a..a7889b96 100644 --- a/application/language/swedish/menu_lang.php +++ b/application/language/swedish/menu_lang.php @@ -17,6 +17,7 @@ $lang['menu_post_contest_logging'] = 'Post Tävlingsloggning'; $lang['menu_bandmap'] = 'Bandkarta'; $lang['menu_view_qsl'] = 'Se QSL'; $lang['menu_view_eqsl'] = 'Se eQSL'; +$lang['menu_view_sstv'] = 'View SSTV Images'; $lang['menu_notes'] = 'Anteckningar'; diff --git a/application/language/turkish/awards_lang.php b/application/language/turkish/awards_lang.php index 8102d266..502ff497 100644 --- a/application/language/turkish/awards_lang.php +++ b/application/language/turkish/awards_lang.php @@ -193,3 +193,13 @@ $lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Awar $lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; $lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted."; $lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; + + /* +___________________________________________________________________________________________ +WAB -- Use all 3 Lines of Text +___________________________________________________________________________________________ +*/ +$lang['awards_waja_description_ln1'] = "WAB - Worked All Britain Award"; +$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands."; +$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio."; +$lang['awards_waja_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; diff --git a/application/language/turkish/general_words_lang.php b/application/language/turkish/general_words_lang.php index 42f79ca3..2bafe163 100644 --- a/application/language/turkish/general_words_lang.php +++ b/application/language/turkish/general_words_lang.php @@ -81,6 +81,10 @@ $lang['general_word_qslcard_manager'] = 'Yönetici'; $lang['general_word_qslcard_via'] = 'üzerinden'; $lang['general_word_eqslcard'] = 'eQSL Card'; $lang['general_word_eqslcards'] = 'eQSL Kartları'; +$lang['general_word_sstv_management'] = 'SSTV Management'; +$lang['general_word_sstvimages'] = 'SSTV Images'; +$lang['general_sstv_upload'] = 'Uploaded SSTV images'; +$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)'; $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; diff --git a/application/migrations/179_tag_2_6_10.php b/application/migrations/179_tag_2_6_10.php new file mode 100644 index 00000000..4b44092b --- /dev/null +++ b/application/migrations/179_tag_2_6_10.php @@ -0,0 +1,30 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '2.6.10')); + + // Trigger Version Info Dialog + $this->db->where('option_type', 'version_dialog'); + $this->db->where('option_name', 'confirmed'); + $this->db->update('user_options', array('option_value' => 'false')); + + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '2.6.9')); + } +} \ No newline at end of file diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 02d8fbc2..40a81acf 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -4702,6 +4702,21 @@ class Logbook_model extends CI_Model return $this->db->get($this->config->item('table_name')); } + function wab_qso_details($wab) + { + $CI = &get_instance(); + $CI->load->model('logbooks_model'); + $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); + $this->db->join('lotw_users', 'lotw_users.callsign = ' . $this->config->item('table_name') . '.col_call', 'left outer'); + $this->db->where_in($this->config->item('table_name') . '.station_id', $logbooks_locations_array); + $this->db->where('COL_SIG', "WAB"); + $this->db->where('COL_SIG_INFO', $wab); + + return $this->db->get($this->config->item('table_name')); + } + public function check_qso_is_accessible($id) { // check if qso belongs to user diff --git a/application/models/Worked_all_britain_model.php b/application/models/Worked_all_britain_model.php new file mode 100644 index 00000000..6385d64e --- /dev/null +++ b/application/models/Worked_all_britain_model.php @@ -0,0 +1,55 @@ +load->model('logbooks_model'); + $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + if (!$logbooks_locations_array) { + return null; + } + $this->db->select("COL_SIG_INFO"); + $this->db->where_in("station_id", $logbooks_locations_array); + $this->db->where("COL_SIG", 'WAB'); + + // return result as an array + $query = $this->db->get($this->config->item('table_name')); + $worked_squares[] = null; + // run through the query results + foreach ($query->result() as $row) { + $worked_squares[] = "Small Square ".$row->COL_SIG_INFO." Boundry Box"; + } + + // return the rows as an array + return $worked_squares; + } + + function get_confirmed_squares () { + $CI =& get_instance(); + $CI->load->model('logbooks_model'); + $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + if (!$logbooks_locations_array) { + return null; + } + $this->db->select("COL_SIG_INFO"); + $this->db->where_in("station_id", $logbooks_locations_array); + $this->db->where("COL_SIG", 'WAB'); + + // check if col_qsl_rcvd or col_eqsl_qsl_rcvd or COL_LOTW_QSL_RCVD is 'Y' + $this->db->where("(col_qsl_rcvd='Y' or col_eqsl_qsl_rcvd='Y' or COL_LOTW_QSL_RCVD='Y')"); + + // return result as an array + $query = $this->db->get($this->config->item('table_name')); + $worked_squares[] = null; + // run through the query results + foreach ($query->result() as $row) { + $worked_squares[] = "Small Square ".$row->COL_SIG_INFO." Boundry Box"; + } + + // return the rows as an array + return $worked_squares; + } +} \ No newline at end of file diff --git a/application/views/awards/cq/index.php b/application/views/awards/cq/index.php index 60b3be9d..c24ee8cb 100644 --- a/application/views/awards/cq/index.php +++ b/application/views/awards/cq/index.php @@ -1,6 +1,6 @@ +
+ +
+
+ + +

+ +
+ +
+ +
\ No newline at end of file diff --git a/application/views/awards/waja/index.php b/application/views/awards/waja/index.php index 8f193087..8c69c977 100644 --- a/application/views/awards/waja/index.php +++ b/application/views/awards/waja/index.php @@ -4,7 +4,7 @@ + + + + C + +Large Square C Boundry Box +#Line1 + + +1 + +-8.00076140534795,54.8477705058782 +-8.00078456254411,55.7459737375124 +-6.40886959458262,55.7356720730963 +-6.44438593677424,54.8378061017722 +-8.00076140534795,54.8477705058782 + + + + + + C00 + +Small Square C00 Boundry Box +#Line2 + + +1 + +-8.00076140534795,54.8477705058782 +-8.00076366380527,54.9375887385764 +-7.84476182569895,54.9374897199125 +-7.84510627380155,54.847671814213 +-8.00076140534795,54.8477705058782 + + + + + + C00 +#labelStyle + +-7.92284049106809,54.8926598281565 + + + + + C01 + +Small Square C01 Boundry Box +#Line2 + + +1 + +-8.00076366403176,54.9375977212311 +-8.0007659349108,55.0274146177956 +-7.84441542306113,55.027315270645 +-7.84476179115492,54.9374987025344 +-8.00076366403176,54.9375977212311 + + + + + + C01 +#labelStyle + +-7.92266888475802,54.982486294216 + + + + + C02 + +Small Square C02 Boundry Box +#Line2 + + +1 + +-8.00076593513853,55.0274236003168 +-8.00076821853389,55.1172391623214 +-7.84406708563954,55.1171394852172 +-7.84441538832436,55.0273242531333 +-8.00076593513853,55.0274236003168 + + + + + + C02 +#labelStyle + +-7.92249632084378,55.0723114244331 + + + + + C03 + +Small Square C03 Boundry Box +#Line2 + + +1 + +-8.00076821876288,55.1172481447091 +-8.00077051477015,55.2070623737404 +-7.84371679868172,55.2069623652044 +-7.84406705070856,55.1171484675719 +-8.00076821876288,55.1172481447091 + + + + + + C03 +#labelStyle + +-7.92232279203373,55.1621352203854 + + + + + C04 + +Small Square C04 Boundry Box +#Line2 + + +1 + +-8.00077051500041,55.2070713559949 +-8.00077282371617,55.2968842536526 +-7.84336454728208,55.2967839121945 +-7.84371676355504,55.2069713474257 +-8.00077051500041,55.2070713559949 + + + + + + C04 +#labelStyle + +-7.92214829096066,55.2519576836633 + + + + + C05 + +Small Square C05 Boundry Box +#Line2 + + +1 + +-8.0007728239477,55.296893235774 +-8.00077514546953,55.3867048036707 +-7.84301031637993,55.3866041277888 +-7.84336451195821,55.2967928942826 +-8.0007728239477,55.296893235774 + + + + + + C05 +#labelStyle + +-7.92197281018077,55.3417788158702 + + + + + C06 + +Small Square C06 Boundry Box +#Line2 + + +1 + +-8.00077514570235,55.3867137856593 +-8.00077748012883,55.4765240254206 +-7.84265409075743,55.4764230136011 +-7.84301028085735,55.3866131097439 +-8.00077514570235,55.3867137856593 + + + + + + C06 +#labelStyle + +-7.92179634217272,55.4315986186226 + + + + + C07 + +Small Square C07 Boundry Box +#Line2 + + +1 + +-8.00077748036295,55.4765330072764 +-8.00077982779374,55.5663419205409 +-7.84229585503761,55.566240571258 +-7.84265405503461,55.4764319954232 +-8.00077748036295,55.4765330072764 + + + + + + C07 +#labelStyle + +-7.92161887933658,55.5214170935497 + + + + + C08 + +Small Square C08 Boundry Box +#Line2 + + +1 + +-8.00077982802916,55.5663509022641 +-8.00078218856491,55.6561584906833 +-7.84193559368226,55.656056802399 +-7.84229581911301,55.5662495529474 +-8.00077982802916,55.5663509022641 + + + + + + C08 +#labelStyle + +-7.92144041399286,55.6112342422937 + + + + + C09 + +Small Square C09 Boundry Box +#Line2 + + +1 + +-8.00078218880165,55.6561674722741 +-8.00078456254411,55.7459737375124 +-7.84157329098981,55.7458717086765 +-7.84193555755432,55.6560657839559 +-8.00078218880165,55.6561674722741 + + + + + + C09 +#labelStyle + +-7.92126093838142,55.7010500665098 + + + + + C10 + +Small Square C10 Boundry Box +#Line2 + + +1 + +-7.84509070679515,54.8476717943654 +-7.8447462240189,54.9374896999991 +-7.68874630872438,54.9371904930691 +-7.68943748359881,54.847373576396 +-7.84509070679515,54.8476717943654 + + + + + + C10 +#labelStyle + +-7.76699736244418,54.892461014136 + + + + + C11 + +Small Square C11 Boundry Box +#Line2 + + +1 + +-7.8447461894714,54.937498682621 +-7.84439978651071,55.0273152506656 +-7.68805121208536,55.0270150502708 +-7.68874623940782,54.9371994755919 +-7.8447461894714,54.937498682621 + + + + + + C11 +#labelStyle + +-7.76647802099647,54.9822868205837 + + + + + C12 + +Small Square C12 Boundry Box +#Line2 + + +1 + +-7.84439975177044,55.0273242331538 +-7.844051414024,55.1171394651714 +-7.68735223331775,55.1168382668717 +-7.68805114238206,55.0270240326595 +-7.84439975177044,55.0273242331538 + + + + + + C12 +#labelStyle + +-7.76595578187087,55.0721112882466 + + + + + C13 + +Small Square C13 Boundry Box +#Line2 + + +1 + +-7.8440513790895,55.117148447526 +-7.84370109180484,55.2069623450918 +-7.6866493428215,55.2066601444121 +-7.68735216322476,55.1168472491264 +-7.8440513790895,55.117148447526 + + + + + + C13 +#labelStyle + +-7.76543062300327,55.1619344186791 + + + + + C14 + +Small Square C14 Boundry Box +#Line2 + + +1 + +-7.84370105667462,55.2069713273131 +-7.84334880494611,55.296783892015 +-7.68594251068931,55.2964806844449 +-7.68664927233585,55.206669126533 +-7.84370105667462,55.2069713273131 + + + + + + C14 +#labelStyle + +-7.76490252210078,55.2517562134483 + + + + + C15 + +Small Square C15 Boundry Box +#Line2 + + +1 + +-7.84334876961868,55.2967928741031 +-7.84299453838563,55.386604107542 +-7.68523170670271,55.3862998885354 +-7.68594243980799,55.2964896664321 +-7.84334876961868,55.2967928741031 + + + + + + C15 +#labelStyle + +-7.76437145663887,55.3415766741339 + + + + + C16 + +Small Square C16 Boundry Box +#Line2 + + +1 + +-7.84299450285947,55.386613089497 +-7.84263827690403,55.4764229932866 +-7.68451690032794,55.4761177582614 +-7.68523163542268,55.386308870389 +-7.84299450285947,55.386613089497 + + + + + + C16 +#labelStyle + +-7.7638374038583,55.4313958023285 + + + + + C17 + +Small Square C17 Boundry Box +#Line2 + + +1 + +-7.84263824117762,55.4764319751087 +-7.84228000512279,55.5662405508756 +-7.68379806071195,55.5659342952132 +-7.68451682864614,55.4761267399817 +-7.84263824117762,55.4764319751087 + + + + + + C17 +#labelStyle + +-7.7633003407621,55.5212135996373 + + + + + C18 + +Small Square C18 Boundry Box +#Line2 + + +1 + +-7.84227996919457,55.566249532565 +-7.84191970750212,55.6560567819484 +-7.68307515667816,55.6557495009934 +-7.68379798862527,55.5659432768003 +-7.84227996919457,55.566249532565 + + + + + + C18 +#labelStyle + +-7.76276024411249,55.6110300676781 + + + + + C19 + +Small Square C19 Boundry Box +#Line2 + + +1 + +-7.84191967137053,55.6560657635053 +-7.84155736833888,55.7458716881574 +-7.68234815672224,55.7455633772173 +-7.68307508418346,55.6557584824475 +-7.84191967137053,55.6560657635053 + + + + + + C19 +#labelStyle + +-7.76221709042769,55.7008452080815 + + + + + C20 + +Small Square C20 Boundry Box +#Line2 + + +1 + +-7.68942191687917,54.8473735365941 +-7.68873070733327,54.9371904531353 +-7.5327346472859,54.9366910660336 +-7.53377251992619,54.8468758003588 +-7.68942191687917,54.8473735365941 + + + + + + C20 +#labelStyle + +-7.61115711236856,54.8920623265364 + + + + + C21 + +Small Square C21 Boundry Box +#Line2 + + +1 + +-7.68873063801324,54.9371994356581 +-7.68803557582607,55.0270150102044 +-7.53169088595408,55.0265139647165 +-7.53273454319972,54.936700048391 +-7.68873063801324,54.9371994356581 + + + + + + C21 +#labelStyle + +-7.61029005763329,54.981886809829 + + + + + C22 + +Small Square C22 Boundry Box +#Line2 + + +1 + +-7.68803550611928,55.027023992593 +-7.68733656199556,55.116838226672 +-7.53064129545225,55.1163355153851 +-7.5316907812872,55.026522946939 +-7.68803550611928,55.027023992593 + + + + + + C22 +#labelStyle + +-7.60941816537235,55.0717099484326 + + + + + C23 + +Small Square C23 Boundry Box +#Line2 + + +1 + +-7.68733649189906,55.1168472089267 +-7.6866336362402,55.2066601040787 +-7.52958583133669,55.2061557195214 +-7.53064119020024,55.1163444974728 +-7.68733649189906,55.1168472089267 + + + + + + C23 +#labelStyle + +-7.60854139875199,55.1615317438553 + + + + + C24 + +Small Square C24 Boundry Box +#Line2 + + +1 + +-7.68663356575102,55.2066690861995 +-7.6859267686512,55.296480643977 +-7.52852444870237,55.2959745786193 +-7.52958572549507,55.2061647014746 +-7.68663356575102,55.2066690861995 + + + + + + C24 +#labelStyle + +-7.60765972055668,55.251352197617 + + + + + C25 + +Small Square C25 Boundry Box +#Line2 + + +1 + +-7.68592669776633,55.2964896259642 +-7.68521592900856,55.3862998479325 +-7.52745710217707,55.3857920941845 +-7.52852434226665,55.295983560438 +-7.68592669776633,55.2964896259642 + + + + + + C25 +#labelStyle + +-7.6067730931841,55.3411713112504 + + + + + C26 + +Small Square C26 Boundry Box +#Line2 + + +1 + +-7.68521585772496,55.3863088297861 +-7.68450108677701,55.4761177175229 +-7.52638374591522,55.4756082677347 +-7.52745699514267,55.3858010758689 +-7.68521585772496,55.3863088297861 + + + + + + C26 +#labelStyle + +-7.6058814786402,55.4309890862999 + + + + + C27 + +Small Square C27 Boundry Box +#Line2 + + +1 + +-7.6845010150916,55.4761266992432 +-7.68378221110192,55.5659342543384 +-7.52530433359182,55.5654231007993 +-7.52638363827754,55.475617249285 +-7.6845010150916,55.4761266992432 + + + + + + C27 +#labelStyle + +-7.60498483853405,55.5208055243225 + + + + + C28 + +Small Square C28 Boundry Box +#Line2 + + +1 + +-7.68378213901163,55.5659432359255 +-7.68305927080517,55.6557494599818 +-7.52421881839618,55.6552365949197 +-7.5253042253462,55.5654320822157 +-7.68378213901163,55.5659432359255 + + + + + + C28 +#labelStyle + +-7.60408313407271,55.6106206268871 + + + + + C29 + +Small Square C29 Boundry Box +#Line2 + + +1 + +-7.68305919830684,55.6557584414359 +-7.68233223438085,55.7455633360682 +-7.52312715302552,55.7450487516488 +-7.52421870953791,55.6552455762022 +-7.68305919830684,55.6557584414359 + + + + + + C29 +#labelStyle + +-7.60317632605599,55.7004343955748 + + + + + C30 + +Small Square C30 Boundry Box +#Line2 + + +1 + +-7.53375695368511,54.8468757406037 +-7.53271904637697,54.9366910060803 +-7.37672877371253,54.9359914523147 +-7.37811330057302,54.8461784995165 +-7.53375695368511,54.8468757406037 + + + + + + C30 +#labelStyle + +-7.45532166604998,54.8914637761226 + + + + + C31 + +Small Square C31 Boundry Box +#Line2 + + +1 + +-7.53271894228732,54.9366999884376 +-7.53167525018064,55.0265139045641 +-7.37533639168761,55.0258120275854 +-7.37672863486112,54.9360004344401 +-7.53271894228732,54.9366999884376 + + + + + + C31 +#labelStyle + +-7.45410693449538,54.9812862727921 + + + + + C32 + +Small Square C32 Boundry Box +#Line2 + + +1 + +-7.53167514551026,55.0265228867865 +-7.53062562461962,55.1163354550327 +-7.37393623390676,55.1156312444562 +-7.37533625206157,55.0258210095749 +-7.53167514551026,55.0265228867865 + + + + + + C32 +#labelStyle + +-7.45288542594436,55.0711074159074 + + + + + C33 + +Small Square C33 Boundry Box +#Line2 + + +1 + +-7.53062551936409,55.1163444371204 +-7.52957012524869,55.2061556589681 +-7.37252824108842,55.2054491043274 +-7.37393609350018,55.11564022631 +-7.53062551936409,55.1163444371204 + + + + + + C33 +#labelStyle + +-7.45165708879845,55.1609272069068 + + + + + C34 + +Small Square C34 Boundry Box +#Line2 + + +1 + +-7.52957001940353,55.2061646409212 +-7.52850870716134,55.2959745178642 +-7.37111235333584,55.2952656086103 +-7.37252809989535,55.2054580860456 +-7.52957001940353,55.2061646409212 + + + + + + C34 +#labelStyle + +-7.45042187092434,55.25074564724 + + + + + C35 + +Small Square C35 Boundry Box +#Line2 + + +1 + +-7.52850860072206,55.2959834996829 +-7.52744132498382,55.3857920332267 +-7.36968851012909,55.3850807587271 +-7.37111221135027,55.295274590193 +-7.52850860072206,55.2959834996829 + + + + + + C35 +#labelStyle + +-7.44917971964699,55.3405627383683 + + + + + C36 + +Small Square C36 Boundry Box +#Line2 + + +1 + +-7.52744121794584,55.3858010149111 +-7.52636793286904,55.4756082065733 +-7.36825665031694,55.4748945561113 +-7.36968836734492,55.3850897401745 +-7.52744121794584,55.3858010149111 + + + + + + C36 +#labelStyle + +-7.44793058174257,55.4303784817645 + + + + + C37 + +Small Square C37 Boundry Box +#Line2 + + +1 + +-7.52636782522776,55.4756171881236 +-7.52528848449046,55.5654230394334 +-7.36681671210872,55.5647070022071 +-7.36825650672803,55.4749035374235 +-7.52636782522776,55.4756171881236 + + + + + + C37 +#labelStyle + +-7.44667440343139,55.5201928789127 + + + + + C38 + +Small Square C38 Boundry Box +#Line2 + + +1 + +-7.52528837624122,55.5654320208497 +-7.5242029330358,55.6552365333483 +-7.36536863306595,55.6545180984697 +-7.36681656770887,55.5647159833842 +-7.52528837624122,55.5654320208497 + + + + + + C38 +#labelStyle + +-7.44541113037062,55.6100059313086 + + + + + C39 + +Small Square C39 Boundry Box +#Line2 + + +1 + +-7.52420282417389,55.6552455146307 +-7.52311123120073,55.7450486898709 +-7.36391235009387,55.7443278463651 +-7.36536848784886,55.6545270795118 +-7.52420282417389,55.6552455146307 + + + + + + C39 +#labelStyle + +-7.44414070764694,55.6998176404592 + + + + + C40 + +Small Square C40 Boundry Box +#Line2 + + +1 + +-7.37809773500226,54.8461784198098 +-7.37671317347901,54.9359913723435 +-7.22073061988366,54.9350916708333 +-7.22246174288466,54.845281692659 +-7.37809773500226,54.8461784198098 + + + + + + C40 +#labelStyle + +-7.29949294832486,54.890665379054 + + + + + C41 + +Small Square C41 Boundry Box +#Line2 + + +1 + +-7.37671303462412,54.936000354469 +-7.37532075659471,55.0258119473486 +-7.21898967585086,55.024909257931 +-7.22073044627284,54.9351006526606 +-7.37671303462412,54.936000354469 + + + + + + C41 +#labelStyle + +-7.29793059103256,54.9804852257453 + + + + + C42 + +Small Square C42 Boundry Box +#Line2 + + +1 + +-7.37532061696517,55.0258209293382 +-7.37392056375984,55.1156311639527 +-7.21723901008365,55.1147254732724 +-7.21898950127155,55.0249182396211 +-7.37532061696517,55.0258209293382 + + + + + + C42 +#labelStyle + +-7.29635951780119,55.0703037070573 + + + + + C43 + +Small Square C43 Boundry Box +#Line2 + + +1 + +-7.37392042334975,55.1156401458065 +-7.37251253569138,55.205449023556 +-7.21547854847053,55.2045403181526 +-7.21723883452847,55.1147344548254 +-7.37392042334975,55.1156401458065 + + + + + + C43 +#labelStyle + +-7.29477966227437,55.1601208243353 + + + + + C44 + +Small Square C44 Boundry Box +#Line2 + + +1 + +-7.37251239449478,55.2054580052741 +-7.37109661249107,55.2952655275697 +-7.21370821613094,55.2943537938768 +-7.21547837193204,55.2045492995686 +-7.37251239449478,55.2054580052741 + + + + + + C44 +#labelStyle + +-7.29319095740794,55.2499365789351 + + + + + C45 + +Small Square C45 Boundry Box +#Line2 + + +1 + +-7.37109647050194,55.2952745091523 +-7.36967273363745,55.3850806774161 +-7.21192793740533,55.38416590176 +-7.21370803860161,55.294362775156 +-7.37109647050194,55.2952745091523 + + + + + + C45 +#labelStyle + +-7.29159333546113,55.3397509722231 + + + + + C46 + +Small Square C46 Boundry Box +#Line2 + + +1 + +-7.3696725908497,55.3850896588635 +-7.36824083797778,55.4748944745287 +-7.21013763584503,55.473976643127 +-7.21192775887755,55.3841748829024 +-7.3696725908497,55.3850896588635 + + + + + + C46 +#labelStyle + +-7.28998672798748,55.4295640055762 + + + + + C47 + +Small Square C47 Boundry Box +#Line2 + + +1 + +-7.36824069438527,55.4749034558408 +-7.36680086371983,55.5647069203516 +-7.20833723420202,55.5637860193127 +-7.21013745631111,55.4739856241328 +-7.36824069438527,55.4749034558408 + + + + + + C47 +#labelStyle + +-7.28837106582577,55.5193756803818 + + + + + C48 + +Small Square C48 Boundry Box +#Line2 + + +1 + +-7.36680071931636,55.5647159015287 +-7.36535274842357,55.6545180163401 +-7.20652665441851,55.6535940316615 +-7.20833705365421,55.563795000182 +-7.36680071931636,55.5647159015287 + + + + + + C48 +#labelStyle + +-7.28674627909062,55.6091859980376 + + + + + C49 + +Small Square C49 Boundry Box +#Line2 + + +1 + +-7.36535260320285,55.6545269973822 +-7.36389642899264,55.7443277639602 +-7.20470581761633,55.7434006815278 +-7.20652647284895,55.6536030123946 +-7.36535260320285,55.6545269973822 + + + + + + C49 +#labelStyle + +-7.28511229716306,55.6989949599517 + + + + + C50 + +Small Square C50 Boundry Box +#Line2 + + +1 + +-7.22244617817592,54.8452815930028 +-7.22071502051869,54.9350915708465 +-7.06474211707898,54.9339917459214 +-7.0668197636144,54.8441854039494 +-7.22244617817592,54.8452815930028 + + + + + + C50 +#labelStyle + +-7.14367288350832,54.8896671568827 + + + + + C51 + +Small Square C51 Boundry Box +#Line2 + + +1 + +-7.2207148469044,54.9351005526738 +-7.21897404163312,55.0249091576121 +-7.0626526844013,55.0238056802555 +-7.06474190871606,54.9340007273843 +-7.2207148469044,54.9351005526738 + + + + + + C51 +#labelStyle + +-7.14176296616658,54.9794836903914 + + + + + C52 + +Small Square C52 Boundry Box +#Line2 + + +1 + +-7.21897386705031,55.0249181393022 +-7.21722334081856,55.11472537262 +-7.06055158477009,55.1136182265079 +-7.06265247487611,55.0238146615796 +-7.21897386705031,55.0249181393022 + + + + + + C52 +#labelStyle + +-7.13984239462223,55.0692988437373 + + + + + C53 + +Small Square C53 Boundry Box +#Line2 + + +1 + +-7.21722316525987,55.114734354173 +-7.21546284396206,55.2045402171653 +-7.05843872925367,55.203429385845 +-7.06055137407377,55.1136272076931 +-7.21722316525987,55.114734354173 + + + + + + C53 +#labelStyle + +-7.13791108776968,55.1591126181494 + + + + + C54 + +Small Square C54 Boundry Box +#Line2 + + +1 + +-7.21546266742004,55.2045491985812 +-7.21369247618155,55.2943536925529 +-7.05631402799763,55.2932391594422 +-7.05843851737728,55.2034383668916 +-7.21546266742004,55.2045491985812 + + + + + + C54 +#labelStyle + +-7.13596896366283,55.2489250148662 + + + + + C55 + +Small Square C55 Boundry Box +#Line2 + + +1 + +-7.21369229864866,55.294362673832 +-7.21191216181595,55.384165800098 +-7.05417739021289,55.3830475484834 +-7.05631381493214,55.2932481403503 +-7.21369229864866,55.294362673832 + + + + + + C55 +#labelStyle + +-7.13401593950418,55.3387360351353 + + + + + C56 + +Small Square C56 Boundry Box +#Line2 + + +1 + +-7.2119119832846,55.3841747812404 +-7.21012182441509,55.4739765411254 +-7.05202872416361,55.472854554161 +-7.05417717594918,55.3830565292531 +-7.2119119832846,55.3841747812404 + + + + + + C56 +#labelStyle + +-7.13205193163384,55.4285456802139 + + + + + C57 + +Small Square C57 Boundry Box +#Line2 + + +1 + +-7.21012164487758,55.4739855221312 +-7.20832138672938,55.5637859169699 +-7.04986793715483,55.562660177676 +-7.05202850869245,55.4728635347924 +-7.21012164487758,55.4739855221312 + + + + + + C57 +#labelStyle + +-7.13007685551832,55.5183539513684 + + + + + C58 + +Small Square C58 Boundry Box +#Line2 + + +1 + +-7.20832120617795,55.5637948978393 +-7.20651077069947,55.6535939289761 +-7.04769493552003,55.6524644202377 +-7.04986772046691,55.5626691581693 +-7.20832120617795,55.5637948978393 + + + + + + C58 +#labelStyle + +-7.12809062573914,55.608160849874 + + + + + C59 + +Small Square C59 Boundry Box +#Line2 + + +1 + +-7.20651058912628,55.6536029097091 +-7.20468989744563,55.7434005784982 +-7.0455096246084,55.7422672830636 +-7.04769471760593,55.6524734005929 +-7.20651058912628,55.6536029097091 + + + + + + C59 +#labelStyle + +-7.12609315598133,55.6979663770153 + + + + + C60 + +Small Square C60 Boundry Box +#Line2 + + +1 + +-7.06680419995932,54.8441852843464 +-7.06472651877567,54.9339916259217 +-6.90876519582863,54.9326917073192 +-6.91118927877545,54.8428896629218 +-7.06680419995932,54.8441852843464 + + + + + + C60 +#labelStyle + +-6.98786339524509,54.8884691365516 + + + + + C61 + +Small Square C61 Boundry Box +#Line2 + + +1 + +-7.06472631040927,54.9340006073845 +-7.06263705125329,55.0238055598573 +-6.90632736253725,55.0225013245075 +-6.90876495272236,54.9327006883513 +-7.06472631040927,54.9340006073845 + + + + + + C61 +#labelStyle + +-6.98560599814025,54.9782816938618 + + + + + C62 + +Small Square C62 Boundry Box +#Line2 + + +1 + +-7.06263684172459,55.0238145411813 +-7.06053591658289,55.1136181057094 +-6.90387591798425,55.1123095343213 +-6.90632711807501,55.0225103053988 +-7.06263684172459,55.0238145411813 + + + + + + C62 +#labelStyle + +-6.98333600939916,55.068092853269 + + + + + C63 + +Small Square C63 Boundry Box +#Line2 + + +1 + +-7.06053570588305,55.1136270868946 +-7.05842302583132,55.2034292646444 +-6.90141075842955,55.2021163377754 +-6.90387567215572,55.1123185150719 +-7.06053570588305,55.1136270868946 + + + + + + C63 +#labelStyle + +-6.98105333317772,55.1579026158628 + + + + + C64 + +Small Square C64 Boundry Box +#Line2 + + +1 + +-7.05842281395139,55.203438245691 +-7.05629828914267,55.2932390378377 +-6.89893177905681,55.2919217358917 +-6.90141051122429,55.2021253183854 +-7.05842281395139,55.203438245691 + + + + + + C64 +#labelStyle + +-6.97875787263874,55.2477109827407 + + + + + C65 + +Small Square C65 Boundry Box +#Line2 + + +1 + +-7.05629807607363,55.2932480187458 +-7.05416161572637,55.3830474264732 +-6.89643887395957,55.3817257296992 +-6.89893153046429,55.2919307163613 +-7.05629807607363,55.2932480187458 + + + + + + C65 +#labelStyle + +-6.97644952993903,55.3375179550082 + + + + + C66 + +Small Square C66 Boundry Box +#Line2 + + +1 + +-7.05416140145908,55.3830564072429 +-7.05201291384501,55.4728544317433 +-6.89393193612707,55.4715283202339 +-6.89643862396914,55.3817347100284 +-7.05416140145908,55.3830564072429 + + + + + + C66 +#labelStyle + +-6.97412820621643,55.4273235337787 + + + + + C67 + +Small Square C67 Boundry Box +#Line2 + + +1 + +-7.05201269837026,55.4728634123747 +-7.04985209080212,55.5626600548489 +-6.89141085742994,55.5613295085385 +-6.89393168472798,55.4715373004228 +-7.05201269837026,55.4728634123747 + + + + + + C67 +#labelStyle + +-6.97179380157659,55.5171277201732 + + + + + C68 + +Small Square C68 Boundry Box +#Line2 + + +1 + +-7.04985187411058,55.5626690353421 +-7.04767905292961,55.6524642969993 +-6.88887552860563,55.6511292956624 +-6.89141060461133,55.5613384885872 +-7.04985187411058,55.5626690353421 + + + + + + C68 +#labelStyle + +-6.96944621507947,55.6069305153203 + + + + + C69 + +Small Square C69 Boundry Box +#Line2 + + +1 + +-7.04767883501187,55.6524732773545 +-7.04549370557508,55.742267159412 +-6.88632583924357,55.7409276826619 +-6.8888752743565,55.6511382755711 +-7.04767883501187,55.6524732773545 + + + + + + C69 +#labelStyle + +-6.96708534472581,55.6967319203563 + + + + + C70 + +Small Square C70 Boundry Box +#Line2 + + +1 + +-6.9111737163656,54.8428895233752 +-6.90874959877998,54.9326915673098 +-6.75280178576344,54.9311915901725 +-6.75557220349314,54.8413945044783 +-6.9111737163656,54.8428895233752 + + + + + + C70 +#labelStyle + +-6.83206640636068,54.8870713503919 + + + + + C71 + +Small Square C71 Boundry Box +#Line2 + + +1 + +-6.90874935567024,54.9327005483419 +-6.90631173065343,55.0225011840332 +-6.7500156545461,55.0209962260787 +-6.75280150792404,54.9312005707076 +-6.90874935567024,54.9327005483419 + + + + + + C71 +#labelStyle + +-6.82946162436661,54.9768792687137 + + + + + C72 + +Small Square C72 Boundry Box +#Line2 + + +1 + +-6.90631148618769,55.0225101649245 +-6.90386025107088,55.1123093933799 +-6.74721396882167,55.1107994323529 +-6.75001537515714,55.0210052064707 +-6.90631148618769,55.0225101649245 + + + + + + C72 +#labelStyle + +-6.82684231428321,55.0666857684377 + + + + + C73 + +Small Square C73 Boundry Box +#Line2 + + +1 + +-6.90386000523883,55.1123183741305 +-6.90139505629077,55.2021161963649 +-6.74439661005533,55.2006012098349 +-6.74721368787135,55.1108084126021 +-6.90386000523883,55.1123183741305 + + + + + + C73 +#labelStyle + +-6.82420836554054,55.1564908504912 + + + + + C74 + +Small Square C74 Boundry Box +#Line2 + + +1 + +-6.90139480908197,55.2021251769749 +-6.89891604149526,55.29192159401 +-6.74156345848274,55.2904015593697 +-6.74439632753174,55.2006101899412 +-6.90139480908197,55.2021251769749 + + + + + + C74 +#labelStyle + +-6.8215596664231,55.2462945158073 + + + + + C75 + +Small Square C75 Boundry Box +#Line2 + + +1 + +-6.89891579289919,55.2919305744796 +-6.89642310077638,55.3817255873442 +-6.73871439309417,55.3802004818077 +-6.74156317437384,55.2904105393333 +-6.89891579289919,55.2919305744796 + + + + + + C75 +#labelStyle + +-6.81889610405505,55.3360967653255 + + + + + C76 + +Small Square C76 Boundry Box +#Line2 + + +1 + +-6.89642285078239,55.3817345676734 +-6.89391612712185,55.4715281774034 +-6.73584929161832,55.4699979780041 +-6.73871410738779,55.3802094616286 +-6.89642285078239,55.3817345676734 + + + + + + C76 +#labelStyle + +-6.8162175643852,55.4258975999916 + + + + + C77 + +Small Square C77 Boundry Box +#Line2 + + +1 + +-6.89391587571918,55.4715371575923 +-6.89139501240077,55.5613293652303 +-6.73296803050599,55.5597940488193 +-6.73584900430218,55.4700069576824 +-6.89391587571918,55.4715371575923 + + + + + + C77 +#labelStyle + +-6.81352393217173,55.5156970207571 + + + + + C78 + +Small Square C78 Boundry Box +#Line2 + + +1 + +-6.89139475957854,55.561338345279 +-6.88885964734899,55.6511291518745 +-6.73007048491337,55.6495886951185 +-6.73296774156766,55.5598030283552 +-6.89139475957854,55.561338345279 + + + + + + C78 +#labelStyle + +-6.81081509096674,55.6054950285793 + + + + + C79 + +Small Square C79 Boundry Box +#Line2 + + +1 + +-6.88885939309623,55.6511381317831 +-6.8863099215544,55.7409275383919 +-6.72715652868517,55.7393819177716 +-6.73007019434031,55.649597674512 +-6.88885939309623,55.6511381317831 + + + + + + C79 +#labelStyle + +-6.80809092310048,55.6952916244218 + + + + + C80 + +Small Square C80 Boundry Box +#Line2 + + +1 + +-6.75555664251997,54.8413943449919 +-6.75278619016236,54.9311914301572 +-6.59685381546538,54.9294914350292 +-6.59997045185718,54.8396999688858 +-6.75555664251997,54.8413943449919 + + + + + + C80 +#labelStyle + +-6.67628383871267,54.8854738361201 + + + + + C81 + +Small Square C81 Boundry Box +#Line2 + + +1 + +-6.7527859123195,54.9312004106922 +-6.75000002412086,55.020996065532 +-6.59371950365292,55.0192904258007 +-6.59685350290453,54.929500415001 +-6.7527859123195,54.9312004106922 + + + + + + C81 +#labelStyle + +-6.67333178127833,54.975276452927 + + + + + C82 + +Small Square C82 Boundry Box +#Line2 + + +1 + +-6.7499997447284,55.021005045924 +-6.74719830337799,55.1107992712725 +-6.59056769530182,55.1090879617209 +-6.59371918934904,55.019299405627 +-6.7499997447284,55.021005045924 + + + + + + C82 +#labelStyle + +-6.67036326043264,55.0650776274898 + + + + + C83 + +Small Square C83 Boundry Box +#Line2 + + +1 + +-6.74719802242416,55.1108082515216 +-6.74438090939747,55.2006010482184 +-6.58739825709818,55.1988840434312 +-6.59056737924164,55.1090969414018 +-6.74719802242416,55.1108082515216 + + + + + + C83 +#labelStyle + +-6.66737815089435,55.1548773605497 + + + + + C84 + +Small Square C84 Boundry Box +#Line2 + + +1 + +-6.74438062687035,55.2006100283247 +-6.74154772241346,55.2904013972148 +-6.58421105434555,55.2886786715762 +-6.5873979392683,55.1988930229667 +-6.74438062687035,55.2006100283247 + + + + + + C84 +#labelStyle + +-6.66437632608448,55.2446756528524 + + + + + C85 + +Small Square C85 Boundry Box +#Line2 + + +1 + +-6.74154743830101,55.2904103771783 +-6.73869862141472,55.3802003191118 +-6.58100595094706,55.3784718468037 +-6.58421073473243,55.2886876509663 +-6.74154743830101,55.2904103771783 + + + + + + C85 +#labelStyle + +-6.66135765810954,55.3344725051478 + + + + + C86 + +Small Square C86 Boundry Box +#Line2 + + +1 + +-6.73869833570477,55.3802092989326 +-6.73583348412843,55.4699978147648 +-6.57778280938727,55.4682635697646 +-6.58100562953702,55.3784808260486 +-6.73869833570477,55.3802092989326 + + + + + + C86 +#labelStyle + +-6.65832201774455,55.4242679181899 + + + + + C87 + +Small Square C87 Boundry Box +#Line2 + + +1 + +-6.7358331968087,55.4700067944431 +-6.73295218700384,55.5597938850342 +-6.57454149071377,55.5580538411125 +-6.57778248616649,55.4682725488643 +-6.7358331968087,55.4700067944431 + + + + + + C87 +#labelStyle + +-6.65526927441574,55.5140618927367 + + + + + C88 + +Small Square C88 Boundry Box +#Line2 + + +1 + +-6.7329518980619,55.5598028645699 +-6.73005460519559,55.649588530785 +-6.57128185451843,55.6478426615039 +-6.57454116566828,55.5580628200671 +-6.7329518980619,55.5598028645699 + + + + + + C88 +#labelStyle + +-6.65219929618306,55.6038544295503 + + + + + C89 + +Small Square C89 Boundry Box +#Line2 + + +1 + +-6.7300543146189,55.6495975101784 +-6.72714061254682,55.7393817528873 +-6.56800375891841,55.7376300315976 +-6.57128152763412,55.6478516403134 +-6.7300543146189,55.6495975101784 + + + + + + C89 +#labelStyle + +-6.64911194972227,55.6936455293962 + + + + + C90 + +Small Square C90 Boundry Box +#Line2 + + +1 + +-6.59995489251206,54.8396997894639 +-6.59683822150468,54.9294912550122 +-6.44092321231818,54.9275912878356 +-6.44438593677424,54.8378061017722 +-6.59995489251206,54.8396997894639 + + + + + + C90 +#labelStyle + +-6.52051761304218,54.8836766368341 + + + + + C91 + +Small Square C91 Boundry Box +#Line2 + + +1 + +-6.59683790894036,54.929500234984 +-6.59370387488052,55.0192902451861 +-6.43744085186914,55.0173839699415 +-6.440922865049,54.9276002671779 +-6.59683790894036,54.929500234984 + + + + + + C91 +#labelStyle + +-6.51721840417729,54.973473289901 + + + + + C92 + +Small Square C92 Boundry Box +#Line2 + + +1 + +-6.59370356057315,55.0192992250123 +-6.59055203152358,55.1090877805059 +-6.43393905421491,55.1071751690179 +-6.43744050266359,55.0173929491355 +-6.59370356057315,55.0192992250123 + + + + + + C92 +#labelStyle + +-6.51390079786033,55.0632684741284 + + + + + C93 + +Small Square C93 Boundry Box +#Line2 + + +1 + +-6.59055171545989,55.1090967601867 +-6.58738255811848,55.1988838616131 +-6.43041767128012,55.1969648854846 +-6.43393870305826,55.1071841480637 +-6.59055171545989,55.1090967601867 + + + + + + C93 +#labelStyle + +-6.51056465411524,55.1530621900488 + + + + + C94 + +Small Square C94 Boundry Box +#Line2 + + +1 + +-6.58738224028507,55.1988928411485 +-6.58419531996728,55.2886784891523 +-6.42687655345407,55.2867531197624 +-6.43041731815749,55.1969738643821 +-6.58738224028507,55.1988928411485 + + + + + + C94 +#labelStyle + +-6.5072098315163,55.2428544381967 + + + + + C95 + +Small Square C95 Boundry Box +#Line2 + + +1 + +-6.58419500035062,55.2886874685424 +-6.58099018097162,55.3784716637714 +-6.4233155495709,55.376539872273 +-6.42687619835042,55.2867620985117 +-6.58419500035062,55.2886874685424 + + + + + + C95 +#labelStyle + +-6.50383618716939,55.3326452191087 + + + + + C96 + +Small Square C96 Boundry Box +#Line2 + + +1 + +-6.58098985955801,55.3784806430162 +-6.57776700361451,55.468263386121 +-6.41973450688945,55.4663251434387 +-6.42331519247103,55.3765488508742 +-6.58098985955801,55.3784806430162 + + + + + + C96 +#labelStyle + +-6.50044357669301,55.4224345333236 + + + + + C97 + +Small Square C97 Boundry Box +#Line2 + + +1 + +-6.57776668039015,55.4682723652207 +-6.57452564894202,55.5580536568549 +-6.41613327107282,55.5561089336824 +-6.41973414777801,55.4663341218917 +-6.57776668039015,55.4682723652207 + + + + + + C97 +#labelStyle + +-6.497031854199,55.5122223813817 + + + + + C98 + +Small Square C98 Boundry Box +#Line2 + + +1 + +-6.57452532389292,55.5580626358094 +-6.57126597654445,55.6478424766294 +-6.41251168616757,55.6458912434271 +-6.4161329099343,55.5561179119873 +-6.57452532389292,55.5580626358094 + + + + + + C98 +#labelStyle + +-6.49360087227294,55.602008763825 + + + + + C99 + +Small Square C99 Boundry Box +#Line2 + + +1 + +-6.57126564965651,55.6478514554389 +-6.5679878445374,55.7376298461035 +-6.40886959458262,55.7356720730963 +-6.41251132298628,55.6459002215841 +-6.57126564965651,55.6478514554389 + + + + + + C99 +#labelStyle + +-6.49015048195424,55.6917936811972 + + + + + + D + +Large Square D Boundry Box +#Line1 + + +1 + +-6.44437037924838,54.8378059024196 +-6.40885368216534,55.7356718669975 +-4.81900417407565,55.7047733813302 +-4.8899084960484,54.8079180580499 +-6.44437037924838,54.8378059024196 + + + + + + D00 + +Small Square D00 Boundry Box +#Line2 + + +1 + +-6.44437037924838,54.8378059024196 +-6.44090762019054,54.9275910878219 +-6.28501190235823,54.925491199932 +-6.2888205698207,54.8357129541222 +-6.44437037924838,54.8378059024196 + + + + + + D00 +#labelStyle + +-6.3647696488256,54.8816798010094 + + + + + D01 + +Small Square D01 Boundry Box +#Line2 + + +1 + +-6.44090727291789,54.9276000671642 +-6.43742522494371,55.0173837692638 +-6.28118163984148,55.0152769102005 +-6.2850115203953,54.9255001785787 +-6.44090727291789,54.9276000671642 + + + + + + D01 +#labelStyle + +-6.36112342708437,54.9714698284498 + + + + + D02 + +Small Square D02 Boundry Box +#Line2 + + +1 + +-6.43742487573468,55.0173927484578 +-6.43392339229771,55.1071749676732 +-6.27733000096886,55.105061106306 +-6.28118125574901,55.0152858886958 +-6.43742487573468,55.0173927484578 + + + + + + D02 +#labelStyle + +-6.35745687528167,55.06125835751 + + + + + D03 + +Small Square D03 Boundry Box +#Line2 + + +1 + +-6.43392304113756,55.1071839467189 +-6.43040197417568,55.1969646834699 +-6.27345682292302,55.1948437884236 +-6.27732961473063,55.1050700846499 +-6.43392304113756,55.1071839467189 + + + + + + D03 +#labelStyle + +-6.35376983876505,55.1510453884901 + + + + + D04 + +Small Square D04 Boundry Box +#Line2 + + +1 + +-6.43040162104952,55.1969736623674 +-6.42686082096543,55.2867529170747 +-6.26956194119885,55.2846249567267 +-6.27345643452267,55.1948527666161 +-6.43040162104952,55.1969736623674 + + + + + + D04 +#labelStyle + +-6.35006216128074,55.2408309216904 + + + + + D05 + +Small Square D05 Boundry Box +#Line2 + + +1 + +-6.42686046585823,55.286761895824 +-6.4232997814996,55.3765396689093 +-6.26564518958165,55.3744046113872 +-6.26956155061985,55.2846339347678 +-6.42686046585823,55.286761895824 + + + + + + D05 +#labelStyle + +-6.34633368495297,55.3306149574108 + + + + + D06 + +Small Square D06 Boundry Box +#Line2 + + +1 + +-6.42329942439616,55.3765486475104 +-6.4197187030355,55.4663249393959 +-6.26170640012499,55.4641827525752 +-6.26564479680729,55.374413589277 +-6.42329942439616,55.3765486475104 + + + + + + D06 +#labelStyle + +-6.34258425026305,55.4203974959508 + + + + + D07 + +Small Square D07 Boundry Box +#Line2 + + +1 + +-6.41971834392047,55.4663339178489 +-6.4161174312347,55.5561087289574 +-6.25774540312827,55.5539593804585 +-6.2617060051384,55.4641917303137 +-6.41971834392047,55.4663339178489 + + + + + + D07 +#labelStyle + +-6.33881369602798,55.5101785376091 + + + + + D08 + +Small Square D08 Boundry Box +#Line2 + + +1 + +-6.41611707009257,55.5561177072623 +-6.41249581014219,55.6458910380168 +-6.25376202711383,55.6437344952026 +-6.25774500591239,55.5539683580456 +-6.41611707009257,55.5561177072623 + + + + + + D08 +#labelStyle + +-6.33502185937892,55.5999580826836 + + + + + D09 + +Small Square D09 Boundry Box +#Line2 + + +1 + +-6.41249544695728,55.6459000161737 +-6.40885368216534,55.7356718669975 +-6.24975609880377,55.7335080969704 +-6.2537616276514,55.6437434726384 +-6.41249544695728,55.6459000161737 + + + + + + D09 +#labelStyle + +-6.3312085757391,55.6897361314711 + + + + + D10 + +Small Square D10 Boundry Box +#Line2 + + +1 + +-6.2888050143052,54.8357127348443 +-6.28499631225616,54.925490979927 +-6.12912181012569,54.9231912280478 +-6.13327626109565,54.8334205822722 +-6.2888050143052,54.8357127348443 + + + + + + D10 +#labelStyle + +-6.20904186412649,54.8794833824943 + + + + + D11 + +Small Square D11 Boundry Box +#Line2 + + +1 + +-6.28499593028977,54.9254999585737 +-6.28116601495702,55.0152766894652 +-6.12494380670126,55.012969303704 +-6.12912139348505,54.9232002059328 +-6.28499593028977,54.9254999585737 + + + + + + D11 +#labelStyle + +-6.20504878258953,54.9692661227982 + + + + + D12 + +Small Square D12 Boundry Box +#Line2 + + +1 + +-6.28116563086106,55.0152856679604 +-6.27731434110817,55.1050608848371 +-6.12074248943661,55.1027458311121 +-6.12494338773805,55.0129782814341 +-6.28116563086106,55.0152856679604 + + + + + + D12 +#labelStyle + +-6.20103343996273,55.0590473322388 + + + + + D13 + +Small Square D13 Boundry Box +#Line2 + + +1 + +-6.27731395486644,55.1050698631809 +-6.2734411278908,55.1948435662178 +-6.11651768079393,55.1925208101795 +-6.12074206813317,55.1027548086874 +-6.27731395486644,55.1050698631809 + + + + + + D13 +#labelStyle + +-6.19699566693757,55.1488270108615 + + + + + D14 + +Small Square D14 Boundry Box +#Line2 + + +1 + +-6.27344073948693,55.1948525444102 +-6.2695462107983,55.2846247337807 +-6.11226920139548,55.282294240809 +-6.11651725713241,55.1925297876 +-6.27344073948693,55.1948525444102 + + + + + + D14 +#labelStyle + +-6.1929352924529,55.2386051587089 + + + + + D15 + +Small Square D15 Boundry Box +#Line2 + + +1 + +-6.26954582021576,55.2846337118217 +-6.26562942361447,55.3744043876977 +-6.10799686999986,55.3720661228991 +-6.11226877535786,55.2823032180746 +-6.26954582021576,55.2846337118217 + + + + + + D15 +#labelStyle + +-6.18885214367231,55.3283817758206 + + + + + D16 + +Small Square D16 Boundry Box +#Line2 + + +1 + +-6.26562903083656,55.3744133655874 +-6.26169059839138,55.4641825281388 +-6.10370050347785,55.4618364563435 +-6.10799644156791,55.3720751000099 +-6.26562903083656,55.3744133655874 + + + + + + D16 +#labelStyle + +-6.18474604596117,55.4181568622331 + + + + + D17 + +Small Square D17 Boundry Box +#Line2 + + +1 + +-6.2616902034012,55.4641915058772 +-6.25772956542686,55.5539591552718 +-6.09937991678796,55.5516052410311 +-6.10370007263316,55.4618454332995 +-6.2616902034012,55.4641915058772 + + + + + + D17 +#labelStyle + +-6.18061682286333,55.5079304179795 + + + + + D18 + +Small Square D18 Boundry Box +#Line2 + + +1 + +-6.25772916820736,55.5539681328589 +-6.2537461532417,55.6437342692622 +-6.09503492295151,55.6413724768454 +-6.09937948351194,55.5516142178321 +-6.25772916820736,55.5539681328589 + + + + + + D18 +#labelStyle + +-6.17646429607746,55.5977024430892 + + + + + D19 + +Small Square D19 Boundry Box +#Line2 + + +1 + +-6.25374575377565,55.6437432466979 +-6.24974018855647,55.7335078702729 +-6.09066533302738,55.7311381636644 +-6.09503448722537,55.6413814534915 +-6.25374575377565,55.6437432466979 + + + + + + D19 +#labelStyle + +-6.17228828543298,55.6874729375878 + + + + + D20 + +Small Square D20 Boundry Box +#Line2 + + +1 + +-6.13326070778143,54.8334203430748 +-6.12910622224158,54.9231909880574 +-5.97325485851594,54.920691434296 +-5.97775491907421,54.8309290479049 +-6.13326070778143,54.8334203430748 + + + + + + D20 +#labelStyle + +-6.05333617544785,54.8770874405052 + + + + + D21 + +Small Square D21 Boundry Box +#Line2 + + +1 + +-6.12910580559747,54.9231999659423 +-6.1249281840516,55.012969062917 +-5.96872928991383,55.0104612129992 +-5.97325440721507,54.9207004113531 +-6.12910580559747,54.9231999659423 + + + + + + D21 +#labelStyle + +-6.04899640170212,54.9668622325758 + + + + + D22 + +Small Square D22 Boundry Box +#Line2 + + +1 + +-6.1249277650849,55.0129780406471 +-6.12072683182775,55.102745589525 +-5.96417847180374,55.1002294064223 +-5.96872883609756,55.0104701898978 +-6.1249277650849,55.0129780406471 + + + + + + D22 +#labelStyle + +-6.04463243756859,55.0566354583624 + + + + + D23 + +Small Square D23 Boundry Box +#Line2 + + +1 + +-6.1207264105208,55.1027545671003 +-6.11650198803073,55.1925205677887 +-5.95960221195075,55.1899960141814 +-5.96417801545294,55.1002383831623 +-6.1207264105208,55.1027545671003 + + + + + + D23 +#labelStyle + +-6.04024409910497,55.1464071176322 + + + + + D24 + +Small Square D24 Boundry Box +#Line2 + + +1 + +-6.11650156436569,55.1925295452091 +-6.11225347328133,55.2822939976108 +-5.95500031612827,55.2797610358855 +-5.9596017530461,55.1900049907628 +-6.11650156436569,55.1925295452091 + + + + + + D24 +#labelStyle + +-6.03583120046533,55.2361772101471 + + + + + D25 + +Small Square D25 Boundry Box +#Line2 + + +1 + +-6.11225304724016,55.2823029748764 +-6.10798110633663,55.37206587889 +-5.95037258809229,55.3695244711363 +-5.95499985465023,55.2797700123084 +-6.11225304724016,55.2823029748764 + + + + + + D25 +#labelStyle + +-6.03139355387554,55.325945735663 + + + + + D26 + +Small Square D26 Boundry Box +#Line2 + + +1 + +-6.10798067790111,55.3720748560006 +-6.10368470406591,55.4618362115197 +-5.94571882955533,55.4592863195274 +-5.95037212402115,55.3695334474005 +-6.10798067790111,55.3720748560006 + + + + + + D26 +#labelStyle + +-6.02693096960838,55.4157126939296 + + + + + D27 + +Small Square D27 Boundry Box +#Line2 + + +1 + +-6.10368427321765,55.4618451884756 +-6.09936408142615,55.551604995389 +-5.94103884015991,55.5490465806446 +-5.94571836287116,55.4592952956329 +-6.10368427321765,55.4618451884756 + + + + + + D27 +#labelStyle + +-6.02244325595821,55.5054780846904 + + + + + D28 + +Small Square D28 Boundry Box +#Line2 + + +1 + +-6.09936364814653,55.5516139721899 +-6.09501905143711,55.6413722303812 +-5.93633241745158,55.638805254065 +-5.94103837084256,55.5490555565913 +-6.09936364814653,55.5516139721899 + + + + + + D28 +#labelStyle + +-6.01793021921525,55.5952419076824 + + + + + D29 + +Small Square D29 Boundry Box +#Line2 + + +1 + +-6.09501861570734,55.6413812070272 +-6.0906494251561,55.7311379163743 +-5.93159935685164,55.7285623393575 +-5.93633194548071,55.638814229853 +-6.09501861570734,55.6413812070272 + + + + + + D29 +#labelStyle + +-6.0133916636395,55.6850041626354 + + + + + D30 + +Small Square D30 Boundry Box +#Line2 + + +1 + +-5.97773936815205,54.8309287887946 +-5.97323927304199,54.9206911743267 +-5.81741296863135,54.9179918861675 +-5.82225845046119,54.8282384180442 +-5.97773936815205,54.8309287887946 + + + + + + D30 +#labelStyle + +-5.89765449758466,54.8744920396203 + + + + + D31 + +Small Square D31 Boundry Box +#Line2 + + +1 + +-5.97323882173765,54.9207001513837 +-5.96871366969263,55.0104609521672 +-5.81254002512854,55.007752706049 +-5.81741248268918,54.9180008623307 +-5.97323882173765,54.9207001513837 + + + + + + D31 +#labelStyle + +-5.89296821370151,54.964258222812 + + + + + D32 + +Small Square D32 Boundry Box +#Line2 + + +1 + +-5.96871321587288,55.0104699290657 +-5.96416281664183,55.1002291447235 +-5.80763989841638,55.0975119006755 +-5.81253953647832,55.0077616820497 +-5.96871321587288,55.0104699290657 + + + + + + D32 +#labelStyle + +-5.88825581201214,55.0540228013653 + + + + + D33 + +Small Square D33 Boundry Box +#Line2 + + +1 + +-5.96416236028752,55.1002381214635 +-5.95958652165318,55.1899957516121 +-5.80271238158818,55.1872694693494 +-5.80763940703753,55.0975208765137 +-5.96416236028752,55.1002381214635 + + + + + + D33 +#labelStyle + +-5.88351709396462,55.1437857747467 + + + + + D34 + +Small Square D34 Boundry Box +#Line2 + + +1 + +-5.959586062745,55.1900047281935 +-5.95498459049862,55.2797607724418 +-5.79775726559417,55.2770254113623 +-5.8027118874599,55.1872784450249 +-5.959586062745,55.1900047281935 + + + + + + D34 +#labelStyle + +-5.87875185895279,55.2335471424138 + + + + + D35 + +Small Square D35 Boundry Box +#Line2 + + +1 + +-5.95498412901704,55.2797697488646 +-5.95035682693264,55.3695242068142 +-5.79277433921389,55.3667797259955 +-5.79775676869545,55.2770343868752 +-5.95498412901704,55.2797697488646 + + + + + + D35 +#labelStyle + +-5.87395990428974,55.3233069038154 + + + + + D36 + +Small Square D36 Boundry Box +#Line2 + + +1 + +-5.95035636285794,55.3695331830784 +-5.94570303266625,55.459286054323 +-5.78776338902809,55.456532412519 +-5.7927738395235,55.3667887013456 +-5.95035636285794,55.3695331830784 + + + + + + D36 +#labelStyle + +-5.86914102518094,55.4130650583912 + + + + + D37 + +Small Square D37 Boundry Box +#Line2 + + +1 + +-5.94570256597849,55.4592950304284 +-5.94102300734042,55.5490463145538 +-5.78272419939018,55.5462834701913 +-5.78776288652457,55.4565413877062 +-5.94570256597849,55.4592950304284 + + + + + + D37 +#labelStyle + +-5.86429501469696,55.502821605571 + + + + + D38 + +Small Square D38 Boundry Box +#Line2 + + +1 + +-5.94102253801947,55.5490552905004 +-5.93631654849918,55.6388049870839 +-5.77765655239735,55.6360328982592 +-5.78272369405186,55.5462924452156 +-5.94102253801947,55.5490552905004 + + + + + + D38 +#labelStyle + +-5.85942166374571,55.592576544775 + + + + + D39 + +Small Square D39 Boundry Box +#Line2 + + +1 + +-5.93631607652468,55.6388139628717 +-5.93158345156225,55.7285620714818 +-5.77256022786107,55.7257806959576 +-5.77765604420232,55.6360418731205 +-5.93631607652468,55.6388139628717 + + + + + + D39 +#labelStyle + +-5.8545207610443,55.6823298754132 + + + + + D40 + +Small Square D40 Boundry Box +#Line2 + + +1 + +-5.82224290212164,54.8282381390278 +-5.81739738575957,54.9179916062263 +-5.66159805963338,54.9150926565244 +-5.66678876004499,54.8253487650477 +-5.82224290212164,54.8282381390278 + + + + + + D40 +#labelStyle + +-5.74199874347667,54.8716972497742 + + + + + D41 + +Small Square D41 Boundry Box +#Line2 + + +1 + +-5.81739689981394,54.9180005823895 +-5.81252440752927,55.0077524251789 +-5.65637794602886,55.0048438562248 +-5.66159753907028,54.9151016317278 +-5.81739689981394,54.9180005823895 + + + + + + D41 +#labelStyle + +-5.73696614598811,54.9614541639295 + + + + + D42 + +Small Square D42 Boundry Box +#Line2 + + +1 + +-5.81252391887557,55.0077614011795 +-5.80762424589635,55.0975116188723 +-5.65112871762949,55.0945933877576 +-5.65637742256529,55.0048528312613 +-5.81252391887557,55.0077614011795 + + + + + + D42 +#labelStyle + +-5.73190550530312,55.0512094321632 + + + + + D43 + +Small Square D43 Boundry Box +#Line2 + + +1 + +-5.807623754514,55.0975205947104 +-5.80269669395266,55.1872691866089 +-5.64585015288403,55.1843412500884 +-5.6511281912434,55.0946023626273 +-5.807623754514,55.0975205947104 + + + + + + D43 +#labelStyle + +-5.72681660828621,55.1409630536181 + + + + + D44 + +Small Square D44 Boundry Box +#Line2 + + +1 + +-5.80269619982086,55.1872781622843 +-5.79774154264695,55.2770251276803 +-5.64054202794721,55.2740874421686 +-5.64584962355315,55.1843502247911 +-5.80269619982086,55.1872781622843 + + + + + + D44 +#labelStyle + +-5.72169923959745,55.2307150274247 + + + + + D45 + +Small Square D45 Boundry Box +#Line2 + + +1 + +-5.79774104574469,55.2770341031931 +-5.79275858075726,55.3667794413678 +-5.63520411665015,55.3638319629354 +-5.64054149564904,55.2740964167042 +-5.79774104574469,55.2770341031931 + + + + + + D45 +#labelStyle + +-5.71655318166404,55.3204653527015 + + + + + D46 + +Small Square D46 Boundry Box +#Line2 + + +1 + +-5.7927580810633,55.3667884167178 +-5.78774759486282,55.4565321269412 +-5.62983619047033,55.4535748113115 +-5.63520358136195,55.3638409373039 +-5.7927580810633,55.3667884167178 + + + + + + D46 +#labelStyle + +-5.71137821465147,55.4102140285539 + + + + + D47 + +Small Square D47 Boundry Box +#Line2 + + +1 + +-5.78774709235572,55.4565411021284 +-5.78270836931553,55.5462831836592 +-5.6244380185011,55.5433159862045 +-5.62983565216915,55.4535837855127 +-5.78774709235572,55.4565411021284 + + + + + + D47 +#labelStyle + +-5.70617411643422,55.4999610540748 + + + + + D48 + +Small Square D48 Boundry Box +#Line2 + + +1 + +-5.7827078639736,55.5462921586834 +-5.77764068621102,55.6360326107685 +-5.61900936742062,55.6330554865066 +-5.62443747716371,55.5433249602383 +-5.7827078639736,55.5462921586834 + + + + + + D48 +#labelStyle + +-5.70094066256608,55.5897064283435 + + + + + D49 + +Small Square D49 Boundry Box +#Line2 + + +1 + +-5.77764017801236,55.6360415856297 +-5.77254432535921,55.7257804075038 +-5.61355000146045,55.7227933110943 +-5.61900882302356,55.6330644603729 +-5.77764017801236,55.6360415856297 + + + + + + D49 +#labelStyle + +-5.69567762624983,55.6794501504256 + + + + + D50 + +Small Square D50 Boundry Box +#Line2 + + +1 + +-5.66677321447845,54.8253484661328 +-5.66158247955559,54.915092356619 +-5.50581204859505,54.9119938235934 +-5.51134775055203,54.8222601666009 +-5.66677321447845,54.8253484661328 + + + + + + D50 +#labelStyle + +-5.58637082406173,54.8687031462506 + + + + + D51 + +Small Square D51 Boundry Box +#Line2 + + +1 + +-5.66158195898903,54.9151013318222 +-5.65636233124478,55.0048435553242 +-5.50024498418305,55.0017347422996 +-5.50581149343285,54.912002797771 +-5.66158195898903,54.9151013318222 + + + + + + D51 +#labelStyle + +-5.58099212393471,54.9584501317373 + + + + + D52 + +Small Square D52 Boundry Box +#Line2 + + +1 + +-5.65636180777773,55.0048525303607 +-5.65111306794608,55.0945930858576 +-5.49464687565562,55.0914739469935 +-5.50024442592816,55.0017437163058 +-5.65636180777773,55.0048525303607 + + + + + + D52 +#labelStyle + +-5.57558345739758,55.0481954270958 + + + + + D53 + +Small Square D53 Boundry Box +#Line2 + + +1 + +-5.65111254155649,55.0946020607272 +-5.64583446810678,55.1843409471844 +-5.48901748684607,55.1812114362808 +-5.49464631428455,55.0914829208283 +-5.65111254155649,55.0946020607272 + + + + + + D53 +#labelStyle + +-5.57014459675925,55.1379390311219 + + + + + D54 + +Small Square D54 Boundry Box +#Line2 + + +1 + +-5.64583393877238,55.184349921887 +-5.64052630788012,55.2740871382561 +-5.48335657914322,55.2709472087494 +-5.48901692233509,55.1812204099439 +-5.64583393877238,55.184349921887 + + + + + + D54 +#labelStyle + +-5.56467531197444,55.2276809425963 + + + + + D55 + +Small Square D55 Boundry Box +#Line2 + + +1 + +-5.64052577557841,55.2740961127916 +-5.63518836109574,55.3638316580099 +-5.47766391145984,55.3606812629693 +-5.48335601146833,55.2709561822407 +-5.64052577557841,55.2740961127916 + + + + + + D55 +#labelStyle + +-5.55917537061327,55.3174211602835 + + + + + D56 + +Small Square D56 Boundry Box +#Line2 + + +1 + +-5.63518782580399,55.3638406323782 +-5.62982039922963,55.4535745053684 +-5.47193924020068,55.4504135974923 +-5.47766334059682,55.3606902362888 +-5.63518782580399,55.3638406323782 + + + + + + D56 +#labelStyle + +-5.55364453783054,55.4071596829319 + + + + + D57 + +Small Square D57 Boundry Box +#Line2 + + +1 + +-5.62981986092486,55.4535834795694 +-5.62442219137357,55.5433156792391 +-5.46618231922994,55.540144210851 +-5.47193866612503,55.4504225706397 +-5.62981986092486,55.4535834795694 + + + + + + D57 +#labelStyle + +-5.54808257633442,55.496896509273 + + + + + D58 + +Small Square D58 Boundry Box +#Line2 + + +1 + +-5.62442165003258,55.5433246532728 +-5.61899350420421,55.6330551785143 +-5.46039289983827,55.6298731015592 +-5.46618174191693,55.5401531838263 +-5.62442165003258,55.5433246532728 + + + + + + D58 +#labelStyle + +-5.54248924635473,55.5866316380215 + + + + + D59 + +Small Square D59 Boundry Box +#Line2 + + +1 + +-5.61899295980354,55.6330641523805 +-5.61353410195155,55.7227930020704 +-5.45457073070929,55.7196002681105 +-5.46039231926289,55.629882074362 +-5.61899295980354,55.6330641523805 + + + + + + D59 +#labelStyle + +-5.53686430561067,55.6763650678743 + + + + + D60 + +Small Square D60 Boundry Box +#Line2 + + +1 + +-5.51133220794865,54.8222598477955 +-5.50579647150284,54.9119935037317 +-5.35005685035388,54.908695470958 +-5.35593732250143,54.8189727057091 +-5.51133220794865,54.8222598477955 + + + + + + D60 +#labelStyle + +-5.43077264812934,54.8655098096755 + + + + + D61 + +Small Square D61 Boundry Box +#Line2 + + +1 + +-5.50579591633718,54.9120024779091 +-5.50022937240721,55.0017344213768 +-5.34414306889517,54.9984254484409 +-5.35005626061583,54.9087044440438 +-5.50579591633718,54.9120024779091 + + + + + + D61 +#labelStyle + +-5.42504807073825,54.9552462074241 + + + + + D62 + +Small Square D62 Boundry Box +#Line2 + + +1 + +-5.50022881414885,55.0017433953829 +-5.49463122900333,55.0914736250049 +-5.33819631641393,55.0881536631401 +-5.34414247587247,54.9984344213506 +-5.50022881414885,55.0017433953829 + + + + + + D62 +#labelStyle + +-5.41929160604776,55.0449808679194 + + + + + D63 + +Small Square D63 Boundry Box +#Line2 + + +1 + +-5.49463066762877,55.0914825988395 +-5.48900180512307,55.1812111132215 +-5.33221634215911,55.1778801132786 +-5.33819572008163,55.0881626358734 +-5.49463066762877,55.0914825988395 + + + + + + D63 +#labelStyle + +-5.41350301184107,55.1347137895881 + + + + + D64 + +Small Square D64 Boundry Box +#Line2 + + +1 + +-5.48900124060857,55.1812200868845 +-5.48334086215375,55.2709468846146 +-5.32620289278509,55.2676047970578 +-5.332215742492,55.1778890858353 +-5.48900124060857,55.1812200868845 + + + + + + D64 +#labelStyle + +-5.40768204339783,55.2244449708375 + + + + + D65 + +Small Square D65 Boundry Box +#Line2 + + +1 + +-5.48334029447532,55.2709558581059 +-5.47764815900666,55.3606809377543 +-5.32015571231832,55.3573277126573 +-5.32620228975772,55.2676137694378 +-5.48334029447532,55.2709558581059 + + + + + + D65 +#labelStyle + +-5.40182845346191,55.3141744100555 + + + + + D66 + +Small Square D66 Boundry Box +#Line2 + + +1 + +-5.47764758814008,55.3606899110736 +-5.47192345208505,55.4504132711921 +-5.31407454212326,55.4470488582342 +-5.32015510590494,55.3573366848603 +-5.47764758814008,55.3606899110736 + + + + + + D66 +#labelStyle + +-5.39594199220865,55.4039021056093 + + + + + D67 + +Small Square D67 Boundry Box +#Line2 + + +1 + +-5.47192287800582,55.4504222443394 +-5.46616649525158,55.5401438834608 +-5.30795912086804,55.5367682319229 +-5.3140739322979,55.4470578302602 +-5.47192287800582,55.4504222443394 + + + + + + D67 +#labelStyle + +-5.39002240721168,55.4936280558462 + + + + + D68 + +Small Square D68 Boundry Box +#Line2 + + +1 + +-5.46616591793497,55.5401528564359 +-5.4603770397954,55.6298727730739 +-5.30180918448931,55.626485831834 +-5.30795850760441,55.5367772037716 +-5.46616591793497,55.5401528564359 + + + + + + D68 +#labelStyle + +-5.3840694434091,55.5833522590917 + + + + + D69 + +Small Square D69 Boundry Box +#Line2 + + +1 + +-5.4603764592164,55.6298817458767 +-5.45455483439854,55.7195999385252 +-5.29562446615676,55.7162016560548 +-5.30180856776087,55.6264948035053 +-5.4603764592164,55.6298817458767 + + + + + + D69 +#labelStyle + +-5.37808284306926,55.6730747136504 + + + + + D70 + +Small Square D70 Boundry Box +#Line2 + + +1 + +-5.35592178305115,54.8189723670219 +-5.35004127643863,54.9086951311487 +-5.19433437736523,54.9051976875506 +-5.20055937406025,54.81548647069 +-5.35592178305115,54.8189723670219 + + + + + + D70 +#labelStyle + +-5.27520612217476,54.8621173260097 + + + + + D71 + +Small Square D71 Boundry Box +#Line2 + + +1 + +-5.35004068669712,54.9087041042344 +-5.34412746032038,54.9984251075045 +-5.18807412705654,54.9949160642021 +-5.19433375307602,54.9052066594789 +-5.35004068669712,54.9087041042344 + + + + + + D71 +#labelStyle + +-5.26913590727198,54.95184247755 + + + + + D72 + +Small Square D72 Boundry Box +#Line2 + + +1 + +-5.3441268672942,54.998434080414 +-5.33818067298704,55.0881533210715 +-5.18177898137987,55.0846326263778 +-5.18807349929097,54.9949250359491 +-5.3441268672942,54.998434080414 + + + + + + D72 +#labelStyle + +-5.26303188665236,55.0415658417996 + + + + + D73 + +Small Square D73 Boundry Box +#Line2 + + +1 + +-5.33818007665125,55.0881622938047 +-5.3322006636861,55.1778797700728 +-5.1754486750327,55.1743473718953 +-5.18177835011154,55.0846415979432 +-5.33818007665125,55.0881622938047 + + + + + + D73 +#labelStyle + +-5.25689380360512,55.1312874167932 + + + + + D74 + +Small Square D74 Boundry Box +#Line2 + + +1 + +-5.33220006401548,55.1778887426294 +-5.32618717907047,55.2676044527097 +-5.16908293996845,55.2640602985466 +-5.17544804023495,55.1743563432789 +-5.33220006401548,55.1778887426294 + + + + + + D74 +#labelStyle + +-5.25072139876707,55.2210072005422 + + + + + D75 + +Small Square D75 Boundry Box +#Line2 + + +1 + +-5.32618657603957,55.2676134250896 +-5.3201399631651,55.3573273671617 +-5.16268150536113,55.3537714040977 +-5.16908230161432,55.2640692697482 +-5.32618657603957,55.2676134250896 + + + + + + D75 +#labelStyle + +-5.24451441008854,55.3107251910342 + + + + + D76 + +Small Square D76 Boundry Box +#Line2 + + +1 + +-5.32013935674817,55.3573363393647 +-5.31405875733297,55.447048511586 +-5.15624409756947,55.4434806862877 +-5.16268086342341,55.3537803751171 +-5.32013935674817,55.3573363393647 + + + + + + D76 +#labelStyle + +-5.23827257279867,55.4004413862327 + + + + + D77 + +Small Square D77 Boundry Box +#Line2 + + +1 + +-5.31405814750403,55.4470574836119 +-5.30794330024066,55.5367678841168 +-5.14977044010048,55.5331881428286 +-5.15624345202066,55.4434896571246 +-5.31405814750403,55.4470574836119 + + + + + + D77 +#labelStyle + +-5.23199561937026,55.4901557840762 + + + + + D78 + +Small Square D78 Boundry Box +#Line2 + + +1 + +-5.30794268697344,55.5367768559654 +-5.30179332782332,55.6264854828649 +-5.14326025357239,55.6228937714047 +-5.14976979091278,55.5331971134829 +-5.30794268697344,55.5367768559654 + + + + + + D78 +#labelStyle + +-5.22568327948399,55.5798683824781 + + + + + D79 + +Small Square D79 Boundry Box +#Line2 + + +1 + +-5.30179271109127,55.626494454536 +-5.29560857324907,55.7162013059172 +-5.13671325567711,55.712597569672 +-5.14325960071772,55.6229027418761 +-5.30179271109127,55.626494454536 + + + + + + D79 +#labelStyle + +-5.21933527999219,55.6695791793259 + + + + + D80 + +Small Square D80 Boundry Box +#Line2 + + +1 + +-5.20054383795277,54.8154861121298 +-5.19431880681805,54.9051973278029 +-5.03864653955609,54.9015005676443 +-5.04521580089913,54.8118015551648 +-5.20054383795277,54.8154861121298 + + + + + + D80 +#labelStyle + +-5.11967315025343,54.8585257865401 + + + + + D81 + +Small Square D81 Boundry Box +#Line2 + + +1 + +-5.19431818252539,54.905206299731 +-5.18805852187537,54.9949157032613 +-5.03204008299773,54.9912066845142 +-5.03864588074185,54.9015095383494 +-5.19431818252539,54.905206299731 + + + + + + D81 +#labelStyle + +-5.11325755193814,54.9482390340383 + + + + + D82 + +Small Square D82 Boundry Box +#Line2 + + +1 + +-5.18805789410632,54.9949246750082 +-5.18176334137241,55.0846322642386 +-5.0253968094352,55.0809109323018 +-5.03203942051568,54.9912156550324 +-5.18805789410632,54.9949246750082 + + + + + + D82 +#labelStyle + +-5.10680623210736,55.0379504413022 + + + + + D83 + +Small Square D83 Boundry Box +#Line2 + + +1 + +-5.18176271010058,55.0846412358039 +-5.17543300000519,55.1743470085524 +-5.01871643904932,55.1706133083971 +-5.02539614325751,55.0809199026331 +-5.18176271010058,55.0846412358039 + + + + + + D83 +#labelStyle + +-5.10031891958991,55.127660005952 + + + + + D84 + +Small Square D84 Boundry Box +#Line2 + + +1 + +-5.17543236520392,55.1743559799359 +-5.16906722972566,55.2640599339946 +-5.01199868912786,55.2603138101595 +-5.01871576914785,55.170622278541 +-5.17543236520392,55.1743559799359 + + + + + + D84 +#labelStyle + +-5.09379534041394,55.2173677255802 + + + + + D85 + +Small Square D85 Boundry Box +#Line2 + + +1 + +-5.169066591368,55.2640689051961 +-5.16266575970636,55.3537710383311 +-5.00524327402833,55.3500124349181 +-5.0119980154742,55.2603227801158 +-5.169066591368,55.2640689051961 + + + + + + D85 +#labelStyle + +-5.08723521777085,55.3070735977514 + + + + + D86 + +Small Square D86 Boundry Box +#Line2 + + +1 + +-5.16266511776509,55.3537800093504 +-5.15622831630452,55.443480319301 +-4.99844990514015,55.439709179971 +-5.00524259659377,55.3500214046866 +-5.16266511776509,55.3537800093504 + + + + + + D86 +#labelStyle + +-5.08063827197878,55.3967776200016 + + + + + D87 + +Small Square D87 Boundry Box +#Line2 + + +1 + +-5.15622767075213,55.4434892901379 +-5.14975462302562,55.5331877746164 +-4.99161829084624,55.5294040425842 +-4.99844922389569,55.4397181495514 +-5.15622767075213,55.4434892901379 + + + + + + D87 +#labelStyle + +-5.07400422044546,55.4864797898376 + + + + + D88 + +Small Square D88 Boundry Box +#Line2 + + +1 + +-5.14975397383433,55.5331967452705 +-5.14324440048638,55.6228934019614 +-4.984748136484,55.6190970199916 +-4.99161760576255,55.5294130119762 +-5.14975397383433,55.5331967452705 + + + + + + D88 +#labelStyle + +-5.06733277763047,55.5761801047362 + + + + + D89 + +Small Square D89 Boundry Box +#Line2 + + +1 + +-5.14324374762809,55.6229023724326 +-5.13669736637715,55.7125971989919 +-4.97783914430572,55.7087881093942 +-4.98474744753146,55.619105989195 +-5.14324374762809,55.6229023724326 + + + + + + D89 +#labelStyle + +-5.06062365500691,55.6658785621445 + + + + + D90 + +Small Square D90 Boundry Box +#Line2 + + +1 + +-5.04520026832388,54.8118011767415 +-5.03863097256785,54.9015001879678 +-4.88299524417943,54.8976042108435 +-4.8899084960484,54.8079180580499 +-5.04520026832388,54.8118011767415 + + + + + + D90 +#labelStyle + +-4.96417563383605,54.8547352878713 + + + + + D91 + +Small Square D91 Boundry Box +#Line2 + + +1 + +-5.03863031375015,54.9015091586727 +-5.03202448140247,54.9912063035787 +-4.87604285834099,54.9872974096764 +-4.8829945508677,54.8976131802596 +-5.03863031375015,54.9015091586727 + + + + + + D91 +#labelStyle + +-4.95741492052107,54.9444359741669 + + + + + D92 + +Small Square D92 Boundry Box +#Line2 + + +1 + +-5.03202381891695,54.9912152740968 +-5.02538117304091,55.0809105501019 +-4.86905173671856,55.0769886819133 +-4.8760421611703,54.9873063789 +-5.03202381891695,54.9912152740968 + + + + + + D92 +#labelStyle + +-4.95061657265721,55.034134764385 + + + + + D93 + +Small Square D93 Boundry Box +#Line2 + + +1 + +-5.02538050685972,55.080919520433 +-5.01870076766251,55.170612924927 +-4.86202158501295,55.1666780244935 +-4.86905103565963,55.0769976509441 +-5.02538050685972,55.080919520433 + + + + + + D93 +#labelStyle + +-4.94378030464835,55.1238316557085 + + + + + D94 + +Small Square D94 Boundry Box +#Line2 + + +1 + +-5.01870009775754,55.1706218950707 +-5.0119829825536,55.2603134254135 +-4.85495210588356,55.2563654343212 +-4.86202088003619,55.1666869933311 +-5.01870009775754,55.1706218950707 + + + + + + D94 +#labelStyle + +-4.93690582794993,55.2135266452887 + + + + + D95 + +Small Square D95 Boundry Box +#Line2 + + +1 + +-5.01198230889642,55.2603223953697 +-5.00522753207021,55.3500120488905 +-4.8478429989092,55.346050908266 +-4.85495139695909,55.2563744029655 +-5.01198230889642,55.2603223953697 + + + + + + D95 +#labelStyle + +-4.92999285103107,55.3032197302439 + + + + + D96 + +Small Square D96 Boundry Box +#Line2 + + +1 + +-5.00522685463211,55.350021018659 +-4.99843412760025,55.439708792656 +-4.84069396054837,55.4357344431611 +-4.84784228600682,55.3460598767165 +-5.00522685463211,55.350021018659 + + + + + + D96 +#labelStyle + +-4.92304107933603,55.3929109076596 + + + + + D97 + +Small Square D97 Boundry Box +#Line2 + + +1 + +-4.99843344635222,55.4397177622363 +-4.99160247752514,55.529403653976 +-4.83350468409893,55.5254160358033 +-4.84069324363757,55.4357434114175 +-4.99843344635222,55.4397177622363 + + + + + + D97 +#labelStyle + +-4.91605021524517,55.4826001745873 + + + + + D98 + +Small Square D98 Boundry Box +#Line2 + + +1 + +-4.99160179243786,55.5294126233679 +-4.98473228718075,55.6190966300844 +-4.82627485965705,55.6150956829525 +-4.83350396314887,55.5254250038654 +-4.99160179243786,55.5294126233679 + + + + + + D98 +#labelStyle + +-4.90901995803525,55.572287528044 + + + + + D99 + +Small Square D99 Boundry Box +#Line2 + + +1 + +-4.98473159822461,55.6191055992876 +-4.97782325881783,55.7087877181819 +-4.81900417407565,55.7047733813302 +-4.82627413463659,55.6151046508198 +-4.98473159822461,55.6191055992876 + + + + + + D99 +#labelStyle + +-4.90195000383913,55.6619729650119 + + + + + + G + +Large Square G Boundry Box +#Line1 + + +1 + +-9.52350643819618,53.9397620942565 +-9.5571511266769,54.8377756726559 +-8.00077697222059,54.8477615229825 +-8.00075471227371,53.9494245206563 +-9.52350643819618,53.9397620942565 + + + + + + G00 + +Small Square G00 Boundry Box +#Line2 + + +1 + +-9.52350643819618,53.9397620942565 +-9.52678831922984,54.0295620599747 +-9.3742500346835,54.031402522236 +-9.37129572056011,53.9415965373933 +-9.52350643819618,53.9397620942565 + + + + + + G00 +#labelStyle + +-9.44895266429955,53.9856097123038 + + + + + G01 + +Small Square G01 Boundry Box +#Line2 + + +1 + +-9.52678864834494,54.029571040795 +-9.53008845507831,54.1193695187627 +-9.37722078330543,54.1212160266661 +-9.37425033094946,54.0314115036595 +-9.52678864834494,54.029571040795 + + + + + + G01 +#labelStyle + +-9.45207957497589,54.0754210106661 + + + + + G02 + +Small Square G02 Boundry Box +#Line2 + + +1 + +-9.53008878599277,54.1193784994342 +-9.53340665099688,54.2091754900466 +-9.38020779115096,54.2110280697079 +-9.37722108119134,54.1212250079435 +-9.53008878599277,54.1193784994342 + + + + + + G02 +#labelStyle + +-9.45522358223012,54.1652308346766 + + + + + G03 + +Small Square G03 Boundry Box +#Line2 + + +1 + +-9.53340698372401,54.2091844705694 +-9.53674304090749,54.2989799742244 +-9.38321117880778,54.3008386519598 +-9.38020809066879,54.2110370508391 +-9.53340698372401,54.2091844705694 + + + + + + G03 +#labelStyle + +-9.45838481268091,54.2550391848343 + + + + + G04 + +Small Square G04 Boundry Box +#Line2 + + +1 + +-9.53674337546077,54.2989889545985 +-9.54009776008663,54.3887829716962 +-9.38623106808353,54.3906477740245 +-9.38321147996967,54.3008476329449 +-9.53674337546077,54.2989889545985 + + + + + + G04 +#labelStyle + +-9.46156339422614,54.3448460616413 + + + + + G05 + +Small Square G05 Boundry Box +#Line2 + + +1 + +-9.54009809647965,54.3887919519216 +-9.54347094518244,54.4785844828661 +-9.38926758202115,54.4804554365109 +-9.38623137090171,54.3906567548637 +-9.54009809647965,54.3887919519216 + + + + + + G05 +#labelStyle + +-9.46475945605911,54.4346514656054 + + + + + G06 + +Small Square G06 Boundry Box +#Line2 + + +1 + +-9.54347128342893,54.4785934629429 +-9.5468627342319,54.5683845081387 +-9.39232084491442,54.5702616400303 +-9.389267886508,54.4804644172042 +-9.54347128342893,54.4785934629429 + + + + + + G06 +#labelStyle + +-9.46797312868469,54.5244553972354 + + + + + G07 + +Small Square G07 Boundry Box +#Line2 + + +1 + +-9.54686307434573,54.5683934880669 +-9.5502732666785,54.6581830479213 +-9.39539098232384,54.6600663851987 +-9.39232115108242,54.5702706205777 +-9.54686307434573,54.5683934880669 + + + + + + G07 +#labelStyle + +-9.47120454393602,54.6142578570442 + + + + + G08 + +Small Square G08 Boundry Box +#Line2 + + +1 + +-9.55027360867369,54.658192027701 +-9.55370268339007,54.7479801026233 +-9.3984781210927,54.7498696726364 +-9.39539129018562,54.6600753656003 +-9.55027360867369,54.658192027701 + + + + + + G08 +#labelStyle + +-9.47445383499131,54.7040588455479 + + + + + G09 + +Small Square G09 Boundry Box +#Line2 + + +1 + +-9.55370302728079,54.7479890822545 +-9.5571511266769,54.8377756726559 +-9.40158238936337,54.8396715029676 +-9.39847843066099,54.7498786528923 +-9.55370302728079,54.7479890822545 + + + + + + G09 +#labelStyle + +-9.47772113639093,54.7938583632655 + + + + + G10 + +Small Square G10 Boundry Box +#Line2 + + +1 + +-9.37128049713556,53.9415967112126 +-9.37423477849285,54.0314026966257 +-9.22168035858826,54.0330496641541 +-9.21905376229667,53.9432382919382 +-9.37128049713556,53.9415967112126 + + + + + + G10 +#labelStyle + +-9.29655486806973,53.9873507430515 + + + + + G11 + +Small Square G11 Boundry Box +#Line2 + + +1 + +-9.37423507475554,54.0314116780492 +-9.37720549416658,54.1212162016287 +-9.22432156767865,54.1228685796966 +-9.22168062198994,54.0330586461176 +-9.37423507475554,54.0314116780492 + + + + + + G11 +#labelStyle + +-9.29935319291791,54.0771677577832 + + + + + G12 + +Small Square G12 Boundry Box +#Line2 + + +1 + +-9.37720579204919,54.1212251829061 +-9.38019246888373,54.2110282452458 +-9.22697723376143,54.2126860572301 +-9.22432183252071,54.1228775615163 +-9.37720579204919,54.1212251829061 + + + + + + G12 +#labelStyle + +-9.30216681931867,54.1669833228176 + + + + + G13 + +Small Square G13 Boundry Box +#Line2 + + +1 + +-9.38019276839825,54.2110372263771 +-9.38319582323069,54.3008388280755 +-9.22964746407359,54.3025020975328 +-9.22697750005452,54.212695038906 +-9.38019276839825,54.2110372263771 + + + + + + G13 +#labelStyle + +-9.30499586061408,54.2567974388431 + + + + + G14 + +Small Square G14 Boundry Box +#Line2 + + +1 + +-9.38319612438924,54.3008478090608 +-9.38621567901372,54.3906479507206 +-9.2323323669372,54.3923167013888 +-9.22964773182851,54.302511079065 +-9.38319612438924,54.3008478090608 + + + + + + G14 +#labelStyle + +-9.30784043129153,54.3466101065529 + + + + + G15 + +Small Square G15 Boundry Box +#Line2 + + +1 + +-9.38621598182855,54.3906569315599 +-9.38925215927442,54.4804556137899 +-9.23503205177308,54.4821298695901 +-9.23233263616483,54.3923256827774 +-9.38621598182855,54.3906569315599 + + + + + + G15 +#labelStyle + +-9.31070064699816,54.4364213266476 + + + + + G16 + +Small Square G16 Boundry Box +#Line2 + + +1 + +-9.38925246375789,54.4804645944833 +-9.39230538830518,54.5702618178947 +-9.23774662911457,54.5719416029332 +-9.23503232248441,54.4821388508352 +-9.38925246375789,54.4804645944833 + + + + + + G16 +#labelStyle + +-9.31357662455539,54.5262310998312 + + + + + G17 + +Small Square G17 Boundry Box +#Line2 + + +1 + +-9.39230569446978,54.5702707984422 +-9.39537549166512,54.6600665636511 +-9.24047621062171,54.661751902221 +-9.23774690132071,54.5719505840348 +-9.39230569446978,54.5702707984422 + + + + + + G17 +#labelStyle + +-9.3164684819739,54.6160394268132 + + + + + G18 + +Small Square G18 Boundry Box +#Line2 + + +1 + +-9.39537579952347,54.6600755440528 +-9.39846259619611,54.7498698516794 +-9.24322090909553,54.7515607682627 +-9.24047648433389,54.6617608831792 +-9.39537579952347,54.6600755440528 + + + + + + G18 +#labelStyle + +-9.31937633846864,54.7058463083088 + + + + + G19 + +Small Square G19 Boundry Box +#Line2 + + +1 + +-9.39846290576097,54.7498788319353 +-9.40156683003913,54.8396716826038 +-9.24598083849255,54.8413682018732 +-9.24322118432509,54.7515697490776 +-9.39846290576097,54.7498788319353 + + + + + + G19 +#labelStyle + +-9.3223003144741,54.7956517450377 + + + + + G20 + +Small Square G20 Boundry Box +#Line2 + + +1 + +-9.21903853735902,53.9432384464671 +-9.22166510087335,54.0330498191901 +-9.06909633443014,54.0345032490452 +-9.06679756105382,53.9446871221308 +-9.21903853735902,53.9432384464671 + + + + + + G20 +#labelStyle + +-9.14414188526333,53.9888985541847 + + + + + G21 + +Small Square G21 Boundry Box +#Line2 + + +1 + +-9.22166536427174,54.0330588011537 +-9.22430627700426,54.122868735242 +-9.07140789783685,54.1243269402414 +-9.06909656495696,54.0345122314853 +-9.22166536427174,54.0330588011537 + + + + + + G21 +#labelStyle + +-9.14661151208575,54.078720651331 + + + + + G22 + +Small Square G22 Boundry Box +#Line2 + + +1 + +-9.22430654184301,54.1228777170617 +-9.22696190994727,54.212686213287 +-9.07373211493328,54.214149214066 +-9.07140812962439,54.1243359225396 +-9.22430654184301,54.1228777170617 + + + + + + G22 +#labelStyle + +-9.14909464430447,54.1685413207047 + + + + + G23 + +Small Square G23 Boundry Box +#Line2 + + +1 + +-9.22696217623704,54.212695194963 +-9.22963210693806,54.3025022541035 +-9.07606907959226,54.3039700714561 +-9.07373234799086,54.2141581962226 +-9.22696217623704,54.212695194963 + + + + + + G23 +#labelStyle + +-9.15159138197074,54.2583605631624 + + + + + G24 + +Small Square G24 Boundry Box +#Line2 + + +1 + +-9.22963237468964,54.3025112356357 +-9.23231697629734,54.3923168584755 +-9.07841888663663,54.3937895133559 +-9.07606931392932,54.3039790534711 +-9.22963237468964,54.3025112356357 + + + + + + G24 +#labelStyle + +-9.15410182614701,54.3481783795673 + + + + + G25 + +Small Square G25 Boundry Box +#Line2 + + +1 + +-9.23231724552161,54.3923258398641 +-9.23501662744455,54.482130027195 +-9.08078163185117,54.4836075407191 +-9.0784191222627,54.3937984952293 +-9.23231724552161,54.3923258398641 + + + + + + G25 +#labelStyle + +-9.15662607891967,54.4379947707917 + + + + + G26 + +Small Square G26 Boundry Box +#Line2 + + +1 + +-9.2350168981525,54.4821390084402 +-9.23773117091167,54.5719417610586 +-9.08315741199473,54.5734241545056 +-9.08078186877588,54.4836165224511 +-9.2350168981525,54.4821390084402 + + + + + + G26 +#labelStyle + +-9.15916424341187,54.5278097377127 + + + + + G27 + +Small Square G27 Boundry Box +#Line2 + + +1 + +-9.23773144311442,54.5719507421603 +-9.24046071835735,54.6617520608692 +-9.0855463248126,54.6632393556836 +-9.0831576502278,54.5734331360963 +-9.23773144311442,54.5719507421603 + + + + + + G27 +#labelStyle + +-9.16171642379673,54.6176232812153 + + + + + G28 + +Small Square G28 Boundry Box +#Line2 + + +1 + +-9.24046099206611,54.6617610418275 +-9.2432053825812,54.751560927436 +-9.08794846904902,54.7530531452287 +-9.08554656436386,54.6632483371331 +-9.24046099206611,54.6617610418275 + + + + + + G28 +#labelStyle + +-9.16428272531061,54.7074354021914 + + + + + G29 + +Small Square G29 Boundry Box +#Line2 + + +1 + +-9.24320565780733,54.751569908251 +-9.24596527753834,54.8413683615739 +-9.09036394445992,54.8428655241245 +-9.0879487099284,54.7530621265371 +-9.24320565780733,54.751569908251 + + + + + + G29 +#labelStyle + +-9.16686325426663,54.7972461015394 + + + + + G30 + +Small Square G30 Boundry Box +#Line2 + + +1 + +-9.06678233478071,53.9446872573653 +-9.06908107536992,54.0345033847236 +-8.9164997522653,54.0357632390046 +-8.91452889379025,53.9459429903222 +-9.06678233478071,53.9446872573653 + + + + + + G30 +#labelStyle + +-8.99171549886295,53.9902531054151 + + + + + G31 + +Small Square G31 Boundry Box +#Line2 + + +1 + +-9.06908130589345,54.0345123671637 +-9.0713926058072,54.1243270763655 +-8.91848157706673,54.1255910701372 +-8.91649994990803,54.0357722218577 +-9.06908130589345,54.0345123671637 + + + + + + G31 +#labelStyle + +-8.99385632862014,54.0800796507473 + + + + + G32 + +Small Square G32 Boundry Box +#Line2 + + +1 + +-9.07139283759143,54.1243360586638 +-9.0737167897538,54.2141493506379 +-8.92047425131713,54.2154175017918 +-8.91848177579041,54.1256000528503 +-9.07139283759143,54.1243360586638 + + + + + + G32 +#labelStyle + +-8.99600886661878,54.1699047874989 + + + + + G33 + +Small Square G33 Boundry Box +#Line2 + + +1 + +-9.07371702280806,54.2141583327945 +-9.07605372108126,54.3039702084776 +-8.9224778555134,54.3052425350426 +-8.92047445112976,54.215426484365 +-9.07371702280806,54.2141583327945 + + + + + + G33 +#labelStyle + +-8.99817319960682,54.2597285166738 + + + + + G34 + +Small Square G34 Boundry Box +#Line2 + + +1 + +-9.07605395541498,54.3039791904926 +-9.07840349461103,54.393789650829 +-8.92449247096715,54.3950661709729 +-8.92247805642308,54.305251517476 +-9.07605395541498,54.3039791904926 + + + + + + G34 +#labelStyle + +-9.00034941520902,54.3495508392841 + + + + + G35 + +Small Square G35 Boundry Box +#Line2 + + +1 + +-9.07840373023373,54.3937986327025 +-9.08076620612653,54.4836076786458 +-8.92651817981502,54.4848884106767 +-8.92449267298205,54.3950751532666 +-9.07840373023373,54.3937986327025 + + + + + + G35 +#labelStyle + +-9.00253760193814,54.4393717563523 + + + + + G36 + +Small Square G36 Boundry Box +#Line2 + + +1 + +-9.08076644304787,54.4836166603779 +-9.08314195238526,54.5734242928879 +-8.92855506502902,54.5747092552556 +-8.92651838294339,54.4848973928309 +-9.08076644304787,54.4836166603779 + + + + + + G36 +#labelStyle + +-9.00473784920591,54.5291912689074 + + + + + G37 + +Small Square G37 Boundry Box +#Line2 + + +1 + +-9.08314219061493,54.5734332744786 +-9.08553083113109,54.6632394945234 +-8.93060321042715,54.6645287058209 +-8.9285552692792,54.5747182372704 +-9.08314219061493,54.5734332744786 + + + + + + G37 +#labelStyle + +-9.0069502473346,54.6190093779876 + + + + + G38 + +Small Square G38 Boundry Box +#Line2 + + +1 + +-9.08553107067894,54.6632484759729 +-9.08793294110687,54.7530532845281 +-8.93266270068416,54.7543467634929 +-8.93060341580757,54.6645376876963 +-9.08553107067894,54.6632484759729 + + + + + + G38 +#labelStyle + +-9.00917488756847,54.7088260846397 + + + + + G39 + +Small Square G39 Boundry Box +#Line2 + + +1 + +-9.08793318198281,54.7530622658366 +-9.09034838206708,54.8428656638855 +-8.93473362134246,54.8441634294011 +-8.93266290720334,54.7543557452291 +-9.08793318198281,54.7530622658366 + + + + + + G39 +#labelStyle + +-9.01141186208553,54.7986413899187 + + + + + G40 + +Small Square G40 Boundry Box +#Line2 + + +1 + +-8.91451366635942,53.9459431062588 +-8.91648449203882,54.0357633553217 +-8.76389240307592,54.0368296011711 +-8.76224953837922,53.947005863873 +-8.91451366635942,53.9459431062588 + + + + + + G40 +#labelStyle + +-8.83927749283691,53.9914143614797 + + + + + G41 + +Small Square G41 Boundry Box +#Line2 + + +1 + +-8.91648468967826,54.0357723381749 +-8.91846628386219,54.1255911868366 +-8.7655444095926,54.1266609362991 +-8.76389256782662,54.0368385843738 +-8.91648468967826,54.0357723381749 + + + + + + G41 +#labelStyle + +-8.8410894396598,54.0812447205288 + + + + + G42 + +Small Square G42 Boundry Box +#Line2 + + +1 + +-8.91846648258255,54.1256001695497 +-8.92045892495406,54.215417618875 +-8.76720546051301,54.2164908870961 +-8.7655445752444,54.1266699193634 +-8.91846648258255,54.1256001695497 + + + + + + G42 +#labelStyle + +-8.84291129670343,54.1710736874546 + + + + + G43 + +Small Square G43 Boundry Box +#Line2 + + +1 + +-8.92045912476336,54.2154266014482 +-8.92246249580999,54.3052426525113 +-8.76887562294798,54.3063194547528 +-8.76720562707259,54.216499870022 +-8.92045912476336,54.2154266014482 + + + + + + G43 +#labelStyle + +-8.84474313740154,54.2609012633872 + + + + + G44 + +Small Square G44 Boundry Box +#Line2 + + +1 + +-8.92246269671632,54.3052516349448 +-8.92447707774024,54.3950662888288 +-8.77055496468767,54.3961466404699 +-8.7688757904221,54.3063284375404 +-8.92246269671632,54.3052516349448 + + + + + + G44 +#labelStyle + +-8.84658503593024,54.3507274494662 + + + + + G45 + +Small Square G45 Boundry Box +#Line2 + + +1 + +-8.92447727975178,54.3950752711225 +-8.9265027528801,54.4848885289215 +-8.77224355421012,54.4859724454604 +-8.77055513308313,54.3961556231194 +-8.92447727975178,54.3950752711225 + + + + + + G45 +#labelStyle + +-8.84843706721736,54.4405522468431 + + + + + G46 + +Small Square G46 Boundry Box +#Line2 + + +1 + +-8.92650295600509,54.4848975110757 +-8.92853960420018,54.574709373891 +-8.77394146068992,54.5757968709458 +-8.77224372353381,54.4859814279719 +-8.92650295600509,54.4848975110757 + + + + + + G46 +#labelStyle + +-8.85029930695191,54.5303756566771 + + + + + G47 + +Small Square G47 Boundry Box +#Line2 + + +1 + +-8.92853980844696,54.5747183559058 +-8.9305877155171,54.6645288248486 +-8.77564875400708,54.6656199181585 +-8.77394163094879,54.5758058533194 +-8.92853980844696,54.5747183559058 + + + + + + G47 +#labelStyle + +-8.85217183159374,54.620197680138 + + + + + G48 + +Small Square G48 Boundry Box +#Line2 + + +1 + +-8.93058792089411,54.664537806724 +-8.93264717150421,54.7543468829146 +-8.77736550475592,54.7554415883413 +-8.77564892520814,54.6656289003943 +-8.93058792089411,54.664537806724 + + + + + + G48 +#labelStyle + +-8.85405471838331,54.7100183184053 + + + + + G49 + +Small Square G49 Boundry Box +#Line2 + + +1 + +-8.93264737801995,54.7543558646508 +-8.93471805770246,54.8441635492185 +-8.77909178425425,54.8452618827473 +-8.77736567690629,54.7554505704395 +-8.93264737801995,54.7543558646508 + + + + + + G49 +#labelStyle + +-8.85594804535159,54.7998375726681 + + + + + G50 + +Small Square G50 Boundry Box +#Line2 + + +1 + +-8.76223430996851,53.9470059605087 +-8.76387714186232,54.036829698124 +-8.6112760786383,54.0377023077302 +-8.60996127347831,53.9478757151568 +-8.76223430996851,53.9470059605087 + + + + + + G50 +#labelStyle + +-8.68682965200826,53.9923822921434 + + + + + G51 + +Small Square G51 Boundry Box +#Line2 + + +1 + +-8.76387730660973,54.0368386813267 +-8.76552911539364,54.1266610335706 +-8.61259820044285,54.127536510723 +-8.61127621049036,54.0377112912191 +-8.76387730660973,54.0368386813267 + + + + + + G51 +#labelStyle + +-8.68831264320893,54.0822158302349 + + + + + G52 + +Small Square G52 Boundry Box +#Line2 + + +1 + +-8.76552928104213,54.1266700166349 +-8.76719013314813,54.2164909846875 +-8.61392756093512,54.2173693417835 +-8.61259833301611,54.1275454940746 +-8.76552928104213,54.1266700166349 + + + + + + G52 +#labelStyle + +-8.68980374587657,54.1720479899233 + + + + + G53 + +Small Square G53 Boundry Box +#Line2 + + +1 + +-8.76719029970439,54.2164999676135 +-8.76886026223531,54.3063195526655 +-8.61526421383144,54.3072008021979 +-8.61392769423492,54.217378324998 +-8.76719029970439,54.2164999676135 + + + + + + G53 +#labelStyle + +-8.69130302012153,54.2618787724442 + + + + + G54 + +Small Square G54 Boundry Box +#Line2 + + +1 + +-8.76886042970609,54.3063285354532 +-8.77053957044397,54.3961467387054 +-8.61660821339194,54.3970308932632 +-8.61526434786319,54.3072097852754 +-8.76886042970609,54.3063285354532 + + + + + + G54 +#labelStyle + +-8.69281052666186,54.3517081790436 + + + + + G55 + +Small Square G55 Boundry Box +#Line2 + + +1 + +-8.77053973883607,54.396155721355 +-8.77222812625081,54.4859725440201 +-8.61795961442738,54.4868596162895 +-8.61660834816109,54.3970398762038 +-8.77053973883607,54.396155721355 + + + + + + G55 +#labelStyle + +-8.69432632683105,54.4415362109804 + + + + + G56 + +Small Square G56 Boundry Box +#Line2 + + +1 + +-8.77222829557111,54.4859815265317 +-8.77392599882901,54.5757969698311 +-8.61931847230613,54.5766869725966 +-8.61795974993944,54.4868685990934 +-8.77222829557111,54.4859815265317 + + + + + + G56 +#labelStyle + +-8.69585048258574,54.5313628695225 + + + + + G57 + +Small Square G57 Boundry Box +#Line2 + + +1 + +-8.77392616908448,54.5758059522048 +-8.77563325805719,54.6656200173708 +-8.62068484296119,54.6665129635161 +-8.61931860856666,54.5766959552639 +-8.77392616908448,54.5758059522048 + + + + + + G57 +#labelStyle + +-8.69738305651357,54.621188155949 + + + + + G58 + +Small Square G58 Boundry Box +#Line2 + + +1 + +-8.77563342925484,54.6656289996067 +-8.77734997452828,54.7554416878821 +-8.62205878289743,54.756337590391 +-8.62068497997582,54.6665219460469 +-8.77563342925484,54.6656289996067 + + + + + + G58 +#labelStyle + +-8.69892411184128,54.7110120715505 + + + + + G59 + +Small Square G59 Boundry Box +#Line2 + + +1 + +-8.77735014667521,54.7554506699803 +-8.77907621955866,54.845261982618 +-8.6234403491988,54.8461608545756 +-8.62205892067182,54.7563465727855 +-8.77735014667521,54.7554506699803 + + + + + + G59 +#labelStyle + +-8.70047371244273,54.800834617628 + + + + + G60 + +Small Square G60 Boundry Box +#Line2 + + +1 + +-8.60994604426561,53.947875792489 +-8.6112608166168,54.0377023853163 +-8.45865257139085,54.0383813359166 +-8.45766587839903,53.9485525215619 +-8.60994604426561,53.947875792489 + + + + + + G60 +#labelStyle + +-8.53437376192369,53.9931568722022 + + + + + G61 + +Small Square G61 Boundry Box +#Line2 + + +1 + +-8.61126094846557,54.0377113688052 +-8.61258290543,54.127536588564 +-8.45964475531631,54.1282177704883 +-8.45865267033899,54.0383903196282 +-8.61126094846557,54.0377113688052 + + + + + + G61 +#labelStyle + +-8.53552773800441,54.0829929544898 + + + + + G62 + +Small Square G62 Boundry Box +#Line2 + + +1 + +-8.61258303799995,54.1275455719157 +-8.61391223275031,54.2173694198806 +-8.46064237167653,54.2180528427769 +-8.45964485480568,54.1282267540636 +-8.61258303799995,54.1275455719157 + + + + + + G62 +#labelStyle + +-8.53668802619824,54.1728276693561 + + + + + G63 + +Small Square G63 Boundry Box +#Line2 + + +1 + +-8.6139123660468,54.2173784030952 +-8.61524885229275,54.3072008805522 +-8.46164546078663,54.3078865541427 +-8.46064247171117,54.218061826216 +-8.6139123660468,54.2173784030952 + + + + + + G63 +#labelStyle + +-8.53785467328457,54.2626610181212 + + + + + G64 + +Small Square G64 Boundry Box +#Line2 + + +1 + +-8.61524898632116,54.3072098636298 +-8.61659281831606,54.3970309718758 +-8.46265406336982,54.3977189059577 +-8.46164556137056,54.3078955374458 +-8.61524898632116,54.3072098636298 + + + + + + G64 +#labelStyle + +-8.53902772651579,54.352493002116 + + + + + G65 + +Small Square G65 Boundry Box +#Line2 + + +1 + +-8.61659295308184,54.3970399548165 +-8.61794418562966,54.4868596951616 +-8.46366822056266,54.4875498996078 +-8.46265416450715,54.3977278891249 +-8.61659295308184,54.3970399548165 + + + + + + G65 +#labelStyle + +-8.54020723362327,54.4423236226857 + + + + + G66 + +Small Square G66 Boundry Box +#Line2 + + +1 + +-8.61794432113833,54.4868686779655 +-8.61930300960051,54.5766870517292 +-8.46468797392019,54.577379536489 +-8.46366832225752,54.4875588826392 +-8.61794432113833,54.4868686779655 + + + + + + G66 +#labelStyle + +-8.54139324282336,54.5321528811848 + + + + + G67 + +Small Square G67 Boundry Box +#Line2 + + +1 + +-8.61930314585764,54.5766960343966 +-8.62066934616025,54.6665130429104 +-8.46571336542128,54.6672078180103 +-8.46468807617676,54.5773885193849 +-8.61930314585764,54.5766960343966 + + + + + + G67 +#labelStyle + +-8.54258580282353,54.6219807789806 + + + + + G68 + +Small Square G68 Boundry Box +#Line2 + + +1 + +-8.62066948317145,54.6665220254413 +-8.62204325181231,54.7563376700482 +-8.46674443747402,54.7570347455927 +-8.46571346824378,54.6672168007707 +-8.62066948317145,54.6665220254413 + + + + + + G68 +#labelStyle + +-8.54378496282864,54.711807317452 + + + + + G69 + +Small Square G69 Boundry Box +#Line2 + + +1 + +-8.62204338958327,54.7563466524427 +-8.62342478363924,54.8461609344968 +-8.46778123292114,54.8468603206692 +-8.46674454086671,54.7570437282178 +-8.62204338958327,54.7563466524427 + + + + + + G69 +#labelStyle + +-8.54499077254724,54.8016324979896 + + + + + G70 + +Small Square G70 Boundry Box +#Line2 + + +1 + +-8.4576506485623,53.9485525795887 +-8.45863730874072,54.0383813941339 +-8.30602367430197,54.0388666680165 +-8.30536513297631,53.9490362654939 +-8.4576506485623,53.9485525795887 + + + + + + G70 +#labelStyle + +-8.3819116087222,53.9937380814852 + + + + + G71 + +Small Square G71 Boundry Box +#Line2 + + +1 + +-8.45863740768556,54.0383903778456 +-8.45962945967017,54.1282178288969 +-8.30668588044842,54.1287046977603 +-8.30602374034221,54.0388756518872 +-8.45863740768556,54.0383903778456 + + + + + + G71 +#labelStyle + +-8.38273652338288,54.0835760729853 + + + + + G72 + +Small Square G72 Boundry Box +#Line2 + + +1 + +-8.45962955915624,54.1282268124723 +-8.46062704285375,54.2180529013777 +-8.30735171237371,54.2185413721194 +-8.30668594684989,54.1287136814955 +-8.45962955915624,54.1282268124723 + + + + + + G72 +#labelStyle + +-8.38356595033576,54.1734127053062 + + + + + G73 + +Small Square G73 Boundry Box +#Line2 + + +1 + +-8.46062714288505,54.2180618848168 +-8.4616300986052,54.3078866129365 +-8.30802119698662,54.3083766925073 +-8.3073517791391,54.2185503557191 +-8.46062714288505,54.2180618848168 + + + + + + G73 +#labelStyle + +-8.38439992302343,54.2632479798311 + + + + + G74 + +Small Square G74 Boundry Box +#Line2 + + +1 + +-8.46163019918579,54.3078955962396 +-8.46263866764641,54.3977189649453 +-8.30869436146837,54.3982106603493 +-8.30802126411864,54.3083856759716 +-8.46163019918579,54.3078955962396 + + + + + + G74 +#labelStyle + +-8.38523847522666,54.3530818979552 + + + + + G75 + +Small Square G75 Boundry Box +#Line2 + + +1 + +-8.46263876878037,54.3977279481126 +-8.46365279111256,54.4875499587901 +-8.30937123327603,54.4880432770856 +-8.30869442896974,54.3982196436785 +-8.46263876878037,54.3977279481126 + + + + + + G75 +#labelStyle + +-8.38608164106864,54.442914461088 + + + + + G76 + +Small Square G76 Boundry Box +#Line2 + + +1 + +-8.46365289280403,54.4875589418216 +-8.46467251055731,54.5773795958668 +-8.31005184014607,54.5778745441668 +-8.30937130114952,54.4880522602798 +-8.46365289280403,54.4875589418216 + + + + + + G76 +#labelStyle + +-8.38692945501932,54.5327456706494 + + + + + G77 + +Small Square G77 Boundry Box +#Line2 + + +1 + +-8.46467261281048,54.5773885787628 +-8.46569786795813,54.6672078775846 +-8.31073621009781,54.6677044630571 +-8.31005190839446,54.5778835272261 +-8.46467261281048,54.5773885787628 + + + + + + G77 +#labelStyle + +-8.38778195189975,54.6225755280725 + + + + + G78 + +Small Square G78 Boundry Box +#Line2 + + +1 + +-8.4656979707772,54.667216860345 +-8.4667289057217,54.7570348053642 +-8.31142437143711,54.7575330352333 +-8.31073627872392,54.6677134459816 +-8.4656979707772,54.667216860345 + + + + + + G78 +#labelStyle + +-8.38863916688662,54.7124040348026 + + + + + G79 + +Small Square G79 Boundry Box +#Line2 + + +1 + +-8.46672900911095,54.7570437879893 +-8.46776566668933,54.8468603806389 +-8.31211635275993,54.8473602621846 +-8.31142444044379,54.7575420180232 +-8.46672900911095,54.7570437879893 + + + + + + G79 +#labelStyle + +-8.38950113551671,54.8022311922978 + + + + + G80 + +Small Square G80 Boundry Box +#Line2 + + +1 + +-8.30534990269357,53.9490363042138 +-8.30600841120254,54.0388667068634 +-8.15339118073779,54.0391582913685 +-8.1530608174379,53.9493269343773 +-8.30534990269357,53.9490363042138 + + + + + + G80 +#labelStyle + +-8.2294449790038,53.9941259048566 + + + + + G81 + +Small Square G81 Boundry Box +#Line2 + + +1 + +-8.30600847723948,54.0388756907342 +-8.30667058434965,54.128704736735 +-8.15372338247735,54.1289972797915 +-8.15339121386748,54.0391672753349 +-8.30600847723948,54.0388756907342 + + + + + + G81 +#labelStyle + +-8.22994079914774,54.0839651704824 + + + + + G82 + +Small Square G82 Boundry Box +#Line2 + + +1 + +-8.30667065074781,54.1287137204701 +-8.30733638309492,54.2185414112223 +-8.15405740307085,54.2188349169766 +-8.15372341578824,54.1290062636227 +-8.30667065074781,54.1287137204701 + + + + + + G82 +#labelStyle + +-8.23043933142908,54.1738030824305 + + + + + G83 + +Small Square G83 Boundry Box +#Line2 + + +1 + +-8.30733644985699,54.2185503948221 +-8.3080058343458,54.308376731739 +-8.15439325601741,54.308671204369 +-8.15405743656432,54.2188439006728 +-8.30733644985699,54.2185503948221 + + + + + + G83 +#labelStyle + +-8.23094059594944,54.2636396421261 + + + + + G84 + +Small Square G84 Boundry Box +#Line2 + + +1 + +-8.30800590147447,54.3083857152034 +-8.30867896528213,54.3982106997104 +-8.15473095495275,54.3985061434267 +-8.15439328969478,54.3086801879303 +-8.30800590147447,54.3083857152034 + + + + + + G84 +#labelStyle + +-8.23144461301369,54.3534748510072 + + + + + G85 + +Small Square G85 Boundry Box +#Line2 + + +1 + +-8.30867903278014,54.3982196830396 +-8.30935580335965,54.4880433165766 +-8.15507051365103,54.4883397356219 +-8.15473098881541,54.3985151268532 +-8.30867903278014,54.3982196830396 + + + + + + G85 +#labelStyle + +-8.23195140313255,54.4433087105264 + + + + + G86 + +Small Square G86 Boundry Box +#Line2 + + +1 + +-8.30935587122975,54.4880522997708 +-8.3100363763134,54.5778745837883 +-8.15541194602656,54.5781719824384 +-8.15507054770037,54.4883487189138 +-8.30935587122975,54.4880522997708 + + + + + + G86 +#labelStyle + +-8.23246098702515,54.5331412221471 + + + + + G87 + +Small Square G87 Boundry Box +#Line2 + + +1 + +-8.31003644455839,54.5778835668476 +-8.31072071216134,54.6677045028097 +-8.15575526613555,54.6680028853734 +-8.15541198026396,54.5781809655958 +-8.31003644455839,54.5778835668476 + + + + + + G87 +#labelStyle + +-8.23297338562171,54.6229723873463 + + + + + G88 + +Small Square G88 Boundry Box +#Line2 + + +1 + +-8.31072078078403,54.6677134857342 +-8.3114088392079,54.7575330751175 +-8.15610048817796,54.7578324459373 +-8.15575530056243,54.6680118683966 +-8.31072078078403,54.6677134857342 + + + + + + G88 +#labelStyle + +-8.23348862006617,54.712802207614 + + + + + G89 + +Small Square G89 Boundry Box +#Line2 + + +1 + +-8.31140890821113,54.7575420579074 +-8.31210078604763,54.8473603022011 +-8.15644762649928,54.8476606656532 +-8.15610052279574,54.7578414288262 +-8.31140890821113,54.7575420579074 + + + + + + G89 +#labelStyle + +-8.23400671171896,54.8026306844528 + + + + + G90 + +Small Square G90 Boundry Box +#Line2 + + +1 + +-8.15304558688719,53.9493269537892 +-8.15337591736839,54.0391583108441 +-8.00075688432984,54.0392561983656 +-8.00075471227371,53.9494245206563 +-8.15304558688719,53.9493269537892 + + + + + + G90 +#labelStyle + +-8.076975659698,53.9943203322169 + + + + + G91 + +Small Square G91 Boundry Box +#Line2 + + +1 + +-8.15337595049478,54.0391672948106 +-8.15370808610661,54.1289972993311 +-8.00075906831,54.1290955089228 +-8.00075688454766,54.0392651823642 +-8.15337595049478,54.0391672948106 + + + + + + G91 +#labelStyle + +-8.07714236543601,54.084160236813 + + + + + G92 + +Small Square G92 Boundry Box +#Line2 + + +1 + +-8.1537081194142,54.1290062831624 +-8.15404207351809,54.2188349365805 +-8.00076126408435,54.2189334696368 +-8.00075906852899,54.1291044927863 +-8.1537081194142,54.1290062831624 + + + + + + G92 +#labelStyle + +-8.07730998295598,54.1739987904913 + + + + + G93 + +Small Square G93 Boundry Box +#Line2 + + +1 + +-8.15404210700822,54.2188439202768 +-8.15437789310057,54.3086712240376 +-8.00076347174056,54.3087700819637 +-8.00076126430452,54.2189424533654 +-8.15404210700822,54.2188439202768 + + + + + + G93 +#labelStyle + +-8.07747851901601,54.2638359946984 + + + + + G94 + +Small Square G94 Boundry Box +#Line2 + + +1 + +-8.1543779267746,54.3086802075989 +-8.15471555848844,54.3985061631601 +-8.00076569136722,54.3986053473719 +-8.00076347196192,54.3087790655575 +-8.1543779267746,54.3086802075989 + + + + + + G94 +#labelStyle + +-8.07764798044253,54.3536718508935 + + + + + G95 + +Small Square G95 Boundry Box +#Line2 + + +1 + +-8.15471559234773,54.3985151465866 +-8.15505508345449,54.4883397554205 +-8.00076792305378,54.488439267345 +-8.00076569158978,54.3986143308312 +-8.15471559234773,54.3985151465866 + + + + + + G95 +#labelStyle + +-8.07781837413117,54.4435063605508 + + + + + G96 + +Small Square G96 Boundry Box +#Line2 + + +1 + +-8.15505511750043,54.4883487387125 +-8.15539648191163,54.5781720023025 +-8.00077016689063,54.5782718433777 +-8.00076792327755,54.4884482506698 +-8.15505511750043,54.4883487387125 + + + + + + G96 +#labelStyle + +-8.07798970704763,54.5333395251557 + + + + + G97 + +Small Square G97 Boundry Box +#Line2 + + +1 + +-8.15539651614563,54.5781809854599 +-8.15573976791469,54.6680029053032 +-8.00077242296907,54.6681030769782 +-8.00077016711563,54.5782808265681 +-8.15539651614563,54.5781809854599 + + + + + + G97 +#labelStyle + +-8.07816198622859,54.6231713462072 + + + + + G98 + +Small Square G98 Boundry Box +#Line2 + + +1 + +-8.15573980233815,54.6680118883264 +-8.15608495566221,54.7578324659331 +-8.00077469138133,54.7579329696683 +-8.00077242319529,54.6681120600345 +-8.15573980233815,54.6680118883264 + + + + + + G98 +#labelStyle + +-8.07833521878256,54.7130018252175 + + + + + G99 + +Small Square G99 Boundry Box +#Line2 + + +1 + +-8.15608499027656,54.7578414488221 +-8.15643205949828,54.8476606857154 +-8.00077697222059,54.8477615229825 +-8.00077469160879,54.7579419525906 +-8.15608499027656,54.7578414488221 + + + + + + G99 +#labelStyle + +-8.07850941189086,54.8028309637118 + + + + + + H + +Large Square H Boundry Box +#Line1 + + +1 + +-8.00073948163307,53.9494245207597 +-8.0007614051227,54.8477615230898 +-6.44438628212163,54.8377971222815 +-6.47798686471164,53.9397827671502 +-8.00073948163307,53.9494245207597 + + + + + + H00 + +Small Square H00 Boundry Box +#Line2 + + +1 + +-8.00073948163307,53.9494245207597 +-8.00074162086985,54.0392561984694 +-7.84812257884273,54.0391603864552 +-7.84844859810503,53.9493290217957 +-8.00073948163307,53.9494245207597 + + + + + + H00 +#labelStyle + +-7.92450543793229,53.994321358504 + + + + + H01 + +Small Square H01 Boundry Box +#Line2 + + +1 + +-8.00074162108437,54.039265182468 +-8.00074377184801,54.1290955090269 +-7.84779474498803,54.1289993825843 +-7.84812254614866,54.0391693704225 +-8.00074162108437,54.039265182468 + + + + + + H01 +#labelStyle + +-7.92434302258521,54.0841612668804 + + + + + H02 + +Small Square H02 Boundry Box +#Line2 + + +1 + +-8.00074377206368,54.1291044928904 +-8.00074593443964,54.2189334697413 +-7.84746511586696,54.2188370275127 +-7.84779471211509,54.1290083664163 +-8.00074377206368,54.1291044928904 + + + + + + H02 +#labelStyle + +-7.92417971859724,54.1739998243573 + + + + + H03 + +Small Square H03 Boundry Box +#Line2 + + +1 + +-8.00074593465649,54.21894245347 +-8.0007481087311,54.3087700820686 +-7.84713367815579,54.3086733226859 +-7.84746508281383,54.2188460112096 +-8.00074593465649,54.21894245347 + + + + + + H03 +#labelStyle + +-7.92401551938211,54.2638370323813 + + + + + H04 + +Small Square H04 Boundry Box +#Line2 + + +1 + +-8.00074810894911,54.3087790656624 +-8.00075029480959,54.3986053474773 +-7.84680041839589,54.398508269562 +-7.84713364492113,54.308682306248 +-8.00074810894911,54.3087790656624 + + + + + + H04 +#labelStyle + +-7.92385041828696,54.3536728924118 + + + + + H05 + +Small Square H05 Boundry Box +#Line2 + + +1 + +-8.00075029502879,54.3986143309365 +-8.00075249276322,54.4884392674508 +-7.84646532299206,54.4883418696138 +-7.84680038497836,54.3985172529893 +-8.00075029502879,54.3986143309365 + + + + + + H05 +#labelStyle + +-7.92368440859146,54.4435074059233 + + + + + H06 + +Small Square H06 Boundry Box +#Line2 + + +1 + +-8.00075249298361,54.4884482507755 +-8.00075470268098,54.5782718434838 +-7.84612837821072,54.5781741243251 +-7.84646528939026,54.4883508529065 +-8.00075249298361,54.4884482507755 + + + + + + H06 +#labelStyle + +-7.92351748350699,54.5333405744011 + + + + + H07 + +Small Square H07 Boundry Box +#Line2 + + +1 + +-8.00075470290257,54.5782808266742 +-8.00075692465278,54.6681030770847 +-7.84578957017825,54.6680050351935 +-7.8461283444233,54.5781831074833 +-8.00075470290257,54.5782808266742 + + + + + + H07 +#labelStyle + +-7.92334963617578,54.6231723993445 + + + + + H08 + +Small Square H08 Boundry Box +#Line2 + + +1 + +-8.00075692487558,54.668112060141 +-8.00075915876943,54.7579329697752 +-7.84544888487916,54.7578346037297 +-7.84578953620381,54.6680140182175 +-8.00075692487558,54.668112060141 + + + + + + H08 +#labelStyle + +-7.92318085967003,54.7130028822658 + + + + + H09 + +Small Square H09 Boundry Box +#Line2 + + +1 + +-8.00075915899346,54.7579419526974 +-8.0007614051227,54.8477615230898 +-7.84510630815428,54.8476628314572 +-7.84544885071629,54.7578435866195 +-8.00075915899346,54.7579419526974 + + + + + + H09 +#labelStyle + +-7.92301114699099,54.8028320246903 + + + + + H10 + +Small Square H10 Boundry Box +#Line2 + + +1 + +-7.84843336755253,53.9493290025906 +-7.84810731547153,54.0391603671872 +-7.69549005804173,54.03887085814 +-7.69614425555383,53.949040440281 +-7.84843336755253,53.9493290025906 + + + + + + H10 +#labelStyle + +-7.77203610090063,53.9941289836935 + + + + + H11 + +Small Square H11 Boundry Box +#Line2 + + +1 + +-7.84810728277417,54.0391693511544 +-7.84777944861549,54.128999363253 +-7.69483221955376,54.1287089032956 +-7.69548999243709,54.0388798420123 +-7.84810728277417,54.0391693511544 + + + + + + H11 +#labelStyle + +-7.77154457100012,54.08396826066 + + + + + H12 + +Small Square H12 Boundry Box +#Line2 + + +1 + +-7.84777941573924,54.129008347085 +-7.84744978631237,54.2188370081178 +-7.69417077887216,54.2185455931409 +-7.69483215359022,54.1287178870323 +-7.84777941573924,54.129008347085 + + + + + + H12 +#labelStyle + +-7.77105035210173,54.1738061840035 + + + + + H13 + +Small Square H13 Boundry Box +#Line2 + + +1 + +-7.84744975325591,54.2188459918148 +-7.84711831523711,54.3086733032272 +-7.69350570926348,54.3083809290898 +-7.69417071254708,54.2185545767422 +-7.84744975325591,54.2188459918148 + + + + + + H13 +#labelStyle + +-7.77055342427568,54.2636427551498 + + + + + H14 + +Small Square H14 Boundry Box +#Line2 + + +1 + +-7.8471182819991,54.3086822867893 +-7.84678502192973,54.3985082500392 +-7.69283698372361,54.3982149125684 +-7.69350564257416,54.3083899125557 +-7.8471182819991,54.3086822867893 + + + + + + H14 +#labelStyle + +-7.77005376739061,54.3534779755371 + + + + + H15 + +Small Square H15 Boundry Box +#Line2 + + +1 + +-7.84678498850882,54.3985172334665 +-7.84644989279364,54.4883418500266 +-7.69216457497436,54.4880475450173 +-7.69283691666733,54.3982238958992 +-7.84678498850882,54.3985172334665 + + + + + + H15 +#labelStyle + +-7.76955136111111,54.4433118466185 + + + + + H16 + +Small Square H16 Boundry Box +#Line2 + + +1 + +-7.84644985918847,54.4883508333193 +-7.8461129140939,54.5781741046732 +-7.69148845545998,54.5778788278878 +-7.69216450754838,54.4880565282131 +-7.84644985918847,54.4883508333193 + + + + + + H16 +#labelStyle + +-7.76904618489509,54.5331443698578 + + + + + H17 + +Small Square H17 Boundry Box +#Line2 + + +1 + +-7.84611288030308,54.5781830878315 +-7.84577407195549,54.6680050154767 +-7.69080859734371,54.6677087626445 +-7.69148838766155,54.5778878109487 +-7.84611288030308,54.5781830878315 + + + + + + H17 +#labelStyle + +-7.76853821799122,54.6229755467325 + + + + + H18 + +Small Square H18 Boundry Box +#Line2 + + +1 + +-7.84577403797763,54.6680139985006 +-7.8454333523615,54.7578345839477 +-7.69012497250412,54.7575373507649 +-7.69080852917001,54.6677177455706 +-7.84577403797763,54.6680139985006 + + + + + + H18 +#labelStyle + +-7.76802743943626,54.7128053787328 + + + + + H19 + +Small Square H19 Boundry Box +#Line2 + + +1 + +-7.84543331819518,54.7578435668374 +-7.84509074115133,54.8476628116096 +-7.68943755253154,54.8473645937389 +-7.69012490395233,54.7575463335564 +-7.84543331819518,54.7578435668374 + + + + + + H19 +#labelStyle + +-7.76751382805232,54.802633867362 + + + + + H20 + +Small Square H20 Boundry Box +#Line2 + + +1 + +-7.69612902526753,53.949040401768 +-7.69547479493869,54.0388708195006 +-7.54286111556037,54.0383876209769 +-7.54384346511196,53.9485587836184 +-7.69612902526753,53.949040401768 + + + + + + H20 +#labelStyle + +-7.61956943573181,53.9937432127986 + + + + + H21 + +Small Square H21 Boundry Box +#Line2 + + +1 + +-7.69547472933076,54.0388798033729 +-7.69481692345136,54.1287088645293 +-7.54187329891612,54.1282240786652 +-7.5428610170478,54.0383966046908 +-7.69547472933076,54.0388798033729 + + + + + + H21 +#labelStyle + +-7.61874881101956,54.0835812231993 + + + + + H22 + +Small Square H22 Boundry Box +#Line2 + + +1 + +-7.69481685748452,54.128717848266 +-7.69415544958972,54.2185455542471 +-7.54088007341837,54.2180591741821 +-7.54187319986465,54.1282330622429 +-7.69481685748452,54.128717848266 + + + + + + H22 +#labelStyle + +-7.61792369715159,54.173417874512 + + + + + H23 + +Small Square H23 Boundry Box +#Line2 + + +1 + +-7.6941553832613,54.2185545378483 +-7.69349034661898,54.308380890068 +-7.5398813989273,54.3078929088885 +-7.54087997382402,54.2180681576235 +-7.6941553832613,54.2185545378483 + + + + + + H23 +#labelStyle + +-7.61709406085704,54.2632531681207 + + + + + H24 + +Small Square H24 Boundry Box +#Line2 + + +1 + +-7.69349027992631,54.3083898735339 +-7.69282158753367,54.398214873418 +-7.53887723489672,54.3977252841574 +-7.53988129878603,54.307901892194 +-7.69349027992631,54.3083898735339 + + + + + + H24 +#labelStyle + +-7.61625986852864,54.3530871054211 + + + + + H25 + +Small Square H25 Boundry Box +#Line2 + + +1 + +-7.69282152047403,54.3982238567488 +-7.69214914505422,54.4880475057378 +-7.53786754036894,54.4875563013754 +-7.53887713420446,54.397734267327 +-7.69282152047403,54.3982238567488 + + + + + + H25 +#labelStyle + +-7.61542108621845,54.4429196878236 + + + + + H26 + +Small Square H26 Boundry Box +#Line2 + + +1 + +-7.69214907762487,54.4880564889335 +-7.69147299162354,54.5778787884785 +-7.53685227396956,54.5773859619394 +-7.53786743912156,54.4875652844092 +-7.69214907762487,54.4880564889335 + + + + + + H26 +#labelStyle + +-7.61457767963356,54.5327509167487 + + + + + H27 + +Small Square H27 Boundry Box +#Line2 + + +1 + +-7.6914729238217,54.5778877715393 +-7.69079309940343,54.667708723105 +-7.53583139390222,54.6672142672594 +-7.53685217216291,54.5773949448377 +-7.6914729238217,54.5778877715393 + + + + + + H27 +#labelStyle + +-7.61372961413173,54.6225807936301 + + + + + H28 + +Small Square H28 Boundry Box +#Line2 + + +1 + +-7.69079303122631,54.6677177060311 +-7.69010944027106,54.7575373110945 +-7.53480485794321,54.7570412187571 +-7.5358312915321,54.6672232500222 +-7.69079303122631,54.6677177060311 + + + + + + H28 +#labelStyle + +-7.61287685471694,54.7124093199141 + + + + + H29 + +Small Square H29 Boundry Box +#Line2 + + +1 + +-7.69010937171584,54.757546293886 +-7.68942198581536,54.847364553937 +-7.53377262343604,54.8468668178665 +-7.53480475500538,54.7570502013846 +-7.69010937171584,54.757546293886 + + + + + + H29 +#labelStyle + +-7.61201936603492,54.8022364970592 + + + + + H30 + +Small Square H30 Boundry Box +#Line2 + + +1 + +-7.5438282352699,53.9485587257984 +-7.54284585290485,54.0383875629671 +-7.39023754476813,54.0377106875771 +-7.39154800701049,53.947884064334 +-7.5438282352699,53.9485587257984 + + + + + + H30 +#labelStyle + +-7.46710722935793,53.9931640558702 + + + + + H31 + +Small Square H31 Boundry Box +#Line2 + + +1 + +-7.54284575438898,54.038396546681 +-7.54185800326455,54.1282240204649 +-7.38891978971667,54.1275449213904 +-7.39023741335157,54.0377196710692 +-7.54284575438898,54.038396546681 + + + + + + H31 +#labelStyle + +-7.46595754278322,54.0830001646172 + + + + + H32 + +Small Square H32 Boundry Box +#Line2 + + +1 + +-7.54185790420977,54.1282330040425 +-7.5408647445901,54.2180591157904 +-7.38759481955325,54.2173777834201 +-7.38891965758126,54.1275539047452 +-7.54185790420977,54.1282330040425 + + + + + + H32 +#labelStyle + +-7.46480156722724,54.1728349060708 + + + + + H33 + +Small Square H33 Boundry Box +#Line2 + + +1 + +-7.54086464499242,54.2180680992318 +-7.53986603674034,54.3078928503045 +-7.38626258073672,54.3072092749535 +-7.38759468669366,54.2173867666378 +-7.54086464499242,54.2180680992318 + + + + + + H33 +#labelStyle + +-7.4636392560823,54.2626682815517 + + + + + H34 + +Small Square H34 Boundry Box +#Line2 + + +1 + +-7.53986593659573,54.30790183361 +-7.53886183916774,54.3977252253804 +-7.38492301918394,54.3970393972887 +-7.38626244714757,54.3072182580342 +-7.53986593659573,54.30790183361 + + + + + + H34 +#labelStyle + +-7.46247056226943,54.3525002923921 + + + + + H35 + +Small Square H35 Boundry Box +#Line2 + + +1 + +-7.53886173847211,54.3977342085499 +-7.53785211091322,54.4875562424045 +-7.38357608026292,54.4868681517371 +-7.3849228848598,54.3970483802325 +-7.53886173847211,54.3977342085499 + + + + + + H35 +#labelStyle + +-7.46129543823246,54.4423309399379 + + + + + H36 + +Small Square H36 Boundry Box +#Line2 + + +1 + +-7.53785200966245,54.4875652254383 +-7.53683681060101,54.5773859027738 +-7.38222170878587,54.5766955396194 +-7.38357594519829,54.4868771345442 +-7.53785200966245,54.4875652254383 + + + + + + H36 +#labelStyle + +-7.46011383593201,54.5321602255448 + + + + + H37 + +Small Square H37 Boundry Box +#Line2 + + +1 + +-7.53683670879096,54.577394885672 +-7.53581589643335,54.6672142078981 +-7.38085984900223,54.6665215622685 +-7.38222157297521,54.5767045222899 +-7.53683670879096,54.577394885672 + + + + + + H37 +#labelStyle + +-7.45892570683936,54.6219881505809 + + + + + H38 + +Small Square H38 Boundry Box +#Line2 + + +1 + +-7.53581579405981,54.6672231906609 +-7.53478932618513,54.7570411591993 +-7.37949044459141,54.7563462210285 +-7.38085971243992,54.6665305448025 +-7.53581579405981,54.6672231906609 + + + + + + H38 +#labelStyle + +-7.45773100193024,54.7118147164262 + + + + + H39 + +Small Square H39 Boundry Box +#Line2 + + +1 + +-7.53478922324385,54.7570501418268 +-7.53375705719841,54.8468667581114 +-7.37811343865564,54.846169517255 +-7.37949030727181,54.7563552034262 +-7.53478922324385,54.7570501418268 + + + + + + H39 +#labelStyle + +-7.45652967167856,54.8016399244723 + + + + + H40 + +Small Square H40 Boundry Box +#Line2 + + +1 + +-7.39153277779067,53.9478839872085 +-7.39022228273944,54.0377106101986 +-7.23762113863806,54.0368400756048 +-7.23925966108895,53.9470162999724 +-7.39153277779067,53.9478839872085 + + + + + + H40 +#labelStyle + +-7.31465126838291,53.9923915279951 + + + + + H41 + +Small Square H41 Boundry Box +#Line2 + + +1 + +-7.39022215131959,54.0377195936905 +-7.38890449469657,54.1275448437576 +-7.23597349819559,54.1266714492555 +-7.2376209743228,54.0368490588114 +-7.39022215131959,54.0377195936905 + + + + + + H41 +#labelStyle + +-7.31317256609843,54.0822251001037 + + + + + H42 + +Small Square H42 Boundry Box +#Line2 + + +1 + +-7.38890436255785,54.1275538271124 +-7.38757949136114,54.217377705532 +-7.23431683691803,54.216501438761 +-7.23597333298156,54.1266804323236 +-7.38890436255785,54.1275538271124 + + + + + + H42 +#labelStyle + +-7.31168577547265,54.1720572939734 + + + + + H43 + +Small Square H43 Boundry Box +#Line2 + + +1 + +-7.38757935849822,54.2173866887497 +-7.38624721919065,54.307209196809 +-7.23265108786967,54.3063300453134 +-7.23431667079859,54.2165104216908 +-7.38757935849822,54.2173866887497 + + + + + + H43 +#labelStyle + +-7.31019083656685,54.261888110841 + + + + + H44 + +Small Square H44 Boundry Box +#Line2 + + +1 + +-7.38624708559816,54.3072181798896 +-7.38490762410063,54.3970393188867 +-7.23097618343724,54.396157270115 +-7.23265092083808,54.306339028105 +-7.38624708559816,54.3072181798896 + + + + + + H44 +#labelStyle + +-7.30868768883632,54.3517175519537 + + + + + H45 + +Small Square H45 Boundry Box +#Line2 + + +1 + +-7.38490748977313,54.3970483018305 +-7.3835606514577,54.4868680730764 +-7.22929205532137,54.48598311438 +-7.23097601548671,54.3961662527684 +-7.38490748977313,54.3970483018305 + + + + + + H45 +#labelStyle + +-7.30717627112268,54.4415456185718 + + + + + H46 + +Small Square H46 Boundry Box +#Line2 + + +1 + +-7.38356051638968,54.4868770558835 +-7.3822062460727,54.5766954606989 +-7.22759863452795,54.5758075793314 +-7.22929188644503,54.4859920968955 +-7.38356051638968,54.4868770558835 + + + + + + H46 +#labelStyle + +-7.30565652164618,54.5313723119642 + + + + + H47 + +Small Square H47 Boundry Box +#Line2 + + +1 + +-7.38220611025863,54.5767044433694 +-7.38084435219366,54.6665214830871 +-7.22589585135932,54.665630666203 +-7.22759846471887,54.575816561709 +-7.38220611025863,54.5767044433694 + + + + + + H47 +#labelStyle + +-7.30412837799784,54.6211976334116 + + + + + H48 + +Small Square H48 Boundry Box +#Line2 + + +1 + +-7.38084421562794,54.6665304656211 +-7.37947491349861,54.756346141585 +-7.22418363540534,54.7554523762391 +-7.2258956806105,54.6656396484428 +-7.38084421562794,54.6665304656211 + + + + + + H48 +#labelStyle + +-7.30259177713146,54.7110215842057 + + + + + H49 + +Small Square H49 Boundry Box +#Line2 + + +1 + +-7.37947477617557,54.7563551239827 +-7.37809787308834,54.8461694375483 +-7.22246191553428,54.8452727106943 +-7.22418346370969,54.7554613583413 +-7.37947477617557,54.7563551239827 + + + + + + H49 +#labelStyle + +-7.3010466553555,54.8008441656488 + + + + + H50 + +Small Square H50 Boundry Box +#Line2 + + +1 + +-7.23924443266932,53.9470162035435 +-7.23760587741548,54.0368399788594 +-7.08501368961459,54.0357758077751 +-7.08698020666477,53.9459555130957 +-7.23924443266932,53.9470162035435 + + + + + + H50 +#labelStyle + +-7.16220333895094,53.9914256492956 + + + + + H51 + +Small Square H51 Boundry Box +#Line2 + + +1 + +-7.23760571309693,54.036848962066 +-7.23595820398756,54.1266713521923 +-7.08303623005777,54.1256036851307 +-7.08501349240722,54.0357847906328 +-7.23760571309693,54.036848962066 + + + + + + H51 +#labelStyle + +-7.1603956803071,54.0812560499177 + + + + + H52 + +Small Square H52 Boundry Box +#Line2 + + +1 + +-7.23595803877023,54.1266803352604 +-7.23430150954402,54.2165013413786 +-7.08104794461195,54.2154301632312 +-7.08303603177179,54.1256126678484 +-7.23595803877023,54.1266803352604 + + + + + + H52 +#labelStyle + +-7.15857813456048,54.1710850586171 + + + + + H53 + +Small Square H53 Boundry Box +#Line2 + + +1 + +-7.23430134342125,54.2165103243084 +-7.23263572714779,54.3063299476104 +-7.07904875295525,54.3052552431526 +-7.08104774523939,54.215439145809 +-7.23430134342125,54.2165103243084 + + + + + + H53 +#labelStyle + +-7.15675062844887,54.2609126765254 + + + + + H54 + +Small Square H54 Boundry Box +#Line2 + + +1 + +-7.23263556011286,54.306338930402 +-7.23096078918426,54.39615717209 +-7.0770385739528,54.3950789259797 +-7.07904855248802,54.3052642255907 +-7.23263556011286,54.306338930402 + + + + + + H54 +#labelStyle + +-7.15491308796943,54.3507389047837 + + + + + H55 + +Small Square H55 Boundry Box +#Line2 + + +1 + +-7.23096062123037,54.3961661547434 +-7.22927662735268,54.4859830160317 +-7.07501732564654,54.4849012128086 +-7.07703837238275,54.3950879082782 +-7.23096062123037,54.3961661547434 + + + + + + H55 +#labelStyle + +-7.1530654383693,54.4405637445453 + + + + + H56 + +Small Square H56 Boundry Box +#Line2 + + +1 + +-7.22927645847297,54.4859919985471 +-7.22758317265759,54.5758074806582 +-7.07298492524484,54.5747221047422 +-7.07501712296544,54.4849101949675 +-7.22927645847297,54.4859919985471 + + + + + + H56 +#labelStyle + +-7.15120760413626,54.5303871969706 + + + + + H57 + +Small Square H57 Boundry Box +#Line2 + + +1 + +-7.22758300284511,54.5758164630358 +-7.22588035539991,54.6656305672036 +-7.07094128911189,54.6645416028936 +-7.07298472144436,54.5747310867616 +-7.22758300284511,54.5758164630358 + + + + + + H57 +#labelStyle + +-7.14933950898904,54.620209263231 + + + + + H58 + +Small Square H58 Boundry Box +#Line2 + + +1 + +-7.22588018464767,54.6656395494434 +-7.2241681051681,54.7554522769121 +-7.06888633275702,54.754359708385 +-7.07094108418362,54.6645505847738 +-7.22588018464767,54.6656395494434 + + + + + + H58 +#labelStyle + +-7.1474610758676,54.7100299445077 + + + + + H59 + +Small Square H59 Boundry Box +#Line2 + + +1 + +-7.22416793346901,54.7554612590142 +-7.222446350829,54.8452726110381 +-7.06681997082379,54.8441764223476 +-7.06888612669248,54.754368690126 +-7.22416793346901,54.7554612590142 + + + + + + H59 +#labelStyle + +-7.14557222692318,54.7998492419914 + + + + + H60 + +Small Square H60 Boundry Box +#Line2 + + +1 + +-7.08696497922325,53.9459553973658 +-7.08499842937733,54.0357756916654 +-6.93241698948135,54.0345179118526 +-6.93471142240278,53.9447017312808 +-7.08696497922325,53.9459553973658 + + + + + + H60 +#labelStyle + +-7.0097652266152,53.9902664449269 + + + + + H61 + +Small Square H61 Boundry Box +#Line2 + + +1 + +-7.08499823216666,54.0357846745231 +-7.08302093684235,54.1256035686396 +-6.93010979033906,54.1243416569696 +-6.93241675938978,54.034526894298 +-7.08499823216666,54.0357846745231 + + + + + + H61 +#labelStyle + +-7.00762868415268,54.0800930393858 + + + + + H62 + +Small Square H62 Boundry Box +#Line2 + + +1 + +-7.08302073855307,54.1256125513573 +-7.08103261823792,54.215430046357 +-6.92778996105678,54.2141639849753 +-6.93010955898912,54.1243506392733 +-7.08302073855307,54.1256125513573 + + + + + + H62 +#labelStyle + +-7.00548045655744,54.1699182255012 + + + + + H63 + +Small Square H63 Boundry Box +#Line2 + + +1 + +-7.08103241886203,54.2154390289348 +-7.07903339324078,54.3052551258936 +-6.92545740793654,54.3039848968084 +-6.92778972843917,54.2141729671373 +-7.08103241886203,54.2154390289348 + + + + + + H63 +#labelStyle + +-7.00332045725293,54.2597420042788 + + + + + H64 + +Small Square H64 Boundry Box +#Line2 + + +1 + +-7.07903319277021,54.3052641083317 +-7.07702318071475,54.3950788083344 +-6.92311203633215,54.3938043934152 +-6.92545717404182,54.3039938788288 +-7.07903319277021,54.3052641083317 + + + + + + H64 +#labelStyle + +-7.00114859878751,54.3495643767323 + + + + + H65 + +Small Square H65 Boundry Box +#Line2 + + +1 + +-7.07702297914134,54.3950877906328 +-7.07500189870039,54.4849010947751 +-6.92075375063724,54.4836224757514 +-6.92311180115082,54.3938133752941 +-7.07702297914134,54.3950877906328 + + + + + + H65 +#labelStyle + +-6.99896479282332,54.4393853438863 + + + + + H66 + +Small Square H66 Boundry Box +#Line2 + + +1 + +-7.0750016960159,54.484910076934 +-7.07296946440467,54.5747219863189 +-6.9183824542732,54.5734391447789 +-6.92075351415969,54.483631457489 +-7.0750016960159,54.484910076934 + + + + + + H66 +#labelStyle + +-6.99676895012527,54.5292049067713 + + + + + H67 + +Small Square H67 Boundry Box +#Line2 + + +1 + +-7.07296926060079,54.5747309683384 +-7.07092579419041,54.6645414840789 +-6.91599804967681,54.6632544014678 +-6.91838221648972,54.5734481263752 +-7.07296926060079,54.5747309683384 + + + + + + H67 +#labelStyle + +-6.99456098054955,54.6190230664277 + + + + + H68 + +Small Square H68 Boundry Box +#Line2 + + +1 + +-7.07092558925873,54.664550465959 +-7.06887080356553,54.754359589177 +-6.91360043828776,54.753068246796 +-6.9159978105776,54.6632633829229 +-7.07092558925873,54.664550465959 + + + + + + H68 +#labelStyle + +-6.99234079303216,54.7088398239038 + + + + + H69 + +Small Square H69 Boundry Box +#Line2 + + +1 + +-7.06887059749755,54.7543685709179 +-7.06680440717217,54.8441763027446 +-6.91118952053596,54.8428806817488 +-6.91360019786291,54.75307722811 +-7.06887059749755,54.7543685709179 + + + + + + H69 +#labelStyle + +-6.99010829557723,54.7986551802567 + + + + + H70 + +Small Square H70 Boundry Box +#Line2 + + +1 + +-6.93469619611719,53.944701596253 +-6.93240173040855,54.0345177763817 +-6.77983282922919,54.0330664206486 +-6.78245508618477,53.9432549871176 +-6.93469619611719,53.944701596253 + + + + + + H70 +#labelStyle + +-6.85733871620654,53.9889139450753 + + + + + H71 + +Small Square H71 Boundry Box +#Line2 + + +1 + +-6.9324015003137,54.0345267588271 +-6.93009449829672,54.1243415210537 +-6.77719598327254,54.1228853978072 +-6.77983256626265,54.0330754026182 +-6.9324015003137,54.0345267588271 + + + + + + H71 +#labelStyle + +-6.85487337564728,54.0787360988996 + + + + + H72 + +Small Square H72 Boundry Box +#Line2 + + +1 + +-6.93009426694348,54.1243505033573 +-6.92777463586452,54.2141638486125 +-6.77454470386142,54.212702937254 +-6.77719571886798,54.122894379633 +-6.93009426694348,54.1243505033573 + + + + + + H72 +#labelStyle + +-6.85239455278968,54.1685568252249 + + + + + H73 + +Small Square H73 Boundry Box +#Line2 + + +1 + +-6.92777440324358,54.2141728307744 +-6.92544204941264,54.3039847599967 +-6.77187888393353,54.3025190397694 +-6.77454443800818,54.2127119189361 +-6.92777440324358,54.2141728307744 + + + + + + H73 +#labelStyle + +-6.84990214775373,54.2583761249097 + + + + + H74 + +Small Square H74 Boundry Box +#Line2 + + +1 + +-6.92544181551458,54.303993742017 +-6.92309664429354,54.3938042561526 +-6.7691984153433,54.3923337061397 +-6.77187861662085,54.3025280213078 +-6.92544181551458,54.303993742017 + + + + + + H74 +#labelStyle + +-6.84739605964999,54.3481939988192 + + + + + H75 + +Small Square H75 Boundry Box +#Line2 + + +1 + +-6.92309640910886,54.3938132380315 +-6.9207383248995,54.483622338036 +-6.76650318884818,54.4821469371593 +-6.7691981465603,54.3923426875345 +-6.92309640910886,54.3938132380315 + + + + + + H75 +#labelStyle + +-6.8448761865668,54.4380104478279 + + + + + H76 + +Small Square H76 Boundry Box +#Line2 + + +1 + +-6.92073808841857,54.4836313197735 +-6.9183669946505,54.5734390066087 +-6.7637930940949,54.5719587336267 +-6.76650291858389,54.4821559184106 +-6.92073808841857,54.4836313197735 + + + + + + H76 +#labelStyle + +-6.84234242555751,54.527825472815 + + + + + H77 + +Small Square H77 Boundry Box +#Line2 + + +1 + +-6.91836675686363,54.573447988205 +-6.91598255598197,54.6632542628409 +-6.76106801960532,54.6617690963474 +-6.76379282233823,54.5719677147346 +-6.91836675686363,54.573447988205 + + + + + + H77 +#labelStyle + +-6.83979467262732,54.6176390746677 + + + + + H78 + +Small Square H78 Boundry Box +#Line2 + + +1 + +-6.91598231687933,54.6632632442959 +-6.91358491033216,54.7530681077102 +-6.7583278527622,54.7515780261327 +-6.76106774634507,54.661778077312 +-6.91598231687933,54.6632632442959 + + + + + + H78 +#labelStyle + +-6.83723282272,54.7074512542797 + + + + + H79 + +Small Square H79 Boundry Box +#Line2 + + +1 + +-6.91358466990387,54.7530770890242 +-6.91117395812956,54.8428805422022 +-6.75557247979464,54.8413855238001 +-6.75832757798704,54.7515870069541 +-6.91358466990387,54.7530770890242 + + + + + + H79 +#labelStyle + +-6.83465676970437,54.797262012552 + + + + + H80 + +Small Square H80 Boundry Box +#Line2 + + +1 + +-6.78243986123287,53.9432548327953 +-6.77981757149991,54.0330662658199 +-6.62726299892427,54.0314213720178 +-6.63021297497932,53.9416153182055 +-6.78243986123287,53.9432548327953 + + + + + + H80 +#labelStyle + +-6.70492559170236,53.9873681849551 + + + + + H81 + +Small Square H81 Boundry Box +#Line2 + + +1 + +-6.77981730853009,54.0330752477895 +-6.77718069258366,54.12288524247 +-6.62429661215506,54.1212349457563 +-6.62726270309331,54.0314303534483 +-6.77981730853009,54.0330752477895 + + + + + + H81 +#labelStyle + +-6.70213155193884,54.0771852639133 + + + + + H82 + +Small Square H82 Boundry Box +#Line2 + + +1 + +-6.77718042817579,54.1228942242958 +-6.77452938003266,54.212702781406 +-6.62131398968678,54.2110470584405 +-6.62429631470651,54.1212439270406 +-6.77718042817579,54.1228942242958 + + + + + + H82 +#labelStyle + +-6.69932223370836,54.1670008934841 + + + + + H83 + +Small Square H83 Boundry Box +#Line2 + + +1 + +-6.77452911417609,54.2127117630881 +-6.77186352678327,54.3025188834084 +-6.61831501110626,54.3008577106716 +-6.62131369060866,54.2110560395787 +-6.77452911417609,54.2127117630881 + + + + + + H83 +#labelStyle + +-6.69649752383997,54.2568150743582 + + + + + H84 + +Small Square H84 Boundry Box +#Line2 + + +1 + +-6.77186325946724,54.3025278649468 +-6.76918302468858,54.3923335492635 +-6.61529955478218,54.3906669030547 +-6.61831471038647,54.3008666916638 +-6.77186325946724,54.3025278649468 + + + + + + H84 +#labelStyle + +-6.69365730801912,54.3466278072311 + + + + + H85 + +Small Square H85 Boundry Box +#Line2 + + +1 + +-6.76918275590222,54.3923425306583 +-6.76648776450467,54.4821467797656 +-6.61226749784969,54.4804746362014 +-6.61529925240849,54.390675883901 +-6.76918275590222,54.3923425306583 + + + + + + H85 +#labelStyle + +-6.69080147077325,54.4364390928058 + + + + + H86 + +Small Square H86 Boundry Box +#Line2 + + +1 + +-6.766487494237,54.4821557610169 +-6.76377763587689,54.5719585757133 +-6.6092187161949,54.5702809107253 +-6.61226719380975,54.4804836169018 +-6.766487494237,54.4821557610169 + + + + + + H86 +#labelStyle + +-6.68792989545725,54.5262489317886 + + + + + H87 + +Small Square H87 Boundry Box +#Line2 + + +1 + +-6.76377736411682,54.5719675568212 +-6.76105252732572,54.661768937912 +-6.60615308443906,54.6600857272452 +-6.60921841047625,54.5702898912798 +-6.76377736411682,54.5719675568212 + + + + + + H87 +#labelStyle + +-6.6850424642386,54.6160573248915 + + + + + H88 + +Small Square H88 Boundry Box +#Line2 + + +1 + +-6.76105225406205,54.6617779188765 +-6.7583123262325,54.751577867173 +-6.60307047592244,54.7498890863839 +-6.60615277702908,54.6600947076539 +-6.76105225406205,54.6617779188765 + + + + + + H88 +#labelStyle + +-6.68213905808231,54.7058642728321 + + + + + H89 + +Small Square H89 Boundry Box +#Line2 + + +1 + +-6.7583120514539,54.7515868479943 +-6.75555691882493,54.8413853643137 +-6.59997076268812,54.8396909887684 +-6.60307016680841,54.749898066647 +-6.7583120514539,54.7515868479943 + + + + + + H89 +#labelStyle + +-6.67921955673566,54.7956697763325 + + + + + H90 + +Small Square H90 Boundry Box +#Line2 + + +1 + +-6.63019775153874,53.9416151445928 +-6.62724774271746,54.0314211978355 +-6.47470928757638,54.0295828088557 +-6.47798686471164,53.9397827671502 +-6.63019775153874,53.9416151445928 + + + + + + H90 +#labelStyle + +-6.55252763609565,53.985629204806 + + + + + H91 + +Small Square H91 Boundry Box +#Line2 + + +1 + +-6.62724744688322,54.0314301792659 +-6.62428132299991,54.1212347710018 +-6.47141347921381,54.1193903440042 +-6.47470895889287,54.0295917896835 +-6.62724744688322,54.0314301792659 + + + + + + H91 +#labelStyle + +-6.54940500917858,54.0754405749401 + + + + + H92 + +Small Square H92 Boundry Box +#Line2 + + +1 + +-6.62428102554806,54.1212437522861 +-6.62129866740312,54.2110468831115 +-6.46809963411067,54.2091963920171 +-6.47141314873326,54.1193993246833 +-6.62428102554806,54.1212437522861 + + + + + + H92 +#labelStyle + +-6.54626530875541,54.1652504710686 + + + + + H93 + +Small Square H93 Boundry Box +#Line2 + + +1 + +-6.62129836832168,54.2110558642496 +-6.61829965551259,54.3008575347655 +-6.46476761851802,54.2990009532952 +-6.46809930181978,54.2092053725476 +-6.62129836832168,54.2110558642496 + + + + + + H93 +#labelStyle + +-6.5431084083784,54.2550588936931 + + + + + H94 + +Small Square H94 Boundry Box +#Line2 + + +1 + +-6.61829935478946,54.3008665157576 +-6.61528416569566,54.3906667265691 +-6.46141729733415,54.3888040282412 +-6.46476728440335,54.299009933677 +-6.61829935478946,54.3008665157576 + + + + + + H94 +#labelStyle + +-6.53993418032232,54.3448658433184 + + + + + H95 + +Small Square H95 Boundry Box +#Line2 + + +1 + +-6.61528386331862,54.3906757074153 +-6.6122520750861,54.4804744591336 +-6.45804853408745,54.4786056172622 +-6.46141696138212,54.3888130084744 +-6.61528386331862,54.3906757074153 + + + + + + H95 +#labelStyle + +-6.53674249556825,54.4346713204548 + + + + + H96 + +Small Square H96 Boundry Box +#Line2 + + +1 + +-6.61225177104279,54.4804834398339 +-6.60920325956867,54.5702807330729 +-6.45466119091927,54.5684057207655 +-6.45804819628435,54.4786145973468 +-6.61225177104279,54.4804834398339 + + + + + + H96 +#labelStyle + +-6.53353322378751,54.5244753256137 + + + + + H97 + +Small Square H97 Boundry Box +#Line2 + + +1 + +-6.60920295384662,54.5702897136273 +-6.60613759376319,54.6600855490055 +-6.45125512856625,54.6582043391614 +-6.45466085125124,54.5684147007016 +-6.60920295384662,54.5702897136273 + + + + + + H97 +#labelStyle + +-6.53030623332488,54.6142778593109 + + + + + H98 + +Small Square H98 Boundry Box +#Line2 + + +1 + +-6.6061372863498,54.6600945294142 +-6.60305495100858,54.7498889075545 +-6.44783020634252,54.748001472862 +-6.45125478701928,54.658213318949 +-6.6061372863498,54.6600945294142 + + + + + + H98 +#labelStyle + +-6.52706139118191,54.704078922065 + + + + + H99 + +Small Square H99 Boundry Box +#Line2 + + +1 + +-6.60305464189111,54.7498978878175 +-6.59995520334645,54.8396908093465 +-6.44438628212163,54.8377971222815 +-6.44782986290248,54.7480104525012 +-6.60305464189111,54.7498978878175 + + + + + + H99 +#labelStyle + +-6.52379856299983,54.7938785143979 + + + + + + J + +Large Square J Boundry Box +#Line1 + + +1 + +-6.47797164295992,53.9397825742516 +-6.44437072459923,54.8377969229289 +-4.88990918553014,54.8079090884416 +-4.95699551189941,53.910861682461 +-6.47797164295992,53.9397825742516 + + + + + + J00 + +Small Square J00 Boundry Box +#Line2 + + +1 + +-6.47797164295992,53.9397825742516 +-6.47469403307089,54.0295826153242 +-6.32217348300744,54.0275507790937 +-6.32577853013376,53.93775738156 +-6.47797164295992,53.9397825742516 + + + + + + J00 +#labelStyle + +-6.40014663126418,53.9836970498888 + + + + + J01 + +Small Square J01 Boundry Box +#Line2 + + +1 + +-6.47469370438409,54.029591596152 +-6.47139819177256,54.1193901498371 +-6.31854838547325,54.1173516408092 +-6.32217312148455,54.0275597592557 +-6.47469370438409,54.029591596152 + + + + + + J01 +#labelStyle + +-6.39669554238853,54.0735020775489 + + + + + J02 + +Small Square J02 Boundry Box +#Line2 + + +1 + +-6.47139786128871,54.1193991305162 +-6.46808431355362,54.2091961972117 +-6.31490345149305,54.2071509865717 +-6.31854802197401,54.1173606208195 +-6.47139786128871,54.1193991305162 + + + + + + J02 +#labelStyle + +-6.39322558622938,54.1633056038579 + + + + + J03 + +Small Square J03 Boundry Box +#Line2 + + +1 + +-6.46808398125942,54.2092051777421 +-6.4647522646638,54.2990007578487 +-6.31123853399892,54.2969488165606 +-6.31490308600284,54.2071599664305 +-6.46808398125942,54.2092051777421 + + + + + + J03 +#labelStyle + +-6.38973662307805,54.2531076291077 + + + + + J04 + +Small Square J04 Boundry Box +#Line2 + + +1 + +-6.4647519305458,54.2990097382304 +-6.46140191000005,54.3888038321508 +-6.30755348443578,54.3867451309554 +-6.31123816650296,54.2969577962678 +-6.4647519305458,54.2990097382304 + + + + + + J04 +#labelStyle + +-6.38622851181464,54.3429081535912 + + + + + J05 + +Small Square J05 Boundry Box +#Line2 + + +1 + +-6.46140157404466,54.3888128123839 +-6.45803311308938,54.4786054205251 +-6.30384815274258,54.4765399299371 +-6.30755311491914,54.386754110511 +-6.46140157404466,54.3888128123839 + + + + + + J05 +#labelStyle + +-6.38270110989025,54.4327071776046 + + + + + J06 + +Small Square J06 Boundry Box +#Line2 + + +1 + +-6.4580327752829,54.4786144006096 +-6.45464573607178,54.5684055233788 +-6.30012238733342,54.5663332136851 +-6.30384778119016,54.4765489093412 +-6.4580327752829,54.4786144006096 + + + + + + J06 +#labelStyle + +-6.37915427330911,54.5225047014433 + + + + + J07 + +Small Square J07 Boundry Box +#Line2 + + +1 + +-6.45464539640035,54.5684145033148 +-6.4512396396825,54.6582041411223 +-6.29637603507818,54.6561249823793 +-6.30012201373,54.5663421929377 +-6.45464539640035,54.5684145033148 + + + + + + J07 +#labelStyle + +-6.37558785661018,54.6123007254045 + + + + + J08 + +Small Square J08 Boundry Box +#Line2 + + +1 + +-6.45123929813212,54.6582131209098 +-6.44781468323427,54.7480012741676 +-6.29260894128293,54.7459152361993 +-6.29637565940836,54.6561339614804 +-6.45123929813212,54.6582131209098 + + + + + + J08 +#labelStyle + +-6.37200171284859,54.7020952497865 + + + + + J09 + +Small Square J09 Boundry Box +#Line2 + + +1 + +-6.4478143397908,54.7480102538067 +-6.44437072459923,54.8377969229289 +-6.28882094967011,54.835703975324 +-6.29260856353118,54.7459242151489 +-6.4478143397908,54.7480102538067 + + + + + + J09 +#labelStyle + +-6.36839569357683,54.7918882748882 + + + + + J10 + +Small Square J10 Boundry Box +#Line2 + + +1 + +-6.32576331024831,53.9377571693805 +-6.32215823038198,54.0275505662182 +-6.16965737172022,54.0253253356956 +-6.17358974469481,53.9355392140414 +-6.32576331024831,53.9377571693805 + + + + + + J10 +#labelStyle + +-6.24778435783992,53.9815717704817 + + + + + J11 + +Small Square J11 Boundry Box +#Line2 + + +1 + +-6.3221578688558,54.0275595463801 +-6.31853309992594,54.1173514272345 +-6.16570313062215,54.1151188894956 +-6.16965697737243,54.0253343151284 +-6.3221578688558,54.0275595463801 + + + + + + J11 +#labelStyle + +-6.24400494532935,54.0713698223598 + + + + + J12 + +Small Square J12 Boundry Box +#Line2 + + +1 + +-6.3185327364234,54.1173604072448 +-6.31488813284398,54.207150772295 +-6.16172725484142,54.2049108957926 +-6.16570273411886,54.1151278687736 +-6.3185327364234,54.1173604072448 + + + + + + J12 +#labelStyle + +-6.24020487315165,54.1611663428175 + + + + + J13 + +Small Square J13 Boundry Box +#Line2 + + +1 + +-6.31488776735045,54.2071597521537 +-6.31122318206687,54.2969486015788 +-6.15772958400957,54.294701354524 +-6.16172685616666,54.2049198749158 +-6.31488776735045,54.2071597521537 + + + + + + J13 +#labelStyle + +-6.23638398835464,54.250961331916 + + + + + J14 + +Small Square J14 Boundry Box +#Line2 + + +1 + +-6.31122281456756,54.2969575812859 +-6.30753809903817,54.3867449152653 +-6.15370995613688,54.3844902656243 +-6.15772918314724,54.2947103334924 +-6.31122281456756,54.2969575812859 + + + + + + J14 +#labelStyle + +-6.23254213644157,54.3407547897152 + + + + + J15 + +Small Square J15 Boundry Box +#Line2 + + +1 + +-6.30753772951817,54.3867538948209 +-6.30383273369547,54.4765397135357 +-6.14966820759183,54.4742776290276 +-6.15370955307069,54.384499244438 +-6.30753772951817,54.3867538948209 + + + + + + J15 +#labelStyle + +-6.22867916135152,54.4305467162761 + + + + + J16 + +Small Square J16 Boundry Box +#Line2 + + +1 + +-6.30383236213968,54.4765486929398 +-6.30010693445151,54.5663329965694 +-6.1456041730806,54.5640634446638 +-6.14966780230533,54.4742866076866 +-6.30383236213968,54.4765486929398 + + + + + + J16 +#labelStyle + +-6.22479490543994,54.5203371116565 + + + + + J17 + +Small Square J17 Boundry Box +#Line2 + + +1 + +-6.3001065608447,54.5663419758219 +-6.29636054817479,54.656124764546 +-6.14151768562588,54.6538477124606 +-6.14560376555719,54.564072423168 +-6.3001065608447,54.5663419758219 + + + + + + J17 +#labelStyle + +-6.22088920945851,54.6101259759136 + + + + + J18 + +Small Square J18 Boundry Box +#Line2 + + +1 + +-6.29636017250156,54.656133743647 +-6.29259342016996,54.7459150176453 +-6.1374085765456,54.7436304323428 +-6.14151727584877,54.6538566908099 +-6.29636017250156,54.656133743647 + + + + + + J18 +#labelStyle + +-6.21696191253479,54.6999133091032 + + + + + J19 + +Small Square J19 Boundry Box +#Line2 + + +1 + +-6.29259304241478,54.7459239965948 +-6.28880539415805,54.8357037560462 +-6.1332766754312,54.8334116042324 +-6.13740816449783,54.7436394105374 +-6.29259304241478,54.7459239965948 + + + + + + J19 +#labelStyle + +-6.2130128521517,54.7896991112794 + + + + + J20 + +Small Square J20 Boundry Box +#Line2 + + +1 + +-6.17357452685291,53.9355389825864 +-6.16964212115338,54.0253251034815 +-6.0171627387673,54.0229065366524 +-6.02142228041166,53.9331283221941 +-6.17357452685291,53.9355389825864 + + + + + + J20 +#labelStyle + +-6.09544259507873,53.9792534218757 + + + + + J21 + +Small Square J21 Boundry Box +#Line2 + + +1 + +-6.16964172680231,54.0253340829142 +-6.16568784714867,54.115118656519 +-6.01287951288092,54.1126921484491 +-6.01716231161041,54.0229155152927 +-6.16964172680231,54.0253340829142 + + + + + + J21 +#labelStyle + +-6.09133501036834,54.0690438650398 + + + + + J22 + +Small Square J22 Boundry Box +#Line2 + + +1 + +-6.16568745064208,54.1151276357969 +-6.16171193828156,54.2049106620502 +-6.00857285567647,54.2024761784642 +-6.01287908338953,54.1127011269312 +-6.16568745064208,54.1151276357969 + + + + + + J22 +#labelStyle + +-6.08720497513272,54.1588327439937 + + + + + J23 + +Small Square J23 Boundry Box +#Line2 + + +1 + +-6.16171153960348,54.2049196411734 +-6.15771423418225,54.2947011200124 +-6.00424259350506,54.2922586263718 +-6.0085724238333,54.2024851567881 +-6.16171153960348,54.2049196411734 + + + + + + J23 +#labelStyle + +-6.08305232319536,54.2486200585474 + + + + + J24 + +Small Square J24 Boundry Box +#Line2 + + +1 + +-6.15771383331658,54.2947100989809 +-6.15369457285968,54.3844900303403 +-5.9998885509627,54.3820394918408 +-6.00424215929265,54.2922676045375 +-6.15771383331658,54.2947100989809 + + + + + + J24 +#labelStyle + +-6.07887688670201,54.3384058085067 + + + + + J25 + +Small Square J25 Boundry Box +#Line2 + + +1 + +-6.15369416979014,54.3844990091539 +-6.14965279068099,54.4742773929678 +-5.99551055086815,54.4718187745368 +-5.99988811436342,54.3820484698482 +-6.15369416979014,54.3844990091539 + + + + + + J25 +#labelStyle + +-6.07467849609947,54.4281899936763 + + + + + J26 + +Small Square J26 Boundry Box +#Line2 + + +1 + +-6.14965238539112,54.4742863716267 +-6.14558872235097,54.5640632078248 +-5.99110841424067,54.5615964741186 +-5.99551011186419,54.4718277523859 +-6.14965238539112,54.4742863716267 + + + + + + J26 +#labelStyle + +-6.07045698011443,54.5179726138546 + + + + + J27 + +Small Square J27 Boundry Box +#Line2 + + +1 + +-6.14558831482416,54.5640721863289 +-6.14150220089094,54.6538474748389 +-5.98668196027713,54.65137259024 +-5.99110797281405,54.5616054518093 +-6.14558831482416,54.5640721863289 + + + + + + J27 +#labelStyle + +-6.06621216573157,54.6077536688374 + + + + + J28 + +Small Square J28 Boundry Box +#Line2 + + +1 + +-6.14150179111041,54.6538564531882 +-6.13739305761741,54.7436301939351 +-5.98223100632894,54.7411471225495 +-5.98668151640967,54.6513815677724 +-6.14150179111041,54.6538564531882 + + + + + + J28 +#labelStyle + +-6.06194387817155,54.6975331584161 + + + + + J29 + +Small Square J29 Boundry Box +#Line2 + + +1 + +-6.13739264556621,54.7436391721296 +-6.13326112212043,54.8334113650351 +-5.97775536787861,54.8309200706894 +-5.98223056000228,54.7411560999235 +-6.13739264556621,54.7436391721296 + + + + + + J29 +#labelStyle + +-6.05765194086862,54.7873110823779 + + + + + J30 + +Small Square J30 Boundry Box +#Line2 + + +1 + +-6.02140706479044,53.9331280714697 +-6.0171474904375,54.0229062851058 +-5.8646913676203,54.0202944449771 +-5.86927790773972,53.9305247686063 +-6.02140706479044,53.9331280714697 + + + + + + J30 +#labelStyle + +-5.94312312073022,53.9767420643694 + + + + + J31 + +Small Square J31 Boundry Box +#Line2 + + +1 + +-6.01714706327733,54.022915263746 +-6.01286423166102,54.1126918960766 +-5.86007932886923,54.1100714811117 +-5.86469090767142,54.0203034227616 +-6.01714706327733,54.022915263746 + + + + + + J31 +#labelStyle + +-5.93868752834772,54.0665242662974 + + + + + J32 + +Small Square J32 Boundry Box +#Line2 + + +1 + +-6.01286380216633,54.1127008745586 +-6.0085575413869,54.2024759252623 +-5.85544206389808,54.1998468984614 +-5.86007886640702,54.1100804587344 +-6.01286380216633,54.1127008745586 + + + + + + J32 +#labelStyle + +-5.93422769623893,54.1563048685092 + + + + + J33 + +Small Square J33 Boundry Box +#Line2 + + +1 + +-6.0085571095404,54.2024849035861 +-6.0042272459649,54.2922583723368 +-5.85077938579924,54.2896206964161 +-5.85544159890393,54.1998558759221 +-6.0085571095404,54.2024849035861 + + + + + + J33 +#labelStyle + +-5.92974344502375,54.2460838705423 + + + + + J34 + +Small Square J34 Boundry Box +#Line2 + + +1 + +-6.00422681174915,54.2922673505024 +-5.9998731699897,54.3820392369691 +-5.84609110577658,54.379392874358 +-5.85077891825437,54.2896296737149 +-6.00422681174915,54.2922673505024 + + + + + + J34 +#labelStyle + +-5.92523459351152,54.3358612719278 + + + + + J35 + +Small Square J35 Boundry Box +#Line2 + + +1 + +-5.99987273338707,54.3820482149764 +-5.99549513627872,54.4718185188248 +-5.84137703312153,54.4691634316631 +-5.84609063566201,54.3794018514947 +-5.99987273338707,54.3820482149764 + + + + + + J35 +#labelStyle + +-5.92070095867817,54.4256370721926 + + + + + J36 + +Small Square J36 Boundry Box +#Line2 + + +1 + +-5.99549469727139,54.4718274966738 +-5.99109296584984,54.5615962175626 +-5.83663697518918,54.5589323676976 +-5.84137656041809,54.4691724086378 +-5.99549469727139,54.4718274966738 + + + + + + J36 +#labelStyle + +-5.91614235564335,54.515411270855 + + + + + J37 + +Small Square J37 Boundry Box +#Line2 + + +1 + +-5.99109252441983,54.5616051952533 +-5.98666647789855,54.6513723328363 +-5.83187073737367,54.6486996818199 +-5.83663649987752,54.5589413445101 +-5.99109252441983,54.5616051952533 + + + + + + J37 +#labelStyle + +-5.91155859764682,54.6051838674272 + + + + + J38 + +Small Square J38 Boundry Box +#Line2 + + +1 + +-5.98666603402768,54.6513813103687 +-5.98221548977486,54.7411468642944 +-5.82707812308338,54.7384653733799 +-5.83187025943423,54.6487086584702 +-5.98666603402768,54.6513813103687 + + + + + + J38 +#labelStyle + +-5.9069494960247,54.6949548614146 + + + + + J39 + +Small Square J39 Boundry Box +#Line2 + + +1 + +-5.98221504344478,54.7411558416683 +-5.97773981695988,54.8309198115791 +-5.82225893371569,54.8282294417185 +-5.82707764249639,54.7384743498679 +-5.98221504344478,54.7411558416683 + + + + + + J39 +#labelStyle + +-5.90231486018531,54.7847242523155 + + + + + J40 + +Small Square J40 Boundry Box +#Line2 + + +1 + +-5.86926269451613,53.9305244986191 +-5.8646761217058,54.0202941741045 +-5.71224504003943,54.0174891286987 +-5.71715839544408,53.9277286208487 +-5.86926269451613,53.9305244986191 + + + + + + J40 +#labelStyle + +-5.79082771090794,53.9740377632637 + + + + + J41 + +Small Square J41 Boundry Box +#Line2 + + +1 + +-5.86467566175365,54.020303151889 +-5.86006405008249,54.11007120935 +-5.70730437347391,54.1072569559755 +-5.71224454731698,54.0174981055643 +-5.86467566175365,54.020303151889 + + + + + + J41 +#labelStyle + +-5.78606428845321,54.0638110918775 + + + + + J42 + +Small Square J42 Boundry Box +#Line2 + + +1 + +-5.86006358761698,54.1100801869725 +-5.85542675205969,54.1998466258065 +-5.7023366876515,54.1970231247435 +-5.70730387805948,54.1072659326754 +-5.86006358761698,54.1100801869725 + + + + + + J42 +#labelStyle + +-5.78127483885933,54.1535827825566 + + + + + J43 + +Small Square J43 Boundry Box +#Line2 + + +1 + +-5.85542628706222,54.1998556032672 +-5.85076404072847,54.2896204228643 +-5.6973417824293,54.2867876340879 +-5.70233618952516,54.1970321012774 +-5.85542628706222,54.1998556032672 + + + + + + J43 +#labelStyle + +-5.776459169565,54.2433528345457 + + + + + J44 + +Small Square J44 Boundry Box +#Line2 + + +1 + +-5.85076357318027,54.289629400163 +-5.84607572729137,54.3793925999053 +-5.69231945564276,54.3765504830833 +-5.69734128157095,54.2867966104559 +-5.85076357318027,54.289629400163 + + + + + + J44 +#labelStyle + +-5.77161708606592,54.3331212470801 + + + + + J45 + +Small Square J45 Boundry Box +#Line2 + + +1 + +-5.84607525717345,54.379401577042 +-5.84136162103847,54.4691631563057 +-5.68726950308009,54.4663116707948 +-5.69231895203207,54.3765594592851 +-5.84607525717345,54.379401577042 + + + + + + J45 +#labelStyle + +-5.76674839189023,54.4228880193878 + + + + + J46 + +Small Square J46 Boundry Box +#Line2 + + +1 + +-5.84136114833167,54.4691721332803 +-5.83662152932349,54.5589320914315 +-5.68219171845672,54.5560711962746 +-5.68726899669655,54.4663206468305 +-5.84136114833167,54.4691721332803 + + + + + + J46 +#labelStyle + +-5.76185288857398,54.5126531506855 + + + + + J47 + +Small Square J47 Boundry Box +#Line2 + + +1 + +-5.83662105400845,54.5589410682439 +-5.8318552575392,54.6486994046411 +-5.6770858933889,54.6458290585639 +-5.68219120927959,54.5560801721439 +-5.83662105400845,54.5589410682439 + + + + + + J47 +#labelStyle + +-5.75693037563579,54.6024166401807 + + + + + J48 + +Small Square J48 Boundry Box +#Line2 + + +1 + +-5.83185477959635,54.6487083812913 +-5.82706260909258,54.7384650952844 +-5.67195181736718,54.7355852566925 +-5.67708538139723,54.645838034267 +-5.83185477959635,54.6487083812913 + + + + + + J48 +#labelStyle + +-5.75198065055141,54.6921784870708 + + + + + J49 + +Small Square J49 Boundry Box +#Line2 + + +1 + +-5.82706212850216,54.7384740717723 +-5.82224338537958,54.8282291627022 +-5.66678927772942,54.8253397896777 +-5.67195130253982,54.7355942322291 +-5.82706212850216,54.7384740717723 + + + + + + J49 +#labelStyle + +-5.74700350872776,54.7819386905432 + + + + + J50 + +Small Square J50 Boundry Box +#Line2 + + +1 + +-5.71714318479492,53.9277283316056 +-5.71222979671833,54.0174888385073 +-5.55982553594336,54.0144906608568 +-5.56506551047099,53.9247399514684 +-5.71714318479492,53.9277283316056 + + + + + + J50 +#labelStyle + +-5.6385581399599,53.9711405888563 + + + + + J51 + +Small Square J51 Boundry Box +#Line2 + + +1 + +-5.71222930399261,54.0174978153728 +-5.70728909729973,54.1072566648316 +-5.55455643971718,54.1042486465768 +-5.55982501046705,54.0144996367403 +-5.71222930399261,54.0174978153728 + + + + + + J51 +#labelStyle + +-5.63346707808292,54.0609044125552 + + + + + J52 + +Small Square J52 Boundry Box +#Line2 + + +1 + +-5.707288601882,54.1072656415313 +-5.70232137844501,54.1970228326429 +-5.54925853319399,54.1940049313484 +-5.55455591137043,54.1042576222903 +-5.707288601882,54.1072656415313 + + + + + + J52 +#labelStyle + +-5.62834820357293,54.1506665573933 + + + + + J53 + +Small Square J53 Boundry Box +#Line2 + + +1 + +-5.70232088031536,54.1970318091767 +-5.69732644000999,54.2867873410266 +-5.54393160302065,54.2837595139315 +-5.54925800195559,54.1940139068917 +-5.70232088031536,54.1970318091767 + + + + + + J53 +#labelStyle + +-5.62320131071153,54.2404270223016 + + + + + J54 + +Small Square J54 Boundry Box +#Line2 + + +1 + +-5.6973259391483,54.2867963173944 +-5.69230407982875,54.376550189057 +-5.53857543368961,54.373512393072 +-5.54393106886914,54.2837684893046 +-5.6973259391483,54.2867963173944 + + + + + + J54 +#labelStyle + +-5.61802619170517,54.3301858061988 + + + + + J55 + +Small Square J55 Boundry Box +#Line2 + + +1 + +-5.69230357621472,54.3765591652587 +-5.68725409368819,54.4663113757993 +-5.53318980751167,54.463263567503 +-5.53857489660333,54.3735213682747 +-5.69230357621472,54.3765591652587 + + + + + + J55 +#labelStyle + +-5.61282263665896,54.4199429079932 + + + + + J56 + +Small Square J56 Boundry Box +#Line2 + + +1 + +-5.68725358730128,54.4663203518349 +-5.68217627530234,54.5560709003057 +-5.52777450458874,54.5530130359415 +-5.53318926746875,54.4632725425352 +-5.68725358730128,54.4663203518349 + + + + + + J56 +#labelStyle + +-5.60759043355047,54.5096983265784 + + + + + J57 + +Small Square J57 Boundry Box +#Line2 + + +1 + +-5.68217576612182,54.556079876175 +-5.67707041628609,54.6458287616174 +-5.5223293027858,54.6427607970901 +-5.52777396156707,54.553022010803 +-5.68217576612182,54.556079876175 + + + + + + J57 +#labelStyle + +-5.60232936820276,54.5994520608356 + + + + + J58 + +Small Square J58 Boundry Box +#Line2 + + +1 + +-5.67706990429102,54.6458377373203 +-5.6719363061286,54.735584958764 +-5.51685397770257,54.7325068496364 +-5.52232875676306,54.6427697717808 +-5.67706990429102,54.6458377373203 + + + + + + J58 +#labelStyle + +-5.59703922425707,54.6892041096328 + + + + + J59 + +Small Square J59 Boundry Box +#Line2 + + +1 + +-5.67193579129781,54.7355939343005 +-5.66677373216632,54.8253394907629 +-5.5113483026448,54.8222511922522 +-5.51685342865621,54.7325158241562 +-5.67193579129781,54.7355939343005 + + + + + + J59 +#labelStyle + +-5.59171978314528,54.7789544718244 + + + + + J60 + +Small Square J60 Boundry Box +#Line2 + + +1 + +-5.56505030257285,53.924739642977 +-5.55981029539354,54.014490351354 +-5.40743463327935,54.011299119494 +-5.41300101781961,53.9215588379826 +-5.56505030257285,53.924739642977 + + + + + + J60 +#labelStyle + +-5.4863161803394,53.9680506164342 + + + + + J61 + +Small Square J61 Boundry Box +#Line2 + + +1 + +-5.55980976991396,54.0144993272375 +-5.55454116633475,54.1042483360582 +-5.40183731862521,54.1010466314889 +-5.4074340750702,54.0113080943325 +-5.55980976991396,54.0144993272375 + + + + + + J61 +#labelStyle + +-5.48089768271651,54.0578043041292 + + + + + J62 + +Small Square J62 Boundry Box +#Line2 + + +1 + +-5.55454063798471,54.1042573117717 +-5.54924322679994,54.1940046198097 +-5.39620940476176,54.1907923973853 +-5.40183675736739,54.1010556061529 +-5.55454063798471,54.1042573117717 + + + + + + J62 +#labelStyle + +-5.47544958901632,54.1475562693342 + + + + + J63 + +Small Square J63 Boundry Box +#Line2 + + +1 + +-5.54924269555822,54.1940135953529 +-5.54391626343466,54.2837592013683 +-5.39055066515228,54.2805364155969 +-5.39620884043273,54.1908013718745 +-5.54924269555822,54.1940135953529 + + + + + + J63 +#labelStyle + +-5.46997168038895,54.2373065106461 + + + + + J64 + +Small Square J64 Boundry Box +#Line2 + + +1 + +-5.54391572927982,54.2837681767413 +-5.53856006073002,54.3735120794797 +-5.38486087097326,54.3702786845201 +-5.39055009772926,54.2805453899113 +-5.54391572927982,54.2837681767413 + + + + + + J64 +#labelStyle + +-5.46446373577764,54.3270550266462 + + + + + J65 + +Small Square J65 Boundry Box +#Line2 + + +1 + +-5.5385595236404,54.3735210546823 +-5.53317440099549,54.4632632528772 +-5.3791397910856,54.4600192025351 +-5.38486030043328,54.3702876586595 +-5.5385595236404,54.3735210546823 + + + + + + J65 +#labelStyle + +-5.45892553189091,54.4168018159021 + + + + + J66 + +Small Square J66 Boundry Box +#Line2 + + +1 + +-5.5331738609492,54.4632722279093 +-5.52775906433161,54.5530127202777 +-5.37338719200562,54.5497579680022 +-5.37913921740541,54.4600281764993 +-5.5331738609492,54.4632722279093 + + + + + + J66 +#labelStyle + +-5.45335684317475,54.506546876963 + + + + + J67 + +Small Square J67 Boundry Box +#Line2 + + +1 + +-5.52775852130656,54.5530216951391 +-5.52231382860198,54.6427604803838 +-5.3676028378753,54.639494979264 +-5.37338661516175,54.5497669417911 +-5.52775852130656,54.5530216951391 + + + + + + J67 +#labelStyle + +-5.44775744178383,54.5962902083627 + + + + + J68 + +Small Square J68 Boundry Box +#Line2 + + +1 + +-5.52231328257585,54.6427694550744 +-5.51683846940496,54.7325065318829 +-5.36178649043233,54.7292302346442 +-5.36760225784406,54.6395039528774 +-5.52231328257585,54.6427694550744 + + + + + + J68 +#labelStyle + +-5.44212709755262,54.6860318086178 + + + + + J69 + +Small Square J69 Boundry Box +#Line2 + + +1 + +-5.51683792035517,54.7325155064026 +-5.51133276004486,54.8222508734469 +-5.35593790897952,54.8189637324473 +-5.36178590718976,54.7292392080819 +-5.51683792035517,54.7325155064026 + + + + + + J69 +#labelStyle + +-5.436465577966,54.7757716762281 + + + + + J70 + +Small Square J70 Boundry Box +#Line2 + + +1 + +-5.41298581284889,53.9215585102508 +-5.40741939567852,54.011298790688 +-5.25507410789392,54.0079145876497 +-5.2609666804142,53.9181853628712 +-5.41298581284889,53.9215585102508 + + + + + + J70 +#labelStyle + +-5.33410360247617,53.9647679262683 + + + + + J71 + +Small Square J71 Boundry Box +#Line2 + + +1 + +-5.4074188374661,54.0113077655263 +-5.40182204821354,54.1010463016039 +-5.24914879909714,54.0976509943158 +-5.25507351697424,54.00792356138 +-5.4074188374661,54.0113077655263 + + + + + + J71 +#labelStyle + +-5.32835788578486,54.0545108474152 + + + + + J72 + +Small Square J72 Boundry Box +#Line2 + + +1 + +-5.40182148695243,54.1010552762677 +-5.39619410136046,54.1907920664166 +-5.24319110443729,54.1873856070278 +-5.24914820495079,54.0976599678668 +-5.40182148695243,54.1010552762677 + + + + + + J72 +#labelStyle + +-5.3225807917516,54.1442519997451 + + + + + J73 + +Small Square J73 Boundry Box +#Line2 + + +1 + +-5.39619353702812,54.1908010409058 +-5.39053532858125,54.28053608354 +-5.23720078422232,54.277118423833 +-5.24319050704039,54.1873945803993 +-5.39619353702812,54.1908010409058 + + + + + + J73 +#labelStyle + +-5.3167720884223,54.2339913815005 + + + + + J74 + +Small Square J74 Boundry Box +#Line2 + + +1 + +-5.39053476115491,54.2805450578543 +-5.38484550105109,54.3702783513702 +-5.23117759634154,54.3668494427573 +-5.2372001835508,54.2771273970248 +-5.39053476115491,54.2805450578543 + + + + + + J74 +#labelStyle + +-5.3109315415047,54.3237289909043 + + + + + J75 + +Small Square J75 Boundry Box +#Line2 + + +1 + +-5.38484493050776,54.3702873255094 +-5.37912438762951,54.4600188682874 +-5.22512129623508,54.4565786618069 +-5.23117699237108,54.3668584157692 +-5.38484493050776,54.3702873255094 + + + + + + J75 +#labelStyle + +-5.30505891433885,54.4134648261625 + + + + + J76 + +Small Square J76 Boundry Box +#Line2 + + +1 + +-5.37912381394595,54.4600278422515 +-5.37337175483147,54.5497576326519 +-5.21903163686325,54.5463060789643 +-5.22512068894108,54.4565876346387 +-5.37912381394595,54.4600278422515 + + + + + + J76 +#labelStyle + +-5.29915396786765,54.5031988854589 + + + + + J77 + +Small Square J77 Boundry Box +#Line2 + + +1 + +-5.37337117798422,54.5497666064406 +-5.36758736679761,54.6394946428063 +-5.21290836867513,54.6360316921907 +-5.21903102622088,54.5463150516159 +-5.37337117798422,54.5497666064406 + + + + + + J77 +#labelStyle + +-5.29321646060639,54.5929311669582 + + + + + J78 + +Small Square J78 Boundry Box +#Line2 + + +1 + +-5.36758678676297,54.6395036164195 +-5.36177098526421,54.7292298970742 +-5.20675123957683,54.7257554994244 +-5.21290775465932,54.6360406646618 +-5.36758678676297,54.6395036164195 + + + + + + J78 +#labelStyle + +-5.28724614861217,54.6826616688046 + + + + + J79 + +Small Square J79 Boundry Box +#Line2 + + +1 + +-5.36177040201821,54.7292388705118 +-5.35592236953268,54.8189633937601 +-5.20055999489922,54.8154774985805 +-5.20675062216223,54.7257644717148 +-5.36177040201821,54.7292388705118 + + + + + + J79 +#labelStyle + +-5.28124278545271,54.7723903891212 + + + + + J80 + +Small Square J80 Boundry Box +#Line2 + + +1 + +-5.26095147854709,53.9181850159075 +-5.25505887341954,54.0079142395489 +-5.1027457334037,54.0043371533518 +-5.10896425897665,53.9146196135696 +-5.26095147854709,53.9181850159075 + + + + + + J80 +#labelStyle + +-5.18192217464795,53.9612926036048 + + + + + J81 + +Small Square J81 Boundry Box +#Line2 + + +1 + +-5.25505828249659,54.0079232132791 +-5.24913353183501,54.0976506450729 +-5.0964926677744,54.0940618236835 +-5.10274510979711,54.0043461259109 +-5.25505828249659,54.0079232132791 + + + + + + J81 +#labelStyle + +-5.17584946853996,54.0510241282383 + + + + + J82 + +Small Square J82 Boundry Box +#Line2 + + +1 + +-5.24913293768536,54.0976596186238 +-5.24317580420884,54.1873852566379 +-5.09020543201703,54.183784649506 +-5.09649204076335,54.0940707960584 +-5.24913293768536,54.0976596186238 + + + + + + J82 +#labelStyle + +-5.16974360613471,54.1407538350355 + + + + + J83 + +Small Square J83 Boundry Box +#Line2 + + +1 + +-5.24317520680864,54.1873942300093 +-5.23718545084769,54.2771180722911 +-5.08388377331422,54.2735056284793 +-5.09020480157637,54.1837936216963 +-5.24317520680864,54.1873942300093 + + + + + + J83 +#labelStyle + +-5.16360434240281,54.2304817218637 + + + + + J84 + +Small Square J84 Boundry Box +#Line2 + + +1 + +-5.23718485017285,54.2771270454828 +-5.23116222963955,54.3668490900584 +-5.07752743629842,54.3632247582384 +-5.08388313941854,54.2735146004848 +-5.23718485017285,54.2771270454828 + + + + + + J84 +#labelStyle + +-5.15743142984581,54.3202077865672 + + + + + J85 + +Small Square J85 Boundry Box +#Line2 + + +1 + +-5.23116162566575,54.3668580630702 +-5.2251058960232,54.456578307946 +-5.07113616301982,54.4529420363945 +-5.07752679892206,54.3632337300588 +-5.23116162566575,54.3668580630702 + + + + + + J85 +#labelStyle + +-5.15122461846506,54.4099320269694 + + + + + J86 + +Small Square J86 Boundry Box +#Line2 + + +1 + +-5.22510528872583,54.4565872807777 +-5.21901620295759,54.5463057239364 +-5.06470969291402,54.5426574605313 +-5.07113552213684,54.4529510080296 +-5.22510528872583,54.4565872807777 + + + + + + J86 +#labelStyle + +-5.14498365573059,54.4996544408677 + + + + + J87 + +Small Square J87 Boundry Box +#Line2 + + +1 + +-5.21901559231184,54.5463146965878 +-5.21289290089044,54.6360313359906 +-5.05824776276896,54.632371028207 +-5.06470904849824,54.5426664319809 +-5.21901559231184,54.5463146965878 + + + + + + J87 +#labelStyle + +-5.138708286549,54.5893750260365 + + + + + J88 + +Small Square J88 Boundry Box +#Line2 + + +1 + +-5.21289228687123,54.6360403084615 +-5.20673573772647,54.7257551420469 +-5.05175010669143,54.7220827369529 +-5.05824711479392,54.6323799994708 +-5.21289228687123,54.6360403084615 + + + + + + J88 +#labelStyle + +-5.13239825323114,54.6790937802257 + + + + + J89 + +Small Square J89 Boundry Box +#Line2 + + +1 + +-5.20673512030846,54.7257641143372 +-5.20054445879518,54.8154771400205 +-5.04521645607312,54.8117925842732 +-5.05174945513041,54.7220917080307 +-5.20673512030846,54.7257641143372 + + + + + + J89 +#labelStyle + +-5.12605329545921,54.7688107011604 + + + + + J90 + +Small Square J90 Boundry Box +#Line2 + + +1 + +-5.1089490603891,53.9146192473831 +-5.10273050223303,54.0043367859653 +-4.95045128106693,54.0005669096091 +-4.95699551189941,53.910861682461 +-5.1089490603891,53.9146192473831 + + + + + + J90 +#labelStyle + +-5.02977366285245,53.9576247386586 + + + + + J91 + +Small Square J91 Boundry Box +#Line2 + + +1 + +-5.10272987862317,54.0043457585244 +-5.09647740384034,54.0940614550919 +-4.94387070891046,54.0902792132328 +-4.95045062479833,54.0005758809342 +-5.10272987862317,54.0043457585244 + + + + + + J91 +#labelStyle + +-5.02337420992531,54.0473442374254 + + + + + J92 + +Small Square J92 Boundry Box +#Line2 + + +1 + +-5.09647677682601,54.0940704274666 +-5.09019013514129,54.183784279704 +-4.93725418487964,54.1799896190984 +-4.94387004905988,54.0902881843683 +-5.09647677682601,54.0940704274666 + + + + + + J92 +#labelStyle + +-5.01693982418423,54.1370618666499 + + + + + J93 + +Small Square J93 Boundry Box +#Line2 + + +1 + +-5.09018950469732,54.1837932518942 +-5.08386844331718,54.2735052574618 +-4.93060144306323,54.2696981244583 +-4.93725352142063,54.179998590044 +-5.09018950469732,54.1837932518942 + + + + + + J93 +#labelStyle + +-5.01047024755501,54.2267776238042 + + + + + J94 + +Small Square J94 Boundry Box +#Line2 + + +1 + +-5.08386780941817,54.2735142294671 +-5.07751207299915,54.363224386 +-4.92391221486886,54.3594047265358 +-4.93060077596905,54.2697070952137 +-5.08386780941817,54.2735142294671 + + + + + + J94 +#labelStyle + +-5.00396521936395,54.3164915063332 + + + + + J95 + +Small Square J95 Boundry Box +#Line2 + + +1 + +-5.07751143561944,54.3632333578203 +-5.07112076623603,54.4529416629299 +-4.91718622898923,54.4491094225264 +-4.92391154411251,54.3594136971007 +-5.07751143561944,54.3632333578203 + + + + + + J95 +#labelStyle + +-4.99742447630514,54.4062035116567 + + + + + J96 + +Small Square J96 Boundry Box +#Line2 + + +1 + +-5.07112012534969,54.4529506345649 +-5.06469426246208,54.5426570858352 +-4.91042321136824,54.5388122095938 +-4.91718555454346,54.4491183929006 +-5.07112012534969,54.4529506345649 + + + + + + J96 +#labelStyle + +-4.99084775240763,54.495913637165 + + + + + J97 + +Small Square J97 Boundry Box +#Line2 + + +1 + +-5.06469361804293,54.5426660572847 +-5.05823229846389,54.6323706522739 +-4.90362288516616,54.6285130848721 +-4.9104225332055,54.5388211797769 +-5.06469361804293,54.5426660572847 + + + + + + J97 +#labelStyle + +-4.98423477900171,54.5856218802208 + + + + + J98 + +Small Square J98 Boundry Box +#Line2 + + +1 + +-5.05823165048547,54.6323796235377 +-5.05173460834687,54.7220823597775 +-4.89678497072447,54.7182120454642 +-4.90362220325863,54.6285220548639 +-5.05823165048547,54.6323796235377 + + + + + + J98 +#labelStyle + +-4.97758528468484,54.6753282381586 + + + + + J99 + +Small Square J99 Boundry Box +#Line2 + + +1 + +-5.05173395678244,54.7220913308552 +-5.04520092350131,54.81179220585 +-4.88990918553014,54.8079090884416 +-4.89678428504403,54.7182210152644 +-5.05173395678244,54.7220913308552 + + + + + + J99 +#labelStyle + +-4.9708989952871,54.7650327082836 + + + + + +HP + +Large Square HP Boundry Box +#Line1 + + +1 + +-2.00182138169249,60.6832167831895 +-2.00188116175527,61.5809535808693 +-0.119146411106452,61.5680087253002 +-0.171729619888492,60.6707404472768 +-2.00182138169249,60.6832167831895 + + + + + +HP00 + +Small Square HP00 Boundry Box +#Line2 + + +1 + +-2.00182138169249,60.6832167831895 +-2.00182718642675,60.7729878223113 +-1.81826882918535,60.7728649153632 +-1.81877457009522,60.6830943240971 +-2.00182138169249,60.6832167831895 + + + + + +HP00 +#labelStyle + +-1.91016381280111,60.7280769190768 + + + + +HP01 + +Small Square HP01 Boundry Box +#Line2 + + +1 + +-2.00182718700915,60.7729968002509 +-2.00183302918849,60.8627666125701 +-1.81775975514616,60.8626432552137 +-1.81826877844257,60.7728738932579 +-2.00182718700915,60.7729968002509 + + + + + +HP01 +#labelStyle + +-1.90991298266901,60.8178562052079 + + + + +HP02 + +Small Square HP02 Boundry Box +#Line2 + + +1 + +-2.00183302977465,60.8627755903886 +-2.0018389097447,60.952544193021 +-1.81724736810848,60.952420382725 +-1.8177597040736,60.862652232987 +-2.00183302977465,60.8627755903886 + + + + + +HP02 +#labelStyle + +-1.90966052223096,60.9076342797431 + + + + +HP03 + +Small Square HP03 Boundry Box +#Line2 + + +1 + +-2.00183891033465,60.9525531707186 +-2.00184482844438,61.0423205660187 +-1.81673163749542,61.0421963002281 +-1.81724731670309,60.9524293603772 +-2.00183891033465,60.9525531707186 + + + + + +HP03 +#labelStyle + +-1.90940641646407,60.9974111450255 + + + + +HP04 + +Small Square HP04 Boundry Box +#Line2 + + +1 + +-2.00184482903817,61.0423295435958 +-2.00185078564088,61.1320957339301 +-1.81621253234959,61.1319710100657 +-1.81673158575414,61.0422052777594 +-2.00184482903817,61.0423295435958 + + + + + +HP04 +#labelStyle + +-1.90915065015878,61.0871868034099 + + + + +HP05 + +Small Square HP05 Boundry Box +#Line2 + + +1 + +-2.00185078623854,61.1321047113867 +-2.00185678169196,61.2218696991339 +-1.81569002132717,61.2217445145924 +-1.81621248026929,61.1319799874764 +-2.00185078623854,61.1321047113867 + + + + + +HP05 +#labelStyle + +-1.90889320791597,61.1769612572633 + + + + +HP06 + +Small Square HP06 Boundry Box +#Line2 + + +1 + +-2.00185678229352,61.2218786764704 +-2.00186281695984,61.3116424640209 +-1.81516407269187,61.3115168161743 +-1.8156899689047,61.2217534918827 +-2.00185678229352,61.2218786764704 + + + + + +HP06 +#labelStyle + +-1.90863407414398,61.2667345089645 + + + + +HP07 + +Small Square HP07 Boundry Box +#Line2 + + +1 + +-2.00186281756534,61.3116514412375 +-2.0018688918113,61.401414030994 +-1.81463465430879,61.4012879171893 +-1.81516401992404,61.3115257933444 +-2.00186281756534,61.3116514412375 + + + + + +HP07 +#labelStyle + +-1.90837323305565,61.3565065609042 + + + + +HP08 + +Small Square HP08 Boundry Box +#Line2 + + +1 + +-2.00186889242078,61.4014230080909 +-2.00187500661775,61.4911844024679 +-1.81410173363817,61.491057820027 +-1.81463460119237,61.4012968942395 +-2.00186889242078,61.4014230080909 + + + + + +HP08 +#labelStyle + +-1.90811066866519,61.4462774154851 + + + + +HP09 + +Small Square HP09 Boundry Box +#Line2 + + +1 + +-2.00187500723124,61.4911933794453 +-2.00188116175527,61.5809535808693 +-1.81356527772896,61.5808265270884 +-1.81410168016987,61.4910667969574 +-2.00187500723124,61.4911933794453 + + + + + +HP09 +#labelStyle + +-1.9078463647851,61.5360470751218 + + + + +HP10 + +Small Square HP10 Boundry Box +#Line2 + + +1 + +-1.81875626369142,60.683094299344 +-1.81825047162287,60.7728648905195 +-1.6346954009264,60.7724909773876 +-1.63571270878867,60.682721749943 +-1.81875626369142,60.683094299344 + + + + + +HP10 +#labelStyle + +-1.72684450674113,60.7278289240919 + + + + +HP11 + +Small Square HP11 Boundry Box +#Line2 + + +1 + +-1.81825042087495,60.7728738684142 +-1.81774134608785,60.8626432302789 +-1.63367138881299,60.8622679456392 +-1.63469529885631,60.7724999551454 +-1.81825042087495,60.7728738684142 + + + + + +HP11 +#labelStyle + +-1.72608038329037,60.8176073016613 + + + + +HP12 + +Small Square HP12 Boundry Box +#Line2 + + +1 + +-1.81774129501012,60.8626522080523 +-1.81722890721924,60.9524203576986 +-1.6326407129479,60.9520436938387 +-1.63367128607958,60.862276923275 +-1.81774129501012,60.8626522080523 + + + + + +HP12 +#labelStyle + +-1.72531129386357,60.9073844625361 + + + + +HP13 + +Small Square HP13 Boundry Box +#Line2 + + +1 + +-1.81722885580865,60.9524293353509 +-1.81671312443706,61.0421962751096 +-1.63160331183106,61.0418182242449 +-1.63264060954504,60.9520526713526 +-1.81722885580865,60.9524293353509 + + + + + +HP13 +#labelStyle + +-1.72453719270119,60.9971604090112 + + + + +HP14 + +Small Square HP14 Boundry Box +#Line2 + + +1 + +-1.81671307269054,61.0422052526409 +-1.81619396678079,61.1319709848546 +-1.63055912319715,61.1315915391273 +-1.63160320775258,61.0418272016371 +-1.81671307269054,61.0422052526409 + + + + + +HP14 +#labelStyle + +-1.72375803347515,61.0869351433935 + + + + +HP15 + +Small Square HP15 Boundry Box +#Line2 + + +1 + +-1.81619391469522,61.1319799622652 +-1.81567140290342,61.221744489288 +-1.62950808400364,61.2213636407665 +-1.63055901843678,61.1316005163981 +-1.81619391469522,61.1319799622652 + + + + + +HP15 +#labelStyle + +-1.72297376927997,61.1767086680008 + + + + +HP16 + +Small Square HP16 Boundry Box +#Line2 + + +1 + +-1.81567135047565,61.2217534665783 +-1.81514540106548,61.3115167907762 +-1.62845013041866,61.3111345314536 +-1.62950797855504,61.2213726179161 +-1.81567135047565,61.2217534665783 + + + + + +HP16 +#labelStyle + +-1.72218435262377,61.2664809851627 + + + + +HP17 + +Small Square HP17 Boundry Box +#Line2 + + +1 + +-1.81514534829231,61.3115257679463 +-1.8146159291288,61.401287891697 +-1.62738519780867,61.4009042134905 +-1.6284500242754,61.3111435084822 +-1.81514534829231,61.3115257679463 + + + + + +HP17 +#labelStyle + +-1.72138973541912,61.3562520972196 + + + + +HP18 + +Small Square HP18 Boundry Box +#Line2 + + +1 + +-1.814615876007,61.4012968687471 +-1.81408295455033,61.4910577944399 +-1.6263132207258,61.4906726891901 +-1.62738509096425,61.4009131903984 +-1.814615876007,61.4012968687471 + + + + + +HP18 +#labelStyle + +-1.72058986897367,61.4460220065235 + + + + +HP19 + +Small Square HP19 Boundry Box +#Line2 + + +1 + +-1.81408290107663,61.4910667713703 +-1.8135464443757,61.580826501406 +-1.62523413289508,61.5804399608755 +-1.62631311317364,61.4906816659774 +-1.81408290107663,61.4910667713703 + + + + + +HP19 +#labelStyle + +-1.71978470398063,61.5357907154377 + + + + +HP20 + +Small Square HP20 Boundry Box +#Line2 + + +1 + +-1.63569440287509,60.682721700179 +-1.63467704385862,60.7724909274413 +-1.45112857954903,60.7718660214331 +-1.45265739434394,60.6820990736648 +-1.63569440287509,60.682721700179 + + + + + +HP20 +#labelStyle + +-1.54353012534062,60.7273303619115 + + + + +HP21 + +Small Square HP21 Boundry Box +#Line2 + + +1 + +-1.6346769417834,60.7724999051992 +-1.63365298025393,60.8622678955097 +-1.44958969012942,60.8616406970078 +-1.45112842615768,60.7718749989624 +-1.6346769417834,60.7724999051992 + + + + + +HP21 +#labelStyle + +-1.54225275379245,60.817106912347 + + + + +HP22 + +Small Square HP22 Boundry Box +#Line2 + + +1 + +-1.63365287751535,60.8622768731455 +-1.63262225256252,60.952043643525 +-1.4480407869587,60.9514141396374 +-1.44958953574127,60.8616496744137 +-1.63365287751535,60.8622768731455 + + + + + +HP22 +#labelStyle + +-1.54096708115821,60.9068822358318 + + + + +HP23 + +Small Square HP23 Boundry Box +#Line2 + + +1 + +-1.63262214915447,60.9520526210388 +-1.63158479928122,61.0418181737459 +-1.44648177762535,61.0411863514598 +-1.44804063156457,60.9514231169201 +-1.63262214915447,60.9520526210388 + + + + + +HP23 +#labelStyle + +-1.53967303095041,60.9966563345652 + + + + +HP24 + +Small Square HP24 Boundry Box +#Line2 + + +1 + +-1.63158469519751,61.0418271511381 +-1.63054055814159,61.131591488442 +-1.44491256856802,61.1309573346223 +-1.44648162121595,61.0411953286195 +-1.63158469519751,61.0418271511381 + + + + + +HP24 +#labelStyle + +-1.53837052573127,61.0864292107568 + + + + +HP25 + +Small Square HP25 Boundry Box +#Line2 + + +1 + +-1.63054045337595,61.1316004657128 +-1.62948946609792,61.2213635898937 +-1.4433330650576,61.2207270912818 +-1.44491241113393,61.1309663116593 +-1.63054045337595,61.1316004657128 + + + + + +HP25 +#labelStyle + +-1.53705948709798,61.1762008666263 + + + + +HP26 + +Small Square HP26 Boundry Box +#Line2 + + +1 + +-1.62948936064401,61.2213725670433 +-1.62843145931514,61.3111344803924 +-1.44174317117904,61.310495623604 +-1.44333290658929,61.2207360681962 +-1.62948936064401,61.2213725670433 + + + + + +HP26 +#labelStyle + +-1.5357398356676,61.2659713044034 + + + + +HP27 + +Small Square HP27 Boundry Box +#Line2 + + +1 + +-1.62843135316654,61.3111434574209 +-1.62736647315645,61.4009041622398 +-1.44014278981271,61.400262933764 +-1.44174301166685,61.3105046003961 +-1.62843135316654,61.3111434574209 + + + + + +HP27 +#labelStyle + +-1.53441149106177,61.355740526328 + + + + +HP28 + +Small Square HP28 Boundry Box +#Line2 + + +1 + +-1.62736636630666,61.4009131391476 +-1.6262944421707,61.4906726377487 +-1.43853182261552,61.4900290239459 +-1.44014262924688,61.4002719104339 +-1.62736636630666,61.4009131391476 + + + + + +HP28 +#labelStyle + +-1.53307437189111,61.4455085346501 + + + + +HP29 + +Small Square HP29 Boundry Box +#Line2 + + +1 + +-1.62629433461313,61.490681614536 +-1.62521530007958,61.5804399092423 +-1.43691017000162,61.5797938963431 +-1.43853166098614,61.490038000494 +-1.62629433461313,61.490681614536 + + + + + +HP29 +#labelStyle + +-1.53172839573925,61.5352753316293 + + + + +HP30 + +Small Square HP30 Boundry Box +#Line2 + + +1 + +-1.45263908924954,60.6820989988915 +-1.45111022330794,60.7718659463861 +-1.26757168448483,60.7709900697388 +-1.26961191603601,60.6812263173136 +-1.45263908924954,60.6820989988915 + + + + + +HP30 +#labelStyle + +-1.36022397332269,60.7265812502354 + + + + +HP31 + +Small Square HP31 Boundry Box +#Line2 + + +1 + +-1.45111006991145,60.7718749239153 +-1.44957128240465,60.8616406216854 +-1.26551800905953,60.8607615317485 +-1.26757147978128,60.7709990469476 +-1.45111006991145,60.7718749239153 + + + + + +HP31 +#labelStyle + +-1.35843342925012,60.8163550551153 + + + + +HP32 + +Small Square HP32 Boundry Box +#Line2 + + +1 + +-1.44957112801134,60.8616495990913 +-1.44802232741531,60.9514140640381 +-1.26345097101615,60.9505317427421 +-1.26551780302583,60.8607705088321 +-1.44957112801134,60.8616495990913 + + + + + +HP32 +#labelStyle + +-1.35663124991743,60.9061276176336 + + + + +HP33 + +Small Square HP33 Boundry Box +#Line2 + + +1 + +-1.44802217201599,60.9514230413208 +-1.4464632659253,61.0411862755821 +-1.26137044704929,61.0403007046883 +-1.26345076364005,60.9505407197007 +-1.44802217201599,60.9514230413208 + + + + + +HP33 +#labelStyle + +-1.35481732812367,60.9958989398454 + + + + +HP34 + +Small Square HP34 Boundry Box +#Line2 + + +1 + +-1.44646310951067,61.0411952527417 +-1.44489400437014,61.1309572584646 +-1.25927631231945,61.1300684195631 +-1.26137023831838,61.0403096815221 +-1.44646310951067,61.0411952527417 + + + + + +HP34 +#labelStyle + +-1.35299155533614,61.0856690238142 + + + + +HP35 + +Small Square HP35 Boundry Box +#Line2 + + +1 + +-1.44489384693078,61.1309662355016 +-1.44331444801755,61.2207270148425 +-1.25716844042921,61.2198348893498 +-1.25927610222117,61.1300773962723 +-1.44489384693078,61.1309662355016 + + + + + +HP35 +#labelStyle + +-1.35115382166973,61.1754378716121 + + + + +HP36 + +Small Square HP36 Boundry Box +#Line2 + + +1 + +-1.44331428954394,61.2207359917568 +-1.44172450094927,61.3104955468814 +-1.25504670339887,61.3096001160387 +-1.25716822895084,61.2198438659346 +-1.44331428954394,61.2207359917568 + + + + + +HP36 +#labelStyle + +-1.34930401586578,61.2652054853193 + + + + +HP37 + +Small Square HP37 Boundry Box +#Line2 + + +1 + +-1.44172434143175,61.3105045236735 +-1.44012406604244,61.4002628567566 +-1.2529109716417,61.3993641016268 +-1.25504649052754,61.3096090924992 +-1.44172434143175,61.3105045236735 + + + + + +HP37 +#labelStyle + +-1.34744202527066,61.3549718670243 + + + + +HP38 + +Small Square HP38 Boundry Box +#Line2 + + +1 + +-1.44012390547123,61.4002718334265 +-1.43851304495066,61.4900289466521 +-1.25076111393863,61.4891268481185 +-1.25291075736435,61.3993730779634 +-1.44012390547123,61.4002718334265 + + + + + +HP38 +#labelStyle + +-1.34556773581381,61.4447370188235 + + + + +HP39 + +Small Square HP39 Boundry Box +#Line2 + + +1 + +-1.43851288331588,61.4900379232002 +-1.43689133808477,61.5797938187612 +-1.24859699741262,61.5788883575245 +-1.25076089824208,61.4891358243312 +-1.43851288331588,61.4900379232002 + + + + + +HP39 +#labelStyle + +-1.34368103198553,61.5345009428217 + + + + +HP40 + +Small Square HP40 Boundry Box +#Line2 + + +1 + +-1.26959361208967,60.6812262175337 +-1.26755332940232,60.7709899695936 +-1.08402803405015,60.7698631534709 +-1.08657956204156,60.6801035117927 +-1.26959361208967,60.6812262175337 + + + + + +HP40 +#labelStyle + +-1.17692935448863,60.7255816156545 + + + + +HP41 + +Small Square HP41 Boundry Box +#Line2 + + +1 + +-1.26755312469364,60.7709989468023 +-1.26549960250401,60.8607614312359 +-1.08145969443493,60.8596304812936 +-1.08402777804651,60.7698721302675 +-1.26755312469364,60.7709989468023 + + + + + +HP41 +#labelStyle + +-1.17462574380223,60.8153517567841 + + + + +HP42 + +Small Square HP42 Boundry Box +#Line2 + + +1 + +-1.26549939646514,60.8607704083194 +-1.2634325126528,60.9505316418599 +-1.07887464484547,60.9493965348545 +-1.08145943676794,60.8596394579627 +-1.26549939646514,60.8607704083194 + + + + + +HP42 +#labelStyle + +-1.17230716499325,60.9051206349886 + + + + +HP43 + +Small Square HP43 Boundry Box +#Line2 + + +1 + +-1.2634323052715,60.9505406188185 +-1.26135193654019,61.0403006034346 +-1.0762727311059,61.0391613159047 +-1.0788743854998,60.9494055113962 +-1.2634323052715,60.9505406188185 + + + + + +HP43 +#labelStyle + +-1.16997348016761,60.9948882521308 + + + + +HP44 + +Small Square HP44 Boundry Box +#Line2 + + +1 + +-1.26135172780405,61.0403095802684 +-1.25925774932358,61.1300683179358 +-1.07365379712249,61.1289248261999 +-1.07627247006605,61.0391702923193 +-1.26135172780405,61.0403095802684 + + + + + +HP44 +#labelStyle + +-1.16762454971839,61.0846546100798 + + + + +HP45 + +Small Square HP45 Boundry Box +#Line2 + + +1 + +-1.25925753922003,61.130077294645 +-1.25714982460237,61.2198347873468 +-1.07101768485382,61.2186870675 +-1.07365353437275,61.1289338024874 +-1.25925753922003,61.130077294645 + + + + + +HP45 +#labelStyle + +-1.16526023229927,61.1744197107103 + + + + +HP46 + +Small Square HP46 Boundry Box +#Line2 + + +1 + +-1.2571496131187,61.2198437639315 +-1.25502803439365,61.3096000136576 +-1.06836423428034,61.3084480415696 +-1.07101742037828,61.2186960436608 +-1.2571496131187,61.2198437639315 + + + + + +HP46 +#labelStyle + +-1.16288038479736,61.2641835559031 + + + + +HP47 + +Small Square HP47 Boundry Box +#Line2 + + +1 + +-1.25502782151698,61.3096089901182 +-1.25289224910746,61.3993639988657 +-1.06569328337343,61.3982077501771 +-1.0683639680629,61.3084570176037 +-1.25502782151698,61.3096089901182 + + + + + +HP47 +#labelStyle + +-1.16048486230559,61.3539461475445 + + + + +HP48 + +Small Square HP48 Boundry Box +#Line2 + + +1 + +-1.25289203482474,61.3993729752023 +-1.25074233752143,61.4891267449751 +-1.06300466806382,61.4879661950951 +-1.06569301539779,61.3982167260847 +-1.25289203482474,61.3993729752023 + + + + + +HP48 +#labelStyle + +-1.15807351809461,61.4437074875267 + + + + +HP49 + +Small Square HP49 Boundry Box +#Line2 + + +1 + +-1.25074212181947,61.4891357211878 +-1.24857816675519,61.5788882539966 +-1.06029822220944,61.5777233780999 +-1.06300439831346,61.4879751708764 +-1.25074212181947,61.4891357211878 + + + + + +HP49 +#labelStyle + +-1.15564620358406,61.5334675777471 + + + + +HP50 + +Small Square HP50 Boundry Box +#Line2 + + +1 + +-1.08656125957203,60.6801033870097 +-1.08400968045799,60.7698630282311 +-0.900500945073597,60.7684853127189 +-0.903563619072138,60.6787306968534 +-1.08656125957203,60.6801033870097 + + + + + +HP50 +#labelStyle + +-0.993649571348112,60.7243314936474 + + + + +HP51 + +Small Square HP51 Boundry Box +#Line2 + + +1 + +-1.08400942444923,60.7698720050276 +-1.08144128938346,60.8596303555943 +-0.89741809357646,60.858247586075 +-0.900500637785009,60.7684942890114 +-1.08400942444923,60.7698720050276 + + + + + +HP51 +#labelStyle + +-0.990833030276025,60.8140970531344 + + + + +HP52 + +Small Square HP52 Boundry Box +#Line2 + + +1 + +-1.08144103171131,60.8596393322633 +-1.07885618800004,60.9493964086932 +-0.89431518663765,60.9480085567529 +-0.897417784291502,60.8582565622371 +-1.08144103171131,60.8596393322633 + + + + + +HP52 +#labelStyle + +-0.987998189905763,60.9038613239839 + + + + +HP53 + +Small Square HP53 Boundry Box +#Line2 + + +1 + +-1.07885592864918,60.9494053852349 +-1.07625422212878,61.0391611892788 +-0.891192039240142,61.0377682262379 +-0.894314875337935,60.9480175327849 +-1.07885592864918,60.9494053852349 + + + + + +HP53 +#labelStyle + +-0.985144881676237,60.9936243078185 + + + + +HP54 + +Small Square HP54 Boundry Box +#Line2 + + +1 + +-1.0762539610837,61.0391701656933 +-1.07363523567283,61.1289246991067 +-0.888048464065811,61.1275265960161 +-0.891191725907053,61.0377772021398 +-1.0762539610837,61.0391701656933 + + + + + +HP54 +#labelStyle + +-0.982272934932945,61.0833860062638 + + + + +HP55 + +Small Square HP55 Boundry Box +#Line2 + + +1 + +-1.07363497291782,61.1289336753942 +-1.07099907058759,61.2186869399369 +-0.884884271459626,61.2172836675749 +-0.888048148680499,61.1275355717881 +-1.07363497291782,61.1289336753942 + + + + + +HP55 +#labelStyle + +-0.97938217689545,61.1731464209483 + + + + +HP56 + +Small Square HP56 Boundry Box +#Line2 + + +1 + +-1.07099880610675,61.2186959160976 +-1.06834556685032,61.3084479135338 +-0.881699269393182,61.3070394424028 +-0.884883954003008,61.2172926432172 +-1.07099880610675,61.2186959160976 + + + + + +HP56 +#labelStyle + +-0.976472432624252,61.2629055535032 + + + + +HP57 + +Small Square HP57 Boundry Box +#Line2 + + +1 + +-1.06834530062754,61.3084568895679 +-1.06567456242915,61.398207621666 +-0.878493263427538,61.3967939219886 +-0.881698949845936,61.3070484179155 +-1.06834530062754,61.3084568895679 + + + + + +HP57 +#labelStyle + +-0.973543524987031,61.3526634055624 + + + + +HP58 + +Small Square HP58 Boundry Box +#Line2 + + +1 + +-1.06567429444814,61.3982165975736 +-1.06298589325154,61.4879660661059 +-0.875266056675362,61.4865471078219 +-0.878492941770098,61.3968028973718 +-1.06567429444814,61.3982165975736 + + + + + +HP58 +#labelStyle + +-0.97059527462426,61.4424199787621 + + + + +HP59 + +Small Square HP59 Boundry Box +#Line2 + + +1 + +-1.06298562349577,61.4879750418873 +-1.06027939317208,61.57772324863 +-0.872017449762354,61.5762990013925 +-0.875265732887915,61.4865560830759 +-1.06298562349577,61.4879750418873 + + + + + +HP59 +#labelStyle + +-0.967627499914165,61.532175274741 + + + + +HP60 + +Small Square HP60 Boundry Box +#Line2 + + +1 + +-0.903545318408004,60.6787305470718 +-0.900482593303387,60.7684851623889 +-0.716993732523935,60.7668565964899 +-0.720567372007653,60.6771079210894 +-0.903545318408004,60.6787305470718 + + + + + +HP60 +#labelStyle + +-0.810387924749669,60.7228309285757 + + + + +HP61 + +Small Square HP61 Boundry Box +#Line2 + + +1 + +-0.900482286009672,60.7684941386814 +-0.897399690363695,60.8582474351935 +-0.713396551916358,60.856612895518 +-0.716993373968562,60.7668655721866 +-0.900482286009672,60.7684941386814 + + + + + +HP61 +#labelStyle + +-0.80705861981197,60.8125909889057 + + + + +HP62 + +Small Square HP62 Boundry Box +#Line2 + + +1 + +-0.897399381073576,60.8582564113556 +-0.89429673164789,60.9480084053169 +-0.709775972665792,60.9463678582862 +-0.713396191031822,60.8566218710811 +-0.897399381073576,60.8582564113556 + + + + + +HP62 +#labelStyle + +-0.803707686462152,60.9023497297418 + + + + +HP63 + +Small Square HP63 Boundry Box +#Line2 + + +1 + +-0.894296420342979,60.9480173813489 +-0.891173532135863,61.0377680742442 +-0.706131778949203,61.0361214859651 +-0.709775609430644,60.9463768337157 +-0.894296420342979,60.9480173813489 + + + + + +HP63 +#labelStyle + +-0.800334925504046,60.9921071524179 + + + + +HP64 + +Small Square HP64 Boundry Box +#Line2 + + +1 + +-0.891173218797545,61.0377770501461 +-0.888029904506371,61.1275264434616 +-0.702463752259873,61.1258737797228 +-0.706131413341728,61.0361304612612 +-0.891173218797545,61.0377770501461 + + + + + +HP64 +#labelStyle + +-0.796940135268078,61.0818632582677 + + + + +HP65 + +Small Square HP65 Boundry Box +#Line2 + + +1 + +-0.888029589115796,61.1275354192335 +-0.884865659101222,61.2172835144564 +-0.698771671365645,61.2156247407245 +-0.702463384258083,61.1258827548855 +-0.888029589115796,61.1275354192335 + + + + + +HP65 +#labelStyle + +-0.793523111572847,61.1716180486241 + + + + +HP66 + +Small Square HP66 Boundry Box +#Line2 + + +1 + +-0.884865341639308,61.2172924900986 +-0.881680603888813,61.307039288717 +-0.695055312266408,61.3053743701323 +-0.69877130094728,61.215633715754 +-0.884865341639308,61.2172924900986 + + + + + +HP66 +#labelStyle + +-0.790083647685993,61.261371524819 + + + + +HP67 + +Small Square HP67 Boundry Box +#Line2 + + +1 + +-0.881680284336235,61.3070482642296 +-0.878474544426963,61.3967937677323 +-0.691314448150764,61.3951226691051 +-0.695054939408928,61.3053833450287 +-0.881680284336235,61.3070482642296 + + + + + +HP67 +#labelStyle + +-0.786621534284323,61.3511236881834 + + + + +HP68 + +Small Square HP68 Boundry Box +#Line2 + + +1 + +-0.878474222764156,61.3968027431155 +-0.87524728382506,61.4865469529919 +-0.687548849351891,61.4848696387978 +-0.691314072831346,61.3951316438685 +-0.878474222764156,61.3968027431155 + + + + + +HP68 +#labelStyle + +-0.78313655941319,61.4408745400466 + + + + +HP69 + +Small Square HP69 Boundry Box +#Line2 + + +1 + +-0.875246960032211,61.4865559282457 +-0.871998622705482,61.5762988459854 +-0.683758283302566,61.5746152803618 +-0.687548471547424,61.4848786134284 +-0.875246960032211,61.4865559282457 + + + + + +HP69 +#labelStyle + +-0.779628508445106,61.5306240817366 + + + + +HP70 + +Small Square HP70 Boundry Box +#Line2 + + +1 + +-0.7205490734773,60.6771077463143 +-0.716975382907062,60.7668564210751 +-0.53350970913849,60.764977062702 +-0.537594103530473,60.6752352419302 +-0.7205490734773,60.6771077463143 + + + + + +HP70 +#labelStyle + +-0.627147713511679,60.7210799736775 + + + + +HP71 + +Small Square HP71 Boundry Box +#Line2 + + +1 + +-0.716975024346564,60.7668653967718 +-0.713378150876729,60.8566127194599 +-0.529398412620917,60.8547264680354 +-0.533509299337522,60.7649860377113 +-0.716975024346564,60.7668653967718 + + + + + +HP71 +#labelStyle + +-0.623305841489032,60.8108336177901 + + + + +HP72 + +Small Square HP72 Boundry Box +#Line2 + + +1 + +-0.713377789987034,60.8566216950229 +-0.709757519869212,60.946367681581 +-0.525260376901903,60.9444744983672 +-0.529398000158256,60.8547354429072 +-0.713377789987034,60.8566216950229 + + + + + +HP72 +#labelStyle + +-0.619439014376171,60.9005859064133 + + + + +HP73 + +Small Square HP73 Boundry Box +#Line2 + + +1 + +-0.709757156628871,60.9463766570104 +-0.706113274058399,61.0361213086092 +-0.521095355393389,61.0342211545056 +-0.525259961753042,60.9444834731015 +-0.709757156628871,60.9463766570104 + + + + + +HP73 +#labelStyle + +-0.615547002379564,60.9903368405447 + + + + +HP74 + +Small Square HP74 Boundry Box +#Line2 + + +1 + +-0.706112908445697,61.0361302839052 +-0.702445194934455,61.1258736017125 +-0.516903098441804,61.1239664372515 +-0.521094937533516,61.0342301291025 +-0.706112908445697,61.0361302839052 + + + + + +HP74 +#labelStyle + +-0.611629572852983,61.0800864211774 + + + + +HP75 + +Small Square HP75 Boundry Box +#Line2 + + +1 + +-0.702444826927404,61.1258825768752 +-0.698753061262068,61.2156245620561 +-0.512683353280396,61.2137103473988 +-0.5169026778458,61.1239754117112 +-0.702444826927404,61.1258825768752 + + + + + +HP75 +#labelStyle + +-0.607686490253203,61.1698346492996 + + + + +HP76 + +Small Square HP76 Boundry Box +#Line2 + + +1 + +-0.698752690838408,61.2156335370856 +-0.695036649037931,61.3053741908021 +-0.508435863980671,61.3034528857332 +-0.512682929922826,61.2137193217212 +-0.698752690838408,61.2156335370856 + + + + + +HP76 +#labelStyle + +-0.603717516094874,61.2595815258942 + + + + +HP77 + +Small Square HP77 Boundry Box +#Line2 + + +1 + +-0.695036276175121,61.3053831656985 +-0.691295731447412,61.3951224891092 +-0.504160371402917,61.3931940530327 +-0.508435437835783,61.3034618599185 +-0.695036276175121,61.3053831656985 + + + + + +HP77 +#labelStyle + +-0.599722408904552,61.3493270519386 + + + + +HP78 + +Small Square HP78 Boundry Box +#Line2 + + +1 + +-0.691295356122629,61.3951314638726 +-0.687530078820412,61.4848694581325 +-0.499856613145797,61.4829338500667 +-0.504159942444634,61.3932030270809 +-0.691295356122629,61.3951314638726 + + + + + +HP78 +#labelStyle + +-0.595700924173861,61.4390712284046 + + + + +HP79 + +Small Square HP79 Boundry Box +#Line2 + + +1 + +-0.687529701010544,61.484878432763 +-0.683739458586391,61.5746150990232 +-0.495524323494997,61.5726722775959 +-0.499856181347715,61.482942823978 +-0.687529701010544,61.484878432763 + + + + + +HP79 +#labelStyle + +-0.591652814311773,61.5288140562576 + + + + +HP80 + +Small Square HP80 Boundry Box +#Line2 + + +1 + +-0.537575807462046,60.675235042168 +-0.533491362006104,60.7649768622086 +-0.350052185052222,60.7628467781765 +-0.354647093760084,60.6731127256337 +-0.537575807462046,60.675235042168 + + + + + +HP80 +#labelStyle + +-0.443932234053926,60.7190786910609 + + + + +HP81 + +Small Square HP81 Boundry Box +#Line2 + + +1 + +-0.533490952200012,60.7649858372178 +-0.529380014088614,60.8547262668067 +-0.345427016213834,60.8525883710186 +-0.350051724029868,60.7628557524067 +-0.533490952200012,60.7649858372178 + + + + + +HP81 +#labelStyle + +-0.439578021950555,60.8088250024247 + + + + +HP82 + +Small Square HP82 Boundry Box +#Line2 + + +1 + +-0.529379601620796,60.8547352416784 +-0.525241926635773,60.9444742963991 +-0.340771770634418,60.9423285449646 +-0.345426552197556,60.8525973451069 +-0.529379601620796,60.8547352416784 + + + + + +HP82 +#labelStyle + +-0.435195530888235,60.8985699171711 + + + + +HP83 + +Small Square HP83 Boundry Box +#Line2 + + +1 + +-0.525241511481721,60.9444832711333 +-0.521076853056445,61.0342209517938 +-0.336086171007683,61.0320673004119 +-0.340771303596656,60.942337518911 +-0.525241511481721,60.9444832711333 + + + + + +HP83 +#labelStyle + +-0.430784500519564,60.9883134359134 + + + + +HP84 + +Small Square HP84 Boundry Box +#Line2 + + +1 + +-0.521076435191349,61.0342299263907 +-0.51688454369395,61.1239662337919 +-0.33136993658088,61.1218046377459 +-0.336085700920535,61.0320762742165 +-0.521076435191349,61.0342299263907 + + + + + +HP84 +#labelStyle + +-0.426344667265959,61.0780555592559 + + + + +HP85 + +Small Square HP85 Boundry Box +#Line2 + + +1 + +-0.516884123092687,61.1239752082515 +-0.512664745778382,61.2137101431871 +-0.326622783101221,61.2115405573396 +-0.331369463416097,61.1218136114088 +-0.516884123092687,61.1239752082515 + + + + + +HP85 +#labelStyle + +-0.421875764267491,61.1677962877928 + + + + +HP86 + +Small Square HP86 Boundry Box +#Line2 + + +1 + +-0.51266432241552,61.2137191175094 +-0.508417203378058,61.3034526807651 +-0.321844422761304,61.3012750595526 +-0.3266223068302,61.2115495308606 +-0.51266432241552,61.2137191175094 + + + + + +HP86 +#labelStyle + +-0.4173775213318,61.2575356221084 + + + + +HP87 + +Small Square HP87 Boundry Box +#Line2 + + +1 + +-0.508416777227842,61.3034616549503 +-0.504141657350034,61.393193847304 +-0.317034564143508,61.3910081447315 +-0.321843943355085,61.301284032932 +-0.508416777227842,61.3034616549503 + + + + + +HP87 +#labelStyle + +-0.412849664882026,61.3472735627765 + + + + +HP88 + +Small Square HP88 Boundry Box +#Line2 + + +1 + +-0.504141228386389,61.3932028213521 +-0.499837845289705,61.4829336435729 +-0.312192912163345,61.4807398132088 +-0.317034081572768,61.3910171179692 +-0.504141228386389,61.3932028213521 + + + + + +HP88 +#labelStyle + +-0.408291917903786,61.43701011036 + + + + +HP89 + +Small Square HP89 Boundry Box +#Line2 + + +1 + +-0.499837413486225,61.482942617484 +-0.495505501479442,61.5726720703326 +-0.307319168011739,61.570470065303 +-0.312192426398389,61.4807487863048 +-0.499837413486225,61.482942617484 + + + + + +HP89 +#labelStyle + +-0.403703999891135,61.5267452654106 + + + + +HP90 + +Small Square HP90 Boundry Box +#Line2 + + +1 + +-0.354628800481456,60.6731125008913 +-0.350033840735193,60.7628465526117 +-0.166624467427508,60.7604658186287 +-0.171729619888492,60.6707404472768 +-0.354628800481456,60.6731125008913 + + + + + +HP90 +#labelStyle + +-0.260744780029827,60.7168271516948 + + + + +HP91 + +Small Square HP91 Boundry Box +#Line2 + + +1 + +-0.350033379707718,60.7628555268419 +-0.345408620522766,60.8525881446266 +-0.161485700200285,60.8501986808289 +-0.166623955210993,60.7604747919883 +-0.350033379707718,60.7628555268419 + + + + + +HP91 +#labelStyle + +-0.25587848503082,60.8065652143832 + + + + +HP92 + +Small Square HP92 Boundry Box +#Line2 + + +1 + +-0.345408156501334,60.8525971187149 +-0.34075332323572,60.9423283177408 +-0.156313522086452,60.9399300750932 +-0.161485184657952,60.8502076540417 +-0.345408156501334,60.8525971187149 + + + + + +HP92 +#labelStyle + +-0.250980590386215,60.8963018342006 + + + + +HP93 + +Small Square HP93 Boundry Box +#Line2 + + +1 + +-0.34075285619277,60.9423372916871 +-0.336067671564695,61.0320670723516 +-0.151107625114084,61.0296600013605 +-0.156313003187693,60.9399390481592 +-0.34075285619277,60.9423372916871 + + + + + +HP93 +#labelStyle + +-0.246050805243978,60.9860370113287 + + + + +HP94 + +Small Square HP94 Boundry Box +#Line2 + + +1 + +-0.336067201472325,61.0320760461561 +-0.331351384753835,61.1218044088444 +-0.145867697484828,61.1193884595521 +-0.151107102827912,61.0296689742797 +-0.336067201472325,61.0320760461561 + + + + + +HP94 +#labelStyle + +-0.24108883514333,61.0757707459342 + + + + +HP95 + +Small Square HP95 Boundry Box +#Line2 + + +1 + +-0.331350911583796,61.1218133825071 +-0.326604178547206,61.211540327592 +-0.14059342351444,61.2091154495705 +-0.14586717177987,61.1193974323245 +-0.331350911583796,61.1218133825071 + + + + + +HP95 +#labelStyle + +-0.236094381958744,61.1655030381688 + + + + +HP96 + +Small Square HP96 Boundry Box +#Line2 + + +1 + +-0.326603702270895,61.211549301113 +-0.321825765134221,61.3012748289542 +-0.135284483572215,61.2988409713 +-0.140592894358931,61.2091244221961 +-0.326603702270895,61.211549301113 + + + + + +HP96 +#labelStyle + +-0.231067143842897,61.2552338881685 + + + + +HP97 + +Small Square HP97 Boundry Box +#Line2 + + +1 + +-0.321825285722677,61.3012838023335 +-0.317015853094034,61.3910079132774 +-0.129940554019273,61.3885650246049 +-0.135283950933992,61.2988499437787 +-0.321825285722677,61.3012838023335 + + + + + +HP97 +#labelStyle + +-0.226006815168552,61.3449632960532 + + + + +HP98 + +Small Square HP98 Boundry Box +#Line2 + + +1 + +-0.317015370517933,61.3910168865149 +-0.31217414733889,61.4807395808941 +-0.124561307145693,61.4782876093302 +-0.129940017865771,61.3885739969368 +-0.317015370517933,61.3910168865149 + + + + + +HP98 +#labelStyle + +-0.220913086469352,61.4346912619265 + + + + +HP99 + +Small Square HP99 Boundry Box +#Line2 + + +1 + +-0.312173661568539,61.48074855399 +-0.307300349056408,61.5704698321226 +-0.119146411106452,61.5680087253002 +-0.124560767443934,61.4782965815153 +-0.312173661568539,61.48074855399 + + + + + +HP99 +#labelStyle + +-0.215785644379493,61.5244177858747 + + + + + +HT + +Large Square HT Boundry Box +#Line1 + + +1 + +-3.78251564578909,59.7732660085529 +-3.83192760812244,60.670679733531 +-2.0018396876737,60.6832078048619 +-2.00178312785645,59.7853489661757 +-3.78251564578909,59.7732660085529 + + + + + +HT00 + +Small Square HT00 Boundry Box +#Line2 + + +1 + +-3.78251564578909,59.7732660085529 +-3.78731662262262,59.8630059008717 +-3.60886642948583,59.8653069289662 +-3.60454419552495,59.7755587992902 +-3.78251564578909,59.7732660085529 + + + + + +HT00 +#labelStyle + +-3.69580203960891,59.8193193482465 + + + + +HT01 + +Small Square HT01 Boundry Box +#Line2 + + +1 + +-3.78731710428026,59.8630148756851 +-3.79214840647311,59.9527533017812 +-3.61321640276156,59.9550626125031 +-3.60886686311384,59.8653159046056 +-3.78731710428026,59.8630148756851 + + + + + +HT01 +#labelStyle + +-3.70037848783207,59.9090717210662 + + + + +HT02 + +Small Square HT02 Boundry Box +#Line2 + + +1 + +-3.79214889117704,59.9527622764479 +-3.7970107888266,60.0424992364605 +-3.61759392772498,60.044816874661 +-3.61321683913253,59.9550715880003 +-3.79214889117704,59.9527622764479 + + + + + +HT02 +#labelStyle + +-3.70498388267289,59.9988226504985 + + + + +HT03 + +Small Square HT03 Boundry Box +#Line2 + + +1 + +-3.797011276604,60.0425082109806 +-3.80190404305408,60.1322437050354 +-3.62199925058314,60.1345697159728 +-3.61759436686339,60.0448258500161 +-3.797011276604,60.0425082109806 + + + + + +HT03 +#labelStyle + +-3.70961848237642,60.0885721368837 + + + + +HT04 + +Small Square HT04 Boundry Box +#Line2 + + +1 + +-3.80190453393245,60.132252679409 +-3.80682844582211,60.2219867076177 +-3.62643262051199,60.2243211369629 +-3.62199969251374,60.1345786911859 +-3.80190453393245,60.132252679409 + + + + + +HT04 +#labelStyle + +-3.71428254829674,60.1783201805508 + + + + +HT05 + +Small Square HT05 Boundry Box +#Line2 + + +1 + +-3.80682893982928,60.2219956818447 +-3.81178427714245,60.3117282443051 +-3.63089428970116,60.3140711381458 +-3.62643306525985,60.224330112034 +-3.80682893982928,60.2219956818447 + + + + + +HT05 +#labelStyle + +-3.71897634494377,60.2680667818175 + + + + +HT06 + +Small Square HT06 Boundry Box +#Line2 + + +1 + +-3.81178477430658,60.3117372183854 +-3.81677182042264,60.4014683151802 +-3.63538451339958,60.4038197200265 +-3.63089473729167,60.3140801130749 +-3.81178477430658,60.3117372183854 + + + + + +HT06 +#labelStyle + +-3.72370014003088,60.3578119409892 + + + + +HT07 + +Small Square HT07 Boundry Box +#Line2 + + +1 + +-3.81677232077226,60.401477289114 +-3.82179136251752,60.4912069203108 +-3.6399035499618,60.4935668831002 +-3.63538496385841,60.4038286948138 +-3.81677232077226,60.401477289114 + + + + + +HT07 +#labelStyle + +-3.72845420452345,60.4475556583593 + + + + +HT08 + +Small Square HT08 Boundry Box +#Line2 + + +1 + +-3.82179186608148,60.491215894098 +-3.82684319378158,60.5809440597491 +-3.64445166089528,60.5833126278514 +-3.63990400331493,60.4935758577456 +-3.82179186608148,60.491215894098 + + + + + +HT08 +#labelStyle + +-3.73323881268822,60.5372979342081 + + + + +HT09 + +Small Square HT09 Boundry Box +#Line2 + + +1 + +-3.8268437005891,60.5809530333897 +-3.83192760812244,60.670679733531 +-3.64902911090851,60.673056954754 +-3.64445211716903,60.583321602355 +-3.8268437005891,60.5809530333897 + + + + + +HT09 +#labelStyle + +-3.73805424214358,60.6270387688032 + + + + +HT10 + +Small Square HT10 Boundry Box +#Line2 + + +1 + +-3.60452639519693,59.7755590165484 +-3.60884858126627,59.865307147005 +-3.43037108679016,59.8673664344087 +-3.42652788391769,59.7776109309696 +-3.60452639519693,59.7755590165484 + + + + + +HT10 +#labelStyle + +-3.5175597777348,59.8214958133407 + + + + +HT11 + +Small Square HT11 Boundry Box +#Line2 + + +1 + +-3.60884901488948,59.8653161226445 +-3.61319850634351,59.9550628313268 +-3.43423895806338,59.9571295322435 +-3.43037147235956,59.8673754107875 +-3.60884901488948,59.8653161226445 + + + + + +HT11 +#labelStyle + +-3.52165575611438,59.9112560139417 + + + + +HT12 + +Small Square HT12 Boundry Box +#Line2 + + +1 + +-3.61319894270965,59.9550718068241 +-3.61757598280359,60.0448170942738 +-3.43813133097979,60.0468912488592 +-3.43423934607209,59.9571385084842 +-3.61319894270965,59.9550718068241 + + + + + +HT12 +#labelStyle + +-3.52577764595968,60.0010148134723 + + + + +HT13 + +Small Square HT13 Boundry Box +#Line2 + + +1 + +-3.61757642193712,60.044826069629 +-3.62198125685081,60.1345699363791 +-3.44204842453578,60.1366515851539 +-3.43813172144956,60.0469002249619 +-3.61757642193712,60.044826069629 + + + + + +HT13 +#labelStyle + +-3.52992567848816,60.0907722126567 + + + + +HT14 + +Small Square HT14 Boundry Box +#Line2 + + +1 + +-3.62198169877652,60.1345789115923 +-3.62641457765839,60.2243213581669 +-3.44599046036922,60.2264105420206 +-3.44204881748866,60.1366605611185 +-3.62198169877652,60.1345789115923 + + + + + +HT14 +#labelStyle + +-3.53410008770168,60.1805282122123 + + + + +HT15 + +Small Square HT15 Boundry Box +#Line2 + + +1 + +-3.62641502240133,60.2243303332381 +-3.63087619741319,60.314071360152 +-3.4499576627993,60.3161681203479 +-3.4459908558275,60.2264195178473 +-3.62641502240133,60.2243303332381 + + + + + +HT15 +#labelStyle + +-3.53830111042843,60.2702828128498 + + + + +HT16 + +Small Square HT16 Boundry Box +#Line2 + + +1 + +-3.63087664499873,60.3140803350812 +-3.63536637136128,60.4038199428393 +-3.45395025886705,60.4059243210189 +-3.44995806078554,60.3161770960368 +-3.63087664499873,60.3140803350812 + + + + + +HT16 +#labelStyle + +-3.54252898636556,60.3600360152724 + + + + +HT17 + +Small Square HT17 Boundry Box +#Line2 + + +1 + +-3.63536682181511,60.4038289176266 +-3.63988535785438,60.493567106724 +-3.4579684783767,60.4956791449115 +-3.45395065940411,60.4059332965702 +-3.63536682181511,60.4038289176266 + + + + + +HT17 +#labelStyle + +-3.54678395812273,60.4497878201763 + + + + +HT18 + +Small Square HT18 Boundry Box +#Line2 + + +1 + +-3.63988581120249,60.4935760813694 +-3.64443341839707,60.5833128522906 +-3.46201255393766,60.5854325928975 +-3.45796888148768,60.4956881203251 +-3.63988581120249,60.4935760813694 + + + + + +HT18 +#labelStyle + +-3.55106627126627,60.5395382282493 + + + + +HT19 + +Small Square HT19 Boundry Box +#Line2 + + +1 + +-3.64443387466577,60.5833218267943 +-3.64901081769491,60.6730571800132 +-3.4660827210074,60.6751846658431 +-3.46201295964597,60.5854415681736 +-3.64443387466577,60.5833218267943 + + + + + +HT19 +#labelStyle + +-3.55537617436429,60.6292872401714 + + + + +HT20 + +Small Square HT20 Boundry Box +#Line2 + + +1 + +-3.42651008103308,59.7776111241342 +-3.43035323599131,59.8673666282674 +-3.25185146298275,59.869184105168 +-3.24848750498147,59.7794220929967 +-3.42651008103308,59.7776111241342 + + + + + +HT20 +#labelStyle + +-3.33929183701715,59.8234309105455 + + + + +HT21 + +Small Square HT21 Boundry Box +#Line2 + + +1 + +-3.4303536215559,59.8673756046463 +-3.43422105904306,59.9571297268001 +-3.2552370158858,59.9589537475233 +-3.25185180047204,59.8691930821996 +-3.4303536215559,59.8673756046463 + + + + + +HT21 +#labelStyle + +-3.34290711710553,59.9131980717634 + + + + +HT22 + +Small Square HT22 Boundry Box +#Line2 + + +1 + +-3.43422144704692,59.9571387030409 +-3.43811338343286,60.0468914441176 +-3.25864401778548,60.0487220441169 +-3.25523735551047,59.9589627244202 +-3.43422144704692,59.9571387030409 + + + + + +HT22 +#labelStyle + +-3.34654527076476,60.0029638695497 + + + + +HT23 + +Small Square HT23 Boundry Box +#Line2 + + +1 + +-3.43811377389777,60.0469004202203 +-3.44203042815438,60.1366517811178 +-3.26207266042842,60.1384889961689 +-3.2586443595646,60.0487310208793 +-3.43811377389777,60.0469004202203 + + + + + +HT23 +#labelStyle + +-3.35020650214356,60.09272830497 + + + + +HT24 + +Small Square HT24 Boundry Box +#Line2 + + +1 + +-3.44203082110236,60.1366607570825 +-3.44597241484273,60.2264107386939 +-3.26552313787458,60.2282546048987 +-3.26207300438128,60.1384979727969 +-3.44203082110236,60.1366607570825 + + + + + +HT24 +#labelStyle + +-3.35389101784964,60.1824913790873 + + + + +HT25 + +Small Square HT25 Boundry Box +#Line2 + + +1 + +-3.44597281029608,60.2264197145207 +-3.44993956781431,60.3161683177345 +-3.2689956465321,60.3180188715248 +-3.2655234840207,60.2282635813925 +-3.44597281029608,60.2264197145207 + + + + + +HT25 +#labelStyle + +-3.35759902698676,60.2722530929621 + + + + +HT26 + +Small Square HT26 Boundry Box +#Line2 + + +1 + +-3.44993996579559,60.3161772934235 +-3.45393211410733,60.4059245191227 +-3.2724903851929,60.4077817972642 +-3.26899599489125,60.3180278478843 +-3.44993996579559,60.3161772934235 + + + + + +HT26 +#labelStyle + +-3.36133074119246,60.3620134476518 + + + + +HT27 + +Small Square HT27 Boundry Box +#Line2 + + +1 + +-3.4539325146394,60.405933494674 +-3.45795028352316,60.4956793437364 +-3.27600755506878,60.4975433833328 +-3.27249073578506,60.4077907734897 +-3.4539325146394,60.405933494674 + + + + + +HT27 +#labelStyle + +-3.36508637467637,60.4517724442103 + + + + +HT28 + +Small Square HT28 Boundry Box +#Line2 + + +1 + +-3.45795068662912,60.49568831915 +-3.46199430866833,60.5854327924476 +-3.27954735982832,60.5873036309448 +-3.27600790791421,60.4975523594245 +-3.45795068662912,60.49568831915 + + + + + +HT28 +#labelStyle + +-3.36886614425941,60.5415300836884 + + + + +HT29 + +Small Square HT29 Boundry Box +#Line2 + + +1 + +-3.46199471437158,60.5854417677237 +-3.46606442499736,60.6751848661224 +-3.28311000563435,60.6770625413125 +-3.2795477149475,60.5873126069027 +-3.46199471437158,60.5854417677237 + + + + + +HT29 +#labelStyle + +-3.37267026941349,60.631286367133 + + + + +HT30 + +Small Square HT30 Boundry Box +#Line2 + + +1 + +-3.24846969984005,59.7794222620612 +-3.25183360990705,59.86918427484 +-3.0733105837355,59.8707598796081 +-3.07042605778367,59.7809922242384 +-3.24846969984005,59.7794222620612 + + + + + +HT30 +#labelStyle + +-3.1610012285552,59.8251245744019 + + + + +HT31 + +Small Square HT31 Boundry Box +#Line2 + + +1 + +-3.25183394739152,59.8691932518717 +-3.25521911456834,59.9589539178062 +-3.07621362882641,59.9605351961974 +-3.07331087312583,59.8707688572056 +-3.25183394739152,59.8691932518717 + + + + + +HT31 +#labelStyle + +-3.16413560865217,59.9148978285327 + + + + +HT32 + +Small Square HT32 Boundry Box +#Line2 + + +1 + +-3.25521945418817,59.9589628947032 +-3.25862606792087,60.0487222150141 +-3.07913506798863,60.0503091977739 +-3.07621392004799,59.9605441736633 +-3.25521945418817,59.9589628947032 + + + + + +HT32 +#labelStyle + +-3.16728982200278,60.0046697521862 + + + + +HT33 + +Small Square HT33 Boundry Box +#Line2 + + +1 + +-3.25862640969512,60.0487311917765 +-3.26205466170856,60.1384891676837 +-3.08207506568477,60.1400818858373 +-3.07913536105781,60.0503181751083 +-3.25862640969512,60.0487311917765 + + + + + +HT33 +#labelStyle + +-3.17046404565062,60.094440346727 + + + + +HT34 + +Small Square HT34 Boundry Box +#Line2 + + +1 + +-3.26205500565652,60.1384981443118 +-3.26550508998859,60.2282547770345 +-3.08503378836197,60.2298532618897 +-3.08207536061809,60.1400908630404 +-3.26205500565652,60.1384981443118 + + + + + +HT34 +#labelStyle + +-3.17365845877223,60.184209613521 + + + + +HT35 + +Small Square HT35 Boundry Box +#Line2 + + +1 + +-3.26550543612978,60.2282637535283 +-3.26897754916633,60.3180190442849 +-3.08801140448183,60.3196233274359 +-3.08503408517618,60.2298622389618 +-3.26550543612978,60.2282637535283 + + + + + +HT35 +#labelStyle + +-3.17687324270927,60.2739775539347 + + + + +HT36 + +Small Square HT36 Boundry Box +#Line2 + + +1 + +-3.26897789752051,60.3180280206445 +-3.27247223803085,60.4077819706521 +-3.09100808455094,60.4093920839827 +-3.08801170319388,60.3196323043769 +-3.26897789752051,60.3180280206445 + + + + + +HT36 +#labelStyle + +-3.1801085810012,60.3637441693356 + + + + +HT37 + +Small Square HT37 Boundry Box +#Line2 + + +1 + +-3.27247258861802,60.4077909468777 +-3.2759893577911,60.497543557352 +-3.09402400115188,60.4991595330392 +-3.09100838517797,60.4094010607929 +-3.27247258861802,60.4077909468777 + + + + + +HT37 +#labelStyle + +-3.18336465941863,60.4535094610915 + + + + +HT38 + +Small Square HT38 Boundry Box +#Line2 + + +1 + +-3.2759897106315,60.4975525334437 +-3.27952911211276,60.5873038055988 +-3.09705932897485,60.5889256761162 +-3.09402430371127,60.4991685097187 +-3.2759897106315,60.4975525334437 + + + + + +HT38 +#labelStyle + +-3.1866416659972,60.5432734305705 + + + + +HT39 + +Small Square HT39 Boundry Box +#Line2 + + +1 + +-3.27952946722689,60.5873127815567 +-3.28309170715574,60.6770627166047 +-3.10011424484988,60.6786905147266 +-3.09705963348417,60.5889346526653 +-3.27952946722689,60.5873127815567 + + + + + +HT39 +#labelStyle + +-3.18993979107213,60.633036079141 + + + + +HT40 + +Small Square HT40 Boundry Box +#Line2 + + +1 + +-3.07040825068547,59.7809923691969 +-3.07329272868563,59.8707600250877 +-2.89475147696469,59.8720937042838 +-2.892346543603,59.7823212716858 +-3.07040825068547,59.7809923691969 + + + + + +HT40 +#labelStyle + +-2.98269096583406,59.8265767476046 + + + + +HT41 + +Small Square HT41 Boundry Box +#Line2 + + +1 + +-3.07329301807115,59.8707690026852 +-3.07619572551718,59.9605353422009 +-2.89717185176084,59.9618738243793 +-2.89475171823992,59.8721026823603 +-3.07329301807115,59.8707690026852 + + + + + +HT41 +#labelStyle + +-2.98534427102257,59.9163552264719 + + + + +HT42 + +Small Square HT42 Boundry Box +#Line2 + + +1 + +-3.07619601673392,59.9605443196668 +-3.07911711611445,60.0503093443041 +-2.89960756374814,60.0516526554974 +-2.89717209456298,59.9618828023268 +-3.07619601673392,59.9605443196668 + + + + + +HT42 +#labelStyle + +-2.98801436704637,60.0061324031262 + + + + +HT43 + +Small Square HT43 Boundry Box +#Line2 + + +1 + +-3.07911740917875,60.0503183216386 +-3.08205706493731,60.140082032897 +-2.90205875007575,60.1414301993745 +-2.89960780809083,60.0516616333162 +-3.07911740917875,60.0503183216386 + + + + + +HT43 +#labelStyle + +-2.99070140381236,60.0959082791889 + + + + +HT44 + +Small Square HT44 Boundry Box +#Line2 + + +1 + +-3.08205735986573,60.1400910101003 +-3.08501573843014,60.229853409482 +-2.90452554954805,60.2312064577522 +-2.90205899597279,60.1414391770646 +-3.08205735986573,60.1400910101003 + + + + + +HT44 +#labelStyle + +-2.99340553303379,60.1856828562853 + + + + +HT45 + +Small Square HT45 Boundry Box +#Line2 + + +1 + +-3.08501603523942,60.2298623865541 +-3.08799330505176,60.3196234755636 +-2.90700810264963,60.3209814323776 +-2.90452579701341,60.2312154353138 +-3.08501603523942,60.2298623865541 + + + + + +HT45 +#labelStyle + +-2.99612690825749,60.2754561360449 + + + + +HT46 + +Small Square HT46 Boundry Box +#Line2 + + +1 + +-3.08799360375884,60.3196324525047 +-3.0909899353059,60.4093922326487 +-2.90950655157071,60.4107551250031 +-2.90700835169743,60.3209904098109 +-3.08799360375884,60.3196324525047 + + + + + +HT46 +#labelStyle + +-2.99886568489159,60.3652281201009 + + + + +HT47 + +Small Square HT47 Boundry Box +#Line2 + + +1 + +-3.09099023592794,60.409401209459 +-3.09400580177229,60.4991596822465 +-2.91202104023304,60.500527537386 +-2.90950680221526,60.4107641023083 +-3.09099023592794,60.409401209459 + + + + + +HT47 +#labelStyle + +-3.00162202023371,60.4549988100903 + + + + +HT48 + +Small Square HT48 Boundry Box +#Line2 + + +1 + +-3.09400610432665,60.4991686589261 +-3.09704107913824,60.5889258258679 +-2.91455171431627,60.5902986712885 +-2.91202129248882,60.5005365145633 +-3.09400610432665,60.4991686589261 + + + + + +HT48 +#labelStyle + +-3.0043960734997,60.5447682076538 + + + + +HT49 + +Small Square HT49 Boundry Box +#Line2 + + +1 + +-3.0970413836425,60.588934802417 +-3.10009594423083,60.6786906650256 +-2.91709872128481,60.6800685284778 +-2.91455196819793,60.590307648338 +-3.0970413836425,60.588934802417 + + + + + +HT49 +#labelStyle + +-3.00718800585292,60.6345363144354 + + + + +HT50 + +Small Square HT50 Boundry Box +#Line2 + + +1 + +-2.89232873484825,59.7823213925336 +-2.89473362024354,59.872093825566 +-2.71617717251196,59.8731855339481 +-2.71425196561514,59.7834091904614 +-2.89232873484825,59.7823213925336 + + + + + +HT50 +#labelStyle + +-2.80436406440833,59.8277873810094 + + + + +HT51 + +Small Square HT51 Boundry Box +#Line2 + + +1 + +-2.89473386151396,59.8721028036426 +-2.89715394676544,59.9618739460983 +-2.71811474151897,59.9629695864484 +-2.71617736565861,59.8731945124168 +-2.89473386151396,59.8721028036426 + + + + + +HT51 +#labelStyle + +-2.80653614658547,59.9175702160316 + + + + +HT52 + +Small Square HT52 Boundry Box +#Line2 + + +1 + +-2.89715418956274,59.9618829240459 +-2.89958961017271,60.0516527776556 +-2.72006458920653,60.0527523712887 +-2.71811493588804,59.9629785647902 +-2.89715418956274,59.9618829240459 + + + + + +HT52 +#labelStyle + +-2.80872197540018,60.0073517724107 + + + + +HT53 + +Small Square HT53 Boundry Box +#Line2 + + +1 + +-2.89958985451053,60.0516617554744 +-2.90204074761178,60.1414303219742 +-2.72202682538583,60.1425338903993 +-2.72006478480894,60.0527613495039 +-2.89958985451053,60.0516617554744 + + + + + +HT53 +#labelStyle + +-2.81092167359593,60.0971320519819 + + + + +HT54 + +Small Square HT54 Boundry Box +#Line2 + + +1 + +-2.90204099350391,60.1414392996643 +-2.90450749788427,60.2312065807959 +-2.72400156119352,60.232314145718 +-2.72202702223262,60.142542868488 +-2.90204099350391,60.1414392996643 + + + + + +HT54 +#labelStyle + +-2.81313536539549,60.1869110565871 + + + + +HT55 + +Small Square HT55 Boundry Box +#Line2 + + +1 + +-2.90450774534469,60.2312155583575 +-2.90699000147197,60.3209815558677 +-2.72598890911173,60.3220931391904 +-2.72400175929588,60.2323231236804 +-2.90450774534469,60.2312155583575 + + + + + +HT55 +#labelStyle + +-2.81536317652315,60.2766887880749 + + + + +HT56 + +Small Square HT56 Boundry Box +#Line2 + + +1 + +-2.9069902505148,60.3209905333011 +-2.90948840056226,60.410755248942 +-2.72798898298843,60.4118708727699 +-2.72598910848098,60.3221021170267 +-2.9069902505148,60.3209905333011 + + + + + +HT56 +#labelStyle + +-2.81760523422747,60.3664652483006 + + + + +HT57 + +Small Square HT57 Boundry Box +#Line2 + + +1 + +-2.90948865120181,60.4107642262473 +-2.91200283907403,60.5005276617762 +-2.73000189805817,60.501647348417 +-2.72798918363601,60.4118798504803 +-2.90948865120181,60.4107642262473 + + + + + +HT57 +#labelStyle + +-2.81986166730437,60.4562404391254 + + + + +HT58 + +Small Square HT58 Boundry Box +#Line2 + + +1 + +-2.91200309132477,60.5005366389535 +-2.91453346268402,60.5902987961326 +-2.7320277709632,60.5914225680999 +-2.73000209999568,60.5016563260017 +-2.91200309132477,60.5005366389535 + + + + + +HT58 +#labelStyle + +-2.82213260612069,60.5460143624173 + + + + +HT59 + +Small Square HT59 Boundry Box +#Line2 + + +1 + +-2.91453371656062,60.5903077731821 +-2.91708041885371,60.6800686537782 +-2.73406671977498,60.6811965337941 +-2.73202797420237,60.5914315455591 +-2.91453371656062,60.5903077731821 + + + + + +HT59 +#labelStyle + +-2.82441818263811,60.6357870200503 + + + + +HT60 + +Small Square HT60 Boundry Box +#Line2 + + +1 + +-2.71423415550424,59.7834092871943 +-2.7161593144226,59.8731856310288 +-2.53759070182471,59.8740353315578 +-2.53614532857789,59.7842559438244 +-2.71423415550424,59.7834092871943 + + + + + +HT60 +#labelStyle + +-2.62602354158515,59.8287564336399 + + + + +HT61 + +Small Square HT61 Boundry Box +#Line2 + + +1 + +-2.71615950756445,59.8731946094976 +-2.71809683514316,59.9629696838788 +-2.53904535656052,59.9638224450553 +-2.53759084683201,59.8740443103318 +-2.71615950756445,59.8731946094976 + + + + + +HT61 +#labelStyle + +-2.62771427948838,59.9185427558976 + + + + +HT62 + +Small Square HT62 Boundry Box +#Line2 + + +1 + +-2.71809702950739,59.9629786622206 +-2.72004663423834,60.0527524690707 +-2.54050923016071,60.0536083074889 +-2.53904550248562,59.9638314237041 +-2.71809702950739,59.9629786622206 + + + + + +HT62 +#labelStyle + +-2.62941571837434,60.0083278183833 + + + + +HT63 + +Small Square HT63 Boundry Box +#Line2 + + +1 + +-2.72004682983588,60.0527614472859 +-2.72200882151661,60.1425339885347 +-2.54198240507884,60.1433929209396 +-2.5405093770118,60.0536172860126 +-2.72004682983588,60.0527614472859 + + + + + +HT63 +#labelStyle + +-2.6311279538012,60.0981116231038 + + + + +HT64 + +Small Square HT64 Boundry Box +#Line2 + + +1 + +-2.7220090183585,60.1425429666234 +-2.72398350811185,60.2323142442088 +-2.54346496476385,60.2331762874983 +-2.54198255286422,60.1434018993386 +-2.7220090183585,60.1425429666234 + + + + + +HT64 +#labelStyle + +-2.63285108247891,60.1878941720743 + + + + +HT65 + +Small Square HT65 Boundry Box +#Line2 + + +1 + +-2.72398370620927,60.2323232221712 +-2.72597080650338,60.3220932380386 +-2.54495699367502,60.322958409265 +-2.54346511349191,60.2331852657727 +-2.72398370620927,60.2323232221712 + + + + + +HT65 +#labelStyle + +-2.63458520228655,60.2776754673191 + + + + +HT66 + +Small Square HT66 Boundry Box +#Line2 + + +1 + +-2.72597100586765,60.3221022158749 +-2.72797083053633,60.4118709719774 +-2.54645857729735,60.4127392883494 +-2.54495714335427,60.322967387415 +-2.72597100586765,60.3221022158749 + + + + + +HT66 +#labelStyle + +-2.63633041229001,60.3674555108708 + + + + +HT67 + +Small Square HT67 Boundry Box +#Line2 + + +1 + +-2.72797103117891,60.4118799496878 +-2.7299836954424,60.5016474479858 +-2.54796980215706,60.5025189268706 +-2.54645872793637,60.4127482663752 +-2.72797103117891,60.4118799496878 + + + + + +HT67 +#labelStyle + +-2.63808681276,60.4572343047706 + + + + +HT68 + +Small Square HT68 Boundry Box +#Line2 + + +1 + +-2.72998389737487,60.5016564255706 +-2.73200951786091,60.591422668032 +-2.54949075583749,60.5922973269569 +-2.54796995376456,60.5025279047725 +-2.72998389737487,60.5016564255706 + + + + + +HT68 +#labelStyle + +-2.63985450519034,60.5470118510685 + + + + +HT69 + +Small Square HT69 Boundry Box +#Line2 + + +1 + +-2.73200972109502,60.5914316454913 +-2.73404841586041,60.6811966340915 +-2.55102152699527,60.6820744907461 +-2.54949090842229,60.592306304735 +-2.73200972109502,60.5914316454913 + + + + + +HT69 +#labelStyle + +-2.64163359231665,60.6367881518224 + + + + +HT70 + +Small Square HT70 Boundry Box +#Line2 + + +1 + +-2.53612751741138,59.7842560164392 +-2.53757284267036,59.8740354044338 +-2.35899509763614,59.8746430682783 +-2.3580296385159,59.7848615031758 +-2.53612751741138,59.7842560164392 + + + + + +HT70 +#labelStyle + +-2.44767241610674,59.8294838726924 + + + + +HT71 + +Small Square HT71 Boundry Box +#Line2 + + +1 + +-2.53757298767285,59.8740443832077 +-2.53902744911022,59.9638225181938 +-2.35996675665031,59.9644323711272 +-2.35899519449599,59.8746520472706 +-2.53757298767285,59.8740443832077 + + + + + +HT71 +#labelStyle + +-2.44888171533544,59.9192728129953 + + + + +HT72 + +Small Square HT72 Boundry Box +#Line2 + + +1 + +-2.53902759503048,59.9638314968425 +-2.54049127410843,60.0536083808913 +-2.36094457373232,60.054220434784 +-2.35996685412324,59.9644413499955 +-2.53902759503048,59.9638314968425 + + + + + +HT72 +#labelStyle + +-2.45009866875752,60.009060507696 + + + + +HT73 + +Small Square HT73 Boundry Box +#Line2 + + +1 + +-2.54049142095464,60.053617359415 +-2.5419644001158,60.1433929946074 +-2.36192860396336,60.1440072614379 +-2.3609446718238,60.0542294135285 +-2.54049142095464,60.053617359415 + + + + + +HT73 +#labelStyle + +-2.45132334472881,60.0988469589297 + + + + +HT74 + +Small Square HT74 Boundry Box +#Line2 + + +1 + +-2.54196454789627,60.1434019730064 +-2.5434469105785,60.2331763614329 +-2.3629189030896,60.2337928532888 +-2.36192870267893,60.1440162400588 +-2.54196454789627,60.1434019730064 + + + + + +HT74 +#labelStyle + +-2.4525558124291,60.188632168842 + + + + +HT75 + +Small Square HT75 Boundry Box +#Line2 + + +1 + +-2.54344705930163,60.2331853397073 +-2.54493888995303,60.3229584834679 +-2.36391552753223,60.3235772125474 +-2.36291900243487,60.2338018317863 +-2.54344705930163,60.2331853397073 + + + + + +HT75 +#labelStyle + +-2.45379614187458,60.2784161395889 + + + + +HT76 + +Small Square HT76 Boundry Box +#Line2 + + +1 + +-2.54493903962731,60.3229674616179 +-2.54644042372153,60.412739362822 +-2.36491853439765,60.4133603414353 +-2.36391562751287,60.3235861909217 +-2.54493903962731,60.3229674616179 + + + + + +HT76 +#labelStyle + +-2.45504440393049,60.3681988733364 + + + + +HT77 + +Small Square HT77 Boundry Box +#Line2 + + +1 + +-2.54644057435555,60.4127483408479 +-2.54795159840735,60.5025190016144 +-2.36592798148791,60.5031422421849 +-2.36491863501941,60.4133693196867 +-2.54644057435555,60.4127483408479 + + + + + +HT77 +#labelStyle + +-2.45630067032398,60.4579803722609 + + + + +HT78 + +Small Square HT78 Boundry Box +#Line2 + + +1 + +-2.54795175000983,60.5025279795164 +-2.54947250159094,60.5922974019735 +-2.36694392731132,60.5929229170393 +-2.36592808275661,60.5031512203137 +-2.54795175000983,60.5025279795164 + + + + + +HT78 +#labelStyle + +-2.45756501365722,60.5477606385486 + + + + +HT79 + +Small Square HT79 Boundry Box +#Line2 + + +1 + +-2.54947265417068,60.5923063797517 +-2.55100322192597,60.682074566037 +-2.3679664310932,60.6827023682521 +-2.36694402923284,60.5929318950455 +-2.54947265417068,60.5923063797517 + + + + + +HT79 +#labelStyle + +-2.45883750742078,60.6375396743962 + + + + +HT80 + +Small Square HT80 Boundry Box +#Line2 + + +1 + +-2.35801182659444,59.7848615516701 +-2.35897723772014,59.874643116947 +-2.18039339364491,59.8750087234871 +-2.17990790240501,59.7852258480616 +-2.35801182659444,59.7848615516701 + + + + + +HT80 +#labelStyle + +-2.26931370783262,59.82996967354 + + + + +HT81 + +Small Square HT81 Boundry Box +#Line2 + + +1 + +-2.35897733457517,59.8746520959393 +-2.35994884843156,59.9644324199712 +-2.18088200253311,59.9647993438713 +-2.1803934423519,59.8750177026109 +-2.35897733457517,59.8746520959393 + + + + + +HT81 +#labelStyle + +-2.27004150086477,59.919760362495 + + + + +HT82 + +Small Square HT82 Boundry Box +#Line2 + + +1 + +-2.35994894589964,59.9644413988395 +-2.36092661690471,60.0542204838043 +-2.1813737080377,60.054588732209 +-2.18088205154839,59.9648083228717 +-2.35994894589964,59.9644413988395 + + + + + +HT82 +#labelStyle + +-2.27077390048941,60.0095498153133 + + + + +HT83 + +Small Square HT83 Boundry Box +#Line2 + + +1 + +-2.36092671499131,60.0542294625488 +-2.36191059821803,60.1440073106355 +-2.18186853785766,60.1443768907545 +-2.18137375736402,60.0545977110863 +-2.36092671499131,60.0542294625488 + + + + + +HT83 +#labelStyle + +-2.27151094784781,60.0993380342162 + + + + +HT84 + +Small Square HT84 Boundry Box +#Line2 + + +1 + +-2.36191069692869,60.1440162892564 +-2.36290084811493,60.2337929026645 +-2.18236652002635,60.2341638217734 +-2.1818685874978,60.144385869509 +-2.36191069692869,60.1440162892564 + + + + + +HT84 +#labelStyle + +-2.27225268457719,60.1891250214365 + + + + +HT85 + +Small Square HT85 Boundry Box +#Line2 + + +1 + +-2.36290094745525,60.2338018811621 +-2.36389742301378,60.3235772621024 +-2.18286768291663,60.3239495275431 +-2.18236656998315,60.2341728004052 +-2.36290094745525,60.2338018811621 + + + + + +HT85 +#labelStyle + +-2.27299915281822,60.2789107792179 + + + + +HT86 + +Small Square HT86 Boundry Box +#Line2 + + +1 + +-2.36389752298945,60.3235862404767 +-2.36490038001815,60.4133603911705 +-2.18337205524593,60.4137340103526 +-2.18286773319292,60.3239585060525 +-2.36389752298945,60.3235862404767 + + + + + +HT86 +#labelStyle + +-2.27375039522258,60.3686953098158 + + + + +HT87 + +Small Square HT87 Boundry Box +#Line2 + + +1 + +-2.36490048063491,60.4133693694219 +-2.36590977692724,60.5031422921012 +-2.18387966608154,60.5035172725023 +-2.18337210584462,60.4137429887398 +-2.36490048063491,60.4133693694219 + + + + + +HT87 +#labelStyle + +-2.27450645496078,60.4584786154966 + + + + +HT88 + +Small Square HT88 Boundry Box +#Line2 + + +1 + +-2.3659098781909,60.50315127023 +-2.36692567224641,60.5929229671378 +-2.1843905448459,60.5932993163043 +-2.18387971700554,60.5035262507675 +-2.3659098781909,60.50315127023 + + + + + +HT88 +#labelStyle + +-2.27526737572998,60.5482606985379 + + + + +HT89 + +Small Square HT89 Boundry Box +#Line2 + + +1 + +-2.36692577416286,60.5929319451441 +-2.36794812519805,60.6827024185338 +-2.18490472132205,60.6830801440823 +-2.18439059609818,60.5933082944478 +-2.36692577416286,60.5929319451441 + + + + + +HT89 +#labelStyle + +-2.27603320176211,60.6380415612287 + + + + +HT90 + +Small Square HT90 Boundry Box +#Line2 + + +1 + +-2.17989009002933,59.7852258724337 +-2.18037553327065,59.8750087479469 +-2.00178862419453,59.8751322847769 +-2.00178312785645,59.7853489661757 +-2.17989009002933,59.7852258724337 + + + + + +HT90 +#labelStyle + +-2.09095043742151,59.8302138197361 + + + + +HT91 + +Small Square HT91 Boundry Box +#Line2 + + +1 + +-2.18037558197282,59.8750177270706 +-2.18086409385202,59.9647993684192 +-2.00179415560821,59.9649233507774 +-2.00178862474594,59.875141263945 +-2.18037558197282,59.8750177270706 + + + + + +HT91 +#labelStyle + +-2.09119668362571,59.920005387814 + + + + +HT92 + +Small Square HT92 Boundry Box +#Line2 + + +1 + +-2.18086414286245,59.9648083474196 +-2.18135575074361,60.0545887568456 +-2.00179972185759,60.05471318715 +-2.00179415616309,59.9649323298225 +-2.18086414286245,59.9648083474196 + + + + + +HT92 +#labelStyle + +-2.0914444883331,60.0097957245154 + + + + +HT93 + +Small Square HT93 Boundry Box +#Line2 + + +1 + +-2.18135580006505,60.0545977357229 +-2.18185053164166,60.1443769154801 +-2.00180532325444,60.1445017961706 +-2.00179972241596,60.0547221660722 +-2.18135580006505,60.0545977357229 + + + + + +HT93 +#labelStyle + +-2.09169386546305,60.0995848321049 + + + + +HT94 + +Small Square HT94 Boundry Box +#Line2 + + +1 + +-2.1818505812769,60.1443858942346 +-2.18234846457677,60.2341638465887 +-2.00181096011431,60.2342891801273 +-2.00180532381635,60.1445107749703 +-2.1818505812769,60.1443858942346 + + + + + +HT94 +#labelStyle + +-2.09194482910275,60.1893727128586 + + + + +HT95 + +Small Square HT95 Boundry Box +#Line2 + + +1 + +-2.18234851452863,60.2341728252205 +-2.18284957791899,60.3239495524485 +-2.00181663275657,60.3240753413199 +-2.00181096067978,60.2342981588045 +-2.18234851452863,60.2341728252205 + + + + + +HT95 +#labelStyle + +-2.09219739350971,60.279159369065 + + + + +HT96 + +Small Square HT96 Boundry Box +#Line2 + + +1 + +-2.18284962819031,60.3239585309579 +-2.1833539003829,60.4137340353485 +-2.00182234150445,60.4138602820601 +-2.00181663332564,60.3240843198749 +-2.18284962819031,60.3239585309579 + + + + + +HT96 +#labelStyle + +-2.09245157311433,60.368944803024 + + + + +HT97 + +Small Square HT97 Boundry Box +#Line2 + + +1 + +-2.18335395097659,60.4137430137357 +-2.18386146103293,60.5035172975893 +-2.00182808668514,60.5036440046716 +-2.00182234207715,60.4138692604932 +-2.18335395097659,60.4137430137357 + + + + + +HT97 +#labelStyle + +-2.09270738252258,60.4587290170473 + + + + +HT98 + +Small Square HT98 Boundry Box +#Line2 + + +1 + +-2.1838615119519,60.5035262758545 +-2.18437228928861,60.5932993414829 +-2.00183386862982,60.5934265114898 +-2.0018280872615,60.503652982983 +-2.1838615119519,60.5035262758545 + + + + + +HT98 +#labelStyle + +-2.09296483651859,60.5485120134587 + + + + +HT99 + +Small Square HT99 Boundry Box +#Line2 + + +1 + +-2.18437234053582,60.5933083196264 +-2.18488641493003,60.683080169353 +-2.0018396876737,60.6832078048619 +-2.00183386920986,60.5934354896798 +-2.18437234053582,60.5933083196264 + + + + + +HT99 +#labelStyle + +-2.09322395006743,60.6382937945934 + + + + + +HU + +Large Square HU Boundry Box +#Line1 + + +1 + +-2.00176531532733,59.7853489664247 +-2.00182138111382,60.6832078051208 +-0.171730128809865,60.6707314737626 +-0.221029764379467,59.7733157932386 +-2.00176531532733,59.7853489664247 + + + + + +HU00 + +Small Square HU00 Boundry Box +#Line2 + + +1 + +-2.00176531532733,59.7853489664247 +-2.00177076366547,59.8751322850269 +-1.82318382395261,59.8750137479565 +-1.82365832280074,59.7852308533614 +-2.00176531532733,59.7853489664247 + + + + + +HU00 +#labelStyle + +-1.91258562601298,59.830216303016 + + + + +HU01 + +Small Square HU01 Boundry Box +#Line2 + + +1 + +-2.00177076421206,59.8751412641951 +-2.00177624677093,59.9649233510284 +-1.82270627760388,59.9648043876201 +-1.82318377634841,59.8750227270821 +-2.00177076421206,59.8751412641951 + + + + + +HU01 +#labelStyle + +-1.91235031165566,59.9200078806197 + + + + +HU02 + +Small Square HU02 Boundry Box +#Line2 + + +1 + +-2.00177624732096,59.9649323300735 +-2.00178176440591,60.054713187402 +-1.82222570430662,60.0545937953463 +-1.82270622969833,59.9648133666224 +-2.00177624732096,59.9649323300735 + + + + + +HU02 +#labelStyle + +-1.91211350754709,60.0097982269007 + + + + +HU03 + +Small Square HU03 Boundry Box +#Line2 + + +1 + +-2.00178176495941,60.0547221663242 +-2.00178731687945,60.1445017964235 +-1.82174207698537,60.1443819733901 +-1.82222565609702,60.0546027742255 +-2.00178176495941,60.0547221663242 + + + + + +HU03 +#labelStyle + +-1.91187520038228,60.099587344124 + + + + +HU04 + +Small Square HU04 Boundry Box +#Line2 + + +1 + +-2.00178731743645,60.1445107752232 +-2.00179290450431,60.2342891803812 +-1.8212553682378,60.2341689240183 +-1.82174202846901,60.1443909521465 +-2.00178731743645,60.1445107752232 + + + + + +HU04 +#labelStyle + +-1.91163537669584,60.1893752345663 + + + + +HU05 + +Small Square HU05 Boundry Box +#Line2 + + +1 + +-2.00179290506484,60.2342981590584 +-2.00179852759705,60.3240753415747 +-1.82076555032972,60.3239546495093 +-1.82125531941191,60.2341779026521 +-2.00179290506484,60.2342981590584 + + + + + +HU05 +#labelStyle + +-1.91139402285955,60.2791619005165 + + + + +HU06 + +Small Square HU06 Boundry Box +#Line2 + + +1 + +-2.00179852816115,60.3240843201298 +-2.00180418647808,60.413860282316 +-1.82027259519012,60.4137391521528 +-1.82076550119152,60.3239636280206 +-2.00179852816115,60.3240843201298 + + + + + +HU06 +#labelStyle + +-1.91115112507994,60.3689473442749 + + + + +HU07 + +Small Square HU07 Boundry Box +#Line2 + + +1 + +-2.00180418704577,60.4138692607491 +-2.00180988147171,60.5036440049285 +-1.81977647440603,60.5035224342507 +-1.82027254573679,60.413748130542 +-2.00180418704577,60.4138692607491 + + + + + +HU07 +#labelStyle + +-1.91090666939574,60.4587315681541 + + + + +HU08 + +Small Square HU08 Boundry Box +#Line2 + + +1 + +-2.00180988204302,60.5036529832399 +-2.00181561290619,60.5934265117476 +-1.81927715921729,60.5933044981158 +-1.8197764246347,60.5035314125179 +-2.00180988204302,60.5036529832399 + + + + + +HU08 +#labelStyle + +-1.91066064167534,60.5485145744779 + + + + +HU09 + +Small Square HU09 Boundry Box +#Line2 + + +1 + +-2.00181561348117,60.5934354899376 +-2.00182138111382,60.6832078051208 +-1.81877462051126,60.683085346073 +-1.81927710912506,60.5933134762614 +-2.00181561348117,60.5934354899376 + + + + + +HU09 +#labelStyle + +-1.91041302761421,60.6382963655824 + + + + +HU10 + +Small Square HU10 Boundry Box +#Line2 + + +1 + +-1.82364051041899,59.7852308294874 +-1.82316596357222,59.8750137239968 +-1.64458202759002,59.8746531170521 +-1.64553649517163,59.7848715136118 +-1.82364051041899,59.7852308294874 + + + + + +HU10 +#labelStyle + +-1.73422229490908,59.8299771232984 + + + + +HU11 + +Small Square HU11 Boundry Box +#Line2 + + +1 + +-1.82316591596321,59.8750227031224 +-1.8226883689166,59.9648043635741 +-1.64362143025168,59.9644424584585 +-1.64458193183288,59.8746620960482 +-1.82316591596321,59.8750227031224 + + + + + +HU11 +#labelStyle + +-1.7335054331569,59.9197678408301 + + + + +HU12 + +Small Square HU12 Boundry Box +#Line2 + + +1 + +-1.8226883210062,59.9648133425765 +-1.82220774700628,60.0545937712136 +-1.64265474450281,60.0542305608907 +-1.6436213338884,59.9644514373306 +-1.8226883210062,59.9648133425765 + + + + + +HU12 +#labelStyle + +-1.73278403355724,60.0095573223864 + + + + +HU13 + +Small Square HU13 Boundry Box +#Line2 + + +1 + +-1.82220769879181,60.0546027500929 +-1.82172407076308,60.1443819491703 +-1.64168191588554,60.1440174265398 +-1.64265464752797,60.0542395396391 +-1.82220769879181,60.0546027500929 + + + + + +HU13 +#labelStyle + +-1.73205805558311,60.0993455701901 + + + + +HU14 + +Small Square HU14 Boundry Box +#Line2 + + +1 + +-1.82172402224181,60.1443909279267 +-1.82123731278186,60.2341688997109 +-1.64070288928458,60.2338030576078 +-1.64168181829367,60.1440264051646 +-1.82172402224181,60.1443909279267 + + + + + +HU14 +#labelStyle + +-1.73132745821896,60.1891325864753 + + + + +HU15 + +Small Square HU15 Boundry Box +#Line2 + + +1 + +-1.82123726395104,60.2341778783446 +-1.82074744532566,60.3239546251136 +-1.63971760891725,60.3235874563073 +-1.64070279107014,60.2338120361092 +-1.82123726395104,60.2341778783446 + + + + + +HU15 +#labelStyle + +-1.73059219995332,60.2789183734874 + + + + +HU16 + +Small Square HU16 Boundry Box +#Line2 + + +1 + +-1.82074739618249,60.323963603625 +-1.82025444032061,60.4137391276686 +-1.63872601832341,60.413370624862 +-1.63971751007462,60.3235964346856 +-1.82074739618249,60.323963603625 + + + + + +HU16 +#labelStyle + +-1.72985223877134,60.3687029334831 + + + + +HU17 + +Small Square HU17 Boundry Box +#Line2 + + +1 + +-1.82025439086228,60.4137481060578 +-1.81975826935088,60.5035224096773 +-1.63772806035511,60.5031525655063 +-1.6387259188469,60.4133796031174 +-1.82025439086228,60.4137481060578 + + + + + +HU17 +#labelStyle + +-1.72910753214706,60.4584862687304 + + + + +HU18 + +Small Square HU18 Boundry Box +#Line2 + + +1 + +-1.81975821957451,60.5035313879446 +-1.81925890365339,60.5933044734529 +-1.63672367716619,60.5929332804854 +-1.63772796023899,60.5031615436391 +-1.81975821957451,60.5035313879446 + + + + + +HU18 +#labelStyle + +-1.72835803703576,60.5482683815084 + + + + +HU19 + +Small Square HU19 Boundry Box +#Line2 + + +1 + +-1.8192588535561,60.5933134515984 +-1.81875631411257,60.68308532132 +-1.63571281020156,60.682712772055 +-1.63672357640464,60.5929422584957 +-1.8192588535561,60.5933134515984 + + + + + +HU19 +#labelStyle + +-1.72760370986592,60.6380492741078 + + + + +HU20 + +Small Square HU20 Boundry Box +#Line2 + + +1 + +-1.64551868323802,59.7848714656156 +-1.64456416766176,59.8746530688834 +-1.46598626946005,59.8740504043061 +-1.46742065258994,59.7842709590696 +-1.64551868323802,59.7848714656156 + + + + + +HU20 +#labelStyle + +-1.55586346525579,59.8294962886853 + + + + +HU21 + +Small Square HU21 Boundry Box +#Line2 + + +1 + +-1.6445640718998,59.8746620478796 +-1.64360352202056,59.9644424101164 +-1.46454267496085,59.9638375756362 +-1.46598612555531,59.8740593830859 +-1.6445640718998,59.8746620478796 + + + + + +HU21 +#labelStyle + +-1.55466509617334,59.9192852766138 + + + + +HU22 + +Small Square HU22 Boundry Box +#Line2 + + +1 + +-1.64360342565243,59.9644513889885 +-1.64263678766271,60.0542305123743 +-1.46308993123695,60.0536234962293 +-1.46454253014525,59.9638465542908 +-1.64360342565243,59.9644513889885 + + + + + +HU22 +#labelStyle + +-1.55345914162865,60.0090730192087 + + + + +HU23 + +Small Square HU23 Boundry Box +#Line2 + + +1 + +-1.642636690683,60.0542394911226 +-1.64166391012761,60.1440173778481 +-1.46162795645786,60.1434081681692 +-1.46308978550235,60.0536324747589 +-1.642636690683,60.0542394911226 + + + + + +HU23 +#labelStyle + +-1.55224553387997,60.0988595186079 + + + + +HU24 + +Small Square HU24 Boundry Box +#Line2 + + +1 + +-1.64166381253083,60.1440263564729 +-1.64068483429718,60.2338030087397 +-1.46015666780526,60.2331915935497 +-1.46162780979603,60.143417146574 +-1.64166381253083,60.1440263564729 + + + + + +HU24 +#labelStyle + +-1.55102420436897,60.1886447769594 + + + + +HU25 + +Small Square HU25 Boundry Box +#Line2 + + +1 + +-1.6406847360778,60.2338119872412 +-1.63969950438596,60.323587407262 +-1.45867598145806,60.322973774474 +-1.46015652020787,60.23320057183 +-1.6406847360778,60.2338119872412 + + + + + +HU25 +#labelStyle + +-1.54979508370843,60.2784287964215 + + + + +HU26 + +Small Square HU26 Boundry Box +#Line2 + + +1 + +-1.63969940553836,60.3235963856403 +-1.63870786393095,60.4133705756385 +-1.45718581257727,60.4127547130548 +-1.45867583291667,60.32298275263 +-1.63969940553836,60.3235963856403 + + + + + +HU26 +#labelStyle + +-1.54855810166972,60.3682115791629 + + + + +HU27 + +Small Square HU27 Boundry Box +#Line2 + + +1 + +-1.63870776444945,60.4133795538939 +-1.63770985578134,60.5031525161037 +-1.45568607529048,60.5025344114141 +-1.45718566308335,60.4127636910866 +-1.63870776444945,60.4133795538939 + + + + + +HU27 +#labelStyle + +-1.54731318717003,60.4579931273623 + + + + +HU28 + +Small Square HU28 Boundry Box +#Line2 + + +1 + +-1.63770975566019,60.5031614942364 +-1.63670542208807,60.5929332309025 +-1.45417668267619,60.5923128716836 +-1.4556859248354,60.502543389322 +-1.63770975566019,60.5031614942364 + + + + + +HU28 +#labelStyle + +-1.54606026825938,60.5477734432088 + + + + +HU29 + +Small Square HU29 Boundry Box +#Line2 + + +1 + +-1.63670532132144,60.5929422089128 +-1.63569450429308,60.682712722291 +-1.45265754674771,60.6820900960041 +-1.45417653125119,60.5923218494678 +-1.63670532132144,60.5929422089128 + + + + + +HU29 +#labelStyle + +-1.54479927210739,60.6375525289013 + + + + +HU30 + +Small Square HU30 Boundry Box +#Line2 + + +1 + +-1.46740284140522,59.7842708869528 +-1.46596841028732,59.8740503319301 +-1.28739958327759,59.8732056301761 +-1.28931380204756,59.7834292100253 +-1.46740284140522,59.7842708869528 + + + + + +HU30 +#labelStyle + +-1.37751215772461,59.8287738154609 + + + + +HU31 + +Small Square HU31 Boundry Box +#Line2 + + +1 + +-1.46596826637777,59.8740593107099 +-1.464524767492,59.9638375029997 +-1.28547307249264,59.9629897597798 +-1.2873993912333,59.8732146086525 +-1.46596826637777,59.8740593107099 + + + + + +HU31 +#labelStyle + +-1.37583234826727,59.9185602043893 + + + + +HU32 + +Small Square HU32 Boundry Box +#Line2 + + +1 + +-1.46452462267155,59.9638464816542 +-1.46307197516594,60.0536234233307 +-1.28353435264216,60.0527726221593 +-1.28547287923286,59.9629987381294 +-1.46452462267155,59.9638464816542 + + + + + +HU32 +#labelStyle + +-1.37414190653758,60.008345333922 + + + + +HU33 + +Small Square HU33 Boundry Box +#Line2 + + +1 + +-1.46307182942647,60.0536324018602 +-1.46160995147592,60.1434080950072 +-1.28158331453766,60.1425542192485 +-1.28353415815603,60.0527816003822 +-1.46307182942647,60.0536324018602 + + + + + +HU33 +#labelStyle + +-1.3724407375911,60.0981292060691 + + + + +HU34 + +Small Square HU34 Boundry Box +#Line2 + + +1 + +-1.46160980480918,60.143417073412 +-1.46013861360083,60.2331915201228 +-1.2796198476727,60.2323345529895 +-1.2815831188142,60.142563197345 +-1.46160980480918,60.143417073412 + + + + + +HU34 +#labelStyle + +-1.37072874533903,60.1879118228493 + + + + +HU35 + +Small Square HU35 Boundry Box +#Line2 + + +1 + +-1.4601384659985,60.2332004984031 +-1.45865787771681,60.3229737007808 +-1.277643840203,60.3221136253317 +-1.2796196507008,60.2323435309597 +-1.4601384659985,60.2332004984031 + + + + + +HU35 +#labelStyle + +-1.36900583253093,60.2776931862902 + + + + +HU36 + +Small Square HU36 Boundry Box +#Line2 + + +1 + +-1.45865772917045,60.3229826789367 +-1.457167658982,60.4127546390938 +-1.27565517892616,60.4118914382324 +-1.27764364197139,60.3221226031759 +-1.45865772917045,60.3229826789367 + + + + + +HU36 +#labelStyle + +-1.36727190073718,60.367473298428 + + + + +HU37 + +Small Square HU37 Boundry Box +#Line2 + + +1 + +-1.45716750948308,60.4127636171256 +-1.45566787152115,60.5025343371839 +-1.27365374926107,60.5016679936566 +-1.27565497942347,60.4119004159508 +-1.45716750948308,60.4127636171256 + + + + + +HU37 +#labelStyle + +-1.36552685033108,60.4572521613075 + + + + +HU38 + +Small Square HU38 Boundry Box +#Line2 + + +1 + +-1.45566772106103,60.5025433150918 +-1.45415842840983,60.5923127971826 +-1.2716394352269,60.5914432935764 +-1.27365354847577,60.5016769712493 +-1.45566772106103,60.5025433150918 + + + + + +HU38 +#labelStyle + +-1.36377058047065,60.5470297769821 + + + + +HU39 + +Small Square HU39 Boundry Box +#Line2 + + +1 + +-1.45415827697976,60.5923217749668 +-1.45263924165841,60.6820900212308 +-1.26961211942169,60.6812173399716 +-1.27163923314731,60.5914522710437 +-1.45415827697976,60.5923217749668 + + + + + +HU39 +#labelStyle + +-1.36200298908009,60.6368061475136 + + + + +HU40 + +Small Square HU40 Boundry Box +#Line2 + + +1 + +-1.28929599191238,59.7834291137903 +-1.28738172516374,59.8732055335953 +-1.10882500179864,59.8721188233318 +-1.11121894959155,59.7823462949144 +-1.28929599191238,59.7834291137903 + + + + + +HU40 +#labelStyle + +-1.19917139219423,59.8278097280894 + + + + +HU41 + +Small Square HU41 Boundry Box +#Line2 + + +1 + +-1.28738153311463,59.8732145120716 +-1.2854551660921,59.9629896628513 +-1.106415682635,59.9618990397959 +-1.10882476162551,59.8721278014179 +-1.28738153311463,59.8732145120716 + + + + + +HU41 +#labelStyle + +-1.19701023619634,59.9175926488227 + + + + +HU42 + +Small Square HU42 Boundry Box +#Line2 + + +1 + +-1.28545497282747,59.9629986412008 +-1.28351639764901,60.0527725248811 +-1.10399109586355,60.051677967827 +-1.10641544094189,59.9619080177531 +-1.28545497282747,59.9629986412008 + + + + + +HU42 +#labelStyle + +-1.19483540224353,60.0073742913964 + + + + +HU43 + +Small Square HU43 Boundry Box +#Line2 + + +1 + +-1.28351620315801,60.052781503104 +-1.28156531064324,60.1425541216188 +-1.10155110495733,60.1414556091663 +-1.10399085263688,60.0516869456554 +-1.28351620315801,60.052781503104 + + + + + +HU43 +#labelStyle + +-1.19264676820565,60.0971546576502 + + + + +HU44 + +Small Square HU44 Boundry Box +#Line2 + + +1 + +-1.28156511491488,60.1425630997153 +-1.27960179456559,60.2323344550063 +-1.09909557174169,60.2312319655606 +-1.10155086018336,60.1414645868662 +-1.28156511491488,60.1425630997153 + + + + + +HU44 +#labelStyle + +-1.19044421048068,60.1869337494304 + + + + +HU45 + +Small Square HU45 Boundry Box +#Line2 + + +1 + +-1.27960159758875,60.2323434329765 +-1.27762573756896,60.3221135269931 +-1.09662435636937,60.3210070387619 +-1.09909532540652,60.231240943132 +-1.27960159758875,60.2323434329765 + + + + + +HU45 +#labelStyle + +-1.18822760397252,60.2767115685901 + + + + +HU46 + +Small Square HU46 Boundry Box +#Line2 + + +1 + +-1.27762553933239,60.3221225048373 +-1.27563702644814,60.4118913395365 +-1.09413731729524,60.4107808305276 +-1.09662410845895,60.3210160162051 +-1.27762553933239,60.3221225048373 + + + + + +HU46 +#labelStyle + +-1.18599682206843,60.3664881169889 + + + + +HU47 + +Small Square HU47 Boundry Box +#Line2 + + +1 + +-1.27563682694045,60.4119003172548 +-1.27363554661913,60.5016678946013 +-1.09163431125046,60.5005533426202 +-1.09413706779531,60.4107898078428 +-1.27563682694045,60.4119003172548 + + + + + +HU47 +#labelStyle + +-1.18375173661604,60.4562633964927 + + + + +HU48 + +Small Square HU48 Boundry Box +#Line2 + + +1 + +-1.27363534582879,60.5016768721941 +-1.2716211820982,60.5914431941598 +-1.08911519321626,60.5903245768071 +-1.09163406014661,60.5005623198074 +-1.27363534582879,60.5016768721941 + + + + + +HU48 +#labelStyle + +-1.18149221789991,60.5460374089741 + + + + +HU49 + +Small Square HU49 Boundry Box +#Line2 + + +1 + +-1.27162098001354,60.5914521716271 +-1.26959381548045,60.6812172401917 +-1.0865798163972,60.6800945348607 +-1.0891149404939,60.5903335538666 +-1.27162098001354,60.5914521716271 + + + + + +HU49 +#labelStyle + +-1.17921813461771,60.6358101563116 + + + + +HU50 + +Small Square HU50 Boundry Box +#Line2 + + +1 + +-1.11120114080645,59.7823461745645 +-1.10880714504686,59.8721187025495 +-0.930265556499842,59.8707900206517 +-0.933139100008511,59.7810222503144 +-1.11120114080645,59.7823461745645 + + + + + +HU50 +#labelStyle + +-1.02084418743245,59.8266040592122 + + + + +HU51 + +Small Square HU51 Boundry Box +#Line2 + + +1 + +-1.10880690486893,59.8721276806355 +-1.10639777760869,59.9618989185787 +-0.927373563877383,59.9605654528674 +-0.930265268211303,59.8707989982607 +-1.10880690486893,59.8721276806355 + + + + + +HU51 +#labelStyle + +-1.0182018055906,59.9163826428244 + + + + +HU52 + +Small Square HU52 Boundry Box +#Line2 + + +1 + +-1.10639753591073,59.9619078965358 +-1.10397314225691,60.0516778461725 +-0.924463246728213,60.0503395707235 +-0.927373273764518,59.9605744303449 +-1.10639753591073,59.9619078965358 + + + + + +HU52 +#labelStyle + +-1.01554270156149,60.0061599248147 + + + + +HU53 + +Small Square HU53 Boundry Box +#Line2 + + +1 + +-1.10397289902537,60.0516868240009 +-1.10153310246186,60.1414554870722 +-0.921534441211363,60.1401123757254 +-0.924462954774735,60.0503485480696 +-1.10397289902537,60.0516868240009 + + + + + +HU53 +#labelStyle + +-1.01286672605103,60.0959359068095 + + + + +HU54 + +Small Square HU54 Boundry Box +#Line2 + + +1 + +-1.10153285768299,60.141464464772 +-1.09907752004611,60.2312318430245 +-0.918586981508821,60.2298838693813 +-0.921534147400789,60.1401213529403 +-1.10153285768299,60.141464464772 + + + + + +HU54 +#labelStyle + +-1.01017372796615,60.1857105904397 + + + + +HU55 + +Small Square HU55 Boundry Box +#Line2 + + +1 + +-1.09907727370601,60.2312408205959 +-1.09660625515962,60.3210069157814 +-0.915620699795703,60.3196540532019 +-0.918586685824469,60.2298928464652 +-1.09907727370601,60.2312408205959 + + + + + +HU55 +#labelStyle + +-1.00746355438769,60.27548397734 + + + + +HU56 + +Small Square HU56 Boundry Box +#Line2 + + +1 + +-1.09660600724422,60.3210158932245 +-1.09411916625439,60.4107807071002 +-0.91263542620988,60.4094229287002 +-0.915620402220691,60.3196630301549 +-1.09660600724422,60.3210158932245 + + + + + +HU56 +#labelStyle + +-1.00473605054278,60.3652560691494 + + + + +HU57 + +Small Square HU57 Boundry Box +#Line2 + + +1 + +-1.09411891674946,60.4107896844153 +-1.09161611005874,60.5005532187434 +-0.909630988821049,60.4991904973913 +-0.912635126727118,60.4094319055224 +-1.09411891674946,60.4107896844153 + + + + + +HU57 +#labelStyle + +-1.00199105977679,60.4550268675103 + + + + +HU58 + +Small Square HU58 Boundry Box +#Line2 + + +1 + +-1.09161585894986,60.5005621959306 +-1.08909694155099,60.5903244524784 +-0.906607213599249,60.5889567607925 +-0.90963068741324,60.4991994740829 +-1.09161585894986,60.5005621959306 + + + + + +HU58 +#labelStyle + +-0.999228423524674,60.544796374069 + + + + +HU59 + +Small Square HU59 Boundry Box +#Line2 + + +1 + +-1.08909668882357,60.590333429538 +-1.08656151393277,60.6800944100777 +-0.903563924382783,60.6787217204226 +-0.906606910248883,60.5889657373536 +-1.08909668882357,60.590333429538 + + + + + +HU59 +#labelStyle + +-0.996447981281853,60.6345645904752 + + + + +HU60 + +Small Square HU60 Boundry Box +#Line2 + + +1 + +-0.933121292873909,59.7810221058537 +-0.930247701413223,59.8707898756719 +-0.751724277258599,59.8692192672182 +-0.755077256509353,59.7794571209396 +-0.933121292873909,59.7810221058537 + + + + + +HU60 +#labelStyle + +-0.84253356077834,59.8251568496433 + + + + +HU61 + +Small Square HU61 Boundry Box +#Line2 + + +1 + +-0.930247413119873,59.8707988532809 +-0.927355660531065,59.9605653073656 +-0.748349773085947,59.9589890444492 +-0.751723940870736,59.8692282442633 +-0.930247413119873,59.8707988532809 + + + + + +HU61 +#labelStyle + +-0.83941010063001,59.9149302275451 + + + + +HU62 + +Small Square HU62 Boundry Box +#Line2 + + +1 + +-0.927355370413358,59.9605742848431 +-0.924445294816596,60.0503394246969 +-0.744953889415536,60.0487574766801 +-0.748349434569614,59.9589980213596 +-0.927355370413358,59.9605742848431 + + + + + +HU62 +#labelStyle + +-0.836266875834545,60.0047022756678 + + + + +HU63 + +Small Square HU63 Boundry Box +#Line2 + + +1 + +-0.924445002858245,60.0503484020429 +-0.921516440426116,60.1401122291712 +-0.741536435121668,60.1385245651381 +-0.744953548751734,60.0487664534561 +-0.924445002858245,60.0503484020429 + + + + + +HU63 +#labelStyle + +-0.833103709960543,60.0944729953823 + + + + +HU64 + +Small Square HU64 Boundry Box +#Line2 + + +1 + +-0.92151614661064,60.140121206386 +-0.918568931538852,60.2298837222965 +-0.738097216772811,60.2282903110493 +-0.74153609229117,60.1385335417798 +-0.92151614661064,60.140121206386 + + + + + +HU64 +#labelStyle + +-0.829920424450989,60.1842423880607 + + + + +HU65 + +Small Square HU65 Boundry Box +#Line2 + + +1 + +-0.918568635849567,60.2298926993803 +-0.915602600327124,60.3196539055837 +-0.734636038596815,60.3180547156393 +-0.738096871756157,60.2282992875569 +-0.918568635849567,60.2298926993803 + + + + + +HU65 +#labelStyle + +-0.826716838591245,60.2740104550761 + + + + +HU66 + +Small Square HU66 Boundry Box +#Line2 + + +1 + +-0.915602302747146,60.3196628825366 +-0.91261727692597,60.4094227805456 +-0.731152702445495,60.4078177801323 +-0.734635691374309,60.3180636920127 +-0.915602302747146,60.3196628825366 + + + + + +HU66 +#labelStyle + +-0.823492769476441,60.3637771978023 + + + + +HU67 + +Small Square HU67 Boundry Box +#Line2 + + +1 + +-0.91261697743821,60.4094317573677 +-0.909612789402225,60.4991903486974 +-0.727647007758573,60.4975795057512 +-0.731152352997204,60.4078267563718 +-0.91261697743821,60.4094317573677 + + + + + +HU67 +#labelStyle + +-0.820248031978282,60.4535426176138 + + + + +HU68 + +Small Square HU68 Boundry Box +#Line2 + + +1 + +-0.909612487989386,60.4991993253889 +-0.906588963723026,60.5889566115562 +-0.72411875152696,60.5873398937176 +-0.727646656064318,60.4975884818569 +-0.909612487989386,60.4991993253889 + + + + + +HU68 +#labelStyle + +-0.816982438711254,60.5433067158853 + + + + +HU69 + +Small Square HU69 Boundry Box +#Line2 + + +1 + +-0.906588660367599,60.5889655881172 +-0.903545623723744,60.678721570641 +-0.72056772825536,60.677098945251 +-0.724118397566317,60.5873488696896 +-0.906588660367599,60.5889655881172 + + + + + +HU69 +#labelStyle + +-0.813695799998197,60.6330694939919 + + + + +HU70 + +Small Square HU70 Boundry Box +#Line2 + + +1 + +-0.755059451325474,59.779456952373 +-0.751706424140033,59.8692190980459 +-0.573204192033421,59.8674066163119 +-0.577036420414367,59.7776509596358 +-0.755059451325474,59.779456952373 + + + + + +HU70 +#labelStyle + +-0.664242527824811,59.8234681483646 + + + + +HU71 + +Small Square HU71 Boundry Box +#Line2 + + +1 + +-0.751706087747361,59.8692280750908 +-0.748331871725222,59.9589888746678 +-0.569347365179216,59.9571698682615 +-0.57320380756501,59.8674155927061 +-0.751706087747361,59.8692280750908 + + + + + +HU71 +#labelStyle + +-0.660638163722218,59.9132354523704 + + + + +HU72 + +Small Square HU72 Boundry Box +#Line2 + + +1 + +-0.74833153320405,59.9589978515781 +-0.744935939507261,60.0487573062864 +-0.565466106127956,60.0469317398623 +-0.569346978278417,59.9571788445177 +-0.74833153320405,59.9589978515781 + + + + + +HU72 +#labelStyle + +-0.657010994606858,60.0030013937499 + + + + +HU73 + +Small Square HU73 Boundry Box +#Line2 + + +1 + +-0.74493559883859,60.0487662830623 +-0.74151843635773,60.1385243941287 +-0.56156019650338,60.13669223202 +-0.565465716773061,60.0469407159805 +-0.74493559883859,60.0487662830623 + + + + + +HU73 +#labelStyle + +-0.653360816941466,60.0927659735759 + + + + +HU74 + +Small Square HU74 Boundry Box +#Line2 + + +1 + +-0.741518093522331,60.1385333707703 +-0.738079168842333,60.2282901394209 +-0.557629415295218,60.2264513456357 +-0.56155980467242,60.1367012080002 +-0.741518093522331,60.1385333707703 + + + + + +HU74 +#labelStyle + +-0.649687424737113,60.1825291929188 + + + + +HU75 + +Small Square HU75 Boundry Box +#Line2 + + +1 + +-0.738078823820747,60.2282991159284 +-0.734617941186128,60.3180545433885 +-0.553673538819469,60.3162090816059 +-0.557629020965958,60.2264603214781 +-0.738078823820747,60.2282991159284 + + + + + +HU75 +#labelStyle + +-0.645990609516285,60.2722910528465 + + + + +HU76 + +Small Square HU76 Boundry Box +#Line2 + + +1 + +-0.73461759395866,60.3180635197619 +-0.731134555238104,60.4078176072556 +-0.549692340677953,60.4059654408218 +-0.553673141969407,60.3162180573106 +-0.73461759395866,60.3180635197619 + + + + + +HU76 +#labelStyle + +-0.64227016027529,60.3620515544236 + + + + +HU77 + +Small Square HU77 Boundry Box +#Line2 + + +1 + +-0.731134205784818,60.4078265834951 +-0.727628810435123,60.4975793322453 +-0.545685591717137,60.4957204241695 +-0.549691941284313,60.4059744163889 +-0.731134205784818,60.4078265834951 + + + + + +HU77 +#labelStyle + +-0.638525863445983,60.4518106987119 + + + + +HU78 + +Small Square HU78 Boundry Box +#Line2 + + +1 + +-0.72762845873584,60.4975883083509 +-0.724100503765197,60.5873397195789 +-0.541653059986195,60.5854740325292 +-0.545685189756863,60.4957293995991 +-0.72762845873584,60.4975883083509 + + + + + +HU78 +#labelStyle + +-0.634757502856794,60.5415684867698 + + + + +HU79 + +Small Square HU79 Boundry Box +#Line2 + + +1 + +-0.724100149799493,60.5873486955508 +-0.720549429730099,60.677098770476 +-0.537594510694309,60.6752262667755 +-0.541652655435951,60.5854830078214 +-0.724100149799493,60.5873486955508 + + + + + +HU79 +#labelStyle + +-0.630964859693035,60.6313249196518 + + + + +HU80 + +Small Square HU80 Boundry Box +#Line2 + + +1 + +-0.577018617481238,59.7776507669688 +-0.573186341185598,59.8674064229527 +-0.394708326544898,59.8653521294045 +-0.399019590838881,59.7756038273731 +-0.577018617481238,59.7776507669688 + + + + + +HU80 +#labelStyle + +-0.485974102101658,59.8215380125192 + + + + +HU81 + +Small Square HU81 Boundry Box +#Line2 + + +1 + +-0.57318595671238,59.8674153993469 +-0.569329466109468,59.9571696742063 +-0.390369392804226,59.9551079862838 +-0.394707894017389,59.8653611050612 +-0.57318595671238,59.8674153993469 + + + + + +HU81 +#labelStyle + +-0.481889035180849,59.9112983749145 + + + + +HU82 + +Small Square HU82 Boundry Box +#Line2 + + +1 + +-0.569329079203831,59.9571786504624 +-0.565448158531136,60.0469315451073 +-0.386002976762263,60.0448624227627 +-0.390368957540668,59.9551169617985 +-0.569329079203831,59.9571786504624 + + + + + +HU82 +#labelStyle + +-0.477778125297112,60.0010573371516 + + + + +HU83 + +Small Square HU83 Boundry Box +#Line2 + + +1 + +-0.565447769171373,60.0469405212254 +-0.56154220007162,60.1366920365614 +-0.381608832831201,60.134615439383 +-0.386002538738243,60.0448713981354 +-0.565447769171373,60.0469405212254 + + + + + +HU83 +#labelStyle + +-0.473641141843588,60.0908148999629 + + + + +HU84 + +Small Square HU84 Boundry Box +#Line2 + + +1 + +-0.561541808235761,60.1367010125415 +-0.557611369717893,60.2264511494696 +-0.377186712461755,60.2243670366776 +-0.381608392022014,60.1346244146137 +-0.561541808235761,60.1367010125415 + + + + + +HU84 +#labelStyle + +-0.469477851436351,60.1805710640742 + + + + +HU85 + +Small Square HU85 Boundry Box +#Line2 + + +1 + +-0.557610975383703,60.226460125312 +-0.553655443783165,60.3162088847285 +-0.372736364098518,60.3141172151703 +-0.377186268842395,60.2243760117664 +-0.557610975383703,60.226460125312 + + + + + +HU85 +#labelStyle + +-0.465288017872607,60.2703258302045 + + + + +HU86 + +Small Square HU86 Boundry Box +#Line2 + + +1 + +-0.553655046928141,60.3162178604331 +-0.549674195866434,60.4059652432292 +-0.368257533134496,60.4038659753751 +-0.372735917643678,60.3141261901172 +-0.553655046928141,60.3162178604331 + + + + + +HU86 +#labelStyle + +-0.461071402088118,60.3600791990656 + + + + +HU87 + +Small Square HU87 Boundry Box +#Line2 + + +1 + +-0.5496737964678,60.4059742187962 +-0.545667396811308,60.4957202258577 +-0.36374996186483,60.4936133177965 +-0.368257083818562,60.4038749501803 +-0.5496737964678,60.4059742187962 + + + + + +HU87 +#labelStyle + +-0.456827762113859,60.4498311713621 + + + + +HU88 + +Small Square HU88 Boundry Box +#Line2 + + +1 + +-0.545666994846008,60.4957292012872 +-0.541634814664069,60.5854738334943 +-0.359213389439661,60.5833592429282 +-0.363749509661874,60.4936222924599 +-0.545666994846008,60.4957292012872 + + + + + +HU88 +#labelStyle + +-0.452556853031894,60.5395817477906 + + + + +HU89 + +Small Square HU89 Boundry Box +#Line2 + + +1 + +-0.541634410108767,60.5854828087864 +-0.537576214630973,60.6752260670133 +-0.354647551816136,60.6731037512536 +-0.35921293432344,60.5833682174499 +-0.541634410108767,60.5854828087864 + + + + + +HU89 +#labelStyle + +-0.448258426930422,60.6293309290398 + + + + +HU90 + +Small Square HU90 Boundry Box +#Line2 + + +1 + +-0.399001790456294,59.7756036106124 +-0.394690478270267,59.865351911865 +-0.216239703957218,59.8630558761514 +-0.221029764379467,59.7733157932386 +-0.399001790456294,59.7756036106124 + + + + + +HU90 +#labelStyle + +-0.307731294759128,59.8193665074044 + + + + +HU91 + +Small Square HU91 Boundry Box +#Line2 + + +1 + +-0.394690045737954,59.8653608875217 +-0.390351496330594,59.9551077679614 +-0.211418906013288,59.9528034687463 +-0.216239223394735,59.8630648509839 +-0.394690045737954,59.8653608875217 + + + + + +HU91 +#labelStyle + +-0.303165752904361,59.9091190610125 + + + + +HU92 + +Small Square HU92 Boundry Box +#Line2 + + +1 + +-0.390351061062201,59.955116743476 +-0.38598503178476,60.0448622036531 +-0.206567578581507,60.042549596193 +-0.211418422411386,59.9528124434323 +-0.390351061062201,59.955116743476 + + + + + +HU92 +#labelStyle + +-0.29857133287256,59.9988701722525 + + + + +HU93 + +Small Square HU93 Boundry Box +#Line2 + + +1 + +-0.385984593755875,60.0448711790256 +-0.381590839042238,60.1346152194818 +-0.201685448906374,60.1322942586271 +-0.206567091913071,60.0425585707325 +-0.385984593755875,60.0448711790256 + + + + + +HU93 +#labelStyle + +-0.293947777028337,60.0886198414735 + + + + +HU94 + +Small Square HU94 Boundry Box +#Line2 + + +1 + +-0.381590398228154,60.1346241947124 +-0.377168669550992,60.2243668159806 +-0.196772240944237,60.2220374561701 +-0.201684959143966,60.1323032330201 +-0.381590398228154,60.1346241947124 + + + + + +HU94 +#labelStyle + +-0.289294824634585,60.178368069014 + + + + +HU95 + +Small Square HU95 Boundry Box +#Line2 + + +1 + +-0.377168225926704,60.2243757910693 +-0.372718271752828,60.3141169936731 +-0.191827675313738,60.3117791889297 +-0.196771748060085,60.2220464304166 +-0.377168225926704,60.2243757910693 + + + + + +HU95 +#labelStyle + +-0.284612211805793,60.2681148552009 + + + + +HU96 + +Small Square HU96 Boundry Box +#Line2 + + +1 + +-0.372717825293029,60.31412596862 +-0.368239391037936,60.4038657530734 +-0.186851469245355,60.4015194569985 +-0.191827179279736,60.3117881630297 +-0.372717825293029,60.31412596862 + + + + + +HU96 +#labelStyle + +-0.279899671460521,60.3578602003493 + + + + +HU97 + +Small Square HU97 Boundry Box +#Line2 + + +1 + +-0.368238941717011,60.4038747278785 +-0.363731769698603,60.4936130946858 +-0.181843336530034,60.4912582604547 +-0.186850970033055,60.4015284309521 +-0.368238941717011,60.4038747278785 + + + + + +HU97 +#labelStyle + +-0.275156933273,60.4476041047618 + + + + +HU98 + +Small Square HU98 Boundry Box +#Line2 + + +1 + +-0.363731317490624,60.4936220693491 +-0.359195146882081,60.583359019004 +-0.176802987466876,60.5809955993605 +-0.181842834110642,60.4912672342618 +-0.363731317490624,60.4936220693491 + + + + + +HU98 +#labelStyle + +-0.270383723623863,60.5373465687288 + + + + +HU99 + +Small Square HU99 Boundry Box +#Line2 + + +1 + +-0.359194691760805,60.5833679935256 +-0.354629258542596,60.6731035265114 +-0.171730128809865,60.6707314737626 +-0.176802481811245,60.5810045730212 +-0.359194691760805,60.5833679935256 + + + + + +HU99 +#labelStyle + +-0.265579765549963,60.6270875925275 + + + + + +HW + +Large Square HW Boundry Box +#Line1 + + +1 + +-7.19392762935836,58.7827759390321 +-7.33203674556631,59.6769858235696 +-5.56027964406787,59.7370979798101 +-5.46777531593491,58.8407981866129 +-7.19392762935836,58.7827759390321 + + + + + +HW00 + +Small Square HW00 Boundry Box +#Line2 + + +1 + +-7.19392762935836,58.7827759390321 +-7.20735868693692,58.8722032853713 +-7.03464122595196,58.8790647951699 +-7.02165096919221,58.7896134310058 +-7.19392762935836,58.7827759390321 + + + + + +HW00 +#labelStyle + +-7.11438666245515,58.8309483033839 + + + + +HW01 + +Small Square HW01 Boundry Box +#Line2 + + +1 + +-7.20736003427674,58.8722122288424 +-7.2208733117967,58.9616364135539 +-7.04771234380167,58.9685220672377 +-7.03464252907456,58.8790737410492 +-7.20736003427674,58.8722122288424 + + + + + +HW01 +#labelStyle + +-7.12763907126617,58.9203951560465 + + + + +HW02 + +Small Square HW02 Boundry Box +#Line2 + + +1 + +-7.2208746673944,58.9616453567081 +-7.23447086883201,59.0510663652354 +-7.06086370924841,59.0579762875436 +-7.04771365491481,58.9685310128125 +-7.2208746673944,58.9616453567081 + + + + + +HW02 +#labelStyle + +-7.14097272346061,59.0098389021165 + + + + +HW03 + +Small Square HW03 Boundry Box +#Line2 + + +1 + +-7.23447223275842,59.0510753080712 +-7.24815207021669,59.1404931256778 +-7.07409601187525,59.1474274424369 +-7.06086502842067,59.0579852328126 +-7.23447223275842,59.0510753080712 + + + + + +HW03 +#labelStyle + +-7.15438831591565,59.099279527491 + + + + +HW04 + +Small Square HW04 Boundry Box +#Line2 + + +1 + +-7.24815344254341,59.1405020681937 +-7.26191763636903,59.2299166799601 +-7.08740994925487,59.236875518096 +-7.07409733917597,59.1474363873986 +-7.24815344254341,59.1405020681937 + + + + + +HW04 +#labelStyle + +-7.16788655356793,59.1887170178919 + + + + +HW05 + +Small Square HW05 Boundry Box +#Line2 + + +1 + +-7.26191901716853,59.2299256221547 +-7.27576829607082,59.3193370129757 +-7.10080622706495,59.3263205005267 +-7.08741128475421,59.2368844627492 +-7.26191901716853,59.2299256221547 + + + + + +HW05 +#labelStyle + +-7.18146814952974,59.2781513588631 + + + + +HW06 + +Small Square HW06 Boundry Box +#Line2 + + +1 + +-7.2757696854164,59.3193459548474 +-7.28970478658833,59.408754109429 +-7.11428555920565,59.4157623755584 +-7.1008075708339,59.3263294448698 +-7.2757696854164,59.3193459548474 + + + + + +HW06 +#labelStyle + +-7.19513382520723,59.3675825357675 + + + + +HW07 + +Small Square HW07 Boundry Box +#Line2 + + +1 + +-7.28970618455414,59.4087630509763 +-7.30372785379546,59.4981679538332 +-7.12784866791897,59.5052011288422 +-7.11428691131601,59.4157713195901 +-7.28970618455414,59.4087630509763 + + + + + +HW07 +#labelStyle + +-7.20888431042065,59.4570105337845 + + + + +HW08 + +Small Square HW08 Boundry Box +#Line2 + + +1 + +-7.30372926045654,59.4981768950545 +-7.31783825229906,59.5875785305065 +-7.14149628391034,59.5946367458474 +-7.12785002844338,59.5052100725609 +-7.30372926045654,59.4981768950545 + + + + + +HW08 +#labelStyle + +-7.22272034352672,59.5464353379069 + + + + +HW09 + +Small Square HW09 Boundry Box +#Line2 + + +1 + +-7.31783966773129,59.5875874714002 +-7.33203674556631,59.6769858235696 +-7.15522914647229,59.6840692118593 +-7.1414976529223,59.5946456892518 +-7.31783966773129,59.5875874714002 + + + + + +HW09 +#labelStyle + +-7.23664267154308,59.6358569329382 + + + + +HW10 + +Small Square HW10 Boundry Box +#Line2 + + +1 + +-7.02163373581481,58.7896141033434 +-7.03462394845601,58.8790654698697 +-6.86182693405888,58.8856965353355 +-6.84927819601127,58.796221948603 +-7.02163373581481,58.7896141033434 + + + + + +HW10 +#labelStyle + +-6.94183271214849,58.837683456471 + + + + +HW11 + +Small Square HW11 Boundry Box +#Line2 + + +1 + +-7.03462525157418,58.8790744157493 +-7.04769502191613,58.9685227443121 +-6.87445381890365,58.9751771519541 +-6.86182819289204,58.8857054835432 +-7.03462525157418,58.8790744157493 + + + + + +HW11 +#labelStyle + +-6.95464256165086,58.9271539937562 + + + + +HW12 + +Small Square HW12 Boundry Box +#Line2 + + +1 + +-7.04769633302481,58.9685316898871 +-7.06084634270439,59.0579769670049 +-6.88715825862306,59.0646548375179 +-6.87445508545921,58.9751860998693 +-7.04769633302481,58.9685316898871 + + + + + +HW12 +#labelStyle + +-6.96753097694782,59.0166215466497 + + + + +HW13 + +Small Square HW13 Boundry Box +#Line2 + + +1 + +-7.06084766187216,59.0579859122741 +-7.0740786004016,59.1474281242973 +-6.89994092009375,59.1541295794292 +-6.88715953296733,59.0646637851395 +-7.06084766187216,59.0579859122741 + + + + + +HW13 +#labelStyle + +-6.98049863239296,59.106086102113 + + + + +HW14 + +Small Square HW14 Boundry Box +#Line2 + + +1 + +-7.07407992769782,59.1474370692593 +-7.08739249257816,59.2368762023682 +-6.91280247792508,59.2436013649316 +-6.8999422022938,59.1541385267557 +-7.07407992769782,59.1474370692593 + + + + + +HW14 +#labelStyle + +-6.99354621014523,59.1955476469441 + + + + +HW15 + +Small Square HW15 Boundry Box +#Line2 + + +1 + +-7.08739382807296,59.2368851470216 +-7.10078872490943,59.3263211872232 +-6.92574361457096,59.333070181108 +-6.91280376804876,59.2436103119619 +-7.08739382807296,59.2368851470216 + + + + + +HW15 +#labelStyle + +-7.00667440028154,59.2850061677754 + + + + +HW16 + +Small Square HW16 Boundry Box +#Line2 + + +1 + +-7.10079006867381,59.3263301315666 +-7.11426801129321,59.4157630646919 +-6.9387650204436,59.4225360148778 +-6.92574491268691,59.3330791278407 +-7.10079006867381,59.3263301315666 + + + + + +HW16 +#labelStyle + +-7.01988390091133,59.3744616510712 + + + + +HW17 + +Small Square HW17 Boundry Box +#Line2 + + +1 + +-7.11426936339898,59.4157720087238 +-7.12783107396915,59.5052018204255 +-6.95186739402922,59.5119988529941 +-6.93876632662127,59.4225449613116 +-7.11426936339898,59.4157720087238 + + + + + +HW17 +#labelStyle + +-7.03317541829323,59.4639140831246 + + + + +HW18 + +Small Square HW18 Boundry Box +#Line2 + + +1 + +-7.12783243448894,59.5052107641445 +-7.14147864364027,59.5946374398935 +-6.96505144200584,59.6014586820417 +-6.95186870833886,59.5120077991277 +-7.12783243448894,59.5052107641445 + + + + + +HW18 +#labelStyle + +-7.04654966695359,59.5533634500552 + + + + +HW19 + +Small Square HW19 Boundry Box +#Line2 + + +1 + +-7.14148001264759,59.5946463832981 +-7.15521145959669,59.6840699083812 +-6.97831787936306,59.6909154884338 +-6.96505276451853,59.6014676278737 +-7.14148001264759,59.5946463832981 + + + + + +HW19 +#labelStyle + +-7.06000736980723,59.6428097378061 + + + + +HW20 + +Small Square HW20 Boundry Box +#Line2 + + +1 + +-6.8492609548774,58.7962225979631 +-6.86180964874017,58.8856971869778 +-6.68893575094393,58.8920975955933 +-6.67682918325053,58.8026005856525 +-6.8492609548774,58.7962225979631 + + + + + +HW20 +#labelStyle + +-6.76920086708485,58.8441884347262 + + + + +HW21 + +Small Square HW21 Boundry Box +#Line2 + + +1 + +-6.8618109075689,58.8857061351858 +-6.8744364891283,58.9751778058907 +-6.70111774356249,58.9816007532936 +-6.68893696542212,58.8921065460494 +-6.8618109075689,58.8857061351858 + + + + + +HW21 +#labelStyle + +-6.78156749065181,58.9336818560117 + + + + +HW22 + +Small Square HW22 Boundry Box +#Line2 + + +1 + +-6.87443775567941,58.9751867538062 +-6.88714088412142,59.0646554937607 +-6.71337459071086,59.0711010965829 +-6.70111896549418,58.9816097034688 +-6.87443775567941,58.9751867538062 + + + + + +HW22 +#labelStyle + +-6.7940099947303,59.0231724110696 + + + + +HW23 + +Small Square HW23 Boundry Box +#Line2 + + +1 + +-6.88714215846121,59.0646644413825 +-6.89992350059388,59.1541302379901 +-6.72570693644933,59.1605986138819 +-6.71337582016009,59.0711100464762 +-6.88714215846121,59.0646644413825 + + + + + +HW23 +#labelStyle + +-6.80652903103963,59.1126600878908 + + + + +HW24 + +Small Square HW24 Boundry Box +#Line2 + + +1 + +-6.89992478278942,59.1541391853169 +-6.91278501315274,59.2436020258228 +-6.73811543231217,59.2500932934644 +-6.72570817348087,59.1606075634919 +-6.89992478278942,59.1541391853169 + + + + + +HW24 +#labelStyle + +-6.8191252588484,59.2021448743155 + + + + +HW25 + +Small Square HW25 Boundry Box +#Line2 + + +1 + +-6.91278630327188,59.2436109728533 +-6.92572610424959,59.3330708443416 +-6.75060073741574,59.3395851234555 +-6.73811667699155,59.2501022427901 +-6.91278630327188,59.2436109728533 + + + + + +HW25 +#labelStyle + +-6.83179934508355,59.2916267580296 + + + + +HW26 + +Small Square HW26 Boundry Box +#Line2 + + +1 + +-6.92572740236097,59.3330797910745 +-6.93874746429428,59.422536680466 +-6.7631635185686,59.4290740918284 +-6.75060198980926,59.3395940724956 +-6.92572740236097,59.3330797910745 + + + + + +HW26 +#labelStyle + +-6.84455196444126,59.3811057265631 + + + + +HW27 + +Small Square HW27 Boundry Box +#Line2 + + +1 + +-6.93874877046735,59.4225456269001 +-6.95184979177065,59.5119995209495 +-6.77580445038346,59.5185601864028 +-6.76316477874333,59.4290830405817 +-6.93874877046735,59.4225456269001 + + + + + +HW27 +#labelStyle + +-6.85738379949989,59.4705817672875 + + + + +HW28 + +Small Square HW28 Boundry Box +#Line2 + + +1 + +-6.95185110607566,59.5120084670833 +-6.96503379335431,59.6014593523767 +-6.78852421539109,59.608043394842 +-6.77580571840726,59.5185691348682 +-6.95185110607566,59.5120084670833 + + + + + +HW28 +#labelStyle + +-6.87029554083478,59.5600548674127 + + + + +HW29 + +Small Square HW29 Boundry Box +#Line2 + + +1 + +-6.96503511586235,59.6014682982089 +-6.97830018403242,59.690916161161 +-6.80132350415626,59.6975237046503 +-6.7885254913326,59.6080523430181 +-6.96503511586235,59.6014682982089 + + + + + +HW29 +#labelStyle + +-6.88328788713508,59.6495250139853 + + + + +HW30 + +Small Square HW30 Boundry Box +#Line2 + + +1 + +-6.67681193462537,58.8026012120142 +-6.68891845806989,58.8920982241572 +-6.5159703543947,58.8982677706241 +-6.50430658639028,58.8087491384415 +-6.67681193462537,58.8026012120142 + + + + + +HW30 +#labelStyle + +-6.59649379017249,58.8504630300371 + + + + +HW31 + +Small Square HW31 Boundry Box +#Line2 + + +1 + +-6.68891967254364,58.8921071746136 +-6.70110040616701,58.9816013840715 +-6.52770681812695,58.9877926643129 +-6.51597152445461,58.8982767232482 +-6.68891967254364,58.8921071746136 + + + + + +HW31 +#labelStyle + +-6.60841654355917,58.9399785330576 + + + + +HW32 + +Small Square HW32 Boundry Box +#Line2 + + +1 + +-6.70110162809423,58.9816103342469 +-6.71335720852353,59.0711017295861 +-6.53951542867695,59.0773148561529 +-6.52770799537074,58.9878016166673 +-6.70110162809423,58.9816103342469 + + + + + +HW32 +#labelStyle + +-6.62041248473263,59.029491283959 + + + + +HW33 + +Small Square HW33 Boundry Box +#Line2 + + +1 + +-6.71335843796827,59.0711106794796 +-6.72568950919747,59.160599249122 +-6.55139680718233,59.1668343355488 +-6.53951661316636,59.0773238082367 +-6.71335843796827,59.0711106794796 + + + + + +HW33 +#labelStyle + +-6.6324822426707,59.1190012717279 + + + + +HW34 + +Small Square HW34 Boundry Box +#Line2 + + +1 + +-6.72569074622449,59.1606081987322 +-6.73809795972076,59.2500939309531 +-6.56335158199406,59.2563510917694 +-6.55139799897983,59.1668432873607 +-6.72569074622449,59.1606081987322 + + + + + +HW34 +#labelStyle + +-6.64462645364259,59.2085084852112 + + + + +HW35 + +Small Square HW35 Boundry Box +#Line2 + + +1 + +-6.7380992043956,59.250102880279 +-6.75058321920744,59.3395857632044 +-6.57538038878095,59.3458651139462 +-6.56335278116285,59.2563600433085 +-6.7380992043956,59.250102880279 + + + + + +HW35 +#labelStyle + +-6.65684576131433,59.2980129131134 + + + + +HW36 + +Small Square HW36 Boundry Box +#Line2 + + +1 + +-6.75058447159639,59.3395947122448 +-6.76314595446371,59.4290747338496 +-6.58748387063594,59.4353763910708 +-6.57538159538497,59.3458740652114 +-6.75058447159639,59.3395947122448 + + + + + +HW36 +#labelStyle + +-6.66914081685599,59.3875145439947 + + + + +HW37 + +Small Square HW37 Boundry Box +#Line2 + + +1 + +-6.76314721463383,59.4290836826031 +-6.77578684009985,59.5185608307081 +-6.5996626781843,59.5248849119927 +-6.58748508473988,59.4353853420609 +-6.76314721463383,59.4290836826031 + + + + + +HW37 +#labelStyle + +-6.68151227905082,59.4770133662687 + + + + +HW38 + +Small Square HW38 Boundry Box +#Line2 + + +1 + +-6.77578810811902,59.5185697791737 +-6.78850655864425,59.6080440414435 +-6.61191746969364,59.6143906654171 +-6.5996638998536,59.5248938627066 +-6.77578810811902,59.5185697791737 + + + + + +HW38 +#labelStyle + +-6.69396081440626,59.5665093681995 + + + + +HW39 + +Small Square HW39 Boundry Box +#Line2 + + +1 + +-6.7885078345811,59.6080529896198 +-6.8013058006592,59.6975243535603 +-6.62424891118594,59.7038936399025 +-6.61191869899451,59.6143996158537 +-6.7885078345811,59.6080529896198 + + + + + +HW39 +#labelStyle + +-6.70648709726696,59.6560025379002 + + + + +HW40 + +Small Square HW40 Boundry Box +#Line2 + + +1 + +-6.50428933053973,58.8087497417849 +-6.51595305423345,58.8982683760895 +-6.34293342945573,58.9042068623537 +-6.33171306806516,58.8146674104469 +-6.50428933053973,58.8087497417849 + + + + + +HW40 +#labelStyle + +-6.42371415164993,58.8565070414961 + + + + +HW41 + +Small Square HW41 Boundry Box +#Line2 + + +1 + +-6.51595422428892,58.8982773287138 +-6.52768947338174,58.9877932719116 +-6.35422375030719,58.9937526853692 +-6.34293455503632,58.9042158170653 +-6.51595422428892,58.8982773287138 + + + + + +HW41 +#labelStyle + +-6.4351924130986,58.9460438223986 + + + + +HW42 + +Small Square HW42 Boundry Box +#Line2 + + +1 + +-6.52769065062105,58.9878022242662 +-6.53949803907664,59.077315465896 +-6.36558350315408,59.0832959149997 +-6.35422488280131,58.993761639822 +-6.52769065062105,58.9878022242662 + + + + + +HW42 +#labelStyle + +-6.44674116242193,59.0355779612177 + + + + +HW43 + +Small Square HW43 Boundry Box +#Line2 + + +1 + +-6.53949922356154,59.0773244179799 +-6.55137937245349,59.1668349474473 +-6.37701328610869,59.1728365415983 +-6.3655846426212,59.0833048691926 +-6.53949922356154,59.0773244179799 + + + + + +HW43 +#labelStyle + +-6.45836100575267,59.125109447901 + + + + +HW44 + +Small Square HW44 Boundry Box +#Line2 + + +1 + +-6.55138056424646,59.1668438992595 +-6.56333410186093,59.2563517058346 +-6.38851370423423,59.2623745553938 +-6.37701443260896,59.1728454955305 +-6.55138056424646,59.1668438992595 + + + + + +HW44 +#labelStyle + +-6.47005255625522,59.214638272267 + + + + +HW45 + +Small Square HW45 Boundry Box +#Line2 + + +1 + +-6.56333530102517,59.256360657374 +-6.57536286296544,59.3458657301896 +-6.40008536964563,59.3519099464885 +-6.3885148578285,59.2623835090643 +-6.56333530102517,59.256360657374 + + + + + +HW45 +#labelStyle + +-6.48181643422746,59.3041644240034 + + + + +HW46 + +Small Square HW46 Boundry Box +#Line2 + + +1 + +-6.57536406956488,59.3458746814549 +-6.58746629885757,59.4353770095037 +-6.41172890161207,59.4414427048557 +-6.40008653039548,59.3519188998961 +-6.57536406956488,59.3458746814549 + + + + + +HW46 +#labelStyle + +-6.4936532672042,59.3936878926648 + + + + +HW47 + +Small Square HW47 Boundry Box +#Line2 + + +1 + +-6.5874675129569,59.435385960494 +-6.59964506016018,59.5248855326267 +-6.4234449266613,59.5309728203384 +-6.41173006957977,59.4414516579996 +-6.5874675129569,59.435385960494 + + + + + +HW47 +#labelStyle + +-6.50556369006258,59.4832086676703 + + + + +HW48 + +Small Square HW48 Boundry Box +#Line2 + + +1 + +-6.59964628182484,59.5248944833408 +-6.61189980513846,59.6143912882638 +-6.4352340786858,59.6205002826468 +-6.42344610190989,59.5309817732175 +-6.59964628182484,59.5248944833408 + + + + + +HW48 +#labelStyle + +-6.5175483451292,59.5727267383021 + + + + +HW49 + +Small Square HW49 Boundry Box +#Line2 + + +1 + +-6.61190103443466,59.6144002387006 +-6.62423119981192,59.7038942649736 +-6.44709699905082,59.7100250813558 +-6.43523526127904,59.62050923526 +-6.61190103443466,59.6144002387006 + + + + + +HW49 +#labelStyle + +-6.5296078822892,59.6622420937022 + + + + +HW50 + +Small Square HW50 Boundry Box +#Line2 + + +1 + +-6.33169580525584,58.8146679907525 +-6.34291612227615,58.9042074447011 +-6.16982766817586,58.909914679977 +-6.15905129781496,58.8203552123587 +-6.33169580525584,58.8146679907525 + + + + + +HW50 +#labelStyle + +-6.25086462883588,58.8623202754249 + + + + +HW51 + +Small Square HW51 Boundry Box +#Line2 + + +1 + +-6.34291724785229,58.9042163994129 +-6.35420639848338,58.9937532697692 +-6.18067125491847,58.9994806241456 +-6.16982874921835,58.9099236366956 +-6.34291724785229,58.9042163994129 + + + + + +HW51 +#labelStyle + +-6.26189779917769,58.9518775288246 + + + + +HW52 + +Small Square HW52 Boundry Box +#Line2 + + +1 + +-6.35420753097302,58.9937622242221 +-6.36556610641421,59.0832965014628 +-6.19158155198273,59.0890440792775 +-6.18067234260347,58.9994895806157 +-6.35420753097302,58.9937622242221 + + + + + +HW52 +#labelStyle + +-6.2729987505508,59.041432246087 + + + + +HW53 + +Small Square HW53 Boundry Box +#Line2 + + +1 + +-6.36556724587682,59.083305455656 +-6.37699584417862,59.1728371301354 +-6.2025591343565,59.1786050366393 +-6.1915826463674,59.0890530354982 +-6.36556724587682,59.083305455656 + + + + + +HW53 +#labelStyle + +-6.28416806614281,59.1309844180855 + + + + +HW54 + +Small Square HW54 Boundry Box +#Line2 + + +1 + +-6.37699699067435,59.1728460840678 +-6.38849621683749,59.2623751460157 +-6.21360458371448,59.2681634873838 +-6.20256023549868,59.1786139926098 +-6.37699699067435,59.1728460840678 + + + + + +HW54 +#labelStyle + +-6.29540633591162,59.2205340355752 + + + + +HW55 + +Small Square HW55 Boundry Box +#Line2 + + +1 + +-6.3884973704272,59.2623840996863 +-6.40006783650339,59.351910539206 +-6.22471848851519,59.3577194225478 +-6.21360569167266,59.2681724431032 +-6.3884973704272,59.2623840996863 + + + + + +HW55 +#labelStyle + +-6.30671415668338,59.310081089191 + + + + +HW56 + +Small Square HW56 Boundry Box +#Line2 + + +1 + +-6.40006899724865,59.3519194926138 +-6.4117113224431,59.4414432996799 +-6.23590144409972,59.4472728330506 +-6.22471960334857,59.3577283780153 +-6.40006899724865,59.3519194926138 + + + + + +HW56 +#labelStyle + +-6.31809213225237,59.3996255694458 + + + + +HW57 + +Small Square HW57 Boundry Box +#Line2 + + +1 + +-6.4117124904062,59.441452252824 +-6.42342730118198,59.5309734172805 +-6.24715405279218,59.5368237096914 +-6.23590256586818,59.4472817882651 +-6.4117124904062,59.441452252824 + + + + + +HW57 +#labelStyle + +-6.32954087348241,59.4891674667282 + + + + +HW58 + +Small Square HW58 Boundry Box +#Line2 + + +1 + +-6.42342847642593,59.5309823701597 +-6.43521640661006,59.6205008817178 +-6.2584769240019,59.626372043148 +-6.24715518155631,59.536832664652 +-6.42342847642593,59.5309823701597 + + + + + +HW58 +#labelStyle + +-6.34106099841021,59.5787067713007 + + + + +HW59 + +Small Square HW59 Boundry Box +#Line2 + + +1 + +-6.43521758919862,59.6205098343312 +-6.44707928009009,59.7100256825672 +-6.26987067432745,59.7159178239745 +-6.25847805982299,59.6263809978539 +-6.43521758919862,59.6205098343312 + + + + + +HW59 +#labelStyle + +-6.35265313235046,59.6682434732977 + + + + +HW60 + +Small Square HW60 Boundry Box +#Line2 + + +1 + +-6.15903402831417,58.8203557696081 +-6.16981035424749,58.9099152391877 +-5.99665576935367,58.9153910399816 +-5.9863239518336,58.8258123621039 +-6.15903402831417,58.8203557696081 + + + + + +HW60 +#labelStyle + +-6.07794790587734,58.8679025453982 + + + + +HW61 + +Small Square HW61 Boundry Box +#Line2 + + +1 + +-6.16981143528553,58.9099241959064 +-6.18065389628789,58.999481185328 +-6.0070520536231,59.0049762956745 +-5.99665680580154,58.9153999986263 +-6.16981143528553,58.9099241959064 + + + + + +HW61 +#labelStyle + +-6.08853540863058,58.9574794644349 + + + + +HW62 + +Small Square HW62 Boundry Box +#Line2 + + +1 + +-6.1806549839684,58.9994901417983 +-6.19156414837743,59.0890446424417 +-6.01751231994934,59.0945591625473 +-6.00705309644181,59.0049852540807 +-6.1806549839684,58.9994901417983 + + + + + +HW62 +#labelStyle + +-6.09918797889827,59.0470539491743 + + + + +HW63 + +Small Square HW63 Boundry Box +#Line2 + + +1 + +-6.19156524275759,59.0890535986627 +-6.20254168550167,59.1786056017957 +-6.0280371201005,59.1841396327448 +-6.01751336919374,59.0945681207143 +-6.19156524275759,59.0890535986627 + + + + + +HW63 +#labelStyle + +-6.10990617682653,59.1366259913805 + + + + +HW64 + +Small Square HW64 Boundry Box +#Line2 + + +1 + +-6.2025427866393,59.1786145577665 +-6.21358708933295,59.2681640545428 +-6.0386270122657,59.2737176983079 +-6.02803817582609,59.1841485906717 +-6.2025427866393,59.1786145577665 + + + + + +HW64 +#labelStyle + +-6.12069056906864,59.2261955827097 + + + + +HW65 + +Small Square HW65 Boundry Box +#Line2 + + +1 + +-6.21358819728657,59.2681730102625 +-6.22470094832743,59.35771999172 +-6.04928256114836,59.3632933511719 +-6.03862807452862,59.2737266559939 +-6.21358819728657,59.2681730102625 + + + + + +HW65 +#labelStyle + +-6.13154172887934,59.315762714708 + + + + +HW66 + +Small Square HW66 Boundry Box +#Line2 + + +1 + +-6.22470206315622,59.3577289471876 +-6.2358838578238,59.4472734042465 +-6.06000433806104,59.4528665831648 +-6.04928363000541,59.3633023086163 +-6.22470206315622,59.3577289471876 + + + + + +HW66 +#labelStyle + +-6.1424602362108,59.4053273788102 + + + + +HW67 + +Small Square HW67 Boundry Box +#Line2 + + +1 + +-6.23588497958764,59.4472823594612 +-6.24713642014374,59.5368242829217 +-6.07079292102199,59.5424373860055 +-6.06000541356968,59.4528755403667 +-6.23588497958764,59.4472823594612 + + + + + +HW67 +#labelStyle + +-6.15344667781031,59.4948895663376 + + + + +HW68 + +Small Square HW68 Boundry Box +#Line2 + + +1 + +-6.24713754890322,59.5368332378825 +-6.25845924469414,59.6263726184234 +-6.08164889485338,59.6320057513016 +-6.07079400324036,59.542446342964 +-6.24713754890322,59.5368332378825 + + + + + +HW68 +#labelStyle + +-6.16450164731958,59.584449268496 + + + + +HW69 + +Small Square HW69 Boundry Box +#Line2 + + +1 + +-6.25846038051055,59.6263815731295 +-6.26985294807107,59.715918401306 +-6.09257285128129,59.7215716705484 +-6.08164998384032,59.632014708016 +-6.25846038051055,59.6263815731295 + + + + + +HW69 +#labelStyle + +-6.17562574537587,59.6740064763743 + + + + +HW70 + +Small Square HW70 Boundry Box +#Line2 + + +1 + +-5.98630667590927,58.8258128962792 +-5.99663844894672,58.9153915760376 +-5.82342043828119,58.92063576617 +-5.81353371271638,58.8310386848678 +-5.98630667590927,58.8258128962792 + + + + + +HW70 +#labelStyle + +-5.904966673496,58.8732536722665 + + + + +HW71 + +Small Square HW71 Boundry Box +#Line2 + + +1 + +-5.99663948539013,58.9154005346825 +-6.00703468845824,59.0049768336212 +-5.83336887467051,59.0102395223602 +-5.82342143008022,58.92064472666 +-5.99663948539013,58.9154005346825 + + + + + +HW71 +#labelStyle + +-5.91510795496073,58.962849448661 + + + + +HW72 + +Small Square HW72 Boundry Box +#Line2 + + +1 + +-6.00703573127246,59.0049857920276 +-6.01749490975344,59.0945597023944 +-5.84337855852282,59.0998409857997 +-5.83336987256807,59.0102484826212 +-6.00703573127246,59.0049857920276 + + + + + +HW72 +#labelStyle + +-5.92531158400904,59.0524428884765 + + + + +HW73 + +Small Square HW73 Boundry Box +#Line2 + + +1 + +-6.01749595899332,59.0945686605615 +-6.02801966459807,59.1841401745022 +-5.85345001829482,59.1894401494759 +-5.84337956257145,59.0998499458312 +-6.01749595899332,59.0945686605615 + + + + + +HW73 +#labelStyle + +-5.93557809765283,59.1420339843323 + + + + +HW74 + +Small Square HW74 Boundry Box +#Line2 + + +1 + +-6.02802072031911,59.1841491324293 +-6.03860951117892,59.2737182419856 +-5.86358378859684,59.2790370062819 +-5.85345102854768,59.1894491092771 +-6.02802072031911,59.1841491324293 + + + + + +HW74 +#labelStyle + +-5.94590803914647,59.2316227287499 + + + + +HW75 + +Small Square HW75 Boundry Box +#Line2 + + +1 + +-6.03861057343726,59.2737271996719 +-6.04926501419702,59.3632938967801 +-5.8737804102823,59.3686315490148 +-5.86358480510769,59.279045965852 +-6.03861057343726,59.2737271996719 + + + + + +HW75 +#labelStyle + +-5.95630195807729,59.3212091141506 + + + + +HW76 + +Small Square HW76 Boundry Box +#Line2 + + +1 + +-6.04926608304946,59.3633028542246 +-6.05998674496252,59.4528671307135 +-5.8840404305387,59.4582237703744 +-5.87378143310554,59.3686405083531 +-6.04926608304946,59.3633028542246 + + + + + +HW76 +#labelStyle + +-5.96676041045775,59.4107931328544 + + + + +HW77 + +Small Square HW77 Boundry Box +#Line2 + + +1 + +-6.05998782046653,59.4528760879156 +-6.07077528149124,59.542437935505 +-5.89436440298021,59.5478136629619 +-5.88404145972937,59.4582327294803 +-6.05998782046653,59.4528760879156 + + + + + +HW77 +#labelStyle + +-5.97728395881922,59.5003747770783 + + + + +HW78 + +Small Square HW78 Boundry Box +#Line2 + + +1 + +-6.07077636370495,59.5424468924637 +-6.0816312086029,59.6320063027623 +-5.90475288774192,59.6374012192772 +-5.89436543859401,59.5478226218344 +-6.07077636370495,59.5424468924637 + + + + + +HW78 +#labelStyle + +-5.98787317230733,59.589954038934 + + + + +HW79 + +Small Square HW79 Boundry Box +#Line2 + + +1 + +-6.08163229758514,59.6320152594768 +-6.09255511802106,59.7215722239807 +-5.91520645157565,59.7269864317185 +-5.90475392983517,59.6374101779158 +-6.08163229758514,59.6320152594768 + + + + + +HW79 +#labelStyle + +-5.99852862677905,59.679530910427 + + + + +HW80 + +Small Square HW80 Boundry Box +#Line2 + + +1 + +-5.81351643063708,58.8310391959519 +-5.8234031116665,58.9206362790541 +-5.650124386486,58.9256486896815 +-5.64068326920564,58.8360340131156 +-5.81351643063708,58.8310391959519 + + + + + +HW80 +#labelStyle + +-5.73192362873288,58.8783734841778 + + + + +HW81 + +Small Square HW81 Boundry Box +#Line2 + + +1 + +-5.82340410346106,58.9206452395443 +-5.83335150324452,59.0102400370537 +-5.6596244526357,59.0152701340007 +-5.65012533358425,58.9256576519357 +-5.82340410346106,58.9206452395443 + + + + + +HW81 +#labelStyle + +-5.74161815808204,58.9679873082887 + + + + +HW82 + +Small Square HW82 Boundry Box +#Line2 + + +1 + +-5.83335250113759,59.0102489973149 +-5.84336114201178,59.0998415023121 +-5.66918302558922,59.104889377477 +-5.65962540555958,59.0152790960352 +-5.83335250113759,59.0102489973149 + + + + + +HW82 +#labelStyle + +-5.75137230893086,59.0575988894021 + + + + +HW83 + +Small Square HW83 Boundry Box +#Line2 + + +1 + +-5.84336214605589,59.0998504623438 +-5.85343255642262,59.1894406678167 +-5.67880061040394,59.1945064139041 +-5.66918398438894,59.1048983392911 +-5.84336214605589,59.0998504623438 + + + + + +HW83 +#labelStyle + +-5.76118659506805,59.1472082209569 + + + + +HW84 + +Small Square HW84 Boundry Box +#Line2 + + +1 + +-5.85343356667092,59.189449627618 +-5.86356628108501,59.2790375264605 +-5.68847771802198,59.2841212369908 +-5.6788015751303,59.1945153754972 +-5.85343356667092,59.189449627618 + + + + + +HW84 +#labelStyle + +-5.77106153625849,59.2368152963039 + + + + +HW85 + +Small Square HW85 Boundry Box +#Line2 + + +1 + +-5.86356729759128,59.2790464860308 +-5.87376285684998,59.3686320710409 +-5.69821486535575,59.3737338403595 +-5.68847868872636,59.2841301983622 +-5.86356729759128,59.2790464860308 + + + + + +HW85 +#labelStyle + +-5.78099765832997,59.3264201087031 + + + + +HW86 + +Small Square HW86 Boundry Box +#Line2 + + +1 + +-5.87376387966862,59.3686410303794 +-5.88402283090263,59.4582242942579 +-5.70801257537514,59.463344217545 +-5.69821584209016,59.3737428015087 +-5.87376387966862,59.3686410303794 + + + + + +HW86 +#labelStyle + +-5.79099549326151,59.416022651323 + + + + +HW87 + +Small Square HW87 Boundry Box +#Line2 + + +1 + +-5.88402386008867,59.4582332533639 +-5.89434675685467,59.5478141887124 +-5.71787137719602,59.5529523619927 +-5.70801355819217,59.4633531784712 +-5.88402386008867,59.4582332533639 + + + + + +HW87 +#labelStyle + +-5.80105557927316,59.5056229172388 + + + + +HW88 + +Small Square HW88 Boundry Box +#Line2 + + +1 + +-5.8943477924638,59.5478231475851 +-5.90473519483871,59.6374017469047 +-5.72779180617047,59.6425582670572 +-5.71787236614889,59.5529613226953 +-5.8943477924638,59.5478231475851 + + + + + +HW88 +#labelStyle + +-5.81117846091741,59.5952208994308 + + + + +HW89 + +Small Square HW89 Boundry Box +#Line2 + + +1 + +-5.90473623692727,59.6374107055435 +-5.91518871160409,59.726986961233 +-5.73777440397856,59.7321619260007 +-5.72779280131304,59.6425672275355 +-5.90473623692727,59.6374107055435 + + + + + +HW89 +#labelStyle + +-5.82136468917217,59.6848165907829 + + + + +HW90 + +Small Square HW90 Boundry Box +#Line2 + + +1 + +-5.64066598124056,58.8360345010922 +-5.65010705393503,58.9256491793771 +-5.47677033147169,58.9304296490121 +-5.46777531593491,58.8407981866129 +-5.64066598124056,58.8360345010922 + + + + + +HW90 +#labelStyle + +-5.55882147469143,58.8832618165985 + + + + +HW91 + +Small Square HW91 Boundry Box +#Line2 + + +1 + +-5.65010800102881,58.9256581416315 +-5.65960707522235,59.0152706254244 +-5.48582152815603,59.020067967809 +-5.47677123381953,58.9304386129495 +-5.65010800102881,58.9256581416315 + + + + + +HW91 +#labelStyle + +-5.56806874405825,58.9728928774796 + + + + +HW92 + +Small Square HW92 Boundry Box +#Line2 + + +1 + +-5.65960802814173,59.0152795874591 +-5.66916560303914,59.1048898706379 +-5.49492848518479,59.1097041734944 +-5.48582243605602,59.0200769315353 +-5.65960802814173,59.0152795874591 + + + + + +HW92 +#labelStyle + +-5.5773729029503,59.0625217847932 + + + + +HW93 + +Small Square HW93 Boundry Box +#Line2 + + +1 + +-5.66916656183433,59.1048988324522 +-5.67878314244042,59.1945069088112 +-5.50409168413191,59.1993382606324 +-5.4949293986848,59.1097131370091 +-5.66916656183433,59.1048988324522 + + + + + +HW93 +#labelStyle + +-5.58673444184782,59.1521485327623 + + + + +HW94 + +Small Square HW94 Boundry Box +#Line2 + + +1 + +-5.67878410716222,59.1945158704044 +-5.68846020436594,59.2841217336532 +-5.5133116121857,59.288970223711 +-5.50409260328038,59.199347223935 +-5.67878410716222,59.1945158704044 + + + + + +HW94 +#labelStyle + +-5.59615385693945,59.2417731155305 + + + + +HW95 + +Small Square HW95 Boundry Box +#Line2 + + +1 + +-5.68846117506574,59.2841306950248 +-5.69819730572573,59.3737343387865 +-5.52258876223053,59.378600057141 +-5.51331253703162,59.2889791868009 +-5.68846117506574,59.2841306950248 + + + + + +HW95 +#labelStyle + +-5.60563165020519,59.3313955271601 + + + + +HW96 + +Small Square HW96 Boundry Box +#Line2 + + +1 + +-5.69819828245553,59.3737432999358 +-5.70799496948723,59.4633447177459 +-5.53192363293001,59.4682277552546 +-5.52258969282349,59.3786090200177 +-5.69819828245553,59.3737432999358 + + + + + +HW96 +#labelStyle + +-5.61516832950078,59.4210157616311 + + + + +HW97 + +Small Square HW97 Boundry Box +#Line2 + + +1 + +-5.70799595229962,59.4633536786722 +-5.71785372476386,59.5529528639767 +-5.54131672881157,59.5578533123038 +-5.53192456932017,59.4682367179174 +-5.70799595229962,59.4633536786722 + + + + + +HW97 +#labelStyle + +-5.62476440864358,59.5106338128394 + + + + +HW98 + +Small Square HW98 Boundry Box +#Line2 + + +1 + +-5.71785471371207,59.5529618246795 +-5.72777410690523,59.6425587708339 +-5.55076856035257,59.6474767224597 +-5.54131767104968,59.5578622747523 +-5.71785471371207,59.5529618246795 + + + + + +HW98 +#labelStyle + +-5.63442040749991,59.6002496745959 + + + + +HW99 + +Small Square HW99 Boundry Box +#Line2 + + +1 + +-5.7277751020431,59.6425677313124 +-5.73775665758889,59.7321624315798 +-5.56027964406787,59.7370979798101 +-5.55076950848997,59.6474856846931 +-5.7277751020431,59.6425677313124 + + + + + +HW99 +#labelStyle + +-5.64413685207398,59.6898633406246 + + + + + +HX + +Large Square HX Boundry Box +#Line1 + + +1 + +-5.46775802235378,58.8407986514662 +-5.56026189155398,59.7370984614366 +-3.78253296461803,59.7732567922484 +-3.73612925856602,58.8756964145112 +-5.46775802235378,58.8407986514662 + + + + + +HX00 + +Small Square HX00 Boundry Box +#Line2 + + +1 + +-5.46775802235378,58.8407986514662 +-5.47675299325648,58.9304301155035 +-5.3033609964568,58.9349784900351 +-5.29481255317139,58.8453310524446 +-5.46775802235378,58.8407986514662 + + + + + +HX00 +#labelStyle + +-5.38566292027906,58.8879185123335 + + + + +HX01 + +Small Square HX01 Boundry Box +#Line2 + + +1 + +-5.47675389559984,58.930439079441 +-5.48580414502968,59.0200684359471 +-5.31196284766645,59.0246328684327 +-5.3033618540069,58.9349874555743 +-5.47675389559984,58.930439079441 + + + + + +HX01 +#labelStyle + +-5.39446244484083,58.9775659977909 + + + + +HX02 + +Small Square HX02 Boundry Box +#Line2 + + +1 + +-5.48580505292516,59.0200773996736 +-5.49491105687238,59.1097046432878 +-5.32061770722744,59.1142852172603 +-5.31196371049467,59.0246418337691 +-5.48580505292516,59.0200773996736 + + + + + +HX02 +#labelStyle + +-5.40331612132688,59.0672114149457 + + + + +HX03 + +Small Square HX03 Boundry Box +#Line2 + + +1 + +-5.49491197036785,59.1097136068027 +-5.50407421035615,59.1993387320897 +-5.32932603314998,59.2039355318162 +-5.32061857537931,59.1142941823935 +-5.49491197036785,59.1097136068027 + + + + + +HX03 +#labelStyle + +-5.41222441682744,59.1568547587689 + + + + +HX04 + +Small Square HX04 Boundry Box +#Line2 + + +1 + +-5.50407512950006,59.1993476953924 +-5.51329409266694,59.2889706968409 +-5.33808828878685,59.2935838073309 +-5.32932690667156,59.2039444967457 +-5.50407512950006,59.1993476953924 + + + + + +HX04 +#labelStyle + +-5.42118780387201,59.2464960241605 + + + + +HX05 + +Small Square HX05 Boundry Box +#Line2 + + +1 + +-5.51329501750828,59.288979659931 +-5.5225711966867,59.3786005319524 +-5.34690494291123,59.3832300389663 +-5.33808916772475,59.2935927720563 +-5.51329501750828,59.288979659931 + + + + + +HX05 +#labelStyle + +-5.43020676050841,59.3361352059484 + + + + +HX06 + +Small Square HX06 Boundry Box +#Line2 + + +1 + +-5.52257212727505,59.3786094948292 +-5.53190602107661,59.4682282317562 +-5.35577646979589,59.4728742218145 +-5.34690582731261,59.3832390034871 +-5.52257212727505,59.3786094948292 + + + + + +HX06 +#labelStyle + +-5.43928177038326,59.4257722988865 + + + + +HX07 + +Small Square HX07 Boundry Box +#Line2 + + +1 + +-5.53190695746213,59.4682371944192 +-5.54129907036164,59.5578537905048 +-5.36470334929371,59.5625163508965 +-5.35577735970845,59.4728831861302 +-5.53190695746213,59.4682371944192 + + + + + +HX07 +#labelStyle + +-5.44841332282384,59.5154072976542 + + + + +HX08 + +Small Square HX08 Boundry Box +#Line2 + + +1 + +-5.54130001259508,59.5578627529534 +-5.55075085501665,59.6474772023688 +-5.37368606691969,59.6521564211607 +-5.36470424476571,59.5625253150065 +-5.54130001259508,59.5578627529534 + + + + + +HX08 +#labelStyle + +-5.45760191292142,59.6050401968546 + + + + +HX09 + +Small Square HX09 Boundry Box +#Line2 + + +1 + +-5.55075180314934,59.6474861646025 +-5.56026189155398,59.7370984614366 +-5.38272511393439,59.7417944274822 +-5.37368696799997,59.6521653850646 +-5.55075180314934,59.6474861646025 + + + + + +HX09 +#labelStyle + +-5.46684804161603,59.6946709910134 + + + + +HX10 + +Small Square HX10 Boundry Box +#Line2 + + +1 + +-5.29479525424452,58.8453314941598 +-5.30334365284995,58.9349789333072 +-5.1298991101123,58.9392950660191 +-5.1217976865572,58.8496324650341 +-5.29479525424452,58.8453314941598 + + + + + +HX10 +#labelStyle + +-5.21245067994713,58.8923434215455 + + + + +HX11 + +Small Square HX11 Boundry Box +#Line2 + + +1 + +-5.30334451039557,58.9349878988465 +-5.31194545910203,59.0246333132699 +-5.13805116313324,59.0289646879729 +-5.12989992281965,58.9393040330786 +-5.30334451039557,58.9349878988465 + + + + + +HX11 +#labelStyle + +-5.22080199800529,58.9820065181953 + + + + +HX12 + +Small Square HX12 Boundry Box +#Line2 + + +1 + +-5.31194632192573,59.0246422786065 +-5.32060027342998,59.1142856636709 +-5.14625346724671,59.1186323596955 +-5.13805198084415,59.0289736548376 +-5.31194632192573,59.0246422786065 + + + + + +HX12 +#labelStyle + +-5.22920472502562,59.071667627629 + + + + +HX13 + +Small Square HX13 Boundry Box +#Line2 + + +1 + +-5.3206011415773,59.1142946288043 +-5.32930855384164,59.2039359798083 +-5.15450645682269,59.2082980771827 +-5.14625429000436,59.118641326365 +-5.3206011415773,59.1142946288043 + + + + + +HX13 +#labelStyle + +-5.23765930463063,59.1613267455295 + + + + +HX14 + +Small Square HX14 Boundry Box +#Line2 + + +1 + +-5.32930942735866,59.203944944738 +-5.33807076368743,59.2935842569128 +-5.16281057130066,59.2979618363706 +-5.15450728467078,59.2083070436566 +-5.32930942735866,59.203944944738 + + + + + +HX14 +#labelStyle + +-5.24616618561159,59.2509838675167 + + + + +HX15 + +Small Square HX15 Boundry Box +#Line2 + + +1 + +-5.33807164262073,59.2935932216384 +-5.3468873717381,59.3832304901464 +-5.17116625526344,59.3876236331351 +-5.16281140428339,59.2979708026485 +-5.33807164262073,59.2935932216384 + + + + + +HX15 +#labelStyle + +-5.25472582200368,59.3406389891466 + + + + +HX16 + +Small Square HX16 Boundry Box +#Line2 + + +1 + +-5.34688825613485,59.3832394546673 +-5.35575885226397,59.4728746746012 +-5.17957395851237,59.4772834632903 +-5.17116709342552,59.3876325992165 +-5.34688825613485,59.3832394546673 + + + + + +HX16 +#labelStyle + +-5.26333867316254,59.4302921059101 + + + + +HX17 + +Small Square HX17 Boundry Box +#Line2 + + +1 + +-5.35575974217187,59.4728836389171 +-5.36468568511546,59.5625168052983 +-5.18803413614382,59.5669413225877 +-5.17957480189905,59.4772924291748 +-5.35575974217187,59.4728836389171 + + + + + +HX17 +#labelStyle + +-5.27200520384209,59.5199432132318 + + + + +HX18 + +Small Square HX18 Boundry Box +#Line2 + + +1 + +-5.36468658058278,59.5625257694085 +-5.37366835580506,59.6521568771863 +-5.19654724862702,59.6565972067151 +-5.18803498480087,59.566950288275 +-5.36468658058278,59.5625257694085 + + + + + +HX18 +#labelStyle + +-5.28072588427375,59.6095923064689 + + + + +HX19 + +Small Square HX19 Boundry Box +#Line2 + + +1 + +-5.37366925688063,59.6521658410903 +-5.3827073555908,59.7417948851401 +-5.20511376188328,59.7462511112952 +-5.19654810260076,59.6566061722046 +-5.37366925688063,59.6521658410903 + + + + + +HX19 +#labelStyle + +-5.2895011902471,59.6992393809101 + + + + +HX20 + +Small Square HX20 Boundry Box +#Line2 + + +1 + +-5.12178038255542,58.8496328835969 +-5.12988176138694,58.9392954860576 +-4.95638740629769,58.9433792376462 +-4.94873342684915,58.8537022861602 +-5.12178038255542,58.8496328835969 + + + + + +HX20 +#labelStyle + +-5.03918747342965,58.8965364017727 + + + + +HX21 + +Small Square HX21 Boundry Box +#Line2 + + +1 + +-5.1298825740898,58.9393044531173 +-5.1380337694062,59.0289651094949 +-4.96408923178635,59.0330632860028 +-4.9563881741196,58.9433882061447 +-5.1298825740898,58.9393044531173 + + + + + +HX21 +#labelStyle + +-5.04709014648616,58.9862142950991 + + + + +HX22 + +Small Square HX22 Boundry Box +#Line2 + + +1 + +-5.1380345871126,59.0289740763598 +-5.14623602824201,59.1186327827087 +-4.97183854611221,59.1227454592517 +-4.96409000433677,59.0330722543139 +-5.1380345871126,59.0289740763598 + + + + + +HX22 +#labelStyle + +-5.05504148044824,59.075890278105 + + + + +HX23 + +Small Square HX23 Boundry Box +#Line2 + + +1 + +-5.14623685099512,59.1186417493784 +-5.15448897226198,59.2082985016949 +-4.97963575993246,59.2124257540496 +-4.97183932343197,59.1227544273752 +-5.14623685099512,59.1186417493784 + + + + + +HX23 +#labelStyle + +-5.0630418953968,59.1655643471487 + + + + +HX24 + +Small Square HX24 Boundry Box +#Line2 + + +1 + +-5.1544898001055,59.208307468169 +-5.1627930409032,59.2979622623898 +-4.98748128869937,59.3021041670013 +-4.97963654206286,59.2124347219851 +-5.1544898001055,59.208307468169 + + + + + +HX24 +#labelStyle + +-5.07109181630971,59.2552364985331 + + + + +HX25 + +Small Square HX25 Boundry Box +#Line2 + + +1 + +-5.16279387388133,59.2979712286678 +-5.17114867874606,59.3876240606691 +-4.99537555273024,59.3917806946589 +-4.98748207568221,59.3021131347484 +-5.16279387388133,59.2979712286678 + + + + + +HX25 +#labelStyle + +-5.07919167313299,59.3449067285054 + + + + +HX26 + +Small Square HX26 Boundry Box +#Line2 + + +1 + +-5.17114951690352,59.3876330267506 +-5.17955633558946,59.4772838923471 +-5.00331897727851,59.4814553335208 +-4.99537634460779,59.3917896622173 +-5.17114951690352,59.3876330267506 + + + + + +HX26 +#labelStyle + +-5.08734190085346,59.4345750332557 + + + + +HX27 + +Small Square HX27 Boundry Box +#Line2 + + +1 + +-5.17955717897149,59.4772928582317 +-5.18801646652729,59.5669417531754 +-5.01131199260617,59.5711280800306 +-5.00331977409353,59.4814643008901 +-5.17955717897149,59.4772928582317 + + + + + +HX27 +#labelStyle + +-5.09554293957244,59.5242414089159 + + + + +HX28 + +Small Square HX28 Boundry Box +#Line2 + + +1 + +-5.18801731517965,59.5669507188628 +-5.19652953202625,59.6565976388418 +-5.01935503405748,59.6607989305765 +-5.01131279440196,59.5711370472105 +-5.18801731517965,59.5669507188628 + + + + + +HX28 +#labelStyle + +-5.10379523458092,59.6139058515587 + + + + +HX29 + +Small Square HX29 Boundry Box +#Line2 + + +1 + +-5.19653038599528,59.6566066043315 +-5.20509599800514,59.7462515449691 +-5.0274485421339,59.7504678814896 +-5.01935584087783,59.6608078975666 +-5.19653038599528,59.6566066043315 + + + + + +HX29 +#labelStyle + +-5.11209923643597,59.7035683571967 + + + + +HX30 + +Small Square HX30 Boundry Box +#Line2 + + +1 + +-4.94871611804377,58.8537026815571 +-4.95637005272745,58.9433796344376 +-4.78282862379577,58.9472308730291 +-4.77562248965721,58.8575403849742 +-4.94871611804377,58.8537026815571 + + + + + +HX30 +#labelStyle + +-4.86587602548051,58.9004973179465 + + + + +HX31 + +Small Square HX31 Boundry Box +#Line2 + + +1 + +-4.95637082054487,58.9433886029361 +-4.96407183317267,59.0330636841958 +-4.79007981585035,59.0369285295844 +-4.78282934669189,58.9472398428849 +-4.95637082054487,58.9433886029361 + + + + + +HX31 +#labelStyle + +-4.87332963831043,58.9901891923599 + + + + +HX32 + +Small Square HX32 Boundry Box +#Line2 + + +1 + +-4.96407260571858,59.0330726525071 +-4.97182110217862,59.1227458588538 +-4.7973757297608,59.1266243819288 +-4.79008054319947,59.0369374992599 +-4.96407260571858,59.0330726525071 + + + + + +HX32 +#labelStyle + +-4.88082915916282,59.0798792291454 + + + + +HX33 + +Small Square HX33 Boundry Box +#Line2 + + +1 + +-4.97182187949384,59.1227548269774 +-4.97961827040012,59.2124261550682 +-4.80471675240278,59.2163184273429 +-4.79737646160137,59.1266333514237 +-4.97182187949384,59.1227548269774 + + + + + +HX33 +#labelStyle + +-4.88837498450694,59.1695674253001 + + + + +HX34 + +Small Square HX34 Boundry Box +#Line2 + + +1 + +-4.97961905252595,59.2124351230037 +-4.98746375328704,59.3021045694437 +-4.81210327517145,59.3060106630628 +-4.80471748877372,59.216327396657 +-4.97961905252595,59.2124351230037 + + + + + +HX34 +#labelStyle + +-4.89596751543594,59.2592537777733 + + + + +HX35 + +Small Square HX35 Boundry Box +#Line2 + + +1 + +-4.98746454026528,59.3021135371909 +-4.99535797115425,59.3917810985326 +-4.81953569404743,59.3957010862792 +-4.81210401611213,59.3060196321957 +-4.98746454026528,59.3021135371909 + + + + + +HX35 +#labelStyle + +-4.90360715773421,59.3489382834658 + + + + +HX36 + +Small Square HX36 Boundry Box +#Line2 + + +1 + +-4.99535876302716,59.3917900660912 +-5.00330134925271,59.4814557388334 +-4.82701440966388,59.4853896941366 +-4.81953643959768,59.3957100552308 +-4.99535876302716,59.3917900660912 + + + + + +HX36 +#labelStyle + +-4.91129432194589,59.4386209392291 + + + + +HX37 + +Small Square HX37 Boundry Box +#Line2 + + +1 + +-5.00330214606308,59.4814647062029 +-5.01129431784196,59.5711284867898 +-4.83453982737474,59.5750764837325 +-4.82701515986398,59.4853986629065 +-5.00330214606308,59.4814647062029 + + + + + +HX37 +#labelStyle + +-4.91902942344466,59.528301741864 + + + + +HX38 + +Small Square HX38 Boundry Box +#Line2 + + +1 + +-5.01129511963306,59.5711374539698 +-5.01933731226372,59.6607993387898 +-4.84211235732432,59.664761452116 +-4.83454058226548,59.5750854523204 +-5.01129511963306,59.5711374539698 + + + + + +HX38 +#labelStyle + +-4.92681288250461,59.6179806881201 + + + + +HX39 + +Small Square HX39 Boundry Box +#Line2 + + +1 + +-5.01933811907935,59.6608083057801 +-5.02743077301691,59.750468291165 +-4.8497324145179,59.7544445962877 +-4.84211311694695,59.6647704205217 +-5.01933811907935,59.6608083057801 + + + + + +HX39 +#labelStyle + +-4.93464512437253,59.707657774695 + + + + +HX40 + +Small Square HX40 Boundry Box +#Line2 + + +1 + +-4.77560517632003,58.8575407571927 +-4.78281126565477,58.9472312465605 +-4.60922550604618,58.9508498477267 +-4.60246759518186,58.8611466380161 +-4.77560517632003,58.8575407571927 + + + + + +HX40 +#labelStyle + +-4.69251906560954,58.9042260424078 + + + + +HX41 + +Small Square HX41 Boundry Box +#Line2 + + +1 + +-4.7828119885464,58.9472402164164 +-4.7900624126265,59.0369289044356 +-4.6160256822742,59.0405602932851 +-4.60922618397849,58.9508588188581 +-4.7828119885464,58.9472402164164 + + + + + +HX41 +#labelStyle + +-4.69952322632991,58.9939310813029 + + + + +HX42 + +Small Square HX42 Boundry Box +#Line2 + + +1 + +-4.79006313997109,59.0369378741113 +-4.79735828117717,59.1266247581068 +-4.62286780892239,59.1302690012914 +-4.61602636438354,59.0405692642429 +-4.79006313997109,59.0369378741113 + + + + + +HX42 +#labelStyle + +-4.70657053763229,59.0836343510486 + + + + +HX43 + +Small Square HX43 Boundry Box +#Line2 + + +1 + +-4.79735901301319,59.1266337276018 +-4.80469925818005,59.2163188048545 +-4.62975224902009,59.219975969613 +-4.62286849524485,59.1302779720752 +-4.79735901301319,59.1266337276018 + + + + + +HX43 +#labelStyle + +-4.71366137230809,59.1733358492441 + + + + +HX44 + +Small Square HX44 Boundry Box +#Line2 + + +1 + +-4.80469999454641,59.2163277741688 +-4.81208573502792,59.3060110419151 +-4.63667936983944,59.3096811960801 +-4.62975293959219,59.2199849402228 +-4.80469999454641,59.2163277741688 + + + + + +HX44 +#labelStyle + +-4.72079610749843,59.2630355734478 + + + + +HX45 + +Small Square HX45 Boundry Box +#Line2 + + +1 + +-4.81208647596399,59.3060200110482 +-4.81951810769895,59.3957014664793 +-4.64364954295726,59.3993846784842 +-4.63668006469812,59.3096901665156 +-4.81208647596399,59.3060200110482 + + + + + +HX45 +#labelStyle + +-4.72797512475751,59.3527335211766 + + + + +HX46 + +Small Square HX46 Boundry Box +#Line2 + + +1 + +-4.81951885324455,59.395710435431 +-4.82699677682381,59.4853900756916 +-4.65066314431815,59.4890864145776 +-4.6436502421399,59.3993936487452 +-4.81951885324455,59.395710435431 + + + + + +HX46 +#labelStyle + +-4.73519881011713,59.4424296899053 + + + + +HX47 + +Small Square HX47 Boundry Box +#Line2 + + +1 + +-4.82699752701925,59.4853990444617 +-4.83452214775399,59.5750768666495 +-4.65772055429855,59.5787864020726 +-4.65066384786256,59.4890953846638 +-4.82699752701925,59.4853990444617 + + + + + +HX47 +#labelStyle + +-4.74246755415229,59.5321240770653 + + + + +HX48 + +Small Square HX48 Boundry Box +#Line2 + + +1 + +-4.83452290264003,59.5750858352376 +-4.84209463063123,59.6647618364024 +-4.66482215777207,59.6684846386406 +-4.65772126224299,59.5787953719838 +-4.83452290264003,59.5750858352376 + + + + + +HX48 +#labelStyle + +-4.74978175204803,59.6218166800445 + + + + +HX49 + +Small Square HX49 Boundry Box +#Line2 + + +1 + +-4.84209539024915,59.6647708048082 +-4.84971464045829,59.7544449819507 +-4.67196834417587,59.7581811219114 +-4.66482287015526,59.6684936083766 +-4.84209539024915,59.6647708048082 + + + + + +HX49 +#labelStyle + +-4.75714180366736,59.7115074961856 + + + + +HX50 + +Small Square HX50 Boundry Box +#Line2 + + +1 + +-4.60245027758512,58.861146987044 +-4.609208143609,58.950850197986 +-4.43558080087775,58.9542360447596 +-4.42927146795015,58.8645209292285 +-4.60245027758512,58.861146987044 + + + + + +HX50 +#labelStyle + +-4.51911932781734,58.9077224549222 + + + + +HX51 + +Small Square HX51 Boundry Box +#Line2 + + +1 + +-4.6092088215368,58.9508591691175 +-4.61600827471709,59.0405606447824 +-4.44192960245967,59.0439584591929 +-4.43558143381057,58.9542450170847 +-4.6092088215368,58.9508591691175 + + + + + +HX51 +#labelStyle + +-4.52567366795217,58.997439840737 + + + + +HX52 + +Small Square HX52 Boundry Box +#Line2 + + +1 + +-4.61600895682191,59.0405696157402 +-4.62285035596801,59.1302693540329 +-4.4483175788445,59.1336791984842 +-4.44193023929314,59.0439674313506 +-4.61600895682191,59.0405696157402 + + + + + +HX52 +#labelStyle + +-4.53226839694148,59.0871555216561 + + + + +HX53 + +Small Square HX53 Boundry Box +#Line2 + + +1 + +-4.62285104228592,59.1302783248169 +-4.62973475038869,59.2199763236054 +-4.45474506915439,59.2233982610512 +-4.44831821961234,59.1336881704743 +-4.62285104228592,59.1302783248169 + + + + + +HX53 +#labelStyle + +-4.53890386383655,59.1768694958437 + + + + +HX54 + +Small Square HX54 Boundry Box +#Line2 + + +1 + +-4.62973544095621,59.2199852942153 +-4.63666182524885,59.30968155133 +-4.46121241647649,59.3131156452803 +-4.45474571389072,59.2234072328736 +-4.62973544095621,59.2199852942153 + + + + + +HX54 +#labelStyle + +-4.54558042176308,59.2665817614302 + + + + +HX55 + +Small Square HX55 Boundry Box +#Line2 + + +1 + +-4.63666252010293,59.3096905217656 +-4.64363195212289,59.3993850349982 +-4.46771996792085,59.4028313495258 +-4.46121306521581,59.3131246169348 +-4.63666252010293,59.3096905217656 + + + + + +HX55 +#labelStyle + +-4.55229842798058,59.3562923165109 + + + + +HX56 + +Small Square HX56 Boundry Box +#Line2 + + +1 + +-4.64363265130089,59.3993940052593 +-4.65064550695292,59.4890867723623 +-4.47426807467934,59.4925453721092 +-4.46772062069807,59.4028403210121 +-4.64363265130089,59.3993940052593 + + + + + +HX56 +#labelStyle + +-4.55905824394287,59.4460011591458 + + + + +HX57 + +Small Square HX57 Boundry Box +#Line2 + + +1 + +-4.65064621049266,59.4890957424487 +-4.65770287011288,59.5787867611348 +-4.48085709208566,59.582257711319 +-4.4742687315298,59.4925543434274 +-4.65064621049266,59.4890957424487 + + + + + +HX57 +#labelStyle + +-4.56586023535952,59.5357082873583 + + + + +HX58 + +Small Square HX58 Boundry Box +#Line2 + + +1 + +-4.65770357805263,59.5787957310461 +-4.66480442647385,59.668484998987 +-4.4874873796763,59.6719683654094 +-4.48085775304509,59.5822666824687 +-4.65770357805263,59.5787957310461 + + + + + +HX58 +#labelStyle + +-4.57270477225851,59.6254136991353 + + + + +HX59 + +Small Square HX59 Boundry Box +#Line2 + + +1 + +-4.66480513885231,59.6684939687232 +-4.67195056547045,59.7581814835491 +-4.49415930125271,59.7616773325999 +-4.48748804478087,59.6719773363905 +-4.66480513885231,59.6684939687232 + + + + + +HX59 +#labelStyle + +-4.57959222904993,59.7151173924256 + + + + +HX60 + +Small Square HX60 Boundry Box +#Line2 + + +1 + +-4.42925414636652,58.8645212550546 +-4.43556343441936,58.9542363717356 +-4.26189726023969,58.9573893546241 +-4.25603683655079,58.8676631499715 +-4.42925414636652,58.8645212550546 + + + + + +HX60 +#labelStyle + +-4.34567955032893,58.910986442695 + + + + +HX61 + +Small Square HX61 Boundry Box +#Line2 + + +1 + +-4.43556406734768,58.9542453440608 +-4.44191219084667,59.0439587873247 +-4.26779435198877,59.0471229169304 +-4.26189784813969,58.9573983280611 +-4.43556406734768,58.9542453440608 + + + + + +HX61 +#labelStyle + +-4.35178372487043,59.0007153569694 + + + + +HX62 + +Small Square HX62 Boundry Box +#Line2 + + +1 + +-4.44191282767561,59.0439677594825 +-4.44830012179911,59.1336795277779 +-4.27372783901574,59.136854862247 +-4.26779494351267,59.0471318902058 +-4.44191282767561,59.0439677594825 + + + + + +HX62 +#labelStyle + +-4.35792552252319,59.0904426263667 + + + + +HX63 + +Small Square HX63 Boundry Box +#Line2 + + +1 + +-4.4483007625624,59.1336884997681 +-4.45472756639646,59.2233985915128 +-4.27969803647866,59.2265851895041 +-4.27372843419487,59.1368638353606 +-4.4483007625624,59.1336884997681 + + + + + +HX63 +#labelStyle + +-4.36410526853994,59.1801682495796 + + + + +HX64 + +Small Square HX64 Boundry Box +#Line2 + + +1 + +-4.45472821112821,59.2234075633353 +-4.46119486772345,59.3131159769161 +-4.28570526322177,59.3163138976068 +-4.27969863534471,59.2265941624559 +-4.45472821112821,59.2234075633353 + + + + + +HX64 +#labelStyle + +-4.37032329197158,59.2698922252727 + + + + +HX65 + +Small Square HX65 Boundry Box +#Line2 + + +1 + +-4.46119551645816,59.3131249485706 +-4.46770237288767,59.4028316823418 +-4.29174984182943,59.4060409854339 +-4.28570586580682,59.3163228703966 +-4.46119551645816,59.3131249485706 + + + + + +HX65 +#labelStyle + +-4.3765799257225,59.3596145520819 + + + + +HX66 + +Small Square HX66 Boundry Box +#Line2 + + +1 + +-4.46770302566026,59.4028406538283 +-4.47425043307852,59.4925457061118 +-4.29783209868084,59.495766451838 +-4.29175044816592,59.4060499580617 +-4.46770302566026,59.4028406538283 + + + + + +HX66 +#labelStyle + +-4.38287550660699,59.4493352286142 + + + + +HX67 + +Small Square HX67 Boundry Box +#Line2 + + +1 + +-4.47425108992431,59.49255467743 +-4.48083940362718,59.5822580465144 +-4.3039523640059,59.5854902956442 +-4.29783270880161,59.4957754243035 +-4.47425108992431,59.49255467743 + + + + + +HX67 +#labelStyle + +-4.38921037540664,59.5390542534463 + + + + +HX68 + +Small Square HX68 Boundry Box +#Line2 + + +1 + +-4.48084006458191,59.5822670176642 +-4.48746964406762,59.671968701804 +-4.31011097194191,59.6752125156503 +-4.30395297794416,59.5854992679475 +-4.48084006458191,59.5822670176642 + + + + + +HX68 +#labelStyle + +-4.39558487692866,59.6287716251247 + + + + +HX69 + +Small Square HX69 Boundry Box +#Line2 + + +1 + +-4.48747030916745,59.6719776727852 +-4.4941415181987,59.7616776702001 +-4.31630826059137,59.7649331106253 +-4.31011158973127,59.675221487791 +-4.48747030916745,59.6719776727852 + + + + + +HX69 +#labelStyle + +-4.40199936006535,59.7184873421646 + + + + +HX70 + +Small Square HX70 Boundry Box +#Line2 + + +1 + +-4.25601951125332,58.8676634525854 +-4.2618798900355,58.9573896583061 +-4.08817763993184,58.9603096753055 +-4.08276643336813,58.8705731990354 +-4.25601951125332,58.8676634525854 + + + + + +HX70 +#labelStyle + +-4.17220247532637,58.9140179003843 + + + + +HX71 + +Small Square HX71 Boundry Box +#Line2 + + +1 + +-4.261880477931,58.9573986317432 +-4.26777693659763,59.0471232216861 +-4.09362271035005,59.050053563669 +-4.08817818276807,58.9603186497724 +-4.261880477931,58.9573986317432 + + + + + +HX71 +#labelStyle + +-4.17785616279234,59.0037575238191 + + + + +HX72 + +Small Square HX72 Boundry Box +#Line2 + + +1 + +-4.267777528117,59.0471321949616 +-4.27371037815951,59.136855168082 +-4.09910139288816,59.1397958889278 +-4.09362325653304,59.0500625379797 +-4.267777528117,59.0471321949616 + + + + + +HX72 +#labelStyle + +-4.18354470388296,59.0934955581513 + + + + +HX73 + +Small Square HX73 Boundry Box +#Line2 + + +1 + +-4.27371097333407,59.1368641411957 +-4.27968052987679,59.2265854964241 +-4.10461397868719,59.2295366504875 +-4.09910194244686,59.1398048630822 +-4.27371097333407,59.1368641411957 + + + + + +HX73 +#labelStyle + +-4.18926839999804,59.1832320025646 + + + + +HX74 + +Small Square HX74 Boundry Box +#Line2 + + +1 + +-4.27968112873825,59.226594469376 +-4.2856877105913,59.3163142056174 +-4.11016076229467,59.3192758477336 +-4.10461453165089,59.2295456244854 +-4.27968112873825,59.226594469376 + + + + + +HX74 +#labelStyle + +-4.19502755605823,59.2729668562205 + + + + +HX75 + +Small Square HX75 Boundry Box +#Line2 + + +1 + +-4.28568831317173,59.3163231784074 +-4.29173224288494,59.406041294541 +-4.11574204171442,59.4090134800315 +-4.110161318693,59.3192848215751 +-4.28568831317173,59.3163231784074 + + + + + +HX75 +#labelStyle + +-4.20082248055643,59.3627001182576 + + + + +HX76 + +Small Square HX76 Boundry Box +#Line2 + + +1 + +-4.29173284921679,59.4060502671688 +-4.29781445313444,59.4957667620472 +-4.12135811845721,59.4987495467258 +-4.11574260157734,59.4090224537165 +-4.29173284921679,59.4060502671688 + + + + + +HX76 +#labelStyle + +-4.20665348561006,59.4524317877911 + + + + +HX77 + +Small Square HX77 Boundry Box +#Line2 + + +1 + +-4.29781506325053,59.4957757345129 +-4.30393467156716,59.5854906069616 +-4.12700929759239,59.5884840471395 +-4.12135868181507,59.4987585202542 +-4.29781506325053,59.4957757345129 + + + + + +HX77 +#labelStyle + +-4.21252088701432,59.5421618639123 + + + + +HX78 + +Small Square HX78 Boundry Box +#Line2 + + +1 + +-4.30393528550071,59.5854995792649 +-4.31009323231787,59.6752128280816 +-4.13269588780028,59.6782169805739 +-4.12700986447586,59.5884930205112 +-4.30393528550071,59.5854995792649 + + + + + +HX78 +#labelStyle + +-4.21842500429624,59.6318903456882 + + + + +HX79 + +Small Square HX79 Boundry Box +#Line2 + + +1 + +-4.31009385010249,59.6752218002225 +-4.3162904734865,59.7649334241766 +-4.13841820142565,59.7679483463078 +-4.13269645824041,59.6782259537889 +-4.31009385010249,59.6752218002225 + + + + + +HX79 +#labelStyle + +-4.22436616076989,59.7216172321606 + + + + +HX80 + +Small Square HX80 Boundry Box +#Line2 + + +1 + +-4.08274910463023,58.8705734784274 +-4.08816026625761,58.9603099556837 +-3.91442469933387,58.9629969122905 +-3.90946299431523,58.8732509826531 +-4.08274910463023,58.8705734784274 + + + + + +HX80 +#labelStyle + +-3.99869084868042,58.9168167301142 + + + + +HX81 + +Small Square HX81 Boundry Box +#Line2 + + +1 + +-4.08816080908933,58.9603189301508 +-4.0936052914589,59.0500538450387 +-3.91941746066387,59.052750304141 +-3.9144251970777,58.9630058877053 +-4.08816080908933,58.9603189301508 + + + + + +HX81 +#labelStyle + +-4.00389375116771,59.0065662426303 + + + + +HX82 + +Small Square HX82 Boundry Box +#Line2 + + +1 + +-4.09360583763736,59.0500628193495 +-4.0990839285016,59.1397961712942 +-3.92444104759853,59.1425021824961 +-3.91941796147701,59.0527592794045 +-4.09360583763736,59.0500628193495 + + + + + +HX82 +#labelStyle + +-4.00912873432301,59.0963142175652 + + + + +HX83 + +Small Square HX83 Boundry Box +#Line2 + + +1 + +-4.09908447805574,59.1398051454487 +-4.10459646852433,59.2295369338557 +-3.9294957272129,59.2322525471991 +-3.92444155150753,59.1425111576083 +-4.09908447805574,59.1398051454487 + + + + + +HX83 +#labelStyle + +-4.01439607564265,59.1860606545567 + + + + +HX84 + +Small Square HX84 Boundry Box +#Line2 + + +1 + +-4.10459702148345,59.2295459078538 +-4.11014320607219,59.319276132109 +-3.93458176970798,59.3220013980784 +-3.92949623424463,59.2322615221598 +-4.10459702148345,59.2295459078538 + + + + + +HX84 +#labelStyle + +-4.0196960558657,59.2758055532252 + + + + +HX85 + +Small Square HX85 Boundry Box +#Line2 + + +1 + +-4.1101437624659,59.3192851059506 +-4.11572443914653,59.4090137654194 +-3.93969944845639,59.4117487349473 +-3.93458227988962,59.3220103728878 +-4.1101437624659,59.3192851059506 + + + + + +HX85 +#labelStyle + +-4.02502895902127,59.3655489131739 + + + + +HX86 + +Small Square HX86 Boundry Box +#Line2 + + +1 + +-4.11572499900481,59.4090227391044 +-4.12134046925564,59.4987498331315 +-3.94484904004893,59.5014945576036 +-3.93969996181543,59.4117577096053 +-4.11572499900481,59.4090227391044 + + + + + +HX86 +#labelStyle + +-4.03039507247673,59.4552907339879 + + + + +HX87 + +Small Square HX87 Boundry Box +#Line2 + + +1 + +-4.12134103260882,59.49875880666 +-4.12699160146634,59.5884843345684 +-3.95003082434188,59.5912388658288 +-3.94484955661319,59.5015035321101 +-4.12134103260882,59.49875880666 + + + + + +HX87 +#labelStyle + +-4.03579468698671,59.5450310152339 + + + + +HX88 + +Small Square HX88 Boundry Box +#Line2 + + +1 + +-4.1269921683451,59.5884933079402 +-4.13267814445641,59.6782172690315 +-3.95524508450522,59.6809816593881 +-3.95003134413952,59.5912478401839 +-4.1269921683451,59.5884933079402 + + + + + +HX88 +#labelStyle + +-4.041228096743,59.6347697564598 + + + + +HX89 + +Small Square HX89 Boundry Box +#Line2 + + +1 + +-4.1326787148918,59.6782262422466 +-4.13840041056804,59.7679486357996 +-3.96049210707162,59.7707229380297 +-3.95524560756472,59.6809906335917 +-4.1326787148918,59.6782262422466 + + + + + +HX89 +#labelStyle + +-4.04669559942533,59.724506957194 + + + + +HX90 + +Small Square HX90 Boundry Box +#Line2 + + +1 + +-3.90944566241065,58.8732512388141 +-3.9144073224657,58.9629971693559 +-3.74064120113357,58.9654509785787 +-3.73612925856602,58.8756964145112 +-3.90944566241065,58.8732512388141 + + + + + +HX90 +#labelStyle + +-3.8251474196812,58.9193828414867 + + + + +HX91 + +Small Square HX91 Boundry Box +#Line2 + + +1 + +-3.91440782020503,58.9630061447708 +-3.9194000385512,59.0527505621156 +-3.74518138940684,59.0552130506511 +-3.74064165375877,58.9654599548593 +-3.91440782020503,58.9630061447708 + + + + + +HX91 +#labelStyle + +-3.82989926291536,59.0091414222841 + + + + +HX92 + +Small Square HX92 Boundry Box +#Line2 + + +1 + +-3.9194005393598,59.0527595373792 +-3.92442357996254,59.1425024413846 +-3.7497496136888,59.1449736545541 +-3.74518184482358,59.0552220267849 +-3.9194005393598,59.0527595373792 + + + + + +HX92 +#labelStyle + +-3.83468041066498,59.0988985127611 + + + + +HX93 + +Small Square HX93 Boundry Box +#Line2 + + +1 + +-3.92442408386698,59.1425114164969 +-3.92947821377238,59.2322528070063 +-3.75434611694363,59.2347327905309 +-3.74975007192124,59.144982630541 +-3.92442408386698,59.1425114164969 + + + + + +HX93 +#labelStyle + +-3.83949111647641,59.1886541129715 + + + + +HX94 + +Small Square HX94 Boundry Box +#Line2 + + +1 + +-3.92947872079952,59.2322617819672 +-3.93456421017927,59.3220016588092 +-3.75897114498009,59.3244904588147 +-3.75434657801622,59.2347417663711 +-3.92947872079952,59.2322617819672 + + + + + +HX94 +#labelStyle + +-3.84433163685978,59.2784082229573 + + + + +HX95 + +Small Square HX95 Boundry Box +#Line2 + + +1 + +-3.93456472035628,59.3220106336187 +-3.93968184255337,59.4117489966066 +-3.76362494649309,59.4142466596283 +-3.75897160891754,59.3244994345081 +-3.93456472035628,59.3220106336187 + + + + + +HX95 +#labelStyle + +-3.84920223133224,59.3681608427479 + + + + +HX96 + +Small Square HX96 Boundry Box +#Line2 + + +1 + +-3.93968235590776,59.4117579712646 +-3.94483138748298,59.5014948201962 +-3.7683077731061,59.5040013931836 +-3.76362541332042,59.414255635175 +-3.93968235590776,59.4117579712646 + + + + + +HX96 +#labelStyle + +-3.85410316246208,59.4579119723596 + + + + +HX97 + +Small Square HX97 Boundry Box +#Line2 + + +1 + +-3.94483190404256,59.5015037947028 +-3.95001312482187,59.5912391293597 +-3.77301987941419,59.5937546596813 +-3.76830824284862,59.5040103685836 +-3.94483190404256,59.5015037947028 + + + + + +HX97 +#labelStyle + +-3.85903469591351,59.5476616117953 + + + + +HX98 + +Small Square HX98 Boundry Box +#Line2 + + +1 + +-3.95001364461479,59.5912481037149 +-3.95522733773744,59.6809819238623 +-3.77776152302794,59.6835064593105 +-3.77302035209752,59.5937636349345 +-3.95001364461479,59.5912481037149 + + + + + +HX98 +#labelStyle + +-3.86399710049227,59.6374097610443 + + + + +HX99 + +Small Square HX99 Boundry Box +#Line2 + + +1 + +-3.9552278607922,59.680990898066 +-3.9604743127598,59.7707232034523 +-3.78253296461803,59.7732567922484 +-3.77776199867798,59.6835154344171 +-3.9552278607922,59.680990898066 + + + + + +HX99 +#labelStyle + +-3.86899064819209,59.7271564200816 + + + + + +HY + +Large Square HY Boundry Box +#Line1 + + +1 + +-3.73611192376886,58.8756966474329 +-3.78251516715089,59.7732570335929 +-2.00178312730847,59.7853399868842 +-2.00172999275069,58.8873577449102 +-3.73611192376886,58.8756966474329 + + + + + +HY00 + +Small Square HY00 Boundry Box +#Line2 + + +1 + +-3.73611192376886,58.8756966474329 +-3.7406238213479,58.9654512123229 +-3.56682991105439,58.967671794693 +-3.56276796828672,58.8779094157603 +-3.73611192376886,58.8756966474329 + + + + + +HY00 +#labelStyle + +-3.65157494076803,58.9217161515919 + + + + +HY01 + +Small Square HY01 Boundry Box +#Line2 + + +1 + +-3.74062427396858,58.9654601886036 +-3.74516396435145,59.0552132852222 +-3.57091728613532,59.0574417230874 +-3.56683031853708,58.9676807717573 +-3.74062427396858,58.9654601886036 + + + + + +HY01 +#labelStyle + +-3.65587547414902,59.0114829792098 + + + + +HY02 + +Small Square HY02 Boundry Box +#Line2 + + +1 + +-3.74516441976366,59.055222261356 +-3.7497321430846,59.1449738899563 +-3.5750299048256,59.1472102243478 +-3.57091769613151,59.0574507000089 +-3.74516441976366,59.055222261356 + + + + + +HY02 +#labelStyle + +-3.66020253297198,59.1012483594994 + + + + +HY03 + +Small Square HY03 Boundry Box +#Line2 + + +1 + +-3.74973260131248,59.1449828659433 +-3.7543286005091,59.2347330267686 +-3.57916798593762,59.2369772990797 +-3.57503031735705,59.1472192011266 +-3.74973260131248,59.1449828659433 + + + + + +HY03 +#labelStyle + +-3.66455634679073,59.1910122928936 + + + + +HY04 + +Small Square HY04 Boundry Box +#Line2 + + +1 + +-3.75432906157709,59.2347420026088 +-3.75895358243126,59.3244906958923 +-3.58333175084628,59.3267429478829 +-3.57916840102634,59.2369862757159 +-3.75432906157709,59.2347420026088 + + + + + +HY04 +#labelStyle + +-3.66893714784317,59.2807747798179 + + + + +HY05 + +Small Square HY05 Boundry Box +#Line2 + + +1 + +-3.75895404636409,59.3244996715858 +-3.76360733754355,59.4142468975503 +-3.58752142352646,59.4165071713509 +-3.58333216851454,59.3267519243765 +-3.75895404636409,59.3244996715858 + + + + + +HY05 +#labelStyle + +-3.67334517109048,59.3705358206894 + + + + +HY06 + +Small Square HY06 Boundry Box +#Line2 + + +1 + +-3.76360780436622,59.4142558730971 +-3.7682901174669,59.5040016319543 +-3.5917372305912,59.5062699700708 +-3.58752184379678,59.416516147702 +-3.76360780436622,59.4142558730971 + + + + + +HY06 +#labelStyle + +-3.67778065425703,59.4602954159167 + + + + +HY07 + +Small Square HY07 Boundry Box +#Line2 + + +1 + +-3.76829058720474,59.5040106073544 +-3.77300217679389,59.5937548993053 +-3.59597940133051,59.5960313446228 +-3.59173765348638,59.5062789462795 +-3.76829058720474,59.5040106073544 + + + + + +HY07 +#labelStyle + +-3.68224383787098,59.5500535659 + + + + +HY08 + +Small Square HY08 Boundry Box +#Line2 + + +1 + +-3.7730026494725,59.5937638745587 +-3.77774377313252,59.6835066997924 +-3.60024816775092,59.6857912955802 +-3.59597982687361,59.5960403206891 +-3.7730026494725,59.5937638745587 + + + + + +HY08 +#labelStyle + +-3.68673496530563,59.63981027103 + + + + +HY09 + +Small Square HY09 Boundry Box +#Line2 + + +1 + +-3.77774424877782,59.6835156748991 +-3.78251516715089,59.7732570335929 +-3.60454376461571,59.7755498235086 +-3.60024859596529,59.6858002715041 +-3.77774424877782,59.6835156748991 + + + + + +HY09 +#labelStyle + +-3.69125428282145,59.7295655316882 + + + + +HY10 + +Small Square HY10 Boundry Box +#Line2 + + +1 + +-3.56275063087132,58.8779096254353 +-3.56681252862793,58.9676720051085 +-3.39299359758211,58.9696592886895 +-3.38938186836639,58.879889915025 +-3.56275063087132,58.8779096254353 + + + + + +HY10 +#labelStyle + +-3.47797616725848,58.9238165850188 + + + + +HY11 + +Small Square HY11 Boundry Box +#Line2 + + +1 + +-3.56681293610609,58.9676809821728 +-3.57089985841633,59.0574419342473 +-3.39662794320824,59.0594362489311 +-3.39299395990078,58.969668266455 +-3.56681293610609,58.9676809821728 + + + + + +HY11 +#labelStyle + +-3.48182516390247,59.0135908373947 + + + + +HY12 + +Small Square HY12 Boundry Box +#Line2 + + +1 + +-3.57090026840797,59.0574509111689 +-3.5750124315347,59.147210436256 +-3.40028473751898,59.149211818777 +-3.39662830776212,59.0594452265576 +-3.57090026840797,59.0574509111689 + + + + + +HY12 +#labelStyle + +-3.48569790426967,59.1033636811594 + + + + +HY13 + +Small Square HY13 Boundry Box +#Line2 + + +1 + +-3.57501284406158,59.1472194130348 +-3.57915046679303,59.2369775117401 +-3.40396417513812,59.2389859991575 +-3.40028510432743,59.1492207962645 +-3.57501284406158,59.1472194130348 + + + + + +HY13 +#labelStyle + +-3.48959459388285,59.1931351170872 + + + + +HY14 + +Small Square HY14 Boundry Box +#Line2 + + +1 + +-3.57915088187715,59.2369864883764 +-3.58331418556377,59.3267431612995 +-3.4076664529692,59.3287587910004 +-3.40396454422071,59.2389949765061 +-3.57915088187715,59.2369864883764 + + + + + +HY14 +#labelStyle + +-3.49351544066849,59.282905145949 + + + + +HY15 + +Small Square HY15 Boundry Box +#Line2 + + +1 + +-3.5833146032274,59.3267521377932 +-3.58750381181932,59.4165073855277 +-3.4113917702289,59.4185301952315 +-3.40766682434573,59.3287677682102 +-3.5833146032274,59.3267521377932 + + + + + +HY15 +#labelStyle + +-3.49746065499185,59.3726737685112 + + + + +HY16 + +Small Square HY16 Boundry Box +#Line2 + + +1 + +-3.58750423208498,59.4165163618789 +-3.59171957217021,59.5062701850118 +-3.415140328481,59.5083002127736 +-3.41139214391941,59.4185391723025 +-3.58750423208498,59.4165163618789 + + + + + +HY16 +#labelStyle + +-3.5014304496928,59.4624409855362 + + + + +HY17 + +Small Square HY17 Boundry Box +#Line2 + + +1 + +-3.5917199950607,59.5062791612205 +-3.59596169590394,59.5960315603321 +-3.41891233167094,59.5980688445469 +-3.41514070450577,59.508309189706 +-3.5917199950607,59.5062791612205 + + + + + +HY17 +#labelStyle + +-3.50542504012213,59.5522067977814 + + + + +HY18 + +Small Square HY18 Boundry Box +#Line2 + + +1 + +-3.59596212144232,59.5960405363984 +-3.60023041502446,59.6857915120618 +-3.422707986161,59.6878360914687 +-3.41891271005049,59.5980778213409 +-3.59596212144232,59.5960405363984 + + + + + +HY18 +#labelStyle + +-3.50944464417862,59.6419712059998 + + + + +HY19 + +Small Square HY19 Boundry Box +#Line2 + + +1 + +-3.60023084323408,59.6858004879858 +-3.60452596429247,59.7755500407667 +-3.42652750076608,59.7776019544525 +-3.42270836691607,59.6878450681241 +-3.60023084323408,59.6858004879858 + + + + + +HY19 +#labelStyle + +-3.51348948234671,59.7317342109389 + + + + +HY20 + +Small Square HY20 Boundry Box +#Line2 + + +1 + +-3.38936452860736,58.8798901014465 +-3.39297621279183,58.9696594757694 +-3.21913503169089,58.9714133961657 +-3.21597370614686,58.881637848412 +-3.38936452860736,58.8798901014465 + + + + + +HY20 +#labelStyle + +-3.3043538570767,58.9256840738641 + + + + +HY21 + +Small Square HY21 Boundry Box +#Line2 + + +1 + +-3.39297657510598,58.969668453535 +-3.39661051310499,59.0594364366729 +-3.22231615550906,59.0611965632648 +-3.21913534882642,58.9714223745503 +-3.39297657510598,58.969668453535 + + + + + +HY21 +#labelStyle + +-3.30775111385392,59.0154649283937 + + + + +HY22 + +Small Square HY22 Boundry Box +#Line2 + + +1 + +-3.39661087765433,59.0594454142995 +-3.40026726182316,59.1492120071843 +-3.22551693084041,59.1509783724042 +-3.22231647460129,59.0612055415136 +-3.39661087765433,59.0594454142995 + + + + + +HY22 +#labelStyle + +-3.31116933026671,59.105244408748 + + + + +HY23 + +Small Square HY23 Boundry Box +#Line2 + + +1 + +-3.40026762862704,59.1492209846719 +-3.4039466535677,59.2389861882336 +-3.2287375280873,59.2407588248003 +-3.22551725190628,59.1509873505172 +-3.40026762862704,59.1492209846719 + + + + + +HY23 +#labelStyle + +-3.31460868777223,59.1950225160052 + + + + +HY24 + +Small Square HY24 Boundry Box +#Line2 + + +1 + +-3.40394702264569,59.2389951655823 +-3.4076488852397,59.328758980749 +-3.23197811964856,59.330537921671 +-3.22873785114395,59.2407678027777 +-3.40394702264569,59.2389951655823 + + + + + +HY24 +#labelStyle + +-3.3180693699504,59.2847992512432 + + + + +HY25 + +Small Square HY25 Boundry Box +#Line2 + + +1 + +-3.4076492566116,59.3287679579588 +-3.41137415605336,59.418530385656 +-3.2352388799487,59.4203156642353 +-3.23197844471333,59.330546899513 +-3.4076492566116,59.3287679579588 + + + + + +HY25 +#labelStyle + +-3.32155156253486,59.3745746155396 + + + + +HY26 + +Small Square HY26 Boundry Box +#Line2 + + +1 + +-3.41137452973922,59.4185393627271 +-3.41512266756996,59.5083004038776 +-3.23851998546769,59.5100920537128 +-3.23523920703913,59.4203246419419 +-3.41137452973922,59.4185393627271 + + + + + +HY26 +#labelStyle + +-3.32505545344458,59.4643486099711 + + + + +HY27 + +Small Square HY27 Boundry Box +#Line2 + + +1 + +-3.41512304359005,59.5083093808101 +-3.4188946237324,59.5980690363341 +-3.24182161477123,59.5998670913239 +-3.23852031460154,59.5101010312842 +-3.41512304359005,59.5083093808101 + + + + + +HY27 +#labelStyle + +-3.32858123281598,59.5541212356135 + + + + +HY28 + +Small Square HY28 Boundry Box +#Line2 + + +1 + +-3.41889500210723,59.5980780131281 +-3.42269023090039,59.6878362839427 +-3.24514394854154,59.6896407782895 +-3.24182194596646,59.5998760687601 +-3.41889500210723,59.5980780131281 + + + + + +HY28 +#labelStyle + +-3.33212909303563,59.6438924935414 + + + + +HY29 + +Small Square HY29 Boundry Box +#Line2 + + +1 + +-3.42269061165072,59.6878452605982 +-3.42650969788624,59.777602147617 +-3.24848716960874,59.7794131158304 +-3.24514428181632,59.6896497555906 +-3.42269061165072,59.6878452605982 + + + + + +HY29 +#labelStyle + +-3.33569922877358,59.7336623848282 + + + + +HY30 + +Small Square HY30 Boundry Box +#Line2 + + +1 + +-3.21595636431906,58.881638011574 +-3.219117644814,58.9714135599039 +-3.04525698656866,58.9729340602688 +-3.04254623115212,58.8831531595178 +-3.21595636431906,58.881638011574 + + + + + +HY30 +#labelStyle + +-3.13071077048106,58.9273185577402 + + + + +HY31 + +Small Square HY31 Boundry Box +#Line2 + + +1 + +-3.21911796194502,58.9714225382887 +-3.22229872330117,59.0611967275825 +-3.04798472016728,59.0627226087814 +-3.04525725850432,58.9729430391901 +-3.21911796194502,58.9714225382887 + + + + + +HY31 +#labelStyle + +-3.13365610804977,59.0171051913372 + + + + +HY32 + +Small Square HY32 Boundry Box +#Line2 + + +1 + +-3.22229904238886,59.0612057058314 +-3.2254994530217,59.1509785373043 +-3.05072930614015,59.1525098274622 +-3.04798499378092,59.0627315875697 +-3.22229904238886,59.0612057058314 + + + + + +HY32 +#labelStyle + +-3.1366196190744,59.1068904809083 + + + + +HY33 + +Small Square HY33 Boundry Box +#Line2 + + +1 + +-3.225499774083,59.1509875154174 +-3.22872000437553,59.2407589902859 +-3.05349089063948,59.2422957177762 +-3.05072958144631,59.1525188061176 +-3.225499774083,59.1509875154174 + + + + + +HY33 +#labelStyle + +-3.13960146091608,59.1966744277978 + + + + +HY34 + +Small Square HY34 Boundry Box +#Line2 + + +1 + +-3.22872032742758,59.2407679682634 +-3.23196054975902,59.3305380877453 +-3.05626962153015,59.3320802811929 +-3.05349116765286,59.2423046962989 +-3.22872032742758,59.2407679682634 + + + + + +HY34 +#labelStyle + +-3.14260179277711,59.2864570333526 + + + + +HY35 + +Small Square HY35 Boundry Box +#Line2 + + +1 + +-3.23196087481916,59.3305470655873 +-3.23522126359422,59.4203158309013 +-3.05906564841478,59.4218635191854 +-3.05626990026562,59.3320892595829 +-3.23196087481916,59.3305470655873 + + + + + +HY35 +#labelStyle + +-3.14562077572794,59.3762382989226 + + + + +HY36 + +Small Square HY36 Boundry Box +#Line2 + + +1 + +-3.23522159068,59.4203248086079 +-3.23850232235859,59.5100922209736 +-3.06187912265925,59.5116454332308 +-3.05906592888738,59.421872497443 +-3.23522159068,59.4203248086079 + + + + + +HY36 +#labelStyle + +-3.1486585727345,59.4660182258599 + + + + +HY37 + +Small Square HY37 Boundry Box +#Line2 + + +1 + +-3.23850265148775,59.510101198545 +-3.24180390461528,59.5998672591827 +-3.06471019741871,59.6014260248098 +-3.06187940488422,59.511654411356 +-3.23850265148775,59.510101198545 + + + + + +HY37 +#labelStyle + +-3.15171534868614,59.5557968155189 + + + + +HY38 + +Small Square HY38 Boundry Box +#Line2 + + +1 + +-3.24180423580579,59.599876236619 +-3.24512619104395,59.6896409467494 +-3.06755902766397,59.6912052954067 +-3.06471048141145,59.6014350028029 +-3.24180423580579,59.599876236619 + + + + + +HY38 +#labelStyle + +-3.15479127042396,59.6455740692562 + + + + +HY39 + +Small Square HY39 Boundry Box +#Line2 + + +1 + +-3.24512652431398,59.6896499240506 +-3.24846936447211,59.7794132848948 +-3.07042577020844,59.7809832465092 +-3.06755931344007,59.6912142732678 +-3.24512652431398,59.6896499240506 + + + + + +HY39 +#labelStyle + +-3.15788650676971,59.7353499884304 + + + + +HY40 + +Small Square HY40 Boundry Box +#Line2 + + +1 + +-3.04252888753059,58.883153299415 +-3.0452395978826,58.9729342006601 +-2.87136223734199,58.9742212317022 +-2.86910219481699,58.8844357994358 +-3.04252888753059,58.883153299415 + + + + + +HY40 +#labelStyle + +-2.95704966979128,58.9287199837828 + + + + +HY41 + +Small Square HY41 Boundry Box +#Line2 + + +1 + +-3.04523986981373,58.9729431795815 +-3.04796728613457,59.0627227496696 +-2.87363643627924,59.0640143357901 +-2.87136246406341,58.974230211078 +-3.04523986981373,58.9729431795815 + + + + + +HY41 +#labelStyle + +-2.95954293262767,59.018511572939 + + + + +HY42 + +Small Square HY42 Boundry Box +#Line2 + + +1 + +-3.04796755974366,59.062731728458 +-3.05071182648079,59.1525099688498 +-2.87592468676402,59.1538061338618 +-2.87363666439976,59.0640233150352 +-3.04796755974366,59.062731728458 + + + + + +HY42 +#labelStyle + +-2.96205158092585,59.1083018439274 + + + + +HY43 + +Small Square HY43 Boundry Box +#Line2 + + +1 + +-3.05071210178237,59.1525189475053 +-3.05347336507104,59.242295859666 +-2.87822711067376,59.243596627593 +-2.87592491629577,59.1538151129764 +-3.05071210178237,59.1525189475053 + + + + + +HY43 +#labelStyle + +-2.96457574792442,59.1980907983205 + + + + +HY44 + +Small Square HY44 Boundry Box +#Line2 + + +1 + +-3.05347364207982,59.2423048381887 +-3.05625204976775,59.3320804235874 +-2.88054383131432,59.333385818666 +-2.878227341629,59.2436056065772 +-3.05347364207982,59.2423048381887 + + + + + +HY44 +#labelStyle + +-2.9671155684212,59.2878784376963 + + + + +HY45 + +Small Square HY45 Boundry Box +#Line2 + + +1 + +-3.05625232849859,59.3320894019774 +-3.05904803017105,59.4218636620872 +-2.88287497344087,59.4231737087694 +-2.88054406370544,59.33339479752 +-3.05625232849859,59.3320894019774 + + + + + +HY45 +#labelStyle + +-2.96967117879599,59.3776647636379 + + + + +HY46 + +Small Square HY46 Boundry Box +#Line2 + + +1 + +-3.05904831063899,59.4218726403448 +-3.06186145764432,59.5116455766427 +-2.88522066327927,59.5129602995982 +-2.88287520728043,59.4231826874934 +-3.05904831063899,59.4218726403448 + + + + + +HY46 +#labelStyle + +-2.97224271703386,59.4674497777339 + + + + +HY47 + +Small Square HY47 Boundry Box +#Line2 + + +1 + +-3.0618617398646,59.511654554768 +-3.06469248534014,59.6014261687345 +-2.88758102854765,59.6027455928537 +-2.88522089857996,59.5129692781924 +-3.0618617398646,59.511654554768 + + + + + +HY47 +#labelStyle + +-2.97483032274869,59.5572334815776 + + + + +HY48 + +Small Square HY48 Boundry Box +#Line2 + + +1 + +-3.06469276932816,59.6014351467276 +-3.06754126822678,59.6912054398469 +-2.88995619847853,59.6925295902432 +-2.88758126532232,59.6027545713181 +-3.06469276932816,59.6014351467276 + + + + + +HY48 +#labelStyle + +-2.97743413720723,59.6470158767677 + + + + +HY49 + +Small Square HY49 Boundry Box +#Line2 + + +1 + +-3.06754155399813,59.691214417708 +-3.07040796311502,59.7809833914677 +-2.89234630384122,59.7823122934801 +-2.88995643674018,59.6925385685782 +-3.06754155399813,59.691214417708 + + + + + +HY49 +#labelStyle + +-2.98005430335357,59.7367969649074 + + + + +HY50 + +Small Square HY50 Boundry Box +#Line2 + + +1 + +-2.86908484967698,58.8844359160636 +-2.87134484712434,58.9742213487421 +-2.69745356080041,58.975274868732 +-2.69564435021552,58.8854857267619 +-2.86908484967698,58.8844359160636 + + + + + +HY50 +#labelStyle + +-2.78337331911494,58.9298883066572 + + + + +HY51 + +Small Square HY51 Boundry Box +#Line2 + + +1 + +-2.87134507384123,58.9742303281179 +-2.8736190007017,59.0640144532442 +-2.69927410462846,59.065071702223 +-2.69745374229561,58.9752838484797 +-2.87134507384123,58.9742303281179 + + + + + +HY51 +#labelStyle + +-2.78541437553916,59.0196840275022 + + + + +HY52 + +Small Square HY52 Boundry Box +#Line2 + + +1 + +-2.87361922881767,59.0640234324894 +-2.87590720554644,59.1538062517323 +-2.70110589776969,59.1548672491976 +-2.69927428724375,59.065080681842 +-2.87361922881767,59.0640234324894 + + + + + +HY52 +#labelStyle + +-2.78746802789448,59.1094784517423 + + + + +HY53 + +Small Square HY53 Boundry Box +#Line2 + + +1 + +-2.87590743507361,59.153815230847 +-2.87820958353355,59.2435967458822 +-2.70294903780618,59.2446615115038 +-2.70110608151477,59.154876228688 +-2.87590743507361,59.153815230847 + + + + + +HY53 +#labelStyle + +-2.78953438527454,59.1992715811404 + + + + +HY54 + +Small Square HY54 Boundry Box +#Line2 + + +1 + +-2.87820981448417,59.2436057248664 +-2.88052625796642,59.333385937376 +-2.70480362346382,59.3344544909984 +-2.70294922269086,59.2446704908659 +-2.87820981448417,59.2436057248664 + + + + + +HY54 +#labelStyle + +-2.79161355804986,59.2890634174669 + + + + +HY55 + +Small Square HY55 Boundry Box +#Line2 + + +1 + +-2.8805264903529,59.33339491623 +-2.88285735359777,59.4231738279024 +-2.70666975462911,59.4242461895463 +-2.70480380949805,59.3344634702323 +-2.8805264903529,59.33339491623 + + + + + +HY55 +#labelStyle + +-2.79370565788645,59.3788539624997 + + + + +HY56 + +Small Square HY56 Boundry Box +#Line2 + + +1 + +-2.88285758743266,59.4231828066264 +-2.88520299665092,59.5129604191565 +-2.70854753236616,59.514036609021 +-2.70666994182292,59.4242551686521 +-2.88285758743266,59.4231828066264 + + + + + +HY56 +#labelStyle + +-2.79581079776484,59.4686432180245 + + + + +HY57 + +Small Square HY57 Boundry Box +#Line2 + + +1 + +-2.88520323194691,59.5129693977507 +-2.88756331484146,59.6027457128395 +-2.71043705893407,59.6038257513044 +-2.70854772072972,59.514045587999 +-2.88520323194691,59.5129693977507 + + + + + +HY57 +#labelStyle + +-2.79792909199944,59.5584311858341 + + + + +HY58 + +Small Square HY58 Boundry Box +#Line2 + + +1 + +-2.88756355161141,59.602754691304 +-2.88993843739933,59.6925297106588 +-2.71233843780459,59.6936136182865 +-2.71043724847767,59.6038347301548 +-2.88756355161141,59.602754691304 + + + + + +HY58 +#labelStyle + +-2.8000606562582,59.6482178677286 + + + + +HY59 + +Small Square HY59 Boundry Box +#Line2 + + +1 + +-2.88993867565623,59.6925386889938 +-2.89232849509125,59.7823124143279 +-2.71425177368012,59.7834002118656 +-2.71233862853864,59.6936225970095 +-2.88993867565623,59.6925386889938 + + + + + +HY59 +#labelStyle + +-2.80220560758266,59.7380032655156 + + + + +HY60 + +Small Square HY60 Boundry Box +#Line2 + + +1 + +-2.6956270038324,58.8854858201167 +-2.69743616932894,58.9752749624166 +-2.52353373512039,58.9760949371913 +-2.52217545178879,58.8863029075997 +-2.6956270038324,58.8854858201167 + + + + + +HY60 +#labelStyle + +-2.60968448407365,58.9308234885635 + + + + +HY61 + +Small Square HY61 Boundry Box +#Line2 + + +1 + +-2.69743635081961,58.9752839421644 +-2.69925666778625,59.0650717962392 +-2.5249005274056,59.0658946736399 +-2.52353387137978,58.9761039172285 +-2.69743635081961,58.9752839421644 + + + + + +HY61 +#labelStyle + +-2.61127322627183,59.0206225169252 + + + + +HY62 + +Small Square HY62 Boundry Box +#Line2 + + +1 + +-2.69925685039698,59.0650807758582 +-2.70108841527646,59.1548673435472 +-2.52627576564249,59.155693138753 +-2.52490066450595,59.06590365355 +-2.69925685039698,59.0650807758582 + + + + + +HY62 +#labelStyle + +-2.61287177361214,59.1104202659463 + + + + +HY63 + +Small Square HY63 Boundry Box +#Line2 + + +1 + +-2.70108859901696,59.1548763230376 +-2.70293150937921,59.2446616061885 +-2.52765952310133,59.2454903345127 +-2.52627590359109,59.155702118536 +-2.70108859901696,59.1548763230376 + + + + + +HY63 +#labelStyle + +-2.61448021102494,59.2002167375419 + + + + +HY64 + +Small Square HY64 Boundry Box +#Line2 + + +1 + +-2.70293169425929,59.2446705855506 +-2.70478604881795,59.3344545860199 +-2.52905187391131,59.3352862629114 +-2.52765966190554,59.2454993141689 +-2.70293169425929,59.2446705855506 + + + + + +HY64 +#labelStyle + +-2.61609862443474,59.2900119336367 + + + + +HY65 + +Small Square HY65 Boundry Box +#Line2 + + +1 + +-2.70478623484754,59.3344635652538 +-2.70665213347667,59.4242462849065 +-2.53045289307316,59.4250809259516 +-2.5290520135786,59.335295242441 +-2.70478623484754,59.3344635652538 + + + + + +HY65 +#labelStyle + +-2.61772710077476,59.3798058561646 + + + + +HY66 + +Small Square HY66 Boundry Box +#Line2 + + +1 + +-2.70665232066582,59.4242552640123 +-2.70852986441697,59.5140367047216 +-2.53186265647192,59.5148743256456 +-2.53045303361106,59.4250899053547 +-2.70665232066582,59.4242552640123 + + + + + +HY66 +#labelStyle + +-2.61936572800167,59.4695985070691 + + + + +HY67 + +Small Square HY67 Boundry Box +#Line2 + + +1 + +-2.70853005277584,59.5140456836997 +-2.71041934389541,59.6038258473473 +-2.53328124088999,59.604666464016 +-2.53186279788807,59.5148833049225 +-2.70853005277584,59.5140456836997 + + + + + +HY67 +#labelStyle + +-2.62101459511073,59.5593898883026 + + + + +HY68 + +Small Square HY68 Boundry Box +#Line2 + + +1 + +-2.71041953343428,59.6038348261977 +-2.71232067538116,59.6936137146735 +-2.53470872402039,59.6944573430951 +-2.53328138319211,59.6046754431669 +-2.71041953343428,59.6038348261977 + + + + + +HY68 +#labelStyle + +-2.62267379215104,59.6491800018268 + + + + +HY69 + +Small Square HY69 Boundry Box +#Line2 + + +1 + +-2.71232086611045,59.6936226933965 +-2.714233963574,59.7834003085985 +-2.53614518448029,59.784246964925 +-2.5347088672163,59.6944663221201 +-2.71232086611045,59.6936226933965 + + + + + +HY69 +#labelStyle + +-2.62434341024119,59.7389688496126 + + + + +HY70 + +Small Square HY70 Boundry Box +#Line2 + + +1 + +-2.52215810443806,58.8863029776783 +-2.52351634267295,58.9760950075176 +-2.34960553958888,58.9766814104848 +-2.34869825507252,58.8868873155641 +-2.52215810443806,58.8863029776783 + + + + + +HY70 +#labelStyle + +-2.43598593152876,58.9315254992416 + + + + +HY71 + +Small Square HY71 Boundry Box +#Line2 + + +1 + +-2.52351647892782,58.9761039875549 +-2.52488308957899,59.0658947442152 +-2.35051850792798,59.066483223233 +-2.34960563060527,58.9766903907292 +-2.52351647892782,58.9761039875549 + + + + + +HY71 +#labelStyle + +-2.43712227557104,59.0213270107061 + + + + +HY72 + +Small Square HY72 Boundry Box +#Line2 + + +1 + +-2.52488322667479,59.0659037241253 +-2.52625828215632,59.1556932095785 +-2.35143711801091,59.1562837755049 +-2.35051859950612,59.0664922033512 +-2.52488322667479,59.0659037241253 + + + + + +HY72 +#labelStyle + +-2.43826563298683,59.1111272557929 + + + + +HY73 + +Small Square HY73 Boundry Box +#Line2 + + +1 + +-2.52625842010034,59.1557021893616 +-2.52764199367279,59.2454904055898 +-2.35236141878373,59.2460830693789 +-2.35143721015566,59.1562927554972 +-2.52625842010034,59.1557021893616 + + + + + +HY73 +#labelStyle + +-2.43941606452891,59.2009262365314 + + + + +HY74 + +Small Square HY74 Boundry Box +#Line2 + + +1 + +-2.52764213247239,59.245499385246 +-2.52903429825512,59.3352863342414 +-2.35329145976638,59.3358811069444 +-2.35236151150002,59.2460920492454 +-2.52764213247239,59.245499385246 + + + + + +HY74 +#labelStyle + +-2.44057363166128,59.2907239549623 + + + + +HY75 + +Small Square HY75 Boundry Box +#Line2 + + +1 + +-2.52903443791777,59.335295313771 +-2.53043527090156,59.4250809975359 +-2.35422729106099,59.425677890302 +-2.35329155305918,59.3358900866854 +-2.52903443791777,59.335295313771 + + + + + +HY75 +#labelStyle + +-2.44173839656952,59.3805204131365 + + + + +HY76 + +Small Square HY76 Boundry Box +#Line2 + + +1 + +-2.53043541143479,59.425089976939 +-2.53184498749462,59.5148743974855 +-2.3551689633605,59.5154734215638 +-2.35422738493534,59.4256868699177 +-2.53043541143479,59.425089976939 + + + + + +HY76 +#labelStyle + +-2.44291042217143,59.4703156131159 + + + + +HY77 + +Small Square HY77 Boundry Box +#Line2 + + +1 + +-2.53184512890607,59.5148833767624 +-2.53326352481416,59.6046665361128 +-2.35611652795736,59.6052677028527 +-2.35516905782152,59.5154824010544 +-2.53184512890607,59.5148833767624 + + + + + +HY77 +#labelStyle + +-2.44408977212774,59.5601095569729 + + + + +HY78 + +Small Square HY78 Boundry Box +#Line2 + + +1 + +-2.53326366711155,59.6046755152637 +-2.53469096055063,59.6944574154502 +-2.35707003675237,59.6950607363027 +-2.35611662301019,59.6052766822184 +-2.53326366711155,59.6046755152637 + + + + + +HY78 +#labelStyle + +-2.44527651085313,59.6499022467905 + + + + +HY79 + +Small Square HY79 Boundry Box +#Line2 + + +1 + +-2.53469110374178,59.6944663944752 +-2.53612737331857,59.7842470375398 +-2.35802954226372,59.7848525240592 +-2.35707013240224,59.6950697155438 +-2.53469110374178,59.6944663944752 + + + + + +HY79 +#labelStyle + +-2.44647070352739,59.7396936846623 + + + + +HY80 + +Small Square HY80 Boundry Box +#Line2 + + +1 + +-2.34868090702977,58.8868873623644 +-2.34958814644347,58.9766814574505 +-2.17567175432669,58.977034269592 +-2.17521551642429,58.8872389317853 +-2.34868090702977,58.8868873623644 + + + + + +HY80 +#labelStyle + +-2.26228042930681,58.9319943159743 + + + + +HY81 + +Small Square HY81 Boundry Box +#Line2 + + +1 + +-2.34958823745534,58.9766904376949 +-2.35050106939736,59.066483270365 +-2.17613085035895,59.0668373318293 +-2.17567180009527,58.977043249961 +-2.34958823745534,58.9766904376949 + + + + + +HY81 +#labelStyle + +-2.26296431516139,59.0217974859464 + + + + +HY82 + +Small Square HY82 Boundry Box +#Line2 + + +1 + +-2.35050116097095,59.0664922504832 +-2.35141963381462,59.1562838228041 +-2.17659278336178,59.1566391401266 +-2.17613089641,59.0668463120728 +-2.35050116097095,59.0664922504832 + + + + + +HY82 +#labelStyle + +-2.26365242192006,59.1115993982001 + + + + +HY83 + +Small Square HY83 Boundry Box +#Line2 + + +1 + +-2.35141972595479,59.1562928027963 +-2.35234388863889,59.2460831168461 +-2.17705757794883,59.24643969662 +-2.17659282969776,59.1566481202448 +-2.35141972595479,59.1562928027963 + + + + + +HY83 +#labelStyle + +-2.26434478614783,59.2014000548415 + + + + +HY84 + +Small Square HY84 Boundry Box +#Line2 + + +1 + +-2.35234398135057,59.2460920967126 +-2.35327388338763,59.3358811545805 +-2.17752525902233,59.3362390034574 +-2.17705762457221,59.2464486766131 +-2.35234398135057,59.2460920967126 + + + + + +HY84 +#labelStyle + +-2.26504144483776,59.2911994579885 + + + + +HY85 + +Small Square HY85 Boundry Box +#Line2 + + +1 + +-2.3532739766758,59.3358901343215 +-2.3542096681605,59.425677938108 +-2.1779958517773,59.4260370627987 +-2.17752530593561,59.3362479833257 +-2.3532739766758,59.3358901343215 + + + + + +HY85 +#labelStyle + +-2.26574243541724,59.3809976097702 + + + + +HY86 + +Small Square HY86 Boundry Box +#Line2 + + +1 + +-2.35420976203019,59.4256869177237 +-2.35515129364792,59.5154734695404 +-2.17846938170587,59.5158338768156 +-2.17799589898302,59.4260460425423 +-2.35420976203019,59.4256869177237 + + + + + +HY86 +#labelStyle + +-2.26644779575437,59.4707945123279 + + + + +HY87 + +Small Square HY87 Boundry Box +#Line2 + + +1 + +-2.35515138810424,59.515482449031 +-2.35609881113977,59.6052677510009 +-2.17894587460166,59.6056294476916 +-2.17846942920659,59.5158428564348 +-2.35515138810424,59.515482449031 + + + + + +HY87 +#labelStyle + +-2.26715756416446,59.5605901678139 + + + + +HY88 + +Small Square HY88 Boundry Box +#Line2 + + +1 + +-2.35609890618788,59.6052767303667 +-2.35705227253429,59.6950607846236 +-2.17942535656422,59.6954237776221 +-2.17894592239998,59.6056384271866 +-2.35609890618788,59.6052767303667 + + + + + +HY88 +#labelStyle + +-2.26787177941657,59.6503845783923 + + + + +HY89 + +Small Square HY89 Boundry Box +#Line2 + + +1 + +-2.3570523681794,59.6950697638646 +-2.35801173034704,59.7848525725535 +-2.17990785400359,59.7852168688143 +-2.17942540466276,59.6954327569931 +-2.3570523681794,59.6950697638646 + + + + + +HY89 +#labelStyle + +-2.26859048074031,59.7401777462386 + + + + +HY90 + +Small Square HY90 Boundry Box +#Line2 + + +1 + +-2.17519816796521,58.8872389553058 +-2.17565436076135,58.9770342931956 +-2.00173516001155,58.9771535030693 +-2.00172999275069,58.8873577449102 +-2.17519816796521,58.8872389553058 + + + + + +HY90 +#labelStyle + +-2.08857074592473,58.9322299235906 + + + + +HY91 + +Small Square HY91 Boundry Box +#Line2 + + +1 + +-2.1756544065254,58.9770432735646 +-2.17611341140476,59.0668373555165 +-2.00174035942685,59.0669569878937 +-2.00173516052991,58.9771624834804 +-2.1756544065254,58.9770432735646 + + + + + +HY91 +#labelStyle + +-2.08880213746787,59.0220339273536 + + + + +HY92 + +Small Square HY92 Boundry Box +#Line2 + + +1 + +-2.17611345745126,59.06684633576 +-2.17657529873825,59.1566391638978 +-2.00174559075524,59.1567592209903 +-2.00174035994838,59.0669659681796 +-2.17611345745126,59.06684633576 + + + + + +HY92 +#labelStyle + +-2.08903495702397,59.111836677753 + + + + +HY93 + +Small Square HY93 Boundry Box +#Line2 + + +1 + +-2.17657534506965,59.156648144016 +-2.17704004737303,59.2464397204757 +-2.00175085427377,59.2465602045147 +-2.00174559127998,59.1567682011511 +-2.17657534506965,59.156648144016 + + + + + +HY93 +#labelStyle + +-2.08926921696409,59.2016381769332 + + + + +HY94 + +Small Square HY94 Boundry Box +#Line2 + + +1 + +-2.1770400939918,59.2464487004688 +-2.17750768220886,59.3362390273981 +-2.00175615026275,59.3363599406345 +-2.00175085480174,59.2465691845506 +-2.1770400939918,59.2464487004688 + + + + + +HY94 +#labelStyle + +-2.08950492980409,59.291438427051 + + + + +HY95 + +Small Square HY95 Boundry Box +#Line2 + + +1 + +-2.17750772911751,59.3362480072663 +-2.17797822843828,59.4260370868247 +-2.00176147900578,59.4261584315297 +-2.00175615079398,59.3363689205458 +-2.17750772911751,59.3362480072663 + + + + + +HY95 +#labelStyle + +-2.0897421082068,59.381237430275 + + + + +HY96 + +Small Square HY96 Boundry Box +#Line2 + + +1 + +-2.17797827563934,59.4260460665683 +-2.1784517115509,59.5158339009274 +-2.0017668407898,59.5159556793922 +-2.0017614795403,59.4261674113166 +-2.17797827563934,59.4260460665683 + + + + + +HY96 +#labelStyle + +-2.08998076498416,59.471035188786 + + + + +HY97 + +Small Square HY97 Boundry Box +#Line2 + + +1 + +-2.17845175904693,59.5158428805466 +-2.17892815733778,59.6056294718897 +-2.00177223590516,59.605751686426 +-2.00176684132764,59.5159646590549 +-2.17845175904693,59.5158428805466 + + + + + +HY97 +#labelStyle + +-2.0902209130994,59.5608317047767 + + + + +HY98 + +Small Square HY98 Boundry Box +#Line2 + + +1 + +-2.17892820513138,59.6056384513847 +-2.17940759189591,59.695423801907 +-2.00177766464562,59.6955464548473 +-2.00177223644635,59.6057606659648 +-2.17892820513138,59.6056384513847 + + + + + +HY98 +#labelStyle + +-2.0904625656693,59.6506269804522 + + + + +HY99 + +Small Square HY99 Boundry Box +#Line2 + + +1 + +-2.17940763998969,59.695432781278 +-2.1798900416327,59.7852168931864 +-2.00178312730847,59.7853399868842 +-2.00177766519019,59.6955554342623 +-2.17940763998969,59.695432781278 + + + + + +HY99 +#labelStyle + +-2.09070573596643,59.740421018029 + + + + + +HZ + +Large Square HZ Boundry Box +#Line1 + + +1 + +-2.00171264415098,58.88735774515 +-2.00176531478415,59.7853399871333 +-0.22103024192932,59.7733068182596 +-0.267327944914671,58.8757445829373 +-2.00171264415098,58.88735774515 + + + + + +HZ00 + +Small Square HZ00 Boundry Box +#Line2 + + +1 + +-2.00171264415098,58.88735774515 +-2.00171776630437,58.97715350331 +-1.82779853760111,58.9770391070516 +-1.82824444123415,58.8872437511043 +-2.00171264415098,58.88735774515 + + + + + +HZ00 +#labelStyle + +-1.91485965031483,58.9322323144672 + + + + +HZ01 + +Small Square HZ01 Boundry Box +#Line2 + + +1 + +-2.0017177668182,58.9771624837211 +-2.00172292032959,59.0669569881353 +-1.82734984014405,59.0668421875302 +-1.82779849286921,58.9770480874224 +-2.0017177668182,58.9771624837211 + + + + + +HZ01 +#labelStyle + +-1.91463853533694,59.0220363272437 + + + + +HZ02 + +Small Square HZ02 Boundry Box +#Line2 + + +1 + +-2.00172292084657,59.0669659684212 +-2.00172810598739,59.1567592212329 +-1.82689836953956,59.1566440141687 +-1.82734979513603,59.0668511677756 +-2.00172292084657,59.0669659684212 + + + + + +HZ02 +#labelStyle + +-1.91441605533831,59.1118390867058 + + + + +HZ03 + +Small Square HZ03 Boundry Box +#Line2 + + +1 + +-2.00172810650755,59.1567682013937 +-2.00173332355239,59.2465602047581 +-1.82644410172805,59.2464445891039 +-1.82689832425303,59.1566529942887 +-2.00172810650755,59.1567682013937 + + + + + +HZ03 +#labelStyle + +-1.91419219849394,59.2016405949984 + + + + +HZ04 + +Small Square HZ04 Boundry Box +#Line2 + + +1 + +-2.00173332407575,59.2465691847941 +-2.00173857330243,59.3363599408789 +-1.82598701236786,59.3362439144845 +-1.82644405616058,59.2464535690988 +-2.00173332407575,59.2465691847941 + + + + + +HZ04 +#labelStyle + +-1.9139669528404,59.2914408542787 + + + + +HZ05 + +Small Square HZ05 Boundry Box +#Line2 + + +1 + +-2.00173857382903,59.3363689207902 +-2.00174385551863,59.426158431775 +-1.82552707683114,59.4260419924715 +-1.82598696651702,59.3362528943547 +-2.00173857382903,59.3363689207902 + + + + + +HZ05 +#labelStyle + +-1.9137403062738,59.3812398667158 + + + + +HZ06 + +Small Square HZ06 Boundry Box +#Line2 + + +1 + +-2.00174385604848,59.4261674115619 +-2.0017491704854,59.5159556796384 +-1.82506427019957,59.5158388252374 +-1.82552703069443,59.426050972217 +-2.00174385604848,59.4261674115619 + + + + + +HZ06 +#labelStyle + +-1.91351224654771,59.4710376344908 + + + + +HZ07 + +Small Square HZ07 Boundry Box +#Line2 + + +1 + +-2.00174917101854,59.5159646593011 +-2.00175451849053,59.6057516866732 +-1.82459856726018,59.6056344149666 +-1.8250642237745,59.5158478048585 +-2.00174917101854,59.5159646593011 + + + + + +HZ07 +#labelStyle + +-1.91328276127108,59.560834159797 + + + + +HZ08 + +Small Square HZ08 Boundry Box +#Line2 + + +1 + +-2.001754519027,59.6057606662119 +-2.00175989982523,59.6955464550954 +-1.82412994250092,59.6954287638555 +-1.82459852054421,59.6056433944635 +-2.001754519027,59.6057606662119 + + + + + +HZ08 +#labelStyle + +-1.91305183790611,59.6506294448398 + + + + +HZ09 + +Small Square HZ09 Boundry Box +#Line2 + + +1 + +-2.00175990036504,59.6955554345104 +-2.00176531478415,59.7853399871333 +-1.82365837010624,59.7852218741122 +-1.82412989549148,59.6954377432285 +-2.00175990036504,59.6955554345104 + + + + + +HZ09 +#labelStyle + +-1.91281946376604,59.7404234918364 + + + + +HZ10 + +Small Square HZ10 Boundry Box +#Line2 + + +1 + +-1.82822709276953,58.8872437280635 +-1.82778114403018,58.9770390839294 +-1.65386466805579,58.9766910852526 +-1.65476161905989,58.8868969540519 +-1.82822709276953,58.8872437280635 + + + + + +HZ10 +#labelStyle + +-1.74114991154973,58.9320014885294 + + + + +HZ11 + +Small Square HZ11 Boundry Box +#Line2 + + +1 + +-1.82778109929375,58.9770480643002 +-1.82733240118422,59.0668421643263 +-1.65296209752573,59.0664929344822 +-1.653864578076,58.9767000655006 +-1.82778109929375,58.9770480643002 + + + + + +HZ11 +#labelStyle + +-1.74047630175741,59.0218046855413 + + + + +HZ12 + +Small Square HZ12 Boundry Box +#Line2 + + +1 + +-1.82733235617165,59.0668511445716 +-1.82688088491033,59.1566439908825 +-1.65205394906589,59.1562935234351 +-1.65296200699056,59.0665019146041 +-1.82733235617165,59.0668511445716 + + + + + +HZ12 +#labelStyle + +-1.73979853404723,59.1116066249826 + + + + +HZ13 + +Small Square HZ13 Boundry Box +#Line2 + + +1 + +-1.82688083961922,59.1566529710025 +-1.8264265711465,59.246444565735 +-1.6511401742841,59.2460928541912 +-1.65205385797051,59.156302503431 +-1.82688083961922,59.1566529710025 + + + + + +HZ13 +#labelStyle + +-1.73911657240018,59.2014073089606 + + + + +HZ14 + +Small Square HZ14 Boundry Box +#Line2 + + +1 + +-1.82642652557442,59.24645354573 +-1.8259694355486,59.3362438910327 +-1.65022072422088,59.3358909288419 +-1.65114008262365,59.2461018340615 +-1.82642652557442,59.24645354573 + + + + + +HZ14 +#labelStyle + +-1.73843038037553,59.2912067395944 + + + + +HZ15 + +Small Square HZ15 Boundry Box +#Line2 + + +1 + +-1.82596938969311,59.3362528709028 +-1.82550945348627,59.4260419689361 +-1.64929554934109,59.4256877494897 +-1.65022063199043,59.3358999085867 +-1.82596938969311,59.3362528709028 + + + + + +HZ15 +#labelStyle + +-1.73773992110472,59.3810049190147 + + + + +HZ16 + +Small Square HZ16 Boundry Box +#Line2 + + +1 + +-1.82550940734489,59.4260509486816 +-1.8250466000387,59.515838801618 +-1.6483645995255,59.5154833182481 +-1.64929545653567,59.4256967291091 +-1.82550940734489,59.4260509486816 + + + + + +HZ16 +#labelStyle + +-1.73704515728509,59.4708018493638 + + + + +HZ17 + +Small Square HZ17 Boundry Box +#Line2 + + +1 + +-1.82504655360893,59.5158477812391 +-1.82458084999035,59.6056343912629 +-1.64742782406214,59.605277637242 +-1.64836450614006,59.5154922977424 +-1.82504655360893,59.5158477812391 + + + + + +HZ17 +#labelStyle + +-1.73634605117341,59.5605975327955 + + + + +HZ18 + +Small Square HZ18 Boundry Box +#Line2 + + +1 + +-1.82458080326965,59.6056433707597 +-1.82411217782659,59.6954287400669 +-1.64648517163758,59.6950707086075 +-1.64742773009158,59.6052866166115 +-1.82458080326965,59.6056433707597 + + + + + +HZ18 +#labelStyle + +-1.73564256457949,59.6503919714753 + + + + +HZ19 + +Small Square HZ19 Boundry Box +#Line2 + + +1 + +-1.8241121308124,59.6954377194398 +-1.82364055772928,59.7852218502383 +-1.64553659032798,59.7848625344915 +-1.64648507707673,59.6950796878523 +-1.8241121308124,59.6954377194398 + + + + + +HZ19 +#labelStyle + +-1.73493465885946,59.7401851675801 + + + + +HZ20 + +Small Square HZ20 Boundry Box +#Line2 + + +1 + +-1.65474427100607,58.8868969077312 +-1.6538472748992,58.9766910387683 +-1.47993633206172,58.9761094489644 +-1.48128428314273,58.8863173649559 +-1.65474427100607,58.8868969077312 + + + + + +HZ20 +#labelStyle + +-1.56744429856724,58.9315374532512 + + + + +HZ21 + +Small Square HZ21 Boundry Box +#Line2 + + +1 + +-1.65384718491489,58.9767000190162 +-1.65294465898383,59.0664928878334 +-1.47857993630879,59.065909240132 +-1.4799361968388,58.9761184290071 +-1.65384718491489,58.9767000190162 + + + + + +HZ21 +#labelStyle + +-1.5663182295813,59.0213390097801 + + + + +HZ22 + +Small Square HZ22 Boundry Box +#Line2 + + +1 + +-1.6529445684441,59.0665018679552 +-1.65203646485821,59.1562934766209 +-1.47721515840302,59.1557077602632 +-1.47857980025127,59.0659182200475 +-1.6529445684441,59.0665018679552 + + + + + +HZ22 +#labelStyle + +-1.56518521019616,59.1111393001773 + + + + +HZ23 + +Small Square HZ23 Boundry Box +#Line2 + + +1 + +-1.65203637375825,59.1563024566169 +-1.65112264412777,59.2460928072109 +-1.47584192562785,59.245505011343 +-1.47721502150366,59.1557167400518 +-1.65203637375825,59.1563024566169 + + + + + +HZ23 +#labelStyle + +-1.56404518020481,59.2009383264747 + + + + +HZ24 + +Small Square HZ24 Boundry Box +#Line2 + + +1 + +-1.65112255246271,59.2461017870811 +-1.65020314783054,59.3358908816945 +-1.47446016441428,59.3353009953662 +-1.47584178787934,59.2455139910047 +-1.65112255246271,59.2461017870811 + + + + + +HZ24 +#labelStyle + +-1.56289807869543,59.2907360907149 + + + + +HZ25 + +Small Square HZ25 Boundry Box +#Line2 + + +1 + +-1.65020305559546,59.3358998614392 +-1.64927792642891,59.4256877021743 +-1.47306980032838,59.425095714338 +-1.47446002580922,59.3353099749013 +-1.65020305559546,59.3358998614392 + + + + + +HZ25 +#labelStyle + +-1.56174384404109,59.380532594951 + + + + +HZ26 + +Small Square HZ26 Boundry Box +#Line2 + + +1 + +-1.64927783361882,59.4256966817937 +-1.64834692980111,59.5154832707639 +-1.47167075805856,59.5148891702737 +-1.47306966085928,59.4251046937467 +-1.64927783361882,59.4256966817937 + + + + + +HZ26 +#labelStyle + +-1.56058241388923,59.4703278412472 + + + + +HZ27 + +Small Square HZ27 Boundry Box +#Line2 + + +1 + +-1.64834683641097,59.5154922502582 +-1.64741010723263,59.6052775895881 +-1.47026296140267,59.6046813651982 +-1.47167061771785,59.5148981495562 +-1.64834683641097,59.5154922502582 + + + + + +HZ27 +#labelStyle + +-1.55941372515102,59.5601218316782 + + + + +HZ28 + +Small Square HZ28 Boundry Box +#Line2 + + +1 + +-1.64741001325734,59.6052865689575 +-1.64646740740747,59.6950706607829 +-1.46884633325478,59.6944723011469 +-1.47026282018267,59.6046903443547 +-1.64741001325734,59.6052865689575 + + + + + +HZ28 +#labelStyle + +-1.55823771399044,59.6499145683292 + + + + +HZ29 + +Small Square HZ29 Boundry Box +#Line2 + + +1 + +-1.64646731284187,59.6950796400277 +-1.64551877839916,59.7848624864953 +-1.46742079559185,59.7842619801645 +-1.46884619114775,59.6944812801776 +-1.64646731284187,59.6950796400277 + + + + + +HZ29 +#labelStyle + +-1.55705431581327,59.7397060532961 + + + + +HZ30 + +Small Square HZ30 Boundry Box +#Line2 + + +1 + +-1.48126693577538,58.8863172953568 +-1.47991893959751,58.9761093791194 +-1.30601630975369,58.9752942170562 +-1.30781518985406,58.8855050025362 +-1.48126693577538,58.8863172953568 + + + + + +HZ30 +#labelStyle + +-1.39374557989529,58.9308402236545 + + + + +HZ31 + +Small Square HZ31 Boundry Box +#Line2 + + +1 + +-1.47991880437008,58.9761183591621 +-1.47856249846526,59.0659091700399 +-1.30420616067074,59.0650911234997 +-1.30601612929479,58.9753031968112 +-1.47991880437008,58.9761183591621 + + + + + +HZ31 +#labelStyle + +-1.39216711124479,59.0206393151019 + + + + +HZ32 + +Small Square HZ32 Boundry Box +#Line2 + + +1 + +-1.47856236240319,59.0659181499554 +-1.47719767489978,59.1557076899227 +-1.30238482605219,59.1548867438258 +-1.30420597909811,59.065100103126 +-1.47856236240319,59.0659181499554 + + + + + +HZ32 +#labelStyle + +-1.39057890040856,59.1104371275532 + + + + +HZ33 + +Small Square HZ33 Boundry Box +#Line2 + + +1 + +-1.47719753799584,59.1557166697112 +-1.47582439618208,59.2455049407527 +-1.30055220886937,59.244681079886 +-1.30238464335617,59.1548957233236 +-1.47719753799584,59.1557166697112 + + + + + +HZ33 +#labelStyle + +-1.38898086300173,59.2002336629266 + + + + +HZ34 + +Small Square HZ34 Boundry Box +#Line2 + + +1 + +-1.47582425842896,59.2455139204144 +-1.4744425887407,59.3353009245249 +-1.29870821095624,59.3344741335404 +-1.3005520250402,59.2446900592555 +-1.47582425842896,59.2455139204144 + + + + + +HZ34 +#labelStyle + +-1.3873729136517,59.2900289231498 + + + + +HZ35 + +Small Square HZ35 Boundry Box +#Line2 + + +1 + +-1.47444245013101,59.33530990406 +-1.47305217813923,59.4250956432443 +-1.29685273299279,59.4242659066576 +-1.29870802598405,59.3344831127817 +-1.47444245013101,59.33530990406 + + + + + +HZ35 +#labelStyle + +-1.38575496598364,59.3798229101598 + + + + +HZ36 + +Small Square HZ36 Boundry Box +#Line2 + + +1 + +-1.47305203866546,59.425104622653 +-1.47165308906355,59.5148890989262 +-1.29498567448802,59.5140564011147 +-1.29685254686759,59.4242748857709 +-1.47305203866546,59.425104622653 + + + + + +HZ36 +#labelStyle + +-1.38412693260582,59.4696156259032 + + + + +HZ37 + +Small Square HZ37 Boundry Box +#Line2 + + +1 + +-1.47165294871814,59.5148980782087 +-1.47024524530896,59.6046812935957 +-1.29310693376274,59.6038456187973 +-1.29498548719971,59.5140653801003 +-1.47165294871814,59.5148980782087 + + + + + +HZ37 +#labelStyle + +-1.38248872509463,59.5594070723355 + + + + +HZ38 + +Small Square HZ38 Boundry Box +#Line2 + + +1 + +-1.47024510408424,59.6046902727522 +-1.46882856976697,59.6944722292879 +-1.29121640793198,59.693633561599 +-1.29310674530108,59.6038545976552 +-1.47024510408424,59.6046902727522 + + + + + +HZ38 +#labelStyle + +-1.38084025397932,59.6491972514216 + + + + +HZ39 + +Small Square HZ39 Boundry Box +#Line2 + + +1 + +-1.46882842765519,59.6944812083186 +-1.46740298441192,59.7842619080478 +-1.28931399288709,59.7834202314219 +-1.29121621828662,59.6936425403295 +-1.46882842765519,59.6944812083186 + + + + + +HZ39 +#labelStyle + +-1.37918142872656,59.7389861651357 + + + + +HZ40 + +Small Square HZ40 Boundry Box +#Line2 + + +1 + +-1.30779784344878,58.885504909661 +-1.30599891825985,58.9752941238529 +-1.13210738043824,58.9742454159719 +-1.13435709474888,58.8844598930277 +-1.30779784344878,58.885504909661 + + + + + +HZ40 +#labelStyle + +-1.2200565233769,58.9299098223071 + + + + +HZ41 + +Small Square HZ41 Boundry Box +#Line2 + + +1 + +-1.30599873779643,58.9753031036078 +-1.30418872380596,59.0650910299666 +-1.12984357394879,59.0640386112409 +-1.13210715475291,58.9742543953568 +-1.30599873779643,58.9753031036078 + + + + + +HZ41 +#labelStyle + +-1.21802573848922,59.0197056242547 + + + + +HZ42 + +Small Square HZ42 Boundry Box +#Line2 + + +1 + +-1.30418854222878,59.0651000095929 +-1.30236734353619,59.1548866499612 +-1.12756577966207,59.1538305009923 +-1.12984334687069,59.0640475904951 +-1.30418854222878,59.0651000095929 + + + + + +HZ42 +#labelStyle + +-1.21598242060293,59.1095001300403 + + + + +HZ43 + +Small Square HZ43 Boundry Box +#Line2 + + +1 + +-1.30236716083559,59.1548956294589 +-1.30053468041943,59.2446809856881 +-1.12527387625364,59.243621086906 +-1.12756555117914,59.153839480116 +-1.30236716083559,59.1548956294589 + + + + + +HZ43 +#labelStyle + +-1.21392646116955,59.1992933414307 + + + + +HZ44 + +Small Square HZ44 Boundry Box +#Line2 + + +1 + +-1.30053449658565,59.2446899650575 +-1.29869063628718,59.3344740390074 +-1.12296774097713,59.3334103706688 +-1.12527364635369,59.2436300658995 +-1.30053449658565,59.2446899650575 + + + + + +HZ44 +#labelStyle + +-1.21185775037013,59.2890852602001 + + + + +HZ45 + +Small Square HZ45 Boundry Box +#Line2 + + +1 + +-1.29869045131036,59.3344830182487 +-1.29683511181695,59.4242658117879 +-1.12064724964338,59.4231983539738 +-1.12296750964781,59.3334193495321 +-1.29869045131036,59.3344830182487 + + + + + +HZ45 +#labelStyle + +-1.20977617709666,59.3788758881306 + + + + +HZ46 + +Small Square HZ46 Boundry Box +#Line2 + + +1 + +-1.29683492568708,59.4242747909012 +-1.29496800651522,59.5140563059064 +-1.11831227659925,59.5129850385204 +-1.12064701687219,59.4232073327071 +-1.29683492568708,59.4242747909012 + + + + + +HZ46 +#labelStyle + +-1.20768162893319,59.4686652270116 + + + + +HZ47 + +Small Square HZ47 Boundry Box +#Line2 + + +1 + +-1.29496781922221,59.5140652848919 +-1.29308921870025,59.6038455232486 +-1.11596269470609,59.6027704260145 +-1.11831204237357,59.5129940171239 +-1.29496781922221,59.5140652848919 + + + + + +HZ47 +#labelStyle + +-1.20557399213656,59.5584532786401 + + + + +HZ48 + +Small Square HZ48 Boundry Box +#Line2 + + +1 + +-1.29308903023387,59.6038545021065 +-1.29119864548449,59.6936334657081 +-1.11359837531771,59.6925545181681 +-1.11596245901311,59.6027794044884 +-1.29308903023387,59.6038545021065 + + + + + +HZ48 +#labelStyle + +-1.20345315161681,59.6482400448203 + + + + +HZ49 + +Small Square HZ49 Boundry Box +#Line2 + + +1 + +-1.29119845583438,59.6936424444386 +-1.28929618275669,59.7834201351869 +-1.11121918825809,59.7823373166992 +-1.11359813814449,59.6925634965125 +-1.29119845583438,59.6936424444386 + + + + + +HZ49 +#labelStyle + +-1.20131899091727,59.7380255273639 + + + + +HZ50 + +Small Square HZ50 Boundry Box +#Line2 + + +1 + +-1.13433974958117,58.8844597768793 +-1.13208999019265,58.9742452994132 +-0.958212322317007,58.9729630797271 +-0.960912752293068,58.8831820701768 +-1.13433974958117,58.8844597768793 + + + + + +HZ50 +#labelStyle + +-1.04637989589541,58.9287462793202 + + + + +HZ51 + +Small Square HZ51 Boundry Box +#Line2 + + +1 + +-1.13208976450279,58.9742542787981 +-1.12982613834305,59.0640384942698 +-0.955494978359136,59.062751737643 +-0.958212051417149,58.9729720586594 +-1.13208976450279,58.9742542787981 + + + + + +HZ51 +#labelStyle + +-1.04389690208225,59.0185379675901 + + + + +HZ52 + +Small Square HZ52 Boundry Box +#Line2 + + +1 + +-1.1298259112604,59.064047473524 +-1.12754829841602,59.1538303836065 +-0.952760845743904,59.1525390663251 +-0.955494705787636,59.0627607164423 +-1.1298259112604,59.064047473524 + + + + + +HZ52 +#labelStyle + +-1.04139858570992,59.1083283382335 + + + + +HZ53 + +Small Square HZ53 Boundry Box +#Line2 + + +1 + +-1.12754806992852,59.1538393627303 +-1.1252563490847,59.2436209691036 +-0.950009778871596,59.2423250672437 +-0.952760571486286,59.1525480449915 +-1.12754806992852,59.1538393627303 + + + + + +HZ53 +#labelStyle + +-1.03888481408458,59.1981173928276 + + + + +HZ54 + +Small Square HZ54 Boundry Box +#Line2 + + +1 + +-1.12525611918015,59.243629948097 +-1.12295016760025,59.3334102524474 +-0.947241630436305,59.3321097418736 +-0.950009502913215,59.2423340457775 +-1.12525611918015,59.243629948097 + + + + + +HZ54 +#labelStyle + +-1.0363554529595,59.287905132955 + + + + +HZ55 + +Small Square HZ55 Boundry Box +#Line2 + + +1 + +-1.1229499362663,59.3334192313107 +-1.12062962977103,59.4231982353312 +-0.944456251400939,59.4218930916932 +-0.947241352762344,59.3321187202748 +-1.1229499362663,59.3334192313107 + + + + + +HZ55 +#labelStyle + +-1.03381036651243,59.3776915602038 + + + + +HZ56 + +Small Square HZ56 Boundry Box +#Line2 + + +1 + +-1.12062939699518,59.4232072140645 +-1.11829460994139,59.5129849194544 +-0.941653490971794,59.511675118185 +-0.944455971996407,59.421902069962 +-1.12062939699518,59.4232072140645 + + + + + +HZ56 +#labelStyle + +-1.03124941732244,59.4674766761673 + + + + +HZ57 + +Small Square HZ57 Boundry Box +#Line2 + + +1 + +-1.118294375711,59.5129938980579 +-1.11594498097011,59.6027703065228 +-0.938833196572679,59.6014558228353 +-0.941653209821523,59.5116840963215 +-1.118294375711,59.5129938980579 + + + + + +HZ57 +#labelStyle + +-1.02867246634641,59.557260482444 + + + + +HZ58 + +Small Square HZ58 Boundry Box +#Line2 + + +1 + +-1.1159447452724,59.6027792849967 +-1.11358061420844,59.6925543982484 +-0.935995213818571,59.6912352071338 +-0.938832913661321,59.6014648008397 +-1.1159447452724,59.6027792849967 + + + + + +HZ58 +#labelStyle + +-1.0260793728951,59.6470429806374 + + + + +HZ59 + +Small Square HZ59 Boundry Box +#Line2 + + +1 + +-1.11358037703048,59.6925633765929 +-1.11120137947778,59.7823371963493 +-0.933139386488817,59.7810132725737 +-0.935994929130597,59.6912441850062 +-1.11358037703048,59.6925633765929 + + + + + +HZ59 +#labelStyle + +-1.02346999460878,59.7368241723557 + + + + +HZ60 + +Small Square HZ60 Boundry Box +#Line2 + + +1 + +-0.960895408638321,58.8831819307589 +-0.958194933597411,58.9729629398169 +-0.784333912210257,58.9714472499047 +-0.787484915590945,58.8816715752376 +-0.960895408638321,58.8831819307589 + + + + + +HZ60 +#labelStyle + +-0.872718463099915,58.9273496323443 + + + + +HZ61 + +Small Square HZ61 Boundry Box +#Line2 + + +1 + +-0.958194662693033,58.9729719187491 +-0.955477544292591,59.0627515972377 +-0.781163174716509,59.0612305446215 +-0.78433359611019,58.9714562283021 +-0.958194662693033,58.9729719187491 + + + + + +HZ61 +#labelStyle + +-0.869783391539349,59.0171363830594 + + + + +HZ62 + +Small Square HZ62 Boundry Box +#Line2 + + +1 + +-0.955477271716543,59.062760576037 +-0.952743366050404,59.1525389254222 +-0.77797284938704,59.151012482076 +-0.781162856666085,59.0612395228831 +-0.955477271716543,59.062760576037 + + + + + +HZ62 +#labelStyle + +-0.866830209389694,59.106921790388 + + + + +HZ63 + +Small Square HZ63 Boundry Box +#Line2 + + +1 + +-0.952743091788208,59.1525479040886 +-0.949992253268707,59.2423249258406 +-0.774762766371412,59.2407930634909 +-0.777972529369372,59.151021460202 +-0.952743091788208,59.1525479040886 + + + + + +HZ63 +#labelStyle + +-0.863858759834033,59.1967058556799 + + + + +HZ64 + +Small Square HZ64 Boundry Box +#Line2 + + +1 + +-0.949991977305721,59.2423339043743 +-0.947224058639139,59.3321095999676 +-0.771532753829176,59.3305722900903 +-0.774762444369415,59.2408020414813 +-0.949991977305721,59.2423339043743 + + + + + +HZ64 +#labelStyle + +-0.860868884220615,59.2864885802879 + + + + +HZ65 + +Small Square HZ65 Boundry Box +#Line2 + + +1 + +-0.947223780960544,59.3321185783687 +-0.944438633122126,59.4218929492817 +-0.768282637900735,59.4203501630992 +-0.771532429825567,59.3305812679452 +-0.947223780960544,59.3321185783687 + + + + + +HZ65 +#labelStyle + +-0.857860422036023,59.3762699655673 + + + + +HZ66 + +Small Square HZ66 Boundry Box +#Line2 + + +1 + +-0.944438353712931,59.4219019275504 +-0.941635825921449,59.5116749752653 +-0.765012242677694,59.5101266837436 +-0.768282311878026,59.4203591408189 +-0.944438353712931,59.4219019275504 + + + + + +HZ66 +#labelStyle + +-0.854833210877872,59.4660500128761 + + + + +HZ67 + +Small Square HZ67 Boundry Box +#Line2 + + +1 + +-0.941635544766486,59.5116839534018 +-0.938815484458375,59.6014556794046 +-0.761721390172676,59.5999018532503 +-0.765011914618189,59.5101356613281 +-0.941635544766486,59.5116839534018 + + + + + +HZ67 +#labelStyle + +-0.851787086427026,59.5558287235746 + + + + +HZ68 + +Small Square HZ68 Boundry Box +#Line2 + + +1 + +-0.938815201542296,59.601464657409 +-0.93597745434531,59.6912350631895 +-0.758409900288621,59.6896756728465 +-0.761721060058473,59.5999108306997 +-0.938815201542296,59.601464657409 + + + + + +HZ68 +#labelStyle + +-0.848721882419321,59.6456060990253 + + + + +HZ69 + +Small Square HZ69 Boundry Box +#Line2 + + +1 + +-0.935977169652584,59.6912440410619 +-0.933121579358995,59.7810131281131 +-0.755077590787518,59.77944814376 +-0.758409568101603,59.689684650161 +-0.935977169652584,59.6912440410619 + + + + + +HZ69 +#labelStyle + +-0.845637430616782,59.7353821405927 + + + + +HZ70 + +Small Square HZ70 Boundry Box +#Line2 + + +1 + +-0.787467573724389,58.8816714125549 +-0.784316525294265,58.9714470866475 +-0.610474925280863,58.9696979756502 +-0.614076336113131,58.8799284569672 +-0.787467573724389,58.8816714125549 + + + + + +HZ70 +#labelStyle + +-0.699074989130941,58.9257199265654 + + + + +HZ71 + +Small Square HZ71 Boundry Box +#Line2 + + +1 + +-0.784316209189678,58.9714560650448 +-0.78114574246916,59.0612303807867 +-0.606850962154101,59.0594750817149 +-0.61047456399728,58.9697069534303 +-0.784316209189678,58.9714560650448 + + + + + +HZ71 +#labelStyle + +-0.695687994845513,59.0155009162091 + + + + +HZ72 + +Small Square HZ72 Boundry Box +#Line2 + + +1 + +-0.781145424414189,59.0612393590482 +-0.77795537152851,59.1510123176606 +-0.603204613974712,59.1492507981808 +-0.606850598641639,59.059484059356 +-0.781145424414189,59.0612393590482 + + + + + +HZ72 +#labelStyle + +-0.69228010374962,59.105280532415 + + + + +HZ73 + +Small Square HZ73 Boundry Box +#Line2 + + +1 + +-0.777955051506266,59.1510212957864 +-0.774745242619452,59.2407928984918 +-0.599535686670171,59.2390251259851 +-0.603204248214078,59.149259775683 +-0.777955051506266,59.1510212957864 + + + + + +HZ73 +#labelStyle + +-0.688851134929659,59.1950587762679 + + + + +HZ74 + +Small Square HZ74 Boundry Box +#Line2 + + +1 + +-0.774744920612852,59.2408018764821 +-0.771515183899086,59.3305721245044 +-0.595843983894627,59.3287980660627 +-0.599535318641844,59.2390341033484 +-0.774744920612852,59.2408018764821 + + + + + +HZ74 +#labelStyle + +-0.685400905355664,59.284835648852 + + + + +HZ75 + +Small Square HZ75 Boundry Box +#Line2 + + +1 + +-0.771514859890845,59.3305811023593 +-0.768265021505336,59.4203499969235 +-0.592129306995633,59.4185696193464 +-0.595843613578859,59.3288070432874 +-0.771514859890845,59.3305811023593 + + + + + +HZ75 +#labelStyle + +-0.681929229850368,59.3746111512516 + + + + +HZ76 + +Small Square HZ76 Boundry Box +#Line2 + + +1 + +-0.768264695477965,59.4203589746431 +-0.764994579527292,59.5101265169749 +-0.588391454980271,59.5083397867664 +-0.592128934372441,59.4185785964324 +-0.768264695477965,59.4203589746431 + + + + + +HZ76 +#labelStyle + +-0.678435921057719,59.4643852845499 + + + + +HZ77 + +Small Square HZ77 Boundry Box +#Line2 + + +1 + +-0.764994251463097,59.5101354945593 +-0.761703679975042,59.5999016858855 +-0.5846302244807,59.5981085692501 +-0.588391080029438,59.5083487637139 +-0.764994251463097,59.5101354945593 + + + + + +HZ77 +#labelStyle + +-0.674920789410836,59.5541580498295 + + + + +HZ78 + +Small Square HZ78 Boundry Box +#Line2 + + +1 + +-0.76170334985612,59.5999106633349 +-0.758392142748954,59.6896755048824 +-0.580845409719071,59.6878759677221 +-0.584629847181768,59.5981175460592 +-0.76170334985612,59.5999106633349 + + + + + +HZ78 +#labelStyle + +-0.671383643099409,59.643929448172 + + + + +HZ79 + +Small Square HZ79 Boundry Box +#Line2 + + +1 + +-0.758391810557187,59.6896844821969 +-0.755059785608418,59.7794479751933 +-0.577036802471839,59.7776419831034 +-0.580845030051343,59.6878849443927 +-0.758391810557187,59.6896844821969 + + + + + +HZ79 +#labelStyle + +-0.667824288036509,59.7336994806575 + + + + +HZ80 + +Small Square HZ80 Boundry Box +#Line2 + + +1 + +-0.614058996309824,58.8799282710248 +-0.610457540445899,58.9696977890512 +-0.436638134758639,58.9677153136655 +-0.440689763424847,58.8779527716191 +-0.614058996309824,58.8799282710248 + + + + + +HZ80 +#labelStyle + +-0.525452236346619,58.9238572146989 + + + + +HZ81 + +Small Square HZ81 Boundry Box +#Line2 + + +1 + +-0.610457179157798,58.9697067668313 +-0.606833532005768,59.0594748944557 +-0.432561137843901,59.0574854060781 +-0.436637728310612,58.967724290746 +-0.610457179157798,58.9697067668313 + + + + + +HZ81 +#labelStyle + +-0.521613498177401,59.0136316201755 + + + + +HZ82 + +Small Square HZ82 Boundry Box +#Line2 + + +1 + +-0.60683316848876,59.0594838720968 +-0.603187138233396,59.1492506102581 +-0.428458960900321,59.1472540722529 +-0.432560728888699,59.057494383016 +-0.60683316848876,59.0594838720968 + + + + + +HZ82 +#labelStyle + +-0.517751079062375,59.1034046178764 + + + + +HZ83 + +Small Square HZ83 Boundry Box +#Line2 + + +1 + +-0.603186772468188,59.1492595877602 +-0.599518165053836,59.2390249373953 +-0.424331385665986,59.2370213128031 +-0.428458549416244,59.1472630490482 +-0.603186772468188,59.1492595877602 + + + + + +HZ83 +#labelStyle + +-0.513864774021656,59.1931762085833 + + + + +HZ84 + +Small Square HZ84 Boundry Box +#Line2 + + +1 + +-0.599517797020908,59.2390339147587 +-0.595826416118791,59.3287978768024 +-0.420178191322924,59.3267871283365 +-0.424330971631081,59.2370302894559 +-0.599517797020908,59.2390339147587 + + + + + +HZ84 +#labelStyle + +-0.509954375678004,59.2829463930744 + + + + +HZ85 + +Small Square HZ85 Boundry Box +#Line2 + + +1 + +-0.595826045798392,59.328806854027 +-0.592111692773333,59.418569429412 +-0.415999154459698,59.4165515194546 +-0.42017777471498,59.3267961048469 +-0.595826045798392,59.328806854027 + + + + + +HZ85 +#labelStyle + +-0.506019674221786,59.3727151721235 + + + + +HZ86 + +Small Square HZ86 Boundry Box +#Line2 + + +1 + +-0.592111320145481,59.418578406498 +-0.588373794022039,59.5083395961543 +-0.411794049033336,59.5063144867525 +-0.415998735256242,59.4165604958225 +-0.592111320145481,59.418578406498 + + + + + +HZ86 +#labelStyle + +-0.502060457375318,59.4624825465006 + + + + +HZ87 + +Small Square HZ87 Boundry Box +#Line2 + + +1 + +-0.588373419066518,59.5083485731017 +-0.584612516494531,59.5981083779568 +-0.407562646330602,59.5960760308186 +-0.411793627211633,59.506323462978 +-0.588373419066518,59.5083485731017 + + + + + +HZ87 +#labelStyle + +-0.498076510356587,59.5522485169708 + + + + +HZ88 + +Small Square HZ88 Boundry Box +#Line2 + + +1 + +-0.584612139190882,59.5981173547657 +-0.580827654410395,59.6878757757437 +-0.403304714928561,59.6858361522345 +-0.407562221867644,59.5960850069019 +-0.584612139190882,59.5981173547657 + + + + + +HZ88 +#labelStyle + +-0.49406761584232,59.6420130842946 + + + + +HZ89 + +Small Square HZ89 Boundry Box +#Line2 + + +1 + +-0.580827274737919,59.6878847524143 +-0.577018999543487,59.7776417904365 +-0.399020020654463,59.7755948515742 +-0.403304287801069,59.6858451281755 +-0.580827274737919,59.6878847524143 + + + + + +HZ89 +#labelStyle + +-0.490033553930409,59.7317762492274 + + + + +HZ90 + +Small Square HZ90 Boundry Box +#Line2 + + +1 + +-0.44067242595964,58.8779525624232 +-0.436620752281919,58.9677151037308 +-0.26282631166517,58.965499328202 +-0.267327944914671,58.8757445829373 +-0.44067242595964,58.8779525624232 + + + + + +HZ90 +#labelStyle + +-0.35185296504921,58.9217615569835 + + + + +HZ91 + +Small Square HZ91 Boundry Box +#Line2 + + +1 + +-0.436620345829377,58.9677240808113 +-0.432543710074193,59.0574851954008 +-0.258296496717538,59.0552615824764 +-0.262825860074151,58.9655083045008 +-0.436620345829377,58.9677240808113 + + + + + +HZ91 +#labelStyle + +-0.347562685625932,59.011528555678 + + + + +HZ92 + +Small Square HZ92 Boundry Box +#Line2 + + +1 + +-0.432543301114448,59.0574941723387 +-0.428441487558249,59.1472538608291 +-0.253738709284203,59.1450223695765 +-0.258296042341296,59.0552705586285 +-0.432543301114448,59.0574941723387 + + + + + +HZ92 +#labelStyle + +-0.343245943484486,59.1012941079776 + + + + +HZ93 + +Small Square HZ93 Boundry Box +#Line2 + + +1 + +-0.4284410760696,59.1472628376244 +-0.424313866469756,59.237021100629 +-0.249152706950628,59.2347816897544 +-0.253738252098637,59.1450313455819 +-0.4284410760696,59.1472628376244 + + + + + +HZ93 +#labelStyle + +-0.338902509613144,59.1910582143234 + + + + +HZ94 + +Small Square HZ94 Boundry Box +#Line2 + + +1 + +-0.424313452430251,59.2370300772817 +-0.420160625988297,59.326786915408 +-0.244538244464124,59.324539543252 +-0.249152246931356,59.2347906656131 +-0.424313452430251,59.2370300772817 + + + + + +HZ94 +#labelStyle + +-0.334532152322427,59.2808208751491 + + + + +HZ95 + +Small Square HZ95 Boundry Box +#Line2 + + +1 + +-0.420160209375725,59.3267958919183 +-0.415981542699961,59.4165513057678 +-0.239895073692331,59.414295930301 +-0.244537781586478,59.3245485189641 +-0.420160209375725,59.3267958919183 + + + + + +HZ95 +#labelStyle + +-0.330134637205988,59.37058209088 + + + + +HZ96 + +Small Square HZ96 Boundry Box +#Line2 + + +1 + +-0.415981123491848,59.4165602821356 +-0.411776390559274,59.5063142723033 +-0.235222943580959,59.5040508511222 +-0.23989460793135,59.4143049058664 +-0.415981123491848,59.4165602821356 + + + + + +HZ96 +#labelStyle + +-0.325709727100798,59.4603418619334 + + + + +HZ97 + +Small Square HZ97 Boundry Box +#Line2 + + +1 + +-0.411775968732885,59.5063232485288 +-0.407544940850464,59.5960758156031 +-0.230521600110799,59.5938043059254 +-0.235222474911392,59.504059826541 +-0.411775968732885,59.5063232485288 + + + + + +HZ97 +#labelStyle + +-0.321257182046633,59.5501001887177 + + + + +HZ98 + +Small Square HZ98 Boundry Box +#Line2 + + +1 + +-0.407544516382791,59.5960847916863 +-0.403286962148038,59.6858359362484 +-0.225790786253958,59.683556294909 +-0.230521128507095,59.5938132811976 +-0.407544516382791,59.5960847916863 + + + + + +HZ98 +#labelStyle + +-0.316776759244842,59.6398570716325 + + + + +HZ99 + +Small Square HZ99 Boundry Box +#Line2 + + +1 + +-0.403286535015802,59.6858449121894 +-0.39900222027665,59.7755946348136 +-0.22103024192932,59.7733068182596 +-0.225790311690261,59.6835652700346 +-0.403286535015802,59.6858449121894 + + + + + +HZ99 +#labelStyle + +-0.312268213016386,59.7296125110679 + + + + + +NA + +Large Square NA Boundry Box +#Line1 + + +1 + +-8.73972187037999,57.8100399455759 +-8.91194918374778,58.7018050087722 +-7.19394351555853,58.7827662999518 +-7.06399362648781,57.8882415417524 +-8.73972187037999,57.8100399455759 + + + + + +NA00 + +Small Square NA00 Boundry Box +#Line2 + + +1 + +-8.73972187037999,57.8100399455759 +-8.75648431081436,57.8992283418364 +-8.58892417138955,57.9080691941803 +-8.57256999716421,57.8188504598183 +-8.73972187037999,57.8100399455759 + + + + + +NA00 +#labelStyle + +-8.66441754666282,57.8590798948367 + + + + +NA01 + +Small Square NA01 Boundry Box +#Line2 + + +1 + +-8.75648599219812,57.8992372613504 +-8.77334813700924,57.9884212975259 +-8.60537731781029,57.9972926404801 +-8.58892581182428,57.9080781167358 +-8.75648599219812,57.8992372613504 + + + + + +NA01 +#labelStyle + +-8.68102675838798,57.9482903355433 + + + + +NA02 + +Small Square NA02 Boundry Box +#Line2 + + +1 + +-8.77334982840543,57.9884302166026 +-8.79031250056732,58.0776098685615 +-8.62192860983365,58.0865118528602 +-8.60537896801923,57.9973015626134 +-8.77334982840543,57.9884302166026 + + + + + +NA02 +#labelStyle + +-8.69773490475725,58.0374964791944 + + + + +NA03 + +Small Square NA03 Boundry Box +#Line2 + + +1 + +-8.79031420205871,58.0776187871986 +-8.80737823370182,58.166794030531 +-8.63857886056361,58.1757268081737 +-8.62193026989765,58.0865207745689 +-8.79031420205871,58.0776187871986 + + + + + +NA03 +#labelStyle + +-8.71454280390075,58.1266983021503 + + + + +NA04 + +Small Square NA04 Boundry Box +#Line2 + + +1 + +-8.80737994537209,58.1668029487259 +-8.82454617790996,58.2559737587397 +-8.65532889218455,58.2649374830056 +-8.63858053056444,58.1757357294556 +-8.80737994537209,58.1668029487259 + + + + + +NA04 +#labelStyle + +-8.73145128306817,58.2158957804979 + + + + +NA05 + +Small Square NA05 Boundry Box +#Line2 + + +1 + +-8.82454789984373,58.25598267649 +-8.84181718410178,58.3451490282066 +-8.67217953608734,58.3541438536683 +-8.6553305722049,58.2649464038582 +-8.82454789984373,58.25598267649 + + + + + +NA05 +#labelStyle + +-8.74846117875508,58.3050888900466 + + + + +NA06 + +Small Square NA06 Boundry Box +#Line2 + + +1 + +-8.84181891638462,58.3451579455098 +-8.85919211273105,58.43431981366 +-8.68913163299754,58.4433458961979 +-8.6721812262108,58.3541527740893 +-8.84181891638462,58.3451579455098 + + + + + +NA06 +#labelStyle + +-8.7655733368315,58.3942776063245 + + + + +NA07 + +Small Square NA07 Boundry Box +#Line2 + + +1 + +-8.85919385544948,58.4343287305135 +-8.87667183392835,58.5234860895333 +-8.70618603310576,58.53254358635 +-8.68913333330865,58.4433548161849 +-8.85919385544948,58.4343287305135 + + + + + +NA07 +#labelStyle + +-8.78278861267253,58.4834619045743 + + + + +NA08 + +Small Square NA08 Boundry Box +#Line2 + + +1 + +-8.87667358716988,58.5234950059345 +-8.89425722763643,58.6126478299606 +-8.72334359620023,58.6217368995957 +-8.70618774369002,58.5325525059006 +-8.87667358716988,58.5234950059345 + + + + + +NA08 +#labelStyle + +-8.80010787129118,58.5726417597486 + + + + +NA09 + +Small Square NA09 Boundry Box +#Line2 + + +1 + +-8.89425899148955,58.612656745907 +-8.91194918374778,58.7018050087722 +-8.74060519180152,58.7109258111171 +-8.72334531714411,58.6217458187073 +-8.89425899148955,58.612656745907 + + + + + +NA09 +#labelStyle + +-8.81753198747343,58.6618171465061 + + + + +NA10 + +Small Square NA10 Boundry Box +#Line2 + + +1 + +-8.57255327543876,57.8188513299826 +-8.58890740879332,57.9080700673416 +-8.42124994123986,57.9166906068265 +-8.40530486923152,57.8274422730893 +-8.57255327543876,57.8188513299826 + + + + + +NA10 +#labelStyle + +-8.49699630759445,57.8677964839582 + + + + +NA11 + +Small Square NA11 Boundry Box +#Line2 + + +1 + +-8.58890904922395,57.9080789898974 +-8.60536051410146,57.9972935166536 +-8.43729156272416,58.0059438014465 +-8.4212515406415,57.9166995323496 +-8.58890904922395,57.9080789898974 + + + + + +NA11 +#labelStyle + +-8.51319558488375,57.957036971838 + + + + +NA12 + +Small Square NA12 Boundry Box +#Line2 + + +1 + +-8.60536216430627,57.9973024387872 +-8.62191176477255,58.0865127320606 +-8.45342892885538,58.0951929093627 +-8.43729317166087,58.005952726562 +-8.60536216430627,57.9973024387872 + + + + + +NA12 +#labelStyle + +-8.52949140982238,58.0462733110267 + + + + +NA13 + +Small Square NA13 Boundry Box +#Line2 + + +1 + +-8.62191342483241,58.0865216537697 +-8.63856197390868,58.1757276904162 +-8.46966283350232,58.1844379086659 +-8.45343054740609,58.0952018340684 +-8.62191342483241,58.0865216537697 + + + + + +NA13 +#labelStyle + +-8.54588458146834,58.1355054791294 + + + + +NA14 + +Small Square NA14 Boundry Box +#Line2 + + +1 + +-8.63856364390534,58.1757366116984 +-8.65531196369229,58.2649383683053 +-8.48599407940845,58.2736787771922 +-8.46966446174687,58.1844468329596 +-8.63856364390534,58.1757366116984 + + + + + +NA14 +#labelStyle + +-8.56237590779575,58.2247334534914 + + + + +NA15 + +Small Square NA15 Boundry Box +#Line2 + + +1 + +-8.65531364370844,58.2649472891583 +-8.67216256551229,58.3541447420405 +-8.5024234783153,58.362915492519 +-8.48599571742758,58.2736877010718 +-8.65531364370844,58.2649472891583 + + + + + +NA15 +#labelStyle + +-8.57896620581862,58.3139572111946 + + + + +NA16 + +Small Square NA16 Boundry Box +#Line2 + + +1 + +-8.67216425563152,58.3541536624618 +-8.68911462009224,58.443346787658 +-8.51895185108788,58.4521480319612 +-8.50242512619062,58.3629244159821 +-8.67216425563152,58.3541536624618 + + + + + +NA16 +#labelStyle + +-8.59565630171664,58.4031767290536 + + + + +NA17 + +Small Square NA17 Boundry Box +#Line2 + + +1 + +-8.68911632039911,58.4433557076453 +-8.70616897762077,58.5325444809136 +-8.53558002784231,58.5413763725675 +-8.51895350890194,58.4521569550056 +-8.68911632039911,58.4433557076453 + + + + + +NA17 +#labelStyle + +-8.6124470309631,58.4923919836114 + + + + +NA18 + +Small Square NA18 Boundry Box +#Line2 + + +1 + +-8.70617068820077,58.5325534004644 +-8.72332649788408,58.6217377972783 +-8.55230884807551,58.6306004911164 +-8.53558169567859,58.5413852951908 +-8.70617068820077,58.5325534004644 + + + + + +NA18 +#labelStyle + +-8.62933923845489,58.5816029511357 + + + + +NA19 + +Small Square NA19 Boundry Box +#Line2 + + +1 + +-8.72332821882367,58.6217467163903 +-8.74058805040071,58.7109267119346 +-8.56913916079708,58.719820364112 +-8.55231052601844,58.6306094133163 +-8.72332821882367,58.6217467163903 + + + + + +NA19 +#labelStyle + +-8.64633377864476,58.6708096076148 + + + + +NA20 + +Small Square NA20 Boundry Box +#Line2 + + +1 + +-8.40528813796982,57.8274431212812 +-8.4212331690288,57.9166914579412 +-8.25348075515732,57.9250914223365 +-8.23794556175126,57.8358142329916 +-8.40528813796982,57.8274431212812 + + + + + +NA20 +#labelStyle + +-8.32947931466991,57.8762929780387 + + + + +NA21 + +Small Square NA21 Boundry Box +#Line2 + + +1 + +-8.42123476842633,57.9167003834645 +-8.43727474932103,58.0059446554986 +-8.26911006660888,58.0143736179087 +-8.25348231344778,57.9251003507525 +-8.42123476842633,57.9167003834645 + + + + + +NA21 +#labelStyle + +-8.3452678672778,57.9655627684744 + + + + +NA22 + +Small Square NA22 Boundry Box +#Line2 + + +1 + +-8.43727635825361,58.0059535806144 +-8.45341207401963,58.0951937663668 +-8.28483271299843,58.1036518704387 +-8.2691116341944,58.0143825459314 +-8.43727635825361,58.0059535806144 + + + + + +NA22 +#labelStyle + +-8.36115057174581,58.0548285550534 + + + + +NA23 + +Small Square NA23 Boundry Box +#Line2 + + +1 + +-8.45341369256619,58.0952026910728 +-8.4696459369915,58.1844387686368 +-8.30064946883824,58.1929261592266 +-8.28483428995603,58.1036607980661 +-8.45341369256619,58.0952026910728 + + + + + +NA23 +#labelStyle + +-8.37712820793809,58.1440903165978 + + + + +NA24 + +Small Square NA24 Boundry Box +#Line2 + + +1 + +-8.46964756523188,58.1844476929308 +-8.48597714097815,58.2736796401446 +-8.31656111730742,58.2821964633308 +-8.3006510552458,58.1929350864566 +-8.46964756523188,58.1844476929308 + + + + + +NA24 +#labelStyle + +-8.39320156442946,58.2333480316827 + + + + +NA25 + +Small Square NA25 Boundry Box +#Line2 + + +1 + +-8.48597877899307,58.2736885640244 +-8.50240649771912,58.3629163584677 +-8.33256845037267,58.3714627615646 +-8.3165627132437,58.2822053901613 +-8.48597877899307,58.2736885640244 + + + + + +NA25 +#labelStyle + +-8.40937143862658,58.3226016786339 + + + + +NA26 + +Small Square NA26 Boundry Box +#Line2 + + +1 + +-8.50240814559021,58.3629252819311 +-8.51893482807744,58.4521489009214 +-8.3486722689109,58.4607250324924 +-8.33257005591731,58.3714716879933 +-8.50240814559021,58.3629252819311 + + + + + +NA26 +#labelStyle + +-8.42563863689086,58.4118512355229 + + + + +NA27 + +Small Square NA27 Boundry Box +#Line2 + + +1 + +-8.51893648588725,58.452157823966 +-8.53556296216722,58.5413772445543 +-8.364873382834,58.5499832544265 +-8.34867388414443,58.4607339585174 +-8.51893648588725,58.452157823966 + + + + + +NA27 +#labelStyle + +-8.44200397466373,58.5010966801642 + + + + +NA28 + +Small Square NA28 Boundry Box +#Line2 + + +1 + +-8.53556462999922,58.541386167178 +-8.55229173948334,58.6306013661451 +-8.3811726112157,58.6392374054227 +-8.36487500783788,58.5499921800455 +-8.53556462999922,58.541386167178 + + + + + +NA28 +#labelStyle + +-8.45846827659374,58.5903379901109 + + + + +NA29 + +Small Square NA29 Boundry Box +#Line2 + + +1 + +-8.55229341742196,58.6306102883454 +-8.56912200903333,58.719821242198 +-8.3975707824205,58.728487463277 +-8.3811742460723,58.6392463306335 +-8.55229341742196,58.6306102883454 + + + + + +NA29 +#labelStyle + +-8.47503237666596,58.679575142651 + + + + +NA30 + +Small Square NA30 Boundry Box +#Line2 + + +1 + +-8.23792882119006,57.8358150591853 +-8.25346397357007,57.9250922513785 +-8.08561900380519,57.9332713848829 +-8.07049444643732,57.8439660856219 +-8.23792882119006,57.8358150591853 + + + + + +NA30 +#labelStyle + +-8.16186894480116,57.8845691190088 + + + + +NA31 + +Small Square NA31 Boundry Box +#Line2 + + +1 + +-8.25346553185641,57.9251011797948 +-8.269093243752,58.0143744498133 +-8.10083523928146,58.0225818320948 +-8.08562052090831,57.9332803161171 +-8.25346553185641,57.9251011797948 + + + + + +NA31 +#labelStyle + +-8.17724600147557,57.9738674654254 + + + + +NA32 + +Small Square NA32 Boundry Box +#Line2 + + +1 + +-8.26909481133339,58.0143833778364 +-8.28481584863053,58.1036527052202 +-8.11614239143871,58.1118884763514 +-8.10083676543878,58.0225907629497 +-8.26909481133339,58.0143833778364 + + + + + +NA32 +#labelStyle + +-8.19271480562932,58.0631619492696 + + + + +NA33 + +Small Square NA33 Boundry Box +#Line2 + + +1 + +-8.28481742558397,58.1036616328479 +-8.30063256271597,58.1929269968993 +-8.13154121531394,58.2011912981331 +-8.11614392672531,58.1118974068251 +-8.28481742558397,58.1036616328479 + + + + + +NA33 +#labelStyle + +-8.20827611781361,58.1524525505512 + + + + +NA34 + +Small Square NA34 Boundry Box +#Line2 + + +1 + +-8.30063414911934,58.1929359241296 +-8.31654416918548,58.2821973039091 +-8.14703247440128,58.2904902776915 +-8.13154275980575,58.2012002282234 +-8.30063414911934,58.1929359241296 + + + + + +NA34 +#labelStyle + +-8.22393070708294,58.2417392490472 + + + + +NA35 + +Small Square NA35 Boundry Box +#Line2 + + +1 + +-8.31654576511755,58.2822062307398 +-8.33255146000376,58.3714636050629 +-8.16261694076987,58.3797853950466 +-8.14703402817507,58.2904992073966 +-8.31654576511755,58.2822062307398 + + + + + +NA35 +#labelStyle + +-8.23967935111349,58.3310220242974 + + + + +NA36 + +Small Square NA36 Boundry Box +#Line2 + + +1 + +-8.33255306554416,58.371472531492 +-8.34865523604573,58.4607258789256 +-8.17829539518379,58.469076629983 +-8.16261850390329,58.3797943243645 +-8.33255306554416,58.371472531492 + + + + + +NA36 +#labelStyle + +-8.25552283632335,58.4203008556019 + + + + +NA37 + +Small Square NA37 Boundry Box +#Line2 + + +1 + +-8.348656851275,58.4607348049509 +-8.36485630722125,58.5499841038093 +-8.19406862722388,58.5583639620462 +-8.17829696775535,58.4690855589116 +-8.348656851275,58.4607348049509 + + + + + +NA37 +#labelStyle + +-8.27146195799481,58.5095757220164 + + + + +NA38 + +Small Square NA38 Boundry Box +#Line2 + + +1 + +-8.36485793222084,58.5499930294286 +-8.381155492602,58.63923825777 +-8.20993743541167,58.6476473705393 +-8.19407020931298,58.5583728905835 +-8.36485793222084,58.5499930294286 + + + + + +NA38 +#labelStyle + +-8.28749752039875,58.5988466023497 + + + + +NA39 + +Small Square NA39 Boundry Box +#Line2 + + +1 + +-8.38115712745428,58.6392471829812 +-8.3975536205504,58.7284883186039 +-8.22590262733542,58.7369268345195 +-8.20993902709863,58.6476562986833 +-8.38115712745428,58.6392471829812 + + + + + +NA39 +#labelStyle + +-8.30363033692101,58.688113475159 + + + + +NA40 + +Small Square NA40 Boundry Box +#Line2 + + +1 + +-8.07047769681421,57.8439668897923 +-8.08560221308124,57.9332721918271 +-7.91766708626132,57.9412302450984 +-7.90295390330367,57.8518975834901 +-8.07047769681421,57.8439668897923 + + + + + +NA40 +#labelStyle + +-7.99416758335697,57.8926246552208 + + + + +NA41 + +Small Square NA41 Boundry Box +#Line2 + + +1 + +-8.08560373018024,57.9332811230615 +-8.10081840721224,58.0225826418266 +-7.93246949908983,58.0305681927401 +-7.91766856210285,57.9412391790758 +-8.08560373018024,57.9332811230615 + + + + + +NA41 +#labelStyle + +-8.0091323919561,57.9819508091326 + + + + +NA42 + +Small Square NA42 Boundry Box +#Line2 + + +1 + +-8.10081993336542,58.0225915726818 +-8.116125517782,58.1118892888847 +-7.9473604020013,58.1199024739183 +-7.93247098374387,58.0305771263518 +-8.10081993336542,58.0225915726818 + + + + + +NA42 +#labelStyle + +-8.02418653526695,58.0712732381853 + + + + +NA43 + +Small Square NA43 Boundry Box +#Line2 + + +1 + +-8.11612705306443,58.1118982193586 +-8.13152429982553,58.2011921134817 +-7.96234053044147,58.2092330702647 +-7.94736189554098,58.1199114071625 +-8.11612705306443,58.1118982193586 + + + + + +NA43 +#labelStyle + +-8.03933075441137,58.1605919235483 + + + + +NA44 + +Small Square NA44 Boundry Box +#Line2 + + +1 + +-8.13152584431315,58.2012010435723 +-8.14701551683498,58.2904910958696 +-7.97741062810157,58.2985599631951 +-7.96234203294076,58.2092420031394 +-8.13152584431315,58.2012010435723 + + + + + +NA44 +#labelStyle + +-8.05456579880527,58.2499068461708 + + + + +NA45 + +Small Square NA45 Boundry Box +#Line2 + + +1 + +-8.14701707060456,58.290500025575 +-8.16259994087753,58.3797862160684 +-7.99257144703338,58.3878831339065 +-7.97741213963524,58.2985688956986 +-8.14701707060456,58.290500025575 + + + + + +NA45 +#labelStyle + +-8.06989242627406,58.3392179867781 + + + + +NA46 + +Small Square NA46 Boundry Box +#Line2 + + +1 + +-8.16260150400671,58.3797951453866 +-8.17827835271522,58.4690774538627 +-8.00782374776623,58.4772025633733 +-7.99257296767707,58.3878920660368 +-8.16260150400671,58.3797951453866 + + + + + +NA46 +#labelStyle + +-8.08531140317019,58.4285253258685 + + + + +NA47 + +Small Square NA47 Boundry Box +#Line2 + + +1 + +-8.17827992528251,58.4690863827916 +-8.19405154192685,58.5583647887982 +-8.02316829942598,58.5665182323446 +-8.00782527759642,58.4772114951286 +-8.17827992528251,58.4690863827916 + + + + + +NA47 +#labelStyle + +-8.10082350449251,58.5178288437096 + + + + +NA48 + +Small Square NA48 Boundry Box +#Line2 + + +1 + +-8.19405312401166,58.5583737173359 +-8.2099203070319,58.6476482001783 +-8.03860587985598,58.6558301213401 +-8.02316983852002,58.5665271637228 +-8.19405312401166,58.5583737173359 + + + + + +NA48 +#labelStyle + +-8.11642951400775,58.6071285203351 + + + + +NA49 + +Small Square NA49 Boundry Box +#Line2 + + +1 + +-8.20992189871453,58.6476571283226 +-8.22588545561652,58.7369276670601 +-8.05413727574006,58.7451382106473 +-8.03860742829208,58.6558390523394 +-8.20992189871453,58.6476571283226 + + + + + +NA49 +#labelStyle + +-8.13213022437396,58.6964243355413 + + + + +NA50 + +Small Square NA50 Boundry Box +#Line2 + + +1 + +-7.90293714485706,57.8518983656129 +-7.91765028664099,57.94123102992 +-7.74962740981563,57.9489677601045 +-7.73532632046451,57.8596084855485 +-7.90293714485706,57.8518983656129 + + + + + +NA50 +#labelStyle + +-7.82637762396287,57.9004593414783 + + + + +NA51 + +Small Square NA51 Boundry Box +#Line2 + + +1 + +-7.91765176247839,57.9412399638977 +-7.93245265805054,58.0305689802742 +-7.76401527270776,58.0383324551161 +-7.74962884432323,57.9489766967501 +-7.91765176247839,57.9412399638977 + + + + + +NA51 +#labelStyle + +-7.84092945156928,57.9898125525355 + + + + +NA52 + +Small Square NA52 Boundry Box +#Line2 + + +1 + +-7.93245414270043,58.0305779138862 +-7.94734351929998,58.1199032641783 +-7.77848919095272,58.1276936165413 +-7.76401671578539,58.0383413914092 +-7.93245414270043,58.0305779138862 + + + + + +NA52 +#labelStyle + +-7.85556819293956,58.0791621728564 + + + + +NA53 + +Small Square NA53 Boundry Box +#Line2 + + +1 + +-7.94734501283549,58.1199121974227 +-7.9623236058331,58.2092338632641 +-7.79304988029184,58.2170512271339 +-7.77849064267154,58.1277025524802 +-7.94734501283549,58.1199121974227 + + + + + +NA53 +#labelStyle + +-7.87029456965264,58.1685081847411 + + + + +NA54 + +Small Square NA54 Boundry Box +#Line2 + + +1 + +-7.96232510832818,58.2092427961391 +-7.97739366133912,58.2985607589477 +-7.80769806449835,58.3064052694443 +-7.79305134072382,58.2170601627168 +-7.96232510832818,58.2092427961391 + + + + + +NA54 +#labelStyle + +-7.88510931137023,58.2578505702818 + + + + +NA55 + +Small Square NA55 Boundry Box +#Line2 + + +1 + +-7.97739517286857,58.2985696914515 +-7.99255443786781,58.3878839324261 +-7.82243447548967,58.3957557258166 +-7.80769953371629,58.3064142046695 +-7.97739517286857,58.2985696914515 + + + + + +NA55 +#labelStyle + +-7.90001315594957,58.3471893113595 + + + + +NA56 + +Small Square NA56 Boundry Box +#Line2 + + +1 + +-7.99255595850726,58.3878928645566 +-8.0078066959465,58.4772033646738 +-7.8372598534414,58.485102578385 +-7.82243595356715,58.3957646606823 +-7.99255595850726,58.3878928645566 + + + + + +NA56 +#labelStyle + +-7.91500684955801,58.4365243896408 + + + + +NA57 + +Small Square NA57 Boundry Box +#Line2 + + +1 + +-8.00780822577241,58.4772122964293 +-8.02315120469897,58.56651903644 +-7.85217494690347,58.5744458090714 +-7.83726134045288,58.4851115128894 +-8.00780822577241,58.4772122964293 + + + + + +NA57 +#labelStyle + +-7.93009114678954,58.5258557865752 + + + + +NA58 + +Small Square NA58 Boundry Box +#Line2 + + +1 + +-8.0231527437887,58.5665279678185 +-8.03858874196651,58.6558309282447 +-7.86718051291802,58.6637853995814 +-7.85217644292422,58.5744547432127 +-8.0231527437887,58.5665279678185 + + + + + +NA58 +#labelStyle + +-7.94526681078325,58.6151834833908 + + + + +NA59 + +Small Square NA59 Boundry Box +#Line2 + + +1 + +-8.03859029039828,58.6558398592442 +-8.05412009443085,58.7451390203752 +-7.88227731713939,58.7531213314016 +-7.86718201802416,58.6637943333578 +-8.03859029039828,58.6558398592442 + + + + + +NA59 +#labelStyle + +-7.96053461334386,58.7045074610921 + + + + +NA60 + +Small Square NA60 Boundry Box +#Line2 + + +1 + +-7.73530955343362,57.8596092455999 +-7.74961060154005,57.9489685227797 +-7.58150238976564,57.9564836935405 +-7.56761409393244,57.8670985572196 +-7.73530955343362,57.8596092455999 + + + + + +NA60 +#labelStyle + +-7.658501468299,57.9080729390647 + + + + +NA61 + +Small Square NA61 Boundry Box +#Line2 + + +1 + +-7.74961203604352,57.9489774594255 +-7.76399842294148,58.0383332204283 +-7.59547499492767,58.0458743810598 +-7.58150378286894,57.9564926327789 +-7.74961203604352,57.9489774594255 + + + + + +NA61 +#labelStyle + +-7.67263960133107,57.9974524551009 + + + + +NA62 + +Small Square NA62 Boundry Box +#Line2 + + +1 + +-7.76399986601494,58.0383421567217 +-7.77847229945186,58.1276943845037 +-7.60953121279107,58.1352616642359 +-7.5954763963577,58.0458833199586 +-7.76399986601494,58.0383421567217 + + + + + +NA62 +#labelStyle + +-7.68686221920745,58.0868285109138 + + + + +NA63 + +Small Square NA63 Boundry Box +#Line2 + + +1 + +-7.77847375116649,58.1277033204428 +-7.79303294681054,58.2170519977596 +-7.62367173928238,58.2246455269154 +-7.60953262261704,58.1352706027935 +-7.77847375116649,58.1277033204428 + + + + + +NA63 +#labelStyle + +-7.70117002385325,58.1762010899051 + + + + +NA64 + +Small Square NA64 Boundry Box +#Line2 + + +1 + +-7.79303440723831,58.2170609333428 +-7.80768108878877,58.3064060427467 +-7.63789727814465,58.3140259527532 +-7.62367315757427,58.2246544651301 +-7.79303440723831,58.2170609333428 + + + + + +NA64 +#labelStyle + +-7.7155637250633,58.2655701752804 + + + + +NA65 + +Small Square NA65 Boundry Box +#Line2 + + +1 + +-7.80768255800247,58.3064149779721 +-7.82241745730194,58.395756501809 +-7.65220854104679,58.4034029252105 +-7.63789870497323,58.3140348906234 +-7.80768255800247,58.3064149779721 + + + + + +NA65 +#labelStyle + +-7.73004404061207,58.3549357500465 + + + + +NA66 + +Small Square NA66 Boundry Box +#Line2 + + +1 + +-7.82241893537516,58.395765436675 +-7.83724279252362,58.4851033570812 +-7.66660624769472,58.4927764275509 +-7.65220997648364,58.4034118627345 +-7.82241893537516,58.395765436675 + + + + + +NA66 +#labelStyle + +-7.74461169636528,58.4442977970084 + + + + +NA67 + +Small Square NA67 Boundry Box +#Line2 + + +1 + +-7.83724427953081,58.4851122915859 +-7.85215784300167,58.5744465904849 +-7.68109112594443,58.5821464428383 +-7.66660769181221,58.4927853647271 +-7.83724427953081,58.4851122915859 + + + + + +NA67 +#labelStyle + +-7.75926742639356,58.5336562987665 + + + + +NA68 + +Small Square NA68 Boundry Box +#Line2 + + +1 + +-7.8521593390181,58.5744555246265 +-7.86716336577614,58.663786183726 +-7.69566391191686,58.671512953933 +-7.68109257881574,58.5821553796649 +-7.8521593390181,58.5744555246265 + + + + + +NA68 +#labelStyle + +-7.77401197308793,58.623011237713 + + + + +NA69 + +Small Square NA69 Boundry Box +#Line2 + + +1 + +-7.86716487087794,58.6637951175027 +-7.88226012649927,58.7531221182913 +-7.71032535011487,58.7608759434894 +-7.69566537361603,58.6715218904083 +-7.86716487087794,58.6637951175027 + + + + + +NA69 +#labelStyle + +-7.7888460872772,58.7123625960291 + + + + +NA70 + +Small Square NA70 Boundry Box +#Line2 + + +1 + +-7.56759731855725,57.8670992951765 +-7.58148557307674,57.9564844340459 +-7.41329444921003,57.9637778155908 +-7.39981962741466,57.8743675704231 +-7.56759731855725,57.8670992951765 + + + + + +NA70 +#labelStyle + +-7.49054152589593,57.9154652157708 + + + + +NA71 + +Small Square NA71 Boundry Box +#Line2 + + +1 + +-7.5814869661759,57.9564933732846 +-7.59545813667826,58.0458751241267 +-7.42685110845138,58.0531937390014 +-7.41329580084058,57.9637867573466 +-7.5814869661759,57.9564933732846 + + + + + +NA71 +#labelStyle + +-7.50426527021664,58.0048702828507 + + + + +NA72 + +Small Square NA72 Boundry Box +#Line2 + + +1 + +-7.59545953810413,58.0458840630258 +-7.60951431273649,58.135262409877 +-7.44048893003392,58.1426063836597 +-7.42685246816462,58.0532026804301 +-7.59545953810413,58.0458840630258 + + + + + +NA72 +#labelStyle + +-7.51807106270066,58.0942720165919 + + + + +NA73 + +Small Square NA73 Boundry Box +#Line2 + + +1 + +-7.60951572255827,58.1352713484348 +-7.62365479717599,58.2246462751435 +-7.45420858996187,58.2320157344749 +-7.44049029789707,58.1426153247597 +-7.60951572255827,58.1352713484348 + + + + + +NA73 +#labelStyle + +-7.53195958551125,58.183670401468 + + + + +NA74 + +Small Square NA74 Boundry Box +#Line2 + + +1 + +-7.62365621546367,58.2246552133584 +-7.6378802937378,58.3140267035813 +-7.46801077183877,58.3214217761768 +-7.45420996604291,58.2320246752447 +-7.62365621546367,58.2246552133584 + + + + + +NA74 +#labelStyle + +-7.54593152846649,58.2730654217683 + + + + +NA75 + +Small Square NA75 Boundry Box +#Line2 + + +1 + +-7.63788172056215,58.3140356414518 +-7.65219151408881,58.4034036786517 +-7.48189616697387,58.4108244933129 +-7.46801215620645,58.321430716615 +-7.63788172056215,58.3140356414518 + + + + + +NA75 +#labelStyle + +-7.55998758914635,58.3624570615953 + + + + +NA76 + +Small Square NA76 Boundry Box +#Line2 + + +1 + +-7.65219294952139,58.4034126161759 +-7.66658917793287,58.4927771836183 +-7.49586547449035,58.5002238702457 +-7.4818975596977,58.4108334334179 +-7.65219294952139,58.4034126161759 + + + + + +NA76 +#labelStyle + +-7.57412847300137,58.451845304862 + + + + +NA77 + +Small Square NA77 Boundry Box +#Line2 + + +1 + +-7.66659062204606,58.4927861207948 +-7.68107401312389,58.5821472015452 +-7.50991940143529,58.5896198911498 +-7.49586687564064,58.5002328100159 +-7.66659062204606,58.4927861207948 + + + + + +NA77 +#labelStyle + +-7.58835489346334,58.5412301352889 + + + + +NA78 + +Small Square NA78 Boundry Box +#Line2 + + +1 + +-7.68107546599088,58.5821561383721 +-7.69564675578074,58.6715137152929 +-7.52405866289162,58.6790125400092 +-7.50992081108316,58.5896288305836 +-7.68107546599088,58.5821561383721 + + + + + +NA78 +#labelStyle + +-7.60266757205771,58.6306115364011 + + + + +NA79 + +Small Square NA79 Boundry Box +#Line2 + + +1 + +-7.69564821747557,58.6715226517684 +-7.71030815040414,58.7608767075157 +-7.5382839820918,58.768401800614 +-7.52406008110896,58.6790214791049 +-7.69564821747557,58.6715226517684 + + + + + +NA79 +#labelStyle + +-7.617067238518,58.7199894915252 + + + + +NA80 + +Small Square NA80 Boundry Box +#Line2 + + +1 + +-7.39980284393593,57.874368286263 +-7.41327762435051,57.9637785339038 +-7.24500601884017,57.9708499030117 +-7.23194533210729,57.881415303603 +-7.39980284393593,57.874368286263 + + + + + +NA80 +#labelStyle + +-7.32250021392856,57.9226359459224 + + + + +NA81 + +Small Square NA81 Boundry Box +#Line2 + + +1 + +-7.41327897597691,57.9637874756599 +-7.4268342419635,58.0531944598002 +-7.25814606367899,58.0602903039917 +-7.2450073289315,57.9708588472091 +-7.41327897597691,57.9637874756599 + + + + + +NA81 +#labelStyle + +-7.33580889495155,58.0120658083898 + + + + +NA82 + +Small Square NA82 Boundry Box +#Line2 + + +1 + +-7.42683560167258,58.053203401229 +-7.44047202167228,58.1426071069565 +-7.27136481300444,58.1497275481394 +-7.25814738160822,58.0602992478741 +-7.42683560167258,58.053203401229 + + + + + +NA82 +#labelStyle + +-7.34919717990748,58.1014924607566 + + + + +NA83 + +Small Square NA83 Boundry Box +#Line2 + + +1 + +-7.44047338953124,58.1426160480567 +-7.45419163947906,58.2320164602823 +-7.28466292279378,58.2391616213972 +-7.2713661388368,58.1497364917055 +-7.44047338953124,58.1426160480567 + + + + + +NA83 +#labelStyle + +-7.36266573109252,58.1909158885381 + + + + +NA84 + +Small Square NA84 Boundry Box +#Line2 + + +1 + +-7.45419301555588,58.2320254010524 +-7.46799377898535,58.3214225045073 +-7.29804105640461,58.3285925095389 +-7.28466425659523,58.2391705646455 +-7.45419301555588,58.2320254010524 + + + + + +NA84 +#labelStyle + +-7.37621521824106,58.2803360770774 + + + + +NA85 + +Small Square NA85 Boundry Box +#Line2 + + +1 + +-7.46799516334878,58.3214314449457 +-7.48187913149838,58.4108252241793 +-7.31149988467837,58.418020198168 +-7.29804239824187,58.328601452468 +-7.46799516334878,58.3214314449457 + + + + + +NA85 +#labelStyle + +-7.38984631862979,58.3697530115423 + + + + +NA86 + +Small Square NA86 Boundry Box +#Line2 + + +1 + +-7.48188052421793,58.4108341642845 +-7.49584839613923,58.5002246036607 +-7.32504008604545,58.5074446727146 +-7.31150123461889,58.4180291407764 +-7.48188052421793,58.4108341642845 + + + + + +NA86 +#labelStyle + +-7.40355971718348,58.4591666769232 + + + + +NA87 + +Small Square NA87 Boundry Box +#Line2 + + +1 + +-7.49584979728523,58.5002335434311 +-7.50990227995295,58.5896206271264 +-7.33866234663221,58.5968659184329 +-7.32504144415746,58.5074536150008 +-7.49584979728523,58.5002335434311 + + + + + +NA87 +#labelStyle + +-7.41735610658259,58.5485770580295 + + + + +NA88 + +Small Square NA88 Boundry Box +#Line2 + + +1 + +-7.50990368959648,58.5896295665603 +-7.5240414980203,58.6790132785602 +-7.35236736036972,58.6862839203985 +-7.33866371298471,58.5968748603955 +-7.50990368959648,58.5896295665603 + + + + + +NA88 +#labelStyle + +-7.43123618737266,58.637984139488 + + + + +NA89 + +Small Square NA89 Boundry Box +#Line2 + + +1 + +-7.52404291623329,58.6790222176562 +-7.53826677357165,58.7684025417528 +-7.3661558291044,58.7756986635059 +-7.35236873503251,58.686292862036 +-7.52404291623329,58.6790222176562 + + + + + +NA89 +#labelStyle + +-7.44520066807559,58.727387905739 + + + + +NA90 + +Small Square NA90 Boundry Box +#Line2 + + +1 + +-7.23192854076649,57.881415997304 +-7.24498918605346,57.9708505991103 +-7.07663953672986,57.9776997391573 +-7.06399362648781,57.8882415417524 +-7.23192854076649,57.881415997304 + + + + + +NA90 +#labelStyle + +-7.15437995700817,57.9295849104059 + + + + +NA91 + +Small Square NA91 Boundry Box +#Line2 + + +1 + +-7.24499049614064,57.970859543308 +-7.25812918919807,58.0602910025001 +-7.08936231849575,58.067163857728 +-7.07664080521746,57.9777086857206 +-7.24499049614064,57.970859543308 + + + + + +NA91 +#labelStyle + +-7.167272919801,58.0190388109325 + + + + +NA92 + +Small Square NA92 Boundry Box +#Line2 + + +1 + +-7.25813050712312,58.0602999463828 +-7.27134789658316,58.1497282490696 +-7.10216133961539,58.1566249376984 +-7.08936359457574,58.0671728039881 +-7.25813050712312,58.0602999463828 + + + + + +NA92 +#labelStyle + +-7.18024303496081,58.1084896209317 + + + + +NA93 + +Small Square NA93 Boundry Box +#Line2 + + +1 + +-7.27134922241131,58.149737192636 +-7.28464596418397,58.2391623247613 +-7.11503723593734,58.2460829660131 +-7.10216262335098,58.156633883654 +-7.27134922241131,58.149737192636 + + + + + +NA93 +#labelStyle + +-7.19329094481435,58.1979373269311 + + + + +NA94 + +Small Square NA94 Boundry Box +#Line2 + + +1 + +-7.28464729798119,58.2391712680098 +-7.2980240553561,58.3285932153491 +-7.12799065046985,58.3355379294599 +-7.11503852739249,58.2460919116629 +-7.28464729798119,58.2391712680098 + + + + + +NA94 +#labelStyle + +-7.20641729890825,58.287381915297 + + + + +NA95 + +Small Square NA95 Boundry Box +#Line2 + + +1 + +-7.29802539718909,58.3286021582784 +-7.3114828409389,58.4180209064366 +-7.14102223348133,58.4249898146672 +-7.12799194970922,58.3355468748026 +-7.29802539718909,58.3286021582784 + + + + + +NA95 +#labelStyle + +-7.21962275411012,58.376823372232 + + + + +NA96 + +Small Square NA96 Boundry Box +#Line2 + + +1 + +-7.31148419087514,58.4180298490453 +-7.32502299936071,58.507445383454 +-7.15413264260246,58.5144386081014 +-7.14102354057031,58.4249987597013 +-7.31148419087514,58.4180298490453 + + + + + +NA96 +#labelStyle + +-7.23290797471136,58.4662616837724 + + + + +NA97 + +Small Square NA97 Boundry Box +#Line2 + + +1 + +-7.32502435746841,58.5074543257405 +-7.33864521674578,58.5968666316557 +-7.16732254293009,58.6038842960648 +-7.15413395760718,58.5144475528257 +-7.32502435746841,58.5074543257405 + + + + + +NA97 +#labelStyle + +-7.24627363253172,58.5556968357861 + + + + +NA98 + +Small Square NA98 Boundry Box +#Line2 + + +1 + +-7.33864658309395,58.5968755736186 +-7.35235018702307,58.6862846361174 +-7.18059260713283,58.6933268646929 +-7.16732386591744,58.6038932404779 +-7.33864658309395,58.5968755736186 + + + + + +NA98 +#labelStyle + +-7.25972040702558,58.6451288139693 + + + + +NA99 + +Small Square NA99 Boundry Box +#Line2 + + +1 + +-7.35235156168149,58.6862935777552 +-7.36613861203684,58.7756993817335 +-7.19394351555853,58.7827662999518 +-7.18059393817046,58.6933358087934 +-7.35235156168149,58.6862935777552 + + + + + +NA99 +#labelStyle + +-7.27324898539006,58.7345576038443 + + + + + +NB + +Large Square NB Boundry Box +#Line1 + + +1 + +-7.06397682752715,57.8882422132933 +-7.19392629020642,58.7827669952454 +-5.46777441909188,58.840789222465 +-5.38075585031434,57.9442791254927 +-7.06397682752715,57.8882422132933 + + + + + +NB00 + +Small Square NB00 Boundry Box +#Line2 + + +1 + +-7.06397682752715,57.8882422132933 +-7.07662269626013,57.9777004130202 +-6.9081974481232,57.9843271140051 +-6.89596693610579,57.8948460764392 +-7.06397682752715,57.8882422132933 + + + + + +NB00 +#labelStyle + +-6.98618318697257,57.9363118966941 + + + + +NB01 + +Small Square NB01 Boundry Box +#Line2 + + +1 + +-7.07662396474357,57.9777093595838 +-7.08934543626794,58.0671645339246 +-6.9205023380571,58.0738141885803 +-6.90819867494455,57.9843360628583 +-7.07662396474357,57.9777093595838 + + + + + +NB01 +#labelStyle + +-6.99865979635722,58.025789076328 + + + + +NB02 + +Small Square NB02 Boundry Box +#Line2 + + +1 + +-7.08934671234374,58.0671734801849 +-7.10214441538263,58.1566256162403 +-6.93288099515128,58.1632983390817 +-6.92050357222462,58.0738231371417 +-7.08934671234374,58.0671734801849 + + + + + +NB02 +#labelStyle + +-7.01121109942275,58.1152632813259 + + + + +NB03 + +Small Square NB03 Boundry Box +#Line2 + + +1 + +-7.10214569911401,58.1566345621961 +-7.11502026945074,58.2460836469121 +-6.94533403502683,58.2527795534258 +-6.93288223672618,58.1633072873501 +-7.10214569911401,58.1566345621961 + + + + + +NB03 +#labelStyle + +-7.02383771842707,58.2047344991972 + + + + +NB04 + +Small Square NB04 Boundry Box +#Line2 + + +1 + +-7.11502156090165,58.2460925925622 +-7.12797364147849,58.3355386127279 +-6.95786208024219,58.3422578193833 +-6.94533528407102,58.2527885014 +-7.11502156090165,58.2460925925622 + + + + + +NB04 +#labelStyle + +-7.03654028262794,58.2942027173011 + + + + +NB05 + +Small Square NB05 Boundry Box +#Line2 + + +1 + +-7.12797494071359,58.3355475580707 +-7.14100518173221,58.424990500316 +-6.97046576039061,58.4317331245763 +-6.95786333681828,58.342266767062 +-7.12797494071359,58.3355475580707 + + + + + +NB05 +#labelStyle + +-7.04931942838109,58.3836679228439 + + + + +NB06 + +Small Square NB06 Boundry Box +#Line2 + + +1 + +-7.1410064888169,58.4249994453503 +-7.15411554784051,58.514439296143 +-6.98314571219918,58.5212054564762 +-6.97046702456191,58.4317420719583 +-7.1410064888169,58.4249994453503 + + + + + +NB06 +#labelStyle + +-7.06217579924002,58.4731301028772 + + + + +NB07 + +Small Square NB07 Boundry Box +#Line2 + + +1 + +-7.15411686284092,58.5144482408676 +-7.16730540489812,58.6038849865115 +-6.99590257962962,58.6106748024016 +-6.98314698402974,58.5212144035603 +-7.15411686284092,58.5144482408676 + + + + + +NB07 +#labelStyle + +-7.07511004605746,58.5625892442951 + + + + +NB08 + +Small Square NB08 Boundry Box +#Line2 + + +1 + +-7.16730672788113,58.6038939309248 +-7.18057542557153,58.6933275575569 +-7.00873701398068,58.7001411495155 +-6.99590385918418,58.6106837491864 +-7.16730672788113,58.6038939309248 + + + + + +NB08 +#labelStyle + +-7.08812282708852,58.6520453338316 + + + + +NB09 + +Small Square NB09 Boundry Box +#Line2 + + +1 + +-7.18057675660479,58.6933365016576 +-7.19392629020642,58.7827669952454 +-7.02164967399238,58.7896044848233 +-7.00873830132475,58.7001500959998 +-7.18057675660479,58.6933365016576 + + + + + +NB09 +#labelStyle + +-7.1012148080956,58.7414983580589 + + + + +NB10 + +Small Square NB10 Boundry Box +#Line2 + + +1 + +-6.89595012976818,57.8948467257996 +-6.90818060021534,57.9843277656115 +-6.73968220522074,57.9907318241799 +-6.72786769337181,57.9012287058298 +-6.89595012976818,57.8948467257996 + + + + + +NB10 +#labelStyle + +-6.81791234267453,57.9428166988708 + + + + +NB11 + +Small Square NB11 Boundry Box +#Line2 + + +1 + +-6.90818182703252,57.984336714465 +-6.92048544832927,58.0738148424442 +-6.75156859457194,58.0802410916156 +-6.7396833903153,57.9907407752469 +-6.90818182703252,57.984336714465 + + + + + +NB11 +#labelStyle + +-6.82997198332504,58.0323163970856 + + + + +NB12 + +Small Square NB12 Boundry Box +#Line2 + + +1 + +-6.9204866824926,58.0738237910059 +-6.93286406335593,58.1632989952143 +-6.76352627204873,58.1697475457816 +-6.75156978676577,58.0802500424018 +-6.9204866824926,58.0738237910059 + + + + + +NB12 +#labelStyle + +-6.8421038520673,58.1218132328572 + + + + +NB13 + +Small Square NB13 Boundry Box +#Line2 + + +1 + +-6.93286530492661,58.163307943483 +-6.94531706091436,58.2527802118386 +-6.77555583294892,58.2592511755361 +-6.76352747140104,58.169756496286 +-6.93286530492661,58.163307943483 + + + + + +NB13 +#labelStyle + +-6.85430855099386,58.2113071946463 + + + + +NB14 + +Small Square NB14 Boundry Box +#Line2 + + +1 + +-6.94531830995431,58.252789159813 +-6.95784506356096,58.3422584800876 +-6.78765787928371,58.3487519696011 +-6.77555703951955,58.2592601257574 +-6.94531830995431,58.252789159813 + + + + + +NB14 +#labelStyle + +-6.86658668897548,58.3007982707741 + + + + +NB15 + +Small Square NB15 Boundry Box +#Line2 + + +1 + +-6.95784632013279,58.3422674277666 +-6.97044870088691,58.4317337875837 +-6.79983301987213,58.4382499165614 +-6.78765909313322,58.3487609195384 +-6.95784632013279,58.3422674277666 + + + + + +NB15 +#labelStyle + +-6.87893888175629,58.3902864494197 + + + + +NB16 + +Small Square NB16 Boundry Box +#Line2 + + +1 + +-6.97044996505393,58.431742734966 +-6.9831286096172,58.5212061217984 +-6.81208187043696,58.5277450048617 +-6.79983424106174,58.4382588662134 +-6.97044996505393,58.431742734966 + + + + + +NB16 +#labelStyle + +-6.89136575205042,58.4797717186182 + + + + +NB17 + +Small Square NB17 Boundry Box +#Line2 + + +1 + +-6.98312988144343,58.5212150688827 +-6.99588543371143,58.6106754700503 +-6.82440505370232,58.6172372228044 +-6.81208309902858,58.5277539542272 +-6.98312988144343,58.5212150688827 + + + + + +NB17 +#labelStyle + +-6.90386792964041,58.5692540662583 + + + + +NB18 + +Small Square NB18 Boundry Box +#Line2 + + +1 + +-6.99588671326164,58.6106844168354 +-7.0087198244662,58.7001418195026 +-6.83680319949291,58.7067265585479 +-6.82440628975859,58.6172461718822 +-6.99588671326164,58.6106844168354 + + + + + +NB18 +#labelStyle + +-6.91644605147716,58.6587334800799 + + + + +NB19 + +Small Square NB19 Boundry Box +#Line2 + + +1 + +-7.0087211118059,58.7001507659872 +-7.02163244061938,58.7896051571607 +-6.84927694483496,58.796213000104 +-6.83680444307717,58.706735507337 +-7.0087211118059,58.7001507659872 + + + + + +NB19 +#labelStyle + +-6.92910076178168,58.7482099476722 + + + + +NB20 + +Small Square NB20 Boundry Box +#Line2 + + +1 + +-6.72785087990081,57.9012293329898 +-6.7396653501203,57.9907324535099 +-6.57109626696388,57.9969136729779 +-6.55969833734474,57.9073892347122 +-6.72785087990081,57.9012293329898 + + + + + +NB20 +#labelStyle + +-6.64956986976847,57.9490991176546 + + + + +NB21 + +Small Square NB21 Boundry Box +#Line2 + + +1 + +-6.73966653521068,57.9907414045772 +-6.75155169759166,58.0802417231267 +-6.58256356708413,58.0864443686218 +-6.57109741027311,57.9969226261825 +-6.73966653521068,57.9907414045772 + + + + + +NB21 +#labelStyle + +-6.66121194630572,58.0386205723991 + + + + +NB22 + +Small Square NB22 Boundry Box +#Line2 + + +1 + +-6.75155288978129,58.0802506739132 +-6.76350933294039,58.1697481794847 +-6.59409966967501,58.175972358062 +-6.58256471724509,58.0864533215562 +-6.75155288978129,58.0802506739132 + + + + + +NB22 +#labelStyle + +-6.67292377866122,58.1281392731781 + + + + +NB23 + +Small Square NB23 Boundry Box +#Line2 + + +1 + +-6.76351053228846,58.1697571299893 +-6.77553885146223,58.2592518114421 +-6.6057051496182,58.2654976310669 +-6.59410082674485,58.1759813107253 +-6.76351053228846,58.1697571299893 + + + + + +NB23 +#labelStyle + +-6.68470594866862,58.217655209373 + + + + +NB24 + +Small Square NB24 Boundry Box +#Line2 + + +1 + +-6.77554005802861,58.2592607616637 +-6.78764085516634,58.3487526077212 +-6.61738058828335,58.3550201772793 +-6.60570631365474,58.265506583458 +-6.77554005802861,58.2592607616637 + + + + + +NB24 +#labelStyle + +-6.69655904471663,58.3071683702362 + + + + +NB25 + +Small Square NB25 Boundry Box +#Line2 + + +1 + +-6.78764206901157,58.3487615576587 +-6.79981595286967,58.4382505569067 +-6.6291265736193,58.4445399862145 +-6.61738175934505,58.3550291293972 +-6.78764206901157,58.3487615576587 + + + + + +NB25 +#labelStyle + +-6.70848366184102,58.3966787448879 + + + + +NB26 + +Small Square NB26 Boundry Box +#Line2 + + +1 + +-6.79981717405498,58.4382595065589 +-6.81206476029288,58.5277456474434 +-6.64094370024691,58.5340570472585 +-6.62912775176529,58.4445489380582 +-6.79981717405498,58.4382595065589 + + + + + +NB26 +#labelStyle + +-6.72048040181825,58.4861863223153 + + + + +NB27 + +Small Square NB27 Boundry Box +#Line2 + + +1 + +-6.81206598888018,58.5277545968092 +-6.82438790015797,58.617237867634 +-6.6528325695535,58.6235713496656 +-6.64094488553699,58.5340659988268 +-6.81206598888018,58.5277545968092 + + + + + +NB27 +#labelStyle + +-6.73254987326065,58.5756910913696 + + + + +NB28 + +Small Square NB28 Boundry Box +#Line2 + + +1 + +-6.82438913620989,58.6172468167121 +-6.83678600228749,58.7067272056369 +-6.66479378978878,58.7130828825566 +-6.65283376204814,58.6235803009575 +-6.82438913620989,58.6172468167121 + + + + + +NB28 +#labelStyle + +-6.74469269171324,58.6651930407642 + + + + +NB29 + +Small Square NB29 Boundry Box +#Line2 + + +1 + +-6.83678724586737,58.7067361544261 +-6.84925970370549,58.7962136494638 +-6.67682797616254,58.8025916349167 +-6.66479498954916,58.713091833571 +-6.83678724586737,58.7067361544261 + + + + + +NB29 +#labelStyle + +-6.75690947975216,58.7546921590726 + + + + +NB30 + +Small Square NB30 Boundry Box +#Line2 + + +1 + +-6.5596815169846,57.9073898396526 +-6.57107940491707,57.9969142800123 +-6.40244209881763,58.0028724703893 +-6.39146131351746,57.9133274745191 +-6.5596815169846,57.9073898396526 + + + + + +NB30 +#labelStyle + +-6.4811582204955,57.955158960422 + + + + +NB31 + +Small Square NB31 Boundry Box +#Line2 + + +1 + +-6.57108054822212,57.996923233217 +-6.58254666309964,58.0864449777607 +-6.41348974125232,58.0924238281311 +-6.402443200285,58.0028814256549 +-6.57108054822212,57.996923233217 + + + + + +NB31 +#labelStyle + +-6.49238215757909,58.0447014081696 + + + + +NB32 + +Small Square NB32 Boundry Box +#Line2 + + +1 + +-6.58254781325639,58.0864539306953 +-6.59408272350394,58.1759729693159 +-6.42460369410484,58.1819725829814 +-6.41349084932323,58.0924327831369 +-6.58254781325639,58.0864539306953 + + + + + +NB32 +#labelStyle + +-6.50367337174325,58.1342412066987 + + + + +NB33 + +Small Square NB33 Boundry Box +#Line2 + + +1 + +-6.59408388056955,58.1759819219794 +-6.60568816100963,58.2654982444465 +-6.43578451175102,58.2715187255875 +-6.4246048088344,58.1819815377264 +-6.59408388056955,58.1759819219794 + + + + + +NB33 +#labelStyle + +-6.51503242447225,58.2237783462807 + + + + +NB34 + +Small Square NB34 Boundry Box +#Line2 + + +1 + +-6.60568932504191,58.2655071968378 +-6.61736355698426,58.3550207927952 +-6.44703275482764,58.3610622464815 +-6.435785633195,58.2715276800709 +-6.60568932504191,58.2655071968378 + + + + + +NB34 +#labelStyle + +-6.52645988358066,58.3133128170673 + + + + +NB35 + +Small Square NB35 Boundry Box +#Line2 + + +1 + +-6.61736472804168,58.3550297449133 +-6.6291094993746,58.4445406038776 +-6.45834899032056,58.4506031360774 +-6.44703388304241,58.3610712007021 +-6.61736472804168,58.3550297449133 + + + + + +NB35 +#labelStyle + +-6.53795632330232,58.402844609089 + + + + +NB36 + +Small Square NB36 Boundry Box +#Line2 + + +1 + +-6.62911067751628,58.4445495557215 +-6.64092658279939,58.5340576670796 +-6.46973379165434,58.5401413846702 +-6.45835012536313,58.4506120900344 +-6.62911067751628,58.4445495557215 + + + + + +NB36 +#labelStyle + +-6.5495223243808,58.4923737122526 + + + + +NB37 + +Small Square NB37 Boundry Box +#Line2 + + +1 + +-6.64092776808513,58.5340666186481 +-6.65281540864381,58.6235719716557 +-6.48118773878347,58.6296769824336 +-6.46973493358239,58.5401503383627 +-6.64092776808513,58.5340666186481 + + + + + +NB37 +#labelStyle + +-6.56115847416146,58.5819001163399 + + + + +NB38 + +Small Square NB38 Boundry Box +#Line2 + + +1 + +-6.65281660113409,58.6235809229478 +-6.6647765851554,58.7130835067268 +-6.49271141828507,58.7192099194181 +-6.48118888765532,58.6296859358605 +-6.65281660113409,58.6235809229478 + + + + + +NB38 +#labelStyle + +-6.57286536668497,58.671423811005 + + + + +NB39 + +Small Square NB39 Boundry Box +#Line2 + + +1 + +-6.66477778491141,58.7130924577414 +-6.67681072754178,58.8025922612782 +-6.50430542345318,58.8087401855488 +-6.49271257415971,58.7192188725784 +-6.66477778491141,58.7130924577414 + + + + + +NB39 +#labelStyle + +-6.58464360278249,58.7609447857729 + + + + +NB40 + +Small Square NB40 Boundry Box +#Line2 + + +1 + +-6.39144448651303,57.9133280572214 +-6.40242523007133,58.0028730551092 +-6.23372217255181,58.0086080331201 +-6.22315907360088,57.9190432433492 +-6.39144448651303,57.9133280572214 + + + + + +NB40 +#labelStyle + +-6.31267985346683,57.9609960412296 + + + + +NB41 + +Small Square NB41 Boundry Box +#Line2 + + +1 + +-6.40242633153452,58.002882010375 +-6.41347283051251,58.0924244148789 +-6.24434960912815,58.0981792854421 +-6.23372323212282,58.0086169903702 +-6.40242633153452,58.002882010375 + + + + + +NB41 +#labelStyle + +-6.323485095884,58.0505587170287 + + + + +NB42 + +Small Square NB42 Boundry Box +#Line2 + + +1 + +-6.41347393857921,58.0924333698848 +-6.42458674112199,58.1819731717671 +-6.25504085789562,58.1877480344156 +-6.24435067505389,58.0981882424423 +-6.41347393857921,58.0924333698848 + + + + + +NB42 +#labelStyle + +-6.3343551304016,58.1401188446102 + + + + +NB43 + +Small Square NB43 Boundry Box +#Line2 + + +1 + +-6.42458785584732,58.1819821265123 +-6.43576751627356,58.2715193164215 +-6.26579645263755,58.2773142715359 +-6.25504193022918,58.187756991165 +-6.42458785584732,58.1819821265123 + + + + + +NB43 +#labelStyle + +-6.34529049806704,58.2296764151043 + + + + +NB44 + +Small Square NB44 Boundry Box +#Line2 + + +1 + +-6.43576863771327,58.271528270905 +-6.44701571660192,58.361062839374 +-6.27661693316967,58.3668779881922 +-6.26579753143259,58.2773232280338 +-6.43576863771327,58.271528270905 + + + + + +NB44 +#labelStyle + +-6.35629174603176,58.3192314195311 + + + + +NB45 + +Small Square NB45 Boundry Box +#Line2 + + +1 + +-6.4470168448124,58.3610717935948 +-6.45833190909082,58.4506037310388 +-6.28750284542521,58.4564391756654 +-6.27661801848048,58.3668869444375 +-6.4470168448124,58.3610717935948 + + + + + +NB45 +#labelStyle + +-6.36735942763721,58.4087838487989 + + + + +NB46 + +Small Square NB46 Boundry Box +#Line2 + + +1 + +-6.45833304412908,58.4506126849961 +-6.46971666716272,58.5401419817111 +-6.29845474154127,58.5459978251272 +-6.2875039373067,58.4564481316574 +-6.45833304412908,58.4506126849961 + + + + + +NB46 +#labelStyle + +-6.37849410250208,58.4983336937027 + + + + +NB47 + +Small Square NB47 Boundry Box +#Line2 + + +1 + +-6.46971780908643,58.5401509354038 +-6.48117057076995,58.6296775815646 +-6.30947317994682,58.6355539276376 +-6.29845584004897,58.5460067808649 +-6.46971780908643,58.5401509354038 + + + + + +NB47 +#labelStyle + +-6.38969633661116,58.5878809449218 + + + + +NB48 + +Small Square NB48 Boundry Box +#Line2 + + +1 + +-6.48117171963743,58.6296865349917 +-6.49269420648744,58.7192105206497 +-6.32055872545203,58.7251074741437 +-6.30947428513688,58.6355628831202 +-6.48117171963743,58.6296865349917 + + + + + +NB48 +#labelStyle + +-6.40096670240562,58.6774255930184 + + + + +NB49 + +Small Square NB49 Boundry Box +#Line2 + + +1 + +-6.49269536235769,58.7192194738102 +-6.50428816760705,58.8087407888919 +-6.33171194933931,58.8146584554773 +-6.32055983738127,58.7251164293702 +-6.49269536235769,58.7192194738102 + + + + + +NB49 +#labelStyle + +-6.41230577887486,58.7669676284358 + + + + +NB50 + +Small Square NB50 Boundry Box +#Line2 + + +1 + +-6.22314224019765,57.9190438037955 +-6.23370529735351,58.0086085955076 +-6.0649389660207,58.0141201846137 +-6.05479407530662,57.9245363659878 +-6.22314224019765,57.9190438037955 + + + + + +NB50 +#labelStyle + +-6.14413723344568,57.9666101808358 + + + + +NB51 + +Small Square NB51 Boundry Box +#Line2 + + +1 + +-6.23370635692032,58.0086175527579 +-6.24433269188253,58.0981798497806 +-6.07514566893288,58.1037105626412 +-6.06493998364285,58.0141291437716 +-6.23370635692032,58.0086175527579 + + + + + +NB51 +#labelStyle + +-6.15452324619728,58.0561923183597 + + + + +NB52 + +Small Square NB52 Boundry Box +#Line2 + + +1 + +-6.24433375780406,58.098188806781 +-6.25502389835256,58.1877486007149 +-6.08541367986101,58.1932985330798 +-6.07514669266038,58.1037195215587 +-6.24433375780406,58.098188806781 + + + + + +NB52 +#labelStyle + +-6.16497156004989,58.1457720049063 + + + + +NB53 + +Small Square NB53 Boundry Box +#Line2 + + +1 + +-6.25502497068187,58.1877575574645 +-6.26577945054485,58.2773148398059 +-6.09574351191228,58.2828840882411 +-6.08541470974487,58.1933074917562 +-6.25502497068187,58.1877575574645 + + + + + +NB53 +#labelStyle + +-6.17548269552956,58.2353492324332 + + + + +NB54 + +Small Square NB54 Boundry Box +#Line2 + + +1 + +-6.26578052933562,58.2773237963039 +-6.27659988827307,58.3668785584427 +-6.10613568399641,58.3724672203393 +-6.0957445480041,58.2828930466756 +-6.26578052933562,58.2773237963039 + + + + + +NB54 +#labelStyle + +-6.1860571790388,58.3249239927971 + + + + +NB55 + +Small Square NB55 Boundry Box +#Line2 + + +1 + +-6.27660097357959,58.3668875146882 +-6.28748575746832,58.4564397479065 +-6.11659072090752,58.4620479214902 +-6.10613672634837,58.3724761785311 +-6.27660097357959,58.3668875146882 + + + + + +NB55 +#labelStyle + +-6.19669554293932,58.4144962777524 + + + + +NB56 + +Small Square NB56 Boundry Box +#Line2 + + +1 + +-6.28748684934549,58.4564487038987 +-6.29843761026558,58.545998399369 +-6.12710915340737,58.5516261837093 +-6.11659176957241,58.4620568794385 +-6.28748684934549,58.4564487038987 + + + + + +NB56 +#labelStyle + +-6.20739832563614,58.5040660789494 + + + + +NB57 + +Small Square NB57 Boundry Box +#Line2 + + +1 + +-6.29843870876894,58.546007355107 +-6.30945600509165,58.6355545038903 +-6.13769151830993,58.6412019989101 +-6.12711020843856,58.5516351414133 +-6.29843870876894,58.546007355107 + + + + + +NB57 +#labelStyle + +-6.21816607166318,58.5936333879328 + + + + +NB58 + +Small Square NB58 Boundry Box +#Line2 + + +1 + +-6.30945711027734,58.6355634593731 +-6.32054150675453,58.7251080524176 +-6.14833835856755,58.7307753589029 +-6.13769257976141,58.641210956369 +-6.30945711027734,58.6355634593731 + + + + + +NB58 +#labelStyle + +-6.22899933177027,58.6831981961397 + + + + +NB59 + +Small Square NB59 Boundry Box +#Line2 + + +1 + +-6.32054261867937,58.7251170076443 +-6.33169468653441,58.8146590357827 +-6.15905022335847,58.8203462553925 +-6.14833942649393,58.7307843161159 +-6.32054261867937,58.7251170076443 + + + + + +NB59 +#labelStyle + +-6.23989866301162,58.772760494898 + + + + +NB60 + +Small Square NB60 Boundry Box +#Line2 + + +1 + +-6.05477723575065,57.924536904161 +-6.06492208461847,58.0141207246514 +-5.89609496294116,58.0194087550709 +-5.88636878212812,57.929806673928 +-6.05477723575065,57.924536904161 + + + + + +NB60 +#labelStyle + +-5.97553283112762,57.9720012067209 + + + + +NB61 + +Small Square NB61 Boundry Box +#Line2 + + +1 + +-6.06492310223643,58.0141296838095 +-6.07512874543157,58.103711104553 +-5.90588042483253,58.1090174886236 +-5.89609593856401,58.0194177160598 +-6.06492310223643,58.0141296838095 + + + + + +NB61 +#labelStyle + +-5.98549909951111,58.0616020383189 + + + + +NB62 + +Small Square NB62 Boundry Box +#Line2 + + +1 + +-6.07512976915485,58.1037200634708 +-6.08539671400992,58.1932990768751 +-5.91572468484293,58.1986239065494 +-5.90588140631076,58.1090264493813 +-6.07512976915485,58.1037200634708 + + + + + +NB62 +#labelStyle + +-5.99552517220142,58.1512005124049 + + + + +NB63 + +Small Square NB63 Boundry Box +#Line2 + + +1 + +-6.08539774388953,58.1933080355517 +-6.09572650345862,58.2828846339293 +-5.92562823532294,58.2882280019443 +-5.91572567222549,58.1986328670752 +-6.08539774388953,58.1933080355517 + + + + + +NB63 +#labelStyle + +-6.0056115491219,58.2407966217323 + + + + +NB64 + +Small Square NB64 Boundry Box +#Line2 + + +1 + +-6.09572753954617,58.282893592364 +-6.10611863268531,58.37246776793 +-5.93559157419444,58.3778297678156 +-5.92562922865936,58.2882369622374 +-6.09572753954617,58.282893592364 + + + + + +NB64 +#labelStyle + +-6.01575873584339,58.3303903589628 + + + + +NB65 + +Small Square NB65 Boundry Box +#Line2 + + +1 + +-6.10611967503298,58.372476726122 +-6.116573626482,58.462048470993 +-5.94561520502924,58.4674291970814 +-5.93559257353479,58.3778387278755 +-6.10611967503298,58.372476726122 + + + + + +NB65 +#labelStyle + +-6.02596724366374,58.4199817166646 + + + + +NB66 + +Small Square NB66 Boundry Box +#Line2 + + +1 + +-6.11657467514256,58.4620574289415 +-6.12709201560828,58.5516267351339 +-5.95569963712907,58.5570262825683 +-5.94561621042416,58.4674381569073 +-6.11657467514256,58.4620574289415 + + + + + +NB66 +#labelStyle + +-6.03623758968874,58.509570687311 + + + + +NB67 + +Small Square NB67 Boundry Box +#Line2 + + +1 + +-6.12709307063512,58.5516356928381 +-6.13767433687598,58.6412025522664 +-5.9658453856069,58.64662101701 +-5.95570064862978,58.5570352421594 +-6.12709307063512,58.5516356928381 + + + + + +NB67 +#labelStyle + +-6.04657029691443,58.5991572632787 + + + + +NB68 + +Small Square NB68 Boundry Box +#Line2 + + +1 + +-6.13767539832308,58.6412115097255 +-6.14832113323525,58.7307759142007 +-5.97605297146964,58.7362133930464 +-5.96584640326519,58.6466299763657 +-6.13767539832308,58.6412115097255 + + + + + +NB68 +#labelStyle + +-6.0569658943108,58.6887414368466 + + + + +NB69 + +Small Square NB69 Boundry Box +#Line2 + + +1 + +-6.14832220115722,58.7307848714138 +-6.1590329538621,58.8203468126417 +-5.98632292170233,58.8258034032214 +-5.97605399533792,58.7362223521659 +-6.14832220115722,58.7307848714138 + + + + + +NB69 +#labelStyle + +-6.06742491690689,58.7783232001938 + + + + +NB70 + +Small Square NB70 Boundry Box +#Line2 + + +1 + +-5.88635193666603,57.9298071898115 +-5.89607807558367,58.0194092727423 +-5.72719265266944,58.0244735814699 +-5.71788566312038,57.9348540053888 +-5.88635193666603,57.9298071898115 + + + + + +NB70 +#labelStyle + +-5.80686912291958,57.9771689531078 + + + + +NB71 + +Small Square NB71 Boundry Box +#Line2 + + +1 + +-5.89607905120232,58.0194182337314 +-5.90586349532624,58.109018008092 +-5.73655638671156,58.1140998991129 +-5.72719358624457,58.0244825442128 +-5.89607905120232,58.0194182337314 + + + + + +NB71 +#labelStyle + +-5.81641515260896,58.0667877098556 + + + + +NB72 + +Small Square NB72 Boundry Box +#Line2 + + +1 + +-5.90586447680025,58.1090269688498 +-5.91570771293659,58.1986244278238 +-5.74597640348216,58.2037239892799 +-5.73655732589157,58.1141088616334 +-5.90586447680025,58.1090269688498 + + + + + +NB72 +#labelStyle + +-5.82601848424208,58.1564041987681 + + + + +NB73 + +Small Square NB73 Boundry Box +#Line2 + + +1 + +-5.9157087003149,58.1986333883498 +-5.92561122076319,58.2882285250337 +-5.7554531744979,58.2933458458193 +-5.74597734831393,58.2037329515774 +-5.9157087003149,58.1986333883498 + + + + + +NB73 +#labelStyle + +-5.83567959706139,58.246018413363 + + + + +NB74 + +Small Square NB74 Boundry Box +#Line2 + + +1 + +-5.92561221409534,58.2882374853271 +-5.93557451672584,58.3778302927294 +-5.76498717661415,58.3829654624995 +-5.75545412502885,58.2933548078931 +-5.92561221409534,58.2882374853271 + + + + + +NB74 +#labelStyle + +-5.84539897572644,58.3356303470747 + + + + +NB75 + +Small Square NB75 Boundry Box +#Line2 + + +1 + +-5.93557551606188,58.3778392527894 +-5.94559810439421,58.4674297238286 +-5.77457889210047,58.4725828330078 +-5.76498813289224,58.382974424349 +-5.93557551606188,58.3778392527894 + + + + + +NB75 +#labelStyle + +-5.85517711039034,58.4252399932528 + + + + +NB76 + +Small Square NB76 Boundry Box +#Line2 + + +1 + +-5.9455991097848,58.4674386836547 +-5.95568249306788,58.5570268111583 +-5.78422880871724,58.5621979509489 +-5.77457985417419,58.4725917946323 +-5.9455991097848,58.4674386836547 + + + + + +NB76 +#labelStyle + +-5.86501449677736,58.5148473451608 + + + + +NB77 + +Small Square NB77 Boundry Box +#Line2 + + +1 + +-5.95568350456423,58.5570357707496 +-5.96582819785764,58.6466215474522 +-5.79393741979367,58.6518108098437 +-5.78422977663565,58.5622069123479 +-5.95568350456423,58.5570357707496 + + + + + +NB77 +#labelStyle + +-5.87491163626199,58.6044523959746 + + + + +NB78 + +Small Square NB78 Boundry Box +#Line2 + + +1 + +-5.96582921551155,58.646630506808 +-5.97603573976823,58.7362139253503 +-5.80370522430715,58.7414214031276 +-5.79393839360638,58.6518197710164 +-5.96582921551155,58.646630506808 + + + + + +NB78 +#labelStyle + +-5.88486903594923,58.6940551387811 + + + + +NB79 + +Small Square NB79 Boundry Box +#Line2 + + +1 + +-5.9760367636321,58.7362228844699 +-5.98630564578243,58.8258039373966 +-5.81353272696393,58.8310297241495 +-5.80370620406435,58.7414303640734 +-5.9760367636321,58.7362228844699 + + + + + +NB79 +#labelStyle + +-5.89488720875635,58.7836555665769 + + + + +NB80 + +Small Square NB80 Boundry Box +#Line2 + + +1 + +-5.71786881199935,57.9348544989668 +-5.72717575960589,58.0244740767589 +-5.55823452997647,58.0293145075849 +-5.54934719267841,57.9396782053347 +-5.71786881199935,57.9348544989668 + + + + + +NB80 +#labelStyle + +-5.63814859071737,57.9821132609803 + + + + +NB81 + +Small Square NB81 Boundry Box +#Line2 + + +1 + +-5.72717669317682,58.0244830395021 +-5.73653945145156,58.1141003961218 +-5.56717606994514,58.1189576366803 +-5.55823542145753,58.0293234720048 +-5.72717669317682,58.0244830395021 + + + + + +NB81 +#labelStyle + +-5.64727390784009,58.0717491727314 + + + + +NB82 + +Small Square NB82 Boundry Box +#Line2 + + +1 + +-5.73654039062734,58.1141093586424 +-5.74595942577392,58.2037244880172 +-5.5761713719875,58.2085986226266 +-5.56717696678005,58.1189666008861 +-5.73654039062734,58.1141093586424 + + + + + +NB82 +#labelStyle + +-5.65645401920178,58.1613829025222 + + + + +NB83 + +Small Square NB83 Boundry Box +#Line2 + + +1 + +-5.74596037060143,58.2037334503148 +-5.75543615408751,58.2933463462937 +-5.5852208867121,58.2982374599924 +-5.57617227422105,58.2086075866178 +-5.74596037060143,58.2037334503148 + + + + + +NB83 +#labelStyle + +-5.66568938328886,58.2510144446028 + + + + +NB84 + +Small Square NB84 Boundry Box +#Line2 + + +1 + +-5.75543710461418,58.2933553083676 +-5.76497011324563,58.3829659647198 +-5.59432506983244,58.3878741432746 +-5.58522179438962,58.2982464237685 +-5.75543710461418,58.2933553083676 + + + + + +NB84 +#labelStyle + +-5.67498046377326,58.3406437931481 + + + + +NB85 + +Small Square NB85 Boundry Box +#Line2 + + +1 + +-5.7649710695194,58.3829749265694 +-5.77456178551566,58.4725833369828 +-5.60348438223911,58.4775086668971 +-5.59432598299977,58.387883106835 +-5.7649710695194,58.3829749265694 + + + + + +NB85 +#labelStyle + +-5.68432772958564,58.4302709422565 + + + + +NB86 + +Small Square NB86 Boundry Box +#Line2 + + +1 + +-5.77456274758505,58.4725922986075 +-5.78421165865584,58.5621984566876 +-5.61269929007315,58.5671410252094 +-5.60348530094259,58.4775176302413 +-5.77456274758505,58.4725922986075 + + + + + +NB86 +#labelStyle + +-5.69373165498978,58.5198958859486 + + + + +NB87 + +Small Square NB87 Boundry Box +#Line2 + + +1 + +-5.78421262656989,58.5622074180867 +-5.79392022599321,58.651811317355 +-5.62197026480073,58.6567712124858 +-5.61270021435966,58.5671499883368 +-5.78421262656989,58.5622074180867 + + + + + +NB87 +#labelStyle + +-5.70319271965825,58.6095186181664 + + + + +NB88 + +Small Square NB88 Boundry Box +#Line2 + + +1 + +-5.79392119980154,58.6518202785279 +-5.80368798650295,58.7414219124206 +-5.631297783289,58.7463992229236 +-5.62197119471768,58.6567801753958 +-5.79392119980154,58.6518202785279 + + + + + +NB88 +#labelStyle + +-5.71271140874938,58.6991391327711 + + + + +NB89 + +Small Square NB89 Boundry Box +#Line2 + + +1 + +-5.80368896625574,58.7414308733667 +-5.81351544488908,58.8310302352335 +-5.64068232788337,58.8360250506422 +-5.63129871888436,58.7464081856156 +-5.80368896625574,58.7414308733667 + + + + + +NB89 +#labelStyle + +-5.72228821298557,58.7887574235427 + + + + +NB90 + +Small Square NB90 Boundry Box +#Line2 + + +1 + +-5.54933033614613,57.9396786765919 +-5.55821763145661,58.0293149804764 +-5.38922309482202,58.0339313840042 +-5.38075585031434,57.9442791254927 +-5.54933033614613,57.9396786765919 + + + + + +NB90 +#labelStyle + +-5.46937372168197,57.9868339781019 + + + + +NB91 + +Small Square NB91 Boundry Box +#Line2 + + +1 + +-5.55821852293345,58.0293239448964 +-5.56715912918324,58.1189581112142 +-5.39774199517015,58.1235905507627 +-5.38922394416469,58.0339403500238 +-5.55821852293345,58.0293239448964 + + + + + +NB91 +#labelStyle + +-5.47807787289273,58.0764862735389 + + + + +NB92 + +Small Square NB92 Boundry Box +#Line2 + + +1 + +-5.56716002601391,58.1189670754202 +-5.57615438873124,58.2085990988112 +-5.40631213190351,58.2132476548626 +-5.39774284961514,58.1235995165763 +-5.56716002601391,58.1189670754202 + + + + + +NB92 +#labelStyle + +-5.48683430552444,58.1661364690764 + + + + +NB93 + +Small Square NB93 Boundry Box +#Line2 + + +1 + +-5.57615529096054,58.2086080628026 +-5.58520386070707,58.298237937836 +-5.41493393465164,58.3029026915605 +-5.40631299149354,58.2132566204697 +-5.57615529096054,58.2086080628026 + + + + + +NB93 +#labelStyle + +-5.49564345723553,58.2557845596647 + + + + +NB94 + +Small Square NB94 Boundry Box +#Line2 + + +1 + +-5.58520476838031,58.2982469016123 +-5.59430800082212,58.3878746227857 +-5.42360783791398,58.392555656049 +-5.41493479942991,58.3029116569607 +-5.58520476838031,58.2982469016123 + + + + + +NB94 +#labelStyle + +-5.50450577063713,58.3454305401867 + + + + +NB95 + +Small Square NB95 Boundry Box +#Line2 + + +1 + +-5.59430891398513,58.3878835863463 +-5.60346726996481,58.477509148084 +-5.43233428112879,58.4822065434554 +-5.4236087079242,58.3925646212416 +-5.59430891398513,58.3878835863463 + + + + + +NB95 +#labelStyle + +-5.51342169336308,58.4350744054569 + + + + +NB96 + +Small Square NB96 Boundry Box +#Line2 + + +1 + +-5.60346818866395,58.4775181114283 +-5.61268213427403,58.5671415080807 +-5.44111370874315,58.571855348841 +-5.43233515641514,58.4822155084401 +-5.60346818866395,58.4775181114283 + + + + + +NB96 +#labelStyle + +-5.52239167814097,58.5247161502202 + + + + +NB97 + +Small Square NB97 Boundry Box +#Line2 + + +1 + +-5.61268305855618,58.5671504712083 +-5.62195306521376,58.6567716970501 +-5.44994657028424,58.6615020671993 +-5.44111458935034,58.5718643136172 +-5.61268305855618,58.5671504712083 + + + + + +NB97 +#labelStyle + +-5.5314161828645,58.6143557691508 + + + + +NB98 + +Small Square NB98 Boundry Box +#Line2 + + +1 + +-5.62195399512632,58.6567806599602 +-5.63128053964894,58.7463997091896 +-5.45883332043182,58.7511466934555 +-5.44994745625748,58.6615110317666 +-5.62195399512632,58.6567806599602 + + + + + +NB98 +#labelStyle + +-5.54049567066707,58.7039932568505 + + + + +NB99 + +Small Square NB99 Boundry Box +#Line2 + + +1 + +-5.63128147523988,58.7464086718817 +-5.64066503992273,58.8360255386186 +-5.46777441909188,58.840789222465 +-5.45883421181682,58.7511556578134 +-5.63128147523988,58.7464086718817 + + + + + +NB99 +#labelStyle + +-5.54963060999655,58.7936286078483 + + + + + +NC + +Large Square NC Boundry Box +#Line1 + + +1 + +-5.38073898861903,57.9442795744148 +-5.4677571255152,58.8407896873182 +-3.7361288087085,58.8756874380837 +-3.6924831704162,57.9779801857706 +-5.38073898861903,57.9442795744148 + + + + + +NC00 + +Small Square NC00 Boundry Box +#Line2 + + +1 + +-5.38073898861903,57.9442795744148 +-5.38920619109608,58.0339318344834 +-5.22016085212742,58.0383240681472 +-5.21211412043336,57.9486566243698 +-5.38073898861903,57.9442795744148 + + + + + +NC00 +#labelStyle + +-5.30054700801447,57.9913309590331 + + + + +NC01 + +Small Square NC01 Boundry Box +#Line2 + + +1 + +-5.38920704043453,58.0339408005032 +-5.39772504915866,58.123591002807 +-5.22825668805478,58.1279984976804 +-5.22016165928947,58.0383330356893 +-5.38920704043453,58.0339408005032 + + + + + +NC01 +#labelStyle + +-5.30882956056597,58.0809988657193 + + + + +NC02 + +Small Square NC02 Boundry Box +#Line2 + + +1 + +-5.39772590359941,58.1235999686208 +-5.40629514335366,58.2132481084798 +-5.23640122987704,58.2176709411972 +-5.22825750006714,58.1280074650241 +-5.39772590359941,58.1235999686208 + + + + + +NC02 +#labelStyle + +-5.31716187683675,58.1706647507404 + + + + +NC03 + +Small Square NC03 Boundry Box +#Line2 + + +1 + +-5.40629600293942,58.213257074087 +-5.41491690330851,58.3029031467585 +-5.244594886177,58.3073413946097 +-5.23640204678034,58.2176799083421 +-5.40629600293942,58.213257074087 + + + + + +NC03 +#labelStyle + +-5.32554437358848,58.2603286097147 + + + + +NC04 + +Small Square NC04 Boundry Box +#Line2 + + +1 + +-5.4149177680825,58.3029121121588 +-5.42359076352054,58.3925561128358 +-5.2528380701712,58.3970098537733 +-5.24459570801234,58.3073503615553 +-5.4149177680825,58.3029121121588 + + + + + +NC04 +#labelStyle + +-5.33397747230161,58.3499904382007 + + + + +NC05 + +Small Square NC05 Boundry Box +#Line2 + + +1 + +-5.42359163352644,58.3925650780286 +-5.43231716342584,58.4822070018391 +-5.26113119977548,58.4866763144858 +-5.25283889698012,58.3970188205193 +-5.42359163352644,58.3925650780286 + + + + + +NC05 +#labelStyle + +-5.342461599242,58.439650231696 + + + + +NC06 + +Small Square NC06 Boundry Box +#Line2 + + +1 + +-5.43231803870785,58.482215966824 +-5.44109654746933,58.5718558088296 +-5.26947469767174,58.5763407724863 +-5.26113203160002,58.4866852810318 +-5.43231803870785,58.482215966824 + + + + + +NC06 +#labelStyle + +-5.35099718552874,58.5293079856362 + + + + +NC07 + +Small Square NC07 Boundry Box +#Line2 + + +1 + +-5.44109742807215,58.5718647736061 +-5.44992936517601,58.6615025288012 +-5.27786899137573,58.666003223454 +-5.26947553455441,58.5763497388318 +-5.44109742807215,58.5718647736061 + + + + + +NC07 +#labelStyle + +-5.35958466720311,58.6189636953942 + + + + +NC08 + +Small Square NC08 Boundry Box +#Line2 + + +1 + +-5.44993025114484,58.6615114933686 +-5.45881607122337,58.7511471566789 +-5.28631451330606,58.7556636630074 +-5.27786983335952,58.6660121895985 +-5.44993025114484,58.6615114933686 + + + + + +NC08 +#labelStyle + +-5.36822448529873,58.7086173562785 + + + + +NC09 + +Small Square NC09 Boundry Box +#Line2 + + +1 + +-5.45881696260396,58.7511561210369 +-5.4677571255152,58.8407896873182 +-5.29481170085439,58.8453220867032 +-5.28631536043447,58.7556726289506 +-5.45881696260396,58.7511561210369 + + + + + +NC09 +#labelStyle + +-5.37691708591288,58.7982689635326 + + + + +NC10 + +Small Square NC10 Boundry Box +#Line2 + + +1 + +-5.21209725382369,57.948657050943 +-5.22014394344615,58.0383244962003 +-5.0510503115473,58.0424924242811 +-5.0434244921084,57.9528105672691 +-5.21209725382369,57.948657050943 + + + + + +NC10 +#labelStyle + +-5.13167094672986,57.995604065148 + + + + +NC11 + +Small Square NC11 Boundry Box +#Line2 + + +1 + +-5.22014475060398,58.0383334637426 +-5.22823973704651,58.127998927221 +-5.05872267906704,58.1321813406534 +-5.05105107648855,58.0425013932682 +-5.22014475060398,58.0383334637426 + + + + + +NC11 +#labelStyle + +-5.13953148854038,58.0852868095793 + + + + +NC12 + +Small Square NC12 Boundry Box +#Line2 + + +1 + +-5.22824054905463,58.1280078945649 +-5.23638423628851,58.2176713722327 +-5.06644121742244,58.2218683437919 +-5.05872344860615,58.1321903094494 +-5.22824054905463,58.1280078945649 + + + + + +NC12 +#labelStyle + +-5.14743927171562,58.1749676067421 + + + + +NC13 + +Small Square NC13 Boundry Box +#Line2 + + +1 + +-5.23638505318754,58.2176803393778 +-5.24457784975281,58.3073418271477 +-5.07420631408505,58.3115534302316 +-5.06644199159793,58.2218773123964 +-5.23638505318754,58.2176803393778 + + + + + +NC13 +#labelStyle + +-5.15539469205496,58.2646464528903 + + + + +NC14 + +Small Square NC14 Boundry Box +#Line2 + + +1 + +-5.24457867158384,58.3073507940935 +-5.25282099065382,58.3970102878214 +-5.08201836092289,58.4012365964579 +-5.07420709293589,58.3115623986443 +-5.24457867158384,58.3073507940935 + + + + + +NC14 +#labelStyle + +-5.16339814984146,58.354323344225 + + + + +NC15 + +Small Square NC15 Boundry Box +#Line2 + + +1 + +-5.25282181745842,58.3970192545676 +-5.26111407690524,58.4866767500517 +-5.08987775426275,58.4909178389054 +-5.08201914448849,58.4012455646784 +-5.25282181745842,58.3970192545676 + + + + + +NC15 +#labelStyle + +-5.17145004990523,58.443998276894 + + + + +NC16 + +Small Square NC16 Boundry Box +#Line2 + + +1 + +-5.26111490872543,58.4866857165979 +-5.26945753118679,58.5763412095777 +-5.09778489495349,58.5805971539574 +-5.08987854258297,58.4909268069333 +-5.26111490872543,58.4866857165979 + + + + + +NC16 +#labelStyle + +-5.17955080168792,58.5336712469904 + + + + +NC17 + +Small Square NC17 Boundry Box +#Line2 + + +1 + +-5.26945836806508,58.5763501759234 +-5.277851781012,58.6660036620787 +-5.10574018843043,58.6702745379446 +-5.09778568806864,58.5806061217924 +-5.26945836806508,58.5763501759234 + + + + + +NC17 +#labelStyle + +-5.18770081930824,58.6233422505516 + + + + +NC18 + +Small Square NC18 Boundry Box +#Line2 + + +1 + +-5.27785262299139,58.6660126282234 +-5.28629725879727,58.7556641031733 +-5.11374404478087,58.7599499871445 +-5.10574098638129,58.6702835055863 +-5.27785262299139,58.6660126282234 + + + + + +NC18 +#labelStyle + +-5.19590052162872,58.7130112835587 + + + + +NC19 + +Small Square NC19 Boundry Box +#Line2 + + +1 + +-5.28629810592124,58.7556730691167 +-5.29479440193198,58.8453225284182 +-5.12179687881072,58.8496234977801 +-5.11374484760868,58.7599589545926 +-5.28629810592124,58.7556730691167 + + + + + +NC19 +#labelStyle + +-5.20415033232344,58.802678341935 + + + + +NC20 + +Small Square NC20 Boundry Box +#Line2 + + +1 + +-5.04340762083351,57.9528109714801 +-5.05103339816189,58.0424928298948 +-4.88189398723996,58.0464363235362 +-4.87468945885381,57.9567408263049 +-5.04340762083351,57.9528109714801 + + + + + +NC20 +#labelStyle + +-4.96274803942966,57.9996531646505 + + + + +NC21 + +Small Square NC21 Boundry Box +#Line2 + + +1 + +-5.05103416309891,58.0425017988821 +-5.05870572331529,58.132181747677 +-4.88914250324208,58.1361389498174 +-4.88189470992231,58.0464452938909 +-5.05103416309891,58.0425017988821 + + + + + +NC21 +#labelStyle + +-4.97018617914749,58.0893499723074 + + + + +NC22 + +Small Square NC22 Boundry Box +#Line2 + + +1 + +-5.05870649285014,58.1321907164731 +-5.06642421905061,58.2218687522324 +-4.89643465068564,58.2258397317772 +-4.8891432302694,58.1361479199879 +-5.05870649285014,58.1321907164731 + + + + + +NC22 +#labelStyle + +-4.97766903345445,58.1790449032435 + + + + +NC23 + +Small Square NC23 Boundry Box +#Line2 + + +1 + +-5.06642499322182,58.2218777208371 +-5.0741892728373,58.3115538400963 +-4.90377079586973,58.3155386665406 +-4.89643538209435,58.2258487017631 +-5.06642499322182,58.2218777208371 + + + + + +NC23 +#labelStyle + +-4.9851969771253,58.2687379543157 + + + + +NC24 + +Small Square NC24 Boundry Box +#Line2 + + +1 + +-5.07419005168384,58.3115628085091 +-5.08200127654125,58.4012370077538 +-4.91115130925165,58.4052357511896 +-4.90377153169667,58.3155476363416 +-5.07419005168384,58.3115628085091 + + + + + +NC24 +#labelStyle + +-4.99277038918233,58.3584291223354 + + + + +NC25 + +Small Square NC25 Boundry Box +#Line2 + + +1 + +-5.08200206010252,58.4012459759744 +-5.08986062648708,58.4909182516399 +-4.91857656550577,58.4949309827625 +-4.91115204953407,58.4052447208055 +-5.08200206010252,58.4012459759744 + + + + + +NC25 +#labelStyle + +-5.00038965295545,58.4481184040668 + + + + +NC26 + +Small Square NC26 Boundry Box +#Line2 + + +1 + +-5.08986141480295,58.4909272196679 +-5.09776772352146,58.5805975681377 +-4.92604694358351,58.5846243582527 +-4.91857731028136,58.4949399521929 +-5.08986141480295,58.4909272196679 + + + + + +NC26 +#labelStyle + +-5.00805515614328,58.5378057962268 + + + + +NC27 + +Small Square NC27 Boundry Box +#Line2 + + +1 + +-5.09776851663223,58.5806065359729 +-5.10572297307749,58.6702749535782 +-4.93356282677429,58.6743158746083 +-4.92604769289038,58.5846333274974 +-5.09776851663223,58.5806065359729 + + + + + +NC27 +#labelStyle + +-5.01576729087531,58.6274912954836 + + + + +NC28 + +Small Square NC28 Boundry Box +#Line2 + + +1 + +-5.10572377102395,58.6702839212201 +-5.11372678524026,58.7599504042388 +-4.94112460276744,58.7640055287308 +-4.93356358065097,58.6743248436668 +-5.10572377102395,58.6702839212201 + + + + + +NC28 +#labelStyle + +-5.02352645377512,58.7171748984563 + + + + +NC29 + +Small Square NC29 Boundry Box +#Line2 + + +1 + +-5.11372758806364,58.7599593716871 +-5.1217795748134,58.8496239163427 +-4.94873266371539,58.8536933174747 +-4.94112536125295,58.764014497603 +-5.11372758806364,58.7599593716871 + + + + + +NC29 +#labelStyle + +-5.03133304602465,58.8068566017135 + + + + +NC30 + +Small Square NC30 Boundry Box +#Line2 + + +1 + +-4.87467258316325,57.9567412081414 +-4.88187706940204,58.046436706698 +-4.71269439763684,58.0501556439211 +-4.70591151839788,57.9604472804176 +-4.87467258316325,57.9567412081414 + + + + + +NC30 +#labelStyle + +-4.79378079207341,58.0034781325892 + + + + +NC31 + +Small Square NC31 Boundry Box +#Line2 + + +1 + +-4.88187779208016,58.0464456770529 +-4.88912554300055,58.1361393343114 +-4.71951869994831,58.139871202239 +-4.71269507802428,58.0501646155658 +-4.88187779208016,58.0464456770529 + + + + + +NC31 +#labelStyle + +-4.80079615913813,58.0931882279888 + + + + +NC32 + +Small Square NC32 Boundry Box +#Line2 + + +1 + +-4.88912627002361,58.1361483044819 +-4.89641764778635,58.2258401176099 +-4.72638409020705,58.2295849812673 +-4.71951938442743,58.1398801737059 +-4.88912627002361,58.1361483044819 + + + + + +NC32 +#labelStyle + +-4.80785370982824,58.1828965133562 + + + + +NC33 + +Small Square NC33 Boundry Box +#Line2 + + +1 + +-4.89641837919078,58.225849087596 +-4.90375375005641,58.3155390537189 +-4.73329091348178,58.3192969786882 +-4.72638477881215,58.2295939525561 +-4.89641837919078,58.225849087596 + + + + + +NC33 +#labelStyle + +-4.81495379783481,58.2726029861188 + + + + +NC34 + +Small Square NC34 Boundry Box +#Line2 + + +1 + +-4.90375448587905,58.31554802352 +-4.91113422026588,58.4052361397203 +-4.74023951876011,58.4090071921471 +-4.73329160624756,58.3193059497988 +-4.90375448587905,58.31554802352 + + + + + +NC34 +#labelStyle + +-4.82209678085929,58.3623076436646 + + + + +NC35 + +Small Square NC35 Boundry Box +#Line2 + + +1 + +-4.91113496054398,58.4052451093363 +-4.91855943308698,58.4949313726524 +-4.74723025900411,58.4987156192522 +-4.74024021572167,58.4090161630792 +-4.91113496054398,58.4052451093363 + + + + + +NC35 +#labelStyle + +-4.82928302067026,58.4520104833414 + + + + +NC36 + +Small Square NC36 Boundry Box +#Line2 + + +1 + +-4.91856017785822,58.494940342083 +-4.92602976746894,58.5846247495088 +-4.75426349120683,58.588422257573 +-4.74723096019696,58.4987245900054 +-4.91856017785822,58.494940342083 + + + + + +NC36 +#labelStyle + +-4.83651288316119,58.5417115024559 + + + + +NC37 + +Small Square NC37 Boundry Box +#Line2 + + +1 + +-4.92603051677142,58.5846337187536 +-4.93354560669892,58.6743162672376 +-4.76133957644976,58.6781271046403 +-4.75426419666687,58.5884312281473 +-4.92603051677142,58.5846337187536 + + + + + +NC37 +#labelStyle + +-4.84378673840914,58.6314106982732 + + + + +NC38 + +Small Square NC38 Boundry Box +#Line2 + + +1 + +-4.9335463605712,58.6743252362963 +-4.94110733846406,58.7640059227403 +-4.76845887996125,58.7678301579453 +-4.76134028621329,58.6781360750354 +-4.9335463605712,58.6743252362963 + + + + + +NC38 +#labelStyle + +-4.85110496073443,58.7211080680154 + + + + +NC39 + +Small Square NC39 Boundry Box +#Line2 + + +1 + +-4.94110809694513,58.7640148916126 +-4.94871535491447,58.8536937128715 +-4.77562177117606,58.8575314149385 +-4.76845959406502,58.7678391281608 +-4.94110809694513,58.7640148916126 + + + + + +NC39 +#labelStyle + +-4.85846792876148,58.8108036088616 + + + + +NC40 + +Small Square NC40 Boundry Box +#Line2 + + +1 + +-4.70589463854163,57.9604476398678 +-4.71267747559846,58.0501560046192 +-4.54345406521089,58.0536502703364 +-4.5370931724544,57.9639298153875 +-4.70589463854163,57.9604476398678 + + + + + +NC40 +#labelStyle + +-4.62477171474916,58.0070788508717 + + + + +NC41 + +Small Square NC41 Boundry Box +#Line2 + + +1 + +-4.71267815598167,58.050164976264 +-4.71950173547115,58.1398715641914 +-4.54985381265263,58.1433779819294 +-4.5434547032695,58.0536592431934 +-4.71267815598167,58.050164976264 + + + + + +NC41 +#labelStyle + +-4.63136395944972,58.0968014576205 + + + + +NC42 + +Small Square NC42 Boundry Box +#Line2 + + +1 + +-4.71950241994601,58.1398805356584 +-4.72636708303657,58.2295853444802 +-4.55629210068348,58.2331039753746 +-4.54985445454923,58.1433869546147 +-4.71950241994601,58.1398805356584 + + + + + +NC42 +#labelStyle + +-4.63799585285766,58.1865223171566 + + + + +NC43 + +Small Square NC43 Boundry Box +#Line2 + + +1 + +-4.72636777163738,58.2295943157692 +-4.73327386336129,58.3192973431681 +-4.56276925308716,58.3228282488782 +-4.55629274645027,58.233112947888 +-4.72636777163738,58.2295943157692 + + + + + +NC43 +#labelStyle + +-4.64466772752453,58.2762414274452 + + + + +NC44 + +Small Square NC44 Boundry Box +#Line2 + + +1 + +-4.73327455612277,58.3193063142788 +-4.7402224254308,58.4090075579004 +-4.56928559732606,58.4125508006158 +-4.5627699027567,58.3228372212195 +-4.73327455612277,58.3193063142788 + + + + + +NC44 +#labelStyle + +-4.65137991977419,58.3659587864178 + + + + +NC45 + +Small Square NC45 Boundry Box +#Line2 + + +1 + +-4.74022312238803,58.4090165288326 +-4.74721312220499,58.4987159862852 +-4.57584146459346,58.5022716287312 +-4.56928625093129,58.4125597727848 +-4.74022312238803,58.4090165288326 + + + + + +NC45 +#labelStyle + +-4.6581327697562,58.4556743919721 + + + + +NC46 + +Small Square NC46 Boundry Box +#Line2 + + +1 + +-4.74721382339348,58.4987249570387 +-4.7542463106747,58.5884226258924 +-4.58243718986654,58.5919907313363 +-4.57584212216767,58.5022806007278 +-4.74721382339348,58.4987249570387 + + + + + +NC46 +#labelStyle + +-4.66492662150014,58.5453882419708 + + + + +NC47 + +Small Square NC47 Boundry Box +#Line2 + + +1 + +-4.75424701613035,58.5884315964668 +-4.76132235191919,58.6781274742527 +-4.58907311196042,58.68170810651 +-4.58243785144343,58.5919997031602 +-4.75424701613035,58.5884315964668 + + + + + +NC47 +#labelStyle + +-4.67176182297092,58.6351003342411 + + + + +NC48 + +Small Square NC48 Boundry Box +#Line2 + + +1 + +-4.76132306167831,58.6781364446479 +-4.76844161116459,58.7678305288573 +-4.59574957358301,58.7714237522979 +-4.58907377757406,58.6817170781611 +-4.76132306167831,58.6781364446479 + + + + + +NC48 +#labelStyle + +-4.67863872612491,58.7248106665743 + + + + +NC49 + +Small Square NC49 Boundry Box +#Line2 + + +1 + +-4.76844232526391,58.767839499073 +-4.77560445784335,58.8575317871568 +-4.6024669213909,58.8611376667113 +-4.59575024326787,58.7714327237759 +-4.76844232526391,58.767839499073 + + + + + +NC49 +#labelStyle + +-4.68555768696716,58.8145192367243 + + + + +NC50 + +Small Square NC50 Boundry Box +#Line2 + + +1 + +-4.53707628868283,57.9639301524403 +-4.5434371392245,58.0536506085596 +-4.374175516244,58.056920094588 +-4.36823692649329,57.9671883238478 +-4.53707628868283,57.9639301524403 + + + + + +NC50 +#labelStyle + +-4.45572332144295,58.010455208278 + + + + +NC51 + +Small Square NC51 Boundry Box +#Line2 + + +1 + +-4.54343777727888,58.0536595814167 +-4.54983684419438,58.143378321329 +-4.38015038868453,58.1466591798583 +-4.37417611194194,58.0569290685795 +-4.54343777727888,58.0536595814167 + + + + + +NC51 +#labelStyle + +-4.46189211497253,58.1001895491243 + + + + +NC52 + +Small Square NC52 Boundry Box +#Line2 + + +1 + +-4.54983748608673,58.1433872940143 +-4.55627508949847,58.2331043159564 +-4.38616125072894,58.2363966042235 +-4.38015098796643,58.1466681536838 +-4.54983748608673,58.1433872940143 + + + + + +NC52 +#labelStyle + +-4.46809801857199,58.1899222016992 + + + + +NC53 + +Small Square NC53 Boundry Box +#Line2 + + +1 + +-4.55627573526097,58.2331132884699 +-4.56275219891833,58.3228285906483 +-4.39220840482463,58.3261323663806 +-4.38616185362486,58.2364055778828 +-4.55627573526097,58.2331132884699 + + + + + +NC53 +#labelStyle + +-4.47434134360087,58.2796531644726 + + + + +NC54 + +Small Square NC54 Boundry Box +#Line2 + + +1 + +-4.56275284858355,58.3228375629897 +-4.56926849991421,58.4125511435801 +-4.39829215685659,58.4158664650016 +-4.39220901136499,58.3261413398737 +-4.56275284858355,58.3228375629897 + + + + + +NC54 +#labelStyle + +-4.480622404952,58.3693824358863 + + + + +NC55 + +Small Square NC55 Boundry Box +#Line2 + + +1 + +-4.56926915351509,58.4125601157492 +-4.57582432367719,58.5022719728959 +-4.40441281619622,58.5055988987325 +-4.39829276707216,58.4158754383283 +-4.56926915351509,58.4125601157492 + + + + + +NC55 +#labelStyle + +-4.48694152110159,58.4591100143542 + + + + +NC56 + +Small Square NC56 Boundry Box +#Line2 + + +1 + +-4.57582498124704,58.5022809448926 +-4.58242000518227,58.5919910767074 +-4.41057069575089,58.5953296661927 +-4.40441343011811,58.5056078718926 +-4.57582498124704,58.5022809448926 + + + + + +NC56 +#labelStyle + +-4.49329901416011,58.5488358982609 + + + + +NC57 + +Small Square NC57 Boundry Box +#Line2 + + +1 + +-4.58242066675477,58.5920000485314 +-4.58905588324231,58.6817084530938 +-4.41676611201443,58.6850587659749 +-4.41057131341057,58.5953386391861 +-4.58242066675477,58.5920000485314 + + + + + +NC57 +#labelStyle + +-4.49969520992408,58.6385600859616 + + + + +NC58 + +Small Square NC58 Boundry Box +#Line2 + + +1 + +-4.58905654885154,58.681717424745 +-4.595732300563,58.7714241001005 +-4.42299938511848,58.7747861966437 +-4.41676673344373,58.6850677388014 +-4.58905654885154,58.681717424745 + + + + + +NC58 +#labelStyle + +-4.50613043792878,58.7282825757811 + + + + +NC59 + +Small Square NC59 Boundry Box +#Line2 + + +1 + +-4.59573297024342,58.7714330715787 +-4.60244960379864,58.8611380157391 +-4.42927083888466,58.864511956736 +-4.42300001034959,58.7747951693033 +-4.59573297024342,58.7714330715787 + + + + + +NC59 +#labelStyle + +-4.51260503150175,58.8180033660138 + + + + +NC60 + +Small Square NC60 Boundry Box +#Line2 + + +1 + +-4.36822003905712,57.9671886384928 +-4.3741585865624,58.0569204103257 +-4.20486128059345,58.0599650153994 +-4.19934528951031,57.9702227052968 +-4.36822003905712,57.9671886384928 + + + + + +NC60 +#labelStyle + +-4.28663812980738,58.0136071004739 + + + + +NC61 + +Small Square NC61 Boundry Box +#Line2 + + +1 + +-4.3741591822561,58.0569293843174 +-4.38013341650013,58.1466594966945 +-4.2104109789994,58.1497146939662 +-4.20486183390098,58.0599739904476 +-4.3741591822561,58.0569293843174 + + + + + +NC61 +#labelStyle + +-4.29238316431502,58.1033523973605 + + + + +NC62 + +Small Square NC62 Boundry Box +#Line2 + + +1 + +-4.38013401577775,58.1466684705201 +-4.38614423578646,58.2363969221635 +-4.21599411263462,58.2394627649628 +-4.21041153563651,58.1497236688537 +-4.38013401577775,58.1466684705201 + + + + + +NC62 +#labelStyle + +-4.29816276677125,58.1930960610301 + + + + +NC63 + +Small Square NC63 Boundry Box +#Line2 + + +1 + +-4.38614483867809,58.2364058958229 +-4.39219134686666,58.3261326854301 +-4.22161096256225,58.329209227544 +-4.21599467262925,58.2394717396894 +-4.38614483867809,58.2364058958229 + + + + + +NC63 +#labelStyle + +-4.30397722729435,58.2828380904241 + + + + +NC64 + +Small Square NC64 Boundry Box +#Line2 + + +1 + +-4.3921919534027,58.3261416589232 +-4.39827505562357,58.4158667851662 +-4.22726181304113,58.4189540808444 +-4.22161152594268,58.3292182021097 +-4.3921919534027,58.3261416589232 + + + + + +NC64 +#labelStyle + +-4.30982683929609,58.3725784844614 + + + + +NC65 + +Small Square NC65 Boundry Box +#Line2 + + +1 + +-4.3982756658348,58.4158757584929 +-4.40439567142639,58.5055992200178 +-4.23294695157113,58.508697323978 +-4.22726237983593,58.4189630552492 +-4.3982756658348,58.4158757584929 + + + + + +NC65 +#labelStyle + +-4.31571189952841,58.4623172420381 + + + + +NC66 + +Small Square NC66 Boundry Box +#Line2 + + +1 + +-4.40439628534391,58.505608193178 +-4.41055350718029,58.5953299886045 +-4.23866666893935,58.5984389560376 +-4.23294752180922,58.5087062982217 +-4.40439628534391,58.505608193178 + + + + + +NC66 +#labelStyle + +-4.32163270813089,58.5520543620265 + + + + +NC67 + +Small Square NC67 Boundry Box +#Line2 + + +1 + +-4.41055412483557,58.595338961598 +-4.41674887937687,58.6850590895189 +-4.24442125926703,58.6881789760944 +-4.23866724264998,58.5984479301202 +-4.41055412483557,58.595338961598 + + + + + +NC67 +#labelStyle + +-4.32758956867904,58.6417898432751 + + + + +NC68 + +Small Square NC68 Boundry Box +#Line2 + + +1 + +-4.41674950080174,58.6850680623456 +-4.42298210814549,58.7747865213259 +-4.2502110200573,58.7779173831974 +-4.24442183647978,58.6881879500157 +-4.41674950080174,58.6850680623456 + + + + + +NC68 +#labelStyle + +-4.33358278823341,58.7315236846078 + + + + +NC69 + +Small Square NC69 Boundry Box +#Line2 + + +1 + +-4.42298273337215,58.7747954939855 +-4.4292535173055,58.8645122825621 +-4.25603625224371,58.8676541763729 +-4.25021160080208,58.7779263569574 +-4.42298273337215,58.7747954939855 + + + + + +NC69 +#labelStyle + +-4.33961267738957,58.8212558848234 + + + + +NC70 + +Small Square NC70 Boundry Box +#Line2 + + +1 + +-4.19932839866062,57.9702229975243 +-4.2048443474698,58.059965308642 +-4.03551389145761,58.0627849384236 +-4.03042077379592,57.9730328661093 +-4.19932839866062,57.9702229975243 + + + + + +NC70 +#labelStyle + +-4.11751866092929,58.0165344300217 + + + + +NC71 + +Small Square NC71 Boundry Box +#Line2 + + +1 + +-4.20484490077309,58.0599742836903 +-4.21039400334409,58.1497149882291 +-4.04063813794081,58.152544429176 +-4.0355144023471,58.0627939144506 +-4.20484490077309,58.0599742836903 + + + + + +NC71 +#labelStyle + +-4.12283964956829,58.1062899041391 + + + + +NC72 + +Small Square NC72 Boundry Box +#Line2 + + +1 + +-4.21039455997694,58.1497239631166 +-4.21597709419206,58.2394630602511 +-4.04579326212787,58.2423023617778 +-4.04063865190519,58.1525534050472 +-4.21039455997694,58.1497239631166 + + + + + +NC72 +#labelStyle + +-4.12819266078727,58.1960437961988 + + + + +NC73 + +Small Square NC73 Boundry Box +#Line2 + + +1 + +-4.21597765418241,58.2394720349778 +-4.22159390107471,58.3292095238629 +-4.05097952365305,58.3320587358078 +-4.04579377919296,58.2423113374931 +-4.21597765418241,58.2394720349778 + + + + + +NC73 +#labelStyle + +-4.13357796341736,58.2857961055806 + + + + +NC74 + +Small Square NC74 Boundry Box +#Line2 + + +1 + +-4.22159446445082,58.3292184984287 +-4.22724470824868,58.4189543781991 +-4.05619718510364,58.4218135508297 +-4.05098004384495,58.3320677113673 +-4.22159446445082,58.3292184984287 + + + + + +NC74 +#labelStyle + +-4.1389958293426,58.3755468316468 + + + + +NC75 + +Small Square NC75 Boundry Box +#Line2 + + +1 + +-4.22724527503914,58.418963352604 +-4.23292980321169,58.5086976223738 +-4.0614465120619,58.5115668063913 +-4.05619770844877,58.4218225262333 +-4.22724527503914,58.418963352604 + + + + + +NC75 +#labelStyle + +-4.14444653354319,58.4652959737417 + + + + +NC76 + +Small Square NC76 Boundry Box +#Line2 + + +1 + +-4.23293037344542,58.5087065966177 +-4.23864947674862,58.5984392554798 +-4.0667277731477,58.601318502024 +-4.06144703858696,58.5115757816388 +-4.23293037344542,58.5087065966177 + + + + + +NC76 +#labelStyle + +-4.14993035413952,58.5550435311913 + + + + +NC77 + +Small Square NC77 Boundry Box +#Line2 + + +1 + +-4.23865005045485,58.5984482295626 +-4.24440402297846,58.6881792765884 +-4.07204124006196,58.6910686372427 +-4.06672830287971,58.6013274771155 +-4.23865005045485,58.5984482295626 + + + + + +NC77 +#labelStyle + +-4.15544757243696,58.6447895033025 + + + + +NC78 + +Small Square NC78 Boundry Box +#Line2 + + +1 + +-4.24440460018678,58.6881882505098 +-4.25019373940206,58.7779176847485 +-4.07738718763071,58.7808172115454 +-4.07204177302824,58.6910776121782 +-4.24440460018678,58.6881882505098 + + + + + +NC78 +#labelStyle + +-4.16099847297141,58.7345338893632 + + + + +NC79 + +Small Square NC79 Boundry Box +#Line2 + + +1 + +-4.25019432014239,58.7779266585087 +-4.25601892695071,58.8676544789867 +-4.08276589385007,58.8705642244122 +-4.07738772385891,58.7808261863248 +-4.25019432014239,58.7779266585087 + + + + + +NC79 +#labelStyle + +-4.16658334355563,58.8242766886412 + + + + +NC80 + +Small Square NC80 Boundry Box +#Line2 + + +1 + +-4.03040387978408,57.9730331359103 +-4.03549695514538,58.0627852091619 +-3.86613588514077,58.0653797762536 +-3.8614658947034,57.9756187195475 +-4.03040387978408,57.9730331359103 + + + + + +NC80 +#labelStyle + +-3.94836743909664,58.0192371063928 + + + + +NC81 + +Small Square NC81 Boundry Box +#Line2 + + +1 + +-4.03549746603064,58.062794185189 +-4.0406211590702,58.1525447008565 +-3.87083442300214,58.1551482974045 +-3.8661363535867,58.0653887531813 +-4.03549746603064,58.062794185189 + + + + + +NC81 +#labelStyle + +-3.95326411606968,58.109001978232 + + + + +NC82 + +Small Square NC82 Boundry Box +#Line2 + + +1 + +-4.04062167303032,58.1525536767277 +-4.04577624044298,58.2423026344051 +-3.87556127813042,58.2449153059014 +-3.87083489426798,58.155157274181 +-4.04062167303032,58.1525536767277 + + + + + +NC82 +#labelStyle + +-3.95819026724401,58.1987653152702 + + + + +NC83 + +Small Square NC83 Boundry Box +#Line2 + + +1 + +-4.04577675750378,58.2423116101205 +-4.05096245889583,58.3320590093868 +-3.88031668868977,58.334680801714 +-3.87556175223986,58.2449242825266 +-4.04577675750378,58.2423116101205 + + + + + +NC83 +#labelStyle + +-3.9631461401211,58.2885271172923 + + + + +NC84 + +Small Square NC84 Boundry Box +#Line2 + + +1 + +-4.05096297908341,58.3320679849464 +-4.05618007701387,58.4218138253652 +-3.88510089555399,58.4244447848008 +-3.88031716566674,58.3346897781879 +-4.05096297908341,58.3320679849464 + + + + + +NC84 +#labelStyle + +-3.96813198501395,58.3782873840702 + + + + +NC85 + +Small Square NC85 Boundry Box +#Line2 + + +1 + +-4.05618060035465,58.4218228007689 +-4.06142936037717,58.5115670818881 +-3.88991414234505,58.5142072551091 +-3.88510137542273,58.4244537611234 +-4.05618060035465,58.4218228007689 + + + + + +NC85 +#labelStyle + +-3.97314805508698,58.4680461153626 + + + + +NC86 + +Small Square NC86 Boundry Box +#Line2 + + +1 + +-4.06142988689786,58.5115760571358 +-4.06671057760339,58.6013187784871 +-3.89475667547225,58.6039682125745 +-3.88991462513007,58.5142162312804 +-4.06142988689786,58.5115760571358 + + + + + +NC86 +#labelStyle + +-3.97819460639664,58.5578033109145 + + + + +NC87 + +Small Square NC87 Boundry Box +#Line2 + + +1 + +-4.066711107331,58.6013277535787 +-4.07202400039118,58.6910689146771 +-3.89962874417201,58.6937276571207 +-3.89475716119831,58.6039771885946 +-4.066711107331,58.6013277535787 + + + + + +NC87 +#labelStyle + +-3.9832718979326,58.6475589704568 + + + + +NC88 + +Small Square NC88 Boundry Box +#Line2 + + +1 + +-4.07202453335303,58.6910778896127 +-4.07736990356433,58.780817489956 +-3.90453060054843,58.7834855886587 +-3.89962923286419,58.6937366329895 +-4.07202453335303,58.6910778896127 + + + + + +NC88 +#labelStyle + +-3.98838019165978,58.7373130937057 + + + + +NC89 + +Small Square NC89 Boundry Box +#Line2 + + +1 + +-4.07737043978807,58.7808264647355 +-4.08274856511664,58.8705645038041 +-3.90946249961446,58.8732420070869 +-3.90453109223207,58.7834945643762 +-4.07737043978807,58.7808264647355 + + + + + +NC89 +#labelStyle + +-3.99351975256101,58.8270656803629 + + + + +NC90 + +Small Square NC90 Boundry Box +#Line2 + + +1 + +-3.8614489977811,57.9756189669136 +-3.86611894589375,58.0653800244792 +-3.69672980081728,58.0677494484325 +-3.6924831704162,57.9779801857706 +-3.8614489977811,57.9756189669136 + + + + + +NC90 +#labelStyle + +-3.77918699156459,58.0217150459767 + + + + +NC91 + +Small Square NC91 Boundry Box +#Line2 + + +1 + +-3.86611941433544,58.0653890014071 +-3.87081744117213,58.1551485464941 +-3.70100239458734,58.1575262175719 +-3.69673022679623,58.067758426183 +-3.86611941433544,58.0653890014071 + + + + + +NC91 +#labelStyle + +-3.78365911216555,58.1114885353827 + + + + +NC92 + +Small Square NC92 Boundry Box +#Line2 + + +1 + +-3.87081791243371,58.1551575232706 +-3.87554425346124,58.2449155558593 +-3.70530074251582,58.2473015156245 +-3.70100282313097,58.1575351951753 +-3.87081791243371,58.1551575232706 + + + + + +NC92 +#labelStyle + +-3.78815815581706,58.2012605333347 + + + + +NC93 + +Small Square NC93 Boundry Box +#Line2 + + +1 + +-3.87554472756638,58.2449245324846 +-3.88029962092309,58.3346810525445 +-3.70962506125889,58.3370753429168 +-3.70530117364565,58.2473104930807 +-3.87554472756638,58.2449245324846 + + + + + +NC93 +#labelStyle + +-3.79268434865166,58.2910310399893 + + + + +NC94 + +Small Square NC94 Boundry Box +#Line2 + + +1 + +-3.88030009789574,58.3346900290185 +-3.8850837844293,58.4244450365084 +-3.7139755699384,58.4268476997685 +-3.70962549499672,58.3370843202259 +-3.88030009789574,58.3346900290185 + + + + + +NC94 +#labelStyle + +-3.79723791937144,58.3808000554944 + + + + +NC95 + +Small Square NC95 Boundry Box +#Line2 + + +1 + +-3.8850842642937,58.4244540128311 +-3.88989698759966,58.5142075076983 +-3.71835249017688,58.516618586492 +-3.71397600630626,58.4268566769306 +-3.8850842642937,58.4244540128311 + + + + + +NC95 +#labelStyle + +-3.80181909928452,58.470567579989 + + + + +NC96 + +Small Square NC96 Boundry Box +#Line2 + + +1 + +-3.8898974703803,58.5142164838697 +-3.89473947684122,58.6039684660498 +-3.72275604613319,58.6063880033924 +-3.71835292919706,58.5166275635072 +-3.8898974703803,58.5142164838697 + + + + + +NC96 +#labelStyle + +-3.80642812234211,58.5603336136024 + + + + +NC97 + +Small Square NC97 Boundry Box +#Line2 + + +1 + +-3.89473996256288,58.60397744207 +-3.89961150138818,58.6937279114866 +-3.72718646453878,58.6961559507666 +-3.72275648782824,58.6063969802606 +-3.89473996256288,58.60397744207 + + + + + +NC97 +#labelStyle + +-3.81106522517626,58.6500981564544 + + + + +NC98 + +Small Square NC98 Boundry Box +#Line2 + + +1 + +-3.89961199007593,58.6937368873555 +-3.90451331334234,58.7834858439198 +-3.73164397473459,58.7859224289035 +-3.7271869089315,58.6961649274878 +-3.89961199007593,58.6937368873555 + + + + + +NC98 +#labelStyle + +-3.81573064713819,58.7398612086548 + + + + +NC99 + +Small Square NC99 Boundry Box +#Line2 + + +1 + +-3.90451380502153,58.7834948196374 +-3.90944516771437,58.8732422632478 +-3.7361288087085,58.8756874380837 +-3.73164442184804,58.7859314054779 +-3.90451380502153,58.7834948196374 + + + + + +NC99 +#labelStyle + +-3.82042463033738,58.8296227703027 + + + + + +ND + +Large Square ND Boundry Box +#Line1 + + +1 + +-3.6924662708354,57.9779804106943 +-3.73611147391582,58.8756876710053 +-2.00172999223548,58.8873487643736 +-2.00167999706811,57.9892409334915 +-3.6924662708354,57.9779804106943 + + + + + +ND00 + +Small Square ND00 Boundry Box +#Line2 + + +1 + +-3.6924662708354,57.9779804106943 +-3.69671285888952,58.0677496741378 +-3.52729818029495,58.069893881463 +-3.52347512171468,57.9801171918443 +-3.6924662708354,57.9779804106943 + + + + + +ND00 +#labelStyle + +-3.60997984832096,58.0239681720914 + + + + +ND01 + +Small Square ND01 Boundry Box +#Line2 + + +1 + +-3.69671328486423,58.0677586518884 +-3.70098541005412,58.1575264440629 +-3.53114461577106,58.1596781156118 +-3.52729856378563,58.0699028599581 +-3.69671328486423,58.0677586518884 + + + + + +ND01 +#labelStyle + +-3.61402718897349,58.1137494983164 + + + + +ND02 + +Small Square ND02 Boundry Box +#Line2 + + +1 + +-3.70098583859347,58.1575354216663 +-3.70528371512068,58.247301742905 +-3.53501423986612,58.249460916305 +-3.53114500157092,58.1596870939635 +-3.70098583859347,58.1575354216663 + + + + + +ND02 +#labelStyle + +-3.61809889899237,58.2035293725182 + + + + +ND03 + +Small Square ND03 Boundry Box +#Line2 + + +1 + +-3.70528414624621,58.2473107203614 +-3.70960799074325,58.3370755709909 +-3.53890724769392,58.3392422841927 +-3.53501462799456,58.2494698945134 +-3.70528414624621,58.2473107203614 + + + + + +ND03 +#labelStyle + +-3.62219518310535,58.2933077951919 + + + + +ND04 + +Small Square ND04 Boundry Box +#Line2 + + +1 + +-3.70960842447675,58.3370845483002 +-3.71395845604149,58.4268479286403 +-3.54282383658927,58.4290222199215 +-3.53890763817056,58.3392512622579 +-3.70960842447675,58.3370845483002 + + + + + +ND04 +#labelStyle + +-3.62631624836719,58.3830847668275 + + + + +ND05 + +Small Square ND05 Boundry Box +#Line2 + + +1 + +-3.713958892405,58.4268569058025 +-3.71833533263573,58.5166188161656 +-3.54676420613963,58.5188007241345 +-3.54282422943396,58.4290311978435 +-3.713958892405,58.4268569058025 + + + + + +ND05 +#labelStyle + +-3.63046230419258,58.4728602879097 + + + + +ND06 + +Small Square ND06 Boundry Box +#Line2 + + +1 + +-3.71833577165154,58.5166277931808 +-3.72273884468262,58.6063882338717 +-3.55072855821718,58.608577797471 +-3.54676460137244,58.5188097019133 +-3.71833577165154,58.5166277931808 + + + + + +ND06 +#labelStyle + +-3.63463356238981,58.562634358918 + + + + +ND07 + +Small Square ND07 Boundry Box +#Line2 + + +1 + +-3.72273928637326,58.60639721074 +-3.72716921891134,58.6961561820558 +-3.55471709701154,58.6983534405664 +-3.55072895585843,58.6085867751068 +-3.72273928637326,58.60639721074 + + + + + +ND07 +#labelStyle + +-3.63883023719491,58.652406980326 + + + + +ND08 + +Small Square ND08 Boundry Box +#Line2 + + +1 + +-3.72716966329963,58.6961651587772 +-3.73162668466054,58.7859226610069 +-3.55873002906293,58.7881276540516 +-3.55471749708174,58.6983624180592 +-3.72716966329963,58.6961651587772 + + + + + +ND08 +#labelStyle + +-3.64305254530641,58.7421781526012 + + + + +ND09 + +Small Square ND09 Boundry Box +#Line2 + + +1 + +-3.73162713176954,58.7859316375813 +-3.73611147391582,58.8756876710053 +-3.56276756329604,58.8779004385533 +-3.55873043158287,58.7881366314015 +-3.73162713176954,58.7859316375813 + + + + + +ND09 +#labelStyle + +-3.64730070592071,58.8319478762049 + + + + +ND10 + +Small Square ND10 Boundry Box +#Line2 + + +1 + +-3.52345821972756,57.9801173943185 +-3.52728123594076,58.0698940846409 +-3.35784356777787,58.0718130088152 +-3.35444427174215,57.9820296717484 +-3.52345821972756,57.9801173943185 + + + + + +ND10 +#labelStyle + +-3.44074854185092,58.025996414992 + + + + +ND11 + +Small Square ND11 Boundry Box +#Line2 + + +1 + +-3.52728161942719,58.0699030631361 +-3.53112762879104,58.159678319497 +-3.36126365205807,58.1616039244789 +-3.35784390876109,58.0718219879768 +-3.52728161942719,58.0699030631361 + + + + + +ND11 +#labelStyle + +-3.4443709001437,58.1157847967487 + + + + +ND12 + +Small Square ND12 Boundry Box +#Line2 + + +1 + +-3.53112801458663,58.1596872978488 +-3.5349972100036,58.2494611209012 +-3.364704357228,58.2513934403771 +-3.36126399509477,58.1616129035004 +-3.53112801458663,58.1596872978488 + + + + + +ND12 +#labelStyle + +-3.44801507182436,58.2055717619914 + + + + +ND13 + +Small Square ND13 Boundry Box +#Line2 + + +1 + +-3.53499759812775,58.2494700991097 +-3.53889017469008,58.3392424895034 +-3.36816585682798,58.3411815574493 +-3.36470470233544,58.2514024192587 +-3.53499759812775,58.2494700991097 + + + + + +ND13 +#labelStyle + +-3.45168124018347,58.2953573115196 + + + + +ND14 + +Small Square ND14 Boundry Box +#Line2 + + +1 + +-3.5388905651624,58.3392514675686 +-3.5428067201831,58.4290224259503 +-3.37164832637426,58.430968276635 +-3.3681662040236,58.3411905361911 +-3.5388905651624,58.3392514675686 + + + + + +ND14 +#labelStyle + +-3.45536959059534,58.3851414461317 + + + + +ND15 + +Small Square ND15 Boundry Box +#Line2 + + +1 + +-3.54280711302344,58.4290314038723 +-3.54674704606793,58.5188009308851 +-3.37515194338708,58.5207535988734 +-3.37164867567572,58.430977255237 +-3.54280711302344,58.4290314038723 + + + + + +ND15 +#labelStyle + +-3.45908031054769,58.474924166624 + + + + +ND16 + +Small Square ND16 Boundry Box +#Line2 + + +1 + +-3.54674744129637,58.518809908664 +-3.55071135421451,58.608578004947 +-3.3786768874193,58.6105375251032 +-3.37515229481223,58.5207625773357 +-3.54674744129637,58.518809908664 + + + + + +ND16 +#labelStyle + +-3.4628135896717,58.5647054737912 + + + + +ND17 + +Small Square ND17 Boundry Box +#Line2 + + +1 + +-3.55071175185135,58.6085869825829 +-3.5546998488102,58.6983536487716 +-3.38222334008544,58.7003200562629 +-3.3786772409862,58.6105465034261 +-3.55071175185135,58.6085869825829 + + + + + +ND17 +#labelStyle + +-3.46656961977264,58.6544853684256 + + + + +ND18 + +Small Square ND18 Boundry Box +#Line2 + + +1 + +-3.55470024887597,58.6983626262645 +-3.55871273639295,58.7881278629898 +-3.38579148509124,58.7901011932898 +-3.38222369581235,58.7003290344463 +-3.55470024887597,58.6983626262645 + + + + + +ND18 +#labelStyle + +-3.47034859486099,58.7442638513172 + + + + +ND19 + +Small Square ND19 Boundry Box +#Line2 + + +1 + +-3.55871313890842,58.7881368403398 +-3.56275022588513,58.8779006482282 +-3.3893815082638,58.8798809371203 +-3.38579184299665,58.7901101713339 +-3.55871313890842,58.7881368403398 + + + + + +ND19 +#labelStyle + +-3.47415071118411,58.8340409232534 + + + + +ND20 + +Small Square ND20 Boundry Box +#Line2 + + +1 + +-3.35442736760114,57.982029851767 +-3.35782662125177,58.0718131894595 +-3.18836850962865,58.0735067709348 +-3.18539314577045,57.9837175663851 +-3.35442736760114,57.982029851767 + + + + + +ND20 +#labelStyle + +-3.2714956069012,58.0277997118783 + + + + +ND21 + +Small Square ND21 Boundry Box +#Line2 + + +1 + +-3.35782696223074,58.0718221686211 +-3.36124666288793,58.1616041057521 +-3.1913620711422,58.1633035841576 +-3.18836880808735,58.0735157506846 +-3.35782696223074,58.0718221686211 + + + + + +ND21 +#labelStyle + +-3.27469280161983,58.1175943673938 + + + + +ND22 + +Small Square ND22 Boundry Box +#Line2 + + +1 + +-3.36124700592035,58.1616130847738 +-3.36468732515693,58.2513936222825 +-3.1943736838682,58.2530990273585 +-3.19136237139849,58.1633125637704 +-3.36124700592035,58.1616130847738 + + + + + +ND22 +#labelStyle + +-3.27790925169343,58.2073876379772 + + + + +ND23 + +Small Square ND23 Boundry Box +#Line2 + + +1 + +-3.36468767026006,58.2514026011642 +-3.36814878159695,58.34118173999 +-3.19740349974587,58.3428931017329 +-3.19437398593717,58.2531080068344 +-3.36468767026006,58.2514026011642 + + + + + +ND23 +#labelStyle + +-3.28114511894621,58.2971795246991 + + + + +ND24 + +Small Square ND24 Boundry Box +#Line2 + + +1 + +-3.36814912878824,58.3411907187319 +-3.37163120772204,58.4309684598142 +-3.20045167244478,58.4326858084786 +-3.19740380364281,58.3429020810719 +-3.36814912878824,58.3411907187319 + + + + + +ND24 +#labelStyle + +-3.28440056704254,58.3869700286321 + + + + +ND25 + +Small Square ND25 Boundry Box +#Line2 + + +1 + +-3.37163155701914,58.4309774384163 +-3.37513478105026,58.5207537826944 +-3.20351835738942,58.5224771487965 +-3.20045197818515,58.4326947876809 +-3.37163155701914,58.4309774384163 + + + + + +ND25 +#labelStyle + +-3.28767576151303,58.4767591508498 + + + + +ND26 + +Small Square ND26 Boundry Box +#Line2 + + +1 + +-3.37513513247103,58.5207627611569 +-3.37865968113222,58.6105377095694 +-3.20660371178423,58.6122671238899 +-3.20351866498885,58.5224861278623 +-3.37513513247103,58.5207627611569 + + + + + +ND26 +#labelStyle + +-3.29097086978117,58.566546892427 + + + + +ND27 + +Small Square ND27 Boundry Box +#Line2 + + +1 + +-3.37866003469471,58.6105466878923 +-3.38220608958018,58.7003202413775 +-3.20970789463906,58.7020557349645 +-3.20660402125852,58.6122761028192 +-3.37866003469471,58.6105466878923 + + + + + +ND27 +#labelStyle + +-3.29428606119033,58.6563332544399 + + + + +ND28 + +Small Square ND28 Boundry Box +#Line2 + + +1 + +-3.38220644530265,58.700329219561 +-3.3857741900976,58.7901013790561 +-3.21283106679512,58.7918429832283 +-3.20970820600421,58.7020647137574 +-3.38220644530265,58.700329219561 + + + + + +ND28 +#labelStyle + +-3.29762150703124,58.7461182379653 + + + + +ND29 + +Small Square ND29 Boundry Box +#Line2 + + +1 + +-3.38577454799855,58.7901103571002 +-3.38936416850927,58.8798811235417 +-3.21597339095128,58.8816288698914 +-3.21283138006731,58.7918519618851 +-3.38577454799855,58.7901103571002 + + + + + +ND29 +#labelStyle + +-3.30097738057005,58.8359018440807 + + + + +ND30 + +Small Square ND30 Boundry Box +#Line2 + + +1 + +-3.18537623972818,57.9837177239424 +-3.18835156118539,58.0735069290398 +-3.01887555413013,58.0749751152495 +-3.01632427096494,57.9851808235852 +-3.18537623972818,57.9837177239424 + + + + + +ND30 +#labelStyle + +-3.10222358024372,58.0293780069023 + + + + +ND31 + +Small Square ND31 Boundry Box +#Line2 + + +1 + +-3.18835185963984,58.0735159087897 +-3.1913450800388,58.1633037428131 +-3.02144244266467,58.1647770416681 +-3.01887581004938,58.0749840955094 +-3.18835185963984,58.0735159087897 + + + + + +ND31 +#labelStyle + +-3.10499545139934,58.1191781539716 + + + + +ND32 + +Small Square ND32 Boundry Box +#Line2 + + +1 + +-3.19134538029081,58.163312722426 +-3.19435664984759,58.2530991865674 +-3.02402481102846,58.2545776238578 +-3.02144270012544,58.1647860217935 +-3.19134538029081,58.163312722426 + + + + + +ND32 +#labelStyle + +-3.10778401806278,58.2089769437589 + + + + +ND33 + +Small Square ND33 Boundry Box +#Line2 + + +1 + +-3.19435695191226,58.2531081660433 +-3.19738642254885,58.3428932614979 +-3.02662278953546,58.3443768632356 +-3.0240250700437,58.2545866038489 +-3.19435695191226,58.2531081660433 + + + + + +ND33 +#labelStyle + +-3.11058942056625,58.2987743775722 + + + + +ND34 + +Small Square ND34 Boundry Box +#Line2 + + +1 + +-3.19738672644146,58.3429022408369 +-3.20043455180994,58.4326859688025 +-3.02923650998394,58.4341747612238 +-3.02662305011828,58.3443858430924 +-3.19738672644146,58.3429022408369 + + + + + +ND34 +#labelStyle + +-3.11341180083799,58.3885704567241 + + + + +ND35 + +Small Square ND35 Boundry Box +#Line2 + + +1 + +-3.20043485754595,58.4326949480049 +-3.20350119305314,58.5224773096822 +-3.03186610567758,58.5239713192499 +-3.02923677214759,58.4341837409465 +-3.20043485754595,58.4326949480049 + + + + + +ND35 +#labelStyle + +-3.11625130242496,58.478365182531 + + + + +ND36 + +Small Square ND36 Boundry Box +#Line2 + + +1 + +-3.20350150064818,58.522486288748 +-3.20658650348065,58.6122672853403 +-3.03451171144696,58.6137665387467 +-3.03186636943548,58.5239802988387 +-3.20350150064818,58.522486288748 + + + + + +ND36 +#labelStyle + +-3.1191080705159,58.5681585563134 + + + + +ND37 + +Small Square ND37 Boundry Box +#Line2 + + +1 + +-3.20658681295053,58.6122762642696 +-3.20969064210008,58.7020558969825 +-3.03717346367138,58.703560421152 +-3.03451197681265,58.6137755182018 +-3.20658681295053,58.6122762642696 + + + + + +ND37 +#labelStyle + +-3.12198225196477,58.6579505793958 + + + + +ND38 + +Small Square ND38 Boundry Box +#Line2 + + +1 + +-3.20969095346079,58.7020648757755 +-3.21281376975033,58.7918431458168 +-3.03985150030114,58.7933529679083 +-3.03717373065859,58.7035694004734 +-3.20969095346079,58.7020648757755 + + + + + +ND38 +#labelStyle + +-3.12487399531463,58.7477412531061 + + + + +ND39 + +Small Square ND39 Boundry Box +#Line2 + + +1 + +-3.21281408301806,58.7918521244735 +-3.21595604912797,58.8816290330533 +-3.04254596088009,58.8831441804632 +-3.03985176892374,58.7933619470963 +-3.21281408301806,58.7918521244735 + + + + + +ND39 +#labelStyle + +-3.1277834508219,58.8375305787759 + + + + +ND40 + +Small Square ND40 Boundry Box +#Line2 + + +1 + +-3.01630736327422,57.9851809586763 +-3.01885860402462,58.0749752508104 +-2.84936725124668,58.0762179961754 +-2.84724017614913,57.9864193981141 +-3.01630736327422,57.9851809586763 + + + + + +ND40 +#labelStyle + +-2.93293500043871,58.0307312511746 + + + + +ND41 + +Small Square ND41 Boundry Box +#Line2 + + +1 + +-3.01885885993962,58.0749842310703 +-3.02142544988507,58.164777177701 +-2.851507337972,58.1660242510733 +-2.84936746461366,58.0762269768671 +-3.01885885993962,58.0749842310703 + + + + + +ND41 +#labelStyle + +-2.93528140929327,58.1205361072144 + + + + +ND42 + +Small Square ND42 Boundry Box +#Line2 + + +1 + +-3.02142570734155,58.1647861578265 +-3.02400777531754,58.2545777603652 +-2.85366033168004,58.2558291835805 +-2.85150755262428,58.1660332316326 +-3.02142570734155,58.1647861578265 + + + + + +ND42 +#labelStyle + +-2.93764195223495,58.2103396296862 + + + + +ND43 + +Small Square ND43 Boundry Box +#Line2 + + +1 + +-3.02400803432847,58.2545867403563 +-3.02660571063385,58.3443770002199 +-2.85582634103874,58.345632795302 +-2.85366054762844,58.2558381640077 +-3.02400803432847,58.2545867403563 + + + + + +ND43 +#labelStyle + +-2.94001674808167,58.3001418201019 + + + + +ND44 + +Small Square ND44 Boundry Box +#Line2 + + +1 + +-3.02660597121234,58.3443859800768 +-3.02921938763008,58.4341748986873 +-2.85800547595395,58.4354350878499 +-2.85582655829417,58.3456417755972 +-3.02660597121234,58.3443859800768 + + + + + +ND44 +#labelStyle + +-2.94240591700288,58.38994267998 + + + + +ND45 + +Small Square ND45 Boundry Box +#Line2 + + +1 + +-3.02921964978937,58.4341838784101 +-3.03184893960768,58.5239714571952 +-2.86019784758707,58.5252360628439 +-2.85800569452748,58.4354440680133 +-3.02921964978937,58.4341838784101 + + + + + +ND45 +#labelStyle + +-2.94480958053882,58.479742210845 + + + + +ND46 + +Small Square ND46 Boundry Box +#Line2 + + +1 + +-3.03184920336119,58.5239804367841 +-3.03449450139499,58.6137666771762 +-2.86240356837298,58.6150357219111 +-2.86019806748988,58.5252450428756 +-3.03184920336119,58.5239804367841 + + + + + +ND46 +#labelStyle + +-2.94722786162004,58.5695404142283 + + + + +ND47 + +Small Square ND47 Boundry Box +#Line2 + + +1 + +-3.03449476675628,58.6137756566313 +-3.03715620936908,58.7035605600682 +-2.86462275203819,58.7048340666855 +-2.86240378961636,58.6150447018112 +-3.03449476675628,58.6137756566313 + + + + + +ND47 +#labelStyle + +-2.94966088458724,58.6593372916672 + + + + +ND48 + +Small Square ND48 Boundry Box +#Line2 + + +1 + +-3.03715647635185,58.7035695393896 +-3.03983420147792,58.7933531073137 +-2.86685551361948,58.7946310988088 +-2.86462297463359,58.7048430464544 +-3.03715647635185,58.7035695393896 + + + + + +ND48 +#labelStyle + +-2.95210877521152,58.7491328447053 + + + + +ND49 + +Small Square ND49 Boundry Box +#Line2 + + +1 + +-3.03983447009605,58.7933620865017 +-3.04252861726306,58.8831443203603 +-2.86910196948271,58.8844268199292 +-2.86685573757847,58.7946400784464 +-3.03983447009605,58.7933620865017 + + + + + +ND49 +#labelStyle + +-2.9545716607149,58.838927074892 + + + + +ND50 + +Small Square ND50 Boundry Box +#Line2 + + +1 + +-2.84722326706291,57.9864195107349 +-2.849350299734,58.0762181091879 +-2.67984615238504,58.0772353751218 +-2.6781433915688,57.9874332516771 +-2.84722326706291,57.9864195107349 + + + + + +ND50 +#labelStyle + +-2.76363240759748,58.0318594027697 + + + + +ND51 + +Small Square ND51 Boundry Box +#Line2 + + +1 + +-2.84935051309672,58.0762270898796 +-2.8514903437734,58.1660243644793 +-2.68155932987348,58.1670451734831 +-2.67984632318907,58.0772443561669 +-2.84935051309672,58.0762270898796 + + + + + +ND51 +#labelStyle + +-2.76555323668561,58.121668184872 + + + + +ND52 + +Small Square ND52 Boundry Box +#Line2 + + +1 + +-2.85149055842141,58.1660333450387 +-2.85364329453818,58.2558292973822 +-2.68328284027772,58.2568536673343 +-2.68155950170649,58.1670541543977 +-2.85149055842141,58.1660333450387 + + + + + +ND52 +#labelStyle + +-2.7674856371077,58.2114756531812 + + + + +ND53 + +Small Square ND53 Boundry Box +#Line2 + + +1 + +-2.85364351048227,58.2558382778094 +-2.85580926069411,58.3456329095012 +-2.68501677060233,58.3466608584341 +-2.68328301314835,58.2568626481185 +-2.85364351048227,58.2558382778094 + + + + + +ND53 +#labelStyle + +-2.76942970614845,58.3012818093788 + + + + +ND54 + +Small Square ND54 Boundry Box +#Line2 + + +1 + +-2.85580947794521,58.3456418897964 +-2.85798835214484,58.4354352024487 +-2.68676120884315,58.43646674855 +-2.68501694451934,58.3466698390881 +-2.85580947794521,58.3456418897964 + + + + + +ND54 +#labelStyle + +-2.77138554219935,58.391086655155 + + + + +ND55 + +Small Square ND55 Boundry Box +#Line2 + + +1 + +-2.85798857071401,58.4354441826121 +-2.86018068004956,58.5252361778444 +-2.68851624400138,58.5262713394592 +-2.68676138381538,58.436475729074 +-2.85798857071401,58.4354441826121 + + + + + +ND55 +#labelStyle + +-2.77335324477439,58.4808901922083 + + + + +ND56 + +Small Square ND56 Boundry Box +#Line2 + + +1 + +-2.86018089994798,58.5252451578761 +-2.8623863568409,58.6150358373152 +-2.69028196609794,58.6160746329477 +-2.68851642003779,58.5262803198534 +-2.86018089994798,58.5252451578761 + + + + + +ND56 +#labelStyle + +-2.77533291452604,58.5706924222455 + + + + +ND57 + +Small Square ND57 Boundry Box +#Line2 + + +1 + +-2.86238657807987,58.6150448172154 +-2.86460549624313,58.7048341824955 +-2.69205846618806,58.7058766308106 +-2.69028214320757,58.6160836132122 +-2.86238657807987,58.6150448172154 + + + + + +ND57 +#labelStyle + +-2.77732465326156,58.6604933469818 + + + + +ND58 + +Small Square ND58 Boundry Box +#Line2 + + +1 + +-2.86460571883409,58.7048431622643 +-2.86683821329071,58.7946312150266 +-2.69384583637613,58.7956773348521 +-2.69205864438008,58.7058856109457 +-2.86460571883409,58.7048431622643 + + + + + +ND58 +#labelStyle + +-2.77932856395951,58.7502929681402 + + + + +ND59 + +Small Square ND59 Boundry Box +#Line2 + + +1 + +-2.86683843724524,58.7946401946642 +-2.86908462434719,58.884426936557 +-2.69564416983082,58.8854767468853 +-2.69384601565981,58.7956863148579 +-2.86683843724524,58.7946401946642 + + + + + +ND59 +#labelStyle + +-2.78134475078663,58.8400912874523 + + + + +ND60 + +Small Square ND60 Boundry Box +#Line2 + + +1 + +-2.67812648134018,57.9874333418242 +-2.67982919972038,58.0772354655824 +-2.51031481015483,58.0780272204958 +-2.50903644865595,57.9882223529237 +-2.67812648134018,57.9874333418242 + + + + + +ND60 +#labelStyle + +-2.59431834314474,58.0327624267309 + + + + +ND61 + +Small Square ND61 Boundry Box +#Line2 + + +1 + +-2.67982937052015,58.0772444466275 +-2.68154233451324,58.1670452642587 +-2.51160099239836,58.1678397770599 +-2.51031493838736,58.0780362018161 +-2.67982937052015,58.0772444466275 + + + + + +ND61 +#labelStyle + +-2.59581349629236,58.1225743517174 + + + + +ND62 + +Small Square ND62 Boundry Box +#Line2 + + +1 + +-2.68154250634197,58.1670542451733 +-2.68326580196444,58.2568537584266 +-2.51289493251355,58.2576510430339 +-2.51160112140344,58.167848758251 +-2.68154250634197,58.1670542451733 + + + + + +ND62 +#labelStyle + +-2.59731765692964,58.212384978743 + + + + +ND63 + +Small Square ND63 Boundry Box +#Line2 + + +1 + +-2.68326597483076,58.2568627392109 +-2.68499968907639,58.3466609498446 +-2.51419669582775,58.347461020296 +-2.51289506229767,58.257660024096 +-2.68326597483076,58.2568627392109 + + + + + +ND63 +#labelStyle + +-2.59883090079265,58.3021943096255 + + + + +ND64 + +Small Square ND64 Boundry Box +#Line2 + + +1 + +-2.68499986298906,58.3466699304987 +-2.68674408384272,58.4364668402805 +-2.51550634841267,58.4372697107353 +-2.51419682639748,58.3474700012294 +-2.68499986298906,58.3466699304987 + + + + + +ND64 +#labelStyle + +-2.60035330447915,58.3920023461923 + + + + +ND65 + +Small Square ND65 Boundry Box +#Line2 + + +1 + +-2.68674425881059,58.4364758208046 +-2.68849907526242,58.5262714315112 +-2.51682395709496,58.5270771162511 +-2.51550647977465,58.43727869154 +-2.68674425881059,58.4364758208046 + + + + + +ND65 +#labelStyle + +-2.60188494546088,58.4818090902813 + + + + +ND66 + +Small Square ND66 Boundry Box +#Line2 + + +1 + +-2.68849925129444,58.5262804119054 +-2.69026475335418,58.6160747253228 +-2.51814958946703,58.6168832387532 +-2.51682408925592,58.5270860969274 +-2.68849925129444,58.5262804119054 + + + + + +ND66 +#labelStyle + +-2.603425902096,58.5716145437398 + + + + +ND67 + +Small Square ND67 Boundry Box +#Line2 + + +1 + +-2.6902649304594,58.6160837055874 +-2.69204120917096,58.7058767235106 +-2.51948331389794,58.7066880801623 +-2.51814972243376,58.6168922193014 +-2.6902649304594,58.6160837055874 + + + + + +ND67 +#labelStyle + +-2.60497625364175,58.6614187084254 + + + + +ND68 + +Small Square ND68 Boundry Box +#Line2 + + +1 + +-2.69204138735854,58.7058857036457 +-2.69382853481485,58.7956774278786 +-2.52082519954462,58.7964916424092 +-2.51948344767733,58.7066970605825 +-2.69204138735854,58.7058857036457 + + + + + +ND68 +#labelStyle + +-2.60653608026733,58.7512215862049 + + + + +ND69 + +Small Square ND69 Boundry Box +#Line2 + + +1 + +-2.69382871409406,58.7956864078844 +-2.69562682345219,58.88547684024 +-2.52217531636316,58.886293927435 +-2.52082533414361,58.7965006227015 +-2.69382871409406,58.7956864078844 + + + + + +ND69 +#labelStyle + +-2.60810546306705,58.8410231789555 + + + + +ND70 + +Small Square ND70 Boundry Box +#Line2 + + +1 + +-2.50901953753811,57.9882224205942 +-2.51029785659352,58.0780272884017 +-2.34077577812887,58.078593507706 +-2.33992187979228,57.9887866774511 +-2.50901953753811,57.9882224205942 + + + + + +ND70 +#labelStyle + +-2.42499534958067,58.0334402950744 + + + + +ND71 + +Small Square ND71 Boundry Box +#Line2 + + +1 + +-2.51029798482179,58.0780362697219 +-2.51158399613394,58.1678398452023 +-2.34163490055266,58.1684080370214 +-2.34077586378348,58.0786024892231 +-2.51029798482179,58.0780362697219 + + + + + +ND71 +#labelStyle + +-2.42606475192018,58.12325457955 + + + + +ND72 + +Small Square ND72 Boundry Box +#Line2 + + +1 + +-2.51158412513473,58.1678488263934 +-2.51287789328847,58.257651111414 +-2.34249920507021,58.2582212857041 +-2.34163498672331,58.1684170184103 +-2.51158412513473,58.1678488263934 + + + + + +ND72 +#labelStyle + +-2.42714059705555,58.2130675779522 + + + + +ND73 + +Small Square ND73 Boundry Box +#Line2 + + +1 + +-2.51287802306827,58.2576600924762 +-2.5141796133823,58.3474610889151 +-2.34336873532123,58.3480332557181 +-2.34249929176124,58.258230266965 +-2.51287802306827,58.2576600924762 + + + + + +ND73 +#labelStyle + +-2.42822293916216,58.302879292201 + + + + +ND74 + +Small Square ND74 Boundry Box +#Line2 + + +1 + +-2.51417974394769,58.3474700698485 +-2.51548922248494,58.4372697795945 +-2.3442435354427,58.4378439490389 +-2.34336882253703,58.3480422368513 +-2.51417974394769,58.3474700698485 + + + + + +ND74 +#labelStyle + +-2.42931183303184,58.3926897242273 + + + + +ND75 + +Small Square ND75 Boundry Box +#Line2 + + +1 + +-2.51548935384256,58.4372787603993 +-2.51680678742083,58.5270771853517 +-2.34512365007598,58.5276533676535 +-2.34424362318772,58.4378529300444 +-2.51548935384256,58.4372787603993 + + + + + +ND75 +#labelStyle + +-2.43040733408162,58.4824988759731 + + + + +ND76 + +Small Square ND76 Boundry Box +#Line2 + + +1 + +-2.5168069195774,58.5270861660281 +-2.51813237578013,58.6168833080965 +-2.34600912437396,58.6174615135605 +-2.3451237383547,58.5276623485317 +-2.5168069195774,58.5270861660281 + + + + + +ND76 +#labelStyle + +-2.43150949836266,58.5723067493917 + + + + +ND77 + +Small Square ND77 Boundry Box +#Line2 + + +1 + +-2.51813250874245,58.6168922886447 +-2.51946605592964,58.7066881497495 +-2.34690000400842,58.7072683887699 +-2.34600921319092,58.6174704943115 +-2.51813250874245,58.6168922886447 + + + + + +ND77 +#labelStyle + +-2.43261838256929,58.6621133464471 + + + + +ND78 + +Small Square ND78 Boundry Box +#Line2 + + +1 + +-2.51946618970458,58.7066971301696 +-2.52080789702397,58.7964917122414 +-2.34779633517745,58.7970739953032 +-2.34690009336821,58.7072773693939 +-2.51946618970458,58.7066971301696 + + + + + +ND78 +#labelStyle + +-2.43373404404827,58.7519186691146 + + + + +ND79 + +Small Square ND79 Boundry Box +#Line2 + + +1 + +-2.5208080316185,58.7965006925338 +-2.52215796901692,58.8862939975136 +-2.34869816461306,58.8868783351934 +-2.34779642508472,58.7970829758005 +-2.5208080316185,58.7965006925338 + + + + + +ND79 +#labelStyle + +-2.43485654080813,58.8417227193804 + + + + +ND80 + +Small Square ND80 Boundry Box +#Line2 + + +1 + +-2.33990496803851,57.9887867226429 +-2.34075882392629,58.0785935530551 +-2.17123161060311,58.0789342191652 +-2.17080221807263,57.9891262078069 +-2.33990496803851,57.9887867226429 + + + + + +ND80 +#labelStyle + +-2.25566597024275,58.0338929867925 + + + + +ND81 + +Small Square ND81 Boundry Box +#Line2 + + +1 + +-2.34075890957664,58.0786025345721 +-2.34161790364159,58.1684080825284 +-2.1716636300758,58.1687499356441 +-2.1712316536755,58.0789432008007 +-2.34075890957664,58.0786025345721 + + + + + +ND81 +#labelStyle + +-2.25630956822482,58.1237088471992 + + + + +ND82 + +Small Square ND82 Boundry Box +#Line2 + + +1 + +-2.34161798980795,58.1684170639173 +-2.34248216519303,58.25822133137 +-2.1720982553742,58.2585643774837 +-2.17166367340769,58.168758917152 +-2.34161798980795,58.1684170639173 + + + + + +ND82 +#labelStyle + +-2.2569570437013,58.2135234294738 + + + + +ND83 + +Small Square ND83 Boundry Box +#Line2 + + +1 + +-2.34248225187975,58.2582303126309 +-2.34335165221817,58.3480333015435 +-2.17253550844341,58.3483775466994 +-2.17209829896776,58.2585733588642 +-2.34248225187975,58.2582303126309 + + + + + +ND83 +#labelStyle + +-2.25760842927827,58.3033367356043 + + + + +ND84 + +Small Square ND84 Boundry Box +#Line2 + + +1 + +-2.34335173942964,58.3480422826767 +-2.3442264088518,58.4378439950247 +-2.17297541147865,58.438189445319 +-2.17253555230086,58.3483865279528 +-2.34335173942964,58.3480422826767 + + + + + +ND84 +#labelStyle + +-2.25826375793284,58.3931487675906 + + + + +ND85 + +Small Square ND85 Boundry Box +#Line2 + + +1 + +-2.34422649659245,58.4378529760303 +-2.34510647973304,58.5276534138005 +-2.17341798692872,58.5280000753822 +-2.17297545560221,58.4381984264454 +-2.34422649659245,58.4378529760303 + + + + + +ND85 +#labelStyle + +-2.25892306301844,58.4829595274446 + + + + +ND86 + +Small Square ND86 Boundry Box +#Line2 + + +1 + +-2.34510656800737,58.5276623946787 +-2.34599191001255,58.6174615598696 +-2.17386325749973,58.617809438941 +-2.17341803132066,58.5280090563819 +-2.34510656800737,58.5276623946787 + + + + + +ND86 +#labelStyle + +-2.25958637827014,58.57276901719 + + + + +ND87 + +Small Square ND87 Boundry Box +#Line2 + + +1 + +-2.3459919988251,58.6174705406206 +-2.34688274535984,58.7072684352419 +-2.17431124615868,58.7076175380592 +-2.17386330216232,58.6178184198141 +-2.3459919988251,58.6174705406206 + + + + + +ND87 +#labelStyle + +-2.26025373781018,58.6625772388624 + + + + +ND88 + +Small Square ND88 Boundry Box +#Line2 + + +1 + +-2.34688283471519,58.7072774158659 +-2.3477790319707,58.7970740419389 +-2.17476197613729,58.7974243748131 +-2.17431129109424,58.707626518806 +-2.34688283471519,58.7072774158659 + + + + + +ND88 +#labelStyle + +-2.26092517615348,58.7523841945092 + + + + +ND89 + +Small Square ND89 Boundry Box +#Line2 + + +1 + +-2.3477791218735,58.7970830224362 +-2.34868081657482,58.8868783819937 +-2.17521547093577,58.8872299512906 +-2.17476202134815,58.7974333554337 +-2.3477791218735,58.7970830224362 + + + + + +ND89 +#labelStyle + +-2.26160072821325,58.8421898861895 + + + + +ND90 + +Small Square ND90 Boundry Box +#Line2 + + +1 + +-2.17078530593625,57.9891262305187 +-2.17121465601473,58.078934241956 +-2.00168486235653,58.0790493442923 +-2.00167999706811,57.9892409334915 +-2.17078530593625,57.9891262305187 + + + + + +ND90 +#labelStyle + +-2.08633274906729,58.0341204878555 + + + + +ND91 + +Small Square ND91 Boundry Box +#Line2 + + +1 + +-2.17121469908286,58.0789432235915 +-2.17164663277568,58.1687499585143 +-2.00168975719706,58.1688654622647 +-2.00168486284455,58.0790583259678 +-2.17121469908286,58.0789432235915 + + + + + +ND91 +#labelStyle + +-2.08655051046939,58.123937140527 + + + + +ND92 + +Small Square ND92 Boundry Box +#Line2 + + +1 + +-2.17164667610329,58.1687589400222 +-2.1720812151047,58.2585644004337 +-2.00169468134883,58.2586803076263 +-2.00168975768801,58.1688744438128 +-2.17164667610329,58.1687589400222 + + + + + +ND92 +#labelStyle + +-2.08676958369875,58.2137525190598 + + + + +ND93 + +Small Square ND93 Boundry Box +#Line2 + + +1 + +-2.17208125869395,58.2585733818142 +-2.17251842494472,58.3483775697297 +-2.00169963505885,58.3484938824099 +-2.00169468184271,58.2586892890473 +-2.17208125869395,58.2585733818142 + + + + + +ND93 +#labelStyle + +-2.08698997978697,58.3035666254763 + + + + +ND94 + +Small Square ND94 Boundry Box +#Line2 + + +1 + +-2.17251846879783,58.3483865509831 +-2.17295828448875,58.4381894684299 +-2.00170461857696,58.4383061886608 +-2.0016996355557,58.3485028637039 +-2.17251846879783,58.3483865509831 + + + + + +ND94 +#labelStyle + +-2.08721170989118,58.3933794618111 + + + + +ND95 + +Small Square ND95 Boundry Box +#Line2 + + +1 + +-2.17295832860795,58.4381984495564 +-2.1734008161834,58.5280000985742 +-2.00170963215587,58.5281172284368 +-2.00170461907681,58.4383151698281 +-2.17295832860795,58.4381984495564 + + + + + +ND95 +#labelStyle + +-2.08743478529582,58.4831910301112 + + + + +ND96 + +Small Square ND96 Boundry Box +#Line2 + + +1 + +-2.17340086057095,58.5280090795739 +-2.17384604273251,58.6178094622145 +-2.00171467605115,58.6179270038076 +-2.00170963265874,58.5281262094775 +-2.17340086057095,58.5280090795739 + + + + + +ND96 +#labelStyle + +-2.08765921741446,58.5730013324356 + + + + +ND97 + +Small Square ND97 Boundry Box +#Line2 + + +1 + +-2.17384608739068,58.6178184430876 +-2.17429398710082,58.7076175614146 +-2.00171975052134,58.7077355168556 +-2.00171467655707,58.617935984722 +-2.17384608739068,58.6178184430876 + + + + + +ND97 +#labelStyle + +-2.08788501779168,58.662810370856 + + + + +ND98 + +Small Square ND98 Boundry Box +#Line2 + + +1 + +-2.17429403203193,58.7076265421614 +-2.17474467251775,58.7974243982508 +-2.00172485582795,58.7975427696754 +-2.00171975103033,58.7077444976439 +-2.17429403203193,58.7076265421614 + + + + + +ND98 +#labelStyle + +-2.08811219810488,58.752618147456 + + + + +ND99 + +Small Square ND99 Boundry Box +#Line2 + + +1 + +-2.17474471772414,58.7974333788714 +-2.17519812248119,58.887229974811 +-2.00172999223548,58.8873487643736 +-2.00172485634003,58.7975517503377 +-2.17474471772414,58.7974333788714 + + + + + +ND99 +#labelStyle + +-2.08834077016627,58.8424246643315 + + + + + +NF + +Large Square NF Boundry Box +#Line1 + + +1 + +-8.57739017508451,56.917832077491 +-8.73972019892681,57.810031025627 +-7.06399236553006,57.8882325948871 +-6.94154694905529,56.9934064207287 +-8.57739017508451,56.917832077491 + + + + + +NF00 + +Small Square NF00 Boundry Box +#Line2 + + +1 + +-8.57739017508451,56.917832077491 +-8.59319890746048,57.0070628057854 +-8.4296180824891,57.0156067735337 +-8.41419488758191,56.9263471358489 +-8.57739017508451,56.917832077491 + + + + + +NF00 +#labelStyle + +-8.5035931236586,56.966744162749 + + + + +NF01 + +Small Square NF01 Boundry Box +#Line2 + + +1 + +-8.59320049307764,57.0070717295443 +-8.60910117725254,57.0962983246183 +-8.44513258208579,57.1048713423188 +-8.42961962943922,57.0156157001907 +-8.59320049307764,57.0070717295443 + + + + + +NF01 +#labelStyle + +-8.51925606617739,57.0559963312155 + + + + +NF02 + +Small Square NF02 Boundry Box +#Line2 + + +1 + +-8.60910277210256,57.0963072479628 +-8.6250961460179,57.185529688257 +-8.46073756934401,57.1941318947118 +-8.44513413804851,57.1048802685752 +-8.60910277210256,57.0963072479628 + + + + + +NF02 +#labelStyle + +-8.53501023722721,57.1452444248281 + + + + +NF03 + +Small Square NF03 Boundry Box +#Line2 + + +1 + +-8.62509775017499,57.1855386111849 +-8.64118455976925,57.2747568748989 +-8.47643377306587,57.2833884100467 +-8.4607391343918,57.1941408205655 +-8.62509775017499,57.1855386111849 + + + + + +NF03 +#labelStyle + +-8.55085637026075,57.2344884224733 + + + + +NF04 + +Small Square NF04 Boundry Box +#Line2 + + +1 + +-8.64118617330842,57.274765797408 +-8.65736717262476,57.363979862497 +-8.49222192997985,57.3726408674251 +-8.47643534727201,57.2833973354956 +-8.64118617330842,57.274765797408 + + + + + +NF04 +#labelStyle + +-8.56679520669328,57.3237283028016 + + + + +NF05 + +Small Square NF05 Boundry Box +#Line2 + + +1 + +-8.65736879562181,57.3639887845851 +-8.67364474691754,57.4531986287564 +-8.50810278484795,57.4618892457132 +-8.49222351341842,57.3726497924672 +-8.65736879562181,57.3639887845851 + + + + + +NF05 +#labelStyle + +-8.58282749601019,57.412964044223 + + + + +NF06 + +Small Square NF06 Boundry Box +#Line2 + + +1 + +-8.67364637944913,57.4532075504212 +-8.69001805330688,57.5424131511306 +-8.52407709057462,57.5511335235379 +-8.50810437759384,57.4618981703463 +-8.67364637944913,57.4532075504212 + + + + + +NF06 +#labelStyle + +-8.59895399587614,57.5021956249041 + + + + +NF07 + +Small Square NF07 Boundry Box +#Line2 + + +1 + +-8.6900196954505,57.5424220723698 +-8.70648787089131,57.6316234068178 +-8.54014560831738,57.6403736792838 +-8.52407869270351,57.5511424477599 +-8.6900196954505,57.5424220723698 + + + + + +NF07 +#labelStyle + +-8.61517547224602,57.5914230227645 + + + + +NF08 + +Small Square NF08 Boundry Box +#Line2 + + +1 + +-8.7064895227253,57.6316323276292 +-8.72305498732347,57.7208293727577 +-8.5563091075994,57.7296096910891 +-8.54014721990582,57.6403826030925 +-8.7064895227253,57.6316323276292 + + + + + +NF08 +#labelStyle + +-8.63149269947772,57.6806462154733 + + + + +NF09 + +Small Square NF09 Boundry Box +#Line2 + + +1 + +-8.72305664892701,57.720838293139 +-8.73972019892681,57.810031025627 +-8.57256836642372,57.8188415368428 +-8.55631072872474,57.7296186144824 +-8.72305664892701,57.720838293139 + + + + + +NF09 +#labelStyle + +-8.64790646044678,57.7698651804451 + + + + +NF10 + +Small Square NF10 Boundry Box +#Line2 + + +1 + +-8.41417856193219,56.926347976826 +-8.42960171824582,57.0156076173666 +-8.26593113898652,57.0239385369621 +-8.25089423324598,56.9346506951796 +-8.41417856193219,56.926347976826 + + + + + +NF10 +#labelStyle + +-8.34014399981921,56.9751681757085 + + + + +NF11 + +Small Square NF11 Boundry Box +#Line2 + + +1 + +-8.42960326519208,57.0156165440239 +-8.44511617902529,57.1048721890214 +-8.28105710867908,57.1132314471087 +-8.26593264719404,57.0239474664465 +-8.42960326519208,57.0156165440239 + + + + + +NF11 +#labelStyle + +-8.35541987180209,57.0644489732972 + + + + +NF12 + +Small Square NF12 Boundry Box +#Line2 + + +1 + +-8.44511773498411,57.1048811152781 +-8.46072112724473,57.1941327442979 +-8.29627134667974,57.2025204764125 +-8.28105862567812,57.113240376206 +-8.44511773498411,57.1048811152781 + + + + + +NF12 +#labelStyle + +-8.37078476541416,57.1537258326592 + + + + +NF13 + +Small Square NF13 Boundry Box +#Line2 + + +1 + +-8.46072269228861,57.1941416701519 +-8.47641729170453,57.28338926253 +-8.3115745644729,57.2918056053187 +-8.29627287254105,57.2025294051207 +-8.46072269228861,57.1941416701519 + + + + + +NF13 +#labelStyle + +-8.38623939693192,57.2429987337994 + + + + +NF14 + +Small Square NF14 Boundry Box +#Line2 + + +1 + +-8.47641886590674,57.2833981879793 +-8.49220540913144,57.3726417228197 +-8.32696748128842,57.3810868140522 +-8.31157609926802,57.2918145336359 +-8.47641886590674,57.2833981879793 + + + + + +NF14 +#labelStyle + +-8.40178449041565,57.3322676564978 + + + + +NF15 + +Small Square NF15 Boundry Box +#Line2 + + +1 + +-8.49220699256606,57.3726506478621 +-8.5080862242857,57.4618901040331 +-8.34245082420653,57.470364082614 +-8.32696902508967,57.3810957419763 +-8.49220699256606,57.3726506478621 + + + + + +NF15 +#labelStyle + +-8.41742077781452,57.4215325803067 + + + + +NF16 + +Small Square NF16 Boundry Box +#Line2 + + +1 + +-8.5080878170276,57.4618990286665 +-8.52406049006995,57.5511343847973 +-8.35802532826433,57.5596373907788 +-8.34245237708702,57.4703730101432 +-8.5080878170276,57.4618990286665 + + + + + +NF16 +#labelStyle + +-8.43314899907351,57.510793484547 + + + + +NF17 + +Small Square NF17 Boundry Box +#Line2 + + +1 + +-8.52406209219484,57.5511433090196 +-8.54012896763994,57.6403745434969 +-8.37369173656413,57.6489067180905 +-8.35802689029796,57.5596463179109 +-8.52406209219484,57.5511433090196 + + + + + +NF17 +#labelStyle + +-8.44896990224197,57.6000503483051 + + + + +NF18 + +Small Square NF18 Boundry Box +#Line2 + + +1 + +-8.54013057922435,57.6403834673059 +-8.556292426517,57.7296105582704 +-8.38945080038343,57.73817204386 +-8.37369330782561,57.6489156448235 +-8.54013057922435,57.6403834673059 + + + + + +NF18 +#labelStyle + +-8.46488424358406,57.6893031504293 + + + + +NF19 + +Small Square NF19 Boundry Box +#Line2 + + +1 + +-8.55629404763829,57.7296194816639 +-8.57255164470235,57.8188424070068 +-8.40530327928687,57.8274333471608 +-8.38945238094831,57.7381809701917 +-8.55629404763829,57.7296194816639 + + + + + +NF19 +#labelStyle + +-8.48089278769086,57.7785518695264 + + + + +NF20 + +Small Square NF20 Boundry Box +#Line2 + + +1 + +-8.25087789880039,56.9346515149083 +-8.26591476587691,57.0239393594757 +-8.10215663442613,57.0320569874997 +-8.08750671406563,56.942741651616 +-8.25087789880039,56.9346515149083 + + + + + +NF20 +#labelStyle + +-8.17660656629721,56.9833793516536 + + + + +NF21 + +Small Square NF21 Boundry Box +#Line2 + + +1 + +-8.26591627408055,57.0239482889604 +-8.281040696681,57.1132322724208 +-8.11689337039122,57.1213775256809 +-8.10215810382103,57.0320659197404 +-8.26591627408055,57.0239482889604 + + + + + +NF21 +#labelStyle + +-8.19149465916568,57.0726880675581 + + + + +NF22 + +Small Square NF22 Boundry Box +#Line2 + + +1 + +-8.28104221367613,57.1132412015184 +-8.29625489557087,57.2025213045365 +-8.13171614766875,57.2106943152832 +-8.1168948483558,57.1213864575475 +-8.28104221367613,57.1132412015184 + + + + + +NF22 +#labelStyle + +-8.20646955908129,57.1619929785997 + + + + +NF23 + +Small Square NF23 Boundry Box +#Line2 + + +1 + +-8.29625642142826,57.202530233245 +-8.31155807402917,57.2918064362681 +-8.14662566032221,57.3000073378376 +-8.13171763427205,57.2107032467742 +-8.29625642142826,57.202530233245 + + + + + +NF23 +#labelStyle + +-8.22153196504088,57.2512940658759 + + + + +NF24 + +Small Square NF24 Boundry Box +#Line2 + + +1 + +-8.31155960882035,57.2918153645856 +-8.32695095128403,57.3810876478406 +-8.16162260997801,57.389316574666 +-8.146627155634,57.3000162689509 +-8.31155960882035,57.2918153645856 + + + + + +NF24 +#labelStyle + +-8.23668258364453,57.3405913102712 + + + + +NF25 + +Small Square NF25 Boundry Box +#Line2 + + +1 + +-8.32695249508132,57.381096575765 +-8.3424342544139,57.4703649192552 +-8.17670770592803,57.4786220068785 +-8.16162411406884,57.3893255053998 +-8.32695249508132,57.381096575765 + + + + + +NF25 +#labelStyle + +-8.25192212919832,57.4298846924538 + + + + +NF26 + +Small Square NF26 Boundry Box +#Line2 + + +1 + +-8.34243580729039,57.4703738467846 +-8.35800871845407,57.5596382302865 +-8.19188166523375,57.5679236153704 +-8.17670921886922,57.4786309372309 +-8.34243580729039,57.4703738467846 + + + + + +NF26 +#labelStyle + +-8.26725132381893,57.5191741928728 + + + + +NF27 + +Small Square NF27 Boundry Box +#Line2 + + +1 + +-8.35801028048369,57.5596471574189 +-8.37367508650506,57.6489075604787 +-8.20714521283217,57.6572213808188 +-8.1918831870974,57.5679325453394 +-8.35801028048369,57.5596471574189 + + + + + +NF27 +#labelStyle + +-8.28267089753983,57.6084597917548 + + + + +NF28 + +Small Square NF28 Boundry Box +#Line2 + + +1 + +-8.3736766577625,57.648916487212 +-8.38943410984252,57.7381728891428 +-8.22249908164332,57.7465152836797 +-8.20714674369116,57.6572303104026 +-8.3736766577625,57.648916487212 + + + + + +NF28 +#labelStyle + +-8.2981815884192,57.6977414691006 + + + + +NF29 + +Small Square NF29 Boundry Box +#Line2 + + +1 + +-8.38943569040333,57.7381818154748 +-8.40528654802925,57.8274341953524 +-8.23794401267967,57.8358053041843 +-8.22250062157134,57.7465242128761 +-8.38943569040333,57.7381818154748 + + + + + +NF29 +#labelStyle + +-8.3137841426497,57.787019204682 + + + + +NF30 + +Small Square NF30 Boundry Box +#Line2 + + +1 + +-8.08749037104307,56.9427424500726 +-8.10214025267079,57.0320577886701 +-7.93829677864978,57.0399618876913 +-7.92403452282002,56.9506197694379 +-8.08749037104307,56.9427424500726 + + + + + +NF30 +#labelStyle + +-8.01298302066662,56.9913774510125 + + + + +NF31 + +Small Square NF31 Boundry Box +#Line2 + + +1 + +-8.10214172206182,57.032066720911 +-8.11687694967788,57.1213783295783 +-7.95264359430643,57.1293093388267 +-7.93829820916379,57.0399708226168 +-8.10214172206182,57.032066720911 + + + + + +NF31 +#labelStyle + +-8.02748264294539,57.0807133726608 + + + + +NF32 + +Small Square NF32 Boundry Box +#Line2 + + +1 + +-8.11687842763856,57.1213872614453 +-8.13169968777436,57.2106951219208 +-7.96707421681789,57.2186531703442 +-7.95264503316754,57.1293182733911 +-8.11687842763856,57.1213872614453 + + + + + +NF32 +#labelStyle + +-8.04206685018735,57.1700456195287 + + + + +NF33 + +Small Square NF33 Boundry Box +#Line2 + + +1 + +-8.13170117437372,57.210704053412 +-8.14660916102192,57.3000081472285 +-7.98158932272587,57.3079933648342 +-7.9670756640934,57.2186621045458 +-8.13170117437372,57.210704053412 + + + + + +NF33 +#labelStyle + +-8.05673632400848,57.2593741737805 + + + + +NF34 + +Small Square NF34 Boundry Box +#Line2 + + +1 + +-8.14661065632976,57.3000170783421 +-8.16160607104523,57.3893173868235 +-7.99618959595084,57.3973299046895 +-7.9815907784838,57.3080022986712 +-8.14661065632976,57.3000170783421 + + + + + +NF34 +#labelStyle + +-8.07149175344579,57.348699017379 + + + + +NF35 + +Small Square NF35 Boundry Box +#Line2 + + +1 + +-8.1616075751321,57.3893263175575 +-8.1766911271344,57.478622821816 +-8.01087572789215,57.4866627721027 +-7.99619106025994,57.3973388381601 +-8.1616075751321,57.3893263175575 + + + + + +NF35 +#labelStyle + +-8.08633383505777,57.4380201320823 + + + + +NF36 + +Small Square NF36 Boundry Box +#Line2 + + +1 + +-8.1766926400716,57.4786317521686 +-8.19186504634911,57.5679244331013 +-8.02564841752982,57.5759919490632 +-8.01087720082195,57.4866717052052 +-8.1766926400716,57.4786317521686 + + + + + +NF36 +#labelStyle + +-8.10126327302659,57.5273374994412 + + + + +NF37 + +Small Square NF37 Boundry Box +#Line2 + + +1 + +-8.19186656820873,57.5679333630706 +-8.20712855362449,57.6572222013568 +-8.04050837152791,57.6653174173541 +-8.0256498991506,57.5760008817958 +-8.19186656820873,57.5679333630706 + + + + + +NF37 +#labelStyle + +-8.11628077926184,57.6166511007955 + + + + +NF38 + +Small Square NF38 Boundry Box +#Line2 + + +1 + +-8.20713008447944,57.6572311309408 +-8.22248238187878,57.7465161070385 +-8.05545630433962,57.7546391585493 +-8.04050986191072,57.6653263497149 +-8.20713008447944,57.6572311309408 + + + + + +NF38 +#labelStyle + +-8.13138707350605,57.7059609172718 + + + + +NF39 + +Small Square NF39 Boundry Box +#Line2 + + +1 + +-8.22248392180274,57.7465250362352 +-8.23792727212257,57.8358061303778 +-8.07049293831414,57.8439571540102 +-8.0554578035563,57.7546480905364 +-8.22248392180274,57.7465250362352 + + + + + +NF39 +#labelStyle + +-8.14658288344189,57.7952669297797 + + + + +NF40 + +Small Square NF40 Boundry Box +#Line2 + + +1 + +-7.92401817144015,56.950620546599 +-7.93828038847007,57.0399626674949 +-7.77435378884859,57.0476530060954 +-7.7604798595402,56.958284818897 +-7.92401817144015,56.950620546599 + + + + + +NF40 +#labelStyle + +-7.84927556788962,56.9991622401934 + + + + +NF41 + +Small Square NF41 Boundry Box +#Line2 + + +1 + +-7.93828181898019,57.0399716024207 +-7.95262716510093,57.1293101212858 +-7.78831001495715,57.1370266533944 +-7.77435518041514,57.0476619436342 +-7.93828181898019,57.0399716024207 + + + + + +NF41 +#labelStyle + +-7.86338604530589,57.0885246532905 + + + + +NF42 + +Small Square NF42 Boundry Box +#Line2 + + +1 + +-7.95262860395813,57.1293190558505 +-7.9670577483628,57.2186539554716 +-7.80234780618281,57.2263968067154 +-7.78831141464751,57.1370355905846 +-7.95262860395813,57.1293190558505 + + + + + +NF42 +#labelStyle + +-7.87757887827943,57.1778835183905 + + + + +NF43 + +Small Square NF43 Boundry Box +#Line2 + + +1 + +-7.96705919563437,57.2186628896734 +-7.98157281479561,57.3079941526426 +-7.81646782144695,57.3157634496824 +-7.8023492140625,57.2264057435555 +-7.96705919563437,57.2186628896734 + + + + + +NF43 +#labelStyle + +-7.89185473094643,57.2672388186987 + + + + +NF44 + +Small Square NF44 Boundry Box +#Line2 + + +1 + +-7.98157427054958,57.3080030864798 +-7.99617304831806,57.3973306951919 +-7.83067072686397,57.4051265657325 +-7.81646923758224,57.3157723861706 +-7.98157427054958,57.3080030864798 + + + + + +NF44 +#labelStyle + +-7.90621427468036,57.3565905372299 + + + + +NF45 + +Small Square NF45 Boundry Box +#Line2 + + +1 + +-7.99617451262318,57.3973396286628 +-8.01085914032772,57.4866635653121 +-7.84495719583898,57.4944861381142 +-7.83067215132182,57.4051355018672 +-7.99617451262318,57.3973396286628 + + + + + +NF45 +#labelStyle + +-7.92065818819,57.4459386568057 + + + + +NF46 + +Small Square NF46 Boundry Box +#Line2 + + +1 + +-8.01086061325352,57.4866724984149 +-8.02563178980278,57.5759927449928 +-7.85932790916709,57.583842149884 +-7.8449586286871,57.4944950738937 +-8.01086061325352,57.4866724984149 + + + + + +NF46 +#labelStyle + +-7.93518715761917,57.5352831600516 + + + + +NF47 + +Small Square NF47 Boundry Box +#Line2 + + +1 + +-8.02563327141953,57.5760016777257 +-8.04049170340548,57.6653182160172 +-7.87378355513437,57.6731945839036 +-7.85932935047395,57.5838510853065 +-8.02563327141953,57.5760016777257 + + + + + +NF47 +#labelStyle + +-7.94980187664814,57.6246240293942 + + + + +NF48 + +Small Square NF48 Boundry Box +#Line2 + + +1 + +-8.04049319378423,57.6653271483783 +-8.05543959558716,57.7546399599592 +-7.88832482962035,57.7625434228372 +-7.87378500496916,57.6732035189675 +-8.04049319378423,57.6653271483783 + + + + + +NF48 +#labelStyle + +-7.96450304659653,57.713961247058 + + + + +NF49 + +Small Square NF49 Boundry Box +#Line2 + + +1 + +-8.05544109479976,57.7546488919466 +-8.07047618869513,57.8439579581804 +-7.90295243620232,57.8518886491487 +-7.88832628805304,57.7625523575407 +-8.05544109479976,57.7546488919466 + + + + + +NF49 +#labelStyle + +-7.97929137652807,57.8032947950629 + + + + +NF50 + +Small Square NF50 Boundry Box +#Line2 + + +1 + +-7.76046350002338,56.95828557474 +-7.77433739046659,57.0476537645095 +-7.61032988938488,57.0551301173106 +-7.59684493133326,56.9657365762423 +-7.76046350002338,56.95828557474 + + + + + +NF50 +#labelStyle + +-7.68548642014053,57.0067334916102 + + + + +NF51 + +Small Square NF51 Boundry Box +#Line2 + + +1 + +-7.77433878202925,57.0476627020486 +-7.78829357748331,57.1370274143922 +-7.62389487414373,57.1445292423148 +-7.61033124193913,57.0551390573911 +-7.77433878202925,57.0476627020486 + + + + + +NF51 +#labelStyle + +-7.69920709572103,57.0961216801807 + + + + +NF52 + +Small Square NF52 Boundry Box +#Line2 + + +1 + +-7.78829497716974,57.1370363515827 +-7.8023313293926,57.2263975703094 +-7.63753917518528,57.2339249956431 +-7.62389623459779,57.1445381820589 +-7.78829497716974,57.1370363515827 + + + + + +NF52 +#labelStyle + +-7.71300789031237,57.185506444221 + + + + +NF53 + +Small Square NF53 Boundry Box +#Line2 + + +1 + +-7.80233273726835,57.2264065071497 +-7.81645130511406,57.3157642158849 +-7.65126343371445,57.3233173619263 +-7.63754054360291,57.2339339350493 +-7.80233273726835,57.2264065071497 + + + + + +NF53 +#labelStyle + +-7.72688945047444,57.2748877679511 + + + + +NF54 + +Small Square NF54 Boundry Box +#Line2 + + +1 + +-7.81645272124539,57.3157731523734 +-7.83065417076033,57.4051273345563 +-7.66506829794188,57.4127063256195 +-7.65126481016013,57.323326300993 +-7.81645272124539,57.3157731523734 + + + + + +NF54 +#labelStyle + +-7.74085242981902,57.3642656354115 + + + + +NF55 + +Small Square NF55 Boundry Box +#Line2 + + +1 + +-7.83065559521419,57.4051362706913 +-7.8449405997347,57.494486909572 +-7.67895442317913,57.5020918709997 +-7.66506968248078,57.4127152643451 +-7.83065559521419,57.4051362706913 + + + + + +NF55 +#labelStyle + +-7.75489748910544,57.4536400304605 + + + + +NF56 + +Small Square NF56 Boundry Box +#Line2 + + +1 + +-7.84494203257881,57.4944958453517 +-7.85931127283046,57.5838429239884 +-7.69292247193551,57.5914739821635 +-7.67895581587714,57.5021008093828 +-7.84494203257881,57.4944958453517 + + + + + +NF56 +#labelStyle + +-7.7690252963379,57.5430109367715 + + + + +NF57 + +Small Square NF57 Boundry Box +#Line2 + + +1 + +-7.85931271413329,57.5838518594112 +-7.87376687833183,57.6731953606676 +-7.70697311401649,57.6808526430238 +-7.69292387285924,57.5914829202024 +-7.85931271413329,57.5838518594112 + + + + + +NF57 +#labelStyle + +-7.78323652686428,57.6323783378304 + + + + +NF58 + +Small Square NF58 Boundry Box +#Line2 + + +1 + +-7.87376832816256,57.6732042957318 +-7.88830811211648,57.762544202274 +-7.72110702662368,57.7702278373073 +-7.70697452323329,57.6808615807168 +-7.87376832816256,57.6732042957318 + + + + + +NF58 +#labelStyle + +-7.79753186347665,57.7217422169323 + + + + +NF59 + +Small Square NF59 Boundry Box +#Line2 + + +1 + +-7.88830957054509,57.7625531369778 +-7.90293567775982,57.8518894312712 +-7.73532489445652,57.8595995485521 +-7.72110844420164,57.7702367746528 +-7.88830957054509,57.7625531369778 + + + + + +NF59 +#labelStyle + +-7.81191199651336,57.8111025571796 + + + + +NF60 + +Small Square NF60 Boundry Box +#Line2 + + +1 + +-7.59682856390054,56.9657373107451 +-7.61031348302338,57.0551308543129 +-7.4462273116124,57.0623930020002 +-7.43313195220487,56.9729748237447 +-7.59682856390054,56.9657373107451 + + + + + +NF60 +#labelStyle + +-7.52161779662795,57.014090983708 + + + + +NF61 + +Small Square NF61 Boundry Box +#Line2 + + +1 + +-7.61031483557373,57.0551397943937 +-7.62387842862609,57.1445299818289 +-7.45940042075234,57.151816884627 +-7.44622862509129,57.0624019445506 +-7.61031483557373,57.0551397943937 + + + + + +NF61 +#labelStyle + +-7.53494803079373,57.1035042301388 + + + + +NF62 + +Small Square NF62 Boundry Box +#Line2 + + +1 + +-7.62387978907622,57.1445389215733 +-7.63752269028625,57.2339257376811 +-7.47265059042882,57.2412375145253 +-7.45940174190633,57.1518258268529 +-7.62387978907622,57.1445389215733 + + + + + +NF62 +#labelStyle + +-7.54835614046644,57.192914172173 + + + + +NF63 + +Small Square NF63 Boundry Box +#Line2 + + +1 + +-7.63752405869994,57.2339346770876 +-7.65124690920704,57.3233181065003 +-7.48597844403662,57.3306548773059 +-7.47265191931993,57.2412464564251 +-7.63752405869994,57.2339346770876 + + + + + +NF63 +#labelStyle + +-7.56184275453548,57.282320795019 + + + + +NF64 + +Small Square NF64 Boundry Box +#Line2 + + +1 + +-7.65124828564875,57.3233270455673 +-7.66505173359728,57.4127070727417 +-7.49938461178735,57.4200689584151 +-7.48597978072753,57.3306638188784 +-7.65124828564875,57.3233270455673 + + + + + +NF64 +#labelStyle + +-7.57540850875524,57.3717240837164 + + + + +NF65 + +Small Square NF65 Boundry Box +#Line2 + + +1 + +-7.66505311813219,57.4127160114677 +-7.67893781876673,57.5020926206827 +-7.51286973080219,57.5094797431314 +-7.49938595634141,57.4200778996586 +-7.66505311813219,57.4127160114677 + + + + + +NF65 +#labelStyle + +-7.58905404583836,57.461124023133 + + + + +NF66 + +Small Square NF66 Boundry Box +#Line2 + + +1 + +-7.67893921146072,57.502101559066 +-7.69290582722285,57.5914747344195 +-7.52643444520626,57.5988872165637 +-7.51287108328346,57.5094886840446 +-7.67893921146072,57.502101559066 + + + + + +NF66 +#labelStyle + +-7.60278001555051,57.5505205979632 + + + + +NF67 + +Small Square NF67 Boundry Box +#Line2 + + +1 + +-7.69290722814254,57.5914836724587 +-7.70695642876926,57.6808533978654 +-7.54007940622443,57.6882913636484 +-7.52643580567952,57.598896157145 +-7.69290722814254,57.5914836724587 + + + + + +NF67 +#labelStyle + +-7.61658707480676,57.6399137927243 + + + + +NF68 + +Small Square NF68 Boundry Box +#Line2 + + +1 + +-7.706957837982,57.6808623355587 +-7.72109030060571,57.7702285947473 +-7.55380527227874,57.7776921691469 +-7.54008077475516,57.6883003038963 +-7.706957837982,57.6808623355587 + + + + + +NF68 +#labelStyle + +-7.63047588776946,57.7293035917547 + + + + +NF69 + +Small Square NF69 Boundry Box +#Line2 + + +1 + +-7.72109171817959,57.7702375320931 +-7.73530812742975,57.8596003086033 +-7.56761270908743,57.8670896176431 +-7.55380664893313,57.7777011090599 +-7.72109171817959,57.7702375320931 + + + + + +NF69 +#labelStyle + +-7.64444712594781,57.8186899792108 + + + + +NF70 + +Small Square NF70 Boundry Box +#Line2 + + +1 + +-7.433115577078,56.9729755368858 +-7.44621089749488,57.0623937175691 +-7.28204829369502,57.0694414469164 +-7.26934314288024,56.9799993497208 +-7.433115577078,56.9729755368858 + + + + + +NF70 +#labelStyle + +-7.35767192341542,57.021234500987 + + + + +NF71 + +Small Square NF71 Boundry Box +#Line2 + + +1 + +-7.44621221096985,57.0624026601197 +-7.45938396741612,57.1518176026356 +-7.29482891057126,57.1588893655027 +-7.2820495680372,57.0694503918647 +-7.44621221096985,57.0624026601197 + + + + + +NF71 +#labelStyle + +-7.37061109407432,57.1106720860709 + + + + +NF72 + +Small Square NF72 Boundry Box +#Line2 + + +1 + +-7.45938528856618,57.1518265448617 +-7.472634097648,57.2412382349853 +-7.30768432551262,57.2483341469366 +-7.29483019236319,57.1588983101379 +-7.45938528856618,57.1518265448617 + + + + + +NF72 +#labelStyle + +-7.38362588996327,57.200106483542 + + + + +NF73 + +Small Square NF73 Boundry Box +#Line2 + + +1 + +-7.47263542653515,57.2412471768854 +-7.4859619115835,57.3306556002292 +-7.32061514401241,57.3377757777824 +-7.30768561481452,57.2483430912574 +-7.47263542653515,57.2412471768854 + + + + + +NF73 +#labelStyle + +-7.39671692220939,57.2895376795706 + + + + +NF74 + +Small Square NF74 Boundry Box +#Line2 + + +1 + +-7.48596324827042,57.3306645418019 +-7.49936803943241,57.4200696838136 +-7.33362197819042,57.4272142444502 +-7.32061644088517,57.3377847217876 +-7.48596324827042,57.3306645418019 + + + + + +NF74 +#labelStyle + +-7.40988480861642,57.3789656601683 + + + + +NF75 + +Small Square NF75 Boundry Box +#Line2 + + +1 + +-7.49936938398247,57.4200786250573 +-7.51285311831411,57.5094804710171 +-7.34670544688319,57.5166495331928 +-7.33362328269558,57.4272231881382 +-7.49936938398247,57.4200786250573 + + + + + +NF75 +#labelStyle + +-7.42313017375552,57.4683904111857 + + + + +NF76 + +Small Square NF76 Boundry Box +#Line2 + + +1 + +-7.51285447079137,57.5094894119305 +-7.52641779235187,57.5988879469487 +-7.35986617573578,57.6060816301037 +-7.34670675908297,57.5166584765623 +-7.51285447079137,57.5094894119305 + + + + + +NF76 +#labelStyle + +-7.4364536490575,57.5578119183102 + + + + +NF77 + +Small Square NF77 Boundry Box +#Line2 + + +1 + +-7.52641915282109,57.5988968875302 +-7.5400627127687,57.6882920965449 +-7.37310479729505,57.6955105211148 +-7.35986749569309,57.6060905731533 +-7.52641915282109,57.5988968875302 + + + + + +NF77 +#labelStyle + +-7.44985587290669,57.6472301670633 + + + + +NF78 + +Small Square NF78 Boundry Box +#Line2 + + +1 + +-7.54006408129535,57.6883010367931 +-7.55378853798475,57.7776929045673 +-7.38642195110443,57.7849361919937 +-7.37310612507349,57.6955194638431 +-7.54006408129535,57.6883010367931 + + + + + +NF78 +#labelStyle + +-7.46333749073621,57.7366451427984 + + + + +NF79 + +Small Square NF79 Boundry Box +#Line2 + + +1 + +-7.55378991463505,57.7777018444805 +-7.56759593371637,57.8670903555998 +-7.39981828380032,57.8743586283417 +-7.38642328676831,57.7849451343993 +-7.55378991463505,57.7777018444805 + + + + + +NF79 +#labelStyle + +-7.47689915512493,57.8260568306978 + + + + +NF80 + +Small Square NF80 Boundry Box +#Line2 + + +1 + +-7.26932676028162,56.9800000414794 +-7.28203187204562,57.0694421410309 +-7.1177950804237,57.0762752449242 +-7.10548073062344,56.9868099485564 +-7.26932676028162,56.9800000414794 + + + + + +NF80 +#labelStyle + +-7.19365103324038,57.0281638340268 + + + + +NF81 + +Small Square NF81 Boundry Box +#Line2 + + +1 + +-7.28203314638388,57.0694510859794 +-7.29481244964239,57.1588900619847 +-7.13018260610556,57.1657464762699 +-7.1177963155696,57.0762841921982 +-7.28203314638388,57.0694510859794 + + + + + +NF81 +#labelStyle + +-7.20619853587715,57.1176250370057 + + + + +NF82 + +Small Square NF82 Boundry Box +#Line2 + + +1 + +-7.29481373143038,57.1588990066201 +-7.3076678250777,57.2483348457973 +-7.14264266084374,57.2552146826524 +-7.1301838484752,57.165755423242 +-7.29481373143038,57.1588990066201 + + + + + +NF82 +#labelStyle + +-7.21881940688008,57.2070831657899 + + + + +NF83 + +Small Square NF83 Boundry Box +#Line2 + + +1 + +-7.30766911437564,57.2483437901184 +-7.32059860384307,57.3377764790336 +-7.15517583214124,57.3446798515625 +-7.14264391049556,57.2552236293214 +-7.30766911437564,57.2483437901184 + + + + + +NF83 +#labelStyle + +-7.23151423952467,57.2965382074847 + + + + +NF84 + +Small Square NF84 Boundry Box +#Line2 + + +1 + +-7.32059990071184,57.3377854230389 +-7.33360539805647,57.4272149481033 +-7.16778271393578,57.4341419703466 +-7.15517708913432,57.3446887979271 +-7.32059990071184,57.3377854230389 + + + + + +NF84 +#labelStyle + +-7.24428363357321,57.3859901490467 + + + + +NF85 + +Small Square NF85 Boundry Box +#Line2 + + +1 + +-7.33360670255762,57.4272238917915 +-7.34668882655262,57.5166502392594 +-7.18046390668746,57.523601026204 +-7.16778397832982,57.4341509164055 +-7.33360670255762,57.4272238917915 + + + + + +NF85 +#labelStyle + +-7.25712819536309,57.4754389772819 + + + + +NF86 + +Small Square NF86 Boundry Box +#Line2 + + +1 + +-7.34669013874837,57.5166591826291 +-7.35984951497472,57.6060823385956 +-7.19322001746803,57.6130570061852 +-7.18046517854283,57.523609971956 +-7.34669013874837,57.5166591826291 + + + + + +NF86 +#labelStyle + +-7.27004853789647,57.5648846788432 + + + + +NF87 + +Small Square NF87 Boundry Box +#Line2 + + +1 + +-7.35985083492797,57.6060912816455 +-7.37308809586773,57.6955112320439 +-7.20605166005153,57.7025098971891 +-7.19322129684579,57.6130659516289 +-7.35985083492797,57.6060912816455 + + + + + +NF87 +#labelStyle + +-7.28304528093163,57.6543272402281 + + + + +NF88 + +Small Square NF88 Boundry Box +#Line2 + + +1 + +-7.3730894236421,57.6955201747725 +-7.38640520877324,57.7849369053721 +-7.21895945500644,57.7919596859615 +-7.20605294701339,57.7025188423234 +-7.3730894236421,57.6955201747725 + + + + + +NF88 +#labelStyle + +-7.29611905107555,57.7437666477767 + + + + +NF89 + +Small Square NF89 Boundry Box +#Line2 + + +1 + +-7.38640654443302,57.7849458477779 +-7.3998015003257,57.8743593441813 +-7.23194402978934,57.8814063590919 +-7.21896074961479,57.7919686307848 +-7.38640654443302,57.7849458477779 + + + + + +NF89 +#labelStyle + +-7.30927048187825,57.8332028876689 + + + + +NF90 + +Small Square NF90 Boundry Box +#Line2 + + +1 + +-7.10546434077611,56.9868106189122 +-7.11777865146723,57.0762759175638 +-6.95346992303199,57.0828941950236 +-6.94154694905529,56.9934064207287 +-7.10546434077611,56.9868106189122 + + + + + +NF90 +#labelStyle + +-7.02955736533159,57.0348787795091 + + + + +NF91 + +Small Square NF91 Boundry Box +#Line2 + + +1 + +-7.11777988660921,57.076284864838 +-7.13016613781062,57.1657471512046 +-6.96546377639016,57.1723880144363 +-6.95347111892382,57.082903144551 +-7.11777988660921,57.076284864838 + + + + + +NF91 +#labelStyle + +-7.04171261309567,57.1243628781179 + + + + +NF92 + +Small Square NF92 Boundry Box +#Line2 + + +1 + +-7.13016738017632,57.1657560981769 +-7.1426261529831,57.2552153598932 +-6.97752788344779,57.2618789176725 +-6.96546497927909,57.1723969636726 +-7.13016738017632,57.1657560981769 + + + + + +NF92 +#labelStyle + +-7.05393896596237,57.2138440125689 + + + + +NF93 + +Small Square NF93 Boundry Box +#Line2 + + +1 + +-7.14262740263095,57.2552243065624 +-7.15515928448588,57.3446805311206 +-6.98966281363124,57.3513668931222 +-6.97752909339046,57.2618878666166 +-7.14262740263095,57.2552243065624 + + + + + +NF93 +#labelStyle + +-7.06623699926873,57.3033221708754 + + + + +NF94 + +Small Square NF94 Boundry Box +#Line2 + + +1 + +-7.15516054147496,57.3446894774854 +-7.16776612625485,57.4341426522331 +-7.00186914260836,57.4408519290407 +-6.98966403068491,57.351375841773 +-7.15516054147496,57.3446894774854 + + + + + +NF94 +#labelStyle + +-7.07860729464728,57.3927973409116 + + + + +NF95 + +Small Square NF95 Boundry Box +#Line2 + + +1 + +-7.16776739064487,57.4341515982923 +-7.18044727874826,57.5236017104304 +-7.01414745237367,57.530334013546 +-7.00187036683091,57.4408608773969 +-7.16776739064487,57.4341515982923 + + + + + +NF95 +#labelStyle + +-7.09105044011188,57.4822695104112 + + + + +NF96 + +Small Square NF96 Boundry Box +#Line2 + + +1 + +-7.1804485505996,57.5236106561826 +-7.19320334903602,57.6130576927627 +-7.02649833133494,57.6198131346172 +-7.01414868382361,57.5303429616065 +-7.1804485505996,57.5236106561826 + + + + + +NF96 +#labelStyle + +-7.10356703014486,57.5717386669647 + + + + +NF97 + +Small Square NF97 Boundry Box +#Line2 + + +1 + +-7.19320462840972,57.6130666382067 +-7.20603495089028,57.7025105861295 +-7.03892237440125,57.7092892800924 +-7.02649957007144,57.6198220823808 +-7.19320462840972,57.6130666382067 + + + + + +NF97 +#labelStyle + +-7.11615766578567,57.6612047980177 + + + + +NF98 + +Small Square NF98 Boundry Box +#Line2 + + +1 + +-7.20603623784805,57.7025195312639 +-7.21894270487761,57.7919603772762 +-7.05142018307244,57.7987624376659 +-7.03892362048413,57.7092982275577 +-7.20603623784805,57.7025195312639 + + + + + +NF98 +#labelStyle + +-7.12882295472094,57.7506678908684 + + + + +NF99 + +Small Square NF99 Boundry Box +#Line2 + + +1 + +-7.21894399948185,57.7919693220997 +-7.23192723845267,57.8814070527926 +-7.06399236553006,57.8882325948871 +-7.05142143656217,57.7987713848319 +-7.21894399948185,57.7919693220997 + + + + + +NF99 +#labelStyle + +-7.14156351137603,57.8401279326654 + + + + + +NG + +Large Square NG Boundry Box +#Line1 + + +1 + +-6.94153055218293,56.9934070696621 +-7.06397556657354,57.8882332664278 +-5.38075500603175,57.9442701592674 +-5.29877939116023,57.0475546781052 +-6.94153055218293,56.9934070696621 + + + + + +NG00 + +Small Square NG00 Boundry Box +#Line2 + + +1 + +-6.94153055218293,56.9934070696621 +-6.9534534869939,57.0828948461686 +-6.78907507901003,57.0892981023723 +-6.77754403796971,56.9997885728285 +-6.94153055218293,56.9934070696621 + + + + + +NG00 +#labelStyle + +-6.86539316522507,57.0413791402399 + + + + +NG01 + +Small Square NG01 Boundry Box +#Line2 + + +1 + +-6.9534546828818,57.0829037956962 +-6.96544730095637,57.1723886678038 +-6.8006746968014,57.1788137837113 +-6.78907623559177,57.0893070540806 +-6.9534546828818,57.0829037956962 + + + + + +NG01 +#labelStyle + +-6.87715558901591,57.1308854107508 + + + + +NG02 + +Small Square NG02 Boundry Box +#Line2 + + +1 + +-6.96544850384135,57.1723976170403 +-6.97751136839045,57.2618795732732 +-6.812342286778,57.2683266542433 +-6.80067586015299,57.1788227351391 +-6.96544850384135,57.1723976170403 + + + + + +NG02 +#labelStyle + +-6.88898684843502,57.2203888237446 + + + + +NG03 + +Small Square NG03 Boundry Box +#Line2 + + +1 + +-6.97751257832915,57.2618885222175 +-6.9896462587207,57.351367550967 +-6.82407840020574,57.3578367032298 +-6.81234345695428,57.2683356053895 +-6.97751257832915,57.2618885222175 + + + + + +NG03 +#labelStyle + +-6.90088750079652,57.3098893681149 + + + + +NG04 + +Small Square NG04 Boundry Box +#Line2 + + +1 + +-6.98964747577037,57.351376499618 +-7.00185254761313,57.4408525891404 +-6.83588359439742,57.4473439198072 +-6.82407957726213,57.3578456540933 +-6.98964747577037,57.351376499618 + + + + + +NG04 +#labelStyle + +-6.91285810951744,57.3993870326264 + + + + +NG05 + +Small Square NG05 Boundry Box +#Line2 + + +1 + +-7.00185377183166,57.4408615374968 +-7.01413081706041,57.5303346759116 +-6.84775843279534,57.5368482929842 +-6.83588477838995,57.4473528703869 +-7.00185377183166,57.4408615374968 + + + + + +NG05 +#labelStyle + +-6.92489924420092,57.4888818059125 + + + + +NG06 + +Small Square NG06 Boundry Box +#Line2 + + +1 + +-7.01413204850631,57.5303436239723 +-7.02648165546844,57.6198137992598 +-6.85970348505529,57.6263498116403 +-6.84775962378067,57.536857243279 +-7.01413204850631,57.5303436239723 + + + + + +NG06 +#labelStyle + +-6.93701148072083,57.5783736764733 + + + + +NG07 + +Small Square NG07 Boundry Box +#Line2 + + +1 + +-7.02648289420087,57.6198227470235 +-7.0389056577444,57.709289947023 +-6.87171932713193,57.7158484645236 +-6.85970468309071,57.6263587616491 +-7.02648289420087,57.6198227470235 + + + + + +NG07 +#labelStyle + +-6.94919540130773,57.6678626326739 + + + + +NG08 + +Small Square NG08 Boundry Box +#Line2 + + +1 + +-7.03890690382319,57.7092988944886 +-7.05140342538623,57.798763106896 +-6.8838065413655,57.8053442402488 +-6.87172053227534,57.7158574142452 +-7.03890690382319,57.7092988944886 + + + + + +NG08 +#labelStyle + +-6.96145159463633,57.7573486627422 + + + + +NG09 + +Small Square NG09 Boundry Box +#Line2 + + +1 + +-7.05140467887184,57.7987720540621 +-7.06397556657354,57.8882332664278 +-6.89596571657007,57.8948371272953 +-6.88380775367546,57.8053531896821 +-7.05140467887184,57.7987720540621 + + + + + +NG09 +#labelStyle + +-6.9737806559143,57.8468317547666 + + + + +NG10 + +Small Square NG10 Boundry Box +#Line2 + + +1 + +-6.7775276342966,56.9997892003204 +-6.78905863611636,57.0892987320034 +-6.62461281191707,57.0954867783067 +-6.61347424314868,57.005956217581 +-6.7775276342966,56.9997892003204 + + + + + +NG10 +#labelStyle + +-6.70116068457855,57.0476647251716 + + + + +NG11 + +Small Square NG11 Boundry Box +#Line2 + + +1 + +-6.78905979269417,57.089307683712 +-6.80065821445661,57.1788144154924 +-6.6358176488671,57.1850235940284 +-6.62461392913448,57.0954957321234 +-6.78905979269417,57.089307683712 + + + + + +NG11 +#labelStyle + +-6.71252973312858,57.1371924424386 + + + + +NG12 + +Small Square NG12 Boundry Box +#Line2 + + +1 + +-6.80065937780424,57.1788233669203 +-6.81232576475364,57.2683272881845 +-6.64708817052282,57.2745577008804 +-6.63581877262652,57.1850325475747 +-6.80065937780424,57.1788233669203 + + + + + +NG12 +#labelStyle + +-6.72396534181181,57.2267174054178 + + + + +NG13 + +Small Square NG13 Boundry Box +#Line2 + + +1 + +-6.81232693492593,57.2683362393309 +-6.82406183827152,57.3578373393417 +-6.65842490990838,57.3640890889683 +-6.64708930087727,57.2745666541553 +-6.81232693492593,57.2683362393309 + + + + + +NG13 +#labelStyle + +-6.73546804983758,57.3162396038563 + + + + +NG14 + +Small Square NG14 Boundry Box +#Line2 + + +1 + +-6.82406301532391,57.3578462902054 +-6.83586699232124,57.4473445581003 +-6.66982840589894,57.4536177482816 +-6.65842604691146,57.3640980419709 +-6.82406301532391,57.3578462902054 + + + + + +NG14 +#labelStyle + +-6.74703840232414,57.4057590273811 + + + + +NG15 + +Small Square NG15 Boundry Box +#Line2 + + +1 + +-6.83586817630975,57.4473535086801 +-6.84774179034322,57.5368489334691 +-6.68129920330061,57.5431436686914 +-6.66982954960481,57.4536267010107 +-6.83586817630975,57.4473535086801 + + + + + +NG15 +#labelStyle + +-6.75867695037935,57.4952756654974 + + + + +NG16 + +Small Square NG16 Boundry Box +#Line2 + + +1 + +-6.84774298132451,57.5368578837641 +-6.85968680199139,57.6263504543277 +-6.69283785293185,57.6326668399491 +-6.68130035376407,57.5431526211462 +-6.84774298132451,57.5368578837641 + + + + + +NG16 +#labelStyle + +-6.77038425118261,57.5847895075868 + + + + +NG17 + +Small Square NG17 Boundry Box +#Line2 + + +1 + +-6.85968800002273,57.6263594043367 +-6.87170260321849,57.7158491094243 +-6.7044449117061,57.722187251684 +-6.69283901020828,57.6326757921284 +-6.85968800002273,57.6263594043367 + + + + + +NG17 +#labelStyle + +-6.78216086806823,57.6743005429054 + + + + +NG18 + +Small Square NG18 Boundry Box +#Line2 + + +1 + +-6.87170380835781,57.7158580591462 +-6.88378977636285,57.8053448873738 +-6.71612094271584,57.8117048934019 +-6.7044460758515,57.7221962035868 +-6.87170380835781,57.7158580591462 + + + + + +NG18 +#labelStyle + +-6.79400737061013,57.7638087605814 + + + + +NG19 + +Small Square NG19 Boundry Box +#Line2 + + +1 + +-6.88379098866869,57.8053538368073 +-6.8959489102366,57.8948377766555 +-6.72786651531798,57.901219754483 +-6.71612211378682,57.8117138450272 +-6.88379098866869,57.8053538368073 + + + + + +NG19 +#labelStyle + +-6.80592433470793,57.853314149614 + + + + +NG20 + +Small Square NG20 Boundry Box +#Line2 + + +1 + +-6.6134578328997,57.005956823613 +-6.62459636239449,57.0954873864055 +-6.4600853911926,57.1014600403632 +-6.44933981617584,57.0119091738665 +-6.6134578328997,57.005956823613 + + + + + +NG20 +#labelStyle + +-6.53686218098453,57.0537353494234 + + + + +NG21 + +Small Square NG21 Boundry Box +#Line2 + + +1 + +-6.62459747960795,57.0954963402224 +-6.63580115983976,57.1850242042043 +-6.47089492007519,57.1910172615655 +-6.46008646899324,57.1014689962155 +-6.62459747960795,57.0954963402224 + + + + + +NG21 +#labelStyle + +-6.54783732093961,57.1432837869268 + + + + +NG22 + +Small Square NG22 Boundry Box +#Line2 + + +1 + +-6.63580228359522,57.1850331577508 +-6.64707164176169,57.2745583131433 +-6.48176784041198,57.2805718723894 +-6.47089600418944,57.1910262171573 +-6.63580228359522,57.1850331577508 + + + + + +NG22 +#labelStyle + +-6.55887673970357,57.2328295699464 + + + + +NG23 + +Small Square NG23 Boundry Box +#Line2 + + +1 + +-6.64707277211215,57.2745672664184 +-6.6584083411826,57.3640897033283 +-6.49270466690664,57.3701238637567 +-6.48176893089101,57.2805808277197 +-6.64707277211215,57.2745672664184 + + + + + +NG23 +#labelStyle + +-6.56998095830157,57.322372689055 + + + + +NG24 + +Small Square NG24 Boundry Box +#Line2 + + +1 + +-6.65840947818166,57.3640986563311 +-6.66981179697578,57.4536183647489 +-6.50370591991664,57.4596732264818 +-6.49270576380221,57.3701328188246 +-6.65840947818166,57.3640986563311 + + + + + +NG24 +#labelStyle + +-6.58115050347247,57.4119131347142 + + + + +NG25 + +Small Square NG25 Boundry Box +#Line2 + + +1 + +-6.66981294067762,57.4536273174783 +-6.68128255394549,57.5431442872763 +-6.5147721255306,57.5492199512698 +-6.50370702328107,57.4596821812863 +-6.66981294067762,57.4536273174783 + + + + + +NG25 +#labelStyle + +-6.59238590774683,57.5014508972729 + + + + +NG26 + +Small Square NG26 Boundry Box +#Line2 + + +1 + +-6.6812837044049,57.5431532397313 +-6.6928211629083,57.6326674606619 +-6.52590381564699,57.6387640287151 +-6.51477323541681,57.5492289058101 +-6.6812837044049,57.5431532397313 + + + + + +NG26 +#labelStyle + +-6.60368770952627,57.5909859669654 + + + + +NG27 + +Small Square NG27 Boundry Box +#Line2 + + +1 + +-6.69282232018066,57.6326764128415 +-6.70442818077575,57.7221878745353 +-6.53710152805402,57.7283054492995 +-6.52590493210844,57.6387729829902 +-6.69282232018066,57.6326764128415 + + + + + +NG27 +#labelStyle + +-6.61505645316413,57.68051833391 + + + + +NG28 + +Small Square NG28 Boundry Box +#Line2 + + +1 + +-6.70442934491705,57.7221968264383 +-6.71610417063837,57.8117055184022 +-6.54836580651094,57.8178442033902 +-6.53710265114478,57.7283144033083 +-6.70442934491705,57.7221968264383 + + + + + +NG28 +#labelStyle + +-6.62649268904744,57.7700479881065 + + + + +NG29 + +Small Square NG29 Boundry Box +#Line2 + + +1 + +-6.71610534170523,57.8117144700277 +-6.72784970185114,57.9012203816428 +-6.5596972008307,57.9073802812386 +-6.5483669362857,57.8178531571319 +-6.71610534170523,57.8117144700277 + + + + + +NG29 +#labelStyle + +-6.63799697368028,57.8595749194353 + + + + +NG30 + +Small Square NG30 Boundry Box +#Line2 + + +1 + +-6.44932339957642,57.0119097584208 +-6.46006893526832,57.1014606269117 +-6.29549509196609,57.1072177122973 +-6.28514301424869,57.0176472667402 +-6.44932339957642,57.0119097584208 + + + + + +NG30 +#labelStyle + +-6.37249991778193,57.0595908343021 + + + + +NG31 + +Small Square NG31 Boundry Box +#Line2 + + +1 + +-6.46007001306502,57.1014695827642 +-6.47087842459435,57.1910178501181 +-6.30590880368101,57.1967946087655 +-6.29549613029935,57.1072266701125 +-6.46007001306502,57.1014695827642 + + + + + +NG31 +#labelStyle + +-6.38308063377939,57.1491592641933 + + + + +NG32 + +Small Square NG32 Boundry Box +#Line2 + + +1 + +-6.47087950870463,57.1910268057101 +-6.48175130514496,57.2805724629557 +-6.31638360802125,57.2863689898868 +-6.30590984809889,57.1968035663295 +-6.47087950870463,57.1910268057101 + + + + + +NG32 +#labelStyle + +-6.39372334162483,57.2387251359657 + + + + +NG33 + +Small Square NG33 Boundry Box +#Line2 + + +1 + +-6.48175239562001,57.2805814182862 +-6.492688091622,57.3701244563465 +-6.3269200012939,57.3759408473711 +-6.31638465857312,57.2863779471988 +-6.48175239562001,57.2805814182862 + + + + + +NG33 +#labelStyle + +-6.40442854408247,57.3282884409899 + + + + +NG34 + +Small Square NG34 Boundry Box +#Line2 + + +1 + +-6.49268918851356,57.3701334114146 +-6.50368930438108,57.4596738211049 +-6.33751848526139,57.4655101728294 +-6.32692105802967,57.3759498044303 +-6.49268918851356,57.3701334114146 + + + + + +NG34 +#labelStyle + +-6.41519674943368,57.417849170534 + + + + +NG35 + +Small Square NG35 Boundry Box +#Line2 + + +1 + +-6.50369040774148,57.4596827759096 +-6.51475546950896,57.5492205479362 +-6.34817956721619,57.5550769577724 +-6.3375195482315,57.4655191296351 +-6.50369040774148,57.4596827759096 + + + + + +NG35 +#labelStyle + +-6.42602847155242,57.5074073157622 + + + + +NG36 + +Small Square NG36 Boundry Box +#Line2 + + +1 + +-6.5147565793911,57.5492295024766 +-6.52588711890219,57.6387646274347 +-6.35890376005681,57.6446411936085 +-6.34818063647166,57.5550859143236 +-6.5147565793911,57.5492295024766 + + + + + +NG36 +#labelStyle + +-6.43692422998185,57.5969628677329 + + + + +NG37 + +Small Square NG37 Boundry Box +#Line2 + + +1 + +-6.52588823535955,57.63877358171 +-6.53708479034706,57.7283060500824 +-6.36969158236495,57.7342028716424 +-6.35890483564919,57.6446501499043 +-6.52588823535955,57.63877358171 + + + + + +NG37 +#labelStyle + +-6.44788455001239,57.6865158173974 + + + + +NG38 + +Small Square NG38 Boundry Box +#Line2 + + +1 + +-6.53708591343372,57.7283150040915 +-6.54834902760092,57.8178448062466 +-6.38054355848407,57.8237619830736 +-6.36969266434641,57.734211827682 +-6.53708591343372,57.7283150040915 + + + + + +NG38 +#labelStyle + +-6.45890996276084,57.7760661555981 + + + + +NG39 + +Small Square NG39 Boundry Box +#Line2 + + +1 + +-6.54835015737154,57.8178537599886 +-6.55968038047471,57.9073808861788 +-6.3914602185991,57.9133185189947 +-6.38054464690731,57.8237709388561 +-6.54835015737154,57.8178537599886 + + + + + +NG39 +#labelStyle + +-6.470001005251,57.8656138730665 + + + + +NG40 + +Small Square NG40 Boundry Box +#Line2 + + +1 + +-6.28512659152483,57.0176478297996 +-6.29547862986792,57.1072182772782 +-6.13084419486552,57.1127596241041 +-6.12088609998958,57.0231703274511 +-6.28512659152483,57.0176478297996 + + + + + +NG40 +#labelStyle + +-6.20807616386645,57.0652310073212 + + + + +NG41 + +Small Square NG41 Boundry Box +#Line2 + + +1 + +-6.29547966819722,57.1072272350935 +-6.30589230197626,57.1967951756774 +-6.14086159851316,57.2023554643558 +-6.13084519368256,57.112768583809 +-6.29547966819722,57.1072272350935 + + + + + +NG41 +#labelStyle + +-6.21826195861057,57.1548187004682 + + + + +NG42 + +Small Square NG42 Boundry Box +#Line2 + + +1 + +-6.30589334639017,57.1968041332416 +-6.31636706647978,57.2863695587389 +-6.15093779057575,57.2919488808193 +-6.14086260318532,57.2023644238188 +-6.30589334639017,57.1968041332416 + + + + + +NG42 +#labelStyle + +-6.22850745279914,57.244403928409 + + + + +NG43 + +Small Square NG43 Boundry Box +#Line2 + + +1 + +-6.31636811702766,57.2863785160512 +-6.32690341968372,57.3759414181729 +-6.16107324889026,57.3815398659643 +-6.15093880115056,57.2919578400395 +-6.31636811702766,57.2863785160512 + + + + + +NG43 +#labelStyle + +-6.23881313086123,57.333986683284 + + + + +NG44 + +Small Square NG44 Boundry Box +#Line2 + + +1 + +-6.32690447641546,57.3759503752324 +-6.33750186334862,57.4655107455905 +-6.17126845654934,57.47112841217 +-6.16107426541576,57.381548824941 +-6.32690447641546,57.3759503752324 + + + + + +NG44 +#labelStyle + +-6.2491794825453,57.4235669571395 + + + + +NG45 + +Small Square NG45 Boundry Box +#Line2 + + +1 + +-6.33750292631469,57.4655197023963 +-6.34816290476509,57.5550775325022 +-6.18152390197337,57.5607145117236 +-6.17126947907411,57.4711373709024 +-6.33750292631469,57.4655197023963 + + + + + +NG45 +#labelStyle + +-6.259607002992,57.5131447419263 + + + + +NG46 + +Small Square NG46 Boundry Box +#Line2 + + +1 + +-6.34816397401649,57.5550864890536 +-6.35888705682973,57.6446417703167 +-6.19184007898368,57.6502981568185 +-6.18152493054652,57.560723470211 +-6.34816397401649,57.5550864890536 + + + + + +NG46 +#labelStyle + +-6.27009619280814,57.6027200294982 + + + + +NG47 + +Small Square NG47 Boundry Box +#Line2 + + +1 + +-6.35888813241802,57.6446507266127 +-6.36967483812232,57.7342034503387 +-6.20221748687702,57.7398793395529 +-6.19184111365487,57.6503071150599 +-6.35888813241802,57.6446507266127 + + + + + +NG47 +#labelStyle + +-6.28064755814195,57.6922928116105 + + + + +NG48 + +Small Square NG48 Boundry Box +#Line2 + + +1 + +-6.36967592009966,57.7342124063785 +-6.38052677298436,57.8237625637679 +-6.21265663050122,57.8294580519289 +-6.20221852769645,57.7398882975478 +-6.36967592009966,57.7342124063785 + + + + + +NG48 +#labelStyle + +-6.29126161075948,57.7818630799181 + + + + +NG49 + +Small Square NG49 Boundry Box +#Line2 + + +1 + +-6.38052786140347,57.8237715195506 +-6.39144339159883,57.9133191016967 +-6.22315802033211,57.91903428585 +-6.21265767751964,57.8294670096764 +-6.38052786140347,57.8237715195506 + + + + + +NG49 +#labelStyle + +-6.30193886812237,57.8714308259745 + + + + +NG50 + +Small Square NG50 Boundry Box +#Line2 + + +1 + +-6.1208696713678,57.023170868999 +-6.13082772682178,57.1127601675006 +-5.96613498582449,57.1180856120357 +-5.95657134125538,57.0284781934603 +-6.1208696713678,57.023170868999 + + + + + +NG50 +#labelStyle + +-6.04359319349969,57.0706557022199 + + + + +NG51 + +Small Square NG51 Boundry Box +#Line2 + + +1 + +-6.13082872563486,57.1127691272058 +-6.14084509081467,57.2023560096102 +-5.97575560877821,57.2076996633673 +-5.9661359450783,57.1180945735574 +-6.13082872563486,57.1127691272058 + + + + + +NG51 +#labelStyle + +-6.05338358783463,57.1602619282526 + + + + +NG52 + +Small Square NG52 Boundry Box +#Line2 + + +1 + +-6.14084609548286,57.2023649690733 +-6.15092124299184,57.2919494279404 +-5.985432710752,57.2973113789835 +-5.97575657365712,57.2077086246557 +-6.14084609548286,57.2023649690733 + + + + + +NG52 +#labelStyle + +-6.06323138396303,57.2498657785265 + + + + +NG53 + +Small Square NG53 Boundry Box +#Line2 + + +1 + +-6.15092225356264,57.2919583871607 +-6.16105666118838,57.3815404149612 +-5.99516675104183,57.3869207520858 +-5.98543368130169,57.297320340038 +-6.15092225356264,57.2919583871607 + + + + + +NG53 +#labelStyle + +-6.07313704790716,57.3394672459234 + + + + +NG54 + +Small Square NG54 Boundry Box +#Line2 + + +1 + +-6.16105767770986,57.3815493739381 +-6.17125182849509,57.4711289630519 +-6.00495819399855,57.4765277757928 +-5.9951677273085,57.3869297129058 +-6.16105767770986,57.3815493739381 + + + + + +NG54 +#labelStyle + +-6.0831010508098,57.4290663232396 + + + + +NG55 + +Small Square NG55 Boundry Box +#Line2 + + +1 + +-6.17125285101582,57.4711379217844 +-6.18150723333046,57.5607150644995 +-6.01480750909719,57.5661324431391 +-6.00495917602887,57.4765367363775 +-6.17125285101582,57.4711379217844 + + + + + +NG55 +#labelStyle + +-6.09312386900429,57.5186630031837 + + + + +NG56 + +Small Square NG56 Boundry Box +#Line2 + + +1 + +-6.18150826189954,57.5607240229871 +-6.1918233695139,57.6502987114978 +-6.0247151710075,57.6557347470739 +-6.01480849693838,57.5661414034878 +-6.18150826189954,57.5607240229871 + + + + + +NG56 +#labelStyle + +-6.1032059840859,57.6082572783758 + + + + +NG57 + +Small Square NG57 Boundry Box +#Line2 + + +1 + +-6.19182440418099,57.6503076697395 +-6.20220073634023,57.7398798961451 +-6.03468165966557,57.7453346804595 +-6.02471616470728,57.6557437071858 +-6.19182440418099,57.6503076697395 + + + + + +NG57 +#labelStyle + +-6.11334788298421,57.6978491413455 + + + + +NG58 + +Small Square NG58 Boundry Box +#Line2 + + +1 + +-6.20220177715554,57.7398888541402 +-6.21263983865532,57.8294586104433 +-6.04470746034668,57.8349322360701 +-6.0346826592722,57.745343640334 +-6.20220177715554,57.7398888541402 + + + + + +NG58 +#labelStyle + +-6.1235500580368,57.7874385845311 + + + + +NG59 + +Small Square NG59 Boundry Box +#Line2 + + +1 + +-6.2126408856696,57.8294675681909 +-6.22314118693305,57.9190348462961 +-6.05479306373935,57.9245274065903 +-6.04470846590895,57.8349411957065 +-6.2126408856696,57.8294675681909 + + + + + +NG59 +#labelStyle + +-6.13381300706414,57.8770256002777 + + + + +NG60 + +Small Square NG60 Boundry Box +#Line2 + + +1 + +-5.95655490696273,57.0284787134808 +-5.96611851206404,57.1180861338319 +-5.80136975588824,57.1231955186201 +-5.79220101094607,57.033570708459 +-5.95655490696273,57.0284787134808 + + + + + +NG60 +#labelStyle + +-5.87905328611695,57.0758647589812 + + + + +NG61 + +Small Square NG61 Boundry Box +#Line2 + + +1 + +-5.96611947131389,57.1180950953538 +-5.97573909531666,57.2077001869479 +-5.81059314386402,57.2128270471522 +-5.80137067553364,57.1232044818853 +-5.96611947131389,57.1180950953538 + + + + + +NG61 +#labelStyle + +-5.8884478190972,57.1654887863373 + + + + +NG62 + +Small Square NG62 Boundry Box +#Line2 + + +1 + +-5.9757400601916,57.2077091482365 +-5.98541615735817,57.2973119043572 +-5.81987069647863,57.3024563245441 +-5.81059406890401,57.2128360101926 +-5.9757400601916,57.2077091482365 + + + + + +NG62 +#labelStyle + +-5.89789745116872,57.2551105239041 + + + + +NG63 + +Small Square NG63 Boundry Box +#Line2 + + +1 + +-5.98541712790386,57.297320865412 +-5.99515015748266,57.3869212792613 +-5.82920285441886,57.3920833447 +-5.81987162695705,57.302465287359 +-5.98541712790386,57.297320865412 + + + + + +NG63 +#labelStyle + +-5.90740262987801,57.3447299652768 + + + + +NG64 + +Small Square NG64 Boundry Box +#Line2 + + +1 + +-5.9951511337453,57.3869302400814 +-6.00494156003912,57.4765283047789 +-5.83859006322439,57.4817081014494 +-5.82920379038001,57.392092307289 +-5.9951511337453,57.3869302400814 + + + + + +NG64 +#labelStyle + +-5.91696380769201,57.4343471039729 + + + + +NG65 + +Small Square NG65 Boundry Box +#Line2 + + +1 + +-6.00494254206539,57.4765372653637 +-6.01479083450068,57.5661329739445 +-5.84803277335443,57.571330588545 +-5.83859100471306,57.4817170638116 +-6.00494254206539,57.4765372653637 + + + + + +NG65 +#labelStyle + +-5.92658144206554,57.5239619334299 + + + + +NG66 + +Small Square NG66 Boundry Box +#Line2 + + +1 + +-6.01479182233779,57.5661419342934 +-6.02469845553516,57.6557352797076 +-5.85753144025548,57.6609507996623 +-5.84803372041593,57.57133955068 +-6.01479182233779,57.5661419342934 + + + + + +NG66 +#labelStyle + +-5.9362559955098,57.6135744470049 + + + + +NG67 + +Small Square NG67 Boundry Box +#Line2 + + +1 + +-6.02469944923084,57.6557442398197 +-6.03466490307671,57.7453352149305 +-5.86708652443013,57.7505687283979 +-5.8575323929356,57.6609597615694 +-6.02469944923084,57.6557442398197 + + + + + +NG67 +#labelStyle + +-5.94598793566212,57.7031846379726 + + + + +NG68 + +Small Square NG68 Boundry Box +#Line2 + + +1 + +-6.03466590267922,57.7453441748052 +-6.04469066239865,57.8349327723875 +-5.87669849150707,57.8401843682683 +-5.86708748277518,57.7505776900765 +-6.03466590267922,57.7453441748052 + + + + + +NG68 +#labelStyle + +-5.95577773535673,57.7927924995245 + + + + +NG69 + +Small Square NG69 Boundry Box +#Line2 + + +1 + +-6.04469166795679,57.8349417320241 +-6.05477622418755,57.9245279447633 +-5.88636781231224,57.9297977127085 +-5.87669945556386,57.8401933297176 +-6.04469166795679,57.8349417320241 + + + + + +NG69 +#labelStyle + +-5.96562587269679,57.8823980247671 + + + + +NG70 + +Small Square NG70 Boundry Box +#Line2 + + +1 + +-5.79218457121009,57.0335712069368 +-5.80135327664042,57.1231960188005 +-5.63655080101844,57.1280891926778 +-5.62777738681206,57.0384477223854 +-5.79218457121009,57.0335712069368 + + + + + +NG70 +#labelStyle + +-5.7144587261339,57.0808580238496 + + + + +NG71 + +Small Square NG71 Boundry Box +#Line2 + + +1 + +-5.80135419628187,57.1232049820659 +-5.8105766248706,57.2128275490436 +-5.64537651814195,57.2177374634019 +-5.63655168101208,57.1280981576132 +-5.80135419628187,57.1232049820659 + + + + + +NG71 +#labelStyle + +-5.7234569550921,57.1704991198201 + + + + +NG72 + +Small Square NG72 Boundry Box +#Line2 + + +1 + +-5.81057754990661,57.2128365120841 +-5.81985413750794,57.3024568281547 +-5.654254080736,57.3073835640511 +-5.6453774032992,57.2177464281205 +-5.81057754990661,57.2128365120841 + + + + + +NG72 +#labelStyle + +-5.73250797558558,57.2601380084812 + + + + +NG73 + +Small Square NG73 Boundry Box +#Line2 + + +1 + +-5.81985506798234,57.3024657909699 +-5.82918625523734,57.3920838500383 +-5.66318391081261,57.3970274892041 +-5.65425497109882,57.3073925285525 +-5.81985506798234,57.3024657909699 + + + + + +NG73 +#labelStyle + +-5.74161221661872,57.3497746841131 + + + + +NG74 + +Small Square NG74 Boundry Box +#Line2 + + +1 + +-5.82918719119445,57.3920928126274 +-5.83857342359661,57.4817086085237 +-5.67216643503368,57.4866692333718 +-5.66318480642344,57.3970364534877 +-5.82918719119445,57.3920928126274 + + + + + +NG74 +#labelStyle + +-5.75077011191523,57.4394091409255 + + + + +NG75 + +Small Square NG75 Boundry Box +#Line2 + + +1 + +-5.83857436508123,57.4817175708861 +-5.84801609304306,57.5713310973638 +-5.6812020847749,57.576308790996 +-5.67216733593542,57.486678197437 +-5.83857436508123,57.4817175708861 + + + + + +NG75 +#labelStyle + +-5.75998209998281,57.5290413730559 + + + + +NG76 + +Small Square NG76 Boundry Box +#Line2 + + +1 + +-5.84801704010048,57.571340059499 +-5.85751471902126,57.6609513102343 +-5.69029129619067,57.6659461564488 +-5.68120299101092,57.5763177548423 +-5.84801704010048,57.571340059499 + + + + + +NG76 +#labelStyle + +-5.76924862417898,57.6186713745688 + + + + +NG77 + +Small Square NG77 Boundry Box +#Line2 + + +1 + +-5.85751567169728,57.6609602721415 +-5.86706976203185,57.7505692407316 +-5.69943451028009,57.755581324031 +-5.69029220780482,57.6659551200756 +-5.85751567169728,57.6609602721415 + + + + + +NG77 +#labelStyle + +-5.77857013277794,57.7082991394544 + + + + +NG78 + +Small Square NG78 Boundry Box +#Line2 + + +1 + +-5.86707072037277,57.7505782024103 +-5.87668168770155,57.8401848823724 +-5.70863217295412,57.8452142879711 +-5.69943542731673,57.7555902874377 +-5.86707072037277,57.7505782024103 + + + + + +NG78 +#labelStyle + +-5.78794707903857,57.7979246616273 + + + + +NG79 + +Small Square NG79 Boundry Box +#Line2 + + +1 + +-5.87668265175419,57.8401938438219 +-5.88635096685432,57.9297982285918 +-5.71788473510376,57.934845042424 +-5.70863309545808,57.8452232511571 +-5.87668265175419,57.8401938438219 + + + + + +NG79 +#labelStyle + +-5.79737992127353,57.8875479349252 + + + + +NG80 + +Small Square NG80 Boundry Box +#Line2 + + +1 + +-5.62776094186074,57.0384481993058 +-5.6365343165131,57.1280896712276 +-5.47168042189686,57.1327664893386 +-5.46330275126043,57.0431090914407 +-5.62776094186074,57.0384481993058 + + + + + +NG80 +#labelStyle + +-5.54981180275214,57.0856353493474 + + + + +NG81 + +Small Square NG81 Boundry Box +#Line2 + + +1 + +-5.63653519650278,57.1280986361632 +-5.64535999384835,57.2177379435891 +-5.48010805076795,57.2224307661633 +-5.47168126219725,57.1327754558708 +-5.63653519650278,57.1280986361632 + + + + + +NG81 +#labelStyle + +-5.55841330336431,57.1752927801232 + + + + +NG82 + +Small Square NG82 Boundry Box +#Line2 + + +1 + +-5.6453608790016,57.2177469083079 +-5.65423751642198,57.3073840458838 +-5.48858520135451,57.3120929504576 +-5.48010889600049,57.2224397324864 +-5.6453608790016,57.2177469083079 + + + + + +NG82 +#labelStyle + +-5.56706528330044,57.2649480825682 + + + + +NG83 + +Small Square NG83 Boundry Box +#Line2 + + +1 + +-5.65423840678079,57.3073930103853 +-5.66316730624415,57.3970279726901 +-5.49711227693096,57.4017530374455 +-5.48858605155931,57.3121019165712 +-5.65423840678079,57.3073930103853 + + + + + +NG83 +#labelStyle + +-5.57576815295913,57.3546012516192 + + + + +NG84 + +Small Square NG84 Boundry Box +#Line2 + + +1 + +-5.66316820185094,57.3970369369738 +-5.67214978997488,57.4866697185192 +-5.50568968521757,57.4914110222903 +-5.49711313214858,57.4017620033492 +-5.66316820185094,57.3970369369738 + + + + + +NG84 +#labelStyle + +-5.58452232725611,57.4442522821491 + + + + +NG85 + +Small Square NG85 Boundry Box +#Line2 + + +1 + +-5.67215069087255,57.4866786825845 +-5.68118539898793,57.576309277813 +-5.51431783844154,57.5810669000934 +-5.50569054548899,57.4914199879835 +-5.67215069087255,57.4866786825845 + + + + + +NG85 +#labelStyle + +-5.59332822568619,57.5339011689661 + + + + +NG86 + +Small Square NG86 Boundry Box +#Line2 + + +1 + +-5.68118630521986,57.5763182416594 +-5.69027456943577,57.6659466449435 +-5.52299715339918,57.6707206658937 +-5.51431870380823,57.5810758655757 +-5.68118630521986,57.5763182416594 + + + + + +NG86 +#labelStyle + +-5.60218627238633,57.6235479068127 + + + + +NG87 + +Small Square NG87 Boundry Box +#Line2 + + +1 + +-5.69027548104582,57.6659556085704 +-5.69941774231556,57.7555818142117 +-5.531728051519,57.7603723146661 +-5.52299802390303,57.6707296311645 +-5.69027548104582,57.6659556085704 + + + + + +NG87 +#labelStyle + +-5.61109689619963,57.7131924903646 + + + + +NG88 + +Small Square NG88 Boundry Box +#Line2 + + +1 + +-5.69941865934806,57.7555907776186 +-5.70861536353627,57.8452147798462 +-5.54051095892601,57.8500218413206 +-5.5317289272024,57.760381279725 +-5.69941865934806,57.7555907776186 + + + + + +NG88 +#labelStyle + +-5.62006053074049,57.8028349142293 + + + + +NG89 + +Small Square NG89 Boundry Box +#Line2 + + +1 + +-5.70861628603607,57.8452237430324 +-5.7178678839869,57.9348455360018 +-5.54934630650689,57.9396692407012 +-5.54051183983179,57.850030806167 +-5.70861628603607,57.8452237430324 + + + + + +NG89 +#labelStyle + +-5.62907761446084,57.8924751729452 + + + + +NG90 + +Small Square NG90 Boundry Box +#Line2 + + +1 + +-5.46328630132226,57.0431095467897 +-5.4716639323643,57.1327669462437 +-5.30676092372801,57.1372272700574 +-5.29877939116023,57.0475546781052 +-5.46328630132226,57.0431095467897 + + + + + +NG90 +#labelStyle + +-5.38511480976361,57.0901965942912 + + + + +NG91 + +Small Square NG91 Boundry Box +#Line2 + + +1 + +-5.47166477266071,57.132775912776 +-5.4800915214063,57.2224312246321 +-5.31479006548246,57.2269068158551 +-5.30676172429546,57.1372362381127 +-5.47166477266071,57.132775912776 + + + + + +NG91 +#labelStyle + +-5.39331917611177,57.1798696250089 + + + + +NG92 + +Small Square NG92 Boundry Box +#Line2 + + +1 + +-5.48009236663485,57.2224401909554 +-5.48856863193119,57.3120934104978 +-5.32286640081188,57.3165843431352 +-5.31479087075018,57.2269157837088 +-5.48009236663485,57.2224401909554 + + + + + +NG92 +#labelStyle + +-5.40157170511673,57.2695406028626 + + + + +NG93 + +Small Square NG93 Boundry Box +#Line2 + + +1 + +-5.48856948213197,57.3121023766116 +-5.49709566721148,57.4017534990646 +-5.33099031419298,57.4062598477378 +-5.32286721081811,57.3165933107868 +-5.48856948213197,57.3121023766116 + + + + + +NG93 +#labelStyle + +-5.40987278851032,57.3592095234164 + + + + +NG94 + +Small Square NG94 Boundry Box +#Line2 + + +1 + +-5.49709652242506,57.4017624649685 +-5.50567303496557,57.4914114854961 +-5.33916219434326,57.4959333254495 +-5.33099112897639,57.406268815187 +-5.49709652242506,57.4017624649685 + + + + + +NG94 +#labelStyle + +-5.41822282233831,57.4488763821775 + + + + +NG95 + +Small Square NG95 Boundry Box +#Line2 + + +1 + +-5.50567389523292,57.4914204511895 +-5.51430114741872,57.5810673648937 +-5.34738243427934,57.5856047720015 +-5.33916301394292,57.4959422926958 +-5.50567389523292,57.4914204511895 + + + + + +NG95 +#labelStyle + +-5.42662220701963,57.5385411745956 + + + + +NG96 + +Small Square NG96 Boundry Box +#Line2 + + +1 + +-5.51430201278132,57.5810763303761 +-5.52298042136531,57.6707211322963 +-5.35565143137625,57.6752741830696 +-5.34738325873478,57.5856137390445 +-5.51430201278132,57.5810763303761 + + + + + +NG96 +#labelStyle + +-5.43507134740659,57.6282038960613 + + + + +NG97 + +Small Square NG97 Boundry Box +#Line2 + + +1 + +-5.52298129186505,57.6707300975673 +-5.53171127823191,57.7603727826789 +-5.36396958742774,57.7649415542724 +-5.35565226072742,57.6752831499088 +-5.52298129186505,57.6707300975673 + + + + + +NG97 +#labelStyle + +-5.44357065284608,57.7178645419056 + + + + +NG98 + +Small Square NG98 Boundry Box +#Line2 + + +1 + +-5.53171215391117,57.7603817477379 +-5.5404941441415,57.8500223109516 +-5.37233730870756,57.854606881171 +-5.36397042171505,57.7649505209074 +-5.53171215391117,57.7603817477379 + + + + + +NG98 +#labelStyle + +-5.45212053724184,57.8075231073987 + + + + +NG99 + +Small Square NG99 Boundry Box +#Line2 + + +1 + +-5.54049502504313,57.8500312757981 +-5.54932944997881,57.9396697119584 +-5.38075500603175,57.9442701592674 +-5.37233814797186,57.8546158476013 +-5.54049502504313,57.8500312757981 + + + + + +NG99 +#labelStyle + +-5.46072141911772,57.897179587749 + + + + + +NH + +Large Square NH Boundry Box +#Line1 + + +1 + +-5.29876293646409,57.0475551118692 +-5.38073814434063,57.9442706081894 +-3.69248274698061,57.977971207873 +-3.65137184670645,57.0801167760292 +-5.29876293646409,57.0475551118692 + + + + + +NH00 + +Small Square NH00 Boundry Box +#Line2 + + +1 + +-5.29876293646409,57.0475551118692 +-5.30674442939896,57.1372277053041 +-5.14179461604066,57.1414714026289 +-5.13420959764658,57.0517843511527 +-5.29876293646409,57.0475551118692 + + + + + +NH00 +#labelStyle + +-5.220370045354,57.094541623807 + + + + +NH01 + +Small Square NH01 Boundry Box +#Line2 + + +1 + +-5.30674522996243,57.1372366733596 +-5.31477353128537,57.2269072525918 +-5.14942489040932,57.231165479283 +-5.14179537683735,57.1414803721339 +-5.30674522996243,57.1372366733596 + + + + + +NH01 +#labelStyle + +-5.22817688998613,57.1842295185958 + + + + +NH02 + +Small Square NH02 Boundry Box +#Line2 + + +1 + +-5.31477433654908,57.2269162204457 +-5.32284982651372,57.3165847813691 +-5.15710002602934,57.3208576078899 +-5.14942565567398,57.2311744485933 +-5.31477433654908,57.2269162204457 + + + + + +NH02 +#labelStyle + +-5.23602957635254,57.2739154324648 + + + + +NH03 + +Small Square NH03 Boundry Box +#Line2 + + +1 + +-5.32285063651593,57.3165937490209 +-5.33097369955885,57.4062602874763 +-5.16482038852232,57.4105477848771 +-5.15710079579834,57.3208665770052 +-5.32285063651593,57.3165937490209 + + + + + +NH03 +#labelStyle + +-5.24392847746002,57.3635993615765 + + + + +NH04 + +Small Square NH04 Boundry Box +#Line2 + + +1 + +-5.33097451433821,57.4062692549257 +-5.33914553913635,57.4959337666998 +-5.17258634754466,57.5002360066247 +-5.16482116283243,57.4105567537971 +-5.33097451433821,57.4062692549257 + + + + + +NH04 +#labelStyle + +-5.25187397042514,57.4532813020433 + + + + +NH05 + +Small Square NH05 Boundry Box +#Line2 + + +1 + +-5.33914635873194,57.4959427339463 +-5.3473657382609,57.5856052147711 +-5.1803982768431,57.5899222694641 +-5.17258712643305,57.5002449753489 +-5.33914635873194,57.4959427339463 + + + + + +NH05 +#labelStyle + +-5.25986643653072,57.5429612499264 + + + + +NH06 + +Small Square NH06 Boundry Box +#Line2 + + +1 + +-5.34736656271225,57.5856141818143 +-5.35563469430561,57.6752746273659 +-5.18825655431113,57.6796065696778 +-5.18039906034734,57.5899312379923 +-5.34736656271225,57.5856141818143 + + + + + +NH06 +#labelStyle + +-5.2679062612832,57.6326392012349 + + + + +NH07 + +Small Square NH07 Boundry Box +#Line2 + + +1 + +-5.35563552365266,57.6752835942052 +-5.36395280906225,57.764942000103 +-5.19616156204642,57.7692889034978 +-5.18825734246922,57.6796155380095 +-5.35563552365266,57.6752835942052 + + + + + +NH07 +#labelStyle + +-5.27599383447107,57.7223151519251 + + + + +NH08 + +Small Square NH08 Boundry Box +#Line2 + + +1 + +-5.36395364334542,57.7649509667381 +-5.37232048880258,57.8546073285434 +-5.20411368640919,57.8589692671054 +-5.19616235489679,57.7692978716327 +-5.36395364334542,57.7649509667381 + + + + + +NH08 +#labelStyle + +-5.28412955022411,57.8119890978992 + + + + +NH09 + +Small Square NH09 Boundry Box +#Line2 + + +1 + +-5.37232132806271,57.8546162949739 +-5.38073814434063,57.9442706081894 +-5.21211331808145,57.9486476566297 +-5.20411448399068,57.8589782350431 +-5.37232132806271,57.8546162949739 + + + + + +NH09 +#labelStyle + +-5.29231380707377,57.9016610350047 + + + + +NH10 + +Small Square NH10 Boundry Box +#Line2 + + +1 + +-5.13419313842181,57.0517847633191 +-5.14177811714628,57.1414718162045 +-4.97678381248844,57.1454987612028 +-4.96959566592398,57.0557979856652 +-5.13419313842181,57.0517847633191 + + + + + +NH10 +#labelStyle + +-5.05557981190512,57.0986703093449 + + + + +NH11 + +Small Square NH11 Boundry Box +#Line2 + + +1 + +-5.14177887793899,57.1414807857095 +-5.14940835160981,57.2311658942746 +-4.98401485785368,57.2352066296542 +-4.9767845334784,57.1455077320837 +-5.14177887793899,57.1414807857095 + + + + + +NH11 +#labelStyle + +-5.0629887658925,57.1883723313734 + + + + +NH12 + +Small Square NH12 Boundry Box +#Line2 + + +1 + +-5.14940911687047,57.2311748635851 +-5.15708344709126,57.3208580243046 +-4.99128842816677,57.3249126169769 +-4.98401558307893,57.235215600347 +-5.14940911687047,57.2311748635851 + + + + + +NH12 +#labelStyle + +-5.07044123663769,57.2780724408934 + + + + +NH13 + +Small Square NH13 Boundry Box +#Line2 + + +1 + +-5.15708421685624,57.32086699342 +-5.16480376921035,57.4105482027217 +-4.9986048701396,57.4146167201564 +-4.99128915766179,57.3249215874814 +-5.15708421685624,57.32086699342 + + + + + +NH13 +#labelStyle + +-5.0779375783669,57.3677706346372 + + + + +NH14 + +Small Square NH14 Boundry Box +#Line2 + + +1 + +-5.16480454351641,57.4105571716419 +-5.17256968762157,57.5002364259062 +-5.00596453431192,57.5043189361367 +-4.99860560393925,57.4146256904724 +-5.16480454351641,57.4105571716419 + + + + + +NH14 +#labelStyle + +-5.08547814921102,57.4574669092926 + + + + +NH15 + +Small Square NH15 Boundry Box +#Line2 + + +1 + +-5.17257046650588,57.5002453946306 +-5.18038157606972,57.5899226901896 +-5.01336777510413,57.5940192618195 +-5.00596527245145,57.5043279062638 +-5.17257046650588,57.5002453946306 + + + + + +NH15 +#labelStyle + +-5.09306331125936,57.547161261503 + + + + +NH16 + +Small Square NH16 Boundry Box +#Line2 + + +1 + +-5.18038235956987,57.589931658718 +-5.18823981244635,57.6796069918543 +-5.02081495087081,57.6837176940638 +-5.01336851761918,57.5940282317575 +-5.18038235956987,57.589931658718 + + + + + +NH16 +#labelStyle + +-5.10069343061417,57.6368536878659 + + + + +NH17 + +Small Square NH17 Boundry Box +#Line2 + + +1 + +-5.18824060060032,57.6796159601862 +-5.19614477884717,57.7692893271326 +-5.02830642395521,57.7734142296844 +-5.0208156977974,57.6837266638122 +-5.18824060060032,57.6796159601862 + + + + + +NH17 +#labelStyle + +-5.10836887744616,57.7265441849323 + + + + +NH18 + +Small Square NH18 Boundry Box +#Line2 + + +1 + +-5.19614557169339,57.7692982952677 +-5.20409686163037,57.8589696922056 +-5.03584256074467,57.8631088654518 +-5.02830717532979,57.773423199243 +-5.19614557169339,57.7692982952677 + + + + + +NH18 +#labelStyle + +-5.11609002605086,57.816232749206 + + + + +NH19 + +Small Square NH19 Boundry Box +#Line2 + + +1 + +-5.20409765920769,57.8589786601435 +-5.21209645147598,57.9486480832027 +-5.04342373172692,57.9528015980911 +-5.03584331660408,57.8631178348203 +-5.20409765920769,57.8589786601435 + + + + + +NH19 +#labelStyle + +-5.12385725490603,57.9059193771424 + + + + +NH20 + +Small Square NH20 Boundry Box +#Line2 + + +1 + +-4.96957920240029,57.0557983762217 +-4.9767673092603,57.1454991530949 +-4.8117308306495,57.1493092262968 +-4.80493989506857,57.059595463046 +-4.96957920240029,57.0557983762217 + + + + + +NH20 +#labelStyle + +-4.89074641579639,57.1025825286931 + + + + +NH21 + +Small Square NH21 Boundry Box +#Line2 + + +1 + +-4.97676803024628,57.1455081239758 +-4.98399831468518,57.2352070228884 +-4.81856230409893,57.2390301465914 +-4.81173151179864,57.1493181984796 +-4.97676803024628,57.1455081239758 + + + + + +NH21 +#labelStyle + +-4.8977571287882,57.1922979402159 + + + + +NH22 + +Small Square NH22 Boundry Box +#Line2 + + +1 + +-4.98399903990642,57.2352159935813 +-4.99127184482409,57.3249130115598 +-4.82543396241694,57.3287492491145 +-4.81856298925029,57.2390391185925 +-4.98399903990642,57.2352159935813 + + + + + +NH22 +#labelStyle + +-4.90480902970975,57.2820115040994 + + + + +NH23 + +Small Square NH23 Boundry Box +#Line2 + + +1 + +-4.99127257431508,57.3249219820645 +-4.99858824638702,57.4146171160946 +-4.83234613335381,57.4184665313801 +-4.82543465160312,57.3287582209338 +-4.99127257431508,57.3249219820645 + + + + + +NH23 +#labelStyle + +-4.91190245395381,57.3717232176162 + + + + +NH24 + +Small Square NH24 Boundry Box +#Line2 + + +1 + +-4.99858898018261,57.4146260864107 +-5.00594786991181,57.5043193334368 +-4.83929914827999,57.5081819908665 +-4.83234682660776,57.4184755030172 +-4.99858898018261,57.4146260864107 + + + + + +NH24 +#labelStyle + +-4.91903774061195,57.4614330780005 + + + + +NH25 + +Small Square NH25 Boundry Box +#Line2 + + +1 + +-5.00594860804727,57.504328303564 +-5.01335106981693,57.5940196604882 +-4.84629334223593,57.5978956250156 +-4.83929984563503,57.5081909623212 +-5.00594860804727,57.504328303564 + + + + + +NH25 +#labelStyle + +-4.92621523252538,57.5511410824476 + + + + +NH26 + +Small Square NH26 Boundry Box +#Line2 + + +1 + +-5.01335181232787,57.5940286304263 +-5.02079820445499,57.6837180941078 +-4.85332905398279,57.6876074312322 +-4.84629404372574,57.5979045962876 +-5.01335181232787,57.5940286304263 + + + + + +NH26 +#labelStyle + +-4.93343527633668,57.6408472281134 + + + + +NH27 + +Small Square NH27 Boundry Box +#Line2 + + +1 + +-5.02079895137745,57.6837270638564 +-5.02828963616727,57.7734146311105 +-4.86040662605406,57.7773174068837 +-4.85332975964145,57.6876164023214 +-5.02079895137745,57.6837270638564 + + + + + +NH27 +#labelStyle + +-4.94069822254239,57.7305515121132 + + + + +NH28 + +Small Square NH28 Boundry Box +#Line2 + + +1 + +-5.0282903875377,57.7734236006693 +-5.03582573133912,57.8631092682669 +-4.86752640480788,57.8670255492985 +-4.86040733591601,57.7773263777896 +-5.0282903875377,57.7734236006693 + + + + + +NH28 +#labelStyle + +-4.94800442554647,57.8202539315215 + + + + +NH29 + +Small Square NH29 Boundry Box +#Line2 + + +1 + +-5.03582648719435,57.8631182376355 +-5.04340686045621,57.952802002302 +-4.87468874048041,57.9567318557661 +-4.86752711890795,57.8670345200209 +-5.03582648719435,57.8631182376355 + + + + + +NH29 +#labelStyle + +-4.95535424371465,57.9099544833707 + + + + +NH30 + +Small Square NH30 Boundry Box +#Line2 + + +1 + +-4.80492342747606,57.059595831981 +-4.81171432331955,57.1493095964937 +-4.64663799182529,57.1529026848096 +-4.64024458782962,57.0631766710328 +-4.80492342747606,57.059595831981 + + + + + +NH30 +#labelStyle + +-4.72587216720533,57.1062781659913 + + + + +NH31 + +Small Square NH31 Boundry Box +#Line2 + + +1 + +-4.8117150044647,57.1493185686767 +-4.81854575679527,57.2390305180564 +-4.65306956920275,57.2426359161459 +-4.64663863310136,57.1529116582206 +-4.8117150044647,57.1493185686767 + + + + + +NH31 +#labelStyle + +-4.73248430748064,57.196006228396 + + + + +NH32 + +Small Square NH32 Boundry Box +#Line2 + + +1 + +-4.81854644194262,57.2390394900577 +-4.82541737490537,57.3287496218539 +-4.6595389877987,57.3323673894976 +-4.65307021424762,57.2426448893812 +-4.81854644194262,57.2390394900577 + + + + + +NH32 +#labelStyle + +-4.73913530320913,57.2857325044796 + + + + +NH33 + +Small Square NH33 Boundry Box +#Line2 + + +1 + +-4.82541806408751,57.3287585936733 +-4.83232950539825,57.4184669054 +-4.66604655635279,57.4220971028777 +-4.65953963664308,57.332376362557 +-4.82541806408751,57.3287585936733 + + + + + +NH33 +#labelStyle + +-4.74582547090015,57.3754569920254 + + + + +NH34 + +Small Square NH34 Boundry Box +#Line2 + + +1 + +-4.83233019864814,57.4184758770373 +-4.83928247964243,57.5081823661732 +-4.67259258701622,57.5118250542689 +-4.66604720902771,57.422106075761 +-4.83233019864814,57.4184758770373 + + + + + +NH34 +#labelStyle + +-4.75255513055501,57.4651796887843 + + + + +NH35 + +Small Square NH35 Boundry Box +#Line2 + + +1 + +-4.83928317699339,57.508191337628 +-4.84627663267641,57.5978960016154 +-4.67917739539881,57.6015512416231 +-4.67259324355308,57.5118340269759 +-4.83928317699339,57.508191337628 + + + + + +NH35 +#labelStyle + +-4.75932460571514,57.5549005924738 + + + + +NH36 + +Small Square NH36 Boundry Box +#Line2 + + +1 + +-4.84627733416213,57.5979049728875 +-4.85331230325942,57.6876078091315 +-4.6858013006168,57.6912756628609 +-4.67917805582934,57.6015602141536 +-4.84627733416213,57.5979049728875 + + + + + +NH36 +#labelStyle + +-4.76613422351085,57.6446197007776 + + + + +NH37 + +Small Square NH37 Boundry Box +#Line2 + + +1 + +-4.85331300891395,57.6876167802208 +-4.86038983392293,57.7773177860888 +-4.69246462534144,57.7809983158705 +-4.68580196497309,57.6912846352146 +-4.85331300891395,57.6876167802208 + + + + + +NH37 +#labelStyle + +-4.77298431471108,57.7343370113452 + + + + +NH38 + +Small Square NH38 Boundry Box +#Line2 + + +1 + +-4.86039054378073,57.7773267569949 +-4.86750957102311,57.867025929816 +-4.69916769584844,57.8707191985079 +-4.69246529365593,57.7810072880474 +-4.86039054378073,57.7773267569949 + + + + + +NH38 +#labelStyle + +-4.77987521377384,57.8240525217903 + + + + +NH39 + +Small Square NH39 Boundry Box +#Line2 + + +1 + +-4.86751028511899,57.8670349005386 +-4.87467186479405,57.9567322376025 +-4.70591084206818,57.9604383085953 +-4.69916836815394,57.8707281705076 +-4.86751028511899,57.8670349005386 + + + + + +NH39 +#labelStyle + +-4.78680725889758,57.9137662296911 + + + + +NH40 + +Small Square NH40 Boundry Box +#Line2 + + +1 + +-4.64022811639873,57.0631770183355 +-4.64662148062583,57.1529030333005 +-4.48150762083841,57.156279030034 +-4.47551205043008,57.0665415037097 +-4.64022811639873,57.0631770183355 + + + + + +NH40 +#labelStyle + +-4.5609593799073,57.1097571117428 + + + + +NH41 + +Small Square NH41 Boundry Box +#Line2 + + +1 + +-4.64662212189792,57.1529120067116 +-4.65305301799811,57.2426362658308 +-4.48753899679224,57.2460238308102 +-4.48150822221104,57.1562880045991 +-4.64662212189792,57.1529120067116 + + + + + +NH41 +#labelStyle + +-4.56717263442423,57.1994970855978 + + + + +NH42 + +Small Square NH42 Boundry Box +#Line2 + + +1 + +-4.65305366303896,57.2426452390662 +-4.65952239635433,57.3323677403823 +-4.49360586694943,57.3357669298102 +-4.48753960169992,57.2460328052052 +-4.65305366303896,57.2426452390662 + + + + + +NH42 +#labelStyle + +-4.57342240847334,57.2892353308898 + + + + +NH43 + +Small Square NH43 Boundry Box +#Line2 + + +1 + +-4.65952304519467,57.3323767134418 +-4.66602992443225,57.4220974549681 +-4.49970852099269,57.4255083255162 +-4.49360647542096,57.335775904035 +-4.65952304519467,57.3323767134418 + + + + + +NH43 +#labelStyle + +-4.57970899963323,57.3789718458838 + + + + +NH44 + +Small Square NH44 Boundry Box +#Line2 + + +1 + +-4.66603057710312,57.4221064278515 +-4.67257591438115,57.5118254075709 +-4.505847251807,57.5152480163854 +-4.49970913305721,57.4255172995706 +-4.66603057710312,57.4221064278515 + + + + + +NH44 +#labelStyle + +-4.58603270876694,57.4687066288174 + + + + +NH45 + +Small Square NH45 Boundry Box +#Line2 + + +1 + +-4.67257657091392,57.5118343802779 +-4.6791606818089,57.6015515961426 +-4.51202235552372,57.6049860008494 +-4.50584786749395,57.5152569902692 +-4.67257657091392,57.5118343802779 + + + + + +NH45 +#labelStyle + +-4.59239384006722,57.5584396779003 + + + + +NH46 + +Small Square NH46 Boundry Box +#Line2 + + +1 + +-4.67916134223532,57.6015605686732 +-4.68578454582977,57.6912760186039 +-4.51823413156554,57.6947222773137 +-4.51202297486288,57.6049949745625 +-4.67916134223532,57.6015605686732 + + + + + +NH46 +#labelStyle + +-4.59879270110247,57.6481709913138 + + + + +NH47 + +Small Square NH47 Boundry Box +#Line2 + + +1 + +-4.68578521018192,57.6912849909577 +-4.69244782911303,57.7809986728431 +-4.52448288269209,57.7844568441571 +-4.51823475458701,57.6947312508559 +-4.68578521018192,57.6912849909577 + + + + + +NH47 +#labelStyle + +-4.6052296028635,57.7379005672103 + + + + +NH48 + +Small Square NH48 Boundry Box +#Line2 + + +1 + +-4.69244849742336,57.7810076450201 +-4.69915085793236,57.8707195567161 +-4.53076891504637,57.8741896997309 +-4.52448350942632,57.7844658175282 +-4.69244849742336,57.7810076450201 + + + + + +NH48 +#labelStyle + +-4.61170485981107,57.8276284037124 + + + + +NH49 + +Small Square NH49 Boundry Box +#Line2 + + +1 + +-4.69915153023369,57.8707285287159 +-4.70589396221613,57.9604386680454 +-4.53709253820195,57.963920842359 +-4.53076954552415,57.8741986729309 +-4.69915153023369,57.8707285287159 + + + + + +NH49 +#labelStyle + +-4.61821878992417,57.9173544989123 + + + + +NH50 + +Small Square NH50 Boundry Box +#Line2 + + +1 + +-4.47549557539161,57.0665418293698 +-4.4814911060021,57.1562793568084 +-4.3163420458298,57.1594381616673 +-4.31074459236648,57.0696898615189 +-4.47549557539161,57.0665418293698 + + + + + +NH50 +#labelStyle + +-4.39601037107429,57.113019262827 + + + + +NH51 + +Small Square NH51 Boundry Box +#Line2 + + +1 + +-4.48149170737075,57.1562883313736 +-4.48752244192115,57.2460241587044 +-4.32197293385835,57.2491937895296 +-4.31634260727051,57.1594471373125 +-4.48149170737075,57.1562883313736 + + + + + +NH51 +#labelStyle + +-4.40182444551658,57.2027704079283 + + + + +NH52 + +Small Square NH52 Boundry Box +#Line2 + + +1 + +-4.48752304682482,57.2460331330996 +-4.4935892718087,57.3357672588297 +-4.32763696591656,57.3389477682373 +-4.32197349860003,57.2492027650099 +-4.48752304682482,57.2460331330996 + + + + + +NH52 +#labelStyle + +-4.40767270033032,57.2925198786569 + + + + +NH53 + +Small Square NH53 Boundry Box +#Line2 + + +1 + +-4.49358988027619,57.3357762330546 +-4.49969188534554,57.4255086556665 +-4.3333344125868,57.4287000967124 +-4.32763753398613,57.3389567435527 +-4.49358988027619,57.3357762330546 + + + + + +NH53 +#labelStyle + +-4.41355541411889,57.3822676737297 + + + + +NH54 + +Small Square NH54 Boundry Box +#Line2 + + +1 + +-4.49969249740599,57.4255176297209 +-4.50583057541473,57.515248347672 +-4.33906554744362,57.5184507738565 +-4.33333498401146,57.4287090718627 +-4.49969249740599,57.4255176297209 + + + + + +NH54 +#labelStyle + +-4.4194728685618,57.4720137918413 + + + + +NH55 + +Small Square NH55 Boundry Box +#Line2 + + +1 + +-4.50583119109759,57.5152573215559 +-4.51200563814569,57.6049863332779 +-4.34483064709507,57.6081997985504 +-4.33906612225089,57.5184597488416 +-4.50583119109759,57.5152573215559 + + + + + +NH55 +#labelStyle + +-4.42542534845718,57.5617582316636 + + + + +NH56 + +Small Square NH56 Boundry Box +#Line2 + + +1 + +-4.51200625748073,57.604995306991 +-4.51821737295912,57.6947226108897 +-4.35062999122461,57.6979471696538 +-4.34483122531274,57.6082087733702 +-4.51200625748073,57.604995306991 + + + + + +NH56 +#labelStyle + +-4.43141314176476,57.6515009918447 + + + + +NH57 + +Small Square NH57 Boundry Box +#Line2 + + +1 + +-4.51821799597645,57.6947315844319 +-4.52446608261266,57.7844571788862 +-4.35646386263385,57.7876928860049 +-4.35063057288082,57.6979561443082 +-4.51821799597645,57.6947315844319 + + + + + +NH57 +#labelStyle + +-4.43743653964974,57.7412420710091 + + + + +NH58 + +Small Square NH58 Boundry Box +#Line2 + + +1 + +-4.52446670934274,57.7844661522574 +-4.53075207324731,57.8741900356189 +-4.36233254728593,57.8774369464194 +-4.35646444775704,57.7877018604937 +-4.52446670934274,57.7844661522574 + + + + + +NH58 +#labelStyle + +-4.44349583652728,57.8309814677571 + + + + +NH59 + +Small Square NH59 Boundry Box +#Line2 + + +1 + +-4.5307527037209,57.874199008819 +-4.53707565443458,57.9639211794116 +-4.36823633434957,57.9671793496904 +-4.36233313590484,57.8774459207426 +-4.5307527037209,57.874199008819 + + + + + +NH59 +#labelStyle + +-4.44959133010779,57.9207191806635 + + + + +NH60 + +Small Square NH60 Boundry Box +#Line2 + + +1 + +-4.31072811395154,57.0696901655267 +-4.31632552758961,57.1594384667155 +-4.15114359805507,57.1623799858233 +-4.14594452620797,57.0726216512711 +-4.31072811395154,57.0696901655267 + + + + + +NH60 +#labelStyle + +-4.23102746107311,57.1160645225101 + + + + +NH61 + +Small Square NH61 Boundry Box +#Line2 + + +1 + +-4.31632608902633,57.1594474423608 +-4.32195637555567,57.2491940956233 +-4.1563737305494,57.252145697713 +-4.15114411953724,57.1623889624745 +-4.31632608902633,57.1594474423608 + + + + + +NH61 +#labelStyle + +-4.23644207989383,57.205826097929 + + + + +NH62 + +Small Square NH62 Boundry Box +#Line2 + + +1 + +-4.32195694029334,57.2492030711038 +-4.32762036731623,57.3389480753817 +-4.16163465394837,57.3419098094761 +-4.15637425509818,57.2521546742042 +-4.32195694029334,57.2492030711038 + + + + + +NH62 +#labelStyle + +-4.24188853689104,57.2955860495901 + + + + +NH63 + +Small Square NH63 Boundry Box +#Line2 + + +1 + +-4.32762093538175,57.3389570506972 +-4.33331777345173,57.4287004049126 +-4.16692661969337,57.4316723204441 +-4.16163518158876,57.3419187858072 +-4.32762093538175,57.3389570506972 + + + + + +NH63 +#labelStyle + +-4.24736709165116,57.3853443766325 + + + + +NH64 + +Small Square NH64 Boundry Box +#Line2 + + +1 + +-4.33331834487233,57.428709380063 +-4.33904886753481,57.5184510831176 +-4.17224988200727,57.5214332299329 +-4.16692715045067,57.4316812966151 +-4.33331834487233,57.428709380063 + + + + + +NH64 +#labelStyle + +-4.25287800662785,57.4751010781779 + + + + +NH65 + +Small Square NH65 Boundry Box +#Line2 + + +1 + +-4.33904944233797,57.5184600581028 +-4.34481392617153,57.6082001088776 +-4.17760469793278,57.6111925372421 +-4.17225041590703,57.5214422059437 +-4.33904944233797,57.5184600581028 + + + + + +NH65 +#labelStyle + +-4.25842154718151,57.5648561533296 + + + + +NH66 + +Small Square NH66 Boundry Box +#Line2 + + +1 + +-4.34481450438509,57.6082090836976 +-4.3506132290434,57.6979474810525 +-4.18299132737151,57.7009502416549 +-4.17760523500085,57.6112015130927 +-4.34481450438509,57.6082090836976 + + + + + +NH66 +#labelStyle + +-4.26399798161942,57.6546096011725 + + + + +NH67 + +Small Square NH67 Boundry Box +#Line2 + + +1 + +-4.35061381069547,57.697956455707 +-4.35644705895004,57.7876931984803 +-4.18841003312367,57.7907063424373 +-4.18299186763403,57.7009592173452 +-4.35061381069547,57.697956455707 + + + + + +NH67 +#labelStyle + +-4.26960758123662,57.7443614207722 + + + + +NH68 + +Small Square NH68 Boundry Box +#Line2 + + +1 + +-4.35644764406906,57.7877021729692 +-4.36231570185254,57.8774372599768 +-4.19386108092838,57.8804608388381 +-4.18841057660705,57.7907153179672 +-4.35644764406906,57.7877021729692 + + + + + +NH68 +#labelStyle + +-4.27525062035741,57.834111611175 + + + + +NH69 + +Small Square NH69 Boundry Box +#Line2 + + +1 + +-4.36231629046727,57.8774462343001 +-4.36821944691761,57.9671796643353 +-4.19934473950472,57.9702137300879 +-4.19386162765935,57.8804698142075 +-4.36231629046727,57.8774462343001 + + + + + +NH69 +#labelStyle + +-4.2809273763776,57.923860171407 + + + + +NH70 + +Small Square NH70 Boundry Box +#Line2 + + +1 + +-4.14592804464796,57.0726219336176 +-4.15112707664428,57.1623802691363 +-3.98591461168017,57.1651044150417 +-3.98111416739479,57.0753367861557 +-4.14592804464796,57.0726219336176 + + + + + +NH70 +#labelStyle + +-4.0660129732627,57.1188928004558 + + + + +NH71 + +Small Square NH71 Boundry Box +#Line2 + + +1 + +-4.15112759812245,57.1623892457875 +-4.15635716905031,57.2521459819972 +-3.99074373996402,57.2548794672438 +-3.98591509317907,57.1651133926246 +-4.15112759812245,57.1623892457875 + + + + + +NH71 +#labelStyle + +-4.0710278797253,57.2086640645868 + + + + +NH72 + +Small Square NH72 Boundry Box +#Line2 + + +1 + +-4.15635769359506,57.2521549584885 +-4.16161805212552,57.3419100947362 +-3.99560130328403,57.3446529647464 +-3.99074422429489,57.2548884446713 +-4.15635769359506,57.2521549584885 + + + + + +NH72 +#labelStyle + +-4.07607227934129,57.2984337519921 + + + + +NH73 + +Small Square NH73 Boundry Box +#Line2 + + +1 + +-4.16161857976187,57.3419190710675 +-4.1669099773094,57.431672606685 +-4.00048753390284,57.4344249072608 +-3.99560179046998,57.3446619420184 +-4.16161857976187,57.3419190710675 + + + + + +NH73 +#labelStyle + +-4.08114641264132,57.3882018622035 + + + + +NH74 + +Small Square NH74 Boundry Box +#Line2 + + +1 + +-4.16691050806263,57.4316815828561 +-4.17223319882286,57.5214335171593 +-4.00540266665323,57.5241952944867 +-4.00048802396722,57.4344338843773 +-4.16691050806263,57.4316815828561 + + + + + +NH74 +#labelStyle + +-4.08625052281364,57.4779683947397 + + + + +NH75 + +Small Square NH75 Boundry Box +#Line2 + + +1 + +-4.17223373271853,57.5214424931702 +-4.17758797370667,57.6111928254588 +-4.01034693897357,57.613964126112 +-4.00540315961965,57.5242042714476 +-4.17223373271853,57.5214424931702 + + + + + +NH75 +#labelStyle + +-4.09138485574077,57.5677333491053 + + + + +NH76 + +Small Square NH76 Boundry Box +#Line2 + + +1 + +-4.17758851077063,57.6112018013095 +-4.18297456186046,57.7009505308669 +-4.01532059094392,57.7037314018123 +-4.01034743486591,57.6139731029174 +-4.17758851077063,57.6112018013095 + + + + + +NH76 +#labelStyle + +-4.09654966003669,57.6574967247907 + + + + +NH77 + +Small Square NH77 Boundry Box +#Line2 + + +1 + +-4.18297510211884,57.7009595065572 +-4.18839322608243,57.7907066326495 +-4.02032386532273,57.7934971212505 +-4.01532108978632,57.7037403784621 +-4.18297510211884,57.7009595065572 + + + + + +NH77 +#labelStyle + +-4.10174518708478,57.7472585212719 + + + + +NH78 + +Small Square NH78 Boundry Box +#Line2 + + +1 + +-4.18839376956165,57.7907156081794 +-4.19384423210968,57.8804611300553 +-4.02535700758412,57.8832612840764 +-4.0203243671396,57.7935060977446 +-4.18839376956165,57.7907156081794 + + + + + +NH78 +#labelStyle + +-4.10697169107626,57.8370187380097 + + + + +NH79 + +Small Square NH79 Boundry Box +#Line2 + + +1 + +-4.19384477883646,57.8804701054248 +-4.19932784865924,57.9702140223153 +-4.03042026595579,57.9730238899265 +-4.02535751240014,57.8832702604149 +-4.19384477883646,57.8804701054248 + + + + + +NH79 +#labelStyle + +-4.11222942904941,57.9267773744498 + + + + +NH80 + +Small Square NH80 Boundry Box +#Line2 + + +1 + +-3.98109768292138,57.0753370468326 +-3.98589808733233,57.165104676611 +-3.82065742357641,57.167611368298 +-3.81625583403594,57.0778351857503 +-3.98109768292138,57.0753370468326 + + + + + +NH80 +#labelStyle + +-3.9009692337909,57.1215040127348 + + + + +NH81 + +Small Square NH81 Boundry Box +#Line2 + + +1 + +-3.98589856882723,57.165113654194 +-3.99072717550396,57.25487972971 +-3.82508531794335,57.2573950164891 +-3.82065786506919,57.1676203467384 +-3.98589856882723,57.165113654194 + + + + + +NH81 +#labelStyle + +-3.90558419000739,57.2112842233431 + + + + +NH82 + +Small Square NH82 Boundry Box +#Line2 + + +1 + +-3.99072765983081,57.2548887071376 +-3.99558469847603,57.3446532281138 +-3.82953928894299,57.3471771518006 +-3.82508576203322,57.2574039947783 +-3.99072765983081,57.2548887071376 + + + + + +NH82 +#labelStyle + +-3.91022629173285,57.3010629006687 + + + + +NH83 + +Small Square NH83 Boundry Box +#Line2 + + +1 + +-3.99558518565793,57.3446622053858 +-4.00047088850927,57.4344251715337 +-3.83401954962431,57.4369577742934 +-3.82953973565113,57.3471861299385 +-3.99558518565793,57.3446622053858 + + + + + +NH83 +#labelStyle + +-3.9148957604061,57.3908400446062 + + + + +NH84 + +Small Square NH84 Boundry Box +#Line2 + + +1 + +-4.00047137856957,57.4344341486503 +-4.0053859804345,57.5241955596696 +-3.8385263153945,57.526736884021 +-3.83401999897215,57.43696675228 +-4.00047137856957,57.4344341486503 + + + + + +NH84 +#labelStyle + +-3.91959281991336,57.480615655041 + + + + +NH85 + +Small Square NH85 Boundry Box +#Line2 + + +1 + +-4.00538647339682,57.5242045366307 +-4.01033021168814,57.6139643922095 +-3.84305980405153,57.6165144810287 +-3.83852676740371,57.5267458618563 +-4.00538647339682,57.5242045366307 + + + + + +NH85 +#labelStyle + +-3.92431769662199,57.5703897318486 + + + + +NH86 + +Small Square NH86 Boundry Box +#Line2 + + +1 + +-4.01033070757636,57.6139733690149 +-4.01530382234827,57.7037316688288 +-3.84762023581722,57.7062905653535 +-3.84306025874399,57.6165234587128 +-4.01033070757636,57.6139733690149 + + + + + +NH86 +#labelStyle + +-3.92907061941483,57.6601622748943 + + + + +NH87 + +Small Square NH87 Boundry Box +#Line2 + + +1 + +-4.01530432118653,57.7037406454786 +-4.02030705517134,57.7934973891905 +-3.85220783337096,57.7960651370237 +-3.84762069321509,57.7062995428863 +-4.01530432118653,57.7037406454786 + + + + + +NH87 +#labelStyle + +-3.93385181972508,57.749933284033 + + + + +NH88 + +Small Square NH88 Boundry Box +#Line2 + + +1 + +-4.02030755698404,57.7935063656847 +-4.02534015562942,57.8832615529446 +-3.85682282188395,57.8858381960586 +-3.85220829349663,57.7960741144052 +-4.02030755698404,57.7935063656847 + + + + + +NH88 +#labelStyle + +-3.93866153157175,57.8397027591089 + + + + +NH89 + +Small Square NH89 Boundry Box +#Line2 + + +1 + +-4.02534066044124,57.8832705292831 +-4.03040337194816,57.9730241597274 +-3.86146542905396,57.9756097424685 +-3.85682328476005,57.8858471732889 +-4.02534066044124,57.8832705292831 + + + + + +NH89 +#labelStyle + +-3.94349999159578,57.929470699955 + + + + +NH90 + +Small Square NH90 Boundry Box +#Line2 + + +1 + +-3.81623934688108,57.0778354247499 +-3.82064089652534,57.1676116081159 +-3.65537437311486,57.1699007710122 +-3.65137184670645,57.0801167760292 +-3.81623934688108,57.0778354247499 + + + + + +NH90 +#labelStyle + +-3.73589857139049,57.1238980818345 + + + + +NH91 + +Small Square NH91 Boundry Box +#Line2 + + +1 + +-3.82064133801412,57.1676205865564 +-3.82506875075804,57.2573952571294 +-3.65940082286262,57.2596922703087 +-3.65537477458056,57.1699097502359 +-3.82064133801412,57.1676205865564 + + + + + +NH91 +#labelStyle + +-3.74011335835693,57.213686496104 + + + + +NH92 + +Small Square NH92 Boundry Box +#Line2 + + +1 + +-3.82506919484389,57.2574042354186 +-3.82952268138747,57.3471773932672 +-3.66345098851368,57.3494822949323 +-3.6594012266903,57.2597012493849 +-3.82506919484389,57.2574042354186 + + + + + +NH92 +#labelStyle + +-3.74435294077395,57.3034734169384 + + + + +NH93 + +Small Square NH93 Boundry Box +#Line2 + + +1 + +-3.82952312809157,57.3471863714052 +-3.8340029014607,57.4369580165904 +-3.66752506387133,57.4392708452636 +-3.6634513947226,57.349491273861 +-3.82952312809157,57.3471863714052 + + + + + +NH93 +#labelStyle + +-3.74861752095534,57.3932588445655 + + + + +NH94 + +Small Square NH94 Boundry Box +#Line2 + + +1 + +-3.83400335080447,57.4369669945771 +-3.83850962638298,57.5267371271525 +-3.67162324488462,57.5290579216793 +-3.66752547248098,57.439279824045 +-3.83400335080447,57.4369669945771 + + + + + +NH94 +#labelStyle + +-3.75290730345151,57.4830427792069 + + + + +NH95 + +Small Square NH95 Boundry Box +#Line2 + + +1 + +-3.83851007838809,57.5267461049879 +-3.8430430739503,57.6165147249987 +-3.67574572967795,57.6188435245514 +-3.67162365591471,57.5290669003133 +-3.83851007838809,57.5267461049879 + + + + + +NH95 +#labelStyle + +-3.75722249508039,57.5728252210785 + + + + +NH96 + +Small Square NH96 Boundry Box +#Line2 + + +1 + +-3.84304352863864,57.6165237026829 +-3.8476034643825,57.7062908101662 +-3.67989271858127,57.7086276542472 +-3.6757461431484,57.618852503038 +-3.84304352863864,57.6165237026829 + + + + + +NH96 +#labelStyle + +-3.76156330495877,57.6626061703895 + + + + +NH97 + +Small Square NH97 Boundry Box +#Line2 + + +1 + +-3.84760392177622,57.7062997876991 +-3.85219102035696,57.7960653826833 +-3.68406441416069,57.7984103111289 +-3.67989313451223,57.7086366325865 +-3.84760392177622,57.7062997876991 + + + + + +NH97 +#labelStyle + +-3.76592994453419,57.7523856273427 + + + + +NH98 + +Small Square NH98 Boundry Box +#Line2 + + +1 + +-3.85219148047846,57.7960743600649 +-3.85680596704285,57.8858384425694 +-3.68826102124964,57.8881914955537 +-3.68406483257251,57.798419289321 +-3.85219148047846,57.7960743600649 + + + + + +NH98 +#labelStyle + +-3.77032262761741,57.8421635921338 + + + + +NH99 + +Small Square NH99 Boundry Box +#Line2 + + +1 + +-3.85680642991476,57.8858474197997 +-3.86144853213588,57.9756099898345 +-3.69248274698061,57.977971207873 +-3.68826144216294,57.8882004735985 +-3.85680642991476,57.8858474197997 + + + + + +NH99 +#labelStyle + +-3.77474157041534,57.9319400649515 + + + + + +NJ + +Large Square NJ Boundry Box +#Line1 + + +1 + +-3.65135535710231,57.0801169933444 +-3.69246584740402,57.9779714327966 +-2.00167999658297,57.9892319516884 +-2.00163288616208,57.090996468385 +-3.65135535710231,57.0801169933444 + + + + + +NJ00 + +Small Square NJ00 Boundry Box +#Line2 + + +1 + +-3.65135535710231,57.0801169933444 +-3.65535784359462,57.1699009890715 +-3.49006780196018,57.1719725550568 +-3.48646452824391,57.0821814893715 +-3.65135535710231,57.0801169933444 + + + + + +NJ00 +#labelStyle + +-3.57080331717474,57.1260749366665 + + + + +NJ01 + +Small Square NJ01 Boundry Box +#Line2 + + +1 + +-3.65535824505632,57.1699099682953 +-3.65938425318801,57.2596924891159 +-3.49369261542215,57.2617711600631 +-3.49006816337975,57.1719815349893 +-3.65535824505632,57.1699099682953 + + + + + +NJ01 +#labelStyle + +-3.57461773480387,57.2158708112478 + + + + +NJ02 + +Small Square NJ02 Boundry Box +#Line2 + + +1 + +-3.65938465701166,57.2597014681921 +-3.66343437844852,57.3494825144909 +-3.49733878194168,57.3515683249848 +-3.49369297896837,57.2617801398516 +-3.65938465701166,57.2597014681921 + + + + + +NJ02 +#labelStyle + +-3.57845459561914,57.305665228641 + + + + +NJ03 + +Small Square NJ03 Boundry Box +#Line2 + + +1 + +-3.66343478465339,57.3494914934197 +-3.66750841317752,57.4392710655774 +-3.5010064760472,57.4413640504921 +-3.49733914763189,57.3515773046293 +-3.66343478465339,57.3494914934197 + + + + + +NJ03 +#labelStyle + +-3.58231408277892,57.3954581893765 + + + + +NJ04 + +Small Square NJ04 Boundry Box +#Line2 + + +1 + +-3.6675088217831,57.4392800443588 +-3.6716065533221,57.529058142752 +-3.50469587419994,57.5311583372541 +-3.50100684389896,57.4413730299927 +-3.6675088217831,57.4392800443588 + + + + + +NJ04 +#labelStyle + +-3.58619638146699,57.4852496939823 + + + + +NJ05 + +Small Square NJ05 Boundry Box +#Line2 + + +1 + +-3.67160696434809,57.529067121386 +-3.6757289970047,57.6188437463867 +-3.50840715482064,57.6209511859388 +-3.504696244231,57.5311673166108 +-3.67160696434809,57.529067121386 + + + + + +NJ05 +#labelStyle + +-3.59010167892045,57.5750397429837 + + + + +NJ06 + +Small Square NJ06 Boundry Box +#Line2 + + +1 + +-3.67572941047103,57.6188527248734 +-3.67987594455327,57.7086278768488 +-3.51214049831669,57.7107425972125 +-3.50840752704893,57.6209601651517 +-3.67572941047103,57.6188527248734 + + + + + +NJ06 +#labelStyle + +-3.59403016445814,57.6648283369031 + + + + +NJ07 + +Small Square NJ07 Boundry Box +#Line2 + + +1 + +-3.67987636048008,57.7086368551882 +-3.68404759853191,57.7984105345007 +-3.51589608710976,57.80053257174 +-3.51214087276036,57.7107515762818 +-3.67987636048008,57.7086368551882 + + + + + +NJ07 +#labelStyle + +-3.59798202950955,57.7546154762597 + + + + +NJ08 + +Small Square NJ08 Boundry Box +#Line2 + + +1 + +-3.68404801693956,57.7984195126928 +-3.68824416377202,57.8881917196994 +-3.51967410566389,57.8903211101842 +-3.51589646378715,57.8005415506657 +-3.68404801693956,57.7984195126928 + + + + + +NJ08 +#labelStyle + +-3.6019574676442,57.8444011615692 + + + + +NJ09 + +Small Square NJ09 Boundry Box +#Line2 + + +1 + +-3.68824458468112,57.8882006977443 +-3.69246584740402,57.9779714327966 +-3.52347474051399,57.9801082132057 +-3.51967448459354,57.8903300889663 +-3.68824458468112,57.8882006977443 + + + + + +NJ09 +#labelStyle + +-3.60595667460145,57.9341853933437 + + + + +NJ10 + +Small Square NJ10 Boundry Box +#Line2 + + +1 + +-3.48644803642288,57.0821816849958 +-3.49005127020503,57.1719727513511 +-3.32474005386395,57.1738266587644 +-3.32153620354462,57.0840292645683 +-3.48644803642288,57.0821816849958 + + + + + +NJ10 +#labelStyle + +-3.40568580443231,57.1280345125751 + + + + +NJ11 + +Small Square NJ11 Boundry Box +#Line2 + + +1 + +-3.4900516316206,57.1719817312837 +-3.49367604349443,57.2617713570307 +-3.3279630584379,57.2636316236214 +-3.32474037522021,57.1738356393313 +-3.4900516316206,57.1719817312837 + + + + + +NJ11 +#labelStyle + +-3.40909967158345,57.2178371036338 + + + + +NJ12 + +Small Square NJ12 Boundry Box +#Line2 + + +1 + +-3.49367640703661,57.2617803368192 +-3.49732216960499,57.3515685226289 +-3.33120505131735,57.3534351793588 +-3.32796338168529,57.2636406040474 +-3.49367640703661,57.2617803368192 + + + + + +NJ12 +#labelStyle + +-3.41253362765859,57.3076382701452 + + + + +NJ13 + +Small Square NJ13 Boundry Box +#Line2 + + +1 + +-3.49732253529115,57.3515775022735 +-3.50098982306324,57.441364248816 +-3.3344661877296,57.4432373269061 +-3.33120537647131,57.353444159644 +-3.49732253529115,57.3515775022735 + + + + + +NJ13 +#labelStyle + +-3.41598783663323,57.3974380129125 + + + + +NJ14 + +Small Square NJ14 Boundry Box +#Line2 + + +1 + +-3.50099019091093,57.4413732283167 +-3.50467918032845,57.5311585362613 +-3.33774662462138,57.5330380671943 +-3.33446651480574,57.4432463070505 +-3.50099019091093,57.4413732283167 + + + + + +NJ14 +#labelStyle + +-3.41946246429654,57.4872363327398 + + + + +NJ15 + +Small Square NJ15 Boundry Box +#Line2 + + +1 + +-3.5046795503554,57.5311675156181 +-3.50839041981938,57.6209513856325 +-3.34104652068257,57.6228374011564 +-3.33774695363547,57.533047047198 +-3.5046795503554,57.5311675156181 + + + + + +NJ15 +#labelStyle + +-3.42295767827638,57.577033230431 + + + + +NJ16 + +Small Square NJ16 Boundry Box +#Line2 + + +1 + +-3.50839079204354,57.6209603648455 +-3.51212372194143,57.7107427975962 +-3.34436603637041,57.7126353297266 +-3.34104685165057,57.6228463810195 +-3.50839079204354,57.6209603648455 + + + + + +NJ16 +#labelStyle + +-3.42647364806476,57.6668287067906 + + + + +NJ17 + +Small Square NJ17 Boundry Box +#Line2 + + +1 + +-3.51212409638095,57.7107517766655 +-3.51587926911426,57.8005327728171 +-3.34770533393406,57.8024318538404 +-3.34436636930845,57.7126443094492 +-3.51212409638095,57.7107517766655 + + + + + +NJ17 +#labelStyle + +-3.43001054504374,57.7566227626228 + + + + +NJ18 + +Small Square NJ18 Boundry Box +#Line2 + + +1 + +-3.51587964578747,57.8005417517428 +-3.51965724579986,57.8903213119581 +-3.35106457743958,57.8922269744346 +-3.34770566885846,57.8024408334226 +-3.51587964578747,57.8005417517428 + + + + + +NJ18 +#labelStyle + +-3.43356854251172,57.8464153987315 + + + + +NJ19 + +Small Square NJ19 Boundry Box +#Line2 + + +1 + +-3.51965762472532,57.8903302907402 +-3.5234578385311,57.9801084156799 +-3.35444393279534,57.9820206924467 +-3.35106491436684,57.8922359538765 +-3.51965762472532,57.8903302907402 + + + + + +NJ19 +#labelStyle + +-3.43714781571018,57.9362066159203 + + + + +NJ20 + +Small Square NJ20 Boundry Box +#Line2 + + +1 + +-3.32151970973929,57.084029438496 +-3.32472352010837,57.1738268332877 +-3.15939347445751,57.1754630269339 +-3.15658919935924,57.0856600468293 +-3.32151970973929,57.084029438496 + + + + + +NJ20 +#labelStyle + +-3.24054836842181,57.1297767513438 + + + + +NJ21 + +Small Square NJ21 Boundry Box +#Line2 + + +1 + +-3.32472384146063,57.1738358138548 +-3.32794648449344,57.2636317987434 +-3.16221451663141,57.2652736053677 +-3.15939375573521,57.1754720080608 +-3.32472384146063,57.1738358138548 + + + + + +NJ21 +#labelStyle + +-3.24356152292787,57.2195853146083 + + + + +NJ22 + +Small Square NJ22 Boundry Box +#Line2 + + +1 + +-3.3279468077368,57.2636407791695 +-3.33118843694744,57.3534353550825 +-3.16505218066292,57.3550828020192 +-3.16221479956455,57.2652825863564 +-3.3279468077368,57.2636407791695 + + + + + +NJ22 +#labelStyle + +-3.24659241030695,57.3093924823559 + + + + +NJ23 + +Small Square NJ23 Boundry Box +#Line2 + + +1 + +-3.33118876209734,57.3534443353677 +-3.33444953269575,57.4432375032343 +-3.16790660245485,57.4448906180467 +-3.16505246526502,57.3550917828698 +-3.33118876209734,57.3534443353677 + + + + + +NJ23 +#labelStyle + +-3.24964117532706,57.3991982556325 + + + + +NJ24 + +Small Square NJ24 Boundry Box +#Line2 + + +1 + +-3.33444985976781,57.4432464833787 +-3.33772992868314,57.53303824413 +-3.17077791941561,57.5346970546128 +-3.16790688873957,57.4448995987593 +-3.33444985976781,57.4432464833787 + + + + + +NJ24 +#labelStyle + +-3.25270796435772,57.4890026354874 + + + + +NJ25 + +Small Square NJ25 Boundry Box +#Line2 + + +1 + +-3.33773025769313,57.5330472241337 +-3.34102978359752,57.6228375787025 +-3.17366627048009,57.6245021128843 +-3.17077820739677,57.5347060351875 +-3.33773025769313,57.5330472241337 + + + + + +NJ25 +#labelStyle + +-3.25579292539209,57.5788056229728 + + + + +NJ26 + +Small Square NJ26 Boundry Box +#Line2 + + +1 + +-3.34103011456139,57.6228465585657 +-3.34434925789413,57.7126355078862 +-3.1765717961308,57.714305794032 +-3.17366656017166,57.6245110933213 +-3.34103011456139,57.6228465585657 + + + + + +NJ26 +#labelStyle + +-3.2588962080695,57.6686072191437 + + + + +NJ27 + +Small Square NJ27 Boundry Box +#Line2 + + +1 + +-3.34434959082802,57.7126444876089 +-3.34768851382011,57.8024320326166 +-3.17949463841941,57.8041080992305 +-3.17657208754691,57.7143147743312 +-3.34434959082802,57.7126444876089 + + + + + +NJ27 +#labelStyle + +-3.26201796369825,57.7584074250582 + + + + +NJ28 + +Small Square NJ28 Boundry Box +#Line2 + + +1 + +-3.34768884874034,57.8024410121989 +-3.35104771543949,57.8922271538303 +-3.18243494098861,57.8939090296586 +-3.17949493157433,57.8041170793923 +-3.34768884874034,57.8024410121989 + + + + + +NJ28 +#labelStyle + +-3.26515834527886,57.8482062417766 + + + + +NJ29 + +Small Square NJ29 Boundry Box +#Line2 + + +1 + +-3.35104805236255,57.8922361332723 +-3.35442702865856,57.9820208724652 +-3.18539284909439,57.9837085864981 +-3.18243523589679,57.8939180096829 +-3.35104805236255,57.8922361332723 + + + + + +NJ29 +#labelStyle + +-3.26831750752775,57.9380036703616 + + + + +NJ30 + +Small Square NJ30 Boundry Box +#Line2 + + +1 + +-3.15657270380237,57.0856601990551 +-3.15937693893615,57.1754631796811 +-2.99403041104443,57.176881610837 +-2.991625844088,57.0870737877886 +-3.15657270380237,57.0856601990551 + + + + + +NJ30 +#labelStyle + +-3.0753933461658,57.1313016012015 + + + + +NJ31 + +Small Square NJ31 Boundry Box +#Line2 + + +1 + +-3.15937722020985,57.1754721608082 +-3.16219794090677,57.265273758639 +-2.99644935641944,57.2666970562072 +-2.9940306522302,57.1768905924495 +-3.15937722020985,57.1754721608082 + + + + + +NJ31 +#labelStyle + +-3.07800564485749,57.2211153920119 + + + + +NJ32 + +Small Square NJ32 Boundry Box +#Line2 + + +1 + +-3.16219822383588,57.2652827396278 +-3.16503556449828,57.3550829558171 +-2.99888255571923,57.3565111435009 +-2.99644959902482,57.2667060376838 +-3.16219822383588,57.2652827396278 + + + + + +NJ32 +#labelStyle + +-3.08063331879166,57.3109278127209 + + + + +NJ33 + +Small Square NJ33 Boundry Box +#Line2 + + +1 + +-3.16503584909633,57.3550919366677 +-3.16788994561155,57.4448907723737 +-3.00133012550158,57.4463238740748 +-2.9988827997558,57.3565201248417 +-3.16503584909633,57.3550919366677 + + + + + +NJ33 +#labelStyle + +-3.08327649350703,57.4007388645872 + + + + +NJ34 + +Small Square NJ34 Boundry Box +#Line2 + + +1 + +-3.16789023189219,57.4448997530864 +-3.17076122165305,57.5346972094716 +-3.00379218361581,57.5361352492923 +-3.00133037098107,57.4463328552801 +-3.16789023189219,57.4448997530864 + + + + + +NJ34 +#labelStyle + +-3.08593529593136,57.4905485488748 + + + + +NJ35 + +Small Square NJ35 Boundry Box +#Line2 + + +1 + +-3.1707615096301,57.5347061900464 +-3.17364953155567,57.6245022682774 +-3.00626884922063,57.6259452705231 +-3.00379243055007,57.5361442303621 +-3.1707615096301,57.5347061900464 + + + + + +NJ35 +#labelStyle + +-3.08860985440067,57.5803568668533 + + + + +NJ36 + +Small Square NJ36 Boundry Box +#Line2 + + +1 + +-3.17364982124311,57.6245112487144 +-3.17655501579994,57.7143059499621 +-3.0087602428023,57.7157539391431 +-3.00626909762164,57.6259542514576 +-3.17364982124311,57.6245112487144 + + + + + +NJ36 +#labelStyle + +-3.09130029867869,57.6701638197973 + + + + +NJ37 + +Small Square NJ37 Boundry Box +#Line2 + + +1 + +-3.17655530721189,57.7143149302615 +-3.17947781643549,57.8041082557003 +-3.01126648619311,57.8055612565346 +-3.00876049268218,57.7157629199424 +-3.17655530721189,57.7143149302615 + + + + + +NJ37 +#labelStyle + +-3.09400675997676,57.7599694089869 + + + + +NJ38 + +Small Square NJ38 Boundry Box +#Line2 + + +1 + +-3.17947810958624,57.8041172358622 +-3.18241807710299,57.8939091866707 +-3.01378770259015,57.8953672240857 +-3.01126673756411,57.8055702371988 +-3.17947810958624,57.8041172358622 + + + + + +NJ38 +#labelStyle + +-3.09672937097393,57.8497736357069 + + + + +NJ39 + +Small Square NJ39 Boundry Box +#Line2 + + +1 + +-3.18241837200697,57.8939181666951 +-3.18537594305635,57.9837087440553 +-3.0163240165744,57.9851718431906 +-3.01378795546466,57.895376204615 +-3.18241837200697,57.8939181666951 + + + + + +NJ39 +#labelStyle + +-3.09946826583746,57.9395765012472 + + + + +NJ40 + +Small Square NJ40 Boundry Box +#Line2 + + +1 + +-2.9916093470125,57.0870739183081 +-2.9940138739921,57.1768817418036 +-2.82865321239253,57.1780823682234 +-2.82664846757558,57.0882704455104 +-2.9916093470125,57.0870739183081 + + + + + +NJ40 +#labelStyle + +-2.91022307624444,57.1326090168288 + + + + +NJ41 + +Small Square NJ41 Boundry Box +#Line2 + + +1 + +-2.99401411517386,57.1768907234162 +-2.99643277915135,57.2666971876232 +-2.83066994570318,57.2679019335718 +-2.8286534134749,57.1780913502469 +-2.99401411517386,57.1768907234162 + + + + + +NJ41 +#labelStyle + +-2.91243439497172,57.2224272901846 + + + + +NJ42 + +Small Square NJ42 Boundry Box +#Line2 + + +1 + +-2.99643302175269,57.2667061690998 +-2.99886593799851,57.3565112753684 +-2.83269856373197,57.3577201609146 +-2.83067014796919,57.2679109154614 +-2.99643302175269,57.2667061690998 + + + + + +NJ42 +#labelStyle + +-2.91465872994091,57.3122442152364 + + + + +NJ43 + +Small Square NJ43 Boundry Box +#Line2 + + +1 + +-2.99886618203103,57.3565202567093 +-3.00131346708944,57.446324006396 +-2.83473916367414,57.4475370517766 +-2.8326987671913,57.3577291426704 +-2.99886618203103,57.3565202567093 + + + + + +NJ43 +#labelStyle + +-2.91689618744261,57.4020597934253 + + + + +NJ44 + +Small Square NJ44 Boundry Box +#Line2 + + +1 + +-3.00131371256485,57.4463329876014 +-3.0037754842715,57.5361353820695 +-2.83679184380201,57.5373526076911 +-2.83473936833656,57.4475460333989 +-3.00131371256485,57.4463329876014 + + + + + +NJ44 +#labelStyle + +-2.91914687494364,57.4918740261997 + + + + +NJ45 + +Small Square NJ45 Boundry Box +#Line2 + + +1 + +-3.00377573120166,57.5361443631394 +-3.00625210870141,57.6259454037585 +-2.83885670347997,57.6271668301997 +-2.8367920496774,57.53736158918 +-3.00377573120166,57.5361443631394 + + + + + +NJ45 +#labelStyle + +-2.92141090110335,57.5816869150153 + + + + +NJ46 + +Small Square NJ46 Boundry Box +#Line2 + + +1 + +-3.0062523570983,57.625954384693 +-3.00874346086345,57.715754072839 +-2.84093384317957,57.7169797208521 +-2.83885691057832,57.6271758115553 +-3.0062523570983,57.625954384693 + + + + + +NJ46 +#labelStyle + +-2.9236883757901,57.6714984613353 + + + + +NJ47 + +Small Square NJ47 Boundry Box +#Line2 + + +1 + +-3.00874371073918,57.7157630536384 +-3.01124966258787,57.8055613906933 +-2.84302336449495,57.806791281206 +-2.84093405151098,57.7169887020746 +-3.00874371073918,57.7157630536384 + + + + + +NJ47 +#labelStyle + +-2.92597941009805,57.7613086666302 + + + + +NJ48 + +Small Square NJ48 Boundry Box +#Line2 + + +1 + +-3.01124991395469,57.8055703713575 +-3.01377083706972,57.8953673587094 +-2.8451253701585,57.8966015128274 +-2.84302357406964,57.8068002622956 +-3.01124991395469,57.8055703713575 + + + + + +NJ48 +#labelStyle + +-2.92828411636427,57.8511175323775 + + + + +NJ49 + +Small Square NJ49 Boundry Box +#Line2 + + +1 + +-3.01377108994003,57.8953763392388 +-3.01630710888791,57.9851719782818 +-2.84723996405677,57.9864104172899 +-2.8451255809868,57.8966104937841 +-3.01377108994003,57.8953763392388 + + + + + +NJ49 +#labelStyle + +-2.93060260818608,57.9409250600618 + + + + +NJ50 + +Small Square NJ50 Boundry Box +#Line2 + + +1 + +-2.82663196921451,57.0882705543197 +-2.82863667404417,57.1780824774055 +-2.66326422852562,57.1790652633249 +-2.66165940090566,57.0892499844927 +-2.82663196921451,57.0882705543197 + + + + + +NJ50 +#labelStyle + +-2.7450398985888,57.1336989593619 + + + + +NJ51 + +Small Square NJ51 Boundry Box +#Line2 + + +1 + +-2.82863687512253,57.178091459429 +-2.83065336712848,57.2679020431285 +-2.66487865365704,57.2688882014244 +-2.66326438949503,57.1790742456849 +-2.82863687512253,57.178091459429 + + + + + +NJ51 +#labelStyle + +-2.74685013223938,57.2235209699708 + + + + +NJ52 + +Small Square NJ52 Boundry Box +#Line2 + + +1 + +-2.83065356939046,57.2679110250181 +-2.83268194469397,57.3577202708477 +-2.6665025932377,57.3587098179513 +-2.66487881557404,57.2688971836521 +-2.83065356939046,57.2679110250181 + + + + + +NJ52 +#labelStyle + +-2.74867102197122,57.313341650452 + + + + +NJ53 + +Small Square NJ53 Boundry Box +#Line2 + + +1 + +-2.83268214814924,57.3577292526036 +-2.83472250393391,57.4475371620881 +-2.66813612508557,57.4485301145684 +-2.66650275611002,57.358718800047 +-2.83268214814924,57.3577292526036 + + + + + +NJ53 +#labelStyle + +-2.7505026548108,57.4031610023984 + + + + +NJ54 + +Small Square NJ54 Boundry Box +#Line2 + + +1 + +-2.83472270859225,57.4475461437104 +-2.83677514311869,57.5373527183828 +-2.66977932788112,57.5383490929479 +-2.66813628892103,57.4485390965321 +-2.83472270859225,57.4475461437104 + + + + + +NJ54 +#labelStyle + +-2.75234511874776,57.4929790274122 + + + + +NJ55 + +Small Square NJ55 Boundry Box +#Line2 + + +1 + +-2.83677534898997,57.5373616998717 +-2.8388399616107,57.6271669412734 +-2.67143228117925,57.6281667547722 +-2.66977949268764,57.5383580747799 +-2.83677534898997,57.5373616998717 + + + + + +NJ55 +#labelStyle + +-2.75419850274825,57.5827957271046 + + + + +NJ56 + +Small Square NJ56 Boundry Box +#Line2 + + +1 + +-2.83884016870492,57.627175922629 +-2.84091705987949,57.7169798323096 +-2.6730950654214,57.7179831017332 +-2.67143244696483,57.6281757364726 +-2.83884016870492,57.627175922629 + + + + + +NJ56 +#labelStyle + +-2.75606289676845,57.672611103096 + + + + +NJ57 + +Small Square NJ57 Boundry Box +#Line2 + + +1 + +-2.84091726820675,57.7169888135322 +-2.84300653951719,57.8067913930494 +-2.6747677619479,57.8077981355326 +-2.67309523219412,57.7179920833022 +-2.84091726820675,57.7169888135322 + + + + + +NJ57 +#labelStyle + +-2.75793839176832,57.7624251570156 + + + + +NJ58 + +Small Square NJ58 Boundry Box +#Line2 + + +1 + +-2.8430067490877,57.806800374139 +-2.84510850325412,57.8966016250585 +-2.67645045301051,57.8976118578816 +-2.67476792971595,57.8078071169703 +-2.8430067490877,57.806800374139 + + + + + +NJ58 +#labelStyle + +-2.75982507972556,57.8522378905016 + + + + +NJ59 + +Small Square NJ59 Boundry Box +#Line2 + + +1 + +-2.84510871407822,57.8966106060153 +-2.84722305497478,57.9864105299108 +-2.67814322178519,57.9874242705013 +-2.67645062178216,57.8976208391883 +-2.84510871407822,57.8966106060153 + + + + + +NJ59 +#labelStyle + +-2.7617230536499,57.942049305201 + + + + +NJ60 + +Small Square NJ60 Boundry Box +#Line2 + + +1 + +-2.66164290149217,57.0892500715886 +-2.66324768911629,57.1790653507192 +-2.49786581051493,57.1798302668599 +-2.49666097619518,57.0900123756719 +-2.66164290149217,57.0892500715886 + + + + + +NJ60 +#labelStyle + +-2.57984615427385,57.1345713963976 + + + + +NJ61 + +Small Square NJ61 Boundry Box +#Line2 + + +1 + +-2.66324785008168,57.1790743330792 +-2.66486207401273,57.2688882891186 +-2.49907785051734,57.269655830263 +-2.49786593136374,57.1798392494818 +-2.66324785008168,57.1790743330792 + + + + + +NJ61 +#labelStyle + +-2.58125521678894,57.224396398724 + + + + +NJ62 + +Small Square NJ62 Boundry Box +#Line2 + + +1 + +-2.66486223592568,57.2688972713463 +-2.66648597312132,57.3587099059469 +-2.50029703384946,57.3594800848866 +-2.49907797207757,57.2696648127538 +-2.66486223592568,57.2688972713463 + + + + + +NJ62 +#labelStyle + +-2.58267257427471,57.314220085475 + + + + +NJ63 + +Small Square NJ63 Boundry Box +#Line2 + + +1 + +-2.66648613598958,57.3587188880425 +-2.66811946425812,57.4485302028667 +-2.50152341894032,57.4493030325006 +-2.50029715612694,57.3594890672467 +-2.66648613598958,57.3587188880425 + + + + + +NJ63 +#labelStyle + +-2.58409829448043,57.4040424583653 + + + + +NJ64 + +Small Square NJ64 Boundry Box +#Line2 + + +1 + +-2.6681196280895,57.4485391848305 +-2.66976262610163,57.5383491815506 +-2.50275706486658,57.5391246748857 +-2.50152354194092,57.4493120147301 +-2.6681196280895,57.4485391848305 + + + + + +NJ64 +#labelStyle + +-2.58553244590525,57.4938635191201 + + + + +NJ65 + +Small Square NJ65 Boundry Box +#Line2 + + +1 + +-2.66976279090405,57.5383581633826 +-2.67141553820477,57.6281668436807 +-2.50399803136152,57.6289450138338 +-2.50275718859624,57.5391336569848 +-2.66976279090405,57.5383581633826 + + + + + +NJ65 +#labelStyle + +-2.5869750978086,57.5836832694753 + + + + +NJ66 + +Small Square NJ66 Boundry Box +#Line2 + + +1 + +-2.67141570398622,57.6281758253811 +-2.67307828100697,57.717983190949 +-2.50524637882414,57.7187640511476 +-2.50399815582624,57.6289539958026 +-2.67141570398622,57.6281758253811 + + + + + +NJ66 +#labelStyle + +-2.58842632022073,57.6735017111767 + + + + +NJ67 + +Small Square NJ67 Boundry Box +#Line2 + + +1 + +-2.67307844777554,57.7179921725181 +-2.67475093584654,57.8077982250573 +-2.50650216832843,57.8085817886408 +-2.50524650403001,57.7187730329863 +-2.67307844777554,57.7179921725181 + + + + + +NJ67 +#labelStyle + +-2.58988618395338,57.7633188459811 + + + + +NJ68 + +Small Square NJ68 Boundry Box +#Line2 + + +1 + +-2.6747511036104,57.8078072064951 +-2.67643358497319,57.8976119477167 +-2.50776546163277,57.8983982281378 +-2.50650229428157,57.8085907703496 +-2.6747511036104,57.8078072064951 + + + + + +NJ68 +#labelStyle + +-2.59135476061072,57.8531346756552 + + + + +NJ69 + +Small Square NJ69 Boundry Box +#Line2 + + +1 + +-2.67643375374063,57.8976209290235 +-2.6781263115608,57.9874243606483 +-2.50903632118954,57.9882133714741 +-2.50776558833941,57.8984072097169 +-2.67643375374063,57.8976209290235 + + + + + +NJ69 +#labelStyle + +-2.59283212260038,57.942949201976 + + + + +NJ70 + +Small Square NJ70 Boundry Box +#Line2 + + +1 + +-2.49664447596253,57.0900124410517 +-2.49784927027978,57.1798303324638 +-2.33246031027038,57.1803773560362 +-2.33165552638835,57.0905575964254 +-2.49664447596253,57.0900124410517 + + + + + +NJ70 +#labelStyle + +-2.4146441853112,57.1352263019964 + + + + +NJ71 + +Small Square NJ71 Boundry Box +#Line2 + + +1 + +-2.49784939112457,57.1798393150857 +-2.49906127004046,57.269655896092 +-2.33326990737055,57.2702047971238 +-2.33246039099283,57.1803863388454 +-2.49784939112457,57.1798393150857 + + + + + +NJ71 +#labelStyle + +-2.41565200969838,57.2250535503097 + + + + +NJ72 + +Small Square NJ72 Boundry Box +#Line2 + + +1 + +-2.49906139159666,57.2696648785829 +-2.50028041289372,57.3594801509419 +-2.33408427604223,57.3600309385833 +-2.33326998856821,57.2702137798029 +-2.49906139159666,57.2696648785829 + + + + + +NJ72 +#labelStyle + +-2.41666576720611,57.314879493974 + + + + +NJ73 + +Small Square NJ73 Boundry Box +#Line2 + + +1 + +-2.50028053516714,57.359489133302 +-2.50150675726662,57.4493030987832 +-2.33490345531669,57.4498557822611 +-2.334084357719,57.3600399211325 +-2.50028053516714,57.359489133302 + + + + + +NJ73 +#labelStyle + +-2.41768550629624,57.4047041347956 + + + + +NJ74 + +Small Square NJ74 Boundry Box +#Line2 + + +1 + +-2.50150688026313,57.4493120810127 +-2.50274036223388,57.5391247413968 +-2.33572748465782,57.5396793300155 +-2.33490353747648,57.4498647646806 +-2.50150688026313,57.4493120810127 + + + + + +NJ74 +#labelStyle + +-2.41871127596708,57.494527474592 + + + + +NJ75 + +Small Square NJ75 Boundry Box +#Line2 + + +1 + +-2.50274048595943,57.5391337234959 +-2.50398128752679,57.6289450805745 +-2.33655640396817,57.6295015837167 +-2.3357275673046,57.5396883123055 +-2.50274048595943,57.5391337234959 + + + + + +NJ75 +#labelStyle + +-2.41974312576081,57.5843495151924 + + + + +NJ76 + +Small Square NJ76 Boundry Box +#Line2 + + +1 + +-2.50398141198738,57.6289540625433 +-2.50522959354234,57.718764118119 +-2.33739025359503,57.7193225452466 +-2.33655648710596,57.6295105658774 +-2.50398141198738,57.6289540625433 + + + + + +NJ76 +#labelStyle + +-2.42078110577104,57.6741702584374 + + + + +NJ77 + +Small Square NJ77 Boundry Box +#Line2 + + +1 + +-2.50522971874404,57.7187730999578 +-2.50648534135249,57.8085818558441 +-2.33822907433663,57.8091422164991 +-2.33739033722789,57.7193315272782 +-2.50522971874404,57.7187730999578 + + + + + +NJ77 +#labelStyle + +-2.42182526665041,57.763989706179 + + + + +NJ78 + +Small Square NJ78 Boundry Box +#Line2 + + +1 + +-2.50648546730146,57.8085908375529 +-2.50774859271359,57.8983982955741 +-2.33907290744842,57.8989605993797 +-2.33822915846866,57.8091511984018 +-2.50648546730146,57.8085908375529 + + + + + +NJ78 +#labelStyle + +-2.42287565961846,57.8538078602807 + + + + +NJ79 + +Small Square NJ79 Boundry Box +#Line2 + + +1 + +-2.50774871941602,57.8984072771533 +-2.50901941007593,57.9882134391446 +-2.33992179464943,57.9887776958057 +-2.33907299208376,57.8989695811537 +-2.50774871941602,57.8984072771533 + + + + + +NJ79 +#labelStyle + +-2.4239323364695,57.9436247226172 + + + + +NJ80 + +Small Square NJ80 Boundry Box +#Line2 + + +1 + +-2.33163902556987,57.0905576400873 +-2.33244376944464,57.1803773998477 +-2.16705008033155,57.1807065145534 +-2.16664538505057,57.0908856305743 +-2.33163902556987,57.0905576400873 + + + + + +NJ80 +#labelStyle + +-2.24943633444162,57.1356636566853 + + + + +NJ81 + +Small Square NJ81 Boundry Box +#Line2 + + +1 + +-2.33244385016307,57.1803863826569 +-2.33325332629826,57.2702048410857 +-2.1674571959415,57.2705350855839 +-2.1670501209238,57.1807154974753 +-2.33244385016307,57.1803863826569 + + + + + +NJ81 +#labelStyle + +-2.25004287278487,57.2254924051087 + + + + +NJ82 + +Small Square NJ82 Boundry Box +#Line2 + + +1 + +-2.33325340749189,57.2702138237648 +-2.33406765448621,57.3600309826963 +-2.16786671093816,57.3603623624945 +-2.16745723677271,57.2705440683763 +-2.33325340749189,57.2702138237648 + + + + + +NJ82 +#labelStyle + +-2.25065298186951,57.3153198561821 + + + + +NJ83 + +Small Square NJ83 Boundry Box +#Line2 + + +1 + +-2.33406773615892,57.3600399652455 +-2.33488679303778,57.4498558265259 +-2.16827864494911,57.4501883471777 +-2.16786675201029,57.3603713451575 +-2.33406773615892,57.3600399652455 + + + + + +NJ83 +#labelStyle + +-2.25126669086271,57.4051460117729 + + + + +NJ84 + +Small Square NJ84 Boundry Box +#Line2 + + +1 + +-2.33488687519349,57.4498648089455 +-2.33571078141493,57.539679374433 +-2.16869301781949,57.5400130415384 +-2.16827868626413,57.4501973297116 +-2.33488687519349,57.4498648089455 + + + + + +NJ84 +#labelStyle + +-2.2518840292545,57.4949708737603 + + + + +NJ85 + +Small Square NJ85 Boundry Box +#Line2 + + +1 + +-2.3357108640576,57.539688356723 +-2.33653965951821,57.6295016282875 +-2.16910984961505,57.629836447494 +-2.16869305937939,57.5400220239434 +-2.3357108640576,57.539688356723 + + + + + +NJ85 +#labelStyle + +-2.25250502686229,57.584794444036 + + + + +NJ86 + +Small Square NJ86 Boundry Box +#Line2 + + +1 + +-2.33653974265187,57.6295106104482 +-2.33737346769291,57.7193225899715 +-2.16952916062519,57.7196585669742 +-2.16910989142186,57.6298454297702 +-2.33653974265187,57.6295106104482 + + + + + +NJ86 +#labelStyle + +-2.25312971383537,57.6746167245037 + + + + +NJ87 + +Small Square NJ87 Boundry Box +#Line2 + + +1 + +-2.33737355132161,57.7193315720032 +-2.33821224673524,57.8091422613789 +-2.16995097136606,57.809479401921 +-2.16952920268094,57.7196675491219 +-2.33737355132161,57.7193315720032 + + + + + +NJ87 +#labelStyle + +-2.25375812065951,57.7644377170793 + + + + +NJ88 + +Small Square NJ88 Boundry Box +#Line2 + + +1 + +-2.33821233086308,57.8091512432816 +-2.33905603789856,57.8989606444152 +-2.17037530258378,57.8992989542886 +-2.16995101367283,57.8094883839403 +-2.33821233086308,57.8091512432816 + + + + + +NJ88 +#labelStyle + +-2.25439027816171,57.8542574236906 + + + + +NJ89 + +Small Square NJ89 Boundry Box +#Line2 + + +1 + +-2.3390561225297,57.8989696261891 +-2.33990488289988,57.9887777409975 +-2.17080217525757,57.9891172260437 +-2.17037534514364,57.8993079361798 +-2.3390561225297,57.8989696261891 + + + + + +NJ89 +#labelStyle + +-2.25502621751487,57.9440758462776 + + + + +NJ90 + +Small Square NJ90 Boundry Box +#Line2 + + +1 + +-2.16662888387965,57.0908856525169 +-2.16703353915049,57.1807065365712 +-2.00163747365856,57.1808177326049 +-2.00163288616208,57.090996468385 +-2.16662888387965,57.0908856525169 + + + + + +NJ90 +#labelStyle + +-2.08422494492746,57.1358834474601 + + + + +NJ91 + +Small Square NJ91 Boundry Box +#Line2 + + +1 + +-2.16703357973873,57.1807155194931 +-2.167440614511,57.2705351076774 +-2.00164208838138,57.270646685763 +-2.00163747411869,57.1808267155649 +-2.16703357973873,57.1807155194931 + + + + + +NJ91 +#labelStyle + +-2.08443016839431,57.225712950019 + + + + +NJ92 + +Small Square NJ92 Boundry Box +#Line2 + + +1 + +-2.16744065533818,57.2705440904697 +-2.16785008902099,57.3603623846639 +-2.00164673009161,57.3604743466652 +-2.00164208884419,57.2706556685936 +-2.16744065533818,57.2705440904697 + + + + + +NJ92 +#labelStyle + +-2.08463659990504,57.3155411588985 + + + + +NJ93 + +Small Square NJ93 Boundry Box +#Line2 + + +1 + +-2.16785013008906,57.360371367327 +-2.16826198230609,57.4501883694234 +-2.0016513990102,57.4503007172199 +-2.00164673055714,57.3604833293668 +-2.16785013008906,57.360371367327 + + + + + +NJ93 +#labelStyle + +-2.08484424932772,57.4053680759966 + + + + +NJ94 + +Small Square NJ94 Boundry Box +#Line2 + + +1 + +-2.16826202361703,57.4501973519573 +-2.16867631420949,57.5400130638609 +-2.00165609536055,57.5401257993479 +-2.00165139947846,57.4503096997925 +-2.16826202361703,57.4501973519573 + + + + + +NJ94 +#labelStyle + +-2.08505312663969,57.4951937032237 + + + + +NJ95 + +Small Square NJ95 Boundry Box +#Line2 + + +1 + +-2.16867635576529,57.5400220462658 +-2.16909310479495,57.6298364698936 +-2.00166081936851,57.6299495949822 +-2.00165609583156,57.5401347817917 +-2.16867635576529,57.5400220462658 + + + + + +NJ95 +#labelStyle + +-2.08526324192903,57.5850180425029 + + + + +NJ96 + +Small Square NJ96 Boundry Box +#Line2 + + +1 + +-2.16909314659763,57.6298454521698 +-2.16951237434986,57.7196585894512 +-2.0016655712625,57.7197721060689 +-2.0016608198423,57.6299585772975 +-2.16909314659763,57.6298454521698 + + + + + +NJ96 +#labelStyle + +-2.08547460539609,57.6748410957694 + + + + +NJ97 + +Small Square NJ97 Boundry Box +#Line2 + + +1 + +-2.16951241640146,57.7196675715989 +-2.16993414338837,57.8094794244759 +-2.00167035127345,57.8095933345662 +-2.00166557173909,57.7197810882559 +-2.16951241640146,57.7196675715989 + + + + + +NJ97 +#labelStyle + +-2.08568722735511,57.7646628649714 + + + + +NJ98 + +Small Square NJ98 Boundry Box +#Line2 + + +1 + +-2.16993418569095,57.8094884064952 +-2.1703584326545,57.8992989769218 +-2.00167515963489,57.899413282445 +-2.00167035175286,57.809602316625 +-2.16993418569095,57.8094884064952 + + + + + +NJ98 +#labelStyle + +-2.08590111823573,57.8544833520691 + + + + +NJ99 + +Small Square NJ99 Boundry Box +#Line2 + + +1 + +-2.17035847521014,57.8993079588129 +-2.17078526312543,57.9891172487555 +-2.00167999658297,57.9892319516884 +-2.00167516011715,57.8994222643758 +-2.17035847521014,57.8993079588129 + + + + + +NJ99 +#labelStyle + +-2.08611628858466,57.9443025590354 + + + + + +NK + +Large Square NK Boundry Box +#Line1 + + +1 + +-2.00161638487212,57.0909964686078 +-2.0016630843216,57.9892319519194 +-0.310874700710743,57.9780176165757 +-0.351891591122566,57.0801615149589 +-2.00161638487212,57.0909964686078 + + + + + +NK00 + +Small Square NK00 Boundry Box +#Line2 + + +1 + +-2.00161638487212,57.0909964686078 +-2.00162093235749,57.1808177328284 +-1.8362248434229,57.180711006879 +-1.83662036391162,57.0908901065705 +-2.00161638487212,57.0909964686078 + + + + + +NK00 +#labelStyle + +-1.91901236034482,57.1358856677866 + + + + +NK01 + +Small Square NK01 Boundry Box +#Line2 + + +1 + +-2.00162093281361,57.1808267157884 +-2.00162550682989,57.2706466859873 +-1.83582695705562,57.2705395943241 +-1.83622480375089,57.1807199898025 +-2.00162093281361,57.1808267157884 + + + + + +NK01 +#labelStyle + +-1.91881625919068,57.2257151784573 + + + + +NK02 + +Small Square NK02 Boundry Box +#Line2 + + +1 + +-2.00162550728867,57.270655668818 +-2.00163010805246,57.3604743468904 +-1.83542672527418,57.3603668877335 +-1.83582691715002,57.2705485771181 +-2.00162550728867,57.270655668818 + + + + + +NK02 +#labelStyle + +-1.91861900327528,57.3155433954902 + + + + +NK03 + +Small Square NK03 Boundry Box +#Line2 + + +1 + +-2.00163010851393,57.3604833295919 +-2.00163473624421,57.4503007174459 +-1.83502412889285,57.4501928890005 +-1.83542668513308,57.3603758703982 +-2.00163010851393,57.3604833295919 + + + + + +NK03 +#labelStyle + +-1.91842058316614,57.4053703207837 + + + + +NK04 + +Small Square NK04 Boundry Box +#Line2 + + +1 + +-2.00163473670839,57.4503097000185 +-2.00163939162656,57.5401257995747 +-1.83461914851324,57.5400176000307 +-1.83502408851433,57.4502018715361 +-2.00163473670839,57.4503097000185 + + + + + +NK04 +#labelStyle + +-1.91822098932634,57.4951959562485 + + + + +NK05 + +Small Square NK05 Boundry Box +#Line2 + + +1 + +-2.00163939209346,57.5401347820185 +-2.0016440744234,57.6299495952099 +-1.83421176452131,57.6298410227421 +-1.83461910789534,57.5400265824373 +-2.00163939209346,57.5401347820185 + + + + + +NK05 +#labelStyle + +-1.91802021211312,57.5850203038079 + + + + +NK06 + +Small Square NK06 Boundry Box +#Line2 + + +1 + +-2.00164407489306,57.6299585775252 +-2.00164878486113,57.7197721062974 +-1.83380195708443,57.7196631590653 +-1.83421172366206,57.6298500050201 +-2.00164407489306,57.6299585775252 + + + + + +NK06 +#labelStyle + +-1.91781824177637,57.6748433653977 + + + + +NK07 + +Small Square NK07 Boundry Box +#Line2 + + +1 + +-2.00164878533356,57.7197810884843 +-2.00165352316865,57.8095933347956 +-1.83338970614827,57.8094840109428 +-1.83380191598183,57.7196721412146 +-2.00164878533356,57.7197810884843 + + + + + +NK07 +#labelStyle + +-1.91761506845716,57.7646651429663 + + + + +NK08 + +Small Square NK08 Boundry Box +#Line2 + + +1 + +-2.00165352364388,57.8096023168543 +-2.00165828957745,57.8994132826751 +-1.83297499143379,57.8993035803298 +-1.83338966480032,57.8094929929638 +-2.00165352364388,57.8096023168543 + + + + + +NK08 +#labelStyle + +-1.91741068218619,57.8544856384744 + + + + +NK09 + +Small Square NK09 Boundry Box +#Line2 + + +1 + +-2.0016582900555,57.899422264606 +-2.0016630843216,57.9892319519194 +-1.832557792434,57.9891218691935 +-1.83297494983843,57.8993125622227 +-2.0016582900555,57.899422264606 + + + + + +NK09 +#labelStyle + +-1.91720507288233,57.9443048538951 + + + + +NK10 + +Small Square NK10 Boundry Box +#Line2 + + +1 + +-1.83660386273605,57.0908900850733 +-1.83620830223715,57.1807109853081 +-1.67081454279816,57.1803863405588 +-1.67161015249,57.0905665482902 +-1.83660386273605,57.0908900850733 + + + + + +NK10 +#labelStyle + +-1.75380092437581,57.1356703176014 + + + + +NK11 + +Small Square NK11 Boundry Box +#Line2 + + +1 + +-1.83620826256113,57.1807199682316 +-1.8358103756204,57.2705395726793 +-1.67001417433181,57.2702138144745 +-1.6708144629959,57.1803953233712 +-1.83620826256113,57.1807199682316 + + + + + +NK11 +#labelStyle + +-1.75320350794542,57.2254990903597 + + + + +NK12 + +Small Square NK12 Boundry Box +#Line2 + + +1 + +-1.83581033571076,57.2705485554733 +-1.83541010335224,57.3603668660144 +-1.66920908825962,57.3600399889307 +-1.6700140940597,57.2702227971569 +-1.83581033571076,57.2705485554733 + + + + + +NK12 +#labelStyle + +-1.75260257405177,57.3153265658929 + + + + +NK13 + +Small Square NK13 Boundry Box +#Line2 + + +1 + +-1.83541006320708,57.3603758486791 +-1.83500746624502,57.4501928672067 +-1.6683992459921,57.449864865775 +-1.66920900751382,57.3600489714832 +-1.83541006320708,57.3603758486791 + + + + + +NK13 +#labelStyle + +-1.75199809396322,57.4051527460692 + + + + +NK14 + +Small Square NK14 Boundry Box +#Line2 + + +1 + +-1.83500742586241,57.4502018497423 +-1.83460244489839,57.5400175781618 +-1.66758460851202,57.5396884468673 +-1.66839916476875,57.4498738481979 +-1.83500742586241,57.4502018497423 + + + + + +NK14 +#labelStyle + +-1.75139003863008,57.4949776327691 + + + + +NK15 + +Small Square NK15 Boundry Box +#Line2 + + +1 + +-1.83460240427638,57.5400265605685 +-1.83419501969632,57.6298410007979 +-1.66676513636844,57.6295107340792 +-1.66758452680718,57.5396974291607 +-1.83460240427638,57.5400265605685 + + + + + +NK15 +#labelStyle + +-1.75077837868019,57.5848012278851 + + + + +NK16 + +Small Square NK16 Boundry Box +#Line2 + + +1 + +-1.83419497883294,57.6298499830758 +-1.83378517080417,57.7196631370452 +-1.66594078967071,57.7193317292939 +-1.66676505417814,57.6295197162433 +-1.83419497883294,57.6298499830758 + + + + + +NK16 +#labelStyle + +-1.75016308441446,57.6746235333221 + + + + +NK17 + +Small Square NK17 Boundry Box +#Line2 + + +1 + +-1.83378512969742,57.7196721191946 +-1.83337287816559,57.8094839888466 +-1.66511152808236,57.8091514344069 +-1.66594070699094,57.7193407113289 +-1.83378512969742,57.7196721191946 + + + + + +NK17 +#labelStyle + +-1.74954412580232,57.764444550997 + + + + +NK18 + +Small Square NK18 Boundry Box +#Line2 + + +1 + +-1.83337283681346,57.8094929708676 +-1.83295812149948,57.899303558157 +-1.66427731081489,57.898969851325 +-1.66511144490908,57.8091604163129 +-1.83337283681346,57.8094929708676 + + + + + +NK18 +#labelStyle + +-1.74892147247712,57.8542642828388 + + + + +NK19 + +Small Square NK19 Boundry Box +#Line2 + + +1 + +-1.83295807989992,57.8993125400499 +-1.83254088029679,57.9891218469438 +-1.6634380966214,57.9887869819671 +-1.66427722714398,57.8989788331023 +-1.83295807989992,57.8993125400499 + + + + + +NK19 +#labelStyle + +-1.74829509373138,57.9440827307886 + + + + +NK20 + +Small Square NK20 Boundry Box +#Line2 + + +1 + +-1.67159365166222,57.0905665050737 +-1.67079800196304,57.1803862971943 +-1.50540892475077,57.1798437433224 +-1.50660458588364,57.0900258031503 +-1.67159365166222,57.0905665050737 + + + + + +NK20 +#labelStyle + +-1.58859298060066,57.135237403312 + + + + +NK21 + +Small Square NK21 Boundry Box +#Line2 + + +1 + +-1.67079792215676,57.1803952800067 +-1.66999759325007,57.2702137709613 +-1.50420611236749,57.2696693559651 +-1.50540880482204,57.1798527259492 +-1.67079792215676,57.1803952800067 + + + + + +NK21 +#labelStyle + +-1.58759427732672,57.2250646921818 + + + + +NK22 + +Small Square NK22 Boundry Box +#Line2 + + +1 + +-1.66999751297392,57.2702227536437 +-1.66919246669405,57.360039945268 +-1.50299621060876,57.3594936600811 +-1.50420599173271,57.2696783384609 +-1.66999751297392,57.2702227536437 + + + + + +NK22 +#labelStyle + +-1.58658969420135,57.3148906766107 + + + + +NK23 + +Small Square NK23 Boundry Box +#Line2 + + +1 + +-1.6691923859442,57.3600489278205 +-1.66838258370357,57.4498648219621 +-1.50177916148715,57.4493166574424 +-1.50299608926215,57.3595026424462 +-1.6691923859442,57.3600489278205 + + + + + +NK23 +#labelStyle + +-1.58557918319812,57.4047153584065 + + + + +NK24 + +Small Square NK24 Boundry Box +#Line2 + + +1 + +-1.66838250247613,57.449873804385 +-1.66756790525942,57.5396884029035 +-1.5005549063725,57.5391383498317 +-1.50177903942289,57.4493256396768 +-1.66838250247613,57.449873804385 + + + + + +NK24 +#labelStyle + +-1.58456269575894,57.4945387393885 + + + + +NK25 + +Small Square NK25 Boundry Box +#Line2 + + +1 + +-1.66756782355047,57.5396973851969 +-1.66674839190869,57.6295106899637 +-1.49932338598298,57.628958739043 +-1.50055478358468,57.5391473319357 +-1.66756782355047,57.5396973851969 + + + + + +NK25 +#labelStyle + +-1.58354018278674,57.5843608213877 + + + + +NK26 + +Small Square NK26 Boundry Box +#Line2 + + +1 + +-1.66674830971425,57.6295196721277 +-1.66592400375871,57.719331685026 +-1.49808454037607,57.7187778268813 +-1.49932326246565,57.6289677210169 +-1.66674830971425,57.6295196721277 + + + + + +NK26 +#labelStyle + +-1.582511594638,57.6741816062464 + + + + +NK27 + +Small Square NK27 Boundry Box +#Line2 + + +1 + +-1.66592392107479,57.7193406670609 +-1.665094700471,57.8091513899857 +-1.49683830893937,57.8085956151624 +-1.4980844161232,57.7187868087251 +-1.66592392107479,57.7193406670609 + + + + + +NK27 +#labelStyle + +-1.58147688111513,57.7640010958185 + + + + +NK28 + +Small Square NK28 Boundry Box +#Line2 + + +1 + +-1.66509461729353,57.8091603718918 +-1.66426044125499,57.8989698067499 +-1.49558463038125,57.8984121057129 +-1.49683818394487,57.8086045968763 +-1.66509461729353,57.8091603718918 + + + + + +NK28 +#labelStyle + +-1.58043599145877,57.8538192919691 + + + + +NK29 + +Small Square NK29 Boundry Box +#Line2 + + +1 + +-1.66426035757987,57.8989787885272 +-1.66342118486171,57.9887869372373 +-1.49432344272131,57.9882273003706 +-1.49558450463894,57.8984210872972 +-1.66426035757987,57.8989787885272 + + + + + +NK29 +#labelStyle + +-1.57938887433996,57.9436361965749 + + + + +NK30 + +Small Square NK30 Boundry Box +#Line2 + + +1 + +-1.50658808563704,57.0900257382158 +-1.50539238450155,57.1798436781656 +-1.34001034183075,57.1790832313418 +-1.34160599766825,57.0892678872021 +-1.50658808563704,57.0900257382158 + + + + + +NK30 +#labelStyle + +-1.42339087228995,57.1345869377959 + + + + +NK31 + +Small Square NK31 Boundry Box +#Line2 + + +1 + +-1.50539226456881,57.1798526607923 +-1.50418953187643,57.2696692905847 +-1.3384051428981,57.2689062350893 +-1.34001018178128,57.1790922137082 +-1.50539226456881,57.1798526607923 + + + + + +NK31 +#labelStyle + +-1.42199092968879,57.2244119968979 + + + + +NK32 + +Small Square NK32 Boundry Box +#Line2 + + +1 + +-1.50418941123761,57.2696782730805 +-1.5029795896387,57.3594935944761 +-1.3367904834545,57.3587279176012 +-1.33840498190642,57.2689152173235 +-1.50418941123761,57.2696782730805 + + + + + +NK32 +#labelStyle + +-1.42058274537259,57.3142357407156 + + + + +NK33 + +Small Square NK33 Boundry Box +#Line2 + + +1 + +-1.50297946828804,57.3595025768412 +-1.50176249979902,57.4493165916117 +-1.33516628612334,57.448548280543 +-1.33679032151291,57.3587368997035 +-1.50297946828804,57.3595025768412 + + + + + +NK33 +#labelStyle + +-1.41916625202731,57.4040581709662 + + + + +NK34 + +Small Square NK34 Boundry Box +#Line2 + + +1 + +-1.50176237773067,57.4493255738461 +-1.50053820372524,57.5391382837742 +-1.33353247267041,57.5383673255898 +-1.33516612322406,57.4485572625134 +-1.50176237773067,57.4493255738461 + + + + + +NK34 +#labelStyle + +-1.41774138159383,57.4938792893772 + + + + +NK35 + +Small Square NK35 Boundry Box +#Line2 + + +1 + +-1.50053808093331,57.5391472658782 +-1.49930664213356,57.6289586727576 +-1.33188896399204,57.6281850544267 +-1.33353230880558,57.5383763074285 +-1.50053808093331,57.5391472658782 + + + + + +NK35 +#labelStyle + +-1.41630806525762,57.583699097687 + + + + +NK36 + +Small Square NK36 Boundry Box +#Line2 + + +1 + +-1.49930651861209,57.6289676547314 +-1.49806775507945,57.7187777603669 +-1.33023568010305,57.7180014687487 +-1.33188879915371,57.6281940361339 +-1.49930651861209,57.6289676547314 + + + + + +NK36 +#labelStyle + +-1.41486623343833,57.6735175976439 + + + + +NK37 + +Small Square NK37 Boundry Box +#Line2 + + +1 + +-1.49806763082242,57.7187867422106 +-1.4968214819485,57.8085955484177 +-1.32857254012443,57.8078165702601 +-1.33023551428316,57.7180104503244 +-1.49806763082242,57.7187867422106 + + + + + +NK37 +#labelStyle + +-1.41341581577907,57.7633347910071 + + + + +NK38 + +Small Square NK38 Boundry Box +#Line2 + + +1 + +-1.4968213569498,57.8086045301316 +-1.49556776144699,57.8984120387369 +-1.32689946227094,57.8976303606754 +-1.32857237331486,57.8078255517047 +-1.4968213569498,57.8086045301316 + + + + + +NK38 +#labelStyle + +-1.41195674113566,57.8531506795459 + + + + +NK39 + +Small Square NK39 Boundry Box +#Line2 + + +1 + +-1.49556763570048,57.8984210203212 +-1.4943065315925,57.9882272331621 +-1.32521636383837,57.9874428417183 +-1.32689929446346,57.8976393419889 +-1.49556763570048,57.8984210203212 + + + + + +NK39 +#labelStyle + +-1.41048893756559,57.9429652650399 + + + + +NK40 + +Small Square NK40 Boundry Box +#Line2 + + +1 + +-1.34158949823617,57.0892678005516 +-1.33999380240266,57.1790831443944 +-1.17462114596266,57.1781048272805 +-1.17661672080251,57.0882928229409 +-1.34158949823617,57.0892678005516 + + + + + +NK40 +#labelStyle + +-1.25819694219678,57.1337189403993 + + + + +NK41 + +Small Square NK41 Boundry Box +#Line2 + + +1 + +-1.33999364234918,57.1790921267609 +-1.33838856323487,57.2689061478437 +-1.172613637025,57.2679244746813 +-1.17462094580005,57.1781138093121 +-1.33999364234918,57.1790921267609 + + + + + +NK41 +#labelStyle + +-1.25639582686134,57.2235410239994 + + + + +NK42 + +Small Square NK42 Boundry Box +#Line2 + + +1 + +-1.33838840223915,57.2689151300779 +-1.33677386331905,57.3587278300559 +-1.1705942972869,57.3577427844975 +-1.17261343568411,57.2679334565791 +-1.33838840223915,57.2689151300779 + + + + + +NK42 +#labelStyle + +-1.2545841086823,57.313361777846 + + + + +NK43 + +Small Square NK43 Boundry Box +#Line2 + + +1 + +-1.3367737013734,57.3587368121581 +-1.33514962527665,57.4485481926965 +-1.16856302999425,57.4475597582575 +-1.17059409475811,57.3577517662616 +-1.3367737013734,57.3587368121581 + + + + + +NK43 +#labelStyle + +-1.25276170106815,57.4031812035351 + + + + +NK44 + +Small Square NK44 Boundry Box +#Line2 + + +1 + +-1.33514946237329,57.4485571746668 +-1.33351577087151,57.5383672374406 +-1.16651973732068,57.5373753974982 +-1.16856282626783,57.4475687398881 +-1.33514946237329,57.4485571746668 + + + + + +NK44 +#labelStyle + +-1.25092851646904,57.492999302672 + + + + +NK45 + +Small Square NK45 Boundry Box +#Line2 + + +1 + +-1.33351560700257,57.5383762192793 +-1.33187222099798,57.6281849659734 +-1.16446432035273,57.6271897037645 +-1.16651953238679,57.5373843789954 +-1.33351560700257,57.5383762192793 + + + + + +NK45 +#labelStyle + +-1.24908446636347,57.5828160768711 + + + + +NK46 + +Small Square NK46 Boundry Box +#Line2 + + +1 + +-1.33187205615552,57.6281939476805 +-1.33021889566887,57.7180013799897 +-1.16239667907481,57.7170026786099 +-1.16446411420143,57.6271986851286 +-1.33187205615552,57.6281939476805 + + + + + +NK46 +#labelStyle + +-1.24722946124487,57.672631527756 + + + + +NK47 + +Small Square NK47 Boundry Box +#Line2 + + +1 + +-1.33021872984482,57.7180103615654 +-1.32855571400315,57.807816481194 +-1.1603167123538,57.8068143235957 +-1.16239647169604,57.7170116598409 +-1.33021872984482,57.7180103615654 + + + + + +NK47 +#labelStyle + +-1.2453634106079,57.762445656959 + + + + +NK48 + +Small Square NK48 Boundry Box +#Line2 + + +1 + +-1.32855554718939,57.8078254626385 +-1.32688259421351,57.8976302713005 +-1.15822431792352,57.8966246402915 +-1.16031650373739,57.8068233046937 +-1.32855554718939,57.8078254626385 + + + + + +NK48 +#labelStyle + +-1.24348622293454,57.8522584661216 + + + + +NK49 + +Small Square NK49 Boundry Box +#Line2 + + +1 + +-1.32688242640183,57.897639252614 +-1.3251994535937,57.9874427520332 +-1.15611939236883,57.9864336302747 +-1.15822410805919,57.8966336212568 +-1.32688242640183,57.897639252614 + + + + + +NK49 +#labelStyle + +-1.24159780567992,57.9420699568942 + + + + +NK50 + +Small Square NK50 Boundry Box +#Line2 + + +1 + +-1.1766002224182,57.0882927145769 +-1.17460460759086,57.1781047185453 +-1.00924368823658,57.1769085602919 +-1.01163908742192,57.0871006393028 +-1.1766002224182,57.0882927145769 + + + + + +NK50 +#labelStyle + +-1.09301353234924,57.1326334369351 + + + + +NK51 + +Small Square NK51 Boundry Box +#Line2 + + +1 + +-1.17460440742424,57.1781137005769 +-1.17259705842667,57.2679243655731 +-1.00683396500357,57.2667241041136 +-1.00924344797035,57.1769175419142 +-1.17460440742424,57.1781137005769 + + + + + +NK51 +#labelStyle + +-1.09081132993904,57.2224517994931 + + + + +NK52 + +Small Square NK52 Boundry Box +#Line2 + + +1 + +-1.17259685708174,57.2679333474708 +-1.17057767822506,57.3577426750145 +-1.00441004173838,57.356538290364 +-1.00683372332309,57.2667330856001 +-1.17259685708174,57.2679333474708 + + + + + +NK52 +#labelStyle + +-1.08859616450212,57.3122688142044 + + + + +NK53 + +Small Square NK53 Boundry Box +#Line2 + + +1 + +-1.17057747569221,57.3577516567786 +-1.16854637022998,57.4475596483979 +-1.00197180232399,57.446351120404 +-1.00440979863212,57.3565472717148 +-1.17057747569221,57.3577516567786 + + + + + +NK53 +#labelStyle + +-1.08636793018256,57.4020844825138 + + + + +NK54 + +Small Square NK54 Boundry Box +#Line2 + + +1 + +-1.16854616649947,57.4475686300285 +-1.1665030366131,57.53737528726 +-0.999519129356684,57.5361625956012 +-1.00197155778026,57.4463601016192 +-1.16854616649947,57.4475686300285 + + + + + +NK54 +#labelStyle + +-1.08412651995298,57.4918988058734 + + + + +NK55 + +Small Square NK55 Boundry Box +#Line2 + + +1 + +-1.1665028316751,57.5373842687573 +-1.16444757845899,57.627189593146 +-0.997051904128328,57.6259727173294 +-0.999518883363691,57.536171576681 +-1.1665028316751,57.5373842687573 + + + + + +NK55 +#labelStyle + +-1.08187182559838,57.5817117857431 + + + + +NK56 + +Small Square NK56 Boundry Box +#Line2 + + +1 + +-1.16444737230356,57.62719857451 +-1.16237989575005,57.7170025676091 +-0.994570006608233,57.7157814869691 +-0.997051656674129,57.625981698274 +-1.16444737230356,57.62719857451 + + + + + +NK56 +#labelStyle + +-1.07960373769968,57.6715234235897 + + + + +NK57 + +Small Square NK57 Boundry Box +#Line2 + + +1 + +-1.16237968836713,57.71701154884 +-1.16029988735114,57.8068142122108 +-0.992073315424769,57.8055889059067 +-0.994569757680758,57.7157904677785 +-1.16237968836713,57.71701154884 + + + + + +NK57 +#labelStyle + +-1.07732214561698,57.7613337208878 + + + + +NK58 + +Small Square NK58 Boundry Box +#Line2 + + +1 + +-1.16029967873055,57.8068231933088 +-1.15820745099403,57.8966245285205 +-0.989561707846667,57.8953949755349 +-0.992073065011814,57.8055978865812 +-1.16029967873055,57.8068231933088 + + + + + +NK58 +#labelStyle + +-1.07502693747258,57.8511426791187 + + + + +NK59 + +Small Square NK59 Boundry Box +#Line2 + + +1 + +-1.15820724112549,57.8966335094858 +-1.15610248326151,57.9864335181158 +-0.987035059763991,57.9851996972523 +-0.989561455935889,57.8954039560745 +-1.15820724112549,57.8966335094858 + + + + + +NK59 +#labelStyle + +-1.07271800013365,57.9409502997712 + + + + +NK60 + +Small Square NK60 Boundry Box +#Line2 + + +1 + +-1.01162259031854,57.0871005092285 +-1.00922715115613,57.1769084297721 +-0.84388031869933,57.1754944660157 +-0.846675428632842,57.0856913716624 +-1.01162259031854,57.0871005092285 + + + + + +NK60 +#labelStyle + +-0.927842983842854,57.1313304596801 + + + + +NK61 + +Small Square NK61 Boundry Box +#Line2 + + +1 + +-1.00922691088589,57.1769174113943 +-1.00681738770711,57.2667239731461 +-0.841068496031578,57.265305159294 +-0.843880038340902,57.1755034471541 +-1.00922691088589,57.1769174113943 + + + + + +NK61 +#labelStyle + +-0.925239799071206,57.221144355898 + + + + +NK62 + +Small Square NK62 Boundry Box +#Line2 + + +1 + +-1.00681714602261,57.2667329546325 +-1.00439342398906,57.3565381589466 +-0.838240105369153,57.3551144713793 +-0.841068214023075,57.2653141402943 +-1.00681714602261,57.2667329546325 + + + + + +NK62 +#labelStyle + +-0.92262129224534,57.3109568825549 + + + + +NK63 + +Small Square NK63 Boundry Box +#Line2 + + +1 + +-1.00439318087874,57.3565471402973 +-1.001955143883,57.4463509885345 +-0.835395011249595,57.4449224034346 +-0.838239821697101,57.3551234522415 +-1.00439318087874,57.3565471402973 + + + + + +NK63 +#labelStyle + +-0.919987338260818,57.4007680409138 + + + + +NK64 + +Small Square NK64 Boundry Box +#Line2 + + +1 + +-1.00195489933519,57.4463599697497 +-0.999502429983271,57.5361624632774 +-0.832533076709676,57.5347289566275 +-0.835394725900373,57.4449313841589 +-1.00195489933519,57.4463599697497 + + + + + +NK64 +#labelStyle + +-0.917337810628948,57.4905778322432 + + + + +NK65 + +Small Square NK65 Boundry Box +#Line2 + + +1 + +-0.999502183986173,57.5361714443571 +-0.997035163579759,57.6259725845491 +-0.82965416326465,57.6245341321298 +-0.832532789669513,57.5347379372139 +-0.999502183986173,57.5361714443571 + + + + + +NK65 +#labelStyle + +-0.914672581457666,57.5803862578172 + + + + +NK66 + +Small Square NK66 Boundry Box +#Line2 + + +1 + +-0.99703491612143,57.6259815654936 +-0.994553224639772,57.71578135373 +-0.826758130887147,57.7143379311173 +-0.829653874519619,57.6245431125785 +-0.99703491612143,57.6259815654936 + + + + + +NK66 +#labelStyle + +-0.911991521432105,57.6701933189151 + + + + +NK67 + +Small Square NK67 Boundry Box +#Line2 + + +1 + +-0.994552975708142,57.7157903345393 +-0.992056491789659,57.8055887722065 +-0.823844837985722,57.8041403547697 +-0.82675784042317,57.7143469114284 +-0.994552975708142,57.7157903345393 + + + + + +NK67 +#labelStyle + +-0.909294499794824,57.7599990168216 + + + + +NK68 + +Small Square NK68 Boundry Box +#Line2 + + +1 + +-0.992056241372524,57.8055977528809 +-0.989544842296103,57.8953948413713 +-0.820914141383041,57.8939414042708 +-0.823844545788559,57.8041493349434 +-0.992056241372524,57.8055977528809 + + + + + +NK68 +#labelStyle + +-0.906581384325724,57.8498033528263 + + + + +NK69 + +Small Square NK69 Boundry Box +#Line2 + + +1 + +-0.989544590381122,57.8954038219108 +-0.987018152047103,57.985199562623 +-0.817965896293704,57.9837410808079 +-0.820913847438296,57.8939503843071 +-0.989544590381122,57.8954038219108 + + + + + +NK69 +#labelStyle + +-0.903852041321614,57.9396063282237 + + + + +NK70 + +Small Square NK70 Boundry Box +#Line2 + + +1 + +-0.846658933043448,57.0856912198817 +-0.843863783145172,57.1754943137152 +-0.678533386145895,57.1738625865741 +-0.681728074306744,57.0840650618284 +-0.846658933043448,57.0856912198817 + + + + + +NK70 +#labelStyle + +-0.762687636633351,57.1298100473713 + + + + +NK71 + +Small Square NK71 Boundry Box +#Line2 + + +1 + +-0.843863502782735,57.1755032948535 +-0.841051920273859,57.2653050064711 +-0.675319598037765,57.2636676826614 +-0.678533065708596,57.1738715671541 +-0.843863502782735,57.1755032948535 + + + + + +NK71 +#labelStyle + +-0.759683593251696,57.2196187322423 + + + + +NK72 + +Small Square NK72 Boundry Box +#Line2 + + +1 + +-0.841051638261323,57.2653139874713 +-0.838223489171146,57.3551143180314 +-0.672086875452877,57.3534713703024 +-0.675319275714701,57.2636766631006 +-0.841051638261323,57.2653139874713 + + + + + +NK72 +#labelStyle + +-0.756661870153846,57.3094260222194 + + + + +NK73 + +Small Square NK73 Boundry Box +#Line2 + + +1 + +-0.838223205495038,57.3551232988935 +-0.835378354372641,57.4449222495592 +-0.668835063603774,57.4432736504318 +-0.672086551228654,57.3534803506007 +-0.838223205495038,57.3551232988935 + + + + + +NK73 +#labelStyle + +-0.753622323005655,57.3992319183539 + + + + +NK74 + +Small Square NK74 Boundry Box +#Line2 + + +1 + +-0.835378069019339,57.4449312302834 +-0.832516378913161,57.5347288022221 +-0.665564005988455,57.5330745239866 +-0.668834737462827,57.4432826305895 +-0.835378069019339,57.4449312302834 + + + + + +NK74 +#labelStyle + +-0.750564805876233,57.4890364217002 + + + + +NK75 + +Small Square NK75 Boundry Box +#Line2 + + +1 + +-0.832516091868894,57.5347377828084 +-0.829637424305983,57.6245339771917 +-0.662273544366672,57.6228739919052 +-0.665563677915048,57.5330835040036 +-0.832516091868894,57.5347377828084 + + + + + +NK75 +#labelStyle + +-0.747489171215896,57.5788395333158 + + + + +NK76 + +Small Square NK76 Boundry Box +#Line2 + + +1 + +-0.829637135556824,57.6245429576403 +-0.826741350521738,57.7143377756438 +-0.658963518735828,57.7126720551277 +-0.662273214344893,57.6228829717818 +-0.829637135556824,57.6245429576403 + + + + + +NK76 +#labelStyle + +-0.744395269833753,57.6686412542611 + + + + +NK77 + +Small Square NK77 Boundry Box +#Line2 + + +1 + +-0.826741060053608,57.7143467559548 +-0.823828015966961,57.8041401987582 +-0.655633767306473,57.8024687145955 +-0.658963186749588,57.7126810348638 +-0.826741060053608,57.7143467559548 + + + + + +NK77 +#labelStyle + +-0.74128295087491,57.7584415855993 + + + + +NK78 + +Small Square NK78 Boundry Box +#Line2 + + +1 + +-0.82382772376562,57.8041491789318 +-0.820897277462274,57.8939412477187 +-0.652284126477389,57.892263971251 +-0.655633433339502,57.8024776941913 +-0.82382772376562,57.8041491789318 + + + + + +NK78 +#labelStyle + +-0.738152061797306,57.8482405283962 + + + + +NK79 + +Small Square NK79 Boundry Box +#Line2 + + +1 + +-0.820896983513326,57.8939502277549 +-0.81794899022021,57.9837409237124 +-0.648914430810262,57.9820578260379 +-0.652283790513237,57.8922729507066 +-0.820896983513326,57.8939502277549 + + + + + +NK79 +#labelStyle + +-0.735002448348147,57.9380380837201 + + + + +NK80 + +Small Square NK80 Boundry Box +#Line2 + + +1 + +-0.681711580464255,57.0840648883458 +-0.67851685235284,57.1738624124973 +-0.513205237911176,57.1720129705672 +-0.516799352874768,57.0822217580395 +-0.681711580464255,57.0840648883458 + + + + + +NK80 +#labelStyle + +-0.59754982932966,57.128072245202 + + + + +NK81 + +Small Square NK81 Boundry Box +#Line2 + + +1 + +-0.678516531911534,57.1738713930773 +-0.675303024055504,57.2636675079876 +-0.509589637470673,57.2618117231813 +-0.513204877410234,57.1720219505144 +-0.678516531911534,57.1738713930773 + + + + + +NK81 +#labelStyle + +-0.594145070109063,57.2178749740583 + + + + +NK82 + +Small Square NK82 Boundry Box +#Line2 + + +1 + +-0.675302701728409,57.2636764884268 +-0.672070261044843,57.3534711950286 +-0.505952737762618,57.3516090364679 +-0.509589274848445,57.2618207029846 +-0.675302701728409,57.2636764884268 + + + + + +NK82 +#labelStyle + +-0.590720275085418,57.3076762790733 + + + + +NK83 + +Small Square NK83 Boundry Box +#Line2 + + +1 + +-0.672069936816566,57.3534801753269 +-0.668818408531468,57.4432734745552 +-0.502294364697874,57.4414049111034 +-0.50595237300179,57.3516180161273 +-0.672069936816566,57.3534801753269 + + + + + +NK83 +#labelStyle + +-0.587275280716561,57.3974761610562 + + + + +NK84 + +Small Square NK84 Boundry Box +#Line2 + + +1 + +-0.668818082386443,57.4432824547128 +-0.665547310011426,57.5330743475041 +-0.498614342259372,57.5311993477632 +-0.502293997780939,57.441413890619 +-0.668818082386443,57.4432824547128 + + + + + +NK84 +#labelStyle + +-0.583809921651455,57.4872746208167 + + + + +NK85 + +Small Square NK85 Boundry Box +#Line2 + + +1 + +-0.665546981933916,57.5330833275211 +-0.662256807242494,57.622873814814 +-0.494912492475467,57.6209923471217 +-0.498613973168634,57.531208327135 +-0.665546981933916,57.5330833275211 + + + + + +NK85 +#labelStyle + +-0.58032403070521,57.5770716591649 + + + + +NK86 + +Small Square NK86 Boundry Box +#Line2 + + +1 + +-0.662256477216588,57.6228827946905 +-0.658946740220079,57.7126718774247 +-0.491188635392836,57.7107839098516 +-0.494912121193029,57.6210013263498 +-0.662256477216588,57.6228827946905 + + + + + +NK86 +#labelStyle + +-0.576817438833704,57.6668672769111 + + + + +NK87 + +Small Square NK87 Boundry Box +#Line2 + + +1 + +-0.658946408229687,57.7126808571607 +-0.655616947152712,57.8024685362775 +-0.48744258904894,57.8005740366243 +-0.491188261900604,57.7107928889361 +-0.658946408229687,57.7126808571607 + + + + + +NK87 +#labelStyle + +-0.57328997510776,57.7566614748656 + + + + +NK88 + +Small Square NK88 Boundry Box +#Line2 + + +1 + +-0.655616613181565,57.8024775158733 +-0.652267264437135,57.8922637923152 +-0.48367416944401,57.8903627281092 +-0.487442213328614,57.8005830155652 +-0.655616613181565,57.8024775158733 + + + + + +NK88 +#labelStyle + +-0.569741466686916,57.8464542538385 + + + + +NK89 + +Small Square NK89 Boundry Box +#Line2 + + +1 + +-0.652266928468782,57.8922727717706 +-0.648897526632969,57.982057646481 +-0.479883190512575,57.9801499849737 +-0.483673791477089,57.8903717069066 +-0.652266928468782,57.8922727717706 + + + + + +NK89 +#labelStyle + +-0.56617173879273,57.9362456146397 + + + + +NK90 + +Small Square NK90 Boundry Box +#Line2 + + +1 + +-0.516782861011948,57.0822215628601 +-0.513188706113878,57.1720127747194 +-0.347898219662025,57.1699456730679 +-0.351891591122566,57.0801615149589 +-0.516782861011948,57.0822215628601 + + + + + +NK90 +#labelStyle + +-0.432431898987194,57.1261171048168 + + + + +NK91 + +Small Square NK91 Boundry Box +#Line2 + + +1 + +-0.513188345608931,57.1720217546666 +-0.509573065500435,57.261811526662 +-0.343880979087867,57.2597373363406 +-0.347897819114565,57.1699546523079 +-0.513188345608931,57.1720217546666 + + + + + +NK91 +#labelStyle + +-0.42862658569701,57.2159131333783 + + + + +NK92 + +Small Square NK92 Boundry Box +#Line2 + + +1 + +-0.509572702874178,57.2618205064652 +-0.505936125383051,57.3516088392736 +-0.339840076357134,57.3495275257812 +-0.343880576183788,57.2597463154332 +-0.509572702874178,57.2618205064652 + + + + + +NK92 +#labelStyle + +-0.424798882301295,57.3057077055405 + + + + +NK93 + +Small Square NK93 Boundry Box +#Line2 + + +1 + +-0.50593576061817,57.3516178189329 +-0.502277711670663,57.4414047132309 +-0.335775318105229,57.4393162417773 +-0.339839671077207,57.3495365047264 +-0.50593576061817,57.3516178189329 + + + + + +NK93 +#labelStyle + +-0.420948606074438,57.3955008218403 + + + + +NK94 + +Small Square NK94 Boundry Box +#Line2 + + +1 + +-0.502277344749652,57.4414136927464 +-0.498597648344251,57.5311991492092 +-0.331686508826664,57.5291034847125 +-0.335774910430008,57.4393252205752 +-0.502277344749652,57.4414136927464 + + + + + +NK94 +#labelStyle + +-0.417075572270224,57.4852924828123 + + + + +NK95 + +Small Square NK95 Boundry Box +#Line2 + + +1 + +-0.498597279249412,57.5312081285809 +-0.494895757430196,57.6209921478827 +-0.327573450845489,57.6188892549659 +-0.331686098736493,57.5291124633631 +-0.498597279249412,57.5312081285809 + + + + + +NK95 +#labelStyle + +-0.413179594093949,57.5750826889883 + + + + +NK96 + +Small Square NK96 Boundry Box +#Line2 + + +1 + +-0.494895386143632,57.6210011271107 +-0.491171858973184,57.7107837099244 +-0.323435944285204,57.708673552912 +-0.327573038320489,57.6188982334693 +-0.494895386143632,57.6210011271107 + + + + + +NK96 +#labelStyle + +-0.409260482674069,57.6648714408976 + + + + +NK97 + +Small Square NK97 Boundry Box +#Line2 + + +1 + +-0.491171485476801,57.7107926890087 +-0.487425771008658,57.8005738360054 +-0.319273787038183,57.7984563789203 +-0.323435529305277,57.7086825312682 +-0.491171485476801,57.7107926890087 + + + + + +NK97 +#labelStyle + +-0.405318047033369,57.7546587390661 + + + + +NK98 + +Small Square NK98 Boundry Box +#Line2 + + +1 + +-0.487425395284157,57.8005828149462 +-0.483657309534811,57.8903625267952 +-0.315086774734586,57.8882377333552 +-0.319273369583006,57.7984653571293 +-0.487425395284157,57.8005828149462 + + + + + +NK98 +#labelStyle + +-0.401352094059667,57.8444445840162 + + + + +NK99 + +Small Square NK99 Boundry Box +#Line2 + + +1 + +-0.483656931563691,57.8903715055925 +-0.479866288484112,57.9801497829611 +-0.310874700710743,57.9780176165757 +-0.315086354783609,57.8882467114171 +-0.483656931563691,57.8903715055925 + + + + + +NK99 +#labelStyle + +-0.397362428476006,57.9342289762672 + + + + + +NL + +Large Square NL Boundry Box +#Line1 + + +1 + +-8.42418799954721,56.0252127849495 +-8.57738859862682,56.9178231533198 +-6.94154576010455,56.9933974709115 +-6.82601854935105,56.098281857743 +-8.42418799954721,56.0252127849495 + + + + + +NL00 + +Small Square NL00 Boundry Box +#Line2 + + +1 + +-8.42418799954721,56.0252127849495 +-8.43911611506994,56.1144837103236 +-8.27929503255585,56.122744570982 +-8.264731413301,56.0334460535337 +-8.42418799954721,56.0252127849495 + + + + + +NL00 +#labelStyle + +-8.35182539458254,56.0740028433601 + + + + +NL01 + +Small Square NL01 Boundry Box +#Line2 + + +1 + +-8.4391176122697,56.1144926381127 +-8.4541307174949,56.203759633331 +-8.29394306916356,56.2120482158737 +-8.27929649320093,56.122753501537 +-8.4391176122697,56.1144926381127 + + + + + +NL01 +#labelStyle + +-8.36661471341702,56.163294648875 + + + + +NL02 + +Small Square NL02 Boundry Box +#Line2 + + +1 + +-8.45413222322754,56.2037685607261 +-8.46923098169047,56.2930316064601 +-8.30867471896292,56.3013480389569 +-8.29394453813744,56.2120571460474 +-8.45413222322754,56.2037685607261 + + + + + +NL02 +#labelStyle + +-8.38148834174084,56.2525825783639 + + + + +NL03 + +Small Square NL03 Boundry Box +#Line2 + + +1 + +-8.4692324960227,56.2930405334593 +-8.48441757826744,56.3822996101713 +-8.32349063702686,56.3906440217157 +-8.30867619633076,56.3013569687475 +-8.4692324960227,56.2930405334593 + + + + + +NL03 +#labelStyle + +-8.39644693893003,56.3418666129043 + + + + +NL04 + +Small Square NL04 Boundry Box +#Line2 + + +1 + +-8.48441910126669,56.3823085367725 +-8.49969118493809,56.4715636247126 +-8.33839148537177,56.4799361454323 +-8.32349212285451,56.3906529511213 +-8.48441910126669,56.3823085367725 + + + + + +NL04 +#labelStyle + +-8.41149117133764,56.431146733368 + + + + +NL05 + +Small Square NL05 Boundry Box +#Line2 + + +1 + +-8.49969271667248,56.4715725509139 +-8.51505248660961,56.560823630117 +-8.35337793304898,56.5692243911847 +-8.33839297972579,56.4799450744511 +-8.49969271667248,56.4715725509139 + + + + + +NL05 +#labelStyle + +-8.42662171238535,56.5204229204188 + + + + +NL06 + +Small Square NL06 Boundry Box +#Line2 + + +1 + +-8.51505402714798,56.5608325559163 +-8.53050217547899,56.6500796061991 +-8.36845065623759,56.6585087398437 +-8.35337943599662,56.5692333198148 +-8.51505402714798,56.5608325559163 + + + + + +NL06 +#labelStyle + +-8.44183924265677,56.6096951545091 + + + + +NL07 + +Small Square NL07 Boundry Box +#Line2 + + +1 + +-8.53050372489093,56.6500885315945 +-8.54604095112945,56.7393315325523 +-8.38361033833893,56.7477891720694 +-8.36845216784685,56.658517668083 +-8.53050372489093,56.6500885315945 + + + + + +NL07 +#labelStyle + +-8.45714444999197,56.6989634158769 + + + + +NL08 + +Small Square NL08 Boundry Box +#Line2 + + +1 + +-8.54604250948532,56.7393404575418 +-8.56166952062839,56.8285793885455 +-8.39885767007235,56.8370656683091 +-8.3836118586785,56.7477980999161 +-8.54604250948532,56.7393404575418 + + + + + +NL08 +#labelStyle + +-8.47253802958371,56.7882276845432 + + + + +NL09 + +Small Square NL09 Boundry Box +#Line2 + + +1 + +-8.56167108799924,56.8285883131269 +-8.57738859862682,56.9178231533198 +-8.41419334957267,56.9263382087934 +-8.39885919921166,56.8370745957612 +-8.56167108799924,56.8285883131269 + + + + + +NL09 +#labelStyle + +-8.48802068407504,56.8774879403082 + + + + +NL10 + +Small Square NL10 Boundry Box +#Line2 + + +1 + +-8.26471546189794,56.0334468666741 +-8.27927904466719,56.1227453868481 +-8.11937500871928,56.1308001397288 +-8.10517656352764,56.0414747045534 +-8.26471546189794,56.0334468666741 + + + + + +NL10 +#labelStyle + +-8.19212925177434,56.0821478418536 + + + + +NL11 + +Small Square NL11 Boundry Box +#Line2 + + +1 + +-8.27928050530861,56.1227543174033 +-8.29392704458199,56.2120490344782 +-8.13365579467931,56.2201308291006 +-8.11937643274156,56.130809072982 +-8.27928050530861,56.1227543174033 + + + + + +NL11 +#labelStyle + +-8.20655266218556,56.1714669691942 + + + + +NL12 + +Small Square NL12 Boundry Box +#Line2 + + +1 + +-8.29392851355219,56.2120579646522 +-8.30865865748321,56.3013488603126 +-8.14801813819409,56.3094578217215 +-8.13365722682559,56.220139761985 +-8.29392851355219,56.2120579646522 + + + + + +NL12 +#labelStyle + +-8.22105833758749,56.2607823465786 + + + + +NL13 + +Small Square NL13 Boundry Box +#Line2 + + +1 + +-8.30866013484735,56.3013577901035 +-8.32347453844223,56.3906448458353 +-8.16246267870714,56.3987811000758 +-8.14801957852799,56.3094667542353 +-8.30866013484735,56.3013577901035 + + + + + +NL13 +#labelStyle + +-8.23564692185015,56.3500939560912 + + + + +NL14 + +Small Square NL14 Boundry Box +#Line2 + + +1 + +-8.32347602426616,56.3906537752412 +-8.33837534947386,56.4799369723287 +-8.17699006244596,56.4881006464571 +-8.16246412729294,56.3987900322173 +-8.32347602426616,56.3906537752412 + + + + + +NL14 +#labelStyle + +-8.25031906566274,56.4394017796214 + + + + +NL15 + +Small Square NL15 Boundry Box +#Line2 + + +1 + +-8.33837684382414,56.4799459013477 +-8.35336175962785,56.5692252208708 +-8.19160094251151,56.5774164429648 +-8.17699151934863,56.4881095782245 +-8.33837684382414,56.4799459013477 + + + + + +NL15 +#labelStyle + +-8.26507542662343,56.5287057988609 + + + + +NL16 + +Small Square NL16 Boundry Box +#Line2 + + +1 + +-8.35336326257173,56.5692341495011 +-8.36843444508169,56.6585095723326 +-8.20629597896905,56.6667284715019 +-8.19160240779669,56.5774253743563 +-8.35336326257173,56.5692341495011 + + + + + +NL16 +#labelStyle + +-8.27991666933046,56.6180059953007 + + + + +NL17 + +Small Square NL17 Boundry Box +#Line2 + + +1 + +-8.36843595668715,56.6585185005722 +-8.38359408923507,56.7477900073743 +-8.22107583894048,56.7560367137719 +-8.20629745270311,56.6667374025157 +-8.36843595668715,56.6585185005722 + + + + + +NL17 +#labelStyle + +-8.29484346547483,56.7073023502288 + + + + +NL18 + +Small Square NL18 Boundry Box +#Line2 + + +1 + +-8.38359560957083,56.7477989352213 +-8.39884138280572,56.8370665064431 +-8.23594119669812,56.8453411512759 +-8.2210773211905,56.7560456444062 +-8.38359560957083,56.7477989352213 + + + + + +NL18 +#labelStyle + +-8.30985649393437,56.7965948447267 + + + + +NL19 + +Small Square NL19 Boundry Box +#Line2 + + +1 + +-8.3988429119412,56.8370754338956 +-8.41417702392679,56.9263390497701 +-8.25089273375998,56.9346417653101 +-8.23594268753188,56.8453500815288 +-8.3988429119412,56.8370754338956 + + + + + +NL19 +#labelStyle + +-8.32495644086926,56.8858834596666 + + + + +NL20 + +Small Square NL20 Boundry Box +#Line2 + + +1 + +-8.10516060399368,56.0414754971373 +-8.11935901263636,56.1308009349707 +-7.95937406330076,56.1386493536462 +-7.94554141823058,56.0492976794916 +-8.10516060399368,56.0414754971373 + + + + + +NL20 +#labelStyle + +-8.03235148429045,56.0900869373389 + + + + +NL21 + +Small Square NL21 Boundry Box +#Line2 + + +1 + +-8.11936043665497,56.1308098682241 +-8.13363976183942,56.2201316270129 +-7.9732869658834,56.2280064056637 +-7.95937545063728,56.1386582895295 +-8.11936043665497,56.1308098682241 + + + + + +NL21 +#labelStyle + +-8.04640834915636,56.1794327069857 + + + + +NL22 + +Small Square NL22 Boundry Box +#Line2 + + +1 + +-8.13364119398201,56.2201405598975 +-8.14800206839134,56.3094586223164 +-7.98727936368809,56.3173598829461 +-7.97328836113848,56.2280153411904 +-8.13364119398201,56.2201405598975 + + + + + +NL22 +#labelStyle + +-8.06054542778361,56.268774849724 + + + + +NL23 + +Small Square NL23 Boundry Box +#Line2 + + +1 + +-8.14800350872153,56.3094675548305 +-8.16244657173405,56.3987819033659 +-8.00135188044084,56.4067097689551 +-7.98728076692377,56.3173688181145 +-8.14800350872153,56.3094675548305 + + + + + +NL23 +#labelStyle + +-8.07476334844782,56.3581133486221 + + + + +NL24 + +Small Square NL24 Boundry Box +#Line2 + + +1 + +-8.16244802031613,56.3987908355077 +-8.17697391809349,56.4881014524549 +-8.01550514649079,56.4960560469716 +-8.00135329171982,56.4067187037636 +-8.16244802031613,56.3987908355077 + + + + + +NL24 +#labelStyle + +-8.08906274608461,56.4474481865635 + + + + +NL25 + +Small Square NL25 Boundry Box +#Line2 + + +1 + +-8.17697537499241,56.4881103842226 +-8.191584760569,56.5774172516831 +-8.02973979889767,56.5853987000931 +-8.01550656587644,56.4960649814184 +-8.17697537499241,56.4881103842226 + + + + + +NL25 +#labelStyle + +-8.10344426237741,56.5367793462444 + + + + +NL26 + +Small Square NL26 Boundry Box +#Line2 + + +1 + +-8.19158622585042,56.5774261830749 +-8.20627975922423,56.6667292829533 +-8.04405648152057,56.6747377112306 +-8.02974122645404,56.5854076341766 +-8.19158622585042,56.5774261830749 + + + + + +NL26 +#labelStyle + +-8.11790854584655,56.6261068101709 + + + + +NL27 + +Small Square NL27 Boundry Box +#Line2 + + +1 + +-8.20628123295451,56.6667382139674 +-8.22105958117946,56.7560375279693 +-8.05845584510822,56.7640730631067 +-8.04405791731239,56.6747466449491 +-8.20628123295451,56.6667382139674 + + + + + +NL27 +#labelStyle + +-8.13245625193984,56.7154305606566 + + + + +NL28 + +Small Square NL28 Boundry Box +#Line2 + + +1 + +-8.22106106342567,56.7560464586039 +-8.23592490070535,56.8453419682323 +-8.07293854739061,56.8534047382521 +-8.05845728920091,56.7640819964583 +-8.22106106342567,56.7560464586039 + + + + + +NL28 +#labelStyle + +-8.14708804312458,56.8047505798193 + + + + +NL29 + +Small Square NL29 Boundry Box +#Line2 + + +1 + +-8.23592639153527,56.8453508984855 +-8.25087639931824,56.9346425850385 +-8.08750525317211,56.9427327190033 +-8.07293999985029,56.8534136712351 +-8.23592639153527,56.8453508984855 + + + + + +NL29 +#labelStyle + +-8.16180458898101,56.8940668495789 + + + + +NL30 + +Small Square NL30 Boundry Box +#Line2 + + +1 + +-7.94552545076854,56.0492984514969 +-7.95935805922792,56.1386501282414 +-7.79929424314698,56.1462919918697 +-7.78582800885509,56.0569147590538 +-7.94552545076854,56.0492984514969 + + + + + +NL30 +#labelStyle + +-7.87249412800093,56.0978199069525 + + + + +NL31 + +Small Square NL31 Boundry Box +#Line2 + + +1 + +-7.95935944656077,56.138659064125 +-7.9732709249911,56.228007182861 +-7.81283864518245,56.2356747231132 +-7.79929559373635,56.1463009303151 +-7.95935944656077,56.138659064125 + + + + + +NL31 +#labelStyle + +-7.88618382563807,56.1871916377891 + + + + +NL32 + +Small Square NL32 Boundry Box +#Line2 + + +1 + +-7.97327232024249,56.228016118388 +-7.98726328576977,56.3173606627576 +-7.82646047357032,56.3250539985799 +-7.81284000348428,56.2356836612138 +-7.97327232024249,56.228016118388 + + + + + +NL32 +#labelStyle + +-7.89995167923364,56.276559861727 + + + + +NL33 + +Small Square NL33 Boundry Box +#Line2 + + +1 + +-7.98726468900174,56.3173695979263 +-8.00133576528835,56.4067105513929 +-7.84016033623302,56.4144298026854 +-7.82646183964508,56.3250629363341 +-7.98726468900174,56.3173695979263 + + + + + +NL33 +#labelStyle + +-7.91379830138249,56.3659245627951 + + + + +NL34 + +Small Square NL34 Boundry Box +#Line2 + + +1 + +-8.0013371765636,56.4067194862016 +-8.01548899389441,56.496056832048 +-7.85393884755392,56.5038021196743 +-7.84016171014182,56.4144387400917 +-8.0013371765636,56.4067194862016 + + + + + +NL34 +#labelStyle + +-7.9277243111789,56.4552857248474 + + + + +NL35 + +Small Square NL35 Boundry Box +#Line2 + + +1 + +-8.01549041327631,56.4960657664951 +-8.02972360864606,56.5853994878203 +-7.86779662846269,56.593170933618 +-7.85394022935852,56.5038110567312 +-8.01549041327631,56.4960657664951 + + + + + +NL35 +#labelStyle + +-7.94173033430241,56.544643331561 + + + + +NL36 + +Small Square NL36 Boundry Box +#Line2 + + +1 + +-8.02972503619866,56.5854084219041 +-8.04404025340077,56.6747385016212 +-7.88173430652205,56.6825362284117 +-7.86779801822552,56.5931798703237 +-8.02972503619866,56.5854084219041 + + + + + +NL36 +#labelStyle + +-7.95581700310489,56.633997366433 + + + + +NL37 + +Small Square NL37 Boundry Box +#Line2 + + +1 + +-8.04404168918879,56.6747474353399 +-8.05843957890561,56.7640738561732 +-7.89575251601585,56.7718979877722 +-7.8817357043062,56.6825451647647 +-8.04404168918879,56.6747474353399 + + + + + +NL37 +#labelStyle + +-7.96998495669898,56.7233478127782 + + + + +NL38 + +Small Square NL38 Boundry Box +#Line2 + + +1 + +-8.05844102299449,56.7640827895251 +-8.07292224288893,56.8534055340071 +-7.90985189803863,56.8612561952352 +-7.89575392188509,56.7719069237708 +-8.05844102299449,56.7640827895251 + + + + + +NL38 +#labelStyle + +-7.98423484104797,56.8126946537267 + + + + +NL39 + +Small Square NL39 Boundry Box +#Line2 + + +1 + +-8.07292369534477,56.8534144669904 +-8.08748891015342,56.9427335174595 +-7.92403310058655,56.950610834153 +-7.90985331205741,56.8612651308778 +-8.07292369534477,56.8534144669904 + + + + + +NL39 +#labelStyle + +-7.99856730905717,56.9020378722208 + + + + +NL40 + +Small Square NL40 Boundry Box +#Line2 + + +1 + +-7.78581203366844,56.0569155104588 +-7.79927823128923,56.1462927457965 +-7.63913760154592,56.1537278391446 +-7.62603837320451,56.0643257295165 +-7.78581203366844,56.0569155104588 + + + + + +NL40 +#labelStyle + +-7.7125592252529,56.1053465334096 + + + + +NL41 + +Small Square NL41 Boundry Box +#Line2 + + +1 + +-7.79927958187493,56.1463016842421 +-7.81282259644431,56.2356754795737 +-7.65231290150885,56.2431355646476 +-7.63913891532831,56.1537367800837 +-7.79927958187493,56.1463016842421 + + + + + +NL41 +#labelStyle + +-7.72588114950114,56.1947435427614 + + + + +NL42 + +Small Square NL42 Boundry Box +#Line2 + + +1 + +-7.81282395474244,56.2356844176745 +-7.82644438774457,56.3250547575858 +-7.6655635525778,56.3325399502593 +-7.65231422279696,56.2431445052534 +-7.81282395474244,56.2356844176745 + + + + + +NL42 +#labelStyle + +-7.73927916549001,56.2841371621708 + + + + +NL43 + +Small Square NL43 Boundry Box +#Line2 + + +1 + +-7.82644575381561,56.3250636953403 +-7.84014421311088,56.4144305642486 +-7.67889014678759,56.4219409813254 +-7.66556488143052,56.3325488905304 +-7.82644575381561,56.3250636953403 + + + + + +NL43 +#labelStyle + +-7.75275387004909,56.3735273766037 + + + + +NL44 + +Small Square NL44 Boundry Box +#Line2 + + +1 + +-7.84014558701594,56.4144395016551 +-7.85392268692499,56.5038028838067 +-7.69229328247043,56.5113386430303 +-7.67889148326445,56.4219499212603 +-7.84014558701594,56.4144395016551 + + + + + +NL44 +#labelStyle + +-7.76630586634563,56.4629141708612 + + + + +NL45 + +Small Square NL45 Boundry Box +#Line2 + + +1 + +-7.85392406872583,56.5038118208638 +-7.86778043011496,56.5931717003317 +-7.70577356433921,56.600732920395 +-7.69229462663156,56.5113475826275 +-7.85392406872583,56.5038118208638 + + + + + +NL45 +#labelStyle + +-7.77993576396822,56.552297529577 + + + + +NL46 + +Small Square NL46 Boundry Box +#Line2 + + +1 + +-7.86778181987401,56.5931806370376 +-7.88171807024186,56.6825369977187 +-7.71933160357212,56.6901237982745 +-7.70577491624541,56.600741859653 +-7.86778181987401,56.5931806370376 + + + + + +NL46 +#labelStyle + +-7.79364417901175,56.6416774372151 + + + + +NL47 + +Small Square NL47 Boundry Box +#Line2 + + +1 + +-7.88171946802221,56.6825459340719 +-7.89573624158792,56.7718987596847 +-7.73296801789868,56.7795112613554 +-7.71933296328485,56.6901327371918 +-7.88171946802221,56.6825459340719 + + + + + +NL47 +#labelStyle + +-7.80743173416379,56.7310538780673 + + + + +NL48 + +Small Square NL48 Boundry Box +#Line2 + + +1 + +-7.89573764745334,56.7719076956836 +-7.909835585246,56.8612569697657 +-7.74668343168701,56.8688952941534 +-7.73296938548003,56.7795201999304 +-7.89573764745334,56.7719076956836 + + + + + +NL48 +#labelStyle + +-7.82129905879238,56.820426836251 + + + + +NL49 + +Small Square NL49 Boundry Box +#Line2 + + +1 + +-7.90983699926093,56.8612659054086 +-7.92401674921055,56.9506116113139 +-7.76047847603263,56.9582758810112 +-7.74668480719974,56.8689042323846 +-7.90983699926093,56.8612659054086 + + + + + +NL49 +#labelStyle + +-7.83524678903508,56.9097962957063 + + + + +NL50 + +Small Square NL50 Boundry Box +#Line2 + + +1 + +-7.62602239049735,56.0643264603 +-7.63912158210892,56.1537285723818 +-7.47890619806981,56.1609566858482 +-7.4661745552852,56.0715303827493 +-7.62602239049735,56.0643264603 + + + + + +NL50 +#labelStyle + +-7.55254882471506,56.1126666050269 + + + + +NL51 + +Small Square NL51 Boundry Box +#Line2 + + +1 + +-7.63912289588762,56.153737513321 +-7.65229684513208,56.2431363003499 +-7.49171181016177,56.2503887191367 +-7.47890747498696,56.1609656292124 +-7.63912289588762,56.153737513321 + + + + + +NL51 +#labelStyle + +-7.56550238502061,56.2020882086997 + + + + +NL52 + +Small Square NL52 Boundry Box +#Line2 + + +1 + +-7.65229816641649,56.2431452409559 +-7.66554745905343,56.3325406884381 +-7.50459069189819,56.3398175253313 +-7.49171309437728,56.2503976621789 +-7.65229816641649,56.2431452409559 + + + + + +NL52 +#labelStyle + +-7.57852996659384,56.2915065363177 + + + + +NL53 + +Small Square NL53 Boundry Box +#Line2 + + +1 + +-7.66554878790243,56.3325496287094 +-7.67887401590619,56.4219417219923 +-7.51754341934425,56.4292430906841 +-7.50459198346936,56.3398264680501 +-7.66554878790243,56.3325496287094 + + + + + +NL53 +#labelStyle + +-7.59163215041679,56.3809215737603 + + + + +NL54 + +Small Square NL54 Boundry Box +#Line2 + + +1 + +-7.6788753523793,56.4219506619274 +-7.69227711402096,56.5113393861969 +-7.53057057469771,56.5186654012951 +-7.51754471832901,56.4292520330781 +-7.6788753523793,56.4219506619274 + + + + + +NL54 +#labelStyle + +-7.60480952364597,56.4703333067515 + + + + +NL55 + +Small Square NL55 Boundry Box +#Line2 + + +1 + +-7.69227845817832,56.5113483257943 +-7.705757358109,56.600733666073 +-7.54367274637004,56.6080844431106 +-7.53057188115458,56.5186743433629 +-7.69227845817832,56.5113483257943 + + + + + +NL55 +#labelStyle + +-7.61806267969397,56.5597417208575 + + + + +NL56 + +Small Square NL56 Boundry Box +#Line2 + + +1 + +-7.70575871001141,56.6007426053313 +-7.71931535934687,56.6901245464757 +-7.55685052906897,56.6975002019206 +-7.54367406035817,56.6080933848509 +-7.70575871001141,56.6007426053313 + + + + + +NL56 +#labelStyle + +-7.63139221831235,56.6491468014849 + + + + +NL57 + +Small Square NL57 Boundry Box +#Line2 + + +1 + +-7.71931671905578,56.6901334853933 +-7.73295173546241,56.7795120120917 +-7.57010452388228,56.7869126633567 +-7.55685185064816,56.6975091433319 +-7.71931671905578,56.6901334853933 + + + + + +NL57 +#labelStyle + +-7.64479874567591,56.7385485338779 + + + + +NL58 + +Small Square NL58 Boundry Box +#Line2 + + +1 + +-7.73295310303992,56.779520950667 +-7.74666711082207,56.8688960474369 +-7.58343533836296,56.8763218128896 +-7.57010585311295,56.7869216044375 +-7.73295310303992,56.779520950667 + + + + + +NL58 +#labelStyle + +-7.65828287446826,56.8279469031162 + + + + +NL59 + +Small Square NL59 Boundry Box +#Line2 + + +1 + +-7.74666848633095,56.8689049856684 +-7.76046211651969,56.9582766368539 +-7.59684358661572,56.9657276358269 +-7.58343667530619,56.8763307536385 +-7.74666848633095,56.8689049856684 + + + + + +NL59 +#labelStyle + +-7.67184522396866,56.9173418941126 + + + + +NL60 + +Small Square NL60 Boundry Box +#Line2 + + +1 + +-7.46615856526221,56.0715310928909 +-7.47889017125981,56.160957398375 +-7.31860209841669,56.1679783280116 +-7.30623860514994,56.0785285162371 +-7.46615856526221,56.0715310928909 + + + + + +NL60 +#labelStyle + +-7.39246498122107,56.1197799157448 + + + + +NL61 + +Small Square NL61 Boundry Box +#Line2 + + +1 + +-7.47889144817327,56.1609663417394 +-7.49169574635422,56.2503894340598 +-7.33103745264676,56.2574339811433 +-7.31860333841187,56.1679872737324 +-7.47889144817327,56.1609663417394 + + + + + +NL61 +#labelStyle + +-7.40504960271727,56.2092254280638 + + + + +NL62 + +Small Square NL62 Boundry Box +#Line2 + + +1 + +-7.49169703056602,56.2503983771023 +-7.50457459088463,56.339818242662 +-7.34354398900732,56.3468865168759 +-7.33103869973236,56.2574429265529 +-7.49169703056602,56.2503983771023 + + + + + +NL62 +#labelStyle + +-7.4177061689143,56.2986677751322 + + + + +NL63 + +Small Square NL63 Boundry Box +#Line2 + + +1 + +-7.50457588245207,56.3398271853811 +-7.51752728091464,56.4292438104335 +-7.356122267514,56.4363359223436 +-7.34354524323904,56.3468954619732 +-7.50457588245207,56.3398271853811 + + + + + +NL63 +#labelStyle + +-7.43043524486627,56.3881069437189 + + + + +NL64 + +Small Square NL64 Boundry Box +#Line2 + + +1 + +-7.51752857989564,56.4292527528278 +-7.53055439864036,56.5186661234746 +-7.36877285414889,56.5257821845378 +-7.35612352894814,56.4363448671272 +-7.51752857989564,56.4292527528278 + + + + + +NL64 +#labelStyle + +-7.44323740163734,56.4775429204466 + + + + +NL65 + +Small Square NL65 Boundry Box +#Line2 + + +1 + +-7.53055570509346,56.5186750655427 +-7.54365653247167,56.6080851677315 +-7.38149632093954,56.6152252903056 +-7.36877412284234,56.5257911290064 +-7.53055570509346,56.5186750655427 + + + + + +NL65 +#labelStyle + +-7.45611321638121,56.56697569179 + + + + +NL66 + +Small Square NL66 Boundry Box +#Line2 + + +1 + +-7.543657846456,56.608094109472 +-7.55683427711461,56.6975009289945 +-7.39429324603941,56.7046652263472 +-7.38149759694981,56.6152342344579 +-7.543657846456,56.608094109472 + + + + + +NL66 +#labelStyle + +-7.46906327242191,56.6564052440734 + + + + +NL67 + +Small Square NL67 Boundry Box +#Line2 + + +1 + +-7.55683559868997,56.697509870406 +-7.57008823365531,56.7869133928951 +-7.40716421380941,56.794101979214 +-7.39429452942463,56.7046741701819 +-7.55683559868997,56.697509870406 + + + + + +NL67 +#labelStyle + +-7.48208815933587,56.7458315634687 + + + + +NL68 + +Small Square NL68 Boundry Box +#Line2 + + +1 + +-7.57008956288214,56.7869223339761 +-7.58341900964506,56.8763225449041 +-7.42010981490086,56.8835355353063 +-7.40716550462833,56.7941109227296 +-7.57008956288214,56.7869223339761 + + + + + +NL68 +#labelStyle + +-7.4951884730353,56.8352546359927 + + + + +NL69 + +Small Square NL69 Boundry Box +#Line2 + + +1 + +-7.58342034658444,56.8763314856532 +-7.59682721918688,56.9657283703294 +-7.43313064633977,56.9729658808712 +-7.42011111321286,56.8835444785016 +-7.58342034658444,56.8763314856532 + + + + + +NL69 +#labelStyle + +-7.50836481585291,56.9246744475056 + + + + +NL70 + +Small Square NL70 Boundry Box +#Line2 + + +1 + +-7.30622260801645,56.0785292057168 +-7.31858606444056,56.1679790198079 +-7.15822737425054,56.1747925673415 +-7.14623257874027,56.0853199331008 +-7.30622260801645,56.0785292057168 + + + + + +NL70 +#labelStyle + +-7.23230975561125,56.126686265149 + + + + +NL71 + +Small Square NL71 Boundry Box +#Line2 + + +1 + +-7.31858730443206,56.1679879655289 +-7.33102138161688,56.2574346752671 +-7.17029191651386,56.2642711509453 +-7.15822857726866,56.17480151535 +-7.31858730443206,56.1679879655289 + + + + + +NL71 +#labelStyle + +-7.2445248791976,56.216154998998 + + + + +NL72 + +Small Square NL72 Boundry Box +#Line2 + + +1 + +-7.33102262869876,56.257443620677 +-7.34352788071463,56.3468872133381 +-7.18242554750534,56.3537467237279 +-7.17029312641385,56.2642800986533 +-7.33102262869876,56.257443620677 + + + + + +NL72 +#labelStyle + +-7.25680986498636,56.3056206753028 + + + + +NL73 + +Small Square NL73 Boundry Box +#Line2 + + +1 + +-7.34352913494261,56.3468961584356 +-7.35610612174785,56.436336621155 +-7.1946288111132,56.4432192736813 +-7.1824267643413,56.3537556711343 +-7.34352913494261,56.3468961584356 + + + + + +NL73 +#labelStyle + +-7.26916526202547,56.3950832816975 + + + + +NL74 + +Small Square NL74 Boundry Box +#Line2 + + +1 + +-7.35610738317823,56.4363455659388 +-7.36875667069698,56.5257828857095 +-7.20690225702478,56.5326887886637 +-7.19463003493982,56.4432282207847 +-7.35610738317823,56.4363455659388 + + + + + +NL74 +#labelStyle + +-7.28159162520721,56.4845428056796 + + + + +NL75 + +Small Square NL75 Boundry Box +#Line2 + + +1 + +-7.36875793938666,56.5257918301783 +-7.38148009958796,56.6152259938486 +-7.2192464408034,56.6221552563982 +-7.20690348789731,56.5326977354631 +-7.36875793938666,56.5257918301783 + + + + + +NL75 +#labelStyle + +-7.29408951534562,56.5739992346074 + + + + +NL76 + +Small Square NL76 Boundry Box +#Line2 + + +1 + +-7.38148137559444,56.6152349380011 +-7.39427698657257,56.7046659322727 +-7.23166192396659,56.7116186644702 +-7.21924767877769,56.6221642028922 +-7.38148137559444,56.6152349380011 + + + + + +NL76 +#labelStyle + +-7.30665949925512,56.6634525556983 + + + + +NL77 + +Small Square NL77 Boundry Box +#Line2 + + +1 + +-7.39427826995397,56.7046748761076 +-7.40714791601005,56.7941026875332 +-7.24414927406548,56.8010790003256 +-7.2316631690991,56.7116276106575 +-7.39427826995397,56.7046748761076 + + + + + +NL77 +#labelStyle + +-7.3193021498304,56.7529027560265 + + + + +NL78 + +Small Square NL78 Boundry Box +#Line2 + + +1 + +-7.40714920682513,56.7941116310491 +-7.42009347855003,56.8835362460306 +-7.25670906476547,56.8905362512689 +-7.24415052641327,56.8010879462051 +-7.40714920682513,56.7941116310491 + + + + + +NL78 +#labelStyle + +-7.33201804612758,56.8423498225212 + + + + +NL79 + +Small Square NL79 Boundry Box +#Line2 + + +1 + +-7.42009477685816,56.8835451892261 +-7.43311427121678,56.972966594012 +-7.26934187592824,56.9799904044608 +-7.25671032438622,56.8905451968393 +-7.42009477685816,56.8835451892261 + + + + + +NL79 +#labelStyle + +-7.34480777344668,56.931793741964 + + + + +NL80 + +Small Square NL80 Boundry Box +#Line2 + + +1 + +-7.14621657470215,56.0853206018992 +-7.15821133331575,56.1747932383877 +-6.99778410304025,56.1813992112404 +-6.98615853772721,56.0919044421181 +-7.14621657470215,56.0853206018992 + + + + + +NL80 +#labelStyle + +-7.07208521457326,56.1333854584909 + + + + +NL81 + +Small Square NL81 Boundry Box +#Line2 + + +1 + +-7.15821253633017,56.1748021863965 +-7.1702758384707,56.2642718242501 +-7.00947729519451,56.2709000345566 +-6.99778526902777,56.1814081614677 +-7.15821253633017,56.1748021863965 + + + + + +NL81 +#labelStyle + +-7.08393029699226,56.2228767253522 + + + + +NL82 + +Small Square NL82 Boundry Box +#Line2 + + +1 + +-7.17027704836698,56.2642807719583 +-7.18240943214418,56.3537473993018 +-7.02123747695147,56.3603979504986 +-7.00947846785479,56.2709089844938 +-7.17027704836698,56.2642807719583 + + + + + +NL82 +#labelStyle + +-7.09584315334734,56.3123650392635 + + + + +NL83 + +Small Square NL83 Boundry Box +#Line2 + + +1 + +-7.1824106489764,56.3537563467083 +-7.1946126582228,56.4432199515348 +-7.03306517599623,56.4498929478914 +-7.02123865633701,56.3604069001444 +-7.1824106489764,56.3537563467083 + + + + + +NL83 +#labelStyle + +-7.10782431660404,56.4018503887003 + + + + +NL84 + +Small Square NL84 Boundry Box +#Line2 + + +1 + +-7.19461388204565,56.4432288986384 +-7.20688606639224,56.5326894688075 +-7.04496092564442,56.5393850154358 +-7.03306636216008,56.4499018972449 +-7.19461388204565,56.4432288986384 + + + + + +NL84 +#labelStyle + +-7.11987432540538,56.4913327620101 + + + + +NL85 + +Small Square NL85 Boundry Box +#Line2 + + +1 + +-7.20688729726099,56.532698415607 +-7.2192302122142,56.622155938843 +-7.05692526491699,56.6288741417057 +-7.04496211864018,56.5393939644957 +-7.20688729726099,56.532698415607 + + + + + +NL85 +#labelStyle + +-7.1319937241471,56.5808121474103 + + + + +NL86 + +Small Square NL86 Boundry Box +#Line2 + + +1 + +-7.21923145018469,56.6221648853372 +-7.23164565720454,56.7116193492268 +-7.06895873861613,56.7183603151465 +-7.05692646479885,56.6288830904709 +-7.21923145018469,56.6221648853372 + + + + + +NL86 +#labelStyle + +-7.14418306305413,56.6702885329862 + + + + +NL87 + +Small Square NL87 Boundry Box +#Line2 + + +1 + +-7.23164690233323,56.7116282954144 +-7.2441329689127,56.8010796874051 +-7.08106189740249,56.8078435240733 +-7.06895994543887,56.7183692636158 +-7.23164690233323,56.7116282954144 + + + + + +NL87 +#labelStyle + +-7.15644289825826,56.7597619066893 + + + + +NL88 + +Small Square NL88 Boundry Box +#Line2 + + +1 + +-7.24413422125664,56.8010886332849 +-7.25669272100237,56.8905369406822 +-7.0932352978736,56.8973237566689 +-7.08106311122148,56.8078524722455 +-7.24413422125664,56.8010886332849 + + + + + +NL88 +#labelStyle + +-7.16877379187706,56.8492322563354 + + + + +NL89 + +Small Square NL89 Boundry Box +#Line2 + + +1 + +-7.25669398061924,56.8905458862529 +-7.26932549333352,56.9799910962192 +-7.10547950264348,56.9868010009818 +-7.09323651874478,56.8973327045429 +-7.25669398061924,56.8905458862529 + + + + + +NL89 +#labelStyle + +-7.1811763120941,56.938699569602 + + + + +NL90 + +Small Square NL90 Boundry Box +#Line2 + + +1 + +-6.98614252699092,56.0919050902163 +-6.99776805535484,56.1813998615177 +-6.83727436789717,56.1877980728273 +-6.82601854935105,56.098281857743 +-6.98614252699092,56.0919050902163 + + + + + +NL90 +#labelStyle + +-6.91179343048125,56.1398773067086 + + + + +NL91 + +Small Square NL91 Boundry Box +#Line2 + + +1 + +-6.99776922133865,56.1814088117452 +-7.00946121034771,56.2709006870233 +-6.84859568783704,56.2773204437474 +-6.83727549680215,56.1878070252044 +-6.99776922133865,56.1814088117452 + + + + + +NL91 +#labelStyle + +-6.92326794439333,56.2293904167023 + + + + +NL92 + +Small Square NL92 Boundry Box +#Line2 + + +1 + +-7.00946238300426,56.2709096369607 +-7.02122135473309,56.3603986051648 +-6.85998189269747,56.3668400075956 +-6.84859682320513,56.2773293958443 +-7.00946238300426,56.2709096369607 + + + + + +NL92 +#labelStyle + +-6.93480813837201,56.3189006752147 + + + + +NL93 + +Small Square NL93 Boundry Box +#Line2 + + +1 + +-7.02122253411488,56.3604075548109 +-7.03304901619446,56.4498936047676 +-6.87143349388681,56.456356754006 +-6.85998303457953,56.3668489594113 +-7.02122253411488,56.3604075548109 + + + + + +NL93 +#labelStyle + +-6.94641452922636,56.4084080715382 + + + + +NL94 + +Small Square NL94 Boundry Box +#Line2 + + +1 + +-7.03305020235452,56.4499025541212 +-7.04494472804579,56.5393856745321 +-6.88295100827424,56.5458706724962 +-6.87143464233426,56.4563657055394 +-7.03305020235452,56.4499025541212 + + + + + +NL94 +#labelStyle + +-6.95808763927486,56.4979125948455 + + + + +NL95 + +Small Square NL95 Boundry Box +#Line2 + + +1 + +-7.04494592103776,56.5393946235922 +-7.05690902930639,56.6288748030326 +-6.89453495826236,56.6353817524661 +-6.88295216333904,56.5458796237463 +-7.04494592103776,56.5393946235922 + + + + + +NL95 +#labelStyle + +-6.96982799641852,56.5874142341883 + + + + +NL96 + +Small Square NL96 Boundry Box +#Line2 + + +1 + +-7.05691022918444,56.628883751798 +-7.06894246477676,56.7183609787145 +-6.90618587186086,56.7248899831959 +-6.89453611999703,56.6353907034318 +-7.05691022918444,56.628883751798 + + + + + +NL96 +#labelStyle + +-6.98163613421509,56.6769129784947 + + + + +NL97 + +Small Square NL97 Boundry Box +#Line2 + + +1 + +-7.06894367159567,56.7183699271841 +-7.08104558511588,56.8078441898931 +-6.9179042827615,56.8143953538441 +-6.90618704031848,56.7248989338762 +-7.06894367159567,56.7183699271841 + + + + + +NL97 +#labelStyle + +-6.99351259195454,56.7664088165681 + + + + +NL98 + +Small Square NL98 Boundry Box +#Line2 + + +1 + +-7.08104679893101,56.8078531380656 +-7.09321894691954,56.8973244247512 +-6.92969073041425,56.903897853446 +-6.91790545799574,56.8144043042378 +-7.08104679893101,56.8078531380656 + + + + + +NL98 +#labelStyle + +-7.00545791473571,56.8559017370849 + + + + +NL99 + +Small Square NL99 Boundry Box +#Line2 + + +1 + +-7.09322016778685,56.8973333726254 +-7.10546311280006,56.9868016713373 +-6.94154576010455,56.9933974709115 +-6.92969191247932,56.903906803552 +-7.09322016778685,56.8973333726254 + + + + + +NL99 +#labelStyle + +-7.01747265354422,56.9453917285929 + + + + + +NM + +Large Square NM Boundry Box +#Line1 + + +1 + +-6.82600253212358,56.0982824851228 +-6.94152936323609,56.9933981198446 +-5.29877859525524,57.0475457098486 +-5.22145000854166,56.1506291527211 +-6.82600253212358,56.0982824851228 + + + + + +NM00 + +Small Square NM00 Boundry Box +#Line2 + + +1 + +-6.82600253212358,56.0982824851228 +-6.83725831366971,56.1877987023172 +-6.67670025741147,56.1939889709567 +-6.66581468625966,56.1044520001253 +-6.82600253212358,56.0982824851228 + + + + + +NM00 +#labelStyle + +-6.75143648123388,56.1461616264463 + + + + +NM01 + +Small Square NM01 Boundry Box +#Line2 + + +1 + +-6.83725944257098,56.1878076546945 +-6.8485795963968,56.2773210753574 +-6.68764919914097,56.2835321960639 +-6.67670134918358,56.1939979254144 +-6.83725944257098,56.1878076546945 + + + + + +NM01 +#labelStyle + +-6.76253991529024,56.2356958883706 + + + + +NM02 + +Small Square NM02 Boundry Box +#Line2 + + +1 + +-6.84858073176115,56.2773300274545 +-6.85996576383369,56.3668406413356 +-6.69866091571974,56.373072711244 +-6.68765029716599,56.2835411502511 +-6.84858073176115,56.2773300274545 + + + + + +NM02 +#labelStyle + +-6.77370693010649,56.3252273971434 + + + + +NM03 + +Small Square NM03 Boundry Box +#Line2 + + +1 + +-6.85996690571199,56.3668495931515 +-6.87141732738712,56.4563573898859 +-6.70973590220798,56.4626105069147 +-6.69866202004691,56.3730816651596 +-6.85996690571199,56.3668495931515 + + + + + +NM03 +#labelStyle + +-6.78493802626329,56.4147561428494 + + + + +NM04 + +Small Square NM04 Boundry Box +#Line2 + + +1 + +-6.87141847583079,56.4563663414195 +-6.88293480392463,56.5458713105261 +-6.72087465895583,56.5521455733863 +-6.70973701288707,56.462619460558 +-6.87141847583079,56.4563663414195 + + + + + +NM04 +#labelStyle + +-6.79623370968152,56.5042821154619 + + + + +NM05 + +Small Square NM05 Boundry Box +#Line2 + + +1 + +-6.88293595898563,56.5458802617764 +-6.89451871584714,56.6353823926561 +-6.7320776916738,56.641677900859 +-6.72087577603716,56.5521545267561 +-6.88293595898563,56.5458802617764 + + + + + +NM05 +#labelStyle + +-6.80759449169315,56.5938053048414 + + + + +NM06 + +Small Square NM06 Boundry Box +#Line2 + + +1 + +-6.89451987757798,56.635391343622 +-6.90616959116265,56.7248906255562 +-6.74334551150416,56.7312074794221 +-6.73207881520819,56.6416868539545 +-6.89451987757798,56.635391343622 + + + + + +NM06 +#labelStyle + +-6.81902088911334,56.6833257007337 + + + + +NM07 + +Small Square NM07 Boundry Box +#Line2 + + +1 + +-6.90617075961643,56.7248995762366 +-6.91788796356125,56.8143959983849 +-6.75467863509369,56.8207342990518 +-6.74334664154301,56.7312164322422 +-6.90617075961643,56.7248995762366 + + + + + +NM07 +#labelStyle + +-6.83051342431356,56.7728432927684 + + + + +NM08 + +Small Square NM08 Boundry Box +#Line2 + + +1 + +-6.91788913879162,56.8144049487789 +-6.92967437249116,56.9038985001777 +-6.7660775846674,56.9102583496096 +-6.75467977168893,56.8207432515954 +-6.91788913879162,56.8144049487789 + + + + + +NM08 +#labelStyle + +-6.84207262529607,56.8623580704568 + + + + +NM09 + +Small Square NM09 Boundry Box +#Line2 + + +1 + +-6.92967555455235,56.9039074502839 +-6.94152936323609,56.9933981198446 +-6.7775428881036,56.9997796208407 +-6.76607872787154,56.9102673018758 +-6.92967555455235,56.9039074502839 + + + + + +NM09 +#labelStyle + +-6.85369902576937,56.9518700231907 + + + + +NM10 + +Small Square NM10 Boundry Box +#Line2 + + +1 + +-6.66579866274853,56.104452606769 +-6.67668419685109,56.1939895796414 +-6.5160638654873,56.199971730238 +-6.50554902634573,56.1104146951293 +-6.66579866274853,56.104452606769 + + + + + +NM10 +#labelStyle + +-6.59101645009115,56.1522382400732 + + + + +NM11 + +Small Square NM11 Boundry Box +#Line2 + + +1 + +-6.67668528861949,56.1939985340993 +-6.68763310131801,56.2835328067993 +-6.52663993919,56.2895351148476 +-6.51606492007782,56.1999806867069 +-6.67668528861949,56.1939985340993 + + + + + +NM11 +#labelStyle + +-6.60174830900445,56.2417929614446 + + + + +NM12 + +Small Square NM12 Boundry Box +#Line2 + + +1 + +-6.68763419933929,56.2835417609867 +-6.69864478042292,56.3730733240396 +-6.53727667245026,56.3790958835044 +-6.52664099982272,56.2895440710554 +-6.68763419933929,56.2835417609867 + + + + + +NM12 +#labelStyle + +-6.61254164410077,56.3313450248426 + + + + +NM13 + +Small Square NM13 Boundry Box +#Line2 + + +1 + +-6.69864588474634,56.3730822779555 +-6.70971972922439,56.4626111217803 +-6.54797454391084,56.4686540273852 +-6.53727773917279,56.3791048394502 +-6.69864588474634,56.3730822779555 + + + + + +NM13 +#labelStyle + +-6.62339693966259,56.4208944211194 + + + + +NM14 + +Small Square NM14 Boundry Box +#Line2 + + +1 + +-6.70972083989972,56.4626200754238 +-6.72085844807093,56.5521461903314 +-6.55873403733251,56.5582095375671 +-6.54797561677129,56.4686629830681 +-6.70972083989972,56.4626200754238 + + + + + +NM14 +#labelStyle + +-6.63431468514225,56.5104411410238 + + + + +NM15 + +Small Square NM15 Boundry Box +#Line2 + + +1 + +-6.72085956514845,56.5521551437015 +-6.73206144267133,56.6416785198936 +-6.56955564166214,56.6477624050254 +-6.55873511637951,56.5582184929861 +-6.72085956514845,56.5521551437015 + + + + + +NM15 +#labelStyle + +-6.64529537523067,56.5999851752001 + + + + +NM16 + +Small Square NM16 Boundry Box +#Line2 + + +1 + +-6.73206256620189,56.6416874729893 +-6.7433292241662,56.7312081005559 +-6.58043985110199,56.7373126206328 +-6.56955672694486,56.6477713601797 +-6.73206256620189,56.6416874729893 + + + + + +NM16 +#labelStyle + +-6.65633950992717,56.6895265141859 + + + + +NM17 + +Small Square NM17 Boundry Box +#Line2 + + +1 + +-6.74333035420119,56.7312170533762 +-6.75466230920059,56.8207349222948 +-6.59138716518002,56.826860175157 +-6.58044094267012,56.7373215755214 +-6.74333035420119,56.7312170533762 + + + + + +NM17 +#labelStyle + +-6.66744759461043,56.7790651484114 + + + + +NM18 + +Small Square NM18 Boundry Box +#Line2 + + +1 + +-6.75466344579196,56.8207438748387 +-6.76606121999781,56.9102589749718 +-6.60239808882134,56.9164050592598 +-6.59138826308376,56.8268691297791 +-6.75466344579196,56.8207438748387 + + + + + +NM18 +#labelStyle + +-6.67862014011047,56.8686010681969 + + + + +NM19 + +Small Square NM19 Boundry Box +#Line2 + + +1 + +-6.76606236319806,56.9102679272383 +-6.7775264844344,56.9997802483323 +-6.61347313242085,57.0059472634949 +-6.60239919311146,56.9164140136144 +-6.76606236319806,56.9102679272383 + + + + + +NM19 +#labelStyle + +-6.68985766278196,56.9581342637515 + + + + +NM20 + +Small Square NM20 Boundry Box +#Line2 + + +1 + +-6.50553299675899,56.1104152810197 +-6.51604779880366,56.1999723181002 +-6.35536729117678,56.205746181053 +-6.34522365258293,56.1161697743516 +-6.50553299675899,56.1104152810197 + + + + + +NM20 +#labelStyle + +-6.43053542550998,56.1581069757022 + + + + +NM21 + +Small Square NM21 Boundry Box +#Line2 + + +1 + +-6.51604885339046,56.1999812745694 +-6.52662383519561,56.289535704691 +-6.36557002328395,56.2953290292536 +-6.3553683085386,56.2057551394638 +-6.51604885339046,56.1999812745694 + + + + + +NM21 +#labelStyle + +-6.44089523012298,56.247681462796 + + + + +NM22 + +Small Square NM22 Boundry Box +#Line2 + + +1 + +-6.52662489582458,56.289544660899 +-6.53726053093333,56.3790964753382 +-6.3758312946063,56.3849093522928 +-6.36557104647676,56.2953379874123 +-6.52662489582458,56.289544660899 + + + + + +NM22 +#labelStyle + +-6.45131440124016,56.3372533839305 + + + + +NM23 + +Small Square NM23 Boundry Box +#Line2 + + +1 + +-6.53726159765209,56.3791054312842 +-6.54795836465794,56.4686546212188 +-6.38615156730208,56.4744871420814 +-6.37583232367605,56.3849183101986 +-6.53726159765209,56.3791054312842 + + + + + +NM23 +#labelStyle + +-6.46179340677815,56.4268227307 + + + + +NM24 + +Small Square NM24 Boundry Box +#Line2 + + +1 + +-6.54795943751461,56.4686635769018 +-6.55871782012854,56.5582101334097 +-6.39653130847453,56.5640623904379 +-6.38615260229525,56.4744960997334 +-6.54795943751461,56.4686635769018 + + + + + +NM24 +#labelStyle + +-6.47233271965204,56.516389494604 + + + + +NM25 + +Small Square NM25 Boundry Box +#Line2 + + +1 + +-6.55871889917174,56.5582190888289 +-6.56953938629034,56.6477630028867 +-6.40697099023773,56.6536350890874 +-6.39653234943807,56.5640713478354 +-6.55871889917174,56.5582190888289 + + + + + +NM25 +#labelStyle + +-6.48293281784192,56.6059536670449 + + + + +NM26 + +Small Square NM26 Boundry Box +#Line2 + + +1 + +-6.56954047156924,56.6477719580412 +-6.5804235573439,56.7373132205222 +-6.41747108978354,56.7432052296596 +-6.4069720372191,56.6536440462295 +-6.56954047156924,56.6477719580412 + + + + + +NM26 +#labelStyle + +-6.49359418446037,56.6955152393267 + + + + +NM27 + +Small Square NM27 Boundry Box +#Line2 + + +1 + +-6.58042464890817,56.737322175411 +-6.59137083281544,56.8268607770841 +-6.42803208944962,56.8327728036879 +-6.41747214283072,56.7432141865455 +-6.58042464890817,56.737322175411 + + + + + +NM27 +#labelStyle + +-6.50431730782115,56.785074202654 + + + + +NM28 + +Small Square NM28 Boundry Box +#Line2 + + +1 + +-6.59137193071531,56.8268697317064 +-6.60238171762834,56.9164056632343 +-6.43865447678859,56.9223378026077 +-6.42803314861111,56.8327817603167 +-6.59137193071531,56.8268697317064 + + + + + +NM28 +#labelStyle + +-6.51510268150889,56.8746305481298 + + + + +NM29 + +Small Square NM29 Boundry Box +#Line2 + + +1 + +-6.60238282191458,56.9164146175891 +-6.61345672217578,57.0059478695267 +-6.44933874463816,57.0119002177545 +-6.4386555421134,56.9223467589785 +-6.60238282191458,56.9164146175891 + + + + + +NM29 +#labelStyle + +-6.52595080444998,56.9641842667543 + + + + +NM30 + +Small Square NM30 Boundry Box +#Line2 + + +1 + +-6.34520761712913,56.1161703394722 +-6.35535121858003,56.2057467480761 +-6.19461263851287,56.2113121595744 +-6.18484065286082,56.1217170751388 +-6.34520761712913,56.1161703394722 + + + + + +NM30 +#labelStyle + +-6.26999550097869,56.1637676672075 + + + + +NM31 + +Small Square NM31 Boundry Box +#Line2 + + +1 + +-6.35535223593813,56.2057557064871 +-6.36555391332991,56.2953295981882 +-6.20444157176941,56.3009137742685 +-6.19461361860051,56.2113211198575 +-6.35535223593813,56.2057557064871 + + + + + +NM31 +#labelStyle + +-6.27998278833078,56.2533612250988 + + + + +NM32 + +Small Square NM32 Boundry Box +#Line2 + + +1 + +-6.36555493651897,56.2953385563471 +-6.37581514708268,56.3849099231479 +-6.21432691901889,56.3905129513979 +-6.20444255747633,56.3009227343082 +-6.36555493651897,56.2953385563471 + + + + + +NM32 +#labelStyle + +-6.29002732757542,56.3429523058683 + + + + +NM33 + +Small Square NM33 Boundry Box +#Line2 + + +1 + +-6.37581617614866,56.3849188810538 +-6.38613538199495,56.4744877148659 +-6.22426912587021,56.480109683582 +-6.2143279103894,56.3905219111935 +-6.37581617614866,56.3849188810538 + + + + + +NM33 +#labelStyle + +-6.30012957019794,56.4325409018279 + + + + +NM34 + +Small Square NM34 Boundry Box +#Line2 + + +1 + +-6.38613641698432,56.4744966725181 +-6.39651508516829,56.5640629651609 +-6.23426864270321,56.5697039633554 +-6.22427012294914,56.4801186431327 +-6.38613641698432,56.4744966725181 + + + + + +NM34 +#labelStyle + +-6.31028997250973,56.5221270052019 + + + + +NM35 + +Small Square NM35 Boundry Box +#Line2 + + +1 + +-6.39651612612801,56.5640719225586 +-6.40695472871508,56.653635665758 +-6.24432592473221,56.6592957831667 +-6.23426964553582,56.5697129226605 +-6.39651612612801,56.5640719225586 + + + + + +NM35 +#labelStyle + +-6.32050899571247,56.6117106081255 + + + + +NM36 + +Small Square NM36 Boundry Box +#Line2 + + +1 + +-6.40695577569262,56.6536446229003 +-6.41745478982549,56.7432058082871 +-6.25444143207067,56.748885135377 +-6.24432693336426,56.6593047422254 +-6.40695577569262,56.6536446229003 + + + + + +NM36 +#labelStyle + +-6.33078710596339,56.7012917026433 + + + + +NM37 + +Small Square NM37 Boundry Box +#Line2 + + +1 + +-6.41745584286882,56.7432147651731 +-6.42801575083547,56.8327733842816 +-6.26461562979687,56.8384720122589 +-6.25444244654842,56.7488940941886 +-6.41745584286882,56.7432147651731 + + + + + +NM37 +#labelStyle + +-6.34112477444159,56.7908702807079 + + + + +NM38 + +Small Square NM38 Boundry Box +#Line2 + + +1 + +-6.42801680999309,56.8327823409105 +-6.43863809929587,56.9223383851768 +-6.27484898802066,56.9280564059946 +-6.26461665016709,56.8384809708225 +-6.42801680999309,56.8327823409105 + + + + + +NM38 +#labelStyle + +-6.35152247741546,56.8804463341789 + + + + +NM39 + +Small Square NM39 Boundry Box +#Line2 + + +1 + +-6.43863916461678,56.9223473415478 +-6.44932232804266,57.0119008023086 +-6.28514198195124,57.0176383086748 +-6.27485001433061,56.9280653643095 +-6.43863916461678,56.9223473415478 + + + + + +NM39 +#labelStyle + +-6.3619806963111,56.9700198548209 + + + + +NM40 + +Small Square NM40 Boundry Box +#Line2 + + +1 + +-6.18482461174899,56.1217176194736 +-6.19459656021366,56.2113127057423 +-6.03380201634116,56.2166695077824 +-6.02440211981881,56.127056440604 +-6.18482461174899,56.1217176194736 + + + + + +NM40 +#labelStyle + +-6.10939877485041,56.1692201542422 + + + + +NM41 + +Small Square NM41 Boundry Box +#Line2 + + +1 + +-6.19459754029758,56.2113216660256 +-6.204425456068,56.3009143222781 +-6.04325670986937,56.3062891907278 +-6.03380295911076,56.2166784698681 +-6.19459754029758,56.2113216660256 + + + + + +NM41 +#labelStyle + +-6.11901309824195,56.2588320868465 + + + + +NM42 + +Small Square NM42 Boundry Box +#Line2 + + +1 + +-6.20442644177117,56.300923282318 +-6.21431076570251,56.3905135012579 +-6.05276568746026,56.395906520499 +-6.04325765804609,56.3062981525785 +-6.20442644177117,56.300923282318 + + + + + +NM42 +#labelStyle + +-6.12868255415184,56.3484416279784 + + + + +NM43 + +Small Square NM43 Boundry Box +#Line2 + + +1 + +-6.21431175706926,56.3905224610536 +-6.22425293472445,56.480110235301 +-6.06232937811078,56.4855214903984 +-6.05276664108675,56.3959154821141 +-6.21431175706926,56.3905224610536 + + + + + +NM43 +#labelStyle + +-6.13840757757092,56.4380487706423 + + + + +NM44 + +Small Square NM44 Boundry Box +#Line2 + + +1 + +-6.22425393179958,56.4801191948519 +-6.23425241351197,56.5697045169421 +-6.07194821541374,56.575134093651 +-6.06233033723019,56.4855304517772 +-6.22425393179958,56.4801191948519 + + + + + +NM44 +#labelStyle + +-6.1481886081426,56.5276535077619 + + + + +NM45 + +Small Square NM45 Boundry Box +#Line2 + + +1 + +-6.23425341634076,56.5697134762474 +-6.2443096572777,56.65929633863 +-6.08162263761907,56.6647443234031 +-6.07194918006965,56.5751430547928 +-6.23425341634076,56.5697134762474 + + + + + +NM45 +#labelStyle + +-6.1580260902249,56.6172558321792 + + + + +NM46 + +Small Square NM46 Boundry Box +#Line2 + + +1 + +-6.24431066590591,56.6593052976889 +-6.25442512613339,56.7488856927258 +-6.09135308769617,56.7543521727208 +-6.08162360785555,56.6647532843071 +-6.24431066590591,56.6593052976889 + + + + + +NM46 +#labelStyle + +-6.16792047295336,56.7068557366534 + + + + +NM47 + +Small Square NM47 Boundry Box +#Line2 + + +1 + +-6.25442614060729,56.7488946515376 +-6.26459928515561,56.8384725715021 +-6.1011400133972,56.8439576345893 +-6.09135406355774,56.7543611333865 +-6.25442614060729,56.7488946515376 + + + + + +NM47 +#labelStyle + +-6.17787221030508,56.7964532138591 + + + + +NM48 + +Small Square NM48 Boundry Box +#Line2 + + +1 + +-6.26460030552195,56.8384815300659 +-6.27483260445243,56.9280569671412 +-6.11098386732144,56.9335607019111 +-6.10114099492889,56.8439665950159 +-6.26460030552195,56.8384815300659 + + + + + +NM48 +#labelStyle + +-6.1878817611637,56.8860482563856 + + + + +NM49 + +Small Square NM49 Boundry Box +#Line2 + + +1 + +-6.27483363075847,56.9280659254563 +-6.2851255592313,57.017638871734 +-6.12088510698066,57.0231613675048 +-6.11098485456874,56.9335696620978 +-6.27483363075847,56.9280659254563 + + + + + +NM49 +#labelStyle + +-6.19794958938549,56.9756408567351 + + + + +NM50 + +Small Square NM50 Boundry Box +#Line2 + + +1 + +-6.02438607325844,56.1270569641377 +-6.0337859325506,56.2166700330795 +-5.87293753815057,56.2218180734807 +-5.86391015067907,56.1321877196434 +-6.02438607325844,56.1270569641377 + + + + + +NM50 +#labelStyle + +-5.94874735017539,56.1744642822545 + + + + +NM51 + +Small Square NM51 Boundry Box +#Line2 + + +1 + +-6.03378687531648,56.2166789951654 +-6.04324058863335,56.3062897177968 +-5.88201756751176,56.3114551253322 +-5.87293844355992,56.2218270372993 +-6.03378687531648,56.2166789951654 + + + + + +NM51 +#labelStyle + +-5.95798827922992,56.2640938923689 + + + + +NM52 + +Small Square NM52 Boundry Box +#Line2 + + +1 + +-6.04324153680631,56.3062986796477 +-6.05274952856554,56.3959070493481 +-5.89114974647015,56.4010899051825 +-5.8820184781156,56.3114640889239 +-6.04324153680631,56.3062986796477 + + + + + +NM52 +#labelStyle + +-5.96728221683726,56.3537211934612 + + + + +NM53 + +Small Square NM53 Boundry Box +#Line2 + + +1 + +-6.05275048218826,56.3959160109634 +-6.06231318134249,56.4855220210361 +-5.90033448735041,56.4907224069914 +-5.89115066230949,56.4010988685466 +-6.05275048218826,56.3959160109634 + + + + + +NM53 +#labelStyle + +-5.97662958143274,56.4433461792026 + + + + +NM54 + +Small Square NM54 Boundry Box +#Line2 + + +1 + +-6.0623141404581,56.485530982415 +-6.0719319805553,56.5751346260856 +-5.90957220689698,56.5803526246486 +-5.90033540846671,56.4907313701275 +-6.0623141404581,56.485530982415 + + + + + +NM54 +#labelStyle + +-5.98603079592984,56.5329688431906 + + + + +NM55 + +Small Square NM55 Boundry Box +#Line2 + + +1 + +-6.07193294520739,56.5751435872275 +-6.08160636445221,56.664744857643 +-5.91886332633311,56.6699805519716 +-5.90957313333214,56.5803615875559 +-6.07193294520739,56.5751435872275 + + + + + +NM55 +#labelStyle + +-5.99548628777993,56.6225891789484 + + + + +NM56 + +Small Square NM56 Boundry Box +#Line2 + + +1 + +-6.08160733468484,56.6647538185473 +-6.0913367760009,56.7543527087747 +-5.9282082714208,56.7596061827057 +-5.91886425812947,56.6699895146496 +-6.08160733468484,56.6647538185473 + + + + + +NM56 +#labelStyle + +-6.00499648903291,56.7122071799232 + + + + +NM57 + +Small Square NM57 Boundry Box +#Line2 + + +1 + +-6.09133775185861,56.7543616694405 +-6.10112366295181,56.8439581724658 +-5.93760747252177,56.8492295105216 +-5.92820920862117,56.7596151451537 +-6.09133775185861,56.7543616694405 + + + + + +NM57 +#labelStyle + +-6.01456183639884,56.8018228394855 + + + + +NM58 + +Small Square NM58 Boundry Box +#Line2 + + +1 + +-6.1011246444796,56.8439671328925 +-6.11096747790245,56.9335612416188 +-5.94706136465938,56.9388505290152 +-5.93760841516942,56.849238472739 +-6.1011246444796,56.8439671328925 + + + + + +NM58 +#labelStyle + +-6.02418277131058,56.8914361509273 + + + + +NM59 + +Small Square NM59 Boundry Box +#Line2 + + +1 + +-6.11096846514584,56.9335702018058 +-6.12086867836281,57.0231619090526 +-5.95657038758149,57.028469231706 +-5.94706231279804,56.9388594910014 +-6.11096846514584,56.9335702018058 + + + + + +NM59 +#labelStyle + +-6.03385973998741,56.9810471074614 + + + + +NM60 + +Small Square NM60 Boundry Box +#Line2 + + +1 + +-5.86389409888011,56.1321882223611 +-5.87292144908026,56.2218185778922 +-5.71202132190311,56.2267577103133 +-5.70336684707837,56.1371107669515 +-5.86389409888011,56.1321882223611 + + + + + +NM60 +#labelStyle + +-5.78804333453233,56.179499902504 + + + + +NM61 + +Small Square NM61 Boundry Box +#Line2 + + +1 + +-5.87292235448587,56.2218275417109 +-5.88200144095435,56.3114556314456 +-5.72072627915693,56.3164114306641 +-5.71202218991163,56.2267666757949 +-5.87292235448587,56.2218275417109 + + + + + +NM61 +#labelStyle + +-5.79691045525655,56.2691464918487 + + + + +NM62 + +Small Square NM62 Boundry Box +#Line2 + + +1 + +-5.88200235155443,56.3114645950374 +-5.89113358221198,56.4010904130057 +-5.72948124718106,56.4060629569584 +-5.72072715214689,56.3164203959265 +-5.88200235155443,56.3114645950374 + + + + + +NM62 +#labelStyle + +-5.80582845614889,56.3587908514115 + + + + +NM63 + +Small Square NM63 Boundry Box +#Line2 + + +1 + +-5.89113449804755,56.40109937637 +-5.90031828517615,56.4907229165325 +-5.73828662156976,56.4957122837879 +-5.72948212519181,56.4060719220011 +-5.89113449804755,56.40109937637 + + + + + +NM63 +#labelStyle + +-5.81479773903038,56.4484329755047 + + + + +NM64 + +Small Square NM64 Boundry Box +#Line2 + + +1 + +-5.90031920628865,56.4907318796687 +-5.9095559665896,56.5803531359155 +-5.74714280216011,56.5853594056806 +-5.73828750464107,56.4957212486104 +-5.90031920628865,56.4907318796687 + + + + + +NM64 +#labelStyle + +-5.8238187100249,56.5380728583741 + + + + +NM65 + +Small Square NM65 Boundry Box +#Line2 + + +1 + +-5.90955689302093,56.5803620988231 +-5.91884704767387,56.6699810649727 +-5.75605019308868,56.6750043170997 +-5.74714369033217,56.5853683702824 +-5.90955689302093,56.5803620988231 + + + + + +NM65 +#labelStyle + +-5.83289177961653,56.6277104941976 + + + + +NM66 + +Small Square NM66 Boundry Box +#Line2 + + +1 + +-5.91884797946638,56.6699900276509 +-5.92819195418925,56.7596066974491 +-5.76500920284917,56.7646470124422 +-5.75605108640212,56.6750132814801 +-5.91884797946638,56.6699900276509 + + + + + +NM66 +#labelStyle + +-5.84201736270786,56.7173458770846 + + + + +NM67 + +Small Square NM67 Boundry Box +#Line2 + + +1 + +-5.92819289138575,56.7596156598973 +-5.93759111649572,56.8492300270156 +-5.77402024435095,56.8542874860382 +-5.76501010134508,56.7646559766007 +-5.92819289138575,56.7596156598973 + + + + + +NM67 +#labelStyle + +-5.85119587867932,56.8069790010743 + + + + +NM68 + +Small Square NM68 Boundry Box +#Line2 + + +1 + +-5.93759205913948,56.8492389892332 +-5.94704496961486,56.9388510472682 +-5.78308373497851,56.9439257321497 +-5.77402114807083,56.8542964499742 +-5.93759205913948,56.8492389892332 + + + + + +NM68 +#labelStyle + +-5.86042775144933,56.8966098601352 + + + + +NM69 + +Small Square NM69 Boundry Box +#Line2 + + +1 + +-5.94704591774961,56.9388600092545 +-5.95655395329278,57.0284697517264 +-5.79220009665191,57.0335617449696 +-5.78308464396432,56.9439346958628 +-5.94704591774961,56.9388600092545 + + + + + +NM69 +#labelStyle + +-5.86971340953553,56.9862384481632 + + + + +NM70 + +Small Square NM70 Boundry Box +#Line2 + + +1 + +-5.7033507902512,56.137111248839 +-5.71200522776505,56.2267581938248 +-5.55105548986263,56.2314882777787 +-5.5427743148991,56.1418254430364 +-5.7033507902512,56.137111248839 + + + + + +NM70 +#labelStyle + +-5.62728883985871,56.1843268720768 + + + + +NM71 + +Small Square NM71 Boundry Box +#Line2 + + +1 + +-5.71200609576982,56.2267671593065 +-5.72071014749181,56.3164119158073 +-5.55938498362426,56.3211579652023 +-5.55105632043138,56.2314972448533 +-5.71200609576982,56.2267671593065 + + + + + +NM71 +#labelStyle + +-5.63578175470029,56.2739897413367 + + + + +NM72 + +Small Square NM72 Boundry Box +#Line2 + + +1 + +-5.720711020478,56.3164208810699 +-5.72946507777479,56.406063443741 +-5.56776234514254,56.4108255332755 +-5.55938581896098,56.3211669320651 +-5.720711020478,56.3164208810699 + + + + + +NM72 +#labelStyle + +-5.64432341707922,56.3636504568341 + + + + +NM73 + +Small Square NM73 Boundry Box +#Line2 + + +1 + +-5.72946595578175,56.4060724087839 +-5.73827041420656,56.4957127722177 +-5.57618795322552,56.5004909771962 +-5.56776318528491,56.4108344999262 +-5.72946595578175,56.4060724087839 + + + + + +NM73 +#labelStyle + +-5.6529142121458,56.453309013497 + + + + +NM74 + +Small Square NM74 Boundry Box +#Line2 + + +1 + +-5.73827129727406,56.4957217370404 +-5.74712655662252,56.5853598957653 +-5.58466219074623,56.5901542921047 +-5.57618879821163,56.5004999436343 +-5.73827129727406,56.4957217370404 + + + + + +NM74 +#labelStyle + +-5.66155452917683,56.5429654061934 + + + + +NM75 + +Small Square NM75 Boundry Box +#Line2 + + +1 + +-5.74712744479075,56.5853688603672 +-5.75603390915752,56.6750048088471 +-5.59318544469698,56.6798154730828 +-5.58466304061457,56.5901632583295 +-5.74712744479075,56.5853688603672 + + + + + +NM75 +#labelStyle + +-5.67024476163079,56.6326196297299 + + + + +NM76 + +Small Square NM76 Boundry Box +#Line2 + + +1 + +-5.75603480246712,56.6750137732276 +-5.76499288030354,56.7646475058601 +-5.60175810624463,56.7694745151533 +-5.59318629948645,56.679824439094 +-5.75603480246712,56.6750137732276 + + + + + +NM76 +#labelStyle + +-5.67898530720375,56.7222716788514 + + + + +NM77 + +Small Square NM77 Boundry Box +#Line2 + + +1 + +-5.76499377879558,56.7646564700188 +-5.7740038829682,56.8542879811347 +-5.61038057078669,56.8591314132784 +-5.60175896599456,56.7694834809504 +-5.76499377879558,56.7646564700188 + + + + + +NM77 +#labelStyle + +-5.68777656788626,56.8119215482395 + + + + +NM78 + +Small Square NM78 Boundry Box +#Line2 + + +1 + +-5.77400478668418,56.8542969450709 +-5.78306733453421,56.9439262289327 +-5.61905323800837,56.948786162359 +-5.61038143553683,56.8591403788608 +-5.77400478668418,56.8542969450709 + + + + + +NM78 +#labelStyle + +-5.69661895002113,56.9015692325114 + + + + +NM79 + +Small Square NM79 Boundry Box +#Line2 + + +1 + +-5.7830682435161,56.943935192646 +-5.79218365691986,57.0335622434472 +-5.62777651194049,57.0384387572338 +-5.61905410779891,56.9487951277263 +-5.7830682435161,56.943935192646 + + + + + +NM79 +#labelStyle + +-5.70551286436218,56.9912147262195 + + + + +NM80 + +Small Square NM80 Boundry Box +#Line2 + + +1 + +-5.54275825325451,56.1418259040799 +-5.55103939086924,56.2314887403764 +-5.3900421684226,56.236009641245 +-5.38213466409926,56.1463316142338 +-5.54275825325451,56.1418259040799 + + + + + +NM80 +#labelStyle + +-5.46648598228015,56.1889450539006 + + + + +NM81 + +Small Square NM81 Boundry Box +#Line2 + + +1 + +-5.55104022143425,56.2314977074511 +-5.5593688470655,56.3211584293616 +-5.39799582391762,56.3256945933372 +-5.39004296151431,56.2360186098425 +-5.55104022143425,56.2314977074511 + + + + + +NM81 +#labelStyle + +-5.47460431018333,56.2786235027667 + + + + +NM82 + +Small Square NM82 Boundry Box +#Line2 + + +1 + +-5.55936968239846,56.3211673962246 +-5.56774617080391,56.4108259990038 +-5.40599520014441,56.4153774975369 +-5.39799662156343,56.3257035617301 +-5.55936968239846,56.3211673962246 + + + + + +NM82 +#labelStyle + +-5.48276924892101,56.3682998706592 + + + + +NM83 + +Small Square NM83 Boundry Box +#Line2 + + +1 + +-5.5677470109425,56.4108349656546 +-5.57617174089084,56.5004914445007 +-5.41404065907135,56.5050583496217 +-5.40599600238034,56.4153864657248 +-5.5677470109425,56.4108349656546 + + + + + +NM83 +#labelStyle + +-5.4909811669185,56.4579741530959 + + + + +NM84 + +Small Square NM84 Boundry Box +#Line2 + + +1 + +-5.57617258587314,56.5005004109389 +-5.58464594019761,56.5901547609928 +-5.42213256655303,56.5947371453182 +-5.41404146593378,56.5050673176042 +-5.57617258587314,56.5005004109389 + + + + + +NM84 +#labelStyle + +-5.49924043655051,56.5476463455407 + + + + +NM85 + +Small Square NM85 Boundry Box +#Line2 + + +1 + +-5.58464679006211,56.5901637272179 +-5.59316915571481,56.6798159435622 +-5.43027129238229,56.6844138803005 +-5.42213337807873,56.5947461130948 +-5.58464679006211,56.5901637272179 + + + + + +NM85 +#labelStyle + +-5.50754743419393,56.6373164434029 + + + + +NM86 + +Small Square NM86 Boundry Box +#Line2 + + +1 + +-5.59317001050042,56.6798249095736 +-5.60174177860757,56.7694749872314 +-5.43845721034302,56.77408855019 +-5.43027210860845,56.6844228478708 +-5.59317001050042,56.6798249095736 + + + + + +NM86 +#labelStyle + +-5.51590254028142,56.726984442036 + + + + +NM87 + +Small Square NM87 Boundry Box +#Line2 + + +1 + +-5.60174263835362,56.7694839530287 +-5.61036420427166,56.8591318869629 +-5.44669069826387,56.8637611505541 +-5.43845803130722,56.7740975175536 +-5.60174263835362,56.7694839530287 + + + + + +NM87 +#labelStyle + +-5.52430613935587,56.8166503367371 + + + + +NM88 + +Small Square NM88 Boundry Box +#Line2 + + +1 + +-5.6103650690179,56.8591408525455 +-5.61903683239049,56.9487866376575 +-5.4549721380728,56.9534316769052 +-5.4466915240041,56.8637701177105 +-5.6103650690179,56.8591408525455 + + + + + +NM88 +#labelStyle + +-5.53275862012576,56.9063141227453 + + + + +NM89 + +Small Square NM89 Boundry Box +#Line2 + + +1 + +-5.61903770217711,56.9487956030249 +-5.62776006699312,57.038439234154 +-5.46330191585254,57.0431001247 +-5.45497296862746,56.9534406438539 +-5.61903770217711,56.9487956030249 + + + + + +NM89 +#labelStyle + +-5.54126037552142,56.9959757952417 + + + + +NM90 + +Small Square NM90 Boundry Box +#Line2 + + +1 + +-5.38211859784846,56.1463320544203 +-5.39002606478673,56.2360100829158 +-5.2289834879331,56.2403216719636 +-5.22145000854166,56.1506291527211 +-5.38211859784846,56.1463320544203 + + + + + +NM90 +#labelStyle + +-5.30563688193895,56.1933543167587 + + + + +NM91 + +Small Square NM91 Boundry Box +#Line2 + + +1 + +-5.39002685787469,56.2360190515134 +-5.39797968267975,56.3256950364993 +-5.23656094705012,56.3300211853848 +-5.22898424351215,56.2403306420138 +-5.39002685787469,56.2360190515134 + + + + + +NM91 +#labelStyle + +-5.31338025839784,56.2830476439704 + + + + +NM92 + +Small Square NM92 Boundry Box +#Line2 + + +1 + +-5.39798048032179,56.3257040048923 +-5.40597902108963,56.4153779421973 +-5.24418197603923,56.4197187191134 +-5.23656170696902,56.3300301552372 +-5.39798048032179,56.3257040048923 + + + + + +NM92 +#labelStyle + +-5.32116810509114,56.372738959757 + + + + +NM93 + +Small Square NM93 Boundry Box +#Line2 + + +1 + +-5.40597982332176,56.4153869103853 +-5.41402444198307,56.5050587957874 +-5.25184691997792,56.5094142694809 +-5.24418274033231,56.4197276887677 +-5.40597982332176,56.4153869103853 + + + + + +NM93 +#labelStyle + +-5.32900077366725,56.4624282602002 + + + + +NM94 + +Small Square NM94 Boundry Box +#Line2 + + +1 + +-5.41402524884168,56.50506776377 +-5.42211631121298,56.5947375929963 +-5.25955612765039,56.5991078327734 +-5.25184768867987,56.5094232389366 +-5.41402524884168,56.50506776377 + + + + + +NM94 +#labelStyle + +-5.33687861954602,56.5521155413339 + + + + +NM95 + +Small Square NM95 Boundry Box +#Line2 + + +1 + +-5.42211712273484,56.5947465607731 +-5.43025499857044,56.6844143294982 +-5.26730995159716,56.6887994052308 +-5.25955690079629,56.5991168020302 +-5.42211712273484,56.5947465607731 + + + + + +NM95 +#labelStyle + +-5.34480200196917,56.6418007991432 + + + + +NM96 + +Small Square NM96 Boundry Box +#Line2 + + +1 + +-5.43025581479275,56.6844232970687 +-5.43844087783762,56.7740890009145 +-5.27510874816548,56.7784889830463 +-5.26731072922244,56.6888083742884 +-5.43025581479275,56.6844232970687 + + + + + +NM96 +#labelStyle + +-5.35277128405146,56.7314840295639 + + + + +NM97 + +Small Square NM97 Boundry Box +#Line2 + + +1 + +-5.43844169879794,56.7740979682783 +-5.44667432684142,56.8637616028127 +-5.28295287756058,56.868176562365 +-5.27510953030597,56.7784979519042 +-5.43844169879794,56.7740979682783 + + + + + +NM97 +#labelStyle + +-5.3607868328328,56.8211652284812 + + + + +NM98 + +Small Square NM98 Boundry Box +#Line2 + + +1 + +-5.44667515257774,56.8637705699692 +-5.45495572750801,56.9534321307052 +-5.29084270389775,56.9578621392834 +-5.2829536642525,56.8681855310228 +-5.44667515257774,56.8637705699692 + + + + + +NM98 +#labelStyle + +-5.3688490193311,56.9108443917292 + + + + +NM99 + +Small Square NM99 Boundry Box +#Line2 + + +1 + +-5.45495655805874,56.9534410976541 +-5.46328546591831,57.0431005800488 +-5.29877859525524,57.0475457098486 +-5.2908434951777,56.9578711077408 +-5.45495655805874,56.9534410976541 + + + + + +NM99 +#labelStyle + +-5.37695821859603,57.0005215150896 + + + + + +NN + +Large Square NN Boundry Box +#Line1 + + +1 + +-5.22143393789621,56.1506295720382 +-5.29876214056306,57.0475461436125 +-3.65137144758365,57.080107796658 +-3.61259568706041,56.1821058187858 +-5.22143393789621,56.1506295720382 + + + + + +NN00 + +Small Square NN00 Boundry Box +#Line2 + + +1 + +-5.22143393789621,56.1506295720382 +-5.22896737986799,56.2403220926948 +-5.06788158252688,56.2444242470825 +-5.0607224658222,56.1547179365306 +-5.22143393789621,56.1506295720382 + + + + + +NN00 +#labelStyle + +-5.14474366282168,56.1975545353032 + + + + +NN01 + +Small Square NN01 Boundry Box +#Line2 + + +1 + +-5.22896813544329,56.2403310627452 +-5.23654480134802,56.330021607537 +-5.07508250386789,56.3341376176002 +-5.0678823005593,56.2444332185152 +-5.22896813544329,56.2403310627452 + + + + + +NN01 +#labelStyle + +-5.15211173993137,56.2872620386903 + + + + +NN02 + +Small Square NN02 Boundry Box +#Line2 + + +1 + +-5.23654556126315,56.3300305773896 +-5.24416579248487,56.4197191426932 +-5.08232484056367,56.4238490733581 +-5.07508322602555,56.3341465888415 +-5.23654556126315,56.3300305773896 + + + + + +NN02 +#labelStyle + +-5.15952214295378,56.3769675969511 + + + + +NN03 + +Small Square NN03 Boundry Box +#Line2 + + +1 + +-5.24416655677415,56.4197281123476 +-5.25183069835433,56.509414694495 +-5.08960892075203,56.5135586112153 +-5.08232556687922,56.4238580444078 +-5.24416655677415,56.4197281123476 + + + + + +NN03 +#labelStyle + +-5.1669752067108,56.4666712067055 + + + + +NN04 + +Small Square NN04 Boundry Box +#Line2 + + +1 + +-5.25183146705247,56.5094236639508 +-5.25953986773891,56.5991082592285 +-5.09693507609714,56.6032662279912 +-5.08960965125846,56.5135675820731 +-5.25183146705247,56.5094236639508 + + + + + +NN04 +#labelStyle + +-5.17447126961702,56.5563728645307 + + + + +NN05 + +Small Square NN05 Boundry Box +#Line2 + + +1 + +-5.25954064088097,56.5991172284855 +-5.26729365317738,56.6887998331339 +-5.10430364183677,56.6929719204647 +-5.09693581082779,56.6032751986567 +-5.25954064088097,56.5991172284855 + + + + + +NN05 +#labelStyle + +-5.18201067372774,56.6460725669615 + + + + +NN06 + +Small Square NN06 Boundry Box +#Line2 + + +1 + +-5.2672944307988,56.6888088021916 +-5.27509241101526,56.7784894124041 +-5.11171495683031,56.7826756853735 +-5.10430438082535,56.6929808909376 +-5.2672944307988,56.6888088021916 + + + + + +NN06 +#labelStyle + +-5.18959376478782,56.7357703104887 + + + + +NN07 + +Small Square NN07 Boundry Box +#Line2 + + +1 + +-5.27509319315186,56.7784983812621 +-5.28293650145601,56.8681769931844 +-5.11916936360749,56.8723775194131 +-5.11171570011087,56.7826846556534 +-5.27509319315186,56.7784983812621 + + + + + +NN07 +#labelStyle + +-5.19722089228128,56.8254660915587 + + + + +NN08 + +Small Square NN08 Boundry Box +#Line2 + + +1 + +-5.28293728814402,56.8681859618425 +-5.29082628861313,56.9578625715715 +-5.12666720841802,56.9620774192367 +-5.11917011121449,56.8723864894998 +-5.28293728814402,56.8681859618425 + + + + + +NN08 +#labelStyle + +-5.20489240948172,56.9151599065729 + + + + +NN09 + +Small Square NN09 Boundry Box +#Line2 + + +1 + +-5.29082707988914,56.9578715400291 +-5.29876214056306,57.0475461436125 +-5.13420884128191,57.0517753814535 +-5.12666796038626,56.9620863891298 +-5.29082707988914,56.9578715400291 + + + + + +NN09 +#labelStyle + +-5.21260867350354,57.0048517518862 + + + + +NN10 + +Small Square NN10 Boundry Box +#Line2 + + +1 + +-5.06070639099404,56.1547183349663 +-5.06786547024612,56.2444246468623 +-4.9067385899446,56.2483172496593 +-4.89995415709742,56.1585978495615 +-5.06070639099404,56.1547183349663 + + + + + +NN10 +#labelStyle + +-4.98380845258597,56.2015455900687 + + + + +NN11 + +Small Square NN11 Boundry Box +#Line2 + + +1 + +-5.06786618827478,56.2444336182951 +-5.07506635391683,56.3341380187304 +-4.913562648873,56.3380437721902 +-4.90673927039811,56.2483262224042 +-5.06786618827478,56.2444336182951 + + + + + +NN11 +#labelStyle + +-4.99080089909133,56.2912665665933 + + + + +NN12 + +Small Square NN12 Boundry Box +#Line2 + + +1 + +-5.07506707607072,56.3341469899719 +-5.08230865272669,56.4238494758451 +-4.92042596515923,56.4277684416185 +-4.9135633332368,56.3380527447498 +-5.07506707607072,56.3341469899719 + + + + + +NN12 +#labelStyle + +-4.99783352364257,56.3809856610323 + + + + +NN13 + +Small Square NN13 Boundry Box +#Line2 + + +1 + +-5.08230937903845,56.4238584468949 +-5.08959269481181,56.5135590150655 +-4.9273288499549,56.5174912553047 +-4.92042665346427,56.4277774139927 +-5.08230937903845,56.4238584468949 + + + + + +NN13 +#labelStyle + +-5.00490664418778,56.4707028705173 + + + + +NN14 + +Small Square NN14 Boundry Box +#Line2 + + +1 + +-5.08959342531442,56.5135679859234 +-5.09691881183464,56.603266633211 +-4.93427161775692,56.6072122105747 +-4.92732954223246,56.5175002274932 +-5.08959342531442,56.5135679859234 + + + + + +NN14 +#labelStyle + +-5.01202058208821,56.5604181921427 + + + + +NN15 + +Small Square NN15 Boundry Box +#Line2 + + +1 + +-5.09691954656145,56.6032756038766 +-5.10428733903122,56.6929723270606 +-4.94125458645234,56.6969313047194 +-4.93427231403862,56.6072211825772 +-5.09691954656145,56.6032756038766 + + + + + +NN15 +#labelStyle + +-5.01917566216396,56.6501316229658 + + + + +NN16 + +Small Square NN16 Boundry Box +#Line2 + + +1 + +-5.10428807801593,56.6929812975337 +-5.11169861525917,56.782676093352 +-4.94827807736386,56.7866485349939 +-4.94125528677013,56.6969402765357 +-5.10428807801593,56.6929812975337 + + + + + +NN16 +#labelStyle + +-5.02637221274038,56.7398431600059 + + + + +NN17 + +Small Square NN17 Boundry Box +#Line2 + + +1 + +-5.11169935853585,56.7826850636321 +-5.11915298304648,56.8723779287808 +-4.95534241529621,56.8763638986168 +-4.94827878175006,56.7866575066236 +-5.11169935853585,56.7826850636321 + + + + + +NN17 +#labelStyle + +-5.03361056569519,56.8295528002432 + + + + +NN18 + +Small Square NN18 Boundry Box +#Line2 + + +1 + +-5.11915373064957,56.8723868988677 +-5.12665078864106,56.9620778300003 +-4.96244792858313,56.9660773927699 +-4.95534312378348,56.8763728700598 +-5.11915373064957,56.8723868988677 + + + + + +NN18 +#labelStyle + +-5.04089105650645,56.9192605406185 + + + + +NN19 + +Small Square NN19 Boundry Box +#Line2 + + +1 + +-5.12665154060536,56.9620867998936 +-5.1341923820611,57.0517757936197 +-4.9695949491352,57.0557890145968 +-4.96244864120446,56.9660863640257 +-5.12665154060536,56.9620867998936 + + + + + +NN19 +#labelStyle + +-5.04821402430123,57.0089663780326 + + + + +NN20 + +Small Square NN20 Boundry Box +#Line2 + + +1 + +-4.89993807829885,56.1585982271045 +-4.90672247366213,56.2483176284762 +-4.74555665135934,56.2520005686729 +-4.73914720691127,56.1622687815926 +-4.89993807829885,56.1585982271045 + + + + + +NN20 +#labelStyle + +-4.82283338238653,56.2053273674837 + + + + +NN21 + +Small Square NN21 Boundry Box +#Line2 + + +1 + +-4.90672315411188,56.2483266012211 +-4.91354649488862,56.3380441522869 +-4.75200354004572,56.3417395373259 +-4.74555729420331,56.2520095426594 +-4.90672315411188,56.2483266012211 + + + + + +NN21 +#labelStyle + +-4.82944988372876,56.2950611132831 + + + + +NN22 + +Small Square NN22 Boundry Box +#Line2 + + +1 + +-4.91354717924864,56.3380531248467 +-4.92040977325696,56.4277688230012 +-4.75848752479203,56.4314767112498 +-4.7520041865847,56.341748511133 +-4.91354717924864,56.3380531248467 + + + + + +NN22 +#labelStyle + +-4.83610441188203,56.3847930367709 + + + + +NN23 + +Small Square NN23 Boundry Box +#Line2 + + +1 + +-4.9204104615582,56.4277777953755 +-4.92731261991708,56.5174916379794 +-4.76500889971959,56.5212120882799 +-4.75848817505527,56.4314856848774 +-4.9204104615582,56.4277777953755 + + + + + +NN23 +#labelStyle + +-4.84279726787568,56.4745231355639 + + + + +NN24 + +Small Square NN24 Boundry Box +#Line2 + + +1 + +-4.92731331219082,56.517500610168 +-4.93425534936417,56.6072125945474 +-4.7715679621132,56.6109456662218 +-4.76500955373666,56.5212210617276 +-4.92731331219082,56.517500610168 + + + + + +NN24 +#labelStyle + +-4.849528755972,56.5642514072476 + + + + +NN25 + +Small Square NN25 Boundry Box +#Line2 + + +1 + +-4.93425604564202,56.6072215665501 +-4.94123827948352,56.6969316899964 +-4.77816501246361,56.7006774428514 +-4.77156861991399,56.6109546394895 +-4.93425604564202,56.6072215665501 + + + + + +NN25 +#labelStyle + +-4.85629918370946,56.6539778493749 + + + + +NN26 + +Small Square NN26 Boundry Box +#Line2 + + +1 + +-4.94123897979745,56.6969406618127 +-4.9482617315961,56.7866489215812 +-4.78480035451062,56.7904074159141 +-4.77816567407834,56.700686415939 +-4.94123897979745,56.6969406618127 + + + + + +NN26 +#labelStyle + +-4.86310886194672,56.7437024594662 + + + + +NN27 + +Small Square NN27 Boundry Box +#Line2 + + +1 + +-4.94826243597841,56.7866578932111 +-4.95532603050484,56.8763642865209 +-4.79147429528683,56.8801355831239 +-4.78480101996981,56.7904163888211 +-4.94826243597841,56.7866578932111 + + + + + +NN27 +#labelStyle + +-4.86995810490731,56.8334252350083 + + + + +NN28 + +Small Square NN28 Boundry Box +#Line2 + + +1 + +-4.9553267389882,56.8763732579639 +-4.96243150454171,56.9660777819968 +-4.79818714516224,56.9698619421631 +-4.79147496462136,56.8801445558502 +-4.9553267389882,56.8763732579639 + + + + + +NN28 +#labelStyle + +-4.87684723022505,56.923146173454 + + + + +NN29 + +Small Square NN29 Boundry Box +#Line2 + + +1 + +-4.96243221715911,56.9660867532528 +-4.96957848561547,57.0557894051531 +-4.80493921788942,57.0595864906818 +-4.79818781840331,56.9698709147085 +-4.96243221715911,56.9660867532528 + + + + + +NN29 +#labelStyle + +-4.88377655899021,57.0128652722214 + + + + +NN30 + +Small Square NN30 Boundry Box +#Line2 + + +1 + +-4.7391311243549,56.1622691382321 +-4.74554053128945,56.252000926516 +-4.58433791120034,56.255474099035 +-4.57830374302113,56.1657306282927 +-4.7391311243549,56.1622691382321 + + + + + +NN30 +#labelStyle + +-4.66182058670043,56.2088997598831 + + + + +NN31 + +Small Square NN31 Boundry Box +#Line2 + + +1 + +-4.74554117412966,56.2520099005027 +-4.75198738224397,56.3417398963783 +-4.59040733866586,56.345224807154 +-4.58433851640584,56.2554830741927 +-4.74554117412966,56.2520099005027 + + + + + +NN31 +#labelStyle + +-4.66806084506125,56.2986455703119 + + + + +NN32 + +Small Square NN32 Boundry Box +#Line2 + + +1 + +-4.75198802877917,56.3417488701856 +-4.75847132904214,56.4314770715172 +-4.59651169777188,56.4349737756259 +-4.59040794735077,56.3452337821379 +-4.75198802877917,56.3417488701856 + + + + + +NN32 +#labelStyle + +-4.67433697580817,56.3883896149285 + + + + +NN33 + +Small Square NN33 Boundry Box +#Line2 + + +1 + +-4.75847197930158,56.4314860451449 +-4.76499266580356,56.5212124497679 +-4.60265126556766,56.5247210027339 +-4.59651230996376,56.4349827504357 +-4.75847197930158,56.4314860451449 + + + + + +NN33 +#labelStyle + +-4.68064926300921,56.4781318918088 + + + + +NN34 + +Small Square NN34 Boundry Box +#Line2 + + +1 + +-4.7649933198168,56.5212214232158 +-4.77155168981132,56.6109460289363 +-4.60882632208349,56.6144664867369 +-4.60265188129436,56.5247299773695 +-4.7649933198168,56.5212214232158 + + + + + +NN34 +#labelStyle + +-4.68699799378437,56.5678723990021 + + + + +NN35 + +Small Square NN35 Boundry Box +#Line2 + + +1 + +-4.77155234760826,56.6109550022042 +-4.77814870155442,56.7006778067982 +-4.61503715037073,56.7042102258686 +-4.60882694137317,56.6144754611981 +-4.77155234760826,56.6109550022042 + + + + + +NN35 +#labelStyle + +-4.69338345834654,56.6576111345305 + + + + +NN36 + +Small Square NN36 Boundry Box +#Line2 + + +1 + +-4.77814936316527,56.7006867798858 +-4.78478400477088,56.790407781099 +-4.62128403654243,56.793952218337 +-4.61503777325184,56.7042192001552 +-4.77814936316527,56.7006867798858 + + + + + +NN36 +#labelStyle + +-4.69980595004301,56.7473480963881 + + + + +NN37 + +Small Square NN37 Boundry Box +#Line2 + + +1 + +-4.78478467022618,56.7904167540061 +-4.79145790649156,56.8801359495528 +-4.62756726981461,56.8836924623239 +-4.62128466304374,56.7939611924488 +-4.78478467022618,56.7904167540061 + + + + + +NN37 +#labelStyle + +-4.7062657653977,56.8370832825409 + + + + +NN38 + +Small Square NN38 Boundry Box +#Line2 + + +1 + +-4.79145857582217,56.8801449222792 +-4.79817071708464,56.969862309842 +-4.63388714254826,56.9734309559844 +-4.6275678999652,56.8837014362608 +-4.79145857582217,56.8801449222792 + + + + + +NN38 +#labelStyle + +-4.71276320415405,56.9268166909257 + + + + +NN39 + +Small Square NN39 Boundry Box +#Line2 + + +1 + +-4.79817139032177,56.9698712823875 +-4.80492275030087,57.0595868596167 +-4.64024395029197,57.0631676974463 +-4.63388777637752,56.9734399297462 +-4.79817139032177,56.9698712823875 + + + + + +NN39 +#labelStyle + +-4.71929856931861,57.0165483194501 + + + + +NN40 + +Small Square NN40 Boundry Box +#Line2 + + +1 + +-4.57828765691988,56.1657309640187 +-4.58432178755763,56.2554744358942 +-4.42308451697606,56.2587377416012 +-4.41742589622317,56.1689832912323 +-4.57828765691988,56.1657309640187 + + + + + +NN40 +#labelStyle + +-4.50077220315161,56.2122626655187 + + + + +NN41 + +Small Square NN41 Boundry Box +#Line2 + + +1 + +-4.58432239275936,56.2554834110521 +-4.59039117726304,56.3452251451518 +-4.42877620913354,56.3484994818081 +-4.42308508451582,56.2587467178596 +-4.58432239275936,56.2554834110521 + + + + + +NN41 +#labelStyle + +-4.50663593749519,56.3020198351917 + + + + +NN42 + +Small Square NN42 Boundry Box +#Line2 + + +1 + +-4.59039178594416,56.3452341201358 +-4.59649549839236,56.4349741147676 +-4.43450066557061,56.4382595341508 +-4.42877677993682,56.3485084578977 +-4.59039178594416,56.3452341201358 + + + + + +NN42 +#labelStyle + +-4.5125333867884,56.3917752922699 + + + + +NN43 + +Small Square NN43 Boundry Box +#Line2 + + +1 + +-4.59649611058043,56.4349830895775 +-4.60263502799313,56.5247213430249 +-4.44025814622511,56.5280178973341 +-4.43450123966327,56.4382685100715 +-4.59649611058043,56.4349830895775 + + + + + +NN43 +#labelStyle + +-4.51846481809768,56.4815290352616 + + + + +NN44 + +Small Square NN44 Boundry Box +#Line2 + + +1 + +-4.602635643716,56.5247303176606 +-4.60881004609394,56.6144668281827 +-4.44604891383284,56.617774570043 +-4.44025872363328,56.5280268730859 +-4.602635643716,56.5247303176606 + + + + + +NN44 +#labelStyle + +-4.5244305013599,56.5712810626535 + + + + +NN45 + +Small Square NN45 Boundry Box +#Line2 + + +1 + +-4.60881066537976,56.614475802644 +-4.61502083574437,56.7042105684746 +-4.45187323396512,56.7075295509417 +-4.44604949458294,56.6177835456257 +-4.60881066537976,56.614475802644 + + + + + +NN45 +#labelStyle + +-4.5304307094208,56.6610313729093 + + + + +NN46 + +Small Square NN46 Boundry Box +#Line2 + + +1 + +-4.61502145862161,56.7042195427613 +-4.62126768305572,56.7939525621087 +-4.45773137506696,56.7972828386735 +-4.45187381808385,56.7075385263551 +-4.61502145862161,56.7042195427613 + + + + + +NN46 +#labelStyle + +-4.53646571807412,56.75077996447 + + + + +NN47 + +Small Square NN47 Boundry Box +#Line2 + + +1 + +-4.62126830955313,56.7939615362207 +-4.62755087724224,56.8836928072669 +-4.46362360849584,56.8870344318602 +-4.45773196258132,56.7972918139176 +-4.62126830955313,56.7939615362207 + + + + + +NN47 +#labelStyle + +-4.54253580610125,56.8405268357529 + + + + +NN48 + +Small Square NN48 Boundry Box +#Line2 + + +1 + +-4.6275515073889,56.8837017812039 +-4.63387071066309,56.9734313021043 +-4.4695502085611,56.9767843291015 +-4.46362419943309,56.8870434069348 +-4.6275515073889,56.8837017812039 + + + + + +NN48 +#labelStyle + +-4.54864125531167,56.9302719851511 + + + + +NN49 + +Small Square NN49 Boundry Box +#Line2 + + +1 + +-4.63387134448841,56.9734402758662 +-4.64022747886506,57.0631680447489 +-4.47551145256399,57.0665325289747 +-4.46955080294883,56.9767933040064 +-4.63387134448841,56.9734402758662 + + + + + +NN49 +#labelStyle + +-4.55478235058392,57.0200154110332 + + + + +NN50 + +Small Square NN50 Boundry Box +#Line2 + + +1 + +-4.41740980679028,56.1689836060352 +-4.42306838997543,56.2587380574668 +-4.26179861909657,56.2617914031809 +-4.25651580017705,56.1720266778929 +-4.41740980679028,56.1689836060352 + + + + + +NN50 +#labelStyle + +-4.33969037233479,56.2154159885699 + + + + +NN51 + +Small Square NN51 Boundry Box +#Line2 + + +1 + +-4.42306895751142,56.2587470337253 +-4.42876004434623,56.3484997987416 +-4.26711231878921,56.3515634674186 +-4.26179914894501,56.2618003804693 +-4.42306895751142,56.2587470337253 + + + + + +NN51 +#labelStyle + +-4.34517731844734,56.3051838114051 + + + + +NN52 + +Small Square NN52 Boundry Box +#Line2 + + +1 + +-4.42876061514573,56.3485087748313 +-4.43448446277976,56.4382598521571 +-4.27245661263973,56.4413338922691 +-4.26711285168502,56.3515724445431 +-4.42876061514573,56.3485087748313 + + + + + +NN52 +#labelStyle + +-4.3506958192407,56.3949499715734 + + + + +NN53 + +Small Square NN53 Boundry Box +#Line2 + + +1 + +-4.43448503686861,56.438268828078 +-4.44024190521212,56.5280182164183 +-4.27783174343761,56.5311026768322 +-4.27245714860705,56.4413428692296 +-4.43448503686861,56.438268828078 + + + + + +NN53 +#labelStyle + +-4.35624612474187,56.4847144679895 + + + + +NN54 + +Small Square NN54 Boundry Box +#Line2 + + +1 + +-4.44024248261646,56.5280271921702 +-4.44603263437738,56.6177748902101 +-4.28323795658657,56.6208698201917 +-4.27783228250085,56.5311116536286 +-4.44024248261646,56.5280271921702 + + + + + +NN54 +#labelStyle + +-4.36182848766613,56.5744772995501 + + + + +NN55 + +Small Square NN55 Boundry Box +#Line2 + + +1 + +-4.44603321512363,56.6177838657929 +-4.45185691584513,56.707529872197 +-4.28867550013978,56.7106353214154 +-4.28323849877041,56.620878796824 +-4.44603321512363,56.6177838657929 + + + + + +NN55 +#labelStyle + +-4.36744316345301,56.664238465134 + + + + +NN56 + +Small Square NN56 Boundry Box +#Line2 + + +1 + +-4.45185749995999,56.7075388476105 +-4.4577150180586,56.7972831610221 +-4.29414462483541,56.800399179554 +-4.28867604546914,56.7106442978833 +-4.45185749995999,56.7075388476105 + + + + + +NN56 +#labelStyle + +-4.37309041030294,56.7539979636012 + + + + +NN57 + +Small Square NN57 Boundry Box +#Line2 + + +1 + +-4.45771560556905,56.7972921362663 +-4.46360721237348,56.8870347553073 +-4.29964558413298,56.8901613936413 +-4.29414517333552,56.8004081558576 +-4.45771560556905,56.7972921362663 + + + + + +NN57 +#labelStyle + +-4.37877048921446,56.8437557937926 + + + + +NN58 + +Small Square NN58 Boundry Box +#Line2 + + +1 + +-4.46360780330681,56.8870437303819 +-4.4695337730973,56.9767846536524 +-4.30517863425014,56.9799219626936 +-4.29964613582932,56.8901703697805 +-4.46360780330681,56.8870437303819 + + + + + +NN58 +#labelStyle + +-4.38448366402206,56.9335119545298 + + + + +NN59 + +Small Square NN59 Boundry Box +#Line2 + + +1 + +-4.46953436748108,56.9767936285573 +-4.47549497752949,57.0665328546346 +-4.31074403420012,57.069680885709 +-4.30517918916846,56.9799309386681 +-4.46953436748108,56.9767936285573 + + + + + +NN59 +#labelStyle + +-4.39023020143458,57.0232664446143 + + + + +NN60 + +Small Square NN60 Boundry Box +#Line2 + + +1 + +-4.25649970762602,56.1720269717638 +-4.26178248895319,56.261791698044 +-4.1004823706953,56.2646349965473 +-4.09557559123003,56.1748607016769 +-4.25649970762602,56.1720269717638 + + + + + +NN60 +#labelStyle + +-4.17857723763867,56.2183596391536 + + + + +NN61 + +Small Square NN61 Boundry Box +#Line2 + + +1 + +-4.26178301879786,56.2618006753325 +-4.2670961508343,56.3515637632787 +-4.10541783773307,56.3544166761228 +-4.10048286282854,56.264643974795 +-4.26178301879786,56.2618006753325 + + + + + +NN61 +#labelStyle + +-4.18368714816569,56.3081374084147 + + + + +NN62 + +Small Square NN62 Boundry Box +#Line2 + + +1 + +-4.26709668372631,56.3515727404033 +-4.27244040665614,56.4413341891308 +-4.11038172622746,56.4441967614759 +-4.10541833269724,56.3544256542111 +-4.26709668372631,56.3515727404033 + + + + + +NN62 +#labelStyle + +-4.18882645045213,56.3979135616411 + + + + +NN63 + +Small Square NN63 Boundry Box +#Line2 + + +1 + +-4.27244094261964,56.4413431660914 +-4.27781549920647,56.5311029747003 +-4.11537426178505,56.5339752520744 +-4.11038222404503,56.4442057394047 +-4.27244094261964,56.4413431660914 + + + + + +NN63 +#labelStyle + +-4.19399537745011,56.487688098127 + + + + +NN64 + +Small Square NN64 Boundry Box +#Line2 + + +1 + +-4.27781603826587,56.5311119514968 +-4.28322167388729,56.620870119071 +-4.12039567244242,56.6237521473739 +-4.11537476247868,56.5339842298437 +-4.27781603826587,56.5311119514968 + + + + + +NN64 +#labelStyle + +-4.19919416461726,56.5774610171524 + + + + +NN65 + +Small Square NN65 Boundry Box +#Line2 + + +1 + +-4.28322221606727,56.6208790957033 +-4.28865917875,56.7106356213105 +-4.12544618869886,56.7135274468182 +-4.12039617603505,56.6237611249837 +-4.28322221606727,56.6208790957033 + + + + + +NN65 +#labelStyle + +-4.20442304995027,56.6672323179837 + + + + +NN66 + +Small Square NN66 Boundry Box +#Line2 + + +1 + +-4.28865972407549,56.7106445977786 +-4.29412826453102,56.8003994804699 +-4.13052604354951,56.8033011498379 +-4.12544669521366,56.7135364242683 +-4.28865972407549,56.7106445977786 + + + + + +NN66 +#labelStyle + +-4.20968227401907,56.7570019998726 + + + + +NN67 + +Small Square NN67 Boundry Box +#Line2 + + +1 + +-4.29412881302723,56.8004084567736 +-4.29962918468807,56.8901616955829 +-4.13563547251907,56.8930732558508 +-4.1305265530099,56.8033101271283 +-4.29412881302723,56.8004084567736 + + + + + +NN67 +#labelStyle + +-4.21497208000154,56.8467700620558 + + + + +NN68 + +Small Square NN68 Boundry Box +#Line2 + + +1 + +-4.29962973638048,56.8901706717222 +-4.30516219543697,56.9799222656657 +-4.14077471369608,56.9828437642613 +-4.13563598494874,56.8930822329815 +-4.29962973638048,56.8901706717222 + + + + + +NN68 +#labelStyle + +-4.22029271371874,56.9365365037552 + + + + +NN69 + +Small Square NN69 Boundry Box +#Line2 + + +1 + +-4.30516275035135,56.9799312416404 +-4.31072755578915,57.0696811897166 +-4.14594400776768,57.07261267446 +-4.14077522911896,56.9828527412323 +-4.30516275035135,56.9799312416404 + + + + + +NN69 +#labelStyle + +-4.22564442367074,57.0263013241767 + + + + +NN70 + +Small Square NN70 Boundry Box +#Line2 + + +1 + +-4.09555949577463,56.1748609746073 +-4.10046623762463,56.2646352703994 +-3.93913792745029,56.2672684404458 +-3.93460740824049,56.1774852819162 +-4.09555949577463,56.1748609746073 + + + + + +NN70 +#labelStyle + +-4.01743494506861,56.2210935333331 + + + + +NN71 + +Small Square NN71 Boundry Box +#Line2 + + +1 + +-4.10046672975409,56.2646442486472 +-4.10540166682768,56.354416950901 +-3.94369493864386,56.3570590260739 +-3.93913838184611,56.267277419582 +-4.10046672975409,56.2646442486472 + + + + + +NN71 +#labelStyle + +-4.02216758954978,56.310880541673 + + + + +NN72 + +Small Square NN72 Boundry Box +#Line2 + + +1 + +-4.10540216178807,56.3544259289894 +-4.11036551726998,56.4441970371846 +-3.9482781961951,56.4468480593259 +-3.94369539565397,56.3570680050548 +-4.10540216178807,56.3544259289894 + + + + + +NN72 +#labelStyle + +-4.02692746039677,56.4006659773083 + + + + +NN73 + +Small Square NN73 Boundry Box +#Line2 + + +1 + +-4.11036601508373,56.4442060151135 +-4.11535801455635,56.5339755287178 +-3.95288790849553,56.5366355400107 +-3.94827865584023,56.4468570381516 +-4.11036601508373,56.4442060151135 + + + + + +NN73 +#labelStyle + +-4.03171477345375,56.4904498398858 + + + + +NN74 + +Small Square NN74 Boundry Box +#Line2 + + +1 + +-4.11535851524615,56.5339845064872 +-4.12037938672166,56.6237524249566 +-3.95752428618195,56.6264214679289 +-3.95288837079663,56.5366445186812 +-4.11535851524615,56.5339845064872 + + + + + +NN74 +#labelStyle + +-4.03652974688709,56.5802321290421 + + + + +NN75 + +Small Square NN75 Boundry Box +#Line2 + + +1 + +-4.12037989031042,56.6237614025664 +-4.12542986426342,56.7135277253445 +-3.96218754216662,56.7162058428724 +-3.9575247511602,56.6264304464441 +-4.12037989031042,56.6237614025664 + + + + + +NN75 +#labelStyle + +-4.04137260121652,56.6700128444038 + + + + +NN76 + +Small Square NN76 Boundry Box +#Line2 + + +1 + +-4.12543037077434,56.7135367027948 +-4.13050968017501,56.8033014293124 +-3.96687789166793,56.8059886646241 +-3.96218800984343,56.7162148212322 +-4.12543037077434,56.7135367027948 + + + + + +NN76 +#labelStyle + +-4.04624355934678,56.7597919855866 + + + + +NN77 + +Small Square NN77 Boundry Box +#Line2 + + +1 + +-4.1305101896315,56.803310406603 +-4.13561906997933,56.8930735362781 +-3.97159555224152,56.8957699329577 +-3.96687836206492,56.8059976428286 +-4.1305101896315,56.803310406603 + + + + + +NN77 +#labelStyle + +-4.05114284659978,56.8495695521955 + + + + +NN78 + +Small Square NN78 Boundry Box +#Line2 + + +1 + +-4.13561958240507,56.8930825134089 +-4.1407582717631,56.9828440456459 +-3.97634074381198,56.9855496476373 +-3.97159602538058,56.8957789110068 +-4.13561958240507,56.8930825134089 + + + + + +NN78 +#labelStyle + +-4.05607069074734,56.939345543824 + + + + +NN79 + +Small Square NN79 Boundry Box +#Line2 + + +1 + +-4.14075878718203,56.9828530226169 +-4.14592752621164,57.0726129568064 +-3.98111368870502,57.0753278084173 +-3.97634121971521,56.9855586255311 +-4.14075878718203,56.9828530226169 + + + + + +NN79 +#labelStyle + +-4.06102732204438,57.0291199600541 + + + + +NN80 + +Small Square NN80 Boundry Box +#Line2 + + +1 + +-3.93459131009472,56.1774855338984 +-3.939121791668,56.2672686932791 +-3.77776744740474,56.2696916596029 +-3.77361339240092,56.1799003438807 +-3.93459131009472,56.1774855338984 + + + + + +NN80 +#labelStyle + +-3.85626564306872,56.2236175931274 + + + + +NN81 + +Small Square NN81 Boundry Box +#Line2 + + +1 + +-3.93912224606005,56.2672776724154 +-3.9436787650054,56.3570592797623 +-3.78194579659716,56.3594904414491 +-3.77776786404265,56.2697006395568 +-3.93912224606005,56.2672776724154 + + + + + +NN81 +#labelStyle + +-3.86062080797045,56.3134131326308 + + + + +NN82 + +Small Square NN82 Boundry Box +#Line2 + + +1 + +-3.94367922201172,56.3570682587433 +-3.94826198448284,56.4468483138735 +-3.78614821483288,56.4492877094418 +-3.78194621563248,56.3594994212516 +-3.94367922201172,56.3570682587433 + + + + + +NN82 +#labelStyle + +-3.86500103155305,56.4032071394521 + + + + +NN83 + +Small Square NN83 Boundry Box +#Line2 + + +1 + +-3.94826244412416,56.4468572926992 +-3.95287165849012,56.5366357954215 +-3.7903748932587,56.5390834637038 +-3.78614863628463,56.4492966890929 +-3.94826244412416,56.4468572926992 + + + + + +NN83 +#labelStyle + +-3.8694065125221,56.4929996135637 + + + + +NN84 + +Small Square NN84 Boundry Box +#Line2 + + +1 + +-3.95287212078739,56.536644774092 +-3.95750799766231,56.6264217242069 +-3.79462602508146,56.6288777043532 +-3.7903753171461,56.5390924432036 +-3.95287212078739,56.536644774092 + + + + + +NN84 +#labelStyle + +-3.87383745172155,56.5827905549317 + + + + +NN85 + +Small Square NN85 Boundry Box +#Line2 + + +1 + +-3.95750846263669,56.6264307027222 +-3.9621712149099,56.7162061000218 +-3.79890180559573,56.7186704315027 +-3.79462645142392,56.6288866837016 +-3.95750846263669,56.6264307027222 + + + + + +NN85 +#labelStyle + +-3.8782940521625,56.6725799635153 + + + + +NN86 + +Small Square NN86 Boundry Box +#Line2 + + +1 + +-3.96217168258281,56.7162150783817 +-3.96686152544949,56.805988922649 +-3.803202432212,56.8084616452595 +-3.79890223441291,56.7186794106997 +-3.96217168258281,56.7162150783817 + + + + + +NN86 +#labelStyle + +-3.88277651905233,56.7623678392669 + + + + +NN87 + +Small Square NN87 Boundry Box +#Line2 + + +1 + +-3.96686199584257,56.8059979008536 +-3.97157914683494,56.8957701918624 +-3.80752810448518,56.8982513457252 +-3.80320286352372,56.8084706243052 +-3.96686199584257,56.8059979008536 + + + + + +NN87 +#labelStyle + +-3.88728505982431,56.8521541821313 + + + + +NN88 + +Small Square NN88 Boundry Box +#Line2 + + +1 + +-3.97157961997007,56.8957791699116 +-3.97632429898902,56.985549907426 +-3.81187902414377,56.9880395329951 +-3.80752853831153,56.8982603246196 +-3.97157961997007,56.8957791699116 + + + + + +NN88 +#labelStyle + +-3.89181988416779,56.9419389920459 + + + + +NN89 + +Small Square NN89 Boundry Box +#Line2 + + +1 + +-3.9763247748883,56.9855588853198 +-3.98109720423559,57.0753280690942 +-3.81625539511929,57.0778262071585 +-3.81187946050501,56.9880485117382 +-3.9763247748883,56.9855588853198 + + + + + +NN89 +#labelStyle + +-3.89638120405874,57.03172226894 + + + + +NN90 + +Small Square NN90 Boundry Box +#Line2 + + +1 + +-3.77359729177901,56.1799005749076 +-3.77775130912677,56.2696918914102 +-3.61637309078725,56.2719045847337 +-3.61259568706041,56.1821058187858 +-3.77359729177901,56.1799005749076 + + + + + +NN90 +#labelStyle + +-3.69507148234341,56.2259317465183 + + + + +NN91 + +Small Square NN91 Boundry Box +#Line2 + + +1 + +-3.7777517257609,56.2697008713641 +-3.78192962044325,56.3594906740405 +-3.62017258888312,56.3617108524583 +-3.61637346964844,56.2719135654344 +-3.7777517257609,56.2697008713641 + + + + + +NN91 +#labelStyle + +-3.69904897108898,56.3157351087457 + + + + +NN92 + +Small Square NN92 Boundry Box +#Line2 + + +1 + +-3.78193003947477,56.3594996538431 +-3.78613200058519,56.449287942821 +-3.62399397667531,56.4515156415226 +-3.62017296992464,56.3617198330111 +-3.78193003947477,56.3594996538431 + + + + + +NN92 +#labelStyle + +-3.70304934872053,56.4055369750001 + + + + +NN93 + +Small Square NN93 Boundry Box +#Line2 + + +1 + +-3.78613242203312,56.4492969224722 +-3.79035864069767,56.5390836978745 +-3.62783742803864,56.5413189523368 +-3.62399435991446,56.4515246219276 +-3.78613242203312,56.4492969224722 + + + + + +NN93 +#labelStyle + +-3.70707279677673,56.4953373455529 + + + + +NN94 + +Small Square NN94 Boundry Box +#Line2 + + +1 + +-3.79035906458123,56.5390926773743 +-3.79460973398578,56.6288779393192 +-3.63170311872232,56.6311207853088 +-3.62783781349291,56.541327932594 +-3.79035906458123,56.5390926773743 + + + + + +NN94 +#labelStyle + +-3.71111949875046,56.5851362206724 + + + + +NN95 + +Small Square NN95 Boundry Box +#Line2 + + +1 + +-3.79461016032439,56.6288869186676 +-3.79888547574235,56.7186706672677 +-3.63559122637509,56.7209211408445 +-3.63170350640937,56.6311297654182 +-3.79461016032439,56.6288869186676 + + + + + +NN95 +#labelStyle + +-3.71518964011502,56.6749336006232 + + + + +NN96 + +Small Square NN96 Boundry Box +#Line2 + + +1 + +-3.79888590455563,56.7186796464648 +-3.80318606337604,56.8084618818273 +-3.63950193057093,56.8107200193478 +-3.63559161631279,56.7209301208062 +-3.79888590455563,56.7186796464648 + + + + + +NN96 +#labelStyle + +-3.71928340835077,56.7647294856663 + + + + +NN97 + +Small Square NN97 Boundry Box +#Line2 + + +1 + +-3.80318649468386,56.8084708608731 +-3.80751169644001,56.8982515830997 +-3.64343541283499,56.9005174212194 +-3.63950232277733,56.8107289991618 +-3.80318649468386,56.8084708608731 + + + + + +NN97 +#labelStyle + +-3.72340099297226,56.8545238760586 + + + + +NN98 + +Small Square NN98 Boundry Box +#Line2 + + +1 + +-3.80751213026242,56.8982605619941 +-3.81186257666089,56.9880397711802 +-3.64739185667011,56.9903133468578 +-3.64343580732834,56.9005264008858 +-3.80751213026242,56.8982605619941 + + + + + +NN98 +#labelStyle + +-3.72754258555574,56.9443167720527 + + + + +NN99 + +Small Square NN99 Boundry Box +#Line2 + + +1 + +-3.81186301301818,56.9880487499233 +-3.81623890796841,57.0778264461581 +-3.65137144758365,57.080107796658 +-3.64739225346885,56.9903223263765 +-3.81186301301818,56.9880487499233 + + + + + +NN99 +#labelStyle + +-3.73170837976713,57.0341081738969 + + + + + +NO + +Large Square NO Boundry Box +#Line1 + + +1 + +-3.61257958417679,56.1821060288508 +-3.65135495798349,57.0801080139731 +-2.00163288570462,57.0909874852955 +-2.00158843247242,56.1926224102772 +-3.61257958417679,56.1821060288508 + + + + + +NO00 + +Small Square NO00 Boundry Box +#Line2 + + +1 + +-3.61257958417679,56.1821060288508 +-3.61635695022971,56.2719047955083 +-3.45495701983144,56.2739071525489 +-3.45155643754669,56.1841016437996 +-3.61257958417679,56.1821060288508 + + + + + +NO00 +#labelStyle + +-3.53385461567847,56.2280359274585 + + + + +NO01 + +Small Square NO01 Boundry Box +#Line2 + + +1 + +-3.61635732908712,56.2719137762091 +-3.62015641043158,56.3617110639459 +-3.45837749482372,56.3637201953502 +-3.45495736089879,56.2739161339256 +-3.61635732908712,56.2719137762091 + + + + + +NO01 +#labelStyle + +-3.53745424867588,56.317846403489 + + + + +NO02 + +Small Square NO02 Boundry Box +#Line2 + + +1 + +-3.62015679146931,56.3617200444988 +-3.62397776011175,56.4515158537267 +-3.46181767831596,56.4535317913507 +-3.45837783785415,56.3637291765821 +-3.62015679146931,56.3617200444988 + + + + + +NO02 +#labelStyle + +-3.54107459883616,56.4076554169375 + + + + +NO03 + +Small Square NO03 Boundry Box +#Line2 + + +1 + +-3.62397814334708,56.4515248341317 +-3.6278211731433,56.5413191652606 +-3.4652777268862,56.5433419412206 +-3.46181802332504,56.453540772438 +-3.62397814334708,56.4515248341317 + + + + + +NO03 +#labelStyle + +-3.54471583050533,56.4974629683475 + + + + +NO04 + +Small Square NO04 Boundry Box +#Line2 + + +1 + +-3.62782155859372,56.5413281455179 +-3.63168682527368,56.6311209989558 +-3.4687577988008,56.6331506456304 +-3.46527807388968,56.5433509221633 +-3.62782155859372,56.5413281455179 + + + + + +NO04 +#labelStyle + +-3.54837810979893,56.5872690582622 + + + + +NO05 + +Small Square NO05 Boundry Box +#Line2 + + +1 + +-3.63168721295686,56.6311299790653 +-3.63557489414989,56.7209213552182 +-3.47225805403709,56.7229579052517 +-3.46875814781458,56.6331596264286 +-3.63168721295686,56.6311299790653 + + + + + +NO05 +#labelStyle + +-3.5520616046258,56.6770736872242 + + + + +NO06 + +Small Square NO06 Boundry Box +#Line2 + + +1 + +-3.6355752840837,56.72093033518 +-3.63948555934411,56.8107202344515 +-3.47577865430649,56.8127637207565 +-3.47225840507726,56.7229668859054 +-3.6355752840837,56.72093033518 + + + + + +NO06 +#labelStyle + +-3.5557664847122,56.7668768557752 + + + + +NO07 + +Small Square NO07 Boundry Box +#Line2 + + +1 + +-3.63948595154659,56.8107292142656 +-3.64341900237969,56.9005176370567 +-3.47931976307794,56.902568092817 +-3.4757790073893,56.8127727012658 +-3.63948595154659,56.8107292142656 + + + + + +NO07 +#labelStyle + +-3.5594929216264,56.856678564456 + + + + +NO08 + +Small Square NO08 Boundry Box +#Line2 + + +1 + +-3.6434193968691,56.9005266167232 +-3.64737540675764,56.9903135634322 +-3.48288154560176,56.9923710221057 +-3.47932011821984,56.902577073182 +-3.6434193968691,56.9005266167232 + + + + + +NO08 +#labelStyle + +-3.56324108880359,56.9464788138063 + + + + +NO09 + +Small Square NO09 Boundry Box +#Line2 + + +1 + +-3.64737580355243,56.990322542951 +-3.65135495798349,57.0801080139731 +-3.48646416893381,57.0821725092949 +-3.48288190281936,56.9923800023265 +-3.64737580355243,56.990322542951 + + + + + +NO09 +#labelStyle + +-3.5670111615712,57.0362776043643 + + + + +NO10 + +Small Square NO10 Boundry Box +#Line2 + + +1 + +-3.45154033261599,56.1841018328966 +-3.45494087721065,56.2739073422849 +-3.2935213985952,56.2756993057618 +-3.29049779098777,56.185887762049 +-3.45154033261599,56.1841018328966 + + + + + +NO10 +#labelStyle + +-3.37261719776174,56.2299300758782 + + + + +NO11 + +Small Square NO11 Boundry Box +#Line2 + + +1 + +-3.45494121827422,56.2739163236616 +-3.45836131429259,56.363720385728 +-3.29656269558964,56.3655184124198 +-3.29352170185331,56.2757082877434 +-3.45494121827422,56.2739163236616 + + + + + +NO11 +#labelStyle + +-3.37583881242906,56.319746956353 + + + + +NO12 + +Small Square NO12 Boundry Box +#Line2 + + +1 + +-3.45836165731922,56.36372936696 +-3.46180145965628,56.4535319823736 +-3.29962151822191,56.4553361007986 +-3.2965630005934,56.3655273942595 +-3.45836165731922,56.36372936696 + + + + + +NO12 +#labelStyle + +-3.3790789707902,56.4095624043144 + + + + +NO13 + +Small Square NO13 Boundry Box +#Line2 + + +1 + +-3.46180180466154,56.4535409634609 +-3.46526146987804,56.5433421328914 +-3.30269800575092,56.5451523718009 +-3.29962182498517,56.4553450824966 +-3.46180180466154,56.4535409634609 + + + + + +NO13 +#labelStyle + +-3.38233781997511,56.4993764205508 + + + + +NO14 + +Small Square NO14 Boundry Box +#Line2 + + +1 + +-3.46526181687767,56.5433511138342 +-3.46874150322247,56.6331508379523 +-3.30579229893747,56.6349672263327 +-3.30269831428769,56.5451613533572 +-3.46526181687767,56.5433511138342 + + + + + +NO14 +#labelStyle + +-3.38561550869822,56.5891890058532 + + + + +NO15 + +Small Square NO15 Boundry Box +#Line2 + + +1 + +-3.46874185223238,56.6331598187506 +-3.47224171966513,56.7229580982278 +-3.30890454006441,56.7247806653032 +-3.3057926092619,56.6349762077474 +-3.46874185223238,56.6331598187506 + + + + + +NO15 +#labelStyle + +-3.38891218727978,56.6790001610142 + + + + +NO16 + +Small Square NO16 Boundry Box +#Line2 + + +1 + +-3.47224207070141,56.7229670788816 +-3.47576228091566,56.8127639143899 +-3.31203487295717,56.8145926896246 +-3.30890485219079,56.7247896465763 +-3.47224207070141,56.7229670788816 + + + + + +NO16 +#labelStyle + +-3.39222800766743,56.7688098868288 + + + + +NO17 + +Small Square NO17 Boundry Box +#Line2 + + +1 + +-3.47576263399457,56.8127728948993 +-3.4793033504412,56.9025682871108 +-3.31518344300465,56.9044033002122 +-3.31203518689998,56.8146016707563 +-3.47576263399457,56.8127728948993 + + + + + +NO17 +#labelStyle + +-3.3955631234582,56.8586181840935 + + + + +NO18 + +Small Square NO18 Boundry Box +#Line2 + + +1 + +-3.47930370557917,56.9025772674759 +-3.48286509349023,56.9923712170631 +-3.31835039718041,56.9942124979839 +-3.31518375877849,56.9044122812026 +-3.47930370557917,56.9025772674759 + + + + + +NO18 +#labelStyle + +-3.39891768992088,56.9484250536062 + + + + +NO19 + +Small Square NO19 Boundry Box +#Line2 + + +1 + +-3.48286545070387,56.992380197284 +-3.48644767711677,57.0821727049192 +-3.32153588406421,57.0840202838603 +-3.31835071480006,56.9942214788331 +-3.48286545070387,56.992380197284 + + + + + +NO19 +#labelStyle + +-3.40229186401868,57.0382304961665 + + + + +NO20 + +Small Square NO20 Boundry Box +#Line2 + + +1 + +-3.29048168422479,56.1858879301727 +-3.29350525412765,56.2756994744536 +-3.13206839277957,56.2772809930934 +-3.12942189613316,56.1874641226259 +-3.29048168422479,56.1858879301727 + + + + + +NO20 +#labelStyle + +-3.21136138500333,56.231614137691 + + + + +NO21 + +Small Square NO21 Boundry Box +#Line2 + + +1 + +-3.29350555738198,56.2757084564352 +-3.29654651319712,56.3655185816824 +-3.13473037401668,56.3671054520139 +-3.13206865821474,56.277289975609 +-3.29350555738198,56.2757084564352 + + + + + +NO21 +#labelStyle + +-3.21420483579176,56.3214367128572 + + + + +NO22 + +Small Square NO22 Boundry Box +#Line2 + + +1 + +-3.29654681819708,56.3655275635222 +-3.29960529768605,56.4553362706347 +-3.13740769654768,56.4569285178349 +-3.13473064097993,56.3671144343902 +-3.29654681819708,56.3655275635222 + + + + + +NO22 +#labelStyle + +-3.21706465524156,56.4112578822518 + + + + +NO23 + +Small Square NO23 Boundry Box +#Line2 + + +1 + +-3.29960560444548,56.4553452523327 +-3.30268174685163,56.5451525422132 +-3.14010048229248,56.5467501916644 +-3.13740796505113,56.4569375000718 +-3.29960560444548,56.4553452523327 + + + + + +NO23 +#labelStyle + +-3.21994097324567,56.5010776468815 + + + + +NO24 + +Small Square NO24 Boundry Box +#Line2 + + +1 + +-3.30268205538455,56.5451615237695 +-3.3057760014529,56.6349673973239 +-3.14280885448613,56.6365704746162 +-3.14010075234839,56.5467591737622 +-3.30268205538455,56.5451615237695 + + + + + +NO24 +#labelStyle + +-3.22283392109616,56.5908960077573 + + + + +NO25 + +Small Square NO25 Boundry Box +#Line2 + + +1 + +-3.30577631177345,56.6349763787386 +-3.30888820377094,56.7247808368761 +-3.14553293769644,56.7263893678094 +-3.14280912610689,56.636579456575 +-3.30577631177345,56.6349763787386 + + + + + +NO25 +#labelStyle + +-3.22574363150304,56.6807129658948 + + + + +NO26 + +Small Square NO26 Boundry Box +#Line2 + + +1 + +-3.30888851589343,56.7247898181493 +-3.31201849762939,56.814592861782 +-3.148272857842,56.8162068723687 +-3.14553321089458,56.7263983496293 +-3.30888851589343,56.7247898181493 + + + + + +NO26 +#labelStyle + +-3.22867023861333,56.7705285223138 + + + + +NO27 + +Small Square NO27 Boundry Box +#Line2 + + +1 + +-3.31201881156828,56.8146018429137 +-3.31516702841534,56.9044034729568 +-3.15102874221046,56.9060229894235 +-3.14827313263017,56.8162158540497 +-3.31201881156828,56.8146018429137 + + + + + +NO27 +#labelStyle + +-3.23161387803054,56.8603426780382 + + + + +NO28 + +Small Square NO28 Boundry Box +#Line2 + + +1 + +-3.31516734418525,56.9044124539473 +-3.31833394310053,56.9942126713186 +-3.15380071947707,56.9958377201087 +-3.15102901860146,56.9060319709658 +-3.31516734418525,56.9044124539473 + + + + + +NO28 +#labelStyle + +-3.23457468683431,56.9501554340962 + + + + +NO29 + +Small Square NO29 Boundry Box +#Line2 + + +1 + +-3.31833426071622,56.9942216521678 +-3.32151939026286,57.0840204577879 +-3.15658891972361,57.0856510655639 +-3.15380099748385,56.9958467015124 +-3.31833426071622,56.9942216521678 + + + + + +NO29 +#labelStyle + +-3.23755280360057,57.0399667915195 + + + + +NO30 + +Small Square NO30 Boundry Box +#Line2 + + +1 + +-3.12940578775285,56.1874642697715 +-3.13205224668191,56.2772811407363 +-2.97060016954724,56.2786521692785 +-2.96833090317477,56.1888306805921 +-3.12940578775285,56.1874642697715 + + + + + +NO30 +#labelStyle + +-3.05008933535555,56.2330880647997 + + + + +NO31 + +Small Square NO31 Boundry Box +#Line2 + + +1 + +-3.13205251211329,56.2772901232519 +-3.13471418998113,56.3671056001564 +-2.97288271442186,56.3684812685367 +-2.97060039714747,56.2786611522571 +-3.13205251211329,56.2772901232519 + + + + + +NO31 +#labelStyle + +-3.05255449376996,56.3229156245534 + + + + +NO32 + +Small Square NO32 Boundry Box +#Line2 + + +1 + +-3.13471445694057,56.3671145825327 +-3.13739147435573,56.4569286664793 +-2.9751784149489,56.4583089965296 +-2.97288294333246,56.368490251378 +-3.13471445694057,56.3671145825327 + + + + + +NO32 +#labelStyle + +-3.05503384443285,56.4127418019475 + + + + +NO33 + +Small Square NO33 Boundry Box +#Line2 + + +1 + +-3.13739174285535,56.4569376487163 +-3.1400842217239,56.5467503408132 +-2.97748737569189,56.5481353545436 +-2.97517864518028,56.4583179792339 +-3.13739174285535,56.4569376487163 + + + + + +NO33 +#labelStyle + +-3.05752749998162,56.5025665981794 + + + + +NO34 + +Small Square NO34 Boundry Box +#Line2 + + +1 + +-3.14008449177597,56.546759322911 +-3.14279255531893,56.6365706242717 +-2.97980970234239,56.6379603438728 +-2.97748760725455,56.548144337111 +-3.14008449177597,56.546759322911 + + + + + +NO34 +#labelStyle + +-3.06003557426719,56.5923900144531 + + + + +NO35 + +Small Square NO35 Boundry Box +#Line2 + + +1 + +-3.14279282693582,56.6365796062305 +-3.14551659970685,56.7263895179741 +-2.98214550173522,56.7277839658182 +-2.97980993524697,56.6379693263033 +-3.14279282693582,56.6365796062305 + + + + + +NO35 +#labelStyle + +-3.06255818237021,56.682212051979 + + + + +NO36 + +Small Square NO36 Boundry Box +#Line2 + + +1 + +-3.14551687290109,56.726398499794 +-3.14825648080447,56.8162070230449 +-2.98449488186386,56.8176062216883 +-2.98214573599245,56.727792948112 +-3.14551687290109,56.726398499794 + + + + + +NO36 +#labelStyle + +-3.06509544061771,56.7720327119741 + + + + +NO37 + +Small Square NO37 Boundry Box +#Line2 + + +1 + +-3.14825675558873,56.816216004726 +-3.15101232589762,56.9060231406137 +-2.98685795189612,56.907427112799 +-2.9844951174846,56.8176152038457 +-3.14825675558873,56.816216004726 + + + + + +NO37 +#labelStyle + +-3.06764746659989,56.8618519956616 + + + + +NO38 + +Small Square NO38 Boundry Box +#Line2 + + +1 + +-3.15101260228469,56.9060321221562 +-3.15378426365974,56.9958378718155 +-2.9892348221901,56.997246640473 +-2.98685818889136,56.90743609482 +-3.15101260228469,56.9060321221562 + + + + + +NO38 +#labelStyle + +-3.07021437918726,56.9516699042707 + + + + +NO39 + +Small Square NO39 Boundry Box +#Line2 + + +1 + +-3.15378454166255,56.9958468532193 +-3.15657242417072,57.0856512177897 +-2.99162560431038,57.0870648060401 +-2.98923506057093,56.9972556223577 +-3.15378454166255,56.9958468532193 + + + + + +NO39 +#labelStyle + +-3.07279629854803,57.0414864390369 + + + + +NO40 + +Small Square NO40 Boundry Box +#Line2 + + +1 + +-2.96831479339221,56.1888308067554 +-2.97058402203625,56.2786522958682 +-2.80911889734077,56.2798127950697 +-2.80722696356751,56.189987396984 +-2.96831479339221,56.1888308067554 + + + + + +NO40 +#labelStyle + +-2.88880320813236,56.234351815101 + + + + +NO41 + +Small Square NO41 Boundry Box +#Line2 + + +1 + +-2.9705842496327,56.2786612788467 +-2.97286652896178,56.3684813955548 +-2.81102190241919,56.369645822454 +-2.80911908709577,56.2798217784402 +-2.9705842496327,56.2786612788467 + + + + + +NO41 +#labelStyle + +-2.89088996274958,56.3241836490316 + + + + +NO42 + +Small Square NO42 Boundry Box +#Line2 + + +1 + +-2.97286675786858,56.3684903783961 +-2.9751621913211,56.4583091239781 +-2.81293587639561,56.4594774970592 +-2.81102209326675,56.3696548056891 +-2.97286675786858,56.3684903783961 + + + + + +NO42 +#labelStyle + +-2.8929887320051,56.4140141206812 + + + + +NO43 + +Small Square NO43 Boundry Box +#Line2 + + +1 + +-2.97516242154865,56.4583181066824 +-2.97747111367601,56.5481354824246 +-2.81486090646221,56.5493078203227 +-2.8129360683444,56.4594864801591 +-2.97516242154865,56.4583181066824 + + + + + +NO43 +#labelStyle + +-2.89509961126478,56.5038432314108 + + + + +NO44 + +Small Square NO44 Boundry Box +#Line2 + + +1 + +-2.97747134523482,56.548144464992 +-2.97979340171632,56.6379604721883 +-2.81679708075192,56.6391367936908 +-2.814861099521,56.5493168032875 +-2.97747134523482,56.548144464992 + + + + + +NO44 +#labelStyle + +-2.89722269692205,56.5936709825901 + + + + +NO45 + +Small Square NO45 Boundry Box +#Line2 + + +1 + +-2.97979363461703,56.6379694546189 +-2.98212916227507,56.7277840945703 +-2.81874448835114,56.728964418619 +-2.81679727492958,56.6391457765207 +-2.97979363461703,56.6379694546189 + + + + + +NO45 +#labelStyle + +-2.89935808641166,56.6834973755967 + + + + +NO46 + +Small Square NO46 Boundry Box +#Line2 + + +1 + +-2.98212939652841,56.7277930768642 +-2.98447850334395,56.8176063508791 +-2.82070321931254,56.8187906965717 +-2.81874468365661,56.7289734013141 +-2.98212939652841,56.7277930768642 + + + + + +NO46 +#labelStyle + +-2.90150587822377,56.7733224118165 + + + + +NO47 + +Small Square NO47 Boundry Box +#Line2 + + +1 + +-2.98447873896078,56.8176153330365 +-2.98684153408895,56.9074272424306 +-2.82267336466817,56.9086156290221 +-2.82070341575488,56.8187996791322 +-2.98447873896078,56.8176153330365 + + + + + +NO47 +#labelStyle + +-2.90366617191821,56.8631460926436 + + + + +NO48 + +Small Square NO48 Boundry Box +#Line2 + + +1 + +-2.98684177108025,56.9074362244515 +-2.98921836486635,56.9972467705475 +-2.82465501644279,56.9984392174522 +-2.82267356225655,56.9086246114481 +-2.98684177108025,56.9074362244515 + + + + + +NO48 +#labelStyle + +-2.90583906813893,56.95296841948 + + + + +NO49 + +Small Square NO49 Boundry Box +#Line2 + + +1 + +-2.98921860324321,56.9972557524321 +-2.99160910723886,57.0870649365596 +-2.8266482676673,57.0882614633529 +-2.82465521518644,56.9984481997439 +-2.98921860324321,56.9972557524321 + + + + + +NO49 +#labelStyle + +-2.90802466862877,57.0427893937358 + + + + +NO50 + +Small Square NO50 Boundry Box +#Line2 + + +1 + +-2.8072108525979,56.1899875021614 +-2.80910274863336,56.2798129006026 +-2.64762674570048,56.2807628372418 +-2.64611222984959,56.1909342388167 +-2.8072108525979,56.1899875021614 + + + + + +NO50 +#labelStyle + +-2.72750516382874,56.2354053524903 + + + + +NO51 + +Small Square NO51 Boundry Box +#Line2 + + +1 + +-2.80910293838457,56.279821883973 +-2.81100571575319,56.3696459283441 +-2.64915012473514,56.370599080298 +-2.64762689760167,56.2807718209331 +-2.80910293838457,56.279821883973 + + + + + +NO51 +#labelStyle + +-2.72921342031328,56.3252407499235 + + + + +NO52 + +Small Square NO52 Boundry Box +#Line2 + + +1 + +-2.81100590659695,56.3696549115792 +-2.81291965155231,56.4594776033081 +-2.65068228498523,56.4604339857106 +-2.64915027751099,56.3706080638554 +-2.81100590659695,56.3696549115792 + + + + + +NO52 +#labelStyle + +-2.73093151281215,56.4150748018185 + + + + +NO53 + +Small Square NO53 Boundry Box +#Line2 + + +1 + +-2.81291984349728,56.459486586408 +-2.81484464322114,56.5493079269321 +-2.65222329625912,56.5502675550405 +-2.65068243864269,56.4604429691343 +-2.81291984349728,56.459486586408 + + + + + +NO53 +#labelStyle + +-2.73265951940607,56.5049075096727 + + + + +NO54 + +Small Square NO54 Boundry Box +#Line2 + + +1 + +-2.81484483627609,56.549316909897 +-2.81678077889087,56.6391369006625 +-2.65377322911844,56.6400997898591 +-2.65222345080519,56.5502765383307 +-2.81484483627609,56.549316909897 + + + + + +NO54 +#labelStyle + +-2.73439751901716,56.5947388749938 + + + + +NO55 + +Small Square NO55 Boundry Box +#Line2 + + +1 + +-2.81678097306466,56.6391458834925 +-2.81872814764611,56.7289645259548 +-2.65533215488828,56.729930691748 +-2.65377338456022,56.6401087730159 +-2.81678097306466,56.6391458834925 + + + + + +NO55 +#labelStyle + +-2.73614559142025,56.6845688992989 + + + + +NO56 + +Small Square NO56 Boundry Box +#Line2 + + +1 + +-2.81872834294769,56.7289735086499 +-2.82068683953773,56.8187908042732 +-2.65690014566745,56.8197602622993 +-2.65533231123294,56.7299396747716 +-2.81872834294769,56.7289735086499 + + + + + +NO56 +#labelStyle + +-2.73790381725438,56.7743975841149 + + + + +NO57 + +Small Square NO57 Boundry Box +#Line2 + + +1 + +-2.82068703597616,56.8187997868337 +-2.822656945596,56.9086157370911 +-2.65847727433896,56.9095885031151 +-2.65690030292224,56.8197692451898 +-2.82068703597616,56.8187997868337 + + + + + +NO57 +#labelStyle + +-2.73967227803448,56.8642249309784 + + + + +NO58 + +Small Square NO58 Boundry Box +#Line2 + + +1 + +-2.82265714318043,56.9086247195171 +-2.82463855784381,56.9984393258905 +-2.6600636145807,56.999415415808 +-2.65847743251122,56.9095974858728 +-2.82265714318043,56.9086247195171 + + + + + +NO58 +#labelStyle + +-2.74145105616322,56.9540509414354 + + + + +NO59 + +Small Square NO59 Boundry Box +#Line2 + + +1 + +-2.82463875658349,56.9984483081822 +-2.82663176931021,57.0882615721621 +-2.66165924087618,57.0892410020004 +-2.66006377367782,56.9994243984329 +-2.82463875658349,56.9984483081822 + + + + + +NO59 +#labelStyle + +-2.74324023494314,57.0438756170416 + + + + +NO60 + +Small Square NO60 Boundry Box +#Line2 + + +1 + +-2.64609611790825,56.1909343230051 +-2.64761059601364,56.2807629217148 +-2.48612588508218,56.281502268595 +-2.48498885546267,56.1916711790871 +-2.64609611790825,56.1909343230051 + + + + + +NO60 +#labelStyle + +-2.56619736393962,56.2362486468646 + + + + +NO61 + +Small Square NO61 Boundry Box +#Line2 + + +1 + +-2.64761074791105,56.2807719054061 +-2.64913393708196,56.370599165057 +-2.48726956902396,56.3713410146702 +-2.4861259991227,56.281511252536 +-2.64761074791105,56.2807719054061 + + + + + +NO61 +#labelStyle + +-2.56752704505708,56.3260868969069 + + + + +NO62 + +Small Square NO62 Boundry Box +#Line2 + + +1 + +-2.64913408985401,56.3706081486144 +-2.6506660591469,56.4604340707569 +-2.48841984575542,56.4611784348845 +-2.48726968372116,56.3713499984785 +-2.64913408985401,56.3706081486144 + + + + + +NO62 +#labelStyle + +-2.56886438273477,56.4159238148153 + + + + +NO63 + +Small Square NO63 Boundry Box +#Line2 + + +1 + +-2.65066621280052,56.4604430541806 +-2.65220703201508,56.5502676403754 +-2.48957676769115,56.5510145308952 +-2.48841996111451,56.4611874185603 +-2.65066621280052,56.4604430541806 + + + + + +NO63 +#labelStyle + +-2.57020943775714,56.5057594021968 + + + + +NO64 + +Small Square NO64 Boundry Box +#Line2 + + +1 + +-2.6522071865573,56.5502766236656 +-2.6537569262464,56.640099875484 +-2.49074038781135,56.6408493043708 +-2.4895768837174,56.5510235144386 +-2.6522071865573,56.5502766236656 + + + + + +NO64 +#labelStyle + +-2.57156227156371,56.5955936606695 + + + + +NO65 + +Small Square NO65 Boundry Box +#Line2 + + +1 + +-2.65375708168431,56.6401088586408 +-2.65531581316415,56.7299307776643 +-2.49191075966951,56.7306827569913 +-2.49074050451009,56.640858287782 +-2.65375708168431,56.6401088586408 + + + + + +NO65 +#labelStyle + +-2.57292294625788,56.6854265918622 + + + + +NO66 + +Small Square NO66 Boundry Box +#Line2 + + +1 + +-2.65531596950492,56.7299397606879 +-2.65688376486536,56.8197603485083 +-2.49308793740009,56.820514890448 +-2.49191087704611,56.7306917402705 +-2.65531596950492,56.7299397606879 + + + + + +NO66 +#labelStyle + +-2.57429152461589,56.7752581974148 + + + + +NO67 + +Small Square NO67 Boundry Box +#Line2 + + +1 + +-2.65688392211624,56.8197693313989 +-2.65846085423122,56.9095885896183 +-2.49427197572642,56.9103457064437 +-2.49308805546001,56.8205238735955 +-2.65688392211624,56.8197693313989 + + + + + +NO67 +#labelStyle + +-2.57566807009591,56.8650884789778 + + + + +NO68 + +Small Square NO68 Boundry Box +#Line2 + + +1 + +-2.65846101239953,56.909597572376 +-2.66004715493776,56.9994155026068 +-2.49546292996869,57.0001752066923 +-2.49427209447515,56.9103546894595 +-2.65846101239953,56.909597572376 + + + + + +NO68 +#labelStyle + +-2.57705264684728,56.9549174382128 + + + + +NO69 + +Small Square NO69 Boundry Box +#Line2 + + +1 + +-2.66004731403092,56.9994244852317 +-2.66164274146668,57.0892410890962 +-2.49666085605206,57.0900033929189 +-2.4954630494118,57.0001841895766 +-2.66004731403092,56.9994244852317 + + + + + +NO69 +#labelStyle + +-2.57844531971992,57.0447450767917 + + + + +NO70 + +Small Square NO70 Boundry Box +#Line2 + + +1 + +-2.48497274276496,56.1916712422842 +-2.48610973463301,56.2815023320058 +-2.32461848667467,56.282031067958 +-2.32385899457169,56.1921981967769 +-2.48497274276496,56.1916712422842 + + + + + +NO70 +#labelStyle + +-2.40488197077873,56.2368816741265 + + + + +NO71 + +Small Square NO71 Boundry Box +#Line2 + + +1 + +-2.48610984866974,56.2815113159468 +-2.48725338060239,56.3713410782957 +-2.32538242368266,56.3718716042444 +-2.32461856284936,56.2820400520775 +-2.48610984866974,56.2815113159468 + + + + + +NO71 +#labelStyle + +-2.40583301640673,56.3267220657081 + + + + +NO72 + +Small Square NO72 Boundry Box +#Line2 + + +1 + +-2.48725349529578,56.371350062104 +-2.4884036191426,56.4611784987257 +-2.32615076449658,56.4617108230985 +-2.32538250029599,56.3718805882321 +-2.48725349529578,56.371350062104 + + + + + +NO72 +#labelStyle + +-2.4067895384946,56.4165611352204 + + + + +NO73 + +Small Square NO73 Boundry Box +#Line2 + + +1 + +-2.48840373449785,56.4611874824015 +-2.48956050266644,56.551014594953 +-2.32692354412974,56.5515487262463 +-2.32615084155204,56.4617198069546 +-2.48840373449785,56.4611874824015 + + + + + +NO73 +#labelStyle + +-2.40775158052184,56.5063988843525 + + + + +NO74 + +Small Square NO74 Boundry Box +#Line2 + + +1 + +-2.48956061868884,56.5510235784965 +-2.4907240841524,56.6408493686463 +-2.32770079797329,56.6413853154259 +-2.32692362163084,56.5515577099709 +-2.48956061868884,56.5510235784965 + + + + + +NO74 +#labelStyle + +-2.40871918643656,56.5962353148053 + + + + +NO75 + +Small Square NO75 Boundry Box +#Line2 + + +1 + +-2.49072420084726,56.6408583520576 +-2.49189441715216,56.7306828214856 +-2.32848256180138,56.7312205923877 +-2.3277008759236,56.6413942990192 +-2.49072420084726,56.6408583520576 + + + + + +NO75 +#labelStyle + +-2.40969240066179,56.6860704282917 + + + + +NO76 + +Small Square NO76 Boundry Box +#Line2 + + +1 + +-2.49189453452487,56.7306918047648 +-2.4930715557984,56.8205149551621 +-2.32926887177627,56.8210545588941 +-2.32848264020449,56.7312295758498 +-2.49189453452487,56.7306918047648 + + + + + +NO76 +#labelStyle + +-2.41067126810188,56.7759042265362 + + + + +NO77 + +Small Square NO77 Boundry Box +#Line2 + + +1 + +-2.4930716738544,56.8205239383096 +-2.49425555481262,56.9103457713787 +-2.3300597644536,56.9108872167195 +-2.32926895063581,56.8210635422253 +-2.4930716738544,56.8205239383096 + + + + + +NO77 +#labelStyle + +-2.41165583414899,56.865736711275 + + + + +NO78 + +Small Square NO78 Boundry Box +#Line2 + + +1 + +-2.49425567355742,56.9103547543945 +-2.49544646951319,57.0001752718491 +-2.33085527678776,57.0007185676507 +-2.33005984377325,56.9108961999199 +-2.49425567355742,56.9103547543945 + + + + + +NO78 +#labelStyle + +-2.41264614468973,56.9555678842562 + + + + +NO79 + +Small Square NO79 Boundry Box +#Line2 + + +1 + +-2.49544658895234,57.0001842547334 +-2.4966443558234,57.0900034582987 +-2.33165544613728,57.090548613486 +-2.33085535657124,57.0007275507204 +-2.49544658895234,57.0001842547334 + + + + + +NO79 +#labelStyle + +-2.41364224611188,57.0453977472396 + + + + +NO80 + +Small Square NO80 Boundry Box +#Line2 + + +1 + +-2.32384288133307,56.1921982389809 +-2.32460233568031,56.2820311103047 +-2.16310672221707,56.2823492201896 +-2.16272480188469,56.1925152768546 +-2.32384288133307,56.1921982389809 + + + + + +NO80 +#labelStyle + +-2.2435611472972,56.2373044161858 + + + + +NO81 + +Small Square NO81 Boundry Box +#Line2 + + +1 + +-2.32460241185121,56.2820400944242 +-2.32536623471158,56.3718716467345 +-2.16349087766597,56.372190833769 +-2.16310676052249,56.2823582044166 +-2.32460241185121,56.2820400944242 + + + + + +NO81 +#labelStyle + +-2.24413351443392,56.3271462381052 + + + + +NO82 + +Small Square NO82 Boundry Box +#Line2 + + +1 + +-2.32536631132111,56.3718806307222 +-2.32613453732988,56.4617108657327 +-2.16387724756433,56.4620311349891 +-2.16349091619196,56.3721998178647 +-2.32536631132111,56.3718806307222 + + + + + +NO82 +#labelStyle + +-2.24470917746787,56.4169867446785 + + + + +NO83 + +Small Square NO83 Boundry Box +#Line2 + + +1 + +-2.3261346143815,56.4617198495888 +-2.32690727854674,56.5515487690252 +-2.16426584951914,56.5518701256175 +-2.16387728631264,56.4620401189537 +-2.3261346143815,56.4617198495888 + + + + + +NO83 +#labelStyle + +-2.2452881625674,56.5068259376497 + + + + +NO84 + +Small Square NO84 Boundry Box +#Line2 + + +1 + +-2.32690735604399,56.5515577527498 +-2.32768449375158,56.6413853583502 +-2.16465670132744,56.6417078074341 +-2.16426588849154,56.5518791094511 +-2.32690735604399,56.5515577527498 + + + + + +NO84 +#labelStyle + +-2.24587049618291,56.5966638187751 + + + + +NO85 + +Small Square NO85 Boundry Box +#Line2 + + +1 + +-2.32768457169801,56.6413943419435 +-2.32846621871676,56.7312206354581 +-2.16504982097885,56.7315441822316 +-2.16465674052572,56.6417167911369 +-2.32768457169801,56.6413943419435 + + + + + +NO85 +#labelStyle + +-2.24645620505066,56.6865003898236 + + + + +NO86 + +Small Square NO86 Boundry Box +#Line2 + + +1 + +-2.32846629711597,56.7312296189203 +-2.32925248960274,56.8210546021113 +-2.16544522665819,56.8213792518152 +-2.16504986040483,56.7315531658038 +-2.32846629711597,56.7312296189203 + + + + + +NO86 +#labelStyle + +-2.24704531619659,56.7763356525764 + + + + +NO87 + +Small Square NO87 Boundry Box +#Line2 + + +1 + +-2.32925256845836,56.8210635854425 +-2.33004334296335,56.9108872600843 +-2.16584293674808,56.9112130180026 +-2.16544526631368,56.8213882352569 +-2.32925256845836,56.8210635854425 + + + + + +NO87 +#labelStyle + +-2.24763785694027,56.8661696088269 + + + + +NO88 + +Small Square NO88 Boundry Box +#Line2 + + +1 + +-2.33004342227906,56.9108962432847 +-2.33083881575115,57.0007186111636 +-2.16624296983166,57.0010454826242 +-2.16584297663493,56.9112220013142 +-2.33004342227906,56.9108962432847 + + + + + +NO88 +#labelStyle + +-2.24823385489884,56.956002260381 + + + + +NO89 + +Small Square NO89 Boundry Box +#Line2 + + +1 + +-2.33083889553066,57.0007275942334 +-2.3316389453228,57.0905486571479 +-2.16664534469535,57.0908766475227 +-2.16624300995176,57.0010544658057 +-2.33083889553066,57.0007275942334 + + + + + +NO89 +#labelStyle + +-2.24883333799111,57.045833609057 + + + + +NO90 + +Small Square NO90 Boundry Box +#Line2 + + +1 + +-2.16270868832066,56.1925152980643 +-2.16309057089471,56.282349241471 +-2.00159276381605,56.2824567161809 +-2.00158843247242,56.1926224102772 +-2.16270868832066,56.1925152980643 + + + + + +NO90 +#labelStyle + +-2.08223705690206,56.237516860962 + + + + +NO91 + +Small Square NO91 Boundry Box +#Line2 + + +1 + +-2.16309060919634,56.2823582256981 +-2.1634746883643,56.3721908551225 +-2.00159712030111,56.3722986940683 +-2.00159276425046,56.2824657004442 +-2.16309060919634,56.2823582256981 + + + + + +NO91 +#labelStyle + +-2.08243071967234,56.3273594019294 + + + + +NO92 + +Small Square NO92 Boundry Box +#Line2 + + +1 + +-2.16347472688648,56.3721998392182 +-2.1638610200644,56.4620311564151 +-2.00160150169174,56.4621393613135 +-2.001597120738,56.3723076782005 +-2.16347472688648,56.3721998392182 + + + + + +NO92 +#labelStyle + +-2.08262549749901,56.4172006309317 + + + + +NO93 + +Small Square NO93 Boundry Box +#Line2 + + +1 + +-2.16386105880887,56.4620401403796 +-2.16424958360026,56.5518701471162 +-2.00160590818615,56.5519787196979 +-2.00160150213113,56.4621483453147 +-2.16386105880887,56.4620401403796 + + + + + +NO93 +#labelStyle + +-2.08282139923555,56.5070405497406 + + + + +NO94 + +Small Square NO94 Boundry Box +#Line2 + + +1 + +-2.1642496225688,56.5518791309498 +-2.16464039676716,56.6417078290059 +-2.00161033998469,56.6418167710158 +-2.00160590862807,56.5519877035684 +-2.1642496225688,56.5518791309498 + + + + + +NO94 +#labelStyle + +-2.08301843383086,56.5968791601401 + + + + +NO95 + +Small Square NO95 Boundry Box +#Line2 + + +1 + +-2.16464043596157,56.6417168127087 +-2.16503347755295,56.7315442038769 +-2.00161479728986,56.7316535170741 +-2.00161034042915,56.6418257547556 +-2.16464043596157,56.6417168127087 + + + + + +NO95 +#labelStyle + +-2.08321661033056,56.6867164639274 + + + + +NO96 + +Small Square NO96 Boundry Box +#Line2 + + +1 + +-2.16503351697502,56.731553187449 +-2.16542884414063,56.8213792735343 +-2.00161928030638,56.8214889596925 +-2.00161479773688,56.7316625006835 +-2.16503351697502,56.731553187449 + + + + + +NO96 +#labelStyle + +-2.08341593787829,56.776552462912 + + + + +NO97 + +Small Square NO97 Boundry Box +#Line2 + + +1 + +-2.1654288837922,56.821388256976 +-2.16582651491102,56.9112130397959 +-2.00162378924117,56.9113231007034 +-2.00161928075597,56.8214979431716 +-2.1654288837922,56.821388256976 + + + + + +NO97 +#labelStyle + +-2.08361642571702,56.8663871589163 + + + + +NO98 + +Small Square NO98 Boundry Box +#Line2 + + +1 + +-2.16582655479394,56.9112220231074 +-2.16622650844544,57.001045504492 +-2.00162832430342,57.0011559419518 +-2.00162378969336,56.9113320840524 +-2.16582655479394,56.9112220231074 + + + + + +NO98 +#labelStyle + +-2.08381808319041,56.9562205537752 + + + + +NO99 + +Small Square NO99 Boundry Box +#Line2 + + +1 + +-2.16622654856157,57.0010544876734 +-2.16662884352842,57.0908766694654 +-2.00163288570462,57.0909874852955 +-2.00162832475824,57.001164925171 +-2.16622654856157,57.0010544876734 + + + + + +NO99 +#labelStyle + +-2.08402091974416,57.0460526493364 + + + + + +NR + +Large Square NR Boundry Box +#Line1 + + +1 + +-6.7168666503904,55.2028791415029 +-6.82600140963506,56.0982735324663 +-5.22144925726851,56.1506201824735 +-5.14841263454001,55.2535063428866 +-6.7168666503904,55.2028791415029 + + + + + +NR00 + +Small Square NR00 Boundry Box +#Line2 + + +1 + +-6.7168666503904,55.2028791415029 +-6.72750540068595,55.2924227842569 +-6.57055819042129,55.2984097078875 +-6.56026956986288,55.2088462340511 +-6.7168666503904,55.2028791415029 + + + + + +NR00 +#labelStyle + +-6.64379263642016,55.250669688966 + + + + +NR01 + +Small Square NR01 Boundry Box +#Line2 + + +1 + +-6.72750646763982,55.2924317393818 +-6.73820481198734,55.3819726821694 +-6.58090549634115,55.387979527889 +-6.57055922226189,55.2984186650002 +-6.72750646763982,55.2924317393818 + + + + + +NR01 +#labelStyle + +-6.65428666850988,55.3402309603803 + + + + +NR02 + +Small Square NR02 Boundry Box +#Line2 + + +1 + +-6.73820588492392,55.3819816370239 +-6.74896427909513,55.471519870651 +-6.59131090273897,55.4775467281872 +-6.58090653396966,55.3879884847402 +-6.73820588492392,55.3819816370239 + + + + + +NR02 +#labelStyle + +-6.66483955443157,55.42978957203 + + + + +NR03 + +Small Square NR03 Boundry Box +#Line2 + + +1 + +-6.74896535806024,55.471528825234 +-6.75978426255955,55.5610643404079 +-6.60177485541239,55.5671113001952 +-6.59131194619975,55.4775556847759 +-6.74896535806024,55.471528825234 + + + + + +NR03 +#labelStyle + +-6.67545174502947,55.5193455150253 + + + + +NR04 + +Small Square NR04 Boundry Box +#Line2 + + +1 + +-6.75978534759949,55.5610732947186 +-6.77066522772515,55.6506060820463 +-6.61229780480288,55.6566732352332 +-6.60177590475024,55.5671202565207 +-6.75978534759949,55.5610732947186 + + + + + +NR04 +#labelStyle + +-6.68612369583678,55.6088987803808 + + + + +NR05 + +Small Square NR05 Boundry Box +#Line2 + + +1 + +-6.77066631888669,55.6506150360837 +-6.78160764479284,55.7401450860704 +-6.62288020605588,55.7462325245273 +-6.61229886006308,55.6566821912946 +-6.77066631888669,55.6506150360837 + + + + + +NR05 +#labelStyle + +-6.69685586713631,55.6984493590138 + + + + +NR06 + +Small Square NR06 Boundry Box +#Line2 + + +1 + +-6.78160874212324,55.7401540398336 +-6.79261198888298,55.8296813428815 +-6.63352251908197,55.8357891592074 +-6.62288126728419,55.7462414803236 +-6.78160874212324,55.7401540398336 + + + + + +NR06 +#labelStyle + +-6.70764872402212,55.7879972417426 + + + + +NR07 + +Small Square NR07 Boundry Box +#Line2 + + +1 + +-6.79261309243001,55.8296902963695 +-6.80367874009941,55.9192148427758 +-6.64422520861893,55.9253431303065 +-6.63352358632462,55.8357981147379 +-6.79261309243001,55.8296902963695 + + + + + +NR07 +#labelStyle + +-6.71850273646206,55.8775424192856 + + + + +NR08 + +Small Square NR08 Boundry Box +#Line2 + + +1 + +-6.80367984991133,55.9192237959876 +-6.81480838359447,56.0087455759434 +-6.65498874429475,56.0148944287587 +-6.64422628192263,55.9253520855702 +-6.80367984991133,55.9192237959876 + + + + + +NR08 +#labelStyle + +-6.72941837936136,55.9670848822591 + + + + +NR09 + +Small Square NR09 Boundry Box +#Line2 + + +1 + +-6.81480949972005,56.008754528878 +-6.82600140963506,56.0982735324663 +-6.66581360069173,56.104443045398 +-6.65498982370671,56.0149033837546 +-6.81480949972005,56.008754528878 + + + + + +NR09 +#labelStyle + +-6.74039613262711,56.0566246211765 + + + + +NR10 + +Small Square NR10 Boundry Box +#Line2 + + +1 + +-6.5602539056956,55.2088468207877 +-6.57054249121546,55.2984102965744 +-6.41353763090208,55.3041958792749 +-6.40359961169787,55.2146132336621 +-6.5602539056956,55.2088468207877 + + + + + +NR10 +#labelStyle + +-6.48697607305916,55.2565467796495 + + + + +NR11 + +Small Square NR11 Boundry Box +#Line2 + + +1 + +-6.57054352305255,55.2984192536873 +-6.58088976189896,55.3879801185351 +-6.42353235505657,55.3937849590912 +-6.41353862758201,55.3042048383093 +-6.57054352305255,55.2984192536873 + + + + + +NR11 +#labelStyle + +-6.49711871533207,55.3461275992353 + + + + +NR12 + +Small Square NR12 Boundry Box +#Line2 + + +1 + +-6.58089079952394,55.3879890753865 +-6.59129513286462,55.4775473208013 +-6.43358321958092,55.4833715060066 +-6.42353335732913,55.3937939178726 +-6.58089079952394,55.3879890753865 + + + + + +NR12 +#labelStyle + +-6.50731826093639,55.4357058469821 + + + + +NR13 + +Small Square NR13 Boundry Box +#Line2 + + +1 + +-6.59129617632185,55.4775562773902 +-6.60175904990864,55.5671118947862 +-6.44369065545946,55.572955512119 +-6.433584227489,55.4833804645344 +-6.59129617632185,55.4775562773902 + + + + + +NR13 +#labelStyle + +-6.51757514600722,55.5252815146924 + + + + +NR14 + +Small Square NR14 Boundry Box +#Line2 + + +1 + +-6.60176009924292,55.5671208511119 +-6.61228196347096,55.6566738318102 +-6.45385509816891,55.6625369694399 +-6.44369166904638,55.5729644703923 +-6.60176009924292,55.5671208511119 + + + + + +NR14 +#labelStyle + +-6.52788981121854,55.61485459408 + + + + +NR15 + +Small Square NR15 Boundry Box +#Line2 + + +1 + +-6.61228301872757,55.6566827878717 +-6.62286432869553,55.7462331230992 +-6.46407698773663,55.7521158698938 +-6.45385611747844,55.6625459274579 +-6.61228301872757,55.6566827878717 + + + + + +NR15 +#labelStyle + +-6.53826270184207,55.7044250767685 + + + + +NR16 + +Small Square NR16 Boundry Box +#Line2 + + +1 + +-6.62286538992023,55.7462420788957 +-6.63350660549141,55.8357897597834 +-6.47435676879982,55.8416922053166 +-6.464078012813,55.7521248276558 +-6.62286538992023,55.7462420788957 + + + + + +NR16 +#labelStyle + +-6.5486942678069,55.7939929542901 + + + + +NR17 + +Small Square NR17 Boundry Box +#Line2 + + +1 + +-6.63350767273042,55.835798715314 +-6.64420925859481,55.9253437328957 +-6.4846948906656,55.9312659674543 +-6.47435779968773,55.8417011628217 +-6.63350767273042,55.835798715314 + + + + + +NR17 +#labelStyle + +-6.55918496376014,55.8835582180843 + + + + +NR18 + +Small Square NR18 Boundry Box +#Line2 + + +1 + +-6.64421033189485,55.9253526881595 +-6.6549727576322,56.0148950333704 +-6.49509180737207,56.0208371479614 +-6.48469592741021,55.9312749247015 +-6.64421033189485,55.9253526881595 + + + + + +NR18 +#labelStyle + +-6.56973524912847,55.9731208594961 + + + + +NR19 + +Small Square NR19 Boundry Box +#Line2 + + +1 + +-6.65497383704049,56.0149039883665 +-6.66579757718429,56.1044436520415 +-6.5055479777503,56.1104057384 +-6.49509285001904,56.0208461049501 +-6.65497383704049,56.0149039883665 + + + + + +NR19 +#labelStyle + +-6.58034558818067,56.062680869775 + + + + +NR20 + +Small Square NR20 Boundry Box +#Line2 + + +1 + +-6.40358394190515,55.2146138003208 +-6.41352192602786,55.3041964478177 +-6.25646136092381,55.3097805316094 +-6.24687436518207,55.2201793766431 +-6.40358394190515,55.2146138003208 + + + + + +NR20 +#labelStyle + +-6.33010304136835,55.2622227608561 + + + + +NR21 + +Small Square NR21 Boundry Box +#Line2 + + +1 + +-6.41352292270428,55.3042054068523 +-6.4235166149026,55.3937855295267 +-6.26610307678436,55.3993882058288 +-6.25646232240063,55.309789492499 +-6.41352292270428,55.3042054068523 + + + + + +NR21 +#labelStyle + +-6.33989386219108,55.3518224652141 + + + + +NR22 + +Small Square NR22 Boundry Box +#Line2 + + +1 + +-6.42351761717163,55.3937944883083 +-6.43356744395097,55.4833720783434 +-6.2757989684719,55.4889934310052 +-6.26610404365811,55.3993971664739 +-6.42351761717163,55.3937944883083 + + + + + +NR22 +#labelStyle + +-6.34973963136386,55.4414196827304 + + + + +NR23 + +Small Square NR23 Boundry Box +#Line2 + + +1 + +-6.43356845185549,55.4833810368714 +-6.44367484415581,55.5729560863656 +-6.28554945210005,55.5785961998977 +-6.27579994078397,55.489002391405 +-6.43356845185549,55.4833810368714 + + + + + +NR23 +#labelStyle + +-6.3596407702547,55.5310144058771 + + + + +NR24 + +Small Square NR24 Boundry Box +#Line2 + + +1 + +-6.44367585773915,55.5729650446391 +-6.45383925099234,55.662537545605 +-6.29535494812253,55.6681965051867 +-6.28555042989227,55.5786051600516 +-6.44367585773915,55.5729650446391 + + + + + +NR24 +#labelStyle + +-6.36959770461965,55.6206066270445 + + + + +NR25 + +Small Square NR25 Boundry Box +#Line2 + + +1 + +-6.45384027029827,55.6625465036232 +-6.4640611044864,55.7521164479862 +-6.30521588138943,55.757794339472 +-6.29535593143715,55.6682054650938 +-6.45384027029827,55.6625465036232 + + + + + +NR25 +#labelStyle + +-6.37961086465963,55.7101963385397 + + + + +NR26 + +Small Square NR26 Boundry Box +#Line2 + + +1 + +-6.46406212955915,55.7521254057483 +-6.47434084927366,55.8416927853451 +-6.31513268120447,55.8473896952717 +-6.30521687026917,55.7578032991316 +-6.46406212955915,55.7521254057483 + + + + + +NR26 +#labelStyle + +-6.38968068507816,55.7997835325856 + + + + +NR27 + +Small Square NR27 Boundry Box +#Line2 + + +1 + +-6.47434188015794,55.8417017428503 +-6.48467893465972,55.9312665494277 +-6.32510578138311,55.9369825650213 +-6.31513367569248,55.8473986546831 +-6.47434188015794,55.8417017428503 + + + + + +NR27 +#labelStyle + +-6.39980760514002,55.889368201319 + + + + +NR28 + +Small Square NR28 Boundry Box +#Line2 + + +1 + +-6.48467997140067,55.9312755066752 +-6.49507581468108,56.0208377318887 +-6.33513562031153,56.0265729410719 +-6.32510678152301,55.9369915241837 +-6.48467997140067,55.9312755066752 + + + + + +NR28 +#labelStyle + +-6.40999206873085,55.9789503367901 + + + + +NR29 + +Small Square NR29 Boundry Box +#Line2 + + +1 + +-6.49507685732437,56.0208466888776 +-6.50553194816726,56.1104063242903 +-6.3452226410066,56.1161608156895 +-6.33513662614737,56.0265818999846 +-6.49507685732437,56.0208466888776 + + + + + +NR29 +#labelStyle + +-6.42023452441758,56.0685299309605 + + + + +NR30 + +Small Square NR30 Boundry Box +#Line2 + + +1 + +-6.2468586899572,55.2201799232084 +-6.25644565057598,55.3097810799925 +-6.09933133031386,55.3151635122971 +-6.09009576557261,55.2255445114641 +-6.2468586899572,55.2201799232084 + + + + + +NR30 +#labelStyle + +-6.17317548171751,55.2676974778327 + + + + +NR31 + +Small Square NR31 Boundry Box +#Line2 + + +1 + +-6.25644661204928,55.3097900408823 +-6.26608733111487,55.3993887560381 +-6.10861962607215,55.4047891144338 +-6.09933225654661,55.3151724749755 +-6.25644661204928,55.3097900408823 + + + + + +NR31 +#labelStyle + +-6.18261406407468,55.3573154024757 + + + + +NR32 + +Small Square NR32 Boundry Box +#Line2 + + +1 + +-6.26608829798507,55.3993977166833 +-6.27578318728406,55.4889939830488 +-6.11796012883016,55.4944123484297 +-6.10862055750569,55.4047980768757 +-6.26608829798507,55.3993977166833 + + + + + +NR32 +#labelStyle + +-6.1921056354687,55.4469309223354 + + + + +NR33 + +Small Square NR33 Boundry Box +#Line2 + + +1 + +-6.27578415959257,55.4890029434488 +-6.28553363519572,55.578596753784 +-6.12735323977536,55.5840332076829 +-6.11796106550439,55.4944213106345 +-6.27578415959257,55.4890029434488 + + + + + +NR33 +#labelStyle + +-6.20165060244458,55.5365440305308 + + + + +NR34 + +Small Square NR34 Boundry Box +#Line2 + + +1 + +-6.28553461298435,55.5786057139381 +-6.29533909530202,55.6681970609241 +-6.13679936428213,55.6736516855189 +-6.12735418173061,55.5840421696498 +-6.28553461298435,55.5786057139381 + + + + + +NR34 +#labelStyle + +-6.21124937578355,55.6261547201059 + + + + +NR35 + +Small Square NR35 Boundry Box +#Line2 + + +1 + +-6.29534007861305,55.6682060208314 +-6.30519999245157,55.7577948970688 +-6.14629891196609,55.7632677751897 +-6.13680031155914,55.6736606472474 +-6.29534007861305,55.6682060208314 + + + + + +NR35 +#labelStyle + +-6.22090237055798,55.715762984028 + + + + +NR36 + +Small Square NR36 Boundry Box +#Line2 + + +1 + +-6.30520098132769,55.7578038567286 +-6.31511675594654,55.8473902547365 +-6.15585229673939,55.8528814698722 +-6.14629986460604,55.763276736679 +-6.30520098132769,55.7578038567286 + + + + + +NR36 +#labelStyle + +-6.23061000618716,55.8053688151872 + + + + +NR37 + +Small Square NR37 Boundry Box +#Line2 + + +1 + +-6.31511775043091,55.8473992141481 +-6.32508981960083,55.9369831263626 +-6.16545993686677,55.9424927626675 +-6.15585325478389,55.8528904311217 +-6.31511775043091,55.8473992141481 + + + + + +NR37 +#labelStyle + +-6.24037270649402,55.8949722063944 + + + + +NR38 + +Small Square NR38 Boundry Box +#Line2 + + +1 + +-6.32509081973706,55.9369920855252 +-6.33511962179906,56.0265735042985 +-6.17512225502258,56.0321016465993 +-6.16546090035788,55.9425017236764 +-6.32509081973706,55.9369920855252 + + + + + +NR38 +#labelStyle + +-6.25019089976262,55.9845731503807 + + + + +NR39 + +Small Square NR39 Boundry Box +#Line2 + + +1 + +-6.33512062763122,56.0265824632113 +-6.3452066055565,56.1161613808099 +-6.1848396783486,56.121708114613 +-6.17512322400277,56.032110607367 +-6.33512062763122,56.0265824632113 + + + + + +NR39 +#labelStyle + +-6.26006501879662,56.074171639796 + + + + +NR40 + +Small Square NR40 Boundry Box +#Line2 + + +1 + +-6.09008008510935,55.2255450379212 +-6.09931561468761,55.3151640405056 +-5.94214949312644,55.3203446741604 +-5.93326575229975,55.2307084919744 +-6.09008008510935,55.2255450379212 + + + + + +NR40 +#labelStyle + +-6.01619533874999,55.272970781216 + + + + +NR41 + +Small Square NR41 Boundry Box +#Line2 + + +1 + +-6.09931654091684,55.3151730031842 +-6.10860387508379,55.4047896444018 +-5.95108397174893,55.4099875366917 +-5.94215038407563,55.320353638561 +-6.09931654091684,55.3151730031842 + + + + + +NR41 +#labelStyle + +-6.02528128029925,55.3626062606065 + + + + +NR42 + +Small Square NR42 Boundry Box +#Line2 + + +1 + +-6.10860480651378,55.4047986068438 +-6.11794434228259,55.494412880165 +-5.96006868441075,55.4996281090188 +-5.95108486770234,55.4099965008636 +-6.10860480651378,55.4047986068438 + + + + + +NR42 +#labelStyle + +-6.03441824739028,55.4522394143228 + + + + +NR43 + +Small Square NR43 Boundry Box +#Line2 + + +1 + +-6.11794527895326,55.49442184237 +-6.12733741747001,55.5840337411936 +-5.96910401731968,55.5892663851556 +-5.96006958540681,55.4996370729613 +-6.11794527895326,55.49442184237 + + + + + +NR43 +#labelStyle + +-6.04360663169097,55.541870236108 + + + + +NR44 + +Small Square NR44 Boundry Box +#Line2 + + +1 + +-6.12733835942167,55.5840427031607 +-6.13678350601888,55.6736522208131 +-5.97819036071638,55.6789023590499 +-5.96910492339722,55.5892753488682 +-6.12733835942167,55.5840427031607 + + + + + +NR44 +#labelStyle + +-6.0528468289528,55.6314987196368 + + + + +NR45 + +Small Square NR45 Boundry Box +#Line2 + + +1 + +-6.13678445329229,55.6736611825417 +-6.14628301754333,55.7632683122754 +-5.98732810892676,55.768536024582 +-5.97819127191461,55.6789113225319 +-6.13678445329229,55.6736611825417 + + + + + +NR45 +#labelStyle + +-6.06213923906381,55.7211248585135 + + + + +NR46 + +Small Square NR46 Boundry Box +#Line2 + + +1 + +-6.14628397017966,55.7632772737649 +-6.15583636595395,55.8528820087577 +-5.99651766041531,55.8581673755641 +-5.98732902528533,55.7685449878329 +-6.14628397017966,55.7632772737649 + + + + + +NR46 +#labelStyle + +-6.07148426610242,55.8107486462718 + + + + +NR47 + +Small Square NR47 Boundry Box +#Line2 + + +1 + +-6.15583732399482,55.8528909700074 +-6.16544396951394,55.942493303361 +-6.00575941783909,55.947796405739 +-5.99651858197427,55.8581763385833 +-6.15583732399482,55.8528909700074 + + + + + +NR47 +#labelStyle + +-6.08088231839213,55.900370076373 + + + + +NR48 + +Small Square NR48 Boundry Box +#Line2 + + +1 + +-6.16544493300138,55.9425022643701 +-6.17510625089605,56.0321021891092 +-6.01505378810271,56.0374231087788 +-6.00576034463892,55.9478053685258 +-6.16544493300138,55.9425022643701 + + + + + +NR48 +#labelStyle + +-6.09033380855697,55.9899891422053 + + + + +NR49 + +Small Square NR49 Boundry Box +#Line2 + + +1 + +-6.17510721987255,56.032111149877 +-6.18482363724047,56.1217086589477 +-6.0244011824141,56.127047478284 +-6.01505472018432,56.0374320713325 +-6.17510721987255,56.032111149877 + + + + + +NR49 +#labelStyle + +-6.09983915357798,56.0796058370823 + + + + +NR50 + +Small Square NR50 Boundry Box +#Line2 + + +1 + +-5.93325006679224,55.230708998309 +-5.94213377241738,55.3203451821799 +-5.78491780749349,55.3253238754527 +-5.77638626881956,55.2356711774166 +-5.93325006679224,55.230708998309 + + + + + +NR50 +#labelStyle + +-5.85916456123502,55.278042527048 + + + + +NR51 + +Small Square NR51 Boundry Box +#Line2 + + +1 + +-5.94213466336303,55.3203541465806 +-5.9510682156388,55.4099880464038 +-5.79349808677412,55.4149833298566 +-5.78491866312108,55.3253328415087 +-5.94213466336303,55.3203541465806 + + + + + +NR51 +#labelStyle + +-5.86789747436031,55.3676948946351 + + + + +NR52 + +Small Square NR52 Boundry Box +#Line2 + + +1 + +-5.95106911158866,55.4099970105758 +-5.96005289270205,55.4996286204312 +-5.80212662315268,55.5046405690175 +-5.79349894720899,55.4149922956914 +-5.95106911158866,55.4099970105758 + + + + + +NR52 +#labelStyle + +-5.8766794455011,55.4573450126981 + + + + +NR53 + +Small Square NR53 Boundry Box +#Line2 + + +1 + +-5.96005379369454,55.4996375843739 +-5.96908818981341,55.589266898276 +-5.81080378780561,55.5942955875419 +-5.80212748843175,55.5046495346304 +-5.96005379369454,55.4996375843739 + + + + + +NR53 +#labelStyle + +-5.88551085139601,55.5469928755813 + + + + +NR54 + +Small Square NR54 Boundry Box +#Line2 + + +1 + +-5.96908909588736,55.5892758619887 +-5.97817449721202,55.6789028738859 +-5.81952995578744,55.6839483799764 +-5.8108046579662,55.5943045529325 +-5.96908909588736,55.5892758619887 + + + + + +NR54 +#labelStyle + +-5.89439207271375,55.6366384775665 + + + + +NR55 + +Small Square NR55 Boundry Box +#Line2 + + +1 + +-5.97817540840664,55.6789118373682 +-5.98731220922228,55.7685365411417 +-5.82830550608115,55.7735989408066 +-5.81953083086725,55.6839573451442 +-5.97817540840664,55.6789118373682 + + + + + +NR55 +#labelStyle + +-5.90332349410424,55.726281812872 + + + + +NR56 + +Small Square NR56 Boundry Box +#Line2 + + +1 + +-5.98731312557721,55.7685455043928 +-5.9965017243071,55.8581678938553 +-5.83713082164947,55.8632472644557 +-5.82830638611827,55.7736079057509 +-5.98731312557721,55.7685455043928 + + + + + +NR56 +#labelStyle + +-5.91230550425035,55.8159228756512 + + + + +NR57 + +Small Square NR57 Boundry Box +#Line2 + + +1 + +-5.99650264586241,55.8581768568746 +-6.00574344512201,55.9477969257696 +-5.84600628948688,55.952893345284 +-5.83713170668241,55.863256229176 +-5.99650264586241,55.8581768568746 + + + + + +NR57 +#labelStyle + +-5.92133849592064,55.905561659992 + + + + +NR58 + +Small Square NR58 Boundry Box +#Line2 + + +1 + +-6.00574437191816,55.9478058885565 +-6.01503777857001,56.0374236305567 +-5.85493230067247,56.042537177588 +-5.84600717955453,55.9529023097798 +-6.00574437191816,55.9478058885565 + + + + + +NR58 +#labelStyle + +-5.93042286602276,55.9951981599155 + + + + +NR59 + +Small Square NR59 Boundry Box +#Line2 + + +1 + +-6.01503871064792,56.0374325931107 +-6.02438513585744,56.1270480018174 +-5.86390925042363,56.1321787555985 +-5.85493319581415,56.0425461418586 +-6.01503871064792,56.0374325931107 + + + + + +NR59 +#labelStyle + +-5.93955901565778,56.0848323693748 + + + + +NR60 + +Small Square NR60 Boundry Box +#Line2 + + +1 + +-5.77637057846234,55.2356716636148 +-5.78490208189764,55.3253243632692 +-5.62763823547479,55.3301009798717 +-5.61945926246595,55.2404324324406 +-5.77637057846234,55.2356716636148 + + + + + +NR60 +#labelStyle + +-5.70208510191913,55.2829125767896 + + + + +NR61 + +Small Square NR61 Boundry Box +#Line2 + + +1 + +-5.78490293752169,55.3253333293254 +-5.79348232573972,55.4149838192988 +-5.63586394808579,55.4197763566649 +-5.62763905574424,55.3301099475164 +-5.78490293752169,55.3253333293254 + + + + + +NR61 +#labelStyle + +-5.710464613782,55.372581165047 + + + + +NR62 + +Small Square NR62 Boundry Box +#Line2 + + +1 + +-5.79348318617103,55.4149927851338 +-5.80211082648183,55.5046410600928 +-5.64413593702514,55.5094495901912 +-5.6358647729652,55.4197853240954 +-5.79348318617103,55.4149927851338 + + + + + +NR62 +#labelStyle + +-5.71889121225446,55.4622475769616 + + + + +NR63 + +Small Square NR63 Boundry Box +#Line2 + + +1 + +-5.80211169175734,55.5046500257059 +-5.81078795529893,55.5942960802577 +-5.65245455838832,55.5991206756268 +-5.64413676654992,55.5094585574072 +-5.80211169175734,55.5046500257059 + + + + + +NR63 +#labelStyle + +-5.72736525909556,55.5519118074559 + + + + +NR64 + +Small Square NR64 Boundry Box +#Line2 + + +1 + +-5.81078882545593,55.5943050456485 +-5.81951408724401,55.6839488743402 +-5.66082017199325,55.6887896080937 +-5.65245539259427,55.5991296426278 +-5.81078882545593,55.5943050456485 + + + + + +NR64 +#labelStyle + +-5.73588711984028,55.6415738513957 + + + + +NR65 + +Small Square NR65 Boundry Box +#Line2 + + +1 + +-5.81951496232021,55.6839578395081 +-5.82828960129852,55.7735994368258 +-5.66923314142877,55.7784563826585 +-5.66082101091654,55.6887985748791 +-5.81951496232021,55.6839578395081 + + + + + +NR65 +#labelStyle + +-5.74445716384852,55.7312337035894 + + + + +NR66 + +Small Square NR66 Boundry Box +#Line2 + + +1 + +-5.82829048133201,55.7736084017702 +-5.83711488042364,55.8632477621379 +-5.67769383410382,55.8681209943319 +-5.66923398510596,55.7784653492278 +-5.82829048133201,55.7736084017702 + + + + + +NR66 +#labelStyle + +-5.753075764355,55.8208913587867 + + + + +NR67 + +Small Square NR67 Boundry Box +#Line2 + + +1 + +-5.83711576545292,55.8632567268584 +-5.84599031161228,55.952893844637 +-5.68620262129744,55.9577834380678 +-5.67769468257183,55.8681299606848 +-5.83711576545292,55.8632567268584 + + + + + +NR67 +#labelStyle + +-5.76174329851986,55.9105468116779 + + + + +NR68 + +Small Square NR68 Boundry Box +#Line2 + + +1 + +-5.84599120167625,55.9529028091329 +-5.85491628594193,56.0425376786193 +-5.69475987820951,56.0474437087619 +-5.6862034745936,55.9577924042036 +-5.84599120167625,55.9529028091329 + + + + + +NR68 +#labelStyle + +-5.77046014748004,56.0002000568927 + + + + +NR69 + +Small Square NR69 Boundry Box +#Line2 + + +1 + +-5.85491718107991,56.0425466428901 +-5.86389319862839,56.132179258316 +-5.70336598401236,56.1371018012514 +-5.69476073637154,56.0474526746802 +-5.85491718107991,56.0425466428901 + + + + + +NR69 +#labelStyle + +-5.7792266964015,56.0898510889994 + + + + +NR70 + +Small Square NR70 Boundry Box +#Line2 + + +1 + +-5.61944356745395,55.2404328984892 +-5.62762250518853,55.3301014474719 +-5.47031274290719,55.3346758565736 +-5.4624866843018,55.2449921271169 +-5.61944356745395,55.2404328984892 + + + + + +NR70 +#labelStyle + +-5.54495891737677,55.2875807973343 + + + + +NR71 + +Small Square NR71 Boundry Box +#Line2 + + +1 + +-5.62762332545444,55.3301104151167 +-5.635848182325,55.4197768258238 +-5.47818353644796,55.4243664853491 +-5.47031352778344,55.3346848257401 +-5.62762332545444,55.3301104151167 + + + + + +NR71 +#labelStyle + +-5.55298466996585,55.3772649377978 + + + + +NR72 + +Small Square NR72 Boundry Box +#Line2 + + +1 + +-5.63584900720085,55.4197857932545 +-5.64412013559155,55.5094500609159 +-5.48609862187297,55.51405503984 +-5.47818432573648,55.4243754543083 +-5.63584900720085,55.4197857932545 + + + + + +NR72 +#labelStyle + +-5.56105553403123,55.4669469721219 + + + + +NR73 + +Small Square NR73 Boundry Box +#Line2 + + +1 + +-5.64412096511275,55.5094590281321 +-5.65243872108215,55.5991211479244 +-5.49405834014901,55.6037415157687 +-5.48609941560766,55.5140640085916 +-5.64412096511275,55.5094590281321 + + + + + +NR73 +#labelStyle + +-5.56917185630413,55.556626895784 + + + + +NR74 + +Small Square NR74 Boundry Box +#Line2 + + +1 + +-5.65243955528451,55.5991301149255 +-5.6608042986132,55.6887900819713 +-5.50206303580899,55.6934259088088 +-5.49405913836416,55.6037504843122 +-5.65243955528451,55.5991301149255 + + + + + +NR74 +#labelStyle + +-5.57733398713665,55.6463047042107 + + + + +NR75 + +Small Square NR75 Boundry Box +#Line2 + + +1 + +-5.66080513753289,55.6887990487569 +-5.66921723177201,55.7784568581233 +-5.51011305699838,55.7831082145845 +-5.50206383853923,55.6934348771438 +-5.66080513753289,55.6887990487569 + + + + + +NR75 +#labelStyle + +-5.58554228054893,55.7359803927767 + + + + +NR76 + +Small Square NR76 Boundry Box +#Line2 + + +1 + +-5.66921807544556,55.7784658246929 +-5.67767788796594,55.8681214713913 +-5.51820875552236,55.8727884286697 +-5.5101138642787,55.7831171827105 +-5.66921807544556,55.7784658246929 + + + + + +NR76 +#labelStyle + +-5.59379709427688,55.8256539568043 + + + + +NR77 + +Small Square NR77 Boundry Box +#Line2 + + +1 + +-5.6776787364303,55.8681304377443 +-5.68618663847247,55.9577839167291 +-5.52635048689375,55.9624665465873 +-5.51820956738813,55.8727973965864 +-5.6776787364303,55.8681304377443 + + + + + +NR77 +#labelStyle + +-5.60209878982081,55.9153253915617 + + + + +NR78 + +Small Square NR78 Boundry Box +#Line2 + + +1 + +-5.68618749176495,55.957792882865 +-5.69474385848989,56.0474441890325 +-5.53453861038169,56.0521425638083 +-5.52635130338071,55.9624755142942 +-5.68618749176495,55.957792882865 + + + + + +NR78 +#labelStyle + +-5.61044773249475,56.0049946922632 + + + + +NR79 + +Small Square NR79 Boundry Box +#Line2 + + +1 + +-5.69474471664821,56.0474531549509 +-5.70334992718891,56.1371022831386 +-5.54277348906104,56.1418164757506 +-5.53453943152595,56.0521515313048 +-5.69474471664821,56.0474531549509 + + + + + +NR79 +#labelStyle + +-5.61884429147653,56.0946618540674 + + + + +NR80 + +Small Square NR80 Boundry Box +#Line2 + + +1 + +-5.4624709848303,55.2449925730032 +-5.4702970081273,55.3346763039447 +-5.31294329925318,55.3390483801854 +-5.30547048896938,55.2493501369493 +-5.4624709848303,55.2449925730032 + + + + + +NR80 +#labelStyle + +-5.38778796786013,55.2920470610214 + + + + +NR81 + +Small Square NR81 Boundry Box +#Line2 + + +1 + +-5.47029779300002,55.3346852731113 +-5.47816776615904,55.4243669342118 +-5.32045883629722,55.428753589651 +-5.31294404870267,55.3390573508066 +-5.47029779300002,55.3346852731113 + + + + + +NR81 +#labelStyle + +-5.39545961803869,55.3817460843268 + + + + +NR82 + +Small Square NR82 Boundry Box +#Line2 + + +1 + +-5.478168555444,55.4243759031711 +-5.4860828158764,55.5140554902011 +-5.32801667726121,55.5184567908117 +-5.32045958996093,55.4287625600715 +-5.478168555444,55.4243759031711 + + + + + +NR82 +#labelStyle + +-5.40317440098592,55.4714430687094 + + + + +NR83 + +Small Square NR83 Boundry Box +#Line2 + + +1 + +-5.48608360960751,55.5140644589529 +-5.49404249824465,55.603741967635 +-5.33561714793756,55.6081579799124 +-5.32801743517155,55.5184657610312 +-5.48608360960751,55.5140644589529 + + + + + +NR83 +#labelStyle + +-5.41093264835882,55.5611380101783 + + + + +NR84 + +Small Square NR84 Boundry Box +#Line2 + + +1 + +-5.4940432964562,55.6037509361787 +-5.50204715779518,55.6934263621871 +-5.3432605775277,55.6978571531549 +-5.33561791012727,55.6081669499306 +-5.4940432964562,55.6037509361787 + + + + + +NR84 +#labelStyle + +-5.41873469527961,55.6508309046973 + + + + +NR85 + +Small Square NR85 Boundry Box +#Line2 + + +1 + +-5.50204796052179,55.6934353305223 +-5.51009714267189,55.7831086694818 +-5.35094729868656,55.7875543066968 +-5.34326134402988,55.6978661229713 +-5.50204796052179,55.6934353305223 + + + + + +NR85 +#labelStyle + +-5.42658088038077,55.7405217481838 + + + + +NR86 + +Small Square NR86 Boundry Box +#Line2 + + +1 + +-5.51009794994857,55.783117637608 +-5.51819280467841,55.8727888850929 +-5.35867764756765,55.8772494366512 +-5.35094806953464,55.787563276311 +-5.51009794994857,55.783117637608 + + + + + +NR86 +#labelStyle + +-5.43447154585089,55.8302105365082 + + + + +NR87 + +Small Square NR87 Boundry Box +#Line2 + + +1 + +-5.51819361654052,55.8727978530098 +-5.52633449932599,55.9624670045435 +-5.36645196386892,55.9669425390855 +-5.35867842279543,55.8772584060628 +-5.51819361654052,55.8727978530098 + + + + + +NR87 +#labelStyle + +-5.44240703748112,55.9198972654931 + + + + +NR88 + +Small Square NR88 Boundry Box +#Line2 + + +1 + +-5.52633531580926,55.9624759722505 +-5.53452258588216,56.0521430233045 +-5.37427059087932,56.0566336100211 +-5.36645274351056,55.9669515082942 +-5.52633531580926,55.9624759722505 + + + + + +NR88 +#labelStyle + +-5.45038770471244,56.0095819309122 + + + + +NR89 + +Small Square NR89 Boundry Box +#Line2 + + +1 + +-5.53452340702272,56.0521519908011 +-5.54275742742018,56.141816936794 +-5.38213387552604,56.1463226454322 +-5.37427137496931,56.0566425790265 +-5.53452340702272,56.0521519908011 + + + + + +NR89 +#labelStyle + +-5.45841390068367,56.09926452849 + + + + +NR90 + +Small Square NR90 Boundry Box +#Line2 + + +1 + +-5.30545478523402,55.249350562661 +-5.31292756017679,55.3390488073151 +-5.15553187744862,55.3432184308174 +-5.14841263454001,55.2535063428866 +-5.30545478523402,55.249350562661 + + + + + +NR90 +#labelStyle + +-5.23057421714827,55.2963112456486 + + + + +NR91 + +Small Square NR91 Boundry Box +#Line2 + + +1 + +-5.31292830962274,55.3390577779364 +-5.3204430616788,55.4287540182051 +-5.16269183558854,55.4329375488338 +-5.15553259143927,55.3432274028264 +-5.31292830962274,55.3390577779364 + + + + + +NR91 +#labelStyle + +-5.23789143669981,55.3860244815696 + + + + +NR92 + +Small Square NR92 Boundry Box +#Line2 + + +1 + +-5.32044381533895,55.4287629886258 +-5.32800086690181,55.5184572207967 +-5.16989210631903,55.522654721514 +-5.16269255359503,55.4329465206484 +-5.32044381533895,55.4287629886258 + + + + + +NR92 +#labelStyle + +-5.2452498068918,55.4757357427892 + + + + +NR93 + +Small Square NR93 Boundry Box +#Line2 + + +1 + +-5.32800162480856,55.5184661910164 +-5.33560130163668,55.6081584113349 +-5.17713300021435,55.6123699456019 +-5.16989282837226,55.5226636931339 +-5.32800162480856,55.5184661910164 + + + + + +NR93 +#labelStyle + +-5.25264964426262,55.565445025825 + + + + +NR94 + +Small Square NR94 Boundry Box +#Line2 + + +1 + +-5.33560206382279,55.6081673813532 +-5.34324469508332,55.6978575860213 +-5.18441483110005,55.7020832178035 +-5.17713372634554,55.6123789170268 +-5.33560206382279,55.6081673813532 + + + + + +NR94 +#labelStyle + +-5.26009126865951,55.655152327154 + + + + +NR95 + +Small Square NR95 Boundry Box +#Line2 + + +1 + +-5.34324546158188,55.6978665558378 +-5.3509313798951,55.7875547410138 +-5.19173791609539,55.791794534786 +-5.18441556134074,55.7020921890331 +-5.34324546158188,55.6978665558378 + + + + + +NR95 +#labelStyle + +-5.26757500328155,55.7448576432125 + + + + +NR96 + +Small Square NR96 Boundry Box +#Line2 + + +1 + +-5.35093215073954,55.7875637106282 +-5.35866169222398,55.8772498724254 +-5.1991025756564,55.8815038931771 +-5.19173865047746,55.7918035058198 +-5.35093215073954,55.7875637106282 + + + + + +NR96 +#labelStyle + +-5.27510117472345,55.8345609703951 + + + + +NR97 + +Small Square NR97 Boundry Box +#Line2 + + +1 + +-5.3586624674481,55.8772588418372 +-5.36643597176632,55.9669429763237 +-5.20650913361962,55.9712112895644 +-5.19910331421206,55.8815128640149 +-5.3586624674481,55.8772588418372 + + + + + +NR97 +#labelStyle + +-5.28267011301998,55.924262305054 + + + + +NR98 + +Small Square NR98 Boundry Box +#Line2 + + +1 + +-5.36643675140426,55.9669519455325 +-5.37425456180944,56.05663404873 +-5.21395791724648,56.0609167204948 +-5.20650987638142,55.9712202602058 +-5.36643675140426,55.9669519455325 + + + + + +NR98 +#labelStyle + +-5.29028215169113,56.0139616434982 + + + + +NR99 + +Small Square NR99 Boundry Box +#Line2 + + +1 + +-5.37425534589573,56.0566430177355 +-5.38211780927896,56.1463230856185 +-5.22144925726851,56.1506201824735 +-5.21395866424734,56.0609256909395 +-5.37425534589573,56.0566430177355 + + + + + +NR99 +#labelStyle + +-5.29793762778791,56.1036589819929 + + + + + +NS + +Large Square NS Boundry Box +#Line1 + + +1 + +-5.14839692673676,55.2535067484122 +-5.22143318662679,56.1506206017904 +-3.61259531036246,56.1820968379372 +-3.57597576314309,55.2839469119716 +-5.14839692673676,55.2535067484122 + + + + + +NS00 + +Small Square NS00 Boundry Box +#Line2 + + +1 + +-5.14839692673676,55.2535067484122 +-5.15551613427318,55.343218837694 +-4.99808045374977,55.3471858940751 +-4.99131508236303,55.2574606313352 +-5.14839692673676,55.2535067484122 + + + + + +NS00 +#labelStyle + +-5.07331963239546,55.3003732344836 + + + + +NS01 + +Small Square NS01 Boundry Box +#Line2 + + +1 + +-5.15551684826029,55.343227809703 +-5.16267605683959,55.4329379570675 +-5.00488452564035,55.4369182476944 +-4.99808113225102,55.3471948674046 +-5.15551684826029,55.343227809703 + + + + + +NS01 +#labelStyle + +-5.08028210806743,55.3901000119702 + + + + +NS02 + +Small Square NS02 Boundry Box +#Line2 + + +1 + +-5.16267677484251,55.4329469288823 +-5.16987629179727,55.5226551311111 +-5.01172691558276,55.5266487159272 +-5.00488520795874,55.4369272208355 +-5.16267677484251,55.4329469288823 + + + + + +NS02 +#labelStyle + +-5.08728374898543,55.4798248759736 + + + + +NS03 + +Small Square NS03 Boundry Box +#Line2 + + +1 + +-5.16987701384692,55.5226641027311 +-5.17711714971897,55.6123703565686 +-5.01860791889135,55.6163772959928 +-5.01172760174766,55.5266576888796 +-5.16987701384692,55.5226641027311 + + + + + +NS03 +#labelStyle + +-5.09432485652685,55.5695478234959 + + + + +NS04 + +Small Square NS04 Boundry Box +#Line2 + + +1 + +-5.17711787584655,55.6123793279936 +-5.18439894442868,55.702083630146 +-5.02552783397342,55.7061039850775 +-5.01860860893247,55.6163862687563 +-5.17711787584655,55.6123793279936 + + + + + +NS04 +#labelStyle + +-5.10140573522085,55.6592688515042 + + + + +NS05 + +Small Square NS05 Boundry Box +#Line2 + + +1 + +-5.18439967466574,55.7020926013757 +-5.19172199304412,55.7917949485106 +-5.03248696236951,55.7958287803337 +-5.02552852792074,55.7061129576518 +-5.18439967466574,55.7020926013757 + + + + + +NS05 +#labelStyle + +-5.10852669278935,55.7489879569293 + + + + +NS06 + +Small Square NS06 Boundry Box +#Line2 + + +1 + +-5.19172272742254,55.7918039195445 +-5.19908661601974,55.8815043082901 +-5.03948560879442,55.8855516788795 +-5.03248766025334,55.7958377527184 +-5.19172272742254,55.7918039195445 + + + + + +NS06 +#labelStyle + +-5.11568804018879,55.838705136666 + + + + +NS07 + +Small Square NS07 Boundry Box +#Line2 + + +1 + +-5.19908735457173,55.881513279128 +-5.20649313719049,55.9712117060722 +-5.04652408117884,55.9752726777981 +-5.0394863106454,55.8855606510744 +-5.19908735457173,55.881513279128 + + + + + +NS07 +#labelStyle + +-5.12289009165241,55.9284203875716 + + + + +NS08 + +Small Square NS08 Boundry Box +#Line2 + + +1 + +-5.20649387994861,55.9712206767138 +-5.21394188381621,56.0609171384039 +-5.05360269071162,56.0649917741368 +-5.04652478702793,55.9752816498029 +-5.20649387994861,55.9712206767138 + + + + + +NS08 +#labelStyle + +-5.13013316473333,56.0181337064656 + + + + +NS09 + +Small Square NS09 Boundry Box +#Line2 + + +1 + +-5.21394263081336,56.0609261088488 +-5.22143318662679,56.1506206017904 +-5.06072175188273,56.1547089649069 +-5.05360340059009,56.0650007459512 +-5.21394263081336,56.0609261088488 + + + + + +NS09 +#labelStyle + +-5.13741758034821,56.1078450901289 + + + + +NS10 + +Small Square NS10 Boundry Box +#Line2 + + +1 + +-4.9912993706882,55.2574610166635 +-4.99806470667307,55.3471862806874 +-4.84059100757971,55.3509506610702 +-4.83417979691417,55.2612128941692 +-4.9912993706882,55.2574610166635 + + + + + +NS10 +#labelStyle + +-4.91602618397884,55.304232916276 + + + + +NS11 + +Small Square NS11 Boundry Box +#Line2 + + +1 + +-4.99806538517077,55.347195254017 +-5.00486874296016,55.4369186355965 +-4.84703890097898,55.4406955765744 +-4.84059165056247,55.3509596356531 +-4.99806538517077,55.347195254017 + + + + + +NS11 +#labelStyle + +-4.92263361752438,55.3939725634926 + + + + +NS12 + +Small Square NS12 Boundry Box +#Line2 + + +1 + +-5.00486942527498,55.4369276087378 +-5.01171109709947,55.526649105125 +-4.85352311483833,55.5304386636153 +-4.84703954757988,55.4407045509745 +-5.00486942527498,55.4369276087378 + + + + + +NS12 +#labelStyle + +-4.92927822781041,55.4837103554331 + + + + +NS13 + +Small Square NS13 Boundry Box +#Line2 + + +1 + +-5.01171178326078,55.5266580780776 +-5.01859206440383,55.6163776864923 +-4.86004392917252,55.6201799198637 +-4.85352376508523,55.5304476378325 +-5.01171178326078,55.5266580780776 + + + + + +NS13 +#labelStyle + +-4.93596030101292,55.5734462895608 + + + + +NS14 + +Small Square NS14 Boundry Box +#Line2 + + +1 + +-5.01859275444133,55.6163866592559 +-5.02551194327897,55.7061043768846 +-4.86660162693021,55.7099193429623 +-4.86004458309357,55.6201888938977 +-5.01859275444133,55.6163866592559 + + + + + +NS14 +#labelStyle + +-4.94268012630192,55.6631803633085 + + + + +NS15 + +Small Square NS15 Boundry Box +#Line2 + + +1 + +-5.02551263722266,55.7061133494589 +-5.0324710352639,55.7958291734543 +-4.87319649403226,55.7996569305244 +-4.86660228455385,55.7099283168128 +-5.02551263722266,55.7061133494589 + + + + + +NS15 +#labelStyle + +-4.94943799588052,55.7529125740781 + + + + +NS16 + +Small Square NS16 Boundry Box +#Line2 + + +1 + +-5.03247173314409,55.7958381458391 +-5.03946964507184,55.8855520733197 +-4.87982881941062,55.889392680134 +-4.87319715538723,55.7996659041913 +-5.03247173314409,55.7958381458391 + + + + + +NS16 +#labelStyle + +-4.95623420502449,55.8426429192397 + + + + +NS17 + +Small Square NS17 Boundry Box +#Line2 + + +1 + +-5.03947034691915,55.8855610455147 +-5.04650808063188,55.9752730735639 +-4.88649889504785,55.979126589345 +-4.87982948452597,55.889401653617 +-5.03947034691915,55.8855610455147 + + + + + +NS17 +#labelStyle + +-4.96306905212256,55.9323713961312 + + + + +NS18 + +Small Square NS18 Boundry Box +#Line2 + + +1 + +-5.04650878647727,55.9752820455688 +-5.05358665313125,56.0649921712344 +-4.89320701601724,56.0688586556803 +-4.88649956395292,55.9791355626438 +-5.04650878647727,55.9752820455688 + + + + + +NS18 +#labelStyle + +-4.96994283871728,56.0220980020578 + + + + +NS19 + +Small Square NS19 Boundry Box +#Line2 + + +1 + +-5.05358736300601,56.0650011430489 +-5.06070567705831,56.1547093633425 +-4.89995348052358,56.1585888766318 +-4.89320768874171,56.0688676287947 +-5.05358736300601,56.0650011430489 + + + + + +NS19 +#labelStyle + +-4.97685586954658,56.1118227342911 + + + + +NS20 + +Small Square NS20 Boundry Box +#Line2 + + +1 + +-4.83416408156434,55.2612132592897 +-4.84057525679985,55.3509510274076 +-4.68306552137403,55.3545126284315 +-4.67700874564314,55.2647630287416 +-4.83416408156434,55.2612132592897 + + + + + +NS20 +#labelStyle + +-4.75869584534546,55.3078901852678 + + + + +NS21 + +Small Square NS21 Boundry Box +#Line2 + + +1 + +-4.84057589977906,55.3509600019906 +-4.84702311456716,55.4406959441343 +-4.68915695918236,55.4442694313712 +-4.68306612881074,55.3545216042004 +-4.84057589977906,55.3509600019906 + + + + + +NS21 +#labelStyle + +-4.76494795356318,55.3976420296318 + + + + +NS22 + +Small Square NS22 Boundry Box +#Line2 + + +1 + +-4.84702376116448,55.4407049185345 +-4.85350729259464,55.5304390324031 +-4.69528271696303,55.5340244597371 +-4.68915757003792,55.4442784069628 +-4.84702376116448,55.4407049185345 + + + + + +NS22 +#labelStyle + +-4.77123524706043,55.4873920739084 + + + + +NS23 + +Small Square NS23 Boundry Box +#Line2 + + +1 + +-4.85350794283795,55.5304480066205 +-4.86002807089553,55.6201802898852 +-4.70144305939348,55.6237777116276 +-4.69528333126378,55.5340334351511 +-4.85350794283795,55.5304480066205 + + + + + +NS23 +#labelStyle + +-4.77755799677336,55.5771403159983 + + + + +NS24 + +Small Square NS24 Boundry Box +#Line2 + + +1 + +-4.86002872481297,55.6201892639193 +-4.86658573241693,55.709919714223 +-4.70763825392547,55.7135291851174 +-4.70144367716603,55.6237866868638 +-4.86002872481297,55.6201892639193 + + + + + +NS24 +#labelStyle + +-4.78391647647385,55.6668867537764 + + + + +NS25 + +Small Square NS25 Boundry Box +#Line2 + + +1 + +-4.86658639003694,55.7099286880737 +-4.87318056307814,55.79965730303 +-4.71386857082126,55.8032788782568 +-4.70763887519669,55.7135381601758 +-4.86658639003694,55.7099286880737 + + + + + +NS25 +#labelStyle + +-4.79031096280653,55.7566313850909 + + + + +NS26 + +Small Square NS26 Boundry Box +#Line2 + + +1 + +-4.87318122442946,55.799666276697 +-4.87981285180953,55.8893930538902 +-4.72013428319045,55.8930267890709 +-4.71386919561832,55.803287853137 +-4.87318122442946,55.799666276697 + + + + + +NS26 +#labelStyle + +-4.79674173532629,55.8463742077633 + + + + +NS27 + +Small Square NS27 Boundry Box +#Line2 + + +1 + +-4.8798135169212,55.8894020273733 +-4.88648289059206,55.9791269643576 +-4.72643566702734,55.9827729155593 +-4.72013491154081,55.8930357637728 +-4.8798135169212,55.8894020273733 + + + + + +NS27 +#labelStyle + +-4.80320907653644,55.9361152195874 + + + + +NS28 + +Small Square NS28 Boundry Box +#Line2 + + +1 + +-4.88648355949344,55.9791359376565 +-4.89319097449741,56.0688590319551 +-4.7327730012489,56.0725172556957 +-4.72643629895874,55.9827818900827 +-4.88648355949344,55.9791359376565 + + + + + +NS28 +#labelStyle + +-4.80971327192744,56.0258544183289 + + + + +NS29 + +Small Square NS29 Boundry Box +#Line2 + + +1 + +-4.89319164721816,56.0688680050696 +-4.89993740172874,56.1585892541747 +-4.73914656773336,56.1622598074269 +-4.7327736367894,56.0725262300403 +-4.89319164721816,56.0688680050696 + + + + + +NS29 +#labelStyle + +-4.8162546100163,56.1155918017251 + + + + +NS30 + +Small Square NS30 Boundry Box +#Line2 + + +1 + +-4.6769930268152,55.2647633736444 +-4.68304976708939,55.3545129744839 +-4.52550598042596,55.3578716983148 +-4.51980389882077,55.2681109378941 +-4.6769930268152,55.2647633736444 + + + + + +NS30 +#labelStyle + +-4.60133059285871,55.311344941204 + + + + +NS31 + +Small Square NS31 Boundry Box +#Line2 + + +1 + +-4.68305037452255,55.3545219502529 +-4.68914116923881,55.4442697785787 +-4.53124070072319,55.4476397135482 +-4.52550655229056,55.3578806752024 +-4.68305037452255,55.3545219502529 + + + + + +NS31 +#labelStyle + +-4.6072271076305,55.4011083094243 + + + + +NS32 + +Small Square NS32 Boundry Box +#Line2 + + +1 + +-4.6891417800908,55.4442787541704 +-4.69526689116038,55.5340248081047 +-4.53700773776658,55.5374060050564 +-4.53124127580708,55.4476486902636 +-4.6891417800908,55.4442787541704 + + + + + +NS32 +#labelStyle + +-4.61315681342171,55.4908699297204 + + + + +NS33 + +Small Square NS33 Boundry Box +#Line2 + + +1 + +-4.69526750545754,55.5340337835189 +-4.70142719753001,55.6237780611607 +-4.54280734086059,55.6271705713419 +-4.53700831609457,55.5374149815993 +-4.69526750545754,55.5340337835189 + + + + + +NS33 +#labelStyle + +-4.61911996589224,55.5806298004069 + + + + +NS34 + +Small Square NS34 Boundry Box +#Line2 + + +1 + +-4.70142781529894,55.6237870363971 +-4.7076223557979,55.7135295358214 +-4.54863976192383,55.7169334108872 +-4.54280792245774,55.6271795477122 +-4.70142781529894,55.6237870363971 + + + + + +NS34 +#labelStyle + +-4.62511682337889,55.6703879197764 + + + + +NS35 + +Small Square NS35 Boundry Box +#Line2 + + +1 + +-4.70762297706548,55.7135385108799 +-4.71385263622475,55.803279230137 +-4.5545052555232,55.8066945221548 +-4.54864034681547,55.7169423870848 +-4.70762297706548,55.7135385108799 + + + + + +NS35 +#labelStyle + +-4.63114764693026,55.7601442860995 + + + + +NS36 + +Small Square NS36 Boundry Box +#Line2 + + +1 + +-4.71385326101815,55.8032882050173 +-4.72011831191857,55.8930271421327 +-4.56040407890857,55.8964539035864 +-4.55450584373491,55.8067034981795 +-4.71385326101815,55.8032882050173 + + + + + +NS36 +#labelStyle + +-4.63721270034219,55.8498988976244 + + + + +NS37 + +Small Square NS37 Boundry Box +#Line2 + + +1 + +-4.72011894026526,55.8930361168347 +-4.72641965887207,55.9827732698082 +-4.56633649204799,55.9862115536024 +-4.5604046704662,55.896462879438 +-4.72011894026526,55.8930361168347 + + + + + +NS37 +#labelStyle + +-4.64331225019383,55.9396517525758 + + + + +NS38 + +Small Square NS38 Boundry Box +#Line2 + + +1 + +-4.72642029079978,55.9827822443316 +-4.73275695600059,56.072517611137 +-4.57230275766358,56.0759674706018 +-4.5663370869777,55.9862205292808 +-4.72642029079978,55.9827822443316 + + + + + +NS38 +#labelStyle + +-4.64944656588423,56.0294028491553 + + + + +NS39 + +Small Square NS39 Boundry Box +#Line2 + + +1 + +-4.73275759153736,56.0725265854818 +-4.73913048518072,56.1622601640663 +-4.57830314126778,56.1657216529613 +-4.57230335599176,56.0759764461068 +-4.73275759153736,56.0725265854818 + + + + + +NS39 +#labelStyle + +-4.65561591966945,56.1191521855402 + + + + +NS40 + +Small Square NS40 Boundry Box +#Line2 + + +1 + +-4.51978817671189,55.2681112625696 +-4.52549022283521,55.3578720240728 +-4.36791437273089,55.3610277784128 +-4.36256722938549,55.2712565299664 +-4.51978817671189,55.2681112625696 + + + + + +NS40 +#labelStyle + +-4.44393240564408,55.3145970893423 + + + + +NS41 + +Small Square NS41 Boundry Box +#Line2 + + +1 + +-4.52549079469625,55.3578810009605 +-4.5312249074481,55.4476400403937 +-4.37329212881144,55.4508063301443 +-4.36791490899884,55.3610367563517 +-4.52549079469625,55.3578810009605 + + + + + +NS41 +#labelStyle + +-4.44947307397094,55.4043713074578 + + + + +NS42 + +Small Square NS42 Boundry Box +#Line2 + + +1 + +-4.53122548252842,55.4476490171091 +-4.53699190860669,55.5374063329942 +-4.37870019583162,55.5405832059523 +-4.37329266809886,55.4508153079157 +-4.53122548252842,55.4476490171091 + + + + + +NS42 +#labelStyle + +-4.4550449364148,55.4941438267806 + + + + +NS43 + +Small Square NS43 Boundry Box +#Line2 + + +1 + +-4.53699248693108,55.5374153095373 +-4.54279147561392,55.627170900377 +-4.38413880768934,55.6303584047189 +-4.3787007381618,55.540592183556 +-4.53699248693108,55.5374153095373 + + + + + +NS43 +#labelStyle + +-4.46064823332495,55.5839146460147 + + + + +NS44 + +Small Square NS44 Boundry Box +#Line2 + + +1 + +-4.54279205720745,55.6271798767474 +-4.54862386038682,55.7169337410247 +-4.3896082007359,55.7201319253106 +-4.38413935308578,55.6303673821549 +-4.54279205720745,55.6271798767474 + + + + + +NS44 +#labelStyle + +-4.46628320756817,55.6736837638469 + + + + +NS45 + +Small Square NS45 Boundry Box +#Line2 + + +1 + +-4.54862444527482,55.7169427172224 +-4.55448931749073,55.8066948533997 +-4.39510861380812,55.8099037665773 +-4.38960874922236,55.7201409025787 +-4.54862444527482,55.7169427172224 + + + + + +NS45 +#labelStyle + +-4.47195010456154,55.7634511789455 + + + + +NS46 + +Small Square NS46 Boundry Box +#Line2 + + +1 + +-4.55448990569878,55.8067038294245 +-4.56038810417393,55.8964542359438 +-4.4006402882609,55.8996739273527 +-4.3951091654086,55.8099127436775 +-4.55448990569878,55.8067038294245 + + + + + +NS46 +#labelStyle + +-4.47764917230589,55.8532168899607 + + + + +NS47 + +Small Square NS47 Boundry Box +#Line2 + + +1 + +-4.56038869572789,55.8964632117955 +-4.56632048040289,55.9862118870775 +-4.40620346800033,55.9894424064529 +-4.40064084299968,55.8996829042847 +-4.56038869572789,55.8964632117955 + + + + + +NS47 +#labelStyle + +-4.4833806614196,55.9429808955237 + + + + +NS48 + +Small Square NS48 Boundry Box +#Line2 + + +1 + +-4.56632107532889,55.986220862756 +-4.57228670889806,56.0759678051997 +-4.41179839951722,56.0792092026768 +-4.40620402590192,55.9894513832167 +-4.56632107532889,55.986220862756 + + + + + +NS48 +#labelStyle + +-4.48914482517308,56.0327431942463 + + + + +NS49 + +Small Square NS49 Boundry Box +#Line2 + + +1 + +-4.57228730722252,56.0759767807048 +-4.57828705517028,56.1657219886872 +-4.41742533192135,56.1689743148054 +-4.41179896060641,56.0792181792722 +-4.57228730722252,56.0759767807048 + + + + + +NS49 +#labelStyle + +-4.49494191952377,56.1225037847206 + + + + +NS50 + +Small Square NS50 Boundry Box +#Line2 + + +1 + +-4.3625515041931,55.2712568344058 +-4.36789861203297,55.3610280838674 +-4.21029268883039,55.3639807819639 +-4.20530071278931,55.2741997188056 +-4.3625515041931,55.2712568344058 + + + + + +NS50 +#labelStyle + +-4.2865032654344,55.3176465404623 + + + + +NS51 + +Small Square NS51 Boundry Box +#Line2 + + +1 + +-4.36789914829735,55.3610370618064 +-4.37327633240526,55.4508066366187 +-4.21531324923632,55.4537691937832 +-4.21029318947866,55.3639897608866 +-4.36789914829735,55.3610370618064 + + + + + +NS51 +#labelStyle + +-4.2916878494703,55.407430933881 + + + + +NS52 + +Small Square NS52 Boundry Box +#Line2 + + +1 + +-4.37327687168911,55.4508156143902 +-4.37868436351649,55.5405835134511 +-4.2203621123537,55.5435559744276 +-4.21531375270401,55.4537781725429 +-4.37327687168911,55.4508156143902 + + + + + +NS52 +#labelStyle + +-4.29690162823584,55.4972136746001 + + + + +NS53 + +Small Square NS53 Boundry Box +#Line2 + + +1 + +-4.37868490584307,55.540592491055 +-4.38412293926301,55.6303587132469 +-4.22543949664225,55.6333411231349 +-4.22036261866255,55.5435649530241 +-4.37868490584307,55.540592491055 + + + + + +NS53 +#labelStyle + +-4.30214482673734,55.5869947616897 + + + + +NS54 + +Small Square NS54 Boundry Box +#Line2 + + +1 + +-4.38412348465582,55.630367690683 +-4.38959229599456,55.7201322348724 +-4.23054562285393,55.7231246391307 +-4.22544000581422,55.6333501015681 +-4.38412348465582,55.630367690683 + + + + + +NS54 +#labelStyle + +-4.30741767233871,55.6767741942057 + + + + +NS55 + +Small Square NS55 Boundry Box +#Line2 + + +1 + +-4.38959284447738,55.7201412121406 +-4.39509267254639,55.8099040771778 +-4.23568071406293,55.8129065216283 +-4.23054613491121,55.7231336174006 +-4.38959284447738,55.7201412121406 + + + + + +NS55 +#labelStyle + +-4.31272039479219,55.7665519711904 + + + + +NS56 + +Small Square NS56 Boundry Box +#Line2 + + +1 + +-4.39509322414322,55.809913054278 +-4.40062431027182,55.8996742389964 +-4.2408449956961,55.9026867698279 +-4.23568122902794,55.8129154997348 +-4.39509322414322,55.809913054278 + + + + + +NS56 +#labelStyle + +-4.31805322626964,55.8563280916709 + + + + +NS57 + +Small Square NS57 Boundry Box +#Line2 + + +1 + +-4.40062486500692,55.8996832159285 +-4.40618745307531,55.9894427191448 +-4.24603869556389,55.9924653829165 +-4.2408455135915,55.902695747771 +-4.40062486500692,55.8996832159285 + + + + + +NS57 +#labelStyle + +-4.32341640139426,55.9461025546599 + + + + +NS58 + +Small Square NS58 Boundry Box +#Line2 + + +1 + +-4.4061880109732,55.9894516959087 +-4.41178234744607,56.0792095164217 +-4.25126204389175,56.0822423600677 +-4.24603921641259,55.992474360696 +-4.4061880109732,55.9894516959087 + + + + + +NS58 +#labelStyle + +-4.3288101572729,56.0358753591544 + + + + +NS59 + +Small Square NS59 Boundry Box +#Line2 + + +1 + +-4.41178290853153,56.0792184930172 +-4.41740924249221,56.1689746296082 +-4.25651527335208,56.1720177004408 +-4.2512625677169,56.0822513376835 +-4.41178290853153,56.0792184930172 + + + + + +NS59 +#labelStyle + +-4.33423473352877,56.125646504136 + + + + +NS60 + +Small Square NS60 Boundry Box +#Line2 + + +1 + +-4.20528498471106,55.2742000030005 +-4.21027692522446,55.3639810671067 +-4.05264292165563,55.3667306277606 +-4.04800632684326,55.2769404237739 +-4.20528498471106,55.2742000030005 + + + + + +NS60 +#labelStyle + +-4.12904515641461,55.3204932108743 + + + + +NS61 + +Small Square NS61 Boundry Box +#Line2 + + +1 + +-4.21027742586917,55.3639900460295 +-4.21529744989976,55.4537694798782 +-4.05730607020776,55.4565282226822 +-4.05264338666272,55.3667396075996 +-4.21027742586917,55.3639900460295 + + + + + +NS61 +#labelStyle + +-4.13387343349832,55.410287104412 + + + + +NS62 + +Small Square NS62 Boundry Box +#Line2 + + +1 + +-4.21529795336387,55.4537784586379 +-4.22034627708557,55.543556261479 +-4.06199551098059,55.5463242281185 +-4.05730653783399,55.4565372023622 +-4.21529795336387,55.4537784586379 + + + + + +NS62 +#labelStyle + +-4.13872890359722,55.5000793882993 + + + + +NS63 + +Small Square NS63 Boundry Box +#Line2 + + +1 + +-4.22034678339082,55.5435652400756 +-4.22542362524006,55.6333414111471 +-4.06671144696616,55.6361186436389 +-4.06199598124616,55.5463332076395 +-4.22034678339082,55.5435652400756 + + + + + +NS63 +#labelStyle + +-4.14361177634438,55.5898700619479 + + + + +NS64 + +Small Square NS64 Boundry Box +#Line2 + + +1 + +-4.22542413440841,55.6333503895805 +-4.23052971511365,55.7231249281082 +-4.0714540832871,55.725911468804 +-4.06671191989147,55.636127623001 +-4.22542413440841,55.6333503895805 + + + + + +NS64 +#labelStyle + +-4.14852226357005,55.6796591247594 + + + + +NS65 + +Small Square NS65 Boundry Box +#Line2 + + +1 + +-4.23053022716728,55.7231339063782 +-4.23566476977892,55.8129068115755 +-4.07622362722452,55.8157027031653 +-4.07145455889277,55.725920448007 +-4.23053022716728,55.7231339063782 + + + + + +NS65 +#labelStyle + +-4.15346057933035,55.7694465761245 + + + + +NS66 + +Small Square NS66 Boundry Box +#Line2 + + +1 + +-4.23566528474026,55.8129157896821 +-4.24082901466114,55.9026870607492 +-4.08102028824632,55.905492346265 +-4.0762241055314,55.8157116822092 +-4.23566528474026,55.8129157896821 + + + + + +NS66 +#labelStyle + +-4.15842693993645,55.8592324154232 + + + + +NS67 + +Small Square NS67 Boundry Box +#Line2 + + +1 + +-4.24082953255286,55.9026960386923 +-4.24602267756917,55.9924656748164 +-4.08584427803591,55.9952803976357 +-4.08102076927545,55.9055013251498 +-4.24082953255286,55.9026960386923 + + + + + +NS67 +#labelStyle + +-4.16342156398411,55.9490166420244 + + + + +NS68 + +Small Square NS68 Boundry Box +#Line2 + + +1 + +-4.24602319841416,55.992474652596 +-4.2512459887268,56.0822426529507 +-4.09069581052146,56.0850668567999 +-4.08584476180858,55.9952893763612 +-4.24602319841416,55.992474652596 + + + + + +NS68 +#labelStyle + +-4.16844467238382,56.038799255285 + + + + +NS69 + +Small Square NS69 Boundry Box +#Line2 + + +1 + +-4.25124651254822,56.0822516305667 +-4.2564991808048,56.1720179943115 +-4.09557510190554,56.1748517232699 +-4.09069629705917,56.0850758353662 +-4.25124651254822,56.0822516305667 + + + + + +NS69 +#labelStyle + +-4.17349648839133,56.1285802545505 + + + + +NS70 + +Small Square NS70 Boundry Box +#Line2 + + +1 + +-4.04799059607705,55.2769406877167 +-4.05262715534111,55.3667308925837 +-3.8949670663704,55.3692772401578 +-3.89068605156236,55.2794785697572 +-4.04799059607705,55.2769406877167 + + + + + +NS70 +#labelStyle + +-3.97156006506594,55.3231370224274 + + + + +NS71 + +Small Square NS71 Boundry Box +#Line2 + + +1 + +-4.05262762034463,55.3667398724228 +-4.05729026814175,55.4565284883897 +-3.89927260219734,55.4590833406597 +-3.89496749571632,55.3692862208454 +-4.05262762034463,55.3667398724228 + + + + + +NS71 +#labelStyle + +-3.97603182775086,55.4129397403469 + + + + +NS72 + +Small Square NS72 Boundry Box +#Line2 + + +1 + +-4.0572907357644,55.4565374680698 +-4.06197967296194,55.5463244947145 +-3.90360241765123,55.5488878903019 +-3.89927303396192,55.4590923211922 +-4.0572907357644,55.4565374680698 + + + + + +NS72 +#labelStyle + +-3.98052877956776,55.5027408886156 + + + + +NS73 + +Small Square NS73 Boundry Box +#Line2 + + +1 + +-4.0619801432239,55.5463334742356 +-4.06669557279216,55.6361189111274 +-3.90795670022901,55.6386908889611 +-3.90360285185312,55.5488968706794 +-4.0619801432239,55.5463334742356 + + + + + +NS73 +#labelStyle + +-3.98505111474822,55.5925404669629 + + + + +NS74 + +Small Square NS74 Boundry Box +#Line2 + + +1 + +-4.06669604571385,55.6361278904895 +-4.07143817275348,55.7259117371891 +-3.9123356393961,55.7284923365082 +-3.90795713688704,55.6386998691834 +-4.06669604571385,55.6361278904895 + + + + + +NS74 +#labelStyle + +-3.98959902956013,55.6823384751113 + + + + +NS75 + +Small Square NS75 Boundry Box +#Line2 + + +1 + +-4.07143864835551,55.7259207163922 +-4.07620768012544,55.8157029724511 +-3.91673942661226,55.8182922328084 +-3.91233607852934,55.7285013165754 +-4.07143864835551,55.7259207163922 + + + + + +NS75 +#labelStyle + +-3.99417272233437,55.772134912776 + + + + +NS76 + +Small Square NS76 Boundry Box +#Line2 + + +1 + +-4.07620815842865,55.8157119514951 +-4.08100430437432,55.9054926164557 +-3.92116825535764,55.9080905777207 +-3.91673986823994,55.8183012127204 +-4.07620815842865,55.8157119514951 + + + + + +NS76 +#labelStyle + +-3.99877239349178,55.8619297796647 + + + + +NS77 + +Small Square NS77 Boundry Box +#Line2 + + +1 + +-4.08100478539977,55.9055015953405 +-4.08582825718194,55.9952806687354 +-3.92562232115942,55.9978873710979 +-3.92116869949921,55.9080995574776 +-4.08100478539977,55.9055015953405 + + + + + +NS77 +#labelStyle + +-4.00339824557063,55.9517230754773 + + + + +NS78 + +Small Square NS78 Boundry Box +#Line2 + + +1 + +-4.0858287409509,55.995289647461 +-4.09067975247482,56.0850671288128 +-3.93010182161882,56.0876826127862 +-3.92562276783455,55.9978963506996 +-4.0858287409509,55.995289647461 + + + + + +NS78 +#labelStyle + +-4.0080504832545,56.0415147999054 + + + + +NS79 + +Small Square NS79 Boundry Box +#Line2 + + +1 + +-4.0906802390088,56.0850761073792 +-4.09555900645389,56.1748519962002 +-3.93460695643846,56.1774763026248 +-3.93010227084736,56.0876915922328 +-4.0906802390088,56.0850761073792 + + + + + +NS79 +#labelStyle + +-4.01272931340061,56.1313049526325 + + + + +NS80 + +Small Square NS80 Boundry Box +#Line2 + + +1 + +-3.8906703183063,55.2794788134405 +-3.8949512975469,55.369277484654 +-3.73726712021361,55.3716205490799 +-3.73334186901022,55.2818140871718 +-3.8906703183063,55.2794788134405 + + + + + +NS80 +#labelStyle + +-3.81404998000968,55.3255779025172 + + + + +NS81 + +Small Square NS81 Boundry Box +#Line2 + + +1 + +-3.89495172688926,55.3692864653417 +-3.89925679760304,55.4590835859725 +-3.74121485777877,55.4614344771432 +-3.73726751387991,55.3716295305484 +-3.89495172688926,55.3692864653417 + + + + + +NS81 +#labelStyle + +-3.81816503609164,55.4153887685671 + + + + +NS82 + +Small Square NS82 Boundry Box +#Line2 + + +1 + +-3.89925722936403,55.4590925665051 +-3.90358657708477,55.5488881364351 +-3.74518486043414,55.5512468899036 +-3.74121525366305,55.4614434584603 +-3.89925722936403,55.4590925665051 + + + + + +NS82 +#labelStyle + +-3.8223032754124,55.5051981019113 + + + + +NS83 + +Small Square NS83 Boundry Box +#Line2 + + +1 + +-3.90358701128304,55.5488971168126 +-3.90794082348746,55.6386911359184 +-3.74917730015618,55.6410577875204 +-3.74518525855349,55.5512558710691 +-3.90358701128304,55.5488971168126 + + + + + +NS83 +#labelStyle + +-3.82646487677583,55.5950059025727 + + + + +NS84 + +Small Square NS84 Boundry Box +#Line2 + + +1 + +-3.90794126014187,55.6387001161408 +-3.91231972627501,55.7284925842934 +-3.7531923507274,55.7308671701504 +-3.7491777005279,55.6410667685344 +-3.90794126014187,55.6387001161408 + + + + + +NS84 +#labelStyle + +-3.83065002086089,55.6848121705703 + + + + +NS85 + +Small Square NS85 Boundry Box +#Line2 + + +1 + +-3.9123201654046,55.7285015643607 +-3.91672347690555,55.8182924814252 +-3.75723018775998,55.8206750379476 +-3.75319275336895,55.7308761510129 +-3.9123201654046,55.7285015643607 + + + + + +NS85 +#labelStyle + +-3.83485889024615,55.774616905919 + + + + +NS86 + +Small Square NS86 Boundry Box +#Line2 + + +1 + +-3.91672391852957,55.8183014613374 +-3.92115226885766,55.908090827173 +-3.76129098871979,55.9104813910628 +-3.75723059268902,55.8206840186586 +-3.91672391852957,55.8183014613374 + + + + + +NS86 +#labelStyle + +-3.83909166943472,55.8644201086293 + + + + +NS87 + +Small Square NS87 Boundry Box +#Line2 + + +1 + +-3.92115271299554,55.90809980693 +-3.92560629765689,55.9978876213896 +-3.76537493295079,56.0002862296437 +-3.76129139595416,55.9104903716224 +-3.92115271299554,55.90809980693 + + + + + +NS87 +#labelStyle + +-3.84334854487946,55.954221778707 + + + + +NS88 + +Small Square NS88 Boundry Box +#Line2 + + +1 + +-3.92560674432831,55.9978966009915 +-3.93008576090282,56.0876828639212 +-3.76948220169979,56.0900895538345 +-3.76537534250852,56.0002952100518 +-3.92560674432831,55.9978966009915 + + + + + +NS88 +#labelStyle + +-3.84762970500874,56.0440219161529 + + + + +NS89 + +Small Square NS89 Boundry Box +#Line2 + + +1 + +-3.93008621012764,56.0876918433678 +-3.93459085829643,56.177476554607 +-3.77361297814162,56.1798913637754 +-3.76948261359909,56.0900985340911 +-3.93008621012764,56.0876918433678 + + + + + +NS89 +#labelStyle + +-3.8519353402525,56.1338205209629 + + + + +NS90 + +Small Square NS90 Boundry Box +#Line2 + + +1 + +-3.73332613346261,55.2818143105889 +-3.73725134908097,55.3716207732424 +-3.57954508234145,55.3737604900276 +-3.57597576314309,55.2839469119716 +-3.73332613346261,55.2818143105889 + + + + + +NS90 +#labelStyle + +-3.65651689185052,55.3278157840929 + + + + +NS91 + +Small Square NS91 Boundry Box +#Line2 + + +1 + +-3.7372517427437,55.371629754711 +-3.74119905085754,55.4614347020546 +-3.58313485146799,55.4635815671762 +-3.5795454403112,55.3737694722095 +-3.7372517427437,55.371629754711 + + + + + +NS91 +#labelStyle + +-3.66027506439358,55.4176341215471 + + + + +NS92 + +Small Square NS92 Boundry Box +#Line2 + + +1 + +-3.74119944673822,55.4614436833717 +-3.74516901752277,55.5512471155672 +-3.58674486936539,55.5534011615049 +-3.58313521145485,55.4635905492097 +-3.74119944673822,55.4614436833717 + + + + + +NS92 +#labelStyle + +-3.66405441243144,55.5074509601813 + + + + +NS93 + +Small Square NS93 Boundry Box +#Line2 + + +1 + +-3.74516941563851,55.5512560967328 +-3.74916142105157,55.6410580139397 +-3.59037529246639,55.6432192734315 +-3.58674523138493,55.5534101433902 +-3.74516941563851,55.5512560967328 + + + + + +NS93 +#labelStyle + +-3.66785509931615,55.5972663002878 + + + + +NS94 + +Small Square NS94 Boundry Box +#Line2 + + +1 + +-3.74916182141966,55.6410669949537 +-3.75317643522488,55.7308673973288 +-3.5940262788469,55.733035903374 +-3.59037565653432,55.6432282551686 +-3.74916182141966,55.6410669949537 + + + + + +NS94 +#labelStyle + +-3.6716772901132,55.6870801421577 + + + + +NS95 + +Small Square NS95 Boundry Box +#Line2 + + +1 + +-3.75317683786279,55.7308763781914 +-3.7572142356533,55.8206752658885 +-3.59769798824755,55.8228510517504 +-3.59402664497912,55.7330448849629 +-3.75317683786279,55.7308763781914 + + + + + +NS95 +#labelStyle + +-3.67552115162401,55.7768924860808 + + + + +NS96 + +Small Square NS96 Boundry Box +#Line2 + + +1 + +-3.75721464057867,55.8206842465996 +-3.7612749998011,55.9104816197699 +-3.60139058209554,55.9126647189782 +-3.59769835646011,55.8228600331912 +-3.75721464057867,55.8206842465996 + + + + + +NS96 +#labelStyle + +-3.67938685240863,55.8667033323453 + + + + +NS97 + +Small Square NS97 Boundry Box +#Line2 + + +1 + +-3.76127540703178,55.9104906003295 +-3.7653589070106,56.0002864591205 +-3.60510422352682,56.0024769054744 +-3.60139095240468,55.9126737002708 +-3.76127540703178,55.9104906003295 + + + + + +NS97 +#labelStyle + +-3.68327456280887,55.9565126812379 + + + + +NS98 + +Small Square NS98 Boundry Box +#Line2 + + +1 + +-3.76535931656462,56.0002954395287 +-3.769466138527,56.0900897840844 +-3.60883907740863,56.0922876116556 +-3.60510459594893,56.002485886619 +-3.76535931656462,56.0002954395287 + + + + + +NS98 +#labelStyle + +-3.68718445497177,56.0463205330431 + + + + +NS99 + +Small Square NS99 Boundry Box +#Line2 + + +1 + +-3.76946655042257,56.0900987643412 +-3.77359687752346,56.1798915948022 +-3.61259531036246,56.1820968379372 +-3.60883945196029,56.0922965926522 +-3.76946655042257,56.0900987643412 + + + + + +NS99 +#labelStyle + +-3.69111670287347,56.1361268880432 + + + + + +NT + +Large Square NT Boundry Box +#Line1 + + +1 + +-3.57596002550241,55.2839471151164 +-3.61257920748259,56.182097048002 +-2.00158843204048,56.1926134258825 +-2.00154643202799,55.294116946072 +-3.57596002550241,55.2839471151164 + + + + + +NT00 + +Small Square NT00 Boundry Box +#Line2 + + +1 + +-3.57596002550241,55.2839471151164 +-3.57952930909966,55.3737606938502 +-3.42180295366905,55.3756970040845 +-3.41858971965365,55.2858769856539 +-3.57596002550241,55.2839471151164 + + + + + +NT00 +#labelStyle + +-3.49896279301946,55.3298506056637 + + + + +NT01 + +Small Square NT01 Boundry Box +#Line2 + + +1 + +-3.57952966706584,55.3737696760322 +-3.58311904242136,55.4635817716798 +-3.42503459956281,55.4655245514241 +-3.42180327592685,55.3757059869119 +-3.57952966706584,55.3737696760322 + + + + + +NT01 +#labelStyle + +-3.50236392037964,55.4196757373603 + + + + +NT02 + +Small Square NT02 Boundry Box +#Line2 + + +1 + +-3.58311940240463,55.4635907537135 +-3.58672902431221,55.5534013666926 +-3.42828447628622,55.5553506453491 +-3.42503492363669,55.4655335341062 +-3.58311940240463,55.4635907537135 + + + + + +NT02 +#labelStyle + +-3.50578421379937,55.5094994010592 + + + + +NT03 + +Small Square NT03 Boundry Box +#Line2 + + +1 + +-3.58672938632813,55.5534103485779 +-3.59035941120338,55.6432194793064 +-3.43155272470711,55.6451752865115 +-3.42828480219021,55.5553596278858 +-3.58672938632813,55.5534103485779 + + + + + +NT03 +#labelStyle + +-3.50922382115678,55.5993215972975 + + + + +NT04 + +Small Square NT04 Boundry Box +#Line2 + + +1 + +-3.59035977526767,55.6432284610435 +-3.59401036116921,55.7330361099392 +-3.4348394871733,55.7349984755657 +-3.43155305245536,55.645184268903 +-3.59035977526767,55.6432284610435 + + + + + +NT04 +#labelStyle + +-3.51268289188153,55.6891423266141 + + + + +NT05 + +Small Square NT05 Boundry Box +#Line2 + + +1 + +-3.59401072729778,55.7330450915282 +-3.59768203394877,55.8228512590091 +-3.43814490753204,55.8248202131686 +-3.43483981678013,55.735007457812 +-3.59401072729778,55.7330450915282 + + + + + +NT05 +#labelStyle + +-3.51616157697511,55.7789615895488 + + + + +NT06 + +Small Square NT06 Boundry Box +#Line2 + + +1 + +-3.59768240215765,55.8228602404499 +-3.60137459096762,55.9126649269336 +-3.44146913114961,55.9146404999793 +-3.43814523901189,55.8248291952698 +-3.59768240215765,55.8228602404499 + + + + + +NT06 +#labelStyle + +-3.51966002903143,55.8687793866428 + + + + +NT07 + +Small Square NT07 Boundry Box +#Line2 + + +1 + +-3.60137496127306,55.9126739082263 +-3.60508819536009,56.0024771141297 +-3.44481230493143,56.0044593366588 +-3.44146946451712,55.9146494819354 +-3.60137496127306,55.9126739082263 + + + + + +NT07 +#labelStyle + +-3.52317840225773,55.9585957184378 + + + + +NT08 + +Small Square NT08 Boundry Box +#Line2 + + +1 + +-3.60508856777849,56.0024860952744 +-3.60882301199182,56.092287821014 +-3.44817457734229,56.0942767238702 +-3.44481264020135,56.00446831847 +-3.60508856777849,56.0024860952744 + + + + + +NT08 +#labelStyle + +-3.52671685249591,56.0484105854766 + + + + +NT09 + +Small Square NT09 Boundry Box +#Line2 + + +1 + +-3.60882338653974,56.0922968020107 +-3.61257920748259,56.182097048002 +-3.45155609842701,56.1840926622782 +-3.44817491452955,56.0942857055365 +-3.60882338653974,56.0922968020107 + + + + + +NT09 +#labelStyle + +-3.53027553724406,56.1382239883023 + + + + +NT10 + +Small Square NT10 Boundry Box +#Line2 + + +1 + +-3.41857398011856,55.2858771685209 +-3.4217871785183,55.3756971875618 +-3.26404273671192,55.3774300379227 +-3.26118572581442,55.2876042552655 +-3.41857398011856,55.2858771685209 + + + + + +NT10 +#labelStyle + +-3.34138967761637,55.3316823113048 + + + + +NT11 + +Small Square NT11 Boundry Box +#Line2 + + +1 + +-3.42178750077252,55.3757061703892 +-3.4250187885925,55.4655247355144 +-3.26691611998222,55.4672633761806 +-3.2640430232439,55.377439021328 +-3.42178750077252,55.3757061703892 + + + + + +NT11 +#labelStyle + +-3.3444336134634,55.4215135596858 + + + + +NT12 + +Small Square NT12 Boundry Box +#Line2 + + +1 + +-3.42501911266279,55.4655337181965 +-3.42826862929449,55.5553508300552 +-3.2698057146802,55.5570952873477 +-3.26691640812912,55.467272359443 +-3.42501911266279,55.4655337181965 + + + + + +NT12 +#labelStyle + +-3.3474947044033,55.5113433678238 + + + + +NT13 + +Small Square NT13 Boundry Box +#Line2 + + +1 + +-3.42826895519487,55.555359812592 +-3.43153684149053,55.6451754718362 +-3.27271164608968,55.6469257722857 +-3.26980600445449,55.5571042704675 +-3.42826895519487,55.555359812592 + + + + + +NT13 +#labelStyle + +-3.35057308282036,55.6011717364767 + + + + +NT14 + +Small Square NT14 Boundry Box +#Line2 + + +1 + +-3.43153716923515,55.6451844542278 +-3.43482356752688,55.7349986615119 +-3.27563404081103,55.7367548318609 +-3.27271193750395,55.6469347552629 +-3.43153716923515,55.6451844542278 + + + + + +NT14 +#labelStyle + +-3.35366888248812,55.6909986664061 + + + + +NT15 + +Small Square NT15 Boundry Box +#Line2 + + +1 + +-3.43482389713005,55.7350076437583 +-3.43812895124917,55.8248203997392 +-3.27857302677838,55.826582466944 +-3.27563433387801,55.7367638146956 +-3.43482389713005,55.7350076437583 + + + + + +NT15 +#labelStyle + +-3.35678223858751,55.7808241583775 + + + + +NT16 + +Small Square NT16 Boundry Box +#Line2 + + +1 + +-3.43812928272535,55.8248293818405 +-3.44145313802211,55.9146406871771 +-3.28152873327717,55.9164086784103 +-3.27857332151092,55.8265914496363 +-3.43812928272535,55.8248293818405 + + + + + +NT16 +#labelStyle + +-3.35991328772536,55.8706482131594 + + + + +NT17 + +Small Square NT17 Boundry Box +#Line2 + + +1 + +-3.44145347138592,55.9146496691333 +-3.44479627474947,56.0044595244868 +-3.28450129096192,56.0062334671395 +-3.28152902968827,55.9164176609603 +-3.44145347138592,55.9146496691333 + + + + + +NT17 +#labelStyle + +-3.36306216795312,55.9604708315239 + + + + +NT18 + +Small Square NT18 Boundry Box +#Line2 + + +1 + +-3.44479661001567,56.004468506298 +-3.4481585098944,56.0942769123312 +-3.28749083187432,56.0960568340153 +-3.28450158906472,56.0062424495473 +-3.44479661001567,56.004468506298 + + + + + +NT18 +#labelStyle + +-3.3662290187859,56.0502920142459 + + + + +NT19 + +Small Square NT19 Boundry Box +#Line2 + + +1 + +-3.44815884707792,56.0942858939975 +-3.45153999350007,56.1840928513751 +-3.29049748946161,56.1858787799255 +-3.2874911316821,56.0960658162809 +-3.44815884707792,56.0942858939975 + + + + + +NT19 +#labelStyle + +-3.36941398122183,56.1401117621037 + + + + +NT20 + +Small Square NT20 Boundry Box +#Line2 + + +1 + +-3.26116998458372,55.2876044178496 +-3.26402695985251,55.3774302010494 +-3.10626643542691,55.378959543808 +-3.10376577032078,55.2891286734076 +-3.26116998458372,55.2876044178496 + + + + + +NT20 +#labelStyle + +-3.18379954125222,55.3333108506631 + + + + +NT21 + +Small Square NT21 Boundry Box +#Line2 + + +1 + +-3.26402724638092,55.3774391844547 +-3.26690030729009,55.4672635398524 +-3.1087814321054,55.4687979933725 +-3.10626668622074,55.3789685277231 +-3.26402724638092,55.3774391844547 + + + + + +NT21 +#labelStyle + +-3.18648615458915,55.4231475378136 + + + + +NT22 + +Small Square NT22 Boundry Box +#Line2 + + +1 + +-3.2669005954334,55.4672725231149 +-3.26978986595335,55.5570954515671 +-3.11131061951017,55.5586350390854 +-3.10878168431285,55.4688069771472 +-3.2669005954334,55.4672725231149 + + + + + +NT22 +#labelStyle + +-3.18918791068108,55.5129828094046 + + + + +NT23 + +Small Square NT23 Boundry Box +#Line2 + + +1 + +-3.26979015572402,55.557104434687 +-3.27269576112454,55.6469259370552 +-3.1138541073241,55.6484706819935 +-3.11131087314217,55.5586440227198 +-3.26979015572402,55.557104434687 + + + + + +NT23 +#labelStyle + +-3.19190492640057,55.6028166663907 + + + + +NT24 + +Small Square NT24 Boundry Box +#Line2 + + +1 + +-3.27269605253518,55.6469349200325 +-3.27561811940245,55.736754997183 +-3.11641200638282,55.7383049231498 +-3.11385436239166,55.6484796654877 +-3.27269605253518,55.6469349200325 + + + + + +NT24 +#labelStyle + +-3.19463731984682,55.6926491097317 + + + + +NT25 + +Small Square NT25 Boundry Box +#Line2 + + +1 + +-3.27561841246577,55.7367639800177 +-3.27855706871963,55.8265826328212 +-3.11898442868986,55.8281377636142 +-3.11641226289708,55.7383139065039 +-3.27561841246577,55.7367639800177 + + + + + +NT25 +#labelStyle + +-3.1973852103618,55.7824801403934 + + + + +NT26 + +Small Square NT26 Boundry Box +#Line2 + + +1 + +-3.2785573634485,55.8265916155136 +-3.2815127383599,55.9164088448453 +-3.12157148743198,55.9179692044529 +-3.11898468666208,55.8281467468283 +-3.2785573634485,55.8265916155136 + + + + + +NT26 +#labelStyle + +-3.2001487185465,55.872309759347 + + + + +NT27 + +Small Square NT27 Boundry Box +#Line2 + + +1 + +-3.28151303476731,55.9164178273954 +-3.28448525897617,56.0062336341348 +-3.12417329699479,56.0077992467384 +-3.12157174687356,55.9179781875271 +-3.28151303476731,55.9164178273954 + + + + + +NT27 +#labelStyle + +-3.20292796627751,55.9621379675691 + + + + +NT28 + +Small Square NT28 Boundry Box +#Line2 + + +1 + +-3.28448555707525,56.0062426165426 +-3.28747476260847,56.0960570015734 +-3.12678997297849,56.0976278915495 +-3.1241735579172,56.0078082296728 +-3.28448555707525,56.0062426165426 + + + + + +NT28 +#labelStyle + +-3.20572307672384,56.0519647660416 + + + + +NT29 + +Small Square NT29 Boundry Box +#Line2 + + +1 + +-3.28747506241251,56.0960659838391 +-3.29048138270239,56.1858789480491 +-3.12942163221408,56.1874551399709 +-3.12679023539337,56.0976368743441 +-3.28747506241251,56.0960659838391 + + + + + +NT29 +#labelStyle + +-3.20853417436399,56.1417901557515 + + + + +NT30 + +Small Square NT30 Boundry Box +#Line2 + + +1 + +-3.1037500275934,55.2891288157044 +-3.10625065705933,55.3789596865797 +-2.94847605505305,55.3802854796043 +-2.94633184313383,55.2904501982405 +-3.1037500275934,55.2891288157044 + + + + + +NT30 +#labelStyle + +-3.02619438089099,55.3347361789618 + + + + +NT31 + +Small Square NT31 Boundry Box +#Line2 + + +1 + +-3.10625090784958,55.3789686704949 +-3.10876561789347,55.4687981366213 +-2.95063255661037,55.4701283605648 +-2.94847627009794,55.3802944639616 +-3.10625090784958,55.3789686704949 + + + + + +NT31 +#labelStyle + +-3.02852355607184,55.4245776266493 + + + + +NT32 + +Small Square NT32 Boundry Box +#Line2 + + +1 + +-3.10876587009733,55.4688071203961 +-3.11129476925177,55.5586351828136 +-2.95280122705481,55.5599698578252 +-2.95063277286747,55.4701373447837 +-3.10876587009733,55.4688071203961 + + + + + +NT32 +#labelStyle + +-3.03086586045908,55.514417680387 + + + + +NT33 + +Small Square NT33 Boundry Box +#Line2 + + +1 + +-3.11129502288015,55.5586441664481 +-3.11383822081553,55.6484708262031 +-2.9549821604534,55.6498099725924 +-2.95280144453349,55.5599788419057 +-3.11129502288015,55.5586441664481 + + + + + +NT33 +#labelStyle + +-3.03322139539772,55.6042563413011 + + + + +NT34 + +Small Square NT34 Boundry Box +#Line2 + + +1 + +-3.11383847587946,55.6484798096974 +-3.11639608341882,55.7383050678432 +-2.95717545186196,55.7396487060821 +-2.95498237916311,55.6498189565348 +-3.11383847587946,55.6484798096974 + + + + + +NT34 +#labelStyle + +-3.03559026329661,55.6940936105254 + + + + +NT35 + +Small Square NT35 Boundry Box +#Line2 + + +1 + +-3.11639633992943,55.7383140511973 +-3.11896846906357,55.8281379087935 +-2.95938119733808,55.8294860595177 +-2.95717567181226,55.7396576898864 +-3.11639633992943,55.7383140511973 + + + + + +NT35 +#labelStyle + +-3.03797256764245,55.7839294892009 + + + + +NT36 + +Small Square NT36 Boundry Box +#Line2 + + +1 + +-3.11896872703212,55.8281468920076 +-3.12155549093493,55.9179693501204 +-2.96159949395428,55.9193220341311 +-2.95938141853862,55.8294950431841 +-3.11896872703212,55.8281468920076 + + + + + +NT36 +#labelStyle + +-3.04036841301382,55.8737639784764 + + + + +NT37 + +Small Square NT37 Boundry Box +#Line2 + + +1 + +-3.1215557503728,55.9179783331945 +-3.12415726341686,56.0077993928963 +-2.96383043981136,56.0091566311622 +-2.96159971641482,55.9193310176597 +-3.1215557503728,55.9179783331945 + + + + + +NT37 +#labelStyle + +-3.04277790509565,55.9635970795074 + + + + +NT38 + +Small Square NT38 Boundry Box +#Line2 + + +1 + +-3.12415752433556,56.0078083758307 +-3.12677390210796,56.0976280382 +-2.96607413405202,56.0989898518586 +-2.96383066354177,56.009165614553 +-3.12415752433556,56.0078083758307 + + + + + +NT38 +#labelStyle + +-3.04520115069373,56.0534287934572 + + + + +NT39 + +Small Square NT39 Boundry Box +#Line2 + + +1 + +-3.1267741645191,56.0976370209947 +-3.12940552383752,56.1874552871164 +-2.96833067687463,56.1888216974763 +-2.96607435906226,56.0989988351119 +-3.1267741645191,56.0976370209947 + + + + + +NT39 +#labelStyle + +-3.0476382577496,56.1432591214955 + + + + +NT40 + +Small Square NT40 Boundry Box +#Line2 + + +1 + +-2.94631609910883,55.2904503202461 +-2.94846027537787,55.380285602017 +-2.79067360195201,55.3814078087782 +-2.78888593532289,55.2915687934876 +-2.94631609910883,55.2904503202461 + + + + + +NT40 +#labelStyle + +-2.86857619469134,55.3359582570049 + + + + +NT41 + +Small Square NT41 Boundry Box +#Line2 + + +1 + +-2.94846049041918,55.3802945863744 +-2.95061674108076,55.4701284833867 +-2.79247151531243,55.4712544409647 +-2.79067378123868,55.3814167935098 +-2.94846049041918,55.3802945863744 + + + + + +NT41 +#labelStyle + +-2.87054783143662,55.4258037867191 + + + + +NT42 + +Small Square NT42 Boundry Box +#Line2 + + +1 + +-2.95061695733427,55.4701374676057 +-2.95278537546854,55.5599699810581 +-2.79427957474491,55.561099706512 +-2.79247169560982,55.4712634255595 +-2.95061695733427,55.4701374676057 + + + + + +NT42 +#labelStyle + +-2.87253058278966,55.5156479410162 + + + + +NT43 + +Small Square NT43 Boundry Box +#Line2 + + +1 + +-2.95278559294361,55.5599789651387 +-2.95496627260668,55.6498100962382 +-2.79609785868786,55.6509436067632 +-2.79427975606081,55.5611086909703 +-2.95278559294361,55.5599789651387 + + + + + +NT43 +#labelStyle + +-2.8745245345542,55.6054907211699 + + + + +NT44 + +Small Square NT44 Boundry Box +#Line2 + + +1 + +-2.95496649131275,55.6498190801806 +-2.9571595275494,55.7396488301426 +-2.79792644640435,55.740786143071 +-2.79609804103017,55.650952591085 +-2.95496649131275,55.6498190801806 + + + + + +NT44 +#labelStyle + +-2.87652977343485,55.6953321284628 + + + + +NT45 + +Small Square NT45 Boundry Box +#Line2 + + +1 + +-2.95715974749604,55.739657813947 +-2.95936523635272,55.8294861839949 +-2.79976541799285,55.8306273167978 +-2.79792662978103,55.7407951272565 +-2.95715974749604,55.739657813947 + + + + + +NT45 +#labelStyle + +-2.87854638704884,55.7851721641866 + + + + +NT46 + +Small Square NT46 Boundry Box +#Line2 + + +1 + +-2.95936545754958,55.8294951676613 +-2.96158349608753,55.9193221590269 +-2.80161485439826,55.9204671293157 +-2.79976560241194,55.8306363008471 +-2.95936545754958,55.8294951676613 + + + + + +NT46 +#labelStyle + +-2.88057446393803,55.875010829642 + + + + +NT47 + +Small Square NT47 Boundry Box +#Line2 + + +1 + +-2.96158371854437,55.9193311425555 +-2.96381440485301,56.0091567564785 +-2.80347483742303,56.0103055820062 +-2.80161503986791,55.9204761132289 +-2.96158371854437,55.9193311425555 + + + + + +NT47 +#labelStyle + +-2.88261409358107,55.9648481261385 + + + + +NT48 + +Small Square NT48 Boundry Box +#Line2 + + +1 + +-2.9638146285797,56.0091657398694 +-2.96605806179021,56.0989899775974 +-2.80534544973852,56.1001426762602 +-2.80347502395147,56.0103145657835 +-2.9638146285797,56.0091657398694 + + + + + +NT48 +#labelStyle + +-2.88466536640575,56.0546840549944 + + + + +NT49 + +Small Square NT49 Boundry Box +#Line2 + + +1 + +-2.96605828679671,56.0989989608507 +-2.96831456709583,56.1888218236395 +-2.80722677489649,56.1899784134781 +-2.80534563733405,56.1001516599017 +-2.96605828679671,56.0989989608507 + + + + + +NT49 +#labelStyle + +-2.88672837380153,56.1445186175367 + + + + +NT50 + +Small Square NT50 Boundry Box +#Line2 + + +1 + +-2.78887019019942,55.2915688951986 +-2.79065782116991,55.3814079108287 +-2.63286108344834,55.3823265004024 +-2.63143003890782,55.292484428439 +-2.78887019019942,55.2915688951986 + + + + + +NT50 +#labelStyle + +-2.71094698184798,55.3369770511809 + + + + +NT51 + +Small Square NT51 Boundry Box +#Line2 + + +1 + +-2.79065800045302,55.3814168955603 +-2.79245569866738,55.4712545433563 +-2.63430033100235,55.472176203425 +-2.63286122696909,55.3823354854403 +-2.79065800045302,55.3814168955603 + + + + + +NT51 +#labelStyle + +-2.71256099525821,55.4268259841733 + + + + +NT52 + +Small Square NT52 Boundry Box +#Line2 + + +1 + +-2.79245587896117,55.4712635279512 +-2.79426372203457,55.5610998092462 +-2.63574770099949,55.5620245537771 +-2.63430047533223,55.4721851883277 +-2.79245587896117,55.4712635279512 + + + + + +NT52 +#labelStyle + +-2.71418410778844,55.5166735572019 + + + + +NT53 + +Small Square NT53 Boundry Box +#Line2 + + +1 + +-2.79426390334686,55.5611087937045 +-2.79608196970836,55.6509437098416 +-2.63720325623895,55.6518715529128 +-2.63574784614474,55.5620335385445 +-2.79426390334686,55.5611087937045 + + + + + +NT53 +#labelStyle + +-2.71581638968958,55.6065197716635 + + + + +NT54 + +Small Square NT54 Boundry Box +#Line2 + + +1 + +-2.79608215204703,55.6509526941635 +-2.7979105209502,55.7407862464952 +-2.6386670601802,55.7417172022974 +-2.63720340220589,55.6518805375452 +-2.79608215204703,55.6509526941635 + + + + + +NT54 +#labelStyle + +-2.71745791195016,55.6963646289649 + + + + +NT55 + +Small Square NT55 Boundry Box +#Line2 + + +1 + +-2.79791070432322,55.7407952306808 +-2.799749455857,55.8306274205695 +-2.64013917695163,55.831561503407 +-2.6386672069752,55.7417261867949 +-2.79791070432322,55.7407952306808 + + + + + +NT55 +#labelStyle + +-2.71910874630601,55.7862081305234 + + + + +NT56 + +Small Square NT56 Boundry Box +#Line2 + + +1 + +-2.79974964027242,55.8306364046188 +-2.80159885537202,55.9204672334363 +-2.64161967135939,55.9214044577283 +-2.64013932458115,55.8315704877697 +-2.79974964027242,55.8306364046188 + + + + + +NT56 +#labelStyle + +-2.72076896525008,55.8760502777665 + + + + +NT57 + +Small Square NT57 Boundry Box +#Line2 + + +1 + +-2.80159904083798,55.9204762173496 +-2.80345880129611,56.0103056864774 +-2.64310860889624,56.0112460667588 +-2.64161981982993,55.9214134419564 +-2.80159904083798,55.9204762173496 + + + + + +NT57 +#labelStyle + +-2.7224386420424,55.9658910721318 + + + + +NT58 + +Small Square NT58 Boundry Box +#Line2 + + +1 + +-2.80345898782082,56.0103146702548 +-2.80532937629895,56.1001427810836 +-2.64460605575069,56.101086332007 +-2.64310875821439,56.0112550508525 +-2.80345898782082,56.0103146702548 + + + + + +NT58 +#labelStyle + +-2.72411785072017,56.0557305150673 + + + + +NT59 + +Small Square NT59 Boundry Box +#Line2 + + +1 + +-2.80532956389074,56.1001517647252 +-2.80721066393065,56.1899785186554 +-2.64611207881618,56.1909252549914 +-2.64460620592311,56.1010953159663 +-2.80532956389074,56.1001517647252 + + + + + +NT59 +#labelStyle + +-2.72580666610809,56.1455686080308 + + + + +NT60 + +Small Square NT60 Boundry Box +#Line2 + + +1 + +-2.63141429288513,55.2924845098526 +-2.63284530176011,55.3823265820877 +-2.47504050766961,55.3830415291583 +-2.47396614670119,55.2931970779542 +-2.63141429288513,55.2924845098526 + + + + + +NT60 +#labelStyle + +-2.55330874243288,55.3377925334663 + + + + +NT61 + +Small Square NT61 Boundry Box +#Line2 + + +1 + +-2.63284544527729,55.3823355671257 +-2.63428451344418,55.4721762853835 +-2.47612102728436,55.4728936224477 +-2.47504061541826,55.3830505144348 +-2.63284544527729,55.3823355671257 + + + + + +NT61 +#labelStyle + +-2.55456506299999,55.4276441907894 + + + + +NT62 + +Small Square NT62 Boundry Box +#Line2 + + +1 + +-2.63428465777046,55.4721852702861 +-2.63573184736897,55.5620246360098 +-2.47720764506168,55.5627443739406 +-2.47612113564048,55.4729026075899 +-2.63428465777046,55.4721852702861 + + + + + +NT62 +#labelStyle + +-2.55582846647136,55.5174945005209 + + + + +NT63 + +Small Square NT63 Boundry Box +#Line2 + + +1 + +-2.63573199251061,55.5620336207773 +-2.63718736633212,55.6518716354211 +-2.47830040815301,55.6525937851781 +-2.47720775402996,55.5627533589487 +-2.63573199251061,55.5620336207773 + + + + + +NT63 +#labelStyle + +-2.5570990075355,55.607343464156 + + + + +NT64 + +Small Square NT64 Boundry Box +#Line2 + + +1 + +-2.63718751229542,55.6518806200535 +-2.63865113379152,55.7417172850825 +-2.47939936420558,55.7424418577129 +-2.4783005177382,55.6526027700522 +-2.63718751229542,55.6518806200535 + + + + + +NT64 +#labelStyle + +-2.55837674145525,55.6971910832011 + + + + +NT65 + +Small Square NT65 Boundry Box +#Line2 + + +1 + +-2.63865128058287,55.74172626958 +-2.64012321387397,55.8315615864701 +-2.48050456136893,55.8322885931095 +-2.47939947441247,55.7424508424533 +-2.63865128058287,55.74172626958 + + + + + +NT65 +#labelStyle + +-2.55966172407523,55.7870373591739 + + + + +NT66 + +Small Square NT66 Boundry Box +#Line2 + + +1 + +-2.6401233614998,55.8315705708329 +-2.64160367138398,55.9214045410708 +-2.48161604830149,55.9221339929442 +-2.48050467220236,55.8322975777162 +-2.6401233614998,55.8315705708329 + + + + + +NT66 +#labelStyle + +-2.56095401182951,55.8768822936036 + + + + +NT67 + +Small Square NT67 Boundry Box +#Line2 + + +1 + +-2.64160381985082,55.921413525299 +-2.6430925718127,56.011246150382 +-2.48273387417728,56.0119780588048 +-2.48161615976634,55.9221429774174 +-2.64160381985082,55.921413525299 + + + + + +NT67 +#labelStyle + +-2.56225366174938,55.9667258880304 + + + + +NT68 + +Small Square NT68 Boundry Box +#Line2 + + +1 + +-2.64309272112713,56.0112551344758 +-2.64458998134698,56.1010864159121 +-2.48385808869275,56.1018207922908 +-2.4827339862785,56.0119870431447 +-2.64309272112713,56.0112551344758 + + + + + +NT68 +#labelStyle + +-2.56356073147118,56.0565681440058 + + + + +NT69 + +Small Square NT69 Boundry Box +#Line2 + + +1 + +-2.64459013151565,56.1010953998715 +-2.6460959668786,56.1909253391799 +-2.48498874207366,56.1916621950133 +-2.48385820143533,56.1018297764975 +-2.64459013151565,56.1010953998715 + + + + + +NT69 +#labelStyle + +-2.56487527924438,56.1464090630926 + + + + +NT70 + +Small Square NT70 Boundry Box +#Line2 + + +1 + +-2.47395039997859,55.2931971390682 +-2.47502472527609,55.3830415904763 +-2.31721388338628,55.3835528753393 +-2.31649625215017,55.2937067224652 +-2.47395039997859,55.2931971390682 + + + + + +NT70 +#labelStyle + +-2.39566347723632,55.338404681428 + + + + +NT71 + +Small Square NT71 Boundry Box +#Line2 + + +1 + +-2.47502483302116,55.3830505757528 +-2.47610520901546,55.4728936839707 +-2.31793562841397,55.4734066781857 +-2.31721395535817,55.3835618607863 +-2.47502483302116,55.3830505757528 + + + + + +NT71 +#labelStyle + +-2.39656205085303,55.4282583839753 + + + + +NT72 + +Small Square NT72 Boundry Box +#Line2 + + +1 + +-2.47610531736798,55.4729026691129 +-2.47719179071494,55.5627444356695 +-2.31866144683439,55.5632591470143 +-2.31793570079164,55.4734156634992 +-2.47610531736798,55.4729026691129 + + + + + +NT72 +#labelStyle + +-2.39746569059147,55.5181107482205 + + + + +NT73 + +Small Square NT73 Boundry Box +#Line2 + + +1 + +-2.47719189967961,55.5627534206776 +-2.47828451752441,55.6525938471139 +-2.31939137014485,55.6531102834279 +-2.31866151962097,55.5632681321945 +-2.47719189967961,55.5627534206776 + + + + + +NT73 +#labelStyle + +-2.3983744355704,55.6079617757325 + + + + +NT74 + +Small Square NT74 Boundry Box +#Line2 + + +1 + +-2.47828462710596,55.652602831988 +-2.47938343708952,55.7424419198565 +-2.32012543017384,55.7429600890421 +-2.3193914433435,55.653119268475 +-2.47828462710596,55.652602831988 + + + + + +NT74 +#labelStyle + +-2.39928832531942,55.6978114680925 + + + + +NT75 + +Small Square NT75 Boundry Box +#Line2 + + +1 + +-2.47938354729274,55.7424509045968 +-2.48048859755821,55.8322886554619 +-2.32086365908542,55.8328085654846 +-2.32012550378776,55.7429690739562 +-2.47938354729274,55.7424509045968 + + + + + +NT75 +#labelStyle + +-2.40020739978431,55.7876598268938 + + + + +NT76 + +Small Square NT76 Boundry Box +#Line2 + + +1 + +-2.48048870838795,55.8322976400686 +-2.48160004758729,55.9221340555063 +-2.32160608938362,55.9226557143955 +-2.32086373311786,55.8328175502658 +-2.48048870838795,55.8322976400686 + + + + + +NT76 +#labelStyle + +-2.40113169933252,55.8775068537416 + + + + +NT77 + +Small Square NT77 Boundry Box +#Line2 + + +1 + +-2.48160015904844,55.9221430399795 +-2.48271783634915,56.0119781215776 +-2.32235275391691,56.0125015374273 +-2.32160616383784,55.9226646990441 +-2.48160015904844,55.9221430399795 + + + + + +NT77 +#labelStyle + +-2.40206126475869,55.9673525502533 + + + + +NT78 + +Small Square NT78 Boundry Box +#Line2 + + +1 + +-2.48271794844665,56.0119871059175 +-2.48384201353859,56.1018208552752 +-2.32310368588274,56.1023460362449 +-2.3223528287962,56.0125105219434 +-2.48271794844665,56.0119871059175 + + + + + +NT78 +#labelStyle + +-2.40299613729033,56.0571969180585 + + + + +NT79 + +Small Square NT79 Boundry Box +#Line2 + + +1 + +-2.48384212627744,56.101829839482 +-2.48497262937973,56.1916622582104 +-2.3238589188322,56.1921892125253 +-2.32310376119045,56.1023550206286 +-2.48384212627744,56.101829839482 + + + + + +NT79 +#labelStyle + +-2.40393635859353,56.1470399587984 + + + + +NT80 + +Small Square NT80 Boundry Box +#Line2 + + +1 + +-2.31648050492704,55.2937067632778 +-2.31719810048837,55.3835529162882 +-2.15938321985148,55.3838605248518 +-2.15902234917847,55.2940133479774 +-2.31648050492704,55.2937067632778 + + + + + +NT80 +#labelStyle + +-2.23801318760773,55.3388134782259 + + + + +NT81 + +Small Square NT81 Boundry Box +#Line2 + + +1 + +-2.31719817245669,55.3835619017353 +-2.31791980963679,55.4734067192716 +-2.15974615913566,55.4737153564456 +-2.15938325604352,55.3838695104015 +-2.31719817245669,55.3835619017353 + + + + + +NT81 +#labelStyle + +-2.23855397557481,55.4286685467715 + + + + +NT82 + +Small Square NT82 Boundry Box +#Line2 + + +1 + +-2.31791988201086,55.4734157045851 +-2.31864559197544,55.5632591882377 +-2.16011114671592,55.5635688587034 +-2.15974619553175,55.4737243418622 +-2.31791988201086,55.4734157045851 + + + + + +NT82 +#labelStyle + +-2.2390978124757,55.5185222832203 + + + + +NT83 + +Small Square NT83 Boundry Box +#Line2 + + +1 + +-2.3186456647584,55.5632681734179 +-2.31937547900006,55.6531103247895 +-2.16047819843114,55.6534210332656 +-2.16011118331763,55.5635778439872 +-2.3186456647584,55.5632681734179 + + + + + +NT83 +#labelStyle + +-2.23964472185409,55.6083746891907 + + + + +NT84 + +Small Square NT84 Boundry Box +#Line2 + + +1 + +-2.31937555219508,55.6531193098366 +-2.32010950253758,55.7429601305425 +-2.16084733028675,55.7432718817851 +-2.16047823524006,55.6534300184167 +-2.31937555219508,55.6531193098366 + + + + + +NT84 +#labelStyle + +-2.24019472750098,55.6982257663138 + + + + +NT85 + +Small Square NT85 Boundry Box +#Line2 + + +1 + +-2.32010957614785,55.7429691154566 +-2.32084769475045,55.8328086071244 +-2.16121855845694,55.833121405928 +-2.1608473673045,55.7432808668037 +-2.32010957614785,55.7429691154566 + + + + + +NT85 +#labelStyle + +-2.24074785345783,55.7880755162333 + + + + +NT86 + +Small Square NT86 Boundry Box +#Line2 + + +1 + +-2.3208477687792,55.8328175919056 +-2.32159008814107,55.9226557561754 +-2.16159189928682,55.9229696073728 +-2.16121859568512,55.8331303908142 +-2.3208477687792,55.8328175919056 + + + + + +NT86 +#labelStyle + +-2.24130412401993,55.8779239406054 + + + + +NT87 + +Small Square NT87 Boundry Box +#Line2 + + +1 + +-2.32159016259158,55.9226647408239 +-2.32233671555629,56.0125015793479 +-2.16196736929478,56.0128164878109 +-2.1615919367271,55.9229785921268 +-2.32159016259158,55.9226647408239 + + + + + +NT87 +#labelStyle + +-2.24186356373966,55.9677710410989 + + + + +NT88 + +Small Square NT88 Boundry Box +#Line2 + + +1 + +-2.32233679043186,56.012510563864 +-2.32308761019191,56.1023460783069 +-2.16234498517464,56.1026620489463 +-2.1619674069488,56.0128254724329 +-2.32233679043186,56.012510563864 + + + + + +NT88 +#labelStyle + +-2.24242619742995,56.0576168193955 + + + + +NT89 + +Small Square NT89 Boundry Box +#Line2 + + +1 + +-2.32308768549587,56.1023550626906 +-2.32384280559735,56.1921892547293 +-2.16272476379812,56.1925062924961 +-2.1623450230441,56.1026710334365 +-2.32308768549587,56.1023550626906 + + + + + +NT89 +#labelStyle + +-2.24299205016767,56.1474612771889 + + + + +NT90 + +Small Square NT90 Boundry Box +#Line2 + + +1 + +-2.15900660165421,55.2940133684877 +-2.15936743665013,55.3838605454306 +-2.00155052664074,55.3839644692172 +-2.00154643202799,55.294116946072 +-2.15900660165421,55.2940133684877 + + + + + +NT90 +#labelStyle + +-2.08035987529647,55.3390189126141 + + + + +NT91 + +Small Square NT91 Boundry Box +#Line2 + + +1 + +-2.1593674728386,55.3838695309802 +-2.1597303400527,55.4737153770932 +-2.00155464452052,55.4738196486884 +-2.00155052705138,55.3839734548015 +-2.1593674728386,55.3838695309802 + + + + + +NT91 +#labelStyle + +-2.08054285432797,55.4288746678522 + + + + +NT92 + +Small Square NT92 Boundry Box +#Line2 + + +1 + +-2.15973037644519,55.4737243625098 +-2.16009529154883,55.5635688794202 +-2.00155878543543,55.5636735004083 +-2.00155464493345,55.4738286341399 +-2.15973037644519,55.4737243625098 + + + + + +NT92 +#labelStyle + +-2.08072686486138,55.5187290941141 + + + + +NT93 + +Small Square NT93 Boundry Box +#Line2 + + +1 + +-2.16009532814692,55.563577864704 +-2.16046230697583,55.6534210540518 +-2.00156294956378,55.6535260260298 +-2.00155878585068,55.5636824857272 +-2.16009532814692,55.563577864704 + + + + + +NT93 +#labelStyle + +-2.08091191486217,55.608582193043 + + + + +NT94 + +Small Square NT94 Boundry Box +#Line2 + + +1 + +-2.16046234378111,55.6534300392029 +-2.16083140233755,55.7432719026411 +-2.00156713708574,55.7433772272187 +-2.00156294998136,55.6535350112161 +-2.16046234378111,55.6534300392029 + + + + + +NT94 +#labelStyle + +-2.08109801237948,55.6984339662952 + + + + +NT95 + +Small Square NT95 Boundry Box +#Line2 + + +1 + +-2.16083143935163,55.7432808876597 +-2.16120259380657,55.8331214268541 +-2.0015713481834,55.8332271056538 +-2.00156713750567,55.7433862122727 +-2.16083143935163,55.7432808876597 + + + + + +NT95 +#labelStyle + +-2.08128516554718,55.7882844155397 + + + + +NT96 + +Small Square NT96 Boundry Box +#Line2 + + +1 + +-2.16120263103107,55.8331304117403 +-2.16157589772641,55.9229696283693 +-2.00157558304076,55.9230756630268 +-2.00157134860569,55.8332360905756 +-2.16120263103107,55.8331304117403 + + + + + +NT96 +#labelStyle + +-2.08147338258504,55.8781335424583 + + + + +NT97 + +Small Square NT97 Boundry Box +#Line2 + + +1 + +-2.16157593516298,55.9229786131233 +-2.1619513306138,56.0128165088781 +-2.00157984184377,56.0129229010421 +-2.00157558346544,55.9230846478165 +-2.16157593516298,55.9229786131233 + + + + + +NT97 +#labelStyle + +-2.08166267179979,55.9679813487458 + + + + +NT98 + +Small Square NT98 Boundry Box +#Line2 + + +1 + +-2.1619513682641,56.0128254935001 +-2.16232890916094,56.1026620700847 +-2.00158412478037,56.1027688214173 +-2.00157984227086,56.0129318857 +-2.1619513682641,56.0128254935001 + + + + + +NT98 +#labelStyle + +-2.08185304158633,56.0578278361099 + + + + +NT99 + +Small Square NT99 Boundry Box +#Line2 + + +1 + +-2.16232894702665,56.1026710545749 +-2.16270865023785,56.1925063137058 +-2.00158843204048,56.1926134258825 +-2.00158412520987,56.1027778059435 +-2.16232894702665,56.1026710545749 + + + + + +NT99 +#labelStyle + +-2.08204450042885,56.1476730062708 + + + + + +NU + +Large Square NU Boundry Box +#Line1 + + +1 + +-2.00153068440204,55.2941169462793 +-2.0015723183703,56.1926134260973 +-0.39057940797553,56.1821399898373 +-0.427115124512102,55.2839885532415 +-2.00153068440204,55.2941169462793 + + + + + +NU00 + +Small Square NU00 Boundry Box +#Line2 + + +1 + +-2.00153068440204,55.2941169462793 +-2.00153474333692,55.3839644694252 +-1.84371781349157,55.3838647055725 +-1.84407049510057,55.2940175139062 +-2.00153068440204,55.2941169462793 + + + + + +NU00 +#labelStyle + +-1.92270554229252,55.3390209789424 + + + + +NU01 + +Small Square NU01 Boundry Box +#Line2 + + +1 + +-2.00153474374399,55.3839734550096 +-2.0015388253343,55.4738196488972 +-1.84336310980373,55.4737195520308 +-1.84371777812079,55.3838736911236 +-2.00153474374399,55.3839734550096 + + + + + +NU01 +#labelStyle + +-1.9225307045189,55.428876741527 + + + + +NU02 + +Small Square NU02 Boundry Box +#Line2 + + +1 + +-2.00153882574363,55.4738286343487 +-2.00154293016427,55.5636735006178 +-1.84300640388832,55.5635730692251 +-1.8433630742335,55.473728537449 +-2.00153882574363,55.4738286343487 + + + + + +NU02 +#labelStyle + +-1.92235488073282,55.5187311751709 + + + + +NU03 + +Small Square NU03 Boundry Box +#Line2 + + +1 + +-2.0015429305759,55.5636824859367 +-2.00154705800359,55.6535260262401 +-1.84264768026306,55.6534252587959 +-1.84300636811709,55.5635820545104 +-2.0015429305759,55.5636824859367 + + + + + +NU03 +#labelStyle + +-1.92217806332043,55.6085842815176 + + + + +NU04 + +Small Square NU04 Boundry Box +#Line2 + + +1 + +-2.00154705841753,55.6535350114264 +-2.00155120903084,55.7433772274297 +-1.84228692328285,55.7432761223972 +-1.84264764428928,55.6534342439486 +-2.00154705841753,55.6535350114264 + + + + + +NU04 +#labelStyle + +-1.92200024458794,55.6984360622236 + + + + +NU05 + +Small Square NU05 Boundry Box +#Line2 + + +1 + +-2.00155120944711,55.7433862124837 +-2.00155538342652,55.8332271058656 +-1.84192411713764,55.8331256616952 +-1.84228688710494,55.7432851074173 +-2.00155120944711,55.7433862124837 + + + + + +NU05 +#labelStyle + +-1.92182141676053,55.7882865189581 + + + + +NU06 + +Small Square NU06 Boundry Box +#Line2 + + +1 + +-2.00155538384513,55.8332360907874 +-2.001559581373,55.9230756632393 +-1.84155924585029,55.9229738783693 +-1.84192408075403,55.833134646583 +-2.00155538384513,55.8332360907874 + + + + + +NU06 +#labelStyle + +-1.92164157198129,55.8781356534033 + + + + +NU07 + +Small Square NU07 Boundry Box +#Line2 + + +1 + +-2.00155958179398,55.923084648029 +-2.00156380305461,56.0129229012554 +-1.84119229327432,56.0128207741113 +-1.84155920925936,55.9229828631249 +-2.00155958179398,55.923084648029 + + + + + +NU07 +#labelStyle + +-1.92146070231019,55.9679834672543 + + + + +NU08 + +Small Square NU08 Boundry Box +#Line2 + + +1 + +-2.00156380347797,56.0129318859133 +-2.00156804865762,56.1027688216313 +-1.84082324309171,56.102666350626 +-1.84119225647444,56.0128297587349 +-2.00156380347797,56.0129318859133 + + + + + +NU08 +#labelStyle + +-1.92127879972291,56.057829962219 + + + + +NU09 + +Small Square NU09 Boundry Box +#Line2 + + +1 + +-2.00156804908339,56.1027778061575 +-2.0015723183703,56.1926134260973 +-1.84045207881059,56.1925106096308 +-1.84082320608125,56.1026753351177 +-2.00156804908339,56.1027778061575 + + + + + +NU09 +#labelStyle + +-1.92109585610978,56.1476751400182 + + + + +NU10 + +Small Square NU10 Boundry Box +#Line2 + + +1 + +-1.84405474757238,55.2940174938105 +-1.84370203028626,55.3838646854097 +-1.68588709014309,55.3835612366706 +-1.68659653279962,55.2937150542135 +-1.84405474757238,55.2940174938105 + + + + + +NU10 +#labelStyle + +-1.76505219066711,55.3388196771564 + + + + +NU11 + +Small Square NU11 Boundry Box +#Line2 + + +1 + +-1.8437019949119,55.3838736709609 +-1.84334729071677,55.4737195318008 +-1.68517358022209,55.4734150692453 +-1.68588701899241,55.3835702221206 +-1.8437019949119,55.3838736709609 + + + + + +NU11 +#labelStyle + +-1.76451954363628,55.4286747677413 + + + + +NU12 + +Small Square NU12 Boundry Box +#Line2 + + +1 + +-1.84334725514294,55.4737285172189 +-1.84299054871719,55.5635730489273 +-1.68445604297164,55.5632675679458 +-1.68517350867023,55.4734240545618 +-1.84334725514294,55.4737285172189 + + + + + +NU12 +#labelStyle + +-1.76398389315766,55.5185285263357 + + + + +NU13 + +Small Square NU13 Boundry Box +#Line2 + + +1 + +-1.84299051294235,55.5635820342126 +-1.84263178880368,55.6534252384303 +-1.68373444725096,55.6531187343761 +-1.68445597101549,55.563276553129 +-1.84299051294235,55.5635820342126 + + + + + +NU13 +#labelStyle + +-1.76344521603913,55.608380954559 + + + + +NU14 + +Small Square NU14 Boundry Box +#Line2 + + +1 + +-1.84263175282626,55.6534342235829 +-1.84227099532954,55.7432761019632 +-1.68300876159181,55.7429685701527 +-1.6837343748874,55.6531277194262 +-1.84263175282626,55.6534342235829 + + + + + +NU14 +#labelStyle + +-1.76290348884499,55.6982320540429 + + + + +NU15 + +Small Square NU15 Boundry Box +#Line2 + + +1 + +-1.84227095914798,55.7432850869833 +-1.84190815248314,55.8331256411927 +-1.68227895419419,55.8328170769047 +-1.68300868881767,55.7429775550698 +-1.84227095914798,55.7432850869833 + + + + + +NU15 +#labelStyle + +-1.76235868789278,55.7880818264321 + + + + +NU16 + +Small Square NU16 Boundry Box +#Line2 + + +1 + +-1.84190811609584,55.8331346260804 +-1.84154324428571,55.9229738577978 +-1.681544992922,55.9226642562733 +-1.68227888100628,55.832826061689 +-1.84190811609584,55.8331346260804 + + + + + +NU16 +#labelStyle + +-1.76181078925004,55.8779302733836 + + + + +NU17 + +Small Square NU17 Boundry Box +#Line2 + + +1 + +-1.84154320769108,55.9229828425534 +-1.84117625458914,56.0128207534706 +-1.68080684529858,56.0125101099121 +-1.68154491931708,55.9226732409249 +-1.84154320769108,55.9229828425534 + + + + + +NU17 +#labelStyle + +-1.76125976873102,55.9677773965673 + + + + +NU18 + +Small Square NU18 Boundry Box +#Line2 + + +1 + +-1.84117621778554,56.0128297380942 +-1.84080716707376,56.1026663299158 +-1.68006447850221,56.1023546394872 +-1.68080677127338,56.0125190944312 +-1.84117621778554,56.0128297380942 + + + + + +NU18 +#labelStyle + +-1.76070560189334,56.0576231976654 + + + + +NU19 + +Small Square NU19 Boundry Box +#Line2 + + +1 + +-1.84080713005956,56.1026753144075 +-1.84043596524605,56.1925105888507 +-1.67931785936159,56.1921978466768 +-1.68006440405345,56.102363623874 +-1.84080713005956,56.1026753144075 + + + + + +NU19 +#labelStyle + +-1.76014826403459,56.1474676783727 + + + + +NU20 + +Small Square NU20 Boundry Box +#Line2 + + +1 + +-1.68658078556861,55.2937150138154 +-1.68587130723725,55.3835611961376 +-1.52806036617558,55.3830540708801 +-1.52912653937175,55.2932095753037 +-1.68658078556861,55.2937150138154 + + + + + +NU20 +#labelStyle + +-1.60740182241335,55.338415012798 + + + + +NU21 + +Small Square NU21 Boundry Box +#Line2 + + +1 + +-1.685871236083,55.3835701815876 +-1.68515776143692,55.4734150285769 +-1.52698808085152,55.4729062087598 +-1.52806025924808,55.383063056161 +-1.685871236083,55.3835701815876 + + + + + +NU21 +#labelStyle + +-1.60651138908968,55.4282687520761 + + + + +NU22 + +Small Square NU22 Boundry Box +#Line2 + + +1 + +-1.68515768988146,55.4734240138935 +-1.68444018810463,55.5632675271413 +-1.52590974341944,55.5627570050585 +-1.52698797332113,55.4729151939065 +-1.68515768988146,55.4734240138935 + + + + + +NU22 +#labelStyle + +-1.60561593512342,55.5181211532292 + + + + +NU23 + +Small Square NU23 Boundry Box +#Line2 + + +1 + +-1.68444011614486,55.5632765123246 +-1.68371855609805,55.653118693435 +-1.52482530708432,55.6526064613188 +-1.52590963528151,55.5627659900711 +-1.68444011614486,55.5632765123246 + + + + + +NU23 +#labelStyle + +-1.60471542174731,55.6079722178279 + + + + +NU24 + +Small Square NU24 Boundry Box +#Line2 + + +1 + +-1.68371848373085,55.6531276784851 +-1.68299283394735,55.7429685290744 +-1.52373472455906,55.7424545790951 +-1.52482519833414,55.6526154461975 +-1.68371848373085,55.6531276784851 + + + + + +NU24 +#labelStyle + +-1.60380980978693,55.6978219474545 + + + + +NU25 + +Small Square NU25 Boundry Box +#Line2 + + +1 + +-1.68299276116955,55.7429775139914 +-1.68226298985095,55.8328170356884 +-1.52263794805807,55.8323013599539 +-1.52373461519187,55.74246356384 +-1.68299276116955,55.7429775139914 + + + + + +NU25 +#labelStyle + +-1.60289905965545,55.7876703437039 + + + + +NU26 + +Small Square NU26 Boundry Box +#Line2 + + +1 + +-1.68226291665935,55.8328260204727 +-1.68152899167111,55.9226642149184 +-1.52153492929073,55.9221468054728 +-1.52263783806909,55.8323103445651 +-1.68226291665935,55.8328260204727 + + + + + +NU26 +#labelStyle + +-1.60198313134811,55.8775174081827 + + + + +NU27 + +Small Square NU27 Boundry Box +#Line2 + + +1 + +-1.68152891806249,55.92267319957 +-1.68079080692955,56.012510068418 +-1.52042561945468,56.0119909172417 +-1.52153481867508,55.9221557899506 +-1.68152891806249,55.92267319957 + + + + + +NU27 +#labelStyle + +-1.60106198443683,55.9673631425097 + + + + +NU28 + +Small Square NU28 Boundry Box +#Line2 + + +1 + +-1.68079073290063,56.0125190529371 +-1.68004840280291,56.1023545978533 +-1.51930996922913,56.1018336968617 +-1.52042550820747,56.0119999015862 +-1.68079073290063,56.0125190529371 + + + + + +NU28 +#labelStyle + +-1.60013557806453,56.057207548316 + + + + +NU29 + +Small Square NU29 Boundry Box +#Line2 + + +1 + +-1.6800483283504,56.1023635822401 +-1.6793017461182,56.1921978049024 +-1.51818792876791,56.1916751459458 +-1.51930985734539,56.1018426810731 +-1.6800483283504,56.1023635822401 + + + + + +NU29 +#labelStyle + +-1.59920387093952,56.1470506272443 + + + + +NU30 + +Small Square NU30 Boundry Box +#Line2 + + +1 + +-1.52911079263735,55.2932095146043 +-1.52804458377016,55.383054009978 +-1.37023965085014,55.3823432221843 +-1.3716625087485,55.2925010910618 +-1.52911079263735,55.2932095146043 + + + + + +NU30 +#labelStyle + +-1.44975643928686,55.3378069970043 + + + + +NU31 + +Small Square NU31 Boundry Box +#Line2 + + +1 + +-1.52804447683908,55.3830629952589 +-1.52697226257062,55.4729061476543 +-1.36880863644455,55.472192984657 +-1.37023950815041,55.3823522072283 +-1.52804447683908,55.3830629952589 + + + + + +NU31 +#labelStyle + +-1.44850825804807,55.4276587057476 + + + + +NU32 + +Small Square NU32 Boundry Box +#Line2 + + +1 + +-1.52697215503663,55.4729151328009 +-1.52589388906061,55.5627569437485 +-1.36736954563819,55.5620413947461 +-1.36880849294029,55.4722019695656 +-1.52697215503663,55.4729151328009 + + + + + +NU32 +#labelStyle + +-1.44725303937386,55.5175090671475 + + + + +NU33 + +Small Square NU33 Boundry Box +#Line2 + + +1 + +-1.52589378091905,55.5627659287611 +-1.52480941644352,55.6526063998034 +-1.36592231598809,55.6518884539083 +-1.36736940132317,55.5620503795195 +-1.52589378091905,55.5627659287611 + + + + + +NU33 +#labelStyle + +-1.44599072892708,55.6073580827009 + + + + +NU34 + +Small Square NU34 Boundry Box +#Line2 + + +1 + +-1.5248093076897,55.6526153846821 +-1.52371879743069,55.7424545173735 +-1.36446688439478,55.741734163611 +-1.36592217085605,55.6518974385467 +-1.5248093076897,55.6526153846821 + + + + + +NU34 +#labelStyle + +-1.44472127179994,55.6972057539164 + + + + +NU35 + +Small Square NU35 Boundry Box +#Line2 + + +1 + +-1.52371868805985,55.7424635021184 +-1.52262198423495,55.832301298025 +-1.36300318709363,55.8315785253325 +-1.36446673843936,55.7417431481145 +-1.52371868805985,55.7424635021184 + + + + + +NU35 +#labelStyle + +-1.44344461250661,55.7870520823135 + + + + +NU36 + +Small Square NU36 Boundry Box +#Line2 + + +1 + +-1.52262187424228,55.8323102826362 +-1.52151892856402,55.9221467433357 +-1.36153115964613,55.9214215405621 +-1.36300304030843,55.8315875097013 +-1.52262187424228,55.8323102826362 + + + + + +NU36 +#labelStyle + +-1.44216069497558,55.8768970694235 + + + + +NU37 + +Small Square NU37 Boundry Box +#Line2 + + +1 + +-1.52151881794468,55.9221557278135 +-1.52040958161395,56.0119908548954 +-1.36005073693103,56.0112632107996 +-1.36153101202467,55.9214305247963 +-1.52151881794468,55.9221557278135 + + + + + +NU37 +#labelStyle + +-1.44086946254199,55.9667407167886 + + + + +NU38 + +Small Square NU38 Boundry Box +#Line2 + + +1 + +-1.52040947036302,56.0119998392399 +-1.51929389406226,56.1018336343052 +-1.35856185313527,56.1011035375555 +-1.36005058846676,56.0112721948994 +-1.52040947036302,56.0119998392399 + + + + + +NU38 +#labelStyle + +-1.43957085793976,56.0565830259625 + + + + +NU39 + +Small Square NU39 Boundry Box +#Line2 + + +1 + +-1.51929378217479,56.1018426185166 +-1.51817181606115,56.1916750831782 +-1.35706444174486,56.1909425223512 +-1.35856170382158,56.1011125215211 +-1.51929378217479,56.1018426185166 + + + + + +NU39 +#labelStyle + +-1.43826482329368,56.1464239985099 + + + + +NU40 + +Small Square NU40 Boundry Box +#Line2 + + +1 + +-1.37164676271007,55.2925010100627 +-1.37022386914604,55.3823431409149 +-1.21242695294834,55.3814287101802 +-1.21420643438802,55.291589620947 +-1.37164676271007,55.2925010100627 + + + + + +NU40 +#labelStyle + +-1.29211804264644,55.3369956465072 + + + + +NU41 + +Small Square NU41 Boundry Box +#Line2 + + +1 + +-1.37022372644274,55.3823521259588 +-1.36879281887038,55.472192903116 +-1.21063727126798,55.4712754166729 +-1.21242677448254,55.3814376949192 +-1.37022372644274,55.3823521259588 + + + + + +NU41 +#labelStyle + +-1.29051216727844,55.4268446456063 + + + + +NU42 + +Small Square NU42 Boundry Box +#Line2 + + +1 + +-1.36879267536252,55.4722018880246 +-1.36735369199154,55.5620413129323 +-1.20883748954222,55.5611207568852 +-1.21063709179606,55.4712844012752 +-1.36879267536252,55.4722018880246 + + + + + +NU42 +#labelStyle + +-1.28889723824553,55.5166922850606 + + + + +NU43 + +Small Square NU43 Boundry Box +#Line2 + + +1 + +-1.36735354767291,55.5620502977057 +-1.36590642606501,55.6518883718204 +-1.20702752968867,55.650964732163 +-1.2088373090564,55.561129741351 +-1.36735354767291,55.5620502977057 + + + + + +NU43 +#labelStyle + +-1.28727318564801,55.6065385662693 + + + + +NU44 + +Small Square NU44 Boundry Box +#Line2 + + +1 + +-1.36590628092932,55.6518973564588 +-1.36445095798971,55.7417340812478 +-1.20520731280404,55.740807343862 +-1.2070273481811,55.6509737164924 +-1.36590628092932,55.6518973564588 + + + + + +NU44 +#labelStyle + +-1.2856399388522,55.6963834906417 + + + + +NU45 + +Small Square NU45 Boundry Box +#Line2 + + +1 + +-1.36445081203063,55.7417430657513 +-1.36298722399943,55.8315784426928 +-1.20337675915343,55.8306485933473 +-1.2052071302668,55.740816328055 +-1.36445081203063,55.7417430657513 + + + + + +NU45 +#labelStyle + +-1.28399742648087,55.7862270595978 + + + + +NU46 + +Small Square NU46 Boundry Box +#Line2 + + +1 + +-1.36298707721055,55.8315874270616 +-1.36151515965405,55.9214214576445 +-1.20153578815933,55.920488481994 +-1.2033765755785,55.8306575774042 +-1.36298707721055,55.8315874270616 + + + + + +NU46 +#labelStyle + +-1.28234557640345,55.8760692745676 + + + + +NU47 + +Small Square NU47 Boundry Box +#Line2 + + +1 + +-1.3615150120289,55.9214304418787 +-1.36003469983068,56.0112631276028 +-1.19968431839059,56.0103270111863 +-1.20153560353861,55.9204974659148 +-1.3615150120289,55.9214304418787 + + + + + +NU47 +#labelStyle + +-1.28068431572613,55.9659101369914 + + + + +NU48 + +Small Square NU48 Boundry Box +#Line2 + + +1 + +-1.36003455136269,56.0112721117026 +-1.35854577871461,56.1011034540783 +-1.19782226755108,56.1001641823184 +-1.19968413271589,56.0103359949713 +-1.36003455136269,56.0112721117026 + + + + + +NU48 +#labelStyle + +-1.2790135707818,56.0557496483196 + + + + +NU49 + +Small Square NU49 Boundry Box +#Line2 + + +1 + +-1.35854562939718,56.1011124380439 +-1.35704832979019,56.1909424385923 +-1.19594955246828,56.1899999967936 +-1.19782208081413,56.1001731659677 +-1.35854562939718,56.1011124380439 + + + + + +NU49 +#labelStyle + +-1.27733326711979,56.1455878100127 + + + + +NU50 + +Small Square NU50 Boundry Box +#Line2 + + +1 + +-1.21419068924489,55.2915895196504 +-1.21241117214641,55.3814286085456 +-1.05462428061204,55.3803105600762 +-1.05676030911699,55.2904751899903 +-1.21419068924489,55.2915895196504 + + + + + +NU50 +#labelStyle + +-1.13448863329486,55.3359809836312 + + + + +NU51 + +Small Square NU51 Boundry Box +#Line2 + + +1 + +-1.21241099367704,55.3814375932846 +-1.21062145460294,55.4712753146987 +-1.05247600894052,55.4701535301949 +-1.05462406638785,55.3803195444424 +-1.21241099367704,55.3814375932846 + + + + + +NU51 +#labelStyle + +-1.1325251329845,55.4258265941349 + + + + +NU52 + +Small Square NU52 Boundry Box +#Line2 + + +1 + +-1.21062127512742,55.471284299301 +-1.20882163681173,55.5611206545698 +-1.05031561438935,55.559995117044 +-1.05247579350871,55.4701625144228 +-1.21062127512742,55.471284299301 + + + + + +NU52 +#labelStyle + +-1.13055056350433,55.5156708296114 + + + + +NU53 + +Small Square NU53 Boundry Box +#Line2 + + +1 + +-1.20882145632229,55.5611296390356 +-1.20701164068884,55.6509646295049 +-1.04814300324729,55.6498353218339 +-1.05031539774058,55.5600041011336 +-1.20882145632229,55.5611296390356 + + + + + +NU53 +#labelStyle + +-1.12856483940156,55.6055136913371 + + + + +NU54 + +Small Square NU54 Boundry Box +#Line2 + + +1 + +-1.20701145917763,55.6509736138342 +-1.2051913873294,55.7408072408596 +-1.04595808081802,55.7396741457834 +-1.04814278537213,55.6498443057853 +-1.20701145917763,55.6509736138342 + + + + + +NU54 +#labelStyle + +-1.12656787432621,55.695355180598 + + + + +NU55 + +Small Square NU55 Boundry Box +#Line2 + + +1 + +-1.2051912047885,55.7408162250526 +-1.20336079699692,55.8306484899991 +-1.04376075140727,55.8295115901197 +-1.04595786170697,55.7396831295968 +-1.2051912047885,55.7408162250526 + + + + + +NU55 +#labelStyle + +-1.12455958101942,55.7851952986888 + + + + +NU56 + +Small Square NU56 Boundry Box +#Line2 + + +1 + +-1.2033606134183,55.8306574740559 +-1.20151978911227,55.9204883782982 +-1.04155091830966,55.9193476560779 +-1.0437605310507,55.8295205737951 +-1.2033606134183,55.8306574740559 + + + + + +NU56 +#labelStyle + +-1.12253987130147,55.8750340469133 + + + + +NU57 + +Small Square NU57 Boundry Box +#Line2 + + +1 + +-1.20151960448784,55.920497362219 +-1.19966828224266,56.0103269071415 +-1.03932848379539,56.0091823449015 +-1.04155069669785,55.9193566396156 +-1.20151960448784,55.920497362219 + + + + + +NU57 +#labelStyle + +-1.12050865605968,55.9648714265842 + + + + +NU58 + +Small Square NU58 Boundry Box +#Line2 + + +1 + +-1.19966809656424,56.0103358909265 +-1.19780619409033,56.1001640779229 +-1.03709334909674,56.0990156578418 +-1.03932826091852,56.0091913283015 +-1.19966809656424,56.0103358909265 + + + + + +NU58 +#labelStyle + +-1.11846584523613,56.0547074390231 + + + + +NU59 + +Small Square NU59 Boundry Box +#Line2 + + +1 + +-1.19780600734963,56.1001730615721 +-1.19593344148108,56.1899998920458 +-1.03484541439427,56.1888475961581 +-1.03709312494487,56.0990246411043 +-1.19780600734963,56.1001730615721 + + + + + +NU59 +#labelStyle + +-1.1164113478151,56.1445420855601 + + + + +NU60 + +Small Square NU60 Boundry Box +#Line2 + + +1 + +-1.05674456506839,55.2904750683991 +-1.05460850091306,55.3803104380792 +-0.896833641183269,55.3789888026896 +-0.8993261249725,55.2891578287926 +-1.05674456506839,55.2904750683991 + + + + + +NU60 +#labelStyle + +-0.976870211319712,55.3347630362913 + + + + +NU61 + +Small Square NU61 Boundry Box +#Line2 + + +1 + +-1.0546082866853,55.3803194224454 +-1.05246019338693,55.4701534077903 +-0.894326872270641,55.4688273562594 +-0.896833391209929,55.3789977866152 +-1.0546082866853,55.3803194224454 + + + + + +NU61 +#labelStyle + +-0.974549170645493,55.4246045794467 + + + + +NU62 + +Small Square NU62 Boundry Box +#Line2 + + +1 + +-1.05245997795151,55.4701623920181 +-1.0502997627789,55.5599949942299 +-0.891805958616539,55.5586645064797 +-0.894326620888255,55.4688363400446 +-1.05245997795151,55.4701623920181 + + + + + +NU62 +#labelStyle + +-0.972215046182235,55.5144447291127 + + + + +NU63 + +Small Square NU63 Boundry Box +#Line2 + + +1 + +-1.05029954612651,55.5600039783194 +-1.04812711537618,55.6498351986084 +-0.889270790893589,55.6485002544012 +-0.891805705814231,55.5586734901246 +-1.05029954612651,55.5600039783194 + + + + + +NU63 +#labelStyle + +-0.969867736935626,55.6042834864193 + + + + +NU64 + +Small Square NU64 Boundry Box +#Line2 + + +1 + +-1.04812689749739,55.6498441825598 +-1.04594215648088,55.7396740221446 +-0.886721258625363,55.738334601081 +-0.889270536660369,55.6485092379059 +-1.04812689749739,55.6498441825598 + + + + + +NU64 +#labelStyle + +-0.967507140851152,55.6941208525038 + + + + +NU65 + +Small Square NU65 Boundry Box +#Line2 + + +1 + +-1.04594193736617,55.739683005958 +-1.04374479039712,55.8295114660657 +-0.884157250171321,55.828167547583 +-0.886721002950125,55.7383435844456 +-1.04594193736617,55.739683005958 + + + + + +NU65 +#labelStyle + +-0.965133154800229,55.783956828511 + + + + +NU66 + +Small Square NU66 Boundry Box +#Line2 + + +1 + +-1.04374457003688,55.8295204497412 +-1.04153492041791,55.9193475316069 +-0.881578652711519,55.9179990949773 +-0.884156993042843,55.8281765308076 +-1.04374457003688,55.8295204497412 + + + + + +NU66 +#labelStyle + +-0.962745674566108,55.8737914155932 + + + + +NU67 + +Small Square NU67 Boundry Box +#Line2 + + +1 + +-1.04153469880241,55.9193565151446 +-1.03931244881184,56.0091822200115 +-0.878985352231074,56.0078292443407 +-0.881578394118459,55.9180080780621 +-1.04153469880241,55.9193565151446 + + + + + +NU67 +#labelStyle + +-0.960344594829558,55.9636246149099 + + + + +NU68 + +Small Square NU68 Boundry Box +#Line2 + + +1 + +-1.03931222593125,56.0091912034115 +-1.03707727680951,56.0990155325309 +-0.876377233504389,56.0976579967559 +-0.878985092161971,56.0078382272857 +-1.03931222593125,56.0091912034115 + + + + + +NU68 +#labelStyle + +-0.957929809154329,56.053456427628 + + + + +NU69 + +Small Square NU69 Boundry Box +#Line2 + + +1 + +-1.03707705265391,56.0990245157934 +-1.03482930458985,56.1888474704243 +-0.87375418007911,56.187485353312 +-0.876376971947657,56.0976669795613 +-1.03707705265391,56.0990245157934 + + + + + +NU69 +#labelStyle + +-0.955501209972376,56.1432868549213 + + + + +NU70 + +Small Square NU70 Boundry Box +#Line2 + + +1 + +-0.89931038221759,55.2891576869101 +-0.896817862787929,55.3789886603336 +-0.739057041044331,55.3774634744442 +-0.741905873044237,55.2876375735215 +-0.89931038221759,55.2891576869101 + + + + + +NU70 +#labelStyle + +-0.819264775934451,55.3333418379908 + + + + +NU71 + +Small Square NU71 Boundry Box +#Line2 + + +1 + +-0.896817612811015,55.3789976442592 +-0.894311058030731,55.4688272134278 +-0.736191883094556,55.4672969315484 +-0.739056755332597,55.3774724578612 +-0.896817612811015,55.3789976442592 + + + + + +NU71 +#labelStyle + +-0.816586294855106,55.423178635282 + + + + +NU72 + +Small Square NU72 Boundry Box +#Line2 + + +1 + +-0.894310806644751,55.4688361972129 +-0.891790108329926,55.5586643631703 +-0.733310559675791,55.5571289621357 +-0.736191595772478,55.4673059148228 +-0.894310806644751,55.4688361972129 + + + + + +NU72 +#labelStyle + +-0.813892716414109,55.5130140175451 + + + + +NU73 + +Small Square NU73 Boundry Box +#Line2 + + +1 + +-0.891789855524003,55.5586733468151 +-0.88925490435658,55.6485001106118 +-0.730412945859349,55.6469595670721 +-0.733310270730941,55.5571379452675 +-0.891789855524003,55.5586733468151 + + + + + +NU73 +#labelStyle + +-0.811183924089284,55.6028479857385 + + + + +NU74 + +Small Square NU74 Boundry Box +#Line2 + + +1 + +-0.889254650119724,55.6485090941164 +-0.886705335632688,55.7383344568094 +-0.727498915403733,55.7367887472282 +-0.730412655279168,55.6469685500613 +-0.889254650119724,55.6485090941164 + + + + + +NU74 +#labelStyle + +-0.808459800135443,55.6926805408265 + + + + +NU75 + +Small Square NU75 Boundry Box +#Line2 + + +1 + +-0.886705079953794,55.7383434401739 +-0.884141290516115,55.8281674028269 +-0.724568340737442,55.8266165034797 +-0.727498623175531,55.7367977300751 +-0.886705079953794,55.7383434401739 + + + + + +NU75 +#labelStyle + +-0.805720225568385,55.782511683779 + + + + +NU76 + +Small Square NU76 Boundry Box +#Line2 + + +1 + +-0.88414103338396,55.8281763860515 +-0.881562656185307,55.9179989497346 +-0.721621092941501,55.9164428367063 +-0.724568046848396,55.8266254861842 +-0.88414103338396,55.8281763860515 + + + + + +NU76 +#labelStyle + +-0.802965080148642,55.8723414155714 + + + + +NU77 + +Small Square NU77 Boundry Box +#Line2 + + +1 + +-0.881562397588549,55.9180079328194 +-0.878969318623755,56.0078290986091 +-0.718657041731718,56.0062677477924 +-0.72162079737865,55.9164518192685 +-0.881562397588549,55.9180079328194 + + + + + +NU77 +#labelStyle + +-0.80019424236497,55.9621697371847 + + + + +NU78 + +Small Square NU78 Boundry Box +#Line2 + + +1 + +-0.878969058550932,56.0078380815541 +-0.876361162604213,56.0976578505331 +-0.715676055440657,56.0960912376265 +-0.718656744481965,56.0062767302125 +-0.878969058550932,56.0078380815541 + + + + + +NU78 +#labelStyle + +-0.797407589417575,56.0519966496052 + + + + +NU79 + +Small Square NU79 Boundry Box +#Line2 + + +1 + +-0.876360901043742,56.0976668333385 +-0.873738071672668,56.1874852065958 +-0.712678000999328,56.1859133071011 +-0.715675756490765,56.0961002199044 +-0.876360901043742,56.0976668333385 + + + + + +NU79 +#labelStyle + +-0.794604997201078,56.1418221538244 + + + + +NU80 + +Small Square NU80 Boundry Box +#Line2 + + +1 + +-0.741890131782077,55.2876374113516 +-0.739041264153214,55.3774633117331 +-0.581296485458041,55.375734617366 +-0.584501543316771,55.2859144659079 +-0.741890131782077,55.2876374113516 + + + + + +NU80 +#labelStyle + +-0.661674325319567,55.3317174278172 + + + + +NU81 + +Small Square NU81 Boundry Box +#Line2 + + +1 + +-0.739040978437907,55.3774722951501 +-0.736176070370461,55.4672967682938 +-0.578073062114413,55.4655622983866 +-0.581296164020215,55.3757436002068 +-0.739040978437907,55.3774722951501 + + + + + +NU81 +#labelStyle + +-0.658638519160638,55.4215488010058 + + + + +NU82 + +Small Square NU82 Boundry Box +#Line2 + + +1 + +-0.73617578304479,55.4673057515681 +-0.733294710916708,55.5571287983349 +-0.57483145387022,55.5553885266377 +-0.578072738865073,55.465571281082 +-0.73617578304479,55.4673057515681 + + + + + +NU82 +#labelStyle + +-0.655585603274765,55.5113787345532 + + + + +NU83 + +Small Square NU83 Boundry Box +#Line2 + + +1 + +-0.733294421968243,55.5571377814667 +-0.730397060861706,55.6469594027227 +-0.57157152021239,55.6452133027764 +-0.574831128795387,55.5553975091879 +-0.733294421968243,55.5571377814667 + + + + + +NU83 +#labelStyle + +-0.652515445627666,55.6012072292221 + + + + +NU84 + +Small Square NU84 Boundry Box +#Line2 + + +1 + +-0.730396770277891,55.6469683857119 +-0.727482993962386,55.7367885823278 +-0.568293119151557,55.7350366274624 +-0.571571193297941,55.6452222851814 +-0.730396770277891,55.6469683857119 + + + + + +NU84 +#labelStyle + +-0.649427912799478,55.6910342857789 + + + + +NU85 + +Small Square NU85 Boundry Box +#Line2 + + +1 + +-0.72748270173053,55.7367975651745 +-0.724552382645653,55.8266163380256 +-0.564996107202725,55.8248585013575 +-0.568292790383217,55.7350456097223 +-0.72748270173053,55.7367975651745 + + + + + +NU85 +#labelStyle + +-0.646322869966637,55.7808599049937 + + + + +NU86 + +Small Square NU86 Boundry Box +#Line2 + + +1 + +-0.724552088752931,55.82662532073 +-0.721605097990923,55.916442670696 +-0.561680339365634,55.9146789251261 +-0.564995776566072,55.8248674834724 +-0.724552088752931,55.82662532073 + + + + + +NU86 +#labelStyle + +-0.643200180883467,55.87068408764 + + + + +NU87 + +Small Square NU87 Boundry Box +#Line2 + + +1 + +-0.721604802424375,55.9164516532582 +-0.718641009712377,56.0062675812234 +-0.558345669104807,56.0044978994346 +-0.56168000684609,55.914687907096 +-0.721604802424375,55.9164516532582 + + + + + +NU87 +#labelStyle + +-0.640059707863479,55.9605068344946 + + + + +NU88 + +Small Square NU88 Boundry Box +#Line2 + + +1 + +-0.718640712458906,56.0062765636433 +-0.715659986140938,56.0960910704961 +-0.554991948329284,56.0943154249512 +-0.558345334687641,56.0045068812595 +-0.718640712458906,56.0062765636433 + + + + + +NU88 +#labelStyle + +-0.636901311760378,56.0503281463378 + + + + +NU89 + +Small Square NU89 Boundry Box +#Line2 + + +1 + +-0.715659687187306,56.0961000527739 +-0.712661894205953,56.1859131394067 +-0.55161902737204,56.184131502346 +-0.554991611999609,56.0943244066313 +-0.715659687187306,56.0961000527739 + + + + + +NU89 +#labelStyle + +-0.633724851948759,56.1401480239525 + + + + +NU90 + +Small Square NU90 Boundry Box +#Line2 + + +1 + +-0.5844858037463,55.285914283455 +-0.581280710271611,55.3757344343044 +-0.423553978408235,55.3738022790797 +-0.427115124512102,55.2839885532415 +-0.5844858037463,55.285914283455 + + + + + +NU90 +#labelStyle + +-0.504100856464002,55.3298898504393 + + + + +NU91 + +Small Square NU91 Boundry Box +#Line2 + + +1 + +-0.581280388830213,55.3757434171451 +-0.578057251108141,55.4655621147134 +-0.419972428736707,55.4636235047362 +-0.423553621258149,55.3738112612763 +-0.581280388830213,55.3757434171451 + + + + + +NU91 +#labelStyle + +-0.500707855902321,55.4197151216033 + + + + +NU92 + +Small Square NU92 Boundry Box +#Line2 + + +1 + +-0.578056927855208,55.4655710974087 +-0.574815606842232,55.5553883423501 +-0.416370676190356,55.5534432482895 +-0.419972069574083,55.4636324867847 +-0.578056927855208,55.4655710974087 + + + + + +NU92 +#labelStyle + +-0.497295734616199,55.509538925442 + + + + +NU93 + +Small Square NU93 Boundry Box +#Line2 + + +1 + +-0.574815281763787,55.5553973249002 +-0.571555636959257,55.6452131178717 +-0.41274856469076,55.6432615101629 +-0.416370314999667,55.5534522301897 +-0.574815281763787,55.5553973249002 + + + + + +NU93 +#labelStyle + +-0.493864345077089,55.5993612624979 + + + + +NU94 + +Small Square NU94 Boundry Box +#Line2 + + +1 + +-0.571555310041175,55.6452221002766 +-0.568277199468273,55.7350364419376 +-0.409105936520015,55.7330782907801 +-0.412748201456316,55.643270491915 +-0.571555310041175,55.6452221002766 + + + + + +NU94 +#labelStyle + +-0.490413538208579,55.6891821333149 + + + + +NU95 + +Small Square NU95 Boundry Box +#Line2 + + +1 + +-0.56827687069628,55.7350454241975 +-0.564980150882697,55.8248583152099 +-0.405442632299272,55.8228935905647 +-0.409105571225962,55.7330872723841 +-0.56827687069628,55.7350454241975 + + + + + +NU95 +#labelStyle + +-0.486943163366152,55.7790015384384 + + + + +NU96 + +Small Square NU96 Boundry Box +#Line2 + + +1 + +-0.56497982024237,55.8248672973248 +-0.561664346200659,55.9146787383528 +-0.401758490966933,55.9127074099402 +-0.405442264929589,55.8229025720207 +-0.56497982024237,55.8248672973248 + + + + + +NU96 +#labelStyle + +-0.483453068316623,55.8688194784149 + + + + +NU97 + +Small Square NU97 Boundry Box +#Line2 + + +1 + +-0.561664013677421,55.9146877203227 +-0.558329638885059,56.0044977120327 +-0.398053349756501,56.0025197493293 +-0.401758121505428,55.9127163912481 +-0.561664013677421,55.9146877203227 + + + + + +NU97 +#labelStyle + +-0.479943099217258,55.9586359537917 + + + + +NU98 + +Small Square NU98 Boundry Box +#Line2 + + +1 + +-0.558329304464178,56.0045066938576 +-0.554975880843296,56.0943152369178 +-0.394327044174083,56.0923306091545 +-0.398052978186812,56.0025287304893 +-0.558329304464178,56.0045066938576 + + + + + +NU98 +#labelStyle + +-0.476413100594553,56.0484509651171 + + + + +NU99 + +Small Square NU99 Boundry Box +#Line2 + + +1 + +-0.554975544509884,56.0943242185979 +-0.551602922406686,56.1841313136782 +-0.39057940797553,56.1821399898373 +-0.394326670479672,56.0923395901665 +-0.554975544509884,56.0943242185979 + + + + + +NU99 +#labelStyle + +-0.472862915322688,56.1382645129398 + + + + + +NW + +Large Square NW Boundry Box +#Line1 + + +1 + +-6.61364946634397,54.3072066047906 +-6.7168655893739,55.2028701861084 +-5.14841192453461,55.2534973706836 +-5.07934794878111,54.3561896097288 +-6.61364946634397,54.3072066047906 + + + + + +NW00 + +Small Square NW00 Boundry Box +#Line2 + + +1 + +-6.61364946634397,54.3072066047906 +-6.62371634425739,54.3967767622546 +-6.47018578637722,54.4025692494929 +-6.46045040461897,54.3129801141649 +-6.61364946634397,54.3072066047906 + + + + + +NW00 +#labelStyle + +-6.54199332623938,54.3549125777125 + + + + +NW01 + +Small Square NW01 Boundry Box +#Line2 + + +1 + +-6.6237173538035,54.3967857200356 +-6.63383951554825,54.4863532643501 +-6.47997562598335,54.4921648137511 +-6.4701867626805,54.402578209176 +-6.6237173538035,54.3967857200356 + + + + + +NW01 +#labelStyle + +-6.55192262643943,54.4444999779483 + + + + +NW02 + +Small Square NW02 Boundry Box +#Line2 + + +1 + +-6.63384053064381,54.4863622218694 +-6.64401838782945,54.5759271447522 +-6.48981935089866,54.5817578393534 +-6.47997660765517,54.4921737731807 +-6.63384053064381,54.4863622218694 + + + + + +NW02 +#labelStyle + +-6.56190651721763,54.5340848023444 + + + + +NW03 + +Small Square NW03 Boundry Box +#Line2 + + +1 + +-6.64401940851583,54.5759361020088 +-6.654253376922,54.6654983950921 +-6.49971736359794,54.6713483185706 +-6.48982033797907,54.5817667985288 +-6.64401940851583,54.5759361020088 + + + + + +NW03 +#labelStyle + +-6.57194540566922,54.6236670428956 + + + + +NW04 + +Small Square NW04 Boundry Box +#Line2 + + +1 + +-6.65425440324099,54.6655073520854 +-6.66454490286986,54.7550670069147 +-6.50967007064602,54.760936243593 +-6.49971835612739,54.671357277491 +-6.65425440324099,54.6655073520854 + + + + + +NW04 +#labelStyle + +-6.58203970302012,54.7132466915142 + + + + +NW05 + +Small Square NW05 Boundry Box +#Line2 + + +1 + +-6.6645459348637,54.7550759636437 +-6.67489338999328,54.8446329716763 +-6.51967788274935,54.8505216065289 +-6.50967106866537,54.7609452022575 +-6.6645459348637,54.7550759636437 + + + + + +NW05 +#labelStyle + +-6.59218982467891,54.8028237400274 + + + + +NW06 + +Small Square NW06 Boundry Box +#Line2 + + +1 + +-6.67489442770459,54.8446419281401 +-6.68529926694301,54.9341962807447 +-6.52974121480866,54.940104399405 +-6.51967888629988,54.8505305649368 +-6.67489442770459,54.8446419281401 + + + + + +NW06 +#labelStyle + +-6.60239619028988,54.8923981801782 + + + + +NW07 + +Small Square NW07 Boundry Box +#Line2 + + +1 + +-6.68530031041488,54.9342052369426 +-6.69576296675518,55.0237569253978 +-6.53986048597209,55.0296846141643 +-6.52974222393208,54.9401133575555 +-6.68530031041488,54.9342052369426 + + + + + +NW07 +#labelStyle + +-6.61265922378672,54.9819700036231 + + + + +NW08 + +Small Square NW08 Boundry Box +#Line2 + + +1 + +-6.69576401603114,55.0237658813288 +-6.70628492690711,55.1133148968214 +-6.55003611968929,55.1192622426647 +-6.53986150071052,55.0296935720566 +-6.69576401603114,55.0237658813288 + + + + + +NW08 +#labelStyle + +-6.62297935344697,55.0715392019312 + + + + +NW09 + +Small Square NW09 Boundry Box +#Line2 + + +1 + +-6.70628598203113,55.1133238524846 +-6.7168655893739,55.2028701861084 +-6.5602685437663,55.2088372766777 +-6.5500371400853,55.1192712002979 +-6.70628598203113,55.1133238524846 + + + + + +NW09 +#labelStyle + +-6.6333570119474,55.1611057665823 + + + + +NW10 + +Small Square NW10 Boundry Box +#Line2 + + +1 + +-6.46043508049634,54.312980681864 +-6.47017042908172,54.4025698190583 +-6.31658639292402,54.4081674511595 +-6.3071829348426,54.3185599694296 +-6.46043508049634,54.312980681864 + + + + + +NW10 +#labelStyle + +-6.38858651591856,54.3605988752062 + + + + +NW11 + +Small Square NW11 Boundry Box +#Line2 + + +1 + +-6.47017140538167,54.4025787787416 +-6.4799602353312,54.4921653851911 +-6.32604246911233,54.4977814433642 +-6.3165873359415,54.4081764126814 +-6.47017140538167,54.4025787787416 + + + + + +NW11 +#labelStyle + +-6.3981831540095,54.4502049809289 + + + + +NW12 + +Small Square NW12 Boundry Box +#Line2 + + +1 + +-6.47996121699968,54.4921743446209 +-6.48980392670807,54.5817584126763 +-6.33555061070832,54.5873929772391 +-6.32604341731703,54.4977904046406 +-6.47996121699968,54.4921743446209 + + + + + +NW12 +#labelStyle + +-6.40783257141546,54.5398085921868 + + + + +NW13 + +Small Square NW13 Boundry Box +#Line2 + + +1 + +-6.48980491378512,54.5817673718518 +-6.49970190568579,54.6713488937845 +-6.34511120678838,54.677002045674 +-6.33555156413895,54.5874019382694 +-6.48980491378512,54.5817673718518 + + + + + +NW13 +#labelStyle + +-6.41753516192456,54.6294097016008 + + + + +NW14 + +Small Square NW14 Boundry Box +#Line2 + + +1 + +-6.49970289821186,54.671357852705 +-6.50965457882784,54.7609368207061 +-6.35472465038512,54.766608641484 +-6.34511216548404,54.6770110064573 +-6.49970289821186,54.671357852705 + + + + + +NW14 +#labelStyle + +-6.42729132332304,54.7190083017153 + + + + +NW15 + +Small Square NW15 Boundry Box +#Line2 + + +1 + +-6.50965557684379,54.7609457793709 +-6.51966235683929,54.8505221855497 +-6.36439133853744,54.8562127574088 +-6.35472561438532,54.7666176020197 +-6.50965557684379,54.7609457793709 + + + + + +NW15 +#labelStyle + +-6.4371014574456,54.8086043849961 + + + + +NW16 + +Small Square NW16 Boundry Box +#Line2 + + +1 + +-6.5196633603864,54.8505311439578 +-6.52972565461949,54.9401049803419 +-6.37411167234139,54.9458143861128 +-6.36439230788208,54.8562217176961 +-6.5196633603864,54.8505311439578 + + + + + +NW16 +#labelStyle + +-6.44696597022682,54.898197943831 + + + + +NW17 + +Small Square NW17 Boundry Box +#Line2 + + +1 + +-6.52972666373947,54.9401139384926 +-6.5398448913152,55.0296851970258 +-6.38388605700167,55.0354135201829 +-6.37411264707079,54.945823346151 +-6.52972666373947,54.9401139384926 + + + + + +NW17 +#labelStyle + +-6.45688527175316,54.9877889705281 + + + + +NW18 + +Small Square NW18 Boundry Box +#Line2 + + +1 + +-6.53984590605018,55.0296941549183 +-6.55002049037467,55.1192628274593 +-6.39371490188398,55.1250101521276 +-6.38388703715656,55.0354224799713 +-6.53984590605018,55.0296941549183 + + + + + +NW18 +#labelStyle + +-6.46685977631567,55.0773774573144 + + + + +NW19 + +Small Square NW19 Boundry Box +#Line2 + + +1 + +-6.5500215107672,55.1192717850928 +-6.56025287960251,55.2088378634142 +-6.40359862056815,55.2146042743756 +-6.39371588750551,55.1250191116654 +-6.5500215107672,55.1192717850928 + + + + + +NW19 +#labelStyle + +-6.47688990246368,55.1669633963346 + + + + +NW20 + +Small Square NW20 Boundry Box +#Line2 + + +1 + +-6.30716760550066,54.3185605176972 +-6.31657103037041,54.4081680012301 +-6.1629353223981,54.413570630761 +-6.15386416924796,54.323945437021 +-6.30716760550066,54.3185605176972 + + + + + +NW20 +#labelStyle + +-6.23512731927503,54.3660905409671 + + + + +NW21 + +Small Square NW21 Boundry Box +#Line2 + + +1 + +-6.31657197338456,54.4081769627521 +-6.32602707316291,54.4977819952456 +-6.17205725001793,54.5032024137476 +-6.16293623209145,54.4135795940581 +-6.31657197338456,54.4081769627521 + + + + + +NW21 +#labelStyle + +-6.24439090543576,54.4557147168674 + + + + +NW22 + +Small Square NW22 Boundry Box +#Line2 + + +1 + +-6.32602802136426,54.4977909565222 +-6.33553518118089,54.5873935309394 +-6.18122941923713,54.5928318160013 +-6.17205816471679,54.503211376807 +-6.32602802136426,54.4977909565222 + + + + + +NW22 +#labelStyle + +-6.25370545570019,54.5453364769633 + + + + +NW23 + +Small Square NW23 Boundry Box +#Line2 + + +1 + +-6.33553613460815,54.5874024919698 +-6.3450957434994,54.6770026012011 +-6.19045220568438,54.6824588310098 +-6.18123033897888,54.5928407788223 +-6.33553613460815,54.5874024919698 + + + + + +NW23 +#labelStyle + +-6.26307135049957,54.6349558144813 + + + + +NW24 + +Small Square NW24 Boundry Box +#Line2 + + +1 + +-6.34509670219168,54.6770115619846 +-6.35470915314972,54.7666091988459 +-6.1997259888101,54.7720834521925 +-6.19045313050676,54.6824677935917 +-6.34509670219168,54.6770115619846 + + + + + +NW24 +#labelStyle + +-6.27248897413001,54.7245727225771 + + + + +NW25 + +Small Square NW25 Boundry Box +#Line2 + + +1 + +-6.35471011714652,54.7666181593818 +-6.36437580716936,54.8562133166136 +-6.20905115193483,54.8617056728993 +-6.19972691875125,54.7720924145347 +-6.35471011714652,54.7666181593818 + + + + + +NW25 +#labelStyle + +-6.28195871480113,54.8141871943345 + + + + +NW26 + +Small Square NW26 Boundry Box +#Line2 + + +1 + +-6.36437677651058,54.8562222769012 +-6.37409610665298,54.9458149471687 +-6.21842808229841,54.9513254864111 +-6.20905208703328,54.8617146350012 +-6.36437677651058,54.8562222769012 + + + + + +NW26 +#labelStyle + +-6.29148096468577,54.9037992227651 + + + + +NW27 + +Small Square NW27 Boundry Box +#Line2 + + +1 + +-6.37409708137895,54.9458239072071 +-6.38387045680391,55.035414083098 +-6.22785717110975,55.0409428859373 +-6.21842902259308,54.9513344482718 +-6.37409708137895,54.9458239072071 + + + + + +NW27 +#labelStyle + +-6.30105611997034,54.9934088008071 + + + + +NW28 + +Small Square NW28 Boundry Box +#Line2 + + +1 + +-6.38387143695535,55.0354230428866 +-6.39369926698642,55.1250107169102 +-6.23733881359746,55.1305578646155 +-6.22785811663996,55.0409518475563 +-6.38387143695535,55.0354230428866 + + + + + +NW28 +#labelStyle + +-6.31068458090582,55.083015921324 + + + + +NW29 + +Small Square NW29 Boundry Box +#Line2 + + +1 + +-6.39370025260447,55.1250196764482 +-6.40358295077892,55.2146048410341 +-6.24687340906119,55.2201704155096 +-6.23733976440294,55.130566825992 +-6.39370025260447,55.1250196764482 + + + + + +NW29 +#labelStyle + +-6.32036675185964,55.1726205771035 + + + + +NW30 + +Small Square NW30 Boundry Box +#Line2 + + +1 + +-6.15384883486624,54.3239459658426 +-6.16291995476726,54.4135711613221 +-6.00923438529827,54.418778645896 +-6.0004959051516,54.3291363755046 +-6.15384883486624,54.3239459658426 + + + + + +NW30 +#labelStyle + +-6.08161753830173,54.3713874305622 + + + + +NW31 + +Small Square NW31 Boundry Box +#Line2 + + +1 + +-6.16292086445728,54.4135801246194 +-6.17204184895342,54.5032029460559 +-6.01802179251376,54.5084275815242 +-6.00923526163051,54.4187876109046 +-6.16292086445728,54.4135801246194 + + + + + +NW31 +#labelStyle + +-6.09054769593627,54.4610290403424 + + + + +NW32 + +Small Square NW32 Boundry Box +#Line2 + + +1 + +-6.17204276364893,54.5032119091154 +-6.18121398455638,54.5928323500644 +-6.02685761374632,54.5980742112774 +-6.01802267366941,54.5084365463026 +-6.17204276364893,54.5032119091154 + + + + + +NW32 +#labelStyle + +-6.09952699864664,54.5506683102549 + + + + +NW33 + +Small Square NW33 Boundry Box +#Line2 + + +1 + +-6.18121490429475,54.5928413128855 +-6.19043673720346,54.6824593668353 +-6.03574221112933,54.6877185292208 +-6.02685849976143,54.5980831758249 +-6.18121490429475,54.5928413128855 + + + + + +NW33 +#labelStyle + +-6.1085558134592,54.6403052341107 + + + + +NW34 + +Small Square NW34 Boundry Box +#Line2 + + +1 + +-6.19043766202245,54.6824683294174 +-6.19971048634374,54.7720839897883 +-6.04467595048265,54.777360529357 +-6.03574310204028,54.6877274935367 +-6.19043766202245,54.6824683294174 + + + + + +NW34 +#labelStyle + +-6.11763451113107,54.7299398056566 + + + + +NW35 + +Small Square NW35 Boundry Box +#Line2 + + +1 + +-6.19971141628148,54.7720929521306 +-6.20903561529638,54.8617062122732 +-6.05365920135938,54.8670002056251 +-6.04467684632622,54.7773694934409 +-6.19971141628148,54.7720929521306 + + + + + +NW35 +#labelStyle + +-6.12676346619721,54.819572018573 + + + + +NW36 + +Small Square NW36 Boundry Box +#Line2 + + +1 + +-6.20903655039139,54.8617151743752 +-6.21841251129981,54.9513260275708 +-6.0626923370933,54.9566375519009 +-6.05366010217271,54.8670091694763 +-6.20903655039139,54.8617151743752 + + + + + +NW36 +#labelStyle + +-6.13594305701844,54.9092018664741 + + + + +NW37 + +Small Square NW37 Boundry Box +#Line2 + + +1 + +-6.21841345159103,54.9513349894318 +-6.22784156556157,55.0409434288909 +-6.07177573484694,55.0462725619951 +-6.0626932429139,54.9566465155188 +-6.21841345159103,54.9513349894318 + + + + + +NW37 +#labelStyle + +-6.14517366583003,54.9988293429072 + + + + +NW38 + +Small Square NW38 Boundry Box +#Line2 + + +1 + +-6.22784251108832,55.0409523905101 +-6.23732317330884,55.1305584093708 +-6.08090977566045,55.1359052296523 +-6.07177664571274,55.0462815253791 +-6.22784251108832,55.0409523905101 + + + + + +NW38 +#labelStyle + +-6.15445567879103,55.0884544413505 + + + + +NW39 + +Small Square NW39 Boundry Box +#Line2 + + +1 + +-6.23732412411083,55.1305673707476 +-6.24685773383983,55.2201709620748 +-6.09009484450114,55.2255355485499 +-6.08091069160974,55.1359141928017 +-6.23732412411083,55.1305673707476 + + + + + +NW39 +#labelStyle + +-6.1637894860343,55.178077155213 + + + + +NW40 + +Small Square NW40 Boundry Box +#Line2 + + +1 + +-6.00048056591003,54.3291368848665 +-6.00921901277143,54.4187791569337 +-5.85548539584781,54.4237913592237 +-5.8470799435484,54.3341326484726 +-6.00048056591003,54.3291368848665 + + + + + +NW40 +#labelStyle + +-5.92805897875803,54.3764894045952 + + + + +NW41 + +Small Square NW41 Boundry Box +#Line2 + + +1 + +-6.00921988910033,54.4187881219425 +-6.01800638651673,54.5084280942452 +-5.86393792418475,54.5134568084112 +-5.85548623878327,54.4238003258801 +-6.00921988910033,54.4187881219425 + + + + + +NW41 +#labelStyle + +-5.93665534454285,54.4661478110034 + + + + +NW42 + +Small Square NW42 Boundry Box +#Line2 + + +1 + +-6.01800726766903,54.5084370590238 +-6.02684217409617,54.5980747256891 +-5.87243703531608,54.6031200238338 +-5.86393877176117,54.5134657748445 +-6.01800726766903,54.5084370590238 + + + + + +NW42 +#labelStyle + +-5.94529903269152,54.5558039507472 + + + + +NW43 + +Small Square NW43 Boundry Box +#Line2 + + +1 + +-6.0268430601079,54.5980836902367 +-6.03572673764175,54.6877190453305 +-5.88098307783387,54.6927810001133 +-5.87243788756816,54.6031289900435 +-6.0268430601079,54.5980836902367 + + + + + +NW43 +#labelStyle + +-5.95399039677902,54.6454578182021 + + + + +NW44 + +Small Square NW44 Boundry Box +#Line2 + + +1 + +-6.03572762854931,54.6877280096467 +-6.04466044297198,54.7773610471723 +-5.88957640388077,54.7824397318147 +-5.88098393479663,54.6927899660988 +-6.03572762854931,54.6877280096467 + + + + + +NW44 +#labelStyle + +-5.96272979397635,54.7351094076848 + + + + +NW45 + +Small Square NW45 Boundry Box +#Line2 + + +1 + +-6.04466133881214,54.7773700112564 +-6.05364365963858,54.8670007251535 +-5.89821736919503,54.8720962134448 +-5.88957726558961,54.7824486975754 +-6.04466133881214,54.7773700112564 + + + + + +NW45 +#labelStyle + +-5.97151758509595,54.8247587134511 + + + + +NW46 + +Small Square NW46 Boundry Box +#Line2 + + +1 + +-6.05364456044848,54.8670096890048 +-6.06267676097395,54.9566380731499 +-5.90690633315629,54.961750439453 +-5.89821823568571,54.8721051789802 +-6.05364456044848,54.8670096890048 + + + + + +NW46 +#labelStyle + +-5.98035413463799,54.9144057296969 + + + + +NW47 + +Small Square NW47 Boundry Box +#Line2 + + +1 + +-6.0626776667911,54.956647036768 +-6.0717601241392,55.0462730849724 +-5.91564365883186,55.0514024042296 +-5.90690720446493,54.9617594047627 +-6.0626776667911,54.956647036768 + + + + + +NW47 +#labelStyle + +-5.98923981083728,55.0040504505564 + + + + +NW48 + +Small Square NW48 Boundry Box +#Line2 + + +1 + +-6.07176103500153,55.0462820483565 +-6.08089413017305,55.1359057543655 +-5.92442971302381,55.1410521021042 +-5.91564453499495,55.0514113693128 +-6.07176103500153,55.0462820483565 + + + + + +NW48 +#labelStyle + +-5.99817498571078,55.0936928701016 + + + + +NW49 + +Small Square NW49 Boundry Box +#Line2 + + +1 + +-6.08089504611885,55.1359147175151 +-6.09007916404139,55.2255360750068 +-5.93326486631677,55.2306995273457 +-5.92443059407822,55.1410610669604 +-6.08089504611885,55.1359147175151 + + + + + +NW49 +#labelStyle + +-6.00716003510599,55.1833329823403 + + + + +NW50 + +Small Square NW50 Boundry Box +#Line2 + + +1 + +-5.84706459962725,54.3341331383613 +-5.85547001860659,54.4237918507245 +-5.70169017186279,54.4286086384765 +-5.6936180889814,54.3389341245565 +-5.84706459962725,54.3341331383613 + + + + + +NW50 +#labelStyle + +-5.77445345003924,54.38139632872 + + + + +NW51 + +Small Square NW51 Boundry Box +#Line2 + + +1 + +-5.8554708615387,54.423800817381 +-5.86392251343815,54.5134573015314 +-5.7098074762539,54.5182899612334 +-5.70169098136713,54.4286176067168 +-5.8554708615387,54.423800817381 + + + + + +NW51 +#labelStyle + +-5.78271567396899,54.4710708935836 + + + + +NW52 + +Small Square NW52 Boundry Box +#Line2 + + +1 + +-5.86392336101122,54.5134662679649 +-5.87242159088082,54.6031205185805 +-5.71796952871058,54.607969119579 +-5.70980829021641,54.5182989292575 +-5.86392336101122,54.5134662679649 + + + + + +NW52 +#labelStyle + +-5.79102339399959,54.5607432622445 + + + + +NW53 + +Small Square NW53 Boundry Box +#Line2 + + +1 + +-5.87242244312952,54.6031294847903 +-5.88096759952528,54.6927814964935 +-5.72617666423927,54.6976461086709 +-5.7179703471646,54.6079780873865 +-5.87242244312952,54.6031294847903 + + + + + +NW53 +#labelStyle + +-5.79937695020981,54.6504134296217 + + + + +NW54 + +Small Square NW54 Boundry Box +#Line2 + + +1 + +-5.88096845648465,54.6927904624792 +-5.88956089151283,54.7824402298356 +-5.73442922126042,54.7873209236151 +-5.72617748721845,54.6976550762612 +-5.88096845648465,54.6927904624792 + + + + + +NW54 +#labelStyle + +-5.80777668613906,54.7400813905807 + + + + +NW55 + +Small Square NW55 Boundry Box +#Line2 + + +1 + +-5.88956175321826,54.7824491955965 +-5.89820182258033,54.8720967131137 +-5.7427275416518,54.876993559465 +-5.73443004879879,54.7873298909877 +-5.88956175321826,54.7824491955965 + + + + + +NW55 +#labelStyle + +-5.81622294883108,54.8297471399318 + + + + +NW56 + +Small Square NW56 Boundry Box +#Line2 + + +1 + +-5.89820268906758,54.8721056786494 +-5.90689075210603,54.9617509407773 +-5.7510719707925,54.9666640112221 +-5.74272837378372,54.8770025266195 +-5.89820268906758,54.8721056786494 + + + + + +NW56 +#labelStyle + +-5.82471608887851,54.9194106724309 + + + + +NW57 + +Small Square NW57 Boundry Box +#Line2 + + +1 + +-5.90689162341122,54.9617599060871 +-5.91562804315581,55.0514029072164 +-5.75946285760755,55.056332273834 +-5.75107280755269,54.9666729781579 +-5.90689162341122,54.9617599060871 + + + + + +NW57 +#labelStyle + +-5.8332564604681,55.0090719827779 + + + + +NW58 + +Small Square NW58 Boundry Box +#Line2 + + +1 + +-5.91562891931543,55.0514118722998 +-5.92441406253033,55.1410526067611 +-5.76790055461316,55.145998342194 +-5.75946369903107,55.0563412405507 +-5.91562891931543,55.0514118722998 + + + + + +NW58 +#labelStyle + +-5.84184442142643,55.098731065616 + + + + +NW59 + +Small Square NW59 Boundry Box +#Line2 + + +1 + +-5.92441494358125,55.1410615716175 +-5.93324918081277,55.2307000336801 +-5.77638541796271,55.2356622111398 +-5.76790140073544,55.146007308691 +-5.92441494358125,55.1410615716175 + + + + + +NW59 +#labelStyle + +-5.85048033326651,55.1883879155306 + + + + +NW60 + +Small Square NW60 Boundry Box +#Line2 + + +1 + +-5.69360274056131,54.338934594959 +-5.70167479008912,54.4286091104275 +-5.54785053461961,54.4332303564726 +-5.54011214941107,54.3435406774392 +-5.69360274056131,54.338934594959 + + + + + +NW60 +#labelStyle + +-5.62080276504535,54.3861080736528 + + + + +NW61 + +Small Square NW61 Boundry Box +#Line2 + + +1 + +-5.70167559959012,54.4286180786679 +-5.70979206094103,54.5182904347397 +-5.55563228344819,54.5229269119356 +-5.54785131065984,54.4332393262329 +-5.70167559959012,54.4286180786679 + + + + + +NW61 +#labelStyle + +-5.62873051047698,54.4757981579131 + + + + +NW62 + +Small Square NW62 Boundry Box +#Line2 + + +1 + +-5.70979287490018,54.5182994027639 +-5.71795407967487,54.6079695946474 +-5.56345694224227,54.6126213695763 +-5.55563306376346,54.5229358814863 +-5.70979287490018,54.5182994027639 + + + + + +NW62 +#labelStyle + +-5.63670192232916,54.5654861136822 + + + + +NW63 + +Small Square NW63 Boundry Box +#Line2 + + +1 + +-5.7179548981255,54.607978562455 +-5.7261611812957,54.6976465853083 +-5.57132483238004,54.7023137250668 +-5.56345772686455,54.612630338917 +-5.7179548981255,54.607978562455 + + + + + +NW63 +#labelStyle + +-5.64471732714136,54.6551719364015 + + + + +NW64 + +Small Square NW64 Boundry Box +#Line2 + + +1 + +-5.72616200427149,54.6976555528987 +-5.73441370422263,54.7873214018283 +-5.57923627851648,54.7920039740329 +-5.57132562134163,54.7023226941971 +-5.72616200427149,54.6976555528987 + + + + + +NW64 +#labelStyle + +-5.65277705477757,54.7448556214645 + + + + +NW65 + +Small Square NW65 Boundry Box +#Line2 + + +1 + +-5.73441453175758,54.7873303692011 +-5.74271199033201,54.8769940392611 +-5.58719160862492,54.8816921120533 +-5.57923707185002,54.7920129429524 +-5.73441453175758,54.7873303692011 + + + + + +NW65 +#labelStyle + +-5.66088143846836,54.8345371642146 + + + + +NW66 + +Small Square NW66 Boundry Box +#Line2 + + +1 + +-5.74271282246049,54.8770030064157 +-5.75105638500155,54.966664492608 +-5.59519115403933,54.9713781346595 +-5.58719240636337,54.8817010807613 +-5.74271282246049,54.8770030064157 + + + + + +NW66 +#labelStyle + +-5.66903081485371,54.924216559946 + + + + +NW67 + +Small Square NW67 Boundry Box +#Line2 + + +1 + +-5.75105722175828,54.9666734595439 +-5.75944723715485,55.0563327568169 +-5.60323524949712,55.0610620373352 +-5.59519195621599,54.9713871031558 +-5.75105722175828,54.9666734595439 + + + + + +NW67 +#labelStyle + +-5.67722552402645,55.0138938039029 + + + + +NW68 + +Small Square NW68 Boundry Box +#Line2 + + +1 + +-5.75944807857489,55.0563417235336 +-5.76788489930668,55.1459988267809 +-5.61132423318265,55.1507438155147 +-5.60323605614564,55.0610710056193 +-5.75944807857489,55.0563417235336 + + + + + +NW68 +#labelStyle + +-5.68546590957625,55.1035688912777 + + + + +NW69 + +Small Square NW69 Boundry Box +#Line2 + + +1 + +-5.76788574542547,55.146007793278 +-5.776369727609,55.2356626973379 +-5.61945844677139,55.2404234645823 +-5.61132504433702,55.1507527835861 +-5.76788574542547,55.146007793278 + + + + + +NW69 +#labelStyle + +-5.69375231863437,55.1932418172109 + + + + +NW70 + +Small Square NW70 Boundry Box +#Line2 + + +1 + +-5.54009679667299,54.3435411283433 +-5.54783514849581,54.4332308088612 +-5.39396830872204,54.4376563911277 +-5.38656393608383,54.3479521858672 +-5.54009679667299,54.3435411283433 + + + + + +NW70 +#labelStyle + +-5.46710874004911,54.3906245151844 + + + + +NW71 + +Small Square NW71 Boundry Box +#Line2 + + +1 + +-5.54783592453269,54.4332397786217 +-5.55561686375269,54.5229273658155 +-5.40141418386389,54.5273675375949 +-5.39396905126651,54.4376653623439 +-5.54783592453269,54.4332397786217 + + + + + +NW71 +#labelStyle + +-5.47470168374433,54.4803294789307 + + + + +NW72 + +Small Square NW72 Boundry Box +#Line2 + + +1 + +-5.55561764406459,54.5229363353663 +-5.56344148879111,54.6126218249539 +-5.40890112763549,54.617076650056 +-5.40141493049994,54.5273765086079 +-5.55561764406459,54.5229363353663 + + + + + +NW72 +#labelStyle + +-5.48233646089695,54.5700323791389 + + + + +NW73 + +Small Square NW73 Boundry Box +#Line2 + + +1 + +-5.56344227341,54.6126307942947 +-5.57130934498788,54.7023141819486 +-5.41642944774585,54.7067837246764 +-5.40890187839374,54.6170856208654 +-5.56344227341,54.6126307942947 + + + + + +NW73 +#labelStyle + +-5.49001338446562,54.6597332117521 + + + + +NW74 + +Small Square NW74 Boundry Box +#Line2 + + +1 + +-5.57131013394606,54.7023231510791 +-5.5792207569966,54.7920044324257 +-5.42399945504289,54.7964887575807 +-5.41643020265722,54.7067926952819 +-5.57131013394606,54.7023231510791 + + + + + +NW74 +#labelStyle + +-5.49773277059685,54.7494319726702 + + + + +NW75 + +Small Square NW75 Boundry Box +#Line2 + + +1 + +-5.57922155032672,54.7920134013453 +-5.58717605278921,54.8816925719636 +-5.43161146355331,54.8861917448506 +-5.42400021413863,54.7964977279817 +-5.57922155032672,54.7920134013453 + + + + + +NW75 +#labelStyle + +-5.50549493866526,54.8391286577484 + + + + +NW76 + +Small Square NW76 Boundry Box +#Line2 + + +1 + +-5.58717685052422,54.8817015406718 +-5.59517556369827,54.9713785960941 +-5.43926579052309,54.9758926825267 +-5.43161222686498,54.8862007150469 +-5.58717685052422,54.8817015406718 + + + + + +NW76 +#labelStyle + +-5.51330021131479,54.9288232627978 + + + + +NW77 + +Small Square NW77 Boundry Box +#Line2 + + +1 + +-5.59517636587147,54.9713875645906 +-5.60321962445977,55.0610625003009 +-5.44696275645856,55.0655915666062 +-5.43926655808258,54.9759016525179 +-5.59517636587147,54.9713875645906 + + + + + +NW77 +#labelStyle + +-5.52114891450029,55.0185157835846 + + + + +NW78 + +Small Square NW78 Boundry Box +#Line2 + + +1 + +-5.60322043110481,55.0610714685852 +-5.61130857325665,55.1507442800183 +-5.45470268516804,55.1552883930423 +-5.44696352829808,55.0656005363918 +-5.60322043110481,55.0610714685852 + + + + + +NW78 +#labelStyle + +-5.52904137752976,55.1082062158289 + + + + +NW79 + +Small Square NW79 Boundry Box +#Line2 + + +1 + +-5.61130938440752,55.1507532480899 +-5.61944275176291,55.2404239306308 +-5.46248590380424,55.2449831577437 +-5.45470346132015,55.1552973626219 +-5.61130938440752,55.1507532480899 + + + + + +NW79 +#labelStyle + +-5.53697793310732,55.1978945552036 + + + + +NW80 + +Small Square NW80 Boundry Box +#Line2 + + +1 + +-5.38654857920906,54.347952617261 +-5.39395291843071,54.437656823942 +-5.2400453219674,54.4418866254664 +-5.2329752634,54.3521685336616 +-5.38654857920906,54.347952617261 + + + + + +NW80 +#labelStyle + +-5.31337319456344,54.394945534192 + + + + +NW81 + +Small Square NW81 Boundry Box +#Line2 + + +1 + +-5.39395366097183,54.4376657951584 +-5.40139875996974,54.5273679718363 +-5.24715501883118,54.531611720432 +-5.2400460309858,54.4418955980745 +-5.39395366097183,54.4376657951584 + + + + + +NW81 +#labelStyle + +-5.32063102672957,54.4846647366961 + + + + +NW82 + +Small Square NW82 Boundry Box +#Line2 + + +1 + +-5.40139950660242,54.5273769428494 +-5.40888566995422,54.6170770857306 +-5.25430393988943,54.621334842427 +-5.2471557317574,54.5316206928429 +-5.40139950660242,54.5273769428494 + + + + + +NW82 +#labelStyle + +-5.32792885624211,54.5743819378491 + + + + +NW83 + +Small Square NW83 Boundry Box +#Line2 + + +1 + +-5.40888642070908,54.6170860565401 +-5.4164139560918,54.7067841617906 +-5.26149237914274,54.7110559880894 +-5.25430465675272,54.6213438146404 +-5.40888642070908,54.6170860565401 + + + + + +NW83 +#labelStyle + +-5.33526698243909,54.6640971340745 + + + + +NW84 + +Small Square NW84 Boundry Box +#Line2 + + +1 + +-5.41641471099977,54.7067931323961 +-5.42398392922903,54.7964891961406 +-5.26872063359214,54.8007751540205 +-5.26149309997265,54.711064960105 +-5.41641471099977,54.7067931323961 + + + + + +NW84 +#labelStyle + +-5.34264570770912,54.7538103217576 + + + + +NW85 + +Small Square NW85 Boundry Box +#Line2 + + +1 + +-5.42398468832134,54.7964981665419 +-5.43159590339119,54.8861921848629 +-5.27598900327723,54.8904923367841 +-5.26872135841852,54.800784125838 +-5.42398468832134,54.7964981665419 + + + + + +NW85 +#labelStyle + +-5.35006533752991,54.8435214972438 + + + + +NW86 + +Small Square NW86 Boundry Box +#Line2 + + +1 + +-5.43159666669941,54.8862011550593 +-5.43925019582287,54.9758931239976 +-5.28329779131498,54.9802075329072 +-5.27598973213025,54.8905013084031 +-5.43159666669941,54.8862011550593 + + + + + +NW86 +#labelStyle + +-5.35752618050768,54.9332306568393 + + + + +NW87 + +Small Square NW87 Boundry Box +#Line2 + + +1 + +-5.43925096337889,54.975902093989 +-5.44694712702895,55.0655920095423 +-5.29064730393889,55.0699207388788 +-5.28329852422509,54.9802165043274 +-5.43925096337889,54.975902093989 + + + + + +NW87 +#labelStyle + +-5.36502854841702,55.0229377968106 + + + + +NW88 + +Small Square NW88 Boundry Box +#Line2 + + +1 + +-5.44694789886499,55.065600979328 +-5.45468702081633,55.1552888374501 +-5.29803785053893,55.1596319511489 +-5.29064804093687,55.0699297100998 +-5.44694789886499,55.065600979328 + + + + + +NW88 +#labelStyle + +-5.37257275624136,55.1126429133827 + + + + +NW89 + +Small Square NW89 Boundry Box +#Line2 + + +1 + +-5.45468779696493,55.1552978070298 +-5.46247020433626,55.2449836036298 +-5.30546974370203,55.2493411661278 +-5.29803859165589,55.1596409221703 +-5.45468779696493,55.1552978070298 + + + + + +NW89 +#labelStyle + +-5.38015912221405,55.2023460027393 + + + + +NW90 + +Small Square NW90 Boundry Box +#Line2 + + +1 + +-5.23295990257013,54.3521689455336 +-5.24002992769149,54.4418870386951 +-5.0860834052123,54.4459209476336 +-5.07934794878111,54.3561896097288 +-5.23295990257013,54.3521689455336 + + + + + +NW90 +#labelStyle + +-5.15959795120824,54.3990710166497 + + + + +NW91 + +Small Square NW91 Boundry Box +#Line2 + + +1 + +-5.24003063670654,54.4418960113033 +-5.24713959092267,54.5316121350234 +-5.09285663277814,54.5356593478223 +-5.08608408067567,54.4459299215692 +-5.24003063670654,54.4418960113033 + + + + + +NW91 +#labelStyle + +-5.16652037553741,54.4888038164006 + + + + +NW92 + +Small Square NW92 Boundry Box +#Line2 + + +1 + +-5.24714030384551,54.5316211074344 +-5.25428847816372,54.621335258387 +-5.0996672371404,54.6253958332884 +-5.09285731196528,54.5356683215666 +-5.24714030384551,54.5316211074344 + + + + + +NW92 +#labelStyle + +-5.17348095808973,54.5785346742137 + + + + +NW93 + +Small Square NW93 Boundry Box +#Line2 + + +1 + +-5.25428919502361,54.6213442306006 +-5.26147688341385,54.7110564054241 +-5.1065154985537,54.7151304011206 +-5.09966792007918,54.6254048068411 +-5.25428919502361,54.6213442306006 + + + + + +NW93 +#labelStyle + +-5.18047998454458,54.6682635869719 + + + + +NW94 + +Small Square NW94 Boundry Box +#Line2 + + +1 + +-5.26147760424035,54.7110653774399 +-5.26870510367273,54.8007755727359 +-5.1134017001341,54.8048630483757 +-5.1065161852723,54.7151393744814 +-5.26147760424035,54.7110653774399 + + + + + +NW94 +#labelStyle + +-5.18751774349395,54.7579905515243 + + + + +NW95 + +Small Square NW95 Boundry Box +#Line2 + + +1 + +-5.26870582849569,54.8007845445535 +-5.27597343897855,54.8904927568863 +-5.12032612789542,54.8945937720777 +-5.11340239066097,54.8048720215443 +-5.26870582849569,54.8007845445535 + + + + + +NW95 +#labelStyle + +-5.19459452647937,54.847715564685 + + + + +NW96 + +Small Square NW96 Boundry Box +#Line2 + + +1 + +-5.27597416782812,54.8905017285054 +-5.28328219244685,54.9802079544025 +-5.1272890707863,54.9843225692182 +-5.12032682225931,54.8946027450537 +-5.27597416782812,54.8905017285054 + + + + + +NW96 +#labelStyle + +-5.20171062802947,54.9374386232336 + + + + +NW97 + +Small Square NW97 Boundry Box +#Line2 + + +1 + +-5.28328292535349,54.9802169258228 +-5.29063167030972,55.0699211617733 +-5.13429082072756,55.0740494367557 +-5.12728976901624,54.9843315420015 +-5.28328292535349,54.9802169258228 + + + + + +NW97 +#labelStyle + +-5.20886634569813,55.0271597239145 + + + + +NW98 + +Small Square NW98 Boundry Box +#Line2 + + +1 + +-5.29063240730422,55.0699301329944 +-5.29802218195568,55.1596323754488 +-5.14133167265032,55.1637743716144 +-5.13429152285291,55.0740584093459 +-5.29063240730422,55.0699301329944 + + + + + +NW98 +#labelStyle + +-5.21606198010306,55.1168788634359 + + + + +NW99 + +Small Square NW99 Boundry Box +#Line2 + + +1 + +-5.29802292306913,55.1596413464703 +-5.3054540399702,55.2493415918393 +-5.14841192453461,55.2534973706836 +-5.14133237870072,55.1637833440112 +-5.29802292306913,55.1596413464703 + + + + + +NW99 +#labelStyle + +-5.22329783496515,55.2065960384693 + + + + + +NX + +Large Square NX Boundry Box +#Line1 + + +1 + +-5.07933258417802,54.3561900020683 +-5.14839621673489,55.2534977762091 +-3.57597540717505,55.2839379296414 +-3.54135122066038,54.3856396402014 +-5.07933258417802,54.3561900020683 + + + + + +NX00 + +Small Square NX00 Boundry Box +#Line2 + + +1 + +-5.07933258417802,54.3561900020683 +-5.08606800713504,54.4459213412656 +-4.93208439223765,54.4497592509042 +-4.92568381253658,54.3600153080713 +-5.07933258417802,54.3561900020683 + + + + + +NX00 +#labelStyle + +-5.00578483557659,54.4030008536398 + + + + +NX01 + +Small Square NX01 Boundry Box +#Line2 + + +1 + +-5.08606868259506,54.4459303152014 +-5.09284120103985,54.5356597427527 +-4.93852087309412,54.5395103123067 +-4.9320850341184,54.4497682261032 +-5.08606868259506,54.4459303152014 + + + + + +NX01 +#labelStyle + +-5.0123715692832,54.4927466083782 + + + + +NX02 + +Small Square NX02 Boundry Box +#Line2 + + +1 + +-5.09284188022361,54.5356687164971 +-5.0996517715562,54.6253962295227 +-4.94499288052349,54.6292595144395 +-4.93852151851429,54.5395192873199 +-5.09284188022361,54.5356687164971 + + + + + +NX02 +#labelStyle + +-5.01899461921369,54.5824904778115 + + + + +NX03 + +Small Square NX03 Boundry Box +#Line2 + + +1 + +-5.09965245449159,54.6254052030756 +-5.10649999893733,54.7151307986647 +-4.95150068099862,54.7190068548211 +-4.9449935295096,54.6292684892667 +-5.09965245449159,54.6254052030756 + + + + + +NX03 +#labelStyle + +-5.02565425735232,54.6722324592604 + + + + +NX04 + +Small Square NX04 Boundry Box +#Line2 + + +1 + +-5.10650068565251,54.7151397720256 +-5.1133861662979,54.8048634472353 +-4.95804454371422,54.8087523309418 +-4.95150133357745,54.7190158294619 +-5.10650068565251,54.7151397720256 + + + + + +NX04 +#labelStyle + +-5.03235075845757,54.7619725500166 + + + + +NX05 + +Small Square NX05 Boundry Box +#Line2 + + +1 + +-5.11338685682134,54.8048724204041 +-5.12031055965035,54.8945941722586 +-4.96462474062142,54.898495940264 +-4.95804519991282,54.8087613053961 +-5.11338685682134,54.8048724204041 + + + + + +NX05 +#labelStyle + +-5.03908440009723,54.851710747341 + + + + +NX06 + +Small Square NX06 Boundry Box +#Line2 + + +1 + +-5.12031125401079,54.8946031452348 +-5.12727346794188,54.9843229707264 +-4.97124154646305,54.988237680222 +-4.96462540046714,54.8985049145315 +-5.12031125401079,54.8946031452348 + + + + + +NX06 +#labelStyle + +-5.04585546268429,54.9414470484647 + + + + +NX07 + +Small Square NX07 Boundry Box +#Line2 + + +1 + +-5.12727416616835,54.9843319435098 +-5.13427518309188,55.074049839597 +-4.97789523880921,55.0779775482214 +-4.97124220998349,54.9882466543025 +-5.12727416616835,54.9843319435098 + + + + + +NX07 +#labelStyle + +-5.05266422951321,55.031181450588 + + + + +NX08 + +Small Square NX08 Boundry Box +#Line2 + + +1 + +-5.13427588521374,55.0740588121873 +-5.14131600003003,55.1637747757948 +-4.98458609809351,55.167715541638 +-4.97789590603228,55.0779865221145 +-5.13427588521374,55.0740588121873 + + + + + +NX08 +#labelStyle + +-5.05951098679675,55.1209139508798 + + + + +NX09 + +Small Square NX09 Boundry Box +#Line2 + + +1 + +-5.14131670607692,55.1637837481916 +-5.14839621673489,55.2534977762091 +-4.99131440764986,55.2574516578175 +-4.9845867690474,55.1677245153435 +-5.14131670607692,55.1637837481916 + + + + + +NX09 +#labelStyle + +-5.06639602370342,55.2106445464771 + + + + +NX10 + +Small Square NX10 Boundry Box +#Line2 + + +1 + +-4.92566844434244,54.3600156808679 +-4.93206899054256,54.4497596249291 +-4.7780501196132,54.4534014336937 +-4.77198467772997,54.363645527797 +-4.92566844434244,54.3600156808679 + + + + + +NX10 +#labelStyle + +-4.85193567610033,54.4067349413627 + + + + +NX11 + +Small Square NX11 Boundry Box +#Line2 + + +1 + +-4.93206963241995,54.4497686001283 +-4.93850543771095,54.5395106875656 +-4.78414958999257,54.5431645116014 +-4.77805072788508,54.4534104100917 +-4.93206963241995,54.4497686001283 + + + + + +NX11 +#labelStyle + +-4.85818644995697,54.496493008116 + + + + +NX12 + +Small Square NX12 Boundry Box +#Line2 + + +1 + +-4.93850608312774,54.5395196625789 +-4.94497741126707,54.6292598909377 +-4.79028273403371,54.6329257828909 +-4.78415020161928,54.5431734878188 +-4.93850608312774,54.5395196625789 + + + + + +NX12 +#labelStyle + +-4.86447169529886,54.5862492434092 + + + + +NX13 + +Small Square NX13 Boundry Box +#Line2 + + +1 + +-4.94497806024978,54.629268865765 +-4.95148517768241,54.719007232564 +-4.79644980439363,54.7226852454885 +-4.79028334904037,54.6329347589276 +-4.94497806024978,54.629268865765 + + + + + +NX13 +#labelStyle + +-4.87079167038052,54.6760036449797 + + + + +NX14 + +Small Square NX14 Boundry Box +#Line2 + + +1 + +-4.95148583025783,54.719016207205 +-4.95802900615029,54.808752709935 +-4.80265105631107,54.812442897297 +-4.79645042280564,54.7226942213442 +-4.95148583025783,54.719016207205 + + + + + +NX14 +#labelStyle + +-4.87714663609167,54.7657562105401 + + + + +NX15 + +Small Square NX15 Boundry Box +#Line2 + + +1 + +-4.95802966234546,54.8087616843894 +-4.96460916862043,54.8984963205129 +-4.80888674763938,54.9021987361948 +-4.80265167815409,54.8124518729716 +-4.95802966234546,54.8087616843894 + + + + + +NX15 +#labelStyle + +-4.88353685599064,54.8555069377763 + + + + +NX16 + +Small Square NX16 Boundry Box +#Line2 + + +1 + +-4.96460982846269,54.8985052947805 +-4.97122593983424,54.9882380617323 +-4.81515713887989,54.9919527600367 +-4.80888737293932,54.9022077116879 +-4.96460982846269,54.8985052947805 + + + + + +NX16 +#labelStyle + +-4.88996259633845,54.9452558243488 + + + + +NX17 + +Small Square NX17 Boundry Box +#Line2 + + +1 + +-4.97122660335121,54.9882470358129 +-4.97787959736037,55.0779779309986 +-4.82146249321576,55.0817049666532 +-4.81515776766293,54.9919617353483 +-4.97122660335121,54.9882470358129 + + + + + +NX17 +#labelStyle + +-4.8964241261333,55.0350028678918 + + + + +NX18 + +Small Square NX18 Boundry Box +#Line2 + + +1 + +-4.97788026457995,55.0779869048918 +-4.984570421631,55.1677159256878 +-4.82780307654632,55.1714553538491 +-4.82146312550836,55.0817139417829 +-4.97788026457995,55.0779869048918 + + + + + +NX18 +#labelStyle + +-4.90292171714558,55.1247480660125 + + + + +NX19 + +Small Square NX19 Boundry Box +#Line2 + + +1 + +-4.98457109258137,55.1677248993934 +-4.99129869597855,55.2574520431457 +-4.83417915752199,55.2612039194038 +-4.82780371237521,55.1714643287968 +-4.98457109258137,55.1677248993934 + + + + + +NX19 +#labelStyle + +-4.90945564395342,55.2144914162901 + + + + +NX20 + +Small Square NX20 Boundry Box +#Line2 + + +1 + +-4.77196930612723,54.3636458810408 +-4.77803471448408,54.4534017881017 +-4.62398242656151,54.4568473995674 +-4.61825237004454,54.3670801731289 +-4.77196930612723,54.3636458810408 + + + + + +NX20 +#labelStyle + +-4.69805230391519,54.4102731811464 + + + + +NX21 + +Small Square NX21 Boundry Box +#Line2 + + +1 + +-4.7780353227526,54.4534107644999 +-4.78413415114967,54.5431648671788 +-4.62974463637331,54.5466218486076 +-4.62398300119964,54.4568563771001 +-4.7780353227526,54.4534107644999 + + + + + +NX21 +#labelStyle + +-4.70396686228671,54.5000429162636 + + + + +NX22 + +Small Square NX22 Boundry Box +#Line2 + + +1 + +-4.78413476277299,54.5431738433964 +-4.7902672612916,54.6329261396428 +-4.63553866438649,54.6363945408732 +-4.6297452141814,54.5466308259647 +-4.78413476277299,54.5431738433964 + + + + + +NX22 +#labelStyle + +-4.7099140448028,54.5898108709716 + + + + +NX23 + +Small Square NX23 Boundry Box +#Line2 + + +1 + +-4.79026787629486,54.6329351156796 +-4.79643429756551,54.7226856034201 +-4.64136474940985,54.7261654746769 +-4.6355392453883,54.6364035180545 +-4.79026787629486,54.6329351156796 + + + + + +NX23 +#labelStyle + +-4.71589409595525,54.6795770434032 + + + + +NX24 + +Small Square NX24 Boundry Box +#Line2 + + +1 + +-4.7964349159741,54.722694579276 +-4.80263551520875,54.8124432564135 +-4.64722313269338,54.8159346483118 +-4.64136533362939,54.7261744516823 +-4.7964349159741,54.722694579276 + + + + + +NX24 +#labelStyle + +-4.72190726273157,54.7693414316699 + + + + +NX25 + +Small Square NX25 Boundry Box +#Line2 + + +1 + +-4.80263613704833,54.8124522320882 +-4.80887117207323,54.9021990965014 +-4.65311405795926,54.9057020600505 +-4.64722372015489,54.8159436251411 +-4.80263613704833,54.8124522320882 + + + + + +NX25 +#labelStyle + +-4.72795379464664,54.8591040338612 + + + + +NX26 + +Small Square NX26 Boundry Box +#Line2 + + +1 + +-4.80887179736971,54.9022080719946 +-4.81514152865889,54.9919531215388 +-4.65903777143348,54.9954677081463 +-4.65311464868723,54.9057110367035 +-4.80887179736971,54.9022080719946 + + + + + +NX26 +#labelStyle + +-4.73403394377502,54.9488648480447 + + + + +NX27 + +Small Square NX27 Boundry Box +#Line2 + + +1 + +-4.81514215743845,54.9919620968504 +-4.82144684814741,55.081705329356 +-4.66499452187789,55.0852315908317 +-4.65903836545268,54.9954766846228 +-4.81514215743845,54.9919620968504 + + + + + +NX27 +#labelStyle + +-4.74014796478363,55.0386238722661 + + + + +NX28 + +Small Square NX28 Boundry Box +#Line2 + + +1 + +-4.82144748043653,55.0817143044858 +-4.8277873964367,55.171455717758 +-4.67098456062264,55.1749937063181 +-4.66499511921331,55.0852405671316 +-4.82144748043653,55.0817143044858 + + + + + +NX28 +#labelStyle + +-4.74629611496489,55.1283811045482 + + + + +NX29 + +Small Square NX29 Boundry Box +#Line2 + + +1 + +-4.82778803226208,55.1714646927058 +-4.83416344217569,55.2612042845242 +-4.67700814159923,55.2647540527955 +-4.67098516129954,55.1750026824413 +-4.82778803226208,55.1714646927058 + + + + + +NX29 +#labelStyle + +-4.75247865427047,55.2181365428903 + + + + +NX30 + +Small Square NX30 Boundry Box +#Line2 + + +1 + +-4.61823699521589,54.3670805068107 +-4.62396701818239,54.4568477343491 +-4.46988315482134,54.4600970572495 +-4.46448871764844,54.3703191534141 +-4.61823699521589,54.3670805068107 + + + + + +NX30 +#labelStyle + +-4.54413655272527,54.4136154794559 + + + + +NX31 + +Small Square NX31 Boundry Box +#Line2 + + +1 + +-4.62396759281716,54.4568567118818 +-4.62972919425609,54.5466221844941 +-4.47530786768422,54.5498822314208 +-4.4698836958022,54.4601060358523 +-4.62396759281716,54.4568567118818 + + + + + +NX31 +#labelStyle + +-4.54971465360129,54.5033962386427 + + + + +NX32 + +Small Square NX32 Boundry Box +#Line2 + + +1 + +-4.6297297720608,54.5466311618513 +-4.63552318834549,54.6363948778693 +-4.48076254087766,54.6396656958471 +-4.47530841164994,54.5498912098527 +-4.6297297720608,54.5466311618513 + + + + + +NX32 +#labelStyle + +-4.55532352881689,54.593175265671 + + + + +NX33 + +Small Square NX33 Boundry Box +#Line2 + + +1 + +-4.6355237693439,54.6364038550508 +-4.64134923925803,54.7261658127876 +-4.4862473993317,54.7294474492059 +-4.48076308785062,54.639674674108 +-4.6355237693439,54.6364038550508 + + + + + +NX33 +#labelStyle + +-4.56096340906987,54.6829525590472 + + + + +NX34 + +Small Square NX34 Boundry Box +#Line2 + + +1 + +-4.64134982347414,54.7261747897931 +-4.64720758824228,54.8159349875419 +-4.49176267027646,54.8192274901588 +-4.48624794933451,54.7294564272957 +-4.64134982347414,54.7261747897931 + + + + + +NX34 +#labelStyle + +-4.56663452741381,54.7727281172605 + + + + +NX35 + +Small Square NX35 Boundry Box +#Line2 + + +1 + +-4.64720817570034,54.8159439643714 +-4.65309847901899,54.9057024004051 +-4.49730858327143,54.9090058173505 +-4.49176322333197,54.8192364680772 +-4.64720817570034,54.8159439643714 + + + + + +NX35 +#labelStyle + +-4.57233711928799,54.8625019387815 + + + + +NX36 + +Small Square NX36 Boundry Box +#Line2 + + +1 + +-4.65309906974351,54.9057113770582 +-4.65902215781276,54.9954680496303 +-4.50288537023528,54.9987824294102 +-4.4973091394027,54.9090147950975 +-4.65309906974351,54.9057113770582 + + + + + +NX36 +#labelStyle + +-4.5780714225478,54.9522740220632 + + + + +NX37 + +Small Square NX37 Boundry Box +#Line2 + + +1 + +-4.65902275182848,54.995477026107 +-4.66497887338397,55.0852319334501 +-4.50849326547599,55.0885573249504 +-4.50288592946562,54.9987914069857 +-4.65902275182848,54.995477026107 + + + + + +NX37 +#labelStyle + +-4.58383767749568,55.0420443655403 + + + + +NX38 + +Small Square NX38 Boundry Box +#Line2 + + +1 + +-4.66497947071589,55.0852409097502 +-4.67096887706132,55.1749940500761 +-4.51413250572152,55.1783305025659 +-4.50849382782895,55.088566302354 +-4.66497947071589,55.0852409097502 + + + + + +NX38 +#labelStyle + +-4.58963612691241,55.1318129676284 + + + + +NX39 + +Small Square NX39 Boundry Box +#Line2 + + +1 + +-4.6709694777347,55.1750030261994 +-4.67699242277483,55.2647543976981 +-4.51980333015092,55.2681019608343 +-4.5141330712209,55.1783394797977 +-4.6709694777347,55.1750030261994 + + + + + +NX39 +#labelStyle + +-4.59546701608894,55.2215798267242 + + + + +NX40 + +Small Square NX40 Boundry Box +#Line2 + + +1 + +-4.46447333977682,54.370319467525 +-4.46986774337654,54.4600973723959 +-4.3157541485107,54.4631503206315 +-4.31069555105935,54.3733623831316 +-4.46447333977682,54.370319467525 + + + + + +NX40 +#labelStyle + +-4.39019025866713,54.416761747902 + + + + +NX41 + +Small Square NX41 Boundry Box +#Line2 + + +1 + +-4.46986828435403,54.4601063509989 +-4.47529242247835,54.5498825476074 +-4.32084114178252,54.552945573339 +-4.31575465581214,54.46315930024 +-4.46986828435403,54.4601063509989 + + + + + +NX41 +#labelStyle + +-4.39543167369279,54.5065528862557 + + + + +NX42 + +Small Square NX42 Boundry Box +#Line2 + + +1 + +-4.47529296644069,54.5498915260395 +-4.48074706172483,54.6396660130785 +-4.32595623524299,54.6427391605115 +-4.3208416518835,54.552954552781 +-4.47529296644069,54.5498915260395 + + + + + +NX42 +#labelStyle + +-4.40070201092691,54.5963423378956 + + + + +NX43 + +Small Square NX43 Boundry Box +#Line2 + + +1 + +-4.48074760869439,54.6396749913395 +-4.48623188604462,54.7294477674867 +-4.33109963991452,54.7325310811697 +-4.32595674816451,54.6427481397869 +-4.48074760869439,54.6396749913395 + + + + + +NX43 +#labelStyle + +-4.40600148724384,54.6861301016802 + + + + +NX44 + +Small Square NX44 Boundry Box +#Line2 + + +1 + +-4.48623243604401,54.7294567455765 +-4.49174712266644,54.8192278094935 +-4.3362715689781,54.8223213343215 +-4.33110015567778,54.7325400602784 +-4.48623243604401,54.7294567455765 + + + + + +NX44 +#labelStyle + +-4.41133032173328,54.7759161764544 + + + + +NX45 + +Small Square NX45 Boundry Box +#Line2 + + +1 + +-4.4917476757185,54.8192367874121 +-4.49729300114834,54.9090061377439 +-4.3414722378008,54.9121099189617 +-4.33627208760453,54.8223303132634 +-4.4917476757185,54.8192367874121 + + + + + +NX45 +#labelStyle + +-4.41668873572846,54.8657005610481 + + + + +NX46 + +Small Square NX46 Boundry Box +#Line2 + + +1 + +-4.49729355727615,54.909015115491 +-4.50286975340758,54.998782750867 +-4.34670186396375,55.0018968340729 +-4.34147275931205,54.9121188977367 +-4.49729355727615,54.909015115491 + + + + + +NX46 +#labelStyle + +-4.42207695283478,54.9554832542771 + + + + +NX47 + +Small Square NX47 Boundry Box +#Line2 + + +1 + +-4.50287031263444,54.9987917284425 +-4.50847761375069,55.0885576474752 +-4.35196066729045,55.0916820786248 +-4.34670238838169,55.0019058126809 +-4.50287031263444,54.9987917284425 + + + + + +NX47 +#labelStyle + +-4.42749519895885,55.0452642549427 + + + + +NX48 + +Small Square NX48 Boundry Box +#Line2 + + +1 + +-4.50847817610016,55.088566624879 +-4.51411681890417,55.1783308261636 +-4.35724886987553,55.1814656515733 +-4.35196119463717,55.0916910570657 +-4.50847817610016,55.088566624879 + + + + + +NX48 +#labelStyle + +-4.43294370233796,55.1350435618311 + + + + +NX49 + +Small Square NX49 Boundry Box +#Line2 + + +1 + +-4.51411738440003,55.1783398033955 +-4.51978760804559,55.2681022855097 +-4.362566696114,55.2712475518601 +-4.35724940017336,55.1814746298469 +-4.51411738440003,55.1783398033955 + + + + + +NX49 +#labelStyle + +-4.43842269357005,55.2248211737128 + + + + +NX50 + +Small Square NX50 Boundry Box +#Line2 + + +1 + +-4.31068017032792,54.3733626776633 +-4.31573873418473,54.4631506161344 +-4.16159725398928,54.4660071087803 +-4.15687470300869,54.3762097819011 +-4.31068017032792,54.3733626776633 + + + + + +NX50 +#labelStyle + +-4.23621526017335,54.419711903249 + + + + +NX51 + +Small Square NX51 Boundry Box +#Line2 + + +1 + +-4.3157392414828,54.463159595743 +-4.32082569367391,54.5529458698174 +-4.16634631879557,54.5558117928712 +-4.16159772759052,54.4660160893299 +-4.3157392414828,54.463159595743 + + + + + +NX51 +#labelStyle + +-4.24111977467837,54.5095127752941 + + + + +NX52 + +Small Square NX52 Boundry Box +#Line2 + + +1 + +-4.32082620377151,54.5529548492595 +-4.32594075316563,54.6427394579697 +-4.17112162151721,54.6456148528123 +-4.16634679501081,54.5558207732584 +-4.32082620377151,54.5529548492595 + + + + + +NX52 +#labelStyle + +-4.24605135707325,54.5993120032585 + + + + +NX53 + +Small Square NX53 Boundry Box +#Line2 + + +1 + +-4.32594126608374,54.6427484372452 +-4.33108412368089,54.732531379612 +-4.17592335924192,54.7354162879453 +-4.17112210036606,54.645623833037 +-4.32594126608374,54.6427484372452 + + + + + +NX53 +#labelStyle + +-4.25101021038115,54.6891095863314 + + + + +NX54 + +Small Square NX54 Boundry Box +#Line2 + + +1 + +-4.33108463944072,54.7325403587208 +-4.33625601839928,54.8223216337522 +-4.18075173107406,54.8252160976026 +-4.17592384074419,54.7354252680075 +-4.33108463944072,54.7325403587208 + + + + + +NX54 +#labelStyle + +-4.25599653969973,54.7789055236912 + + + + +NX55 + +Small Square NX55 Boundry Box +#Line2 + + +1 + +-4.33625653702226,54.8223306126942 +-4.34145665268644,54.9121102193852 +-4.18560693816039,54.9150142811069 +-4.18075221524978,54.8252250775023 +-4.33625653702226,54.8223306126942 + + + + + +NX55 +#labelStyle + +-4.26101055222759,54.868699814505 + + + + +NX56 + +Small Square NX56 Boundry Box +#Line2 + + +1 + +-4.34145717419422,54.9121191981603 +-4.34668624412208,55.0018971354937 +-4.19048918371615,55.0048108377719 +-4.18560742502975,54.9150232608439 +-4.34145717419422,54.9121191981603 + + + + + +NX56 +#labelStyle + +-4.26605245729106,54.9584924579294 + + + + +NX57 + +Small Square NX57 Boundry Box +#Line2 + + +1 + +-4.34668676853653,55.0019061141018 +-4.35194501252823,55.0916823810473 +-4.19539867305157,55.0946057669017 +-4.19048967329959,55.0048198173462 +-4.34668676853653,55.0019061141018 + + + + + +NX57 +#labelStyle + +-4.27112246637143,55.0482834531096 + + + + +NX58 + +Small Square NX58 Boundry Box +#Line2 + + +1 + +-4.35194553987145,55.0916913594883 +-4.35723317999808,55.1814659550019 +-4.20033561359875,55.1843990677899 +-4.19539916536973,55.0946147463132 +-4.35194553987145,55.0916913594883 + + + + + +NX58 +#labelStyle + +-4.2762207931326,55.1380727991795 + + + + +NX59 + +Small Square NX59 Boundry Box +#Line2 + + +1 + +-4.35723371029239,55.1814749332757 +-4.36255097092515,55.2712478562994 +-4.20530021493896,55.2741907397198 +-4.20033610867247,55.1844080470386 +-4.35723371029239,55.1814749332757 + + + + + +NX59 +#labelStyle + +-4.28134765344905,55.2278604952606 + + + + +NX60 + +Small Square NX60 Boundry Box +#Line2 + + +1 + +-4.15685931960082,54.3762100568459 +-4.16158183696689,54.4660073846318 +-4.00741431972056,54.4686673459458 +-4.00302800830539,54.3788612744897 +-4.15685931960082,54.3762100568459 + + + + + +NX60 +#labelStyle + +-4.08221339783572,54.4224658674231 + + + + +NX61 + +Small Square NX61 Boundry Box +#Line2 + + +1 + +-4.16158231056475,54.4660163651815 +-4.16633086797034,54.5558120696334 +-4.01182526098113,54.5584808137449 +-4.00741475960218,54.4686763273718 +-4.16158231056475,54.4660163651815 + + + + + +NX61 +#labelStyle + +-4.08678081086168,54.5122758271465 + + + + +NX62 + +Small Square NX62 Boundry Box +#Line2 + + +1 + +-4.16633134418219,54.5558210500208 +-4.17110613670283,54.6456151304893 +-4.01626057589253,54.6482926959493 +-4.01182570329102,54.5584897950124 +-4.16633134418219,54.5558210500208 + + + + + +NX62 +#labelStyle + +-4.09137343541052,54.6020841826057 + + + + +NX63 + +Small Square NX63 Boundry Box +#Line2 + + +1 + +-4.17110661554827,54.6456241107141 +-4.17590784025065,54.7354165665411 +-4.02072044758247,54.7381029922001 +-4.01626102064892,54.6483016770582 +-4.17110661554827,54.6456241107141 + + + + + +NX63 +#labelStyle + +-4.0959914606282,54.6918909332984 + + + + +NX64 + +Small Square NX64 Boundry Box +#Line2 + + +1 + +-4.1759083217495,54.7354255466034 +-4.18073617771677,54.8252163771213 +-4.025205061053,54.8279117021321 +-4.02072089480375,54.7381119731504 +-4.1759083217495,54.7354255466034 + + + + + +NX64 +#labelStyle + +-4.10063507759395,54.7816960787153 + + + + +NX65 + +Small Square NX65 Boundry Box +#Line2 + + +1 + +-4.18073666188904,54.825225357021 +-4.18559135024652,54.9150145615525 +-4.02971460320445,54.9177188253734 +-4.02520551075777,54.8279206829238 +-4.18073666188904,54.825225357021 + + + + + +NX65 +#labelStyle + +-4.10530447934494,54.8714996183382 + + + + +NX66 + +Small Square NX66 Boundry Box +#Line2 + + +1 + +-4.18559183711242,54.9150235412896 +-4.19047356105371,55.0048111191486 +-4.03424926285971,55.0075243615463 +-4.0297150554115,54.9177278060064 +-4.18559183711242,54.9150235412896 + + + + + +NX66 +#labelStyle + +-4.10999986090123,54.961301551642 + + + + +NX67 + +Small Square NX67 Boundry Box +#Line2 + + +1 + +-4.19047405063367,55.004820098723 +-4.19538301544712,55.0946060492135 +-4.03880923078886,55.0973283102665 +-4.03424971758802,55.0075333420205 +-4.19047405063367,55.004820098723 + + + + + +NX67 +#labelStyle + +-4.11472141929119,55.0511018780934 + + + + +NX68 + +Small Square NX68 Boundry Box +#Line2 + + +1 + +-4.19538350776177,55.0946150286252 +-4.20031992085737,55.1843993510412 +-4.04339469973413,55.1871306711426 +-4.0388096880576,55.097337290582 +-4.19538350776177,55.0946150286252 + + + + + +NX68 +#labelStyle + +-4.11946935357723,55.140900597151 + + + + +NX69 + +Small Square NX69 Boundry Box +#Line2 + + +1 + +-4.20032041592757,55.1844083302899 +-4.20528448686425,55.2741910239147 +-4.04800586443533,55.2769314437761 +-4.04339515956267,55.1871396512993 +-4.20032041592757,55.1844083302899 + + + + + +NX69 +#labelStyle + +-4.12424386488193,55.2306977082644 + + + + +NX70 + +Small Square NX70 Boundry Box +#Line2 + + +1 + +-4.00301262240467,54.3788615298403 +-4.00739890018669,54.4686676021386 +-3.85320719613348,54.4711309615677 +-3.84915730369929,54.3813167908194 +-4.00301262240467,54.3788615298403 + + + + + +NX70 +#labelStyle + +-3.9281865142679,54.4250235675192 + + + + +NX71 + +Small Square NX71 Boundry Box +#Line2 + + +1 + +-4.00739934006494,54.4686765835647 +-4.01180980762561,54.5584810707837 +-3.85727983258737,54.5609525649132 +-3.85320760227746,54.4711399438055 +-4.00739934006494,54.4686765835647 + + + + + +NX71 +#labelStyle + +-3.93241663859387,54.5148419684055 + + + + +NX72 + +Small Square NX72 Boundry Box +#Line2 + + +1 + +-4.01181024993211,54.5584900520512 +-4.01624508852884,54.6482929538378 +-3.86137497657686,54.6507726183843 +-3.8572802409737,54.560961546996 +-4.01181024993211,54.5584900520512 + + + + + +NX72 +#labelStyle + +-3.93667011616682,54.6046588020227 + + + + +NX73 + +Small Square NX73 Boundry Box +#Line2 + + +1 + +-4.01624553328182,54.6483019349468 +-4.02070492602269,54.738103250942 +-3.86549279724611,54.7405911218998 +-3.86137538722237,54.6507816003122 +-4.01624553328182,54.6483019349468 + + + + + +NX73 +#labelStyle + +-3.94094712223125,54.6944740681553 + + + + +NX74 + +Small Square NX74 Boundry Box +#Line2 + + +1 + +-4.02070537324054,54.7381122318924 +-4.0251895051078,54.8279119617312 +-3.86963346547099,54.8304080753746 +-3.8654932101678,54.7406001036726 +-4.02070537324054,54.7381122318924 + + + + + +NX74 +#labelStyle + +-3.94524783382338,54.7842877665838 + + + + +NX75 + +Small Square NX75 Boundry Box +#Line2 + + +1 + +-4.02518995480913,54.827920942523 +-4.02969901268308,54.9177190858335 +-3.87379715388116,54.9202234787199 +-3.86963388068605,54.8304170569924 +-4.02518995480913,54.827920942523 + + + + + +NX75 +#labelStyle + +-3.94957242979395,54.874099897083 + + + + +NX76 + +Small Square NX76 Boundry Box +#Line2 + + +1 + +-4.02969946488666,54.9177280664665 +-4.03423363756997,55.0075246228712 +-3.87798403688251,55.010037331844 +-3.87379757140692,54.9202324601827 +-4.02969946488666,54.9177280664665 + + + + + +NX76 +#labelStyle + +-3.9539210908314,54.9639104594234 + + + + +NX77 + +Small Square NX77 Boundry Box +#Line2 + + +1 + +-4.03423409229479,55.0075336033455 +-4.03879357053709,55.0973285724601 +-3.88219429067995,55.0998496346516 +-3.87798445673652,55.0100463131518 +-4.03423409229479,55.0075336033455 + + + + + +NX77 +#labelStyle + +-3.95829399948542,55.0537194533706 + + + + +NX78 + +Small Square NX78 Boundry Box +#Line2 + + +1 + +-4.03879402780233,55.0973375527756 +-4.04337900432521,55.1871309342088 +-3.88642809330047,55.189660387043 +-3.88219471287991,55.0998586158043 +-4.03879402780233,55.0973375527756 + + + + + +NX78 +#labelStyle + +-3.96269134019078,55.1435268786848 + + + + +NX79 + +Small Square NX79 Boundry Box +#Line2 + + +1 + +-4.04337946415024,55.1871399143655 +-4.04799013367266,55.2769317077187 +-3.89068562461663,55.2794695889145 +-3.88642851786428,55.1896693680407 +-4.04337946415024,55.1871399143655 + + + + + +NX79 +#labelStyle + +-3.96711329929159,55.2333327351209 + + + + +NX80 + +Small Square NX80 Boundry Box +#Line2 + + +1 + +-3.8491419154895,54.381317026569 +-3.85319177427327,54.471131198095 +-3.6989777354837,54.4733978902825 +-3.69526442774417,54.3835762659732 +-3.8491419154895,54.381317026569 + + + + + +NX80 +#labelStyle + +-3.77413645396782,54.4273849358079 + + + + +NX81 + +Small Square NX81 Boundry Box +#Line2 + + +1 + +-3.85319218041387,54.4711401803329 +-3.85726437688808,54.5609528022216 +-3.70271189971234,54.5632269805613 +-3.69897810787338,54.4734068732674 +-3.85319218041387,54.4711401803329 + + + + + +NX81 +#labelStyle + +-3.77802911613423,54.5172111308752 + + + + +NX82 + +Small Square NX82 Boundry Box +#Line2 + + +1 + +-3.85726478527101,54.5609617843045 +-3.86135948685178,54.6507728564773 +-3.70646670365151,54.6530545538472 +-3.70271227415828,54.5632359633944 +-3.85726478527101,54.5609617843045 + + + + + +NX82 +#labelStyle + +-3.78194327150259,54.6070357928423 + + + + +NX83 + +Small Square NX83 Boundry Box +#Line2 + + +1 + +-3.86135989749388,54.6507818384052 +-3.86547727330715,54.7405913607808 +-3.7102423024401,54.7428806103144 +-3.70646708016916,54.6530635365287 +-3.86135989749388,54.6507818384052 + + + + + +NX83 +#labelStyle + +-3.7858790813935,54.696858921759 + + + + +NX84 + +Small Square NX84 Boundry Box +#Line2 + + +1 + +-3.86547768622542,54.7406003425537 +-3.86961790712864,54.8304083150471 +-3.7140388528057,54.832705150136 +-3.71024268104504,54.7428895928442 +-3.86547768622542,54.7406003425537 + + + + + +NX84 +#labelStyle + +-3.78983670877736,54.7866805176736 + + + + +NX85 + +Small Square NX85 Boundry Box +#Line2 + + +1 + +-3.86961832234024,54.830417296665 +-3.87378156094447,54.9202237191874 +-3.71785651308488,54.9225281734837 +-3.71403923351369,54.8327141325141 +-3.86961832234024,54.830417296665 + + + + + +NX85 +#labelStyle + +-3.79381631829531,54.8765005806313 + + + + +NX86 + +Small Square NX86 Boundry Box +#Line2 + + +1 + +-3.87378197846677,54.9202327006503 +-3.87796840915911,55.0100375731101 +-3.7216954432438,55.0123496805292 +-3.71785689591183,54.9225371557102 +-3.87378197846677,54.9202327006503 + + + + + +NX86 +#labelStyle + +-3.79781807628068,54.9663191106758 + + + + +NX87 + +Small Square NX87 Boundry Box +#Line2 + + +1 + +-3.87796882900963,55.010046554418 +-3.88217862797599,55.0998498767197 +-3.72555580489907,55.1021696714432 +-3.72169582820579,55.0123586626042 +-3.87796882900963,55.010046554418 + + + + + +NX87 +#labelStyle + +-3.80184215078057,55.056136107849 + + + + +NX88 + +Small Square NX88 Boundry Box +#Line2 + + +1 + +-3.88217905017244,55.0998588578726 +-3.88641239542063,55.1896606299169 +-3.72943776133896,55.1919881463948 +-3.72555619201234,55.1021786533665 +-3.88217905017244,55.0998588578726 + + + + + +NX88 +#labelStyle + +-3.80588871157788,55.1459515721898 + + + + +NX89 + +Small Square NX89 Boundry Box +#Line2 + + +1 + +-3.88641281998091,55.1896696109147 +-3.89066989136412,55.2794698325977 +-3.73334147754496,55.2818051055517 +-3.72943815061994,55.1919971281665 +-3.88641281998091,55.1896696109147 + + + + + +NX89 +#labelStyle + +-3.80995793021364,55.2357655037348 + + + + +NX90 + +Small Square NX90 Boundry Box +#Line2 + + +1 + +-3.69524903740923,54.3835764821157 +-3.69896231148247,54.473398107138 +-3.54472779171459,54.4754680719291 +-3.54135122066038,54.3856396402014 +-3.69524903740923,54.3835764821157 + + + + + +NX90 +#labelStyle + +-3.6200650631796,54.4295499097415 + + + + +NX91 + +Small Square NX91 Boundry Box +#Line2 + + +1 + +-3.69896268386876,54.473407090123 +-3.70269644185597,54.563227198133 +-3.54812333016321,54.565304000113 +-3.54472813033468,54.4754770555963 +-3.69896268386876,54.473407090123 + + + + + +NX91 +#labelStyle + +-3.62362010351035,54.5193832515768 + + + + +NX92 + +Small Square NX92 Boundry Box +#Line2 + + +1 + +-3.70269681629852,54.5632361809662 +-3.70645121175315,54.6530547721384 +-3.55153763892867,54.6551384413425 +-3.54812367065332,54.5653129836314 +-3.70269681629852,54.5632361809662 + + + + + +NX92 +#labelStyle + +-3.62719477536906,54.6092150916507 + + + + +NX93 + +Small Square NX93 Boundry Box +#Line2 + + +1 + +-3.70645158826738,54.6530637548199 +-3.71022677631148,54.7428808293281 +-3.55497085912461,54.7449713960253 +-3.55153798130284,54.6551474247123 +-3.70645158826738,54.6530637548199 + + + + + +NX93 +#labelStyle + +-3.63078922613176,54.6990454302564 + + + + +NX94 + +Small Square NX94 Boundry Box +#Line2 + + +1 + +-3.71022715491298,54.742889811858 +-3.71402329225714,54.8327053698754 +-3.55842313331011,54.8348028645702 +-3.55497120339704,54.7449803792464 +-3.71022715491298,54.742889811858 + + + + + +NX94 +#labelStyle + +-3.634403604682,54.7888742676877 + + + + +NX95 + +Small Square NX95 Boundry Box +#Line2 + + +1 + +-3.71402367296167,54.8327143522537 +-3.71784091792527,54.9225283939521 +-3.56189460550807,54.9246328473872 +-3.55842347949511,54.8348118476427 +-3.71402367296167,54.8327143522537 + + + + + +NX95 +#labelStyle + +-3.63803806143001,54.8787016042382 + + + + +NX96 + +Small Square NX96 Boundry Box +#Line2 + + +1 + +-3.71784130074875,54.9225373761787 +-3.72167981328058,55.0123499017299 +-3.56538542122401,55.0144613448886 +-3.56189495362012,54.9246418303112 +-3.71784130074875,54.9225373761787 + + + + + +NX96 +#labelStyle + +-3.64169274833231,54.9685274402022 + + + + +NX97 + +Small Square NX97 Boundry Box +#Line2 + + +1 + +-3.72168019823908,55.0123588838049 +-3.72554013993822,55.1021698933793 +-3.56889572746506,55.104288357488 +-3.56538577127774,55.0144703276641 +-3.72168019823908,55.0123588838049 + + + + + +NX97 +#labelStyle + +-3.64536781891146,55.0583517758748 + + + + +NX98 + +Small Square NX98 Boundry Box +#Line2 + + +1 + +-3.72554052704799,55.1021788753027 +-3.72942206118499,55.1919883690697 +-3.57242567275923,55.1941138856004 +-3.56889607947524,55.1042973401151 +-3.72554052704799,55.1021788753027 + + + + + +NX98 +#labelStyle + +-3.64906342827617,55.1481746115509 + + + + +NX99 + +Small Square NX99 Boundry Box +#Line2 + + +1 + +-3.72942245046244,55.1919973508415 +-3.73332574200089,55.2818053289688 +-3.57597540717505,55.2839379296414 +-3.5724260267408,55.194122868079 +-3.72942245046244,55.1919973508415 + + + + + +NX99 +#labelStyle + +-3.65277973314167,55.2379959475255 + + + + + +NY + +Large Square NY Boundry Box +#Line1 + + +1 + +-3.5413358283844,54.385639836731 +-3.57595966953792,55.2839381327861 +-2.00154643161962,55.2941079603546 +-2.00150670147791,54.3954783907828 +-3.5413358283844,54.385639836731 + + + + + +NY00 + +Small Square NY00 Boundry Box +#Line2 + + +1 + +-3.5413358283844,54.385639836731 +-3.5447123657578,54.4754682691071 +-3.39045922031778,54.4773414515547 +-3.38741952419721,54.3875068589269 +-3.5413358283844,54.385639836731 + + + + + +NY00 +#labelStyle + +-3.46597418975525,54.4315184319603 + + + + +NY01 + +Small Square NY01 Boundry Box +#Line2 + + +1 + +-3.54471270437451,54.4754772527743 +-3.54810787033663,54.5653041979422 +-3.39351599331507,54.567183568236 +-3.39045952515439,54.4773504358394 +-3.54471270437451,54.4754772527743 + + + + + +NY01 +#labelStyle + +-3.46919146237808,54.521358272755 + + + + +NY02 + +Small Square NY02 Boundry Box +#Line2 + + +1 + +-3.54810821082335,54.5653131814607 +-3.55152214504528,54.655138639826 +-3.39658966580837,54.657024225155 +-3.39351629983532,54.5671925523747 +-3.54810821082335,54.5653131814607 + + + + + +NY02 +#labelStyle + +-3.47242650336642,54.6111966402933 + + + + +NY03 + +Small Square NY03 Boundry Box +#Line2 + + +1 + +-3.55152248741604,54.6551476231958 +-3.554955330996,54.7449715951658 +-3.39968036486795,54.7468634229304 +-3.3965899740249,54.6570332091477 +-3.55152248741604,54.6551476231958 + + + + + +NY03 +#labelStyle + +-3.47567944613278,54.7010335350898 + + + + +NY04 + +Small Square NY04 Boundry Box +#Line2 + + +1 + +-3.55495567526499,54.7449805783871 +-3.55840757074644,54.8348030643707 +-3.4027882188659,54.8367011621848 +-3.39968067479353,54.7468724067773 +-3.55495567526499,54.7449805783871 + + + + + +NY04 +#labelStyle + +-3.47895042545467,54.7908689576616 + + + + +NY05 + +Small Square NY05 Boundry Box +#Line2 + + +1 + +-3.55840791692799,54.8348120474433 +-3.56187900831807,54.9246330478506 +-3.40591335749275,54.9265374435436 +-3.40278853051344,54.8367101458858 +-3.55840791692799,54.8348120474433 + + + + + +NY05 +#labelStyle + +-3.48223957749192,54.8807029085282 + + + + +NY06 + +Small Square NY06 Boundry Box +#Line2 + + +1 + +-3.56187935642666,54.9246420307746 +-3.56536978921498,55.0144615460178 +-3.40905591177438,55.0163722676372 +-3.40591367087529,54.9265464270989 +-3.56187935642666,54.9246420307746 + + + + + +NY06 +#labelStyle + +-3.48554703980446,54.9705353882122 + + + + +NY07 + +Small Square NY07 Boundry Box +#Line2 + + +1 + +-3.56537013926522,55.0144705287934 +-3.56888006044281,55.1042885592861 +-3.41221601408912,55.1062056350994 +-3.40905622690508,55.0163812510468 +-3.56537013926522,55.0144705287934 + + + + + +NY07 +#labelStyle + +-3.48887295137019,55.0603663972388 + + + + +NY08 + +Small Square NY08 Boundry Box +#Line2 + + +1 + +-3.56888041244948,55.1042975419132 +-3.57240997052811,55.1941140880703 +-3.41539379818513,55.1960375465672 +-3.41221633098129,55.1062146183633 +-3.56888041244948,55.1042975419132 + + + + + +NY08 +#labelStyle + +-3.49221745260319,55.1501959361359 + + + + +NY09 + +Small Square NY09 Boundry Box +#Line2 + + +1 + +-3.57241032450615,55.1941230705489 +-3.57595966953792,55.2839381327861 +-3.41858939919808,55.285868002681 +-3.41539411685221,55.1960465296855 +-3.57241032450615,55.1941230705489 + + + + + +NY09 +#labelStyle + +-3.49558068537221,55.2400240054335 + + + + +NY10 + +Small Square NY10 Boundry Box +#Line2 + + +1 + +-3.38740413016444,54.3875070358384 +-3.39044379259106,54.4773416290499 +-3.23617387819354,54.4790179794198 +-3.23347118149497,54.3891778727505 +-3.38740413016444,54.3875070358384 + + + + + +NY10 +#labelStyle + +-3.31186568301599,54.4332904502975 + + + + +NY11 + +Small Square NY11 Boundry Box +#Line2 + + +1 + +-3.39044409742429,54.4773506133346 +-3.39350053170528,54.5671837463176 +-3.23889175996951,54.5688656348476 +-3.23617414923416,54.4790269642571 +-3.39044409742429,54.4773506133346 + + + + + +NY11 +#labelStyle + +-3.31474505588112,54.5231361418833 + + + + +NY12 + +Small Square NY12 Boundry Box +#Line2 + + +1 + +-3.39350083822214,54.5671927304563 +-3.39657417012837,54.6570244038255 +-3.24162466913533,54.6587118548549 +-3.23889203250726,54.5688746195413 +-3.39350083822214,54.5671927304563 + + + + + +NY12 +#labelStyle + +-3.31764033260157,54.6129803858805 + + + + +NY13 + +Small Square NY13 Boundry Box +#Line2 + + +1 + +-3.39657447834149,54.6570333878183 +-3.39966483492918,54.7468636021925 +-3.2443727187015,54.74855664025 +-3.24162494318145,54.6587208394052 +-3.39657447834149,54.6570333878183 + + + + + +NY13 +#labelStyle + +-3.32055163260923,54.7028231830027 + + + + +NY14 + +Small Square NY14 Boundry Box +#Line2 + + +1 + +-3.39966514485133,54.7468725860394 +-3.40277265447838,54.8367013420409 +-3.24713602283655,54.8383999918463 +-3.24437299426735,54.7485656246568 +-3.39966514485133,54.7468725860394 + + + + + +NY14 +#labelStyle + +-3.32347907655816,54.7926645339687 + + + + +NY15 + +Small Square NY15 Boundry Box +#Line2 + + +1 + +-3.40277296612248,54.836710325742 +-3.40589775846509,54.9265376239966 +-3.24991469688177,54.9282419104627 +-3.24713629993361,54.8384089761098 +-3.40277296612248,54.836710325742 + + + + + +NY15 +#labelStyle + +-3.32642278634016,54.8825044395011 + + + + +NY16 + +Small Square NY16 Boundry Box +#Line2 + + +1 + +-3.40589807184415,54.9265466075519 +-3.40904027791371,55.0163724486896 +-3.25270885736625,55.0180823969245 +-3.24991497552162,54.928250894583 +-3.40589807184415,54.9265466075519 + + + + + +NY16 +#labelStyle + +-3.3293828851006,54.9723429003279 + + + + +NY17 + +Small Square NY17 Boundry Box +#Line2 + + +1 + +-3.40904059304092,55.0163814320993 +-3.41220034520112,55.1062058167539 +-3.25551862202215,55.1079214520625 +-3.25270913756062,55.0180913809016 +-3.40904059304092,55.0163814320993 + + + + + +NY17 +#labelStyle + +-3.33235949725453,55.0621799171821 + + + + +NY18 + +Small Square NY18 Boundry Box +#Line2 + + +1 + +-3.41220066208978,55.1062148000179 +-3.41537809407401,55.1960377288265 +-3.25834410980012,55.197759076713 +-3.25551890378286,55.1079304358965 +-3.41220066208978,55.1062148000179 + + + + + +NY18 +#labelStyle + +-3.33535274850293,55.1520154908011 + + + + +NY19 + +Small Square NY19 Boundry Box +#Line2 + + +1 + +-3.41537841273756,55.196046711945 +-3.41857365966654,55.285868185548 +-3.26118544088503,55.2875952717175 +-3.25834439313913,55.1977680604039 +-3.41537841273756,55.196046711945 + + + + + +NY19 +#labelStyle + +-3.33836276584928,55.2418496219266 + + + + +NY20 + +Small Square NY20 Boundry Box +#Line2 + + +1 + +-3.23345578588979,54.3891780300391 +-3.23615844888265,54.4790181372275 +-3.08187362351079,54.4804976110028 +-3.07950803694676,54.390652637455 +-3.23345578588979,54.3891780300391 + + + + + +NY20 +#labelStyle + +-3.15774139361324,54.4348659177839 + + + + +NY21 + +Small Square NY21 Boundry Box +#Line2 + + +1 + +-3.23615871991989,54.4790271220648 +-3.23887629676367,54.5688657931766 +-3.08425250221291,54.5703501551184 +-3.08187386074429,54.480506596328 +-3.23615871991989,54.4790271220648 + + + + + +NY21 +#labelStyle + +-3.16028274851024,54.5247168116688 + + + + +NY22 + +Small Square NY22 Boundry Box +#Line2 + + +1 + +-3.23887656929802,54.5688747778704 +-3.24160917184727,54.6587120137077 +-3.08664453505538,54.6602012853027 +-3.08425274075692,54.5703591403021 +-3.23887656929802,54.5688747778704 + + + + + +NY22 +#labelStyle + +-3.16283814154566,54.6145662807922 + + + + +NY23 + +Small Square NY23 Boundry Box +#Line2 + + +1 + +-3.24160944588997,54.658720998258 +-3.24435718714255,54.7485567996287 +-3.08904982097442,54.7500510025309 +-3.08664477491973,54.6602102703451 +-3.24160944588997,54.658720998258 + + + + + +NY23 +#labelStyle + +-3.16540767815543,54.7044143260452 + + + + +NY24 + +Small Square NY24 Boundry Box +#Line2 + + +1 + +-3.24435746270496,54.7485657840355 +-3.24712045681661,54.8384001517533 +-3.09146845992017,54.8398993077854 +-3.08905006216905,54.750059987432 +-3.24435746270496,54.7485657840355 + + + + + +NY24 +#labelStyle + +-3.16799146485458,54.7942609483254 + + + + +NY25 + +Small Square NY25 Boundry Box +#Line2 + + +1 + +-3.24712073391021,54.8384091360168 +-3.2498990962093,54.9282420709004 +-3.09390055286969,54.9297462020555 +-3.09146870245514,54.8399082925453 +-3.24712073391021,54.8384091360168 + + + + + +NY25 +#labelStyle + +-3.17058960925104,54.8841061485366 + + + + +NY26 + +Small Square NY26 Boundry Box +#Line2 + + +1 + +-3.24989937484567,54.9282510550207 +-3.25269322184827,55.0180825578952 +-3.09634620184008,55.0195916863387 +-3.09390079675515,54.9297551866744 +-3.24989937484567,54.9282510550207 + + + + + +NY26 +#labelStyle + +-3.17320222005963,54.9739499275894 + + + + +NY27 + +Small Square NY27 Boundry Box +#Line2 + + +1 + +-3.25269350203914,55.0180915418723 +-3.25550295146421,55.1079216135686 +-3.09880550990182,55.10943576164 +-3.09634644708627,55.0196006708167 +-3.25269350203914,55.0180915418723 + + + + + +NY27 +#labelStyle + +-3.17582940711619,55.0637922864014 + + + + +NY28 + +Small Square NY28 Boundry Box +#Line2 + + +1 + +-3.25550323322141,55.1079305974026 +-3.25832840400629,55.1977592387568 +-3.10127858119235,55.1992784289713 +-3.09880575651912,55.1094447459771 +-3.25550323322141,55.1079305974026 + + + + + +NY28 +#labelStyle + +-3.17847128139207,55.1536332258965 + + + + +NY29 + +Small Square NY29 Boundry Box +#Line2 + + +1 + +-3.25832868734177,55.1977682224478 +-3.26116969965788,55.2875954343015 +-3.10376552092978,55.2891196893519 +-3.10127882919121,55.1992874131677 +-3.25832868734177,55.1977682224478 + + + + + +NY29 +#labelStyle + +-3.18112795500863,55.2434727470049 + + + + +NY30 + +Small Square NY30 Boundry Box +#Line2 + + +1 + +-3.07949263995366,54.3906527751167 +-3.0818581928016,54.4804977491188 +-2.92756031556692,54.4817803070044 +-2.92553193606002,54.39193111401 +-3.07949263995366,54.3906527751167 + + + + + +NY30 +#labelStyle + +-3.00360317338955,54.4362447926528 + + + + +NY31 + +Small Square NY31 Boundry Box +#Line2 + + +1 + +-3.08185843003172,54.480506734444 +-3.08423703759828,54.5703502936908 +-2.92960009327443,54.5716370894778 +-2.92756051898356,54.4817892927525 +-3.08185843003172,54.480506734444 + + + + + +NY31 +#labelStyle + +-3.00580640596241,54.5261002400565 + + + + +NY32 + +Small Square NY32 Boundry Box +#Line2 + + +1 + +-3.08423727613889,54.5703592788745 +-3.08662903634794,54.6602014243335 +-2.93165115087171,54.6614924766534 +-2.92960029781484,54.5716460750862 +-3.08423727613889,54.5703592788745 + + + + + +NY32 +#labelStyle + +-3.00802180989135,54.6159542826827 + + + + +NY33 + +Small Square NY33 Boundry Box +#Line2 + + +1 + +-3.08662927620887,54.6602104093759 +-3.08903428798537,54.750051142022 +-2.93371357320793,54.7513464696515 +-2.93165135654434,54.6615014621224 +-3.08662927620887,54.6602104093759 + + + + + +NY33 +#labelStyle + +-3.01024947660274,54.7058069215775 + + + + +NY34 + +Small Square NY34 Boundry Box +#Line2 + + +1 + +-3.08903452917657,54.7500601269232 +-3.09145289245932,54.8398994477389 +-2.93578744600196,54.8411990696008 +-2.93371378002131,54.7513554549811 +-3.08903452917657,54.7500601269232 + + + + + +NY34 +#labelStyle + +-3.01248949845888,54.7956581577957 + + + + +NY35 + +Small Square NY35 Boundry Box +#Line2 + + +1 + +-3.09145313499084,54.8399084324989 +-3.09388495074539,54.9297463424735 +-2.93787285585344,54.9310502776385 +-2.9357876539647,54.8412080547912 +-3.09145313499084,54.8399084324989 + + + + + +NY35 +#labelStyle + +-3.01474196876984,54.8855079923992 + + + + +NY36 + +Small Square NY36 Boundry Box +#Line2 + + +1 + +-3.09388519462737,54.9297553270924 +-3.09633056485923,55.0195918272233 +-2.93996989025413,55.0209000949116 +-2.93787306497425,54.9310592626898 +-3.09388519462737,54.9297553270924 + + + + + +NY36 +#labelStyle + +-3.01700698180567,54.9753564264588 + + + + +NY37 + +Small Square NY37 Boundry Box +#Line2 + + +1 + +-3.09633081010193,55.0196008117013 +-3.09878983786986,55.1094359029931 +-2.94207863759932,55.1107485225759 +-2.9399701005418,55.0209090798238 +-3.09633081010193,55.0196008117013 + + + + + +NY37 +#labelStyle + +-3.01928463280867,55.0652034610536 + + + + +NY38 + +Small Square NY38 Boundry Box +#Line2 + + +1 + +-3.09879008448364,55.1094448873303 +-3.10126287391323,55.1992785707952 +-2.94419918719944,55.2005955617958 +-2.94207884906273,55.1107575073492 +-3.09879008448364,55.1094448873303 + + + + + +NY38 +#labelStyle + +-3.02157501800586,55.155049097271 + + + + +NY39 + +Small Square NY39 Boundry Box +#Line2 + + +1 + +-3.10126312190855,55.1992875549916 +-3.10374977820596,55.2891198316487 +-2.9463316292919,55.2904412137447 +-2.94419939984758,55.2006045464304 +-3.10126312190855,55.1992875549916 + + + + + +NY39 +#labelStyle + +-3.02387823462172,55.244893336206 + + + + +NY40 + +Small Square NY40 Boundry Box +#Line2 + + +1 + +-2.9255165378636,54.3919312320411 +-2.92754488364541,54.4817804254251 +-2.77323581464737,54.4828660333508 +-2.77154472531788,54.3930132685749 +-2.9255165378636,54.3919312320411 + + + + + +NY40 +#labelStyle + +-2.84945287523903,54.4374270383436 + + + + +NY41 + +Small Square NY41 Boundry Box +#Line2 + + +1 + +-2.92754508705867,54.4817894111731 +-2.92958462743839,54.5716372082898 +-2.77493640738383,54.5727264036164 +-2.77323598423879,54.4828750194568 +-2.92754508705867,54.4817894111731 + + + + + +NY41 +#labelStyle + +-2.85131789499956,54.5272863902336 + + + + +NY42 + +Small Square NY42 Boundry Box +#Line2 + + +1 + +-2.9295848319754,54.5716461938982 +-2.93163565093367,54.6614925958584 +-2.77664640490085,54.6625853943601 +-2.77493657791222,54.5727353895844 +-2.9295848319754,54.5716461938982 + + + + + +NY42 +#labelStyle + +-2.85319321840979,54.6171443544843 + + + + +NY43 + +Small Square NY43 Boundry Box +#Line2 + + +1 + +-2.93163585660288,54.6615015813275 +-2.93369803897901,54.7513465892512 +-2.7783658779496,54.7524430068249 +-2.77664657637324,54.6625943801903 +-2.93163585660288,54.6615015813275 + + + + + +NY43 +#labelStyle + +-2.85507892287483,54.7070009322751 + + + + +NY44 + +Small Square NY44 Boundry Box +#Line2 + + +1 + +-2.93369824578895,54.7513555745809 +-2.93577187729185,54.841199189597 +-2.78009489800656,54.8422992422633 +-2.77836605037311,54.7524519925172 +-2.93369824578895,54.7513555745809 + + + + + +NY44 +#labelStyle + +-2.85697508659225,54.7968561247953 + + + + +NY45 + +Small Square NY45 Boundry Box +#Line2 + + +1 + +-2.93577208525113,54.8412081747875 +-2.9378572524704,54.9310503980331 +-2.78183353728271,54.932154101938 +-2.78009507138836,54.8423082278181 +-2.93577208525113,54.8412081747875 + + + + + +NY45 +#labelStyle + +-2.85888178856221,54.8867099332426 + + + + +NY46 + +Small Square NY46 Boundry Box +#Line2 + + +1 + +-2.93785746158773,54.9310593830843 +-2.93995425200498,55.0209002157062 +-2.783581868733,55.0220075871224 +-2.78183371163007,54.9321630873552 +-2.93785746158773,54.9310593830843 + + + + + +NY46 +#labelStyle + +-2.86079910859767,54.976562358825 + + + + +NY47 + +Small Square NY47 Boundry Box +#Line2 + + +1 + +-2.93995446228914,55.0209092006185 +-2.94206296428938,55.1107486437723 +-2.78533996606591,55.1118596990999 +-2.78358204405326,55.0220165724022 +-2.93995446228914,55.0209092006185 + + + + + +NY47 +#labelStyle + +-2.86272712733486,55.0664134027605 + + + + +NY48 + +Small Square NY48 Boundry Box +#Line2 + + +1 + +-2.94206317574927,55.1107576285457 +-2.94418347863257,55.2005956833959 +-2.78710790375308,55.2017104391643 +-2.78534014236646,55.1118686842425 +-2.94206317574927,55.1107576285457 + + + + + +NY48 +#labelStyle + +-2.86466592624387,55.1562630662763 + + + + +NY49 + +Small Square NY49 Boundry Box +#Line2 + + +1 + +-2.94418369127717,55.2006046680305 +-2.94631588527046,55.2904413357502 +-2.7888857570392,55.2915598086192 +-2.78710808104142,55.2017194241698 +-2.94418369127717,55.2006046680305 + + + + + +NY49 +#labelStyle + +-2.86661558763932,55.2461113506091 + + + + +NY50 + +Small Square NY50 Boundry Box +#Line2 + + +1 + +-2.77152932610283,54.3930133669723 +-2.77322038169961,54.4828661320729 +-2.61890198188503,54.483754761197 +-2.61754825204033,54.3938990725023 +-2.77152932610283,54.3930133669723 + + + + + +NY50 +#labelStyle + +-2.69529235296783,54.438412623505 + + + + +NY51 + +Small Square NY51 Boundry Box +#Line2 + + +1 + +-2.77322055128765,54.482875118179 +-2.77492094051384,54.5727265026648 +-2.62026331962911,54.5736180684901 +-2.61890211764427,54.4837637475962 +-2.77322055128765,54.482875118179 + + + + + +NY51 +#labelStyle + +-2.6968190833072,54.5282752306323 + + + + +NY52 + +Small Square NY52 Boundry Box +#Line2 + + +1 + +-2.77492111103883,54.5727354886328 +-2.77663090392108,54.6625854937362 +-2.62163218632848,54.6634800091774 +-2.62026345613843,54.5736270547525 +-2.77492111103883,54.5727354886328 + + + + + +NY52 +#labelStyle + +-2.69835424880748,54.618136464411 + + + + +NY53 + +Small Square NY53 Boundry Box +#Line2 + + +1 + +-2.77663107539005,54.6625944795664 +-2.7783503426711,54.75244310653 +-2.62300863862722,54.7533405846024 +-2.62163232359352,54.6634889953032 +-2.77663107539005,54.6625944795664 + + + + + +NY53 +#labelStyle + +-2.69989791284258,54.7079963261314 + + + + +NY54 + +Small Square NY54 Boundry Box +#Line2 + + +1 + +-2.77835051509116,54.7524520922224 +-2.78007932823893,54.8422993422991 +-2.62439273375013,54.8431997961193 +-2.62300877665367,54.7533495705917 +-2.77835051509116,54.7524520922224 + + + + + +NY54 +#labelStyle + +-2.70145013943527,54.7978548170949 + + + + +NY55 + +Small Square NY55 Boundry Box +#Line2 + + +1 + +-2.78007950161727,54.8423083278539 +-2.78181793283413,54.9321542023059 +-2.62578452951015,54.9330576450931 +-2.62439287254375,54.8432087819723 +-2.78007950161727,54.8423083278539 + + + + + +NY55 +#labelStyle + +-2.70301099326548,54.8877119386126 + + + + +NY56 + +Small Square NY56 Boundry Box +#Line2 + + +1 + +-2.78181810717801,54.9321631877231 +-2.7835662294102,55.0220076878237 +-2.62718408431588,55.0229141329009 +-2.62578466907673,54.9330666308099 +-2.78181810717801,54.9321631877231 + + + + + +NY56 +#labelStyle + +-2.7045805396787,54.9775676920071 + + + + +NY57 + +Small Square NY57 Boundry Box +#Line2 + + +1 + +-2.78356640472696,55.0220166731036 +-2.78532429167414,55.1118598001363 +-2.62859145717926,55.1127692609308 +-2.62718422466131,55.0229231184816 +-2.78356640472696,55.0220166731036 + + + + + +NY57 +#labelStyle + +-2.70615884469453,55.0674220786117 + + + + +NY58 + +Small Square NY58 Boundry Box +#Line2 + + +1 + +-2.78532446797117,55.1118687852789 +-2.7870921940961,55.2017105405372 +-2.63000670772331,55.2026230305822 +-2.62859159830947,55.1127782463756 +-2.78532446797117,55.1118687852789 + + + + + +NY58 +#labelStyle + +-2.70774597501533,55.1572750997706 + + + + +NY59 + +Small Square NY59 Boundry Box +#Line2 + + +1 + +-2.7870923713809,55.2017195255427 +-2.78887001191929,55.2915599103301 +-2.63142989619002,55.2924754432655 +-2.63000684964429,55.2026320158913 +-2.7870923713809,55.2017195255427 + + + + + +NY59 +#labelStyle + +-2.70934199803501,55.2471267568386 + + + + +NY60 + +Small Square NY60 Boundry Box +#Line2 + + +1 + +-2.61753285199143,54.3938991512633 +-2.61888654809718,54.4837548402181 +-2.4645606791195,54.48444646693 +-2.46354436424521,54.3945885023405 +-2.61753285199143,54.3938991512633 + + + + + +NY60 +#labelStyle + +-2.54112346115428,54.4392015219982 + + + + +NY61 + +Small Square NY61 Boundry Box +#Line2 + + +1 + +-2.61888668385304,54.4837638266172 +-2.62024785191272,54.5736181477723 +-2.46558270581393,54.5743120603224 +-2.46456078104098,54.4844554535572 +-2.61888668385304,54.4837638266172 + + + + + +NY61 +#labelStyle + +-2.54231183935281,54.5290667349336 + + + + +NY62 + +Small Square NY62 Boundry Box +#Line2 + + +1 + +-2.62024798841864,54.5736271340347 +-2.62161668449595,54.6634800887219 +-2.46661038506509,54.6641762971641 +-2.46558280829855,54.5743210468139 +-2.62024798841864,54.5736271340347 + + + + + +NY62 +#labelStyle + +-2.54350678358285,54.6189305859614 + + + + +NY63 + +Small Square NY63 Boundry Box +#Line2 + + +1 + +-2.62161682175756,54.6634890748477 +-2.62299310248951,54.7533406644104 +-2.46764375940263,54.7540391788765 +-2.46661048811708,54.66418528352 +-2.62161682175756,54.6634890748477 + + + + + +NY63 +#labelStyle + +-2.54470834317895,54.708793076461 + + + + +NY64 + +Small Square NY64 Boundry Box +#Line2 + + +1 + +-2.62299324051252,54.7533496503997 +-2.6243771631168,54.8431998761919 +-2.46868287179229,54.8439007068931 +-2.46764386302628,54.754048165097 +-2.62299324051252,54.7533496503997 + + + + + +NY64 +#labelStyle + +-2.54591656798079,54.7986542078236 + + + + +NY65 + +Small Square NY65 Boundry Box +#Line2 + + +1 + +-2.62437730190696,54.8432088620449 +-2.6257689241893,54.9330577254315 +-2.46972776564141,54.9337608826586 +-2.46868297599191,54.8439096929783 +-2.62437730190696,54.8432088620449 + + + + + +NY65 +#labelStyle + +-2.5471315083397,54.8885139814509 + + + + +NY66 + +Small Square NY66 Boundry Box +#Line2 + + +1 + +-2.62576906375241,54.9330667111483 +-2.62716844411417,55.0229142135062 +-2.47077848480461,55.0236197076307 +-2.46972787042136,54.9337698686086 +-2.62576906375241,54.9330667111483 + + + + + +NY66 +#labelStyle + +-2.54835321512515,54.9783723987572 + + + + +NY67 + +Small Square NY67 Boundry Box +#Line2 + + +1 + +-2.62716858445611,55.022923199087 +-2.62857578190188,55.1127693418043 +-2.47183507358955,55.1134771832791 +-2.4707785901693,55.0236286934457 +-2.62716858445611,55.022923199087 + + + + + +NY67 +#labelStyle + +-2.54958173973145,55.0682294611684 + + + + +NY68 + +Small Square NY68 Boundry Box +#Line2 + + +1 + +-2.62857592302857,55.1127783272492 +-2.62999099717395,55.2026231117251 +-2.47289757676271,55.2033333110855 +-2.47183517954342,55.1134861689592 +-2.62857592302857,55.1127783272492 + + + + + +NY68 +#labelStyle + +-2.55081713408444,55.1580851701222 + + + + +NY69 + +Small Square NY69 Boundry Box +#Line2 + + +1 + +-2.6299911390914,55.2026320970342 +-2.63141415017088,55.2924755246791 +-2.47396603955538,55.2931880925434 +-2.47289768331028,55.2033422966309 +-2.6299911390914,55.2026320970342 + + + + + +NY69 +#labelStyle + +-2.55205945064838,55.247939527068 + + + + +NY70 + +Small Square NY70 Boundry Box +#Line2 + + +1 + +-2.46352896354729,54.3945885614631 +-2.46454524467777,54.4844465262479 +-2.31021376875615,54.4849411321702 +-2.30953491050906,54.3950815398358 +-2.46352896354729,54.3945885614631 + + + + + +NY70 +#labelStyle + +-2.38694805500898,54.439793712899 + + + + +NY71 + +Small Square NY71 Boundry Box +#Line2 + + +1 + +-2.46454534659587,54.4844555128751 +-2.46556723743876,54.5743121198363 +-2.31089644231495,54.5748083606069 +-2.31021383683568,54.4849501189605 +-2.46454534659587,54.4844555128751 + + + + + +NY71 +#labelStyle + +-2.38779803224416,54.5296608820688 + + + + +NY72 + +Small Square NY72 Boundry Box +#Line2 + + +1 + +-2.46556733991998,54.5743211063278 +-2.46659488256881,54.6641763568749 +-2.31158289160143,54.6646742396853 +-2.31089651077064,54.5748173472622 +-2.46556733991998,54.5743211063278 + + + + + +NY72 +#labelStyle + +-2.38865270588275,54.6195266979212 + + + + +NY73 + +Small Square NY73 Boundry Box +#Line2 + + +1 + +-2.46659498561738,54.6641853432308 +-2.46762822259617,54.7540392387851 +-2.31227314502539,54.7545387708829 +-2.31158296043611,54.6646832262058 +-2.46659498561738,54.6641853432308 + + + + + +NY73 +#labelStyle + +-2.38951211121356,54.7093911619025 + + + + +NY74 + +Small Square NY74 Boundry Box +#Line2 + + +1 + +-2.46762832621638,54.7540482250056 +-2.46866730048515,54.8439007670003 +-2.31296723128789,54.8444019556896 +-2.31227321424191,54.7545477572687 +-2.46762832621638,54.7540482250056 + + + + + +NY74 +#labelStyle + +-2.39037628388677,54.7992542754712 + + + + +NY75 + +Small Square NY75 Boundry Box +#Line2 + + +1 + +-2.46866740468131,54.8439097530855 +-2.46971215964165,54.9337609429654 +-2.31366517938503,54.9342637956074 +-2.31296730088914,54.8444109419408 +-2.46866740468131,54.8439097530855 + + + + + +NY75 +#labelStyle + +-2.39124525991853,54.8891160400972 + + + + +NY76 + +Small Square NY76 Boundry Box +#Line2 + + +1 + +-2.46971226441811,54.9337699289154 +-2.47076284391882,55.0236197681379 +-2.31436701861172,55.0241242921514 +-2.31366524937393,54.9342727817241 +-2.46971226441811,54.9337699289154 + + + + + +NY76 +#labelStyle + +-2.39211907569568,54.9789764572635 + + + + +NY77 + +Small Square NY77 Boundry Box +#Line2 + + +1 + +-2.47076294928001,55.023628753953 +-2.47181939762286,55.1134772439877 +-2.31507277856548,55.1139834468499 +-2.3143670889912,55.024133278134 +-2.47076294928001,55.023628753953 + + + + + +NY77 +#labelStyle + +-2.39299776798047,55.0688355284657 + + + + +NY78 + +Small Square NY78 Boundry Box +#Line2 + + +1 + +-2.47181950357322,55.1134862296678 +-2.47288186551877,55.2033333719963 +-2.31578248915037,55.2038412612432 +-2.31507284933852,55.1139924326983 +-2.47181950357322,55.1134862296678 + + + + + +NY78 +#labelStyle + +-2.39388137391539,55.1586932552117 + + + + +NY79 + +Small Square NY79 Boundry Box +#Line2 + + +1 + +-2.47288197206281,55.2033423575417 +-2.47395029283634,55.2931881536573 +-2.31649618058096,55.2936977368845 +-2.31578256031999,55.2038502469577 +-2.47288197206281,55.2033423575417 + + + + + +NY79 +#labelStyle + +-2.39476993102809,55.2485496390217 + + + + +NY80 + +Small Square NY80 Boundry Box +#Line2 + + +1 + +-2.309519509347,54.3950815793185 +-2.31019833384681,54.4849411717832 +-2.15586311362516,54.4852387437735 +-2.1555217398279,54.3953781719343 +-2.309519509347,54.3950815793185 + + + + + +NY80 +#labelStyle + +-2.23276799023467,54.4401891805001 + + + + +NY81 + +Small Square NY81 Boundry Box +#Line2 + + +1 + +-2.31019840192295,54.4849501585736 +-2.31088097346865,54.5748084003509 +-2.15620640593899,54.5751069561085 +-2.15586314785994,54.485247730662 +-2.31019840192295,54.4849501585736 + + + + + +NY81 +#labelStyle + +-2.23327953158746,54.5300576562221 + + + + +NY82 + +Small Square NY82 Boundry Box +#Line2 + + +1 + +-2.31088104192094,54.5748173870062 +-2.31156738863049,54.6646742795608 +-2.15655159686395,54.6649738234144 +-2.15620644036293,54.5751159428625 +-2.31088104192094,54.5748173870062 + + + + + +NY82 +#labelStyle + +-2.23379389935881,54.6199247843652 + + + + +NY83 + +Small Square NY83 Boundry Box +#Line2 + + +1 + +-2.31156745746174,54.6646832660813 +-2.31225760774067,54.7545388108905 +-2.15689870068626,54.7548393472023 +-2.15655163147846,54.6649828100339 +-2.31156745746174,54.6646832660813 + + + + + +NY83 +#labelStyle + +-2.23431111478727,54.7097905664201 + + + + +NY84 + +Small Square NY84 Boundry Box +#Line2 + + +1 + +-2.31225767695376,54.7545477972763 +-2.31295165949887,54.8444019958299 +-2.15724773183863,54.8447035289961 +-2.15689873549277,54.7548483336875 +-2.31225767695376,54.7545477972763 + + + + + +NY84 +#labelStyle + +-2.2348311993289,54.7996550038903 + + + + +NY85 + +Small Square NY85 Boundry Box +#Line2 + + +1 + +-2.31295172909667,54.8444109820811 +-2.31364957289973,54.9342638358809 +-2.15759870490215,54.9345663703322 +-2.15724776683861,54.8447125153472 +-2.31295172909667,54.8444109820811 + + + + + +NY85 +#labelStyle + +-2.23535417466003,54.8895180982913 + + + + +NY86 + +Small Square NY86 Boundry Box +#Line2 + + +1 + +-2.31364964288515,54.9342728219977 +-2.3143513772367,55.0241243325589 +-2.15795163460814,55.0244278727605 +-2.15759874009705,54.9345753565493 +-2.31364964288515,54.9342728219977 + + + + + +NY86 +#labelStyle + +-2.23588006268008,54.9793798511523 + + + + +NY87 + +Small Square NY87 Boundry Box +#Line2 + + +1 + +-2.31435144761269,55.0241333185414 +-2.31505710210584,55.1139834873918 +-2.15830653584012,55.1142880378442 +-2.15795166999944,55.0244368588439 +-2.31435144761269,55.0241333185414 + + + + + +NY87 +#labelStyle + +-2.23640888551442,55.069240264015 + + + + +NY88 + +Small Square NY88 Boundry Box +#Line2 + + +1 + +-2.31505717287536,55.1139924732402 +-2.31576677740971,55.2038413019202 +-2.15866342363578,55.2041468671593 +-2.15830657142933,55.1142970237939 +-2.31505717287536,55.1139924732402 + + + + + +NY88 +#labelStyle + +-2.23694066551731,55.1590993384343 + + + + +NY89 + +Small Square NY89 Boundry Box +#Line2 + + +1 + +-2.31576684857579,55.2038502876347 +-2.31648043336138,55.2936977776971 +-2.15902231318891,55.2940043622946 +-2.1586634594244,55.2041558529755 +-2.31576684857579,55.2038502876347 + + + + + +NY89 +#labelStyle + +-2.23747542527479,55.2489570759779 + + + + +NY90 + +Small Square NY90 Boundry Box +#Line2 + + +1 + +-2.15550633838662,54.395378191776 +-2.1558476784345,54.4852387636807 +-2.0015105768404,54.4853392938326 +-2.00150670147791,54.3954783907828 +-2.15550633838662,54.395378191776 + + + + + +NY90 +#labelStyle + +-2.07858512288614,54.4403879143124 + + + + +NY91 + +Small Square NY91 Boundry Box +#Line2 + + +1 + +-2.1558477126659,54.4852477505692 +-2.15619093680927,54.5751069760816 +-2.00151447378021,54.5752078388654 +-2.00151057722903,54.4853482807543 +-2.1558477126659,54.4852477505692 + + + + + +NY91 +#labelStyle + +-2.07875820734537,54.5302570468321 + + + + +NY92 + +Small Square NY92 Boundry Box +#Line2 + + +1 + +-2.1561909712298,54.5751159628355 +-2.15653609360744,54.6649738434535 +-2.00151839207004,54.6650750403342 +-2.00151447417097,54.5752168256526 +-2.1561909712298,54.5751159628355 + + + + + +NY92 +#labelStyle + +-2.07893224802365,54.6201248346586 + + + + +NY93 + +Small Square NY93 Boundry Box +#Line2 + + +1 + +-2.15653612821853,54.6649828300731 +-2.15688316311383,54.7548393673078 +-2.00152233187072,54.7549408997617 +-2.00151839246295,54.6650840269872 +-2.15653612821853,54.6649828300731 + + + + + +NY93 +#labelStyle + +-2.07910725210655,54.7099912793051 + + + + +NY94 + +Small Square NY94 Boundry Box +#Line2 + + +1 + +-2.15688319791691,54.7548483537931 +-2.15723215975973,54.8447035491684 +-2.00152629334473,54.8448054186833 +-2.00152233226578,54.7549498862806 +-2.15688319791691,54.7548483537931 + + + + + +NY94 +#labelStyle + +-2.07928322685321,54.7998563822978 + + + + +NY95 + +Small Square NY95 Boundry Box +#Line2 + + +1 + +-2.15723219475624,54.8447125355195 +-2.15758309812476,54.9345663905714 +-2.00153027665621,54.934668598647 +-2.00152629374196,54.8448144050682 +-2.15723219475624,54.8447125355195 + + + + + +NY95 +#labelStyle + +-2.07946017959731,54.8897201451751 + + + + +NY96 + +Small Square NY96 Boundry Box +#Line2 + + +1 + +-2.15758313331618,54.9345753767886 +-2.15793599293881,55.0244278930671 +-2.00153428197102,55.0245304412145 +-2.00153027705564,54.9346775848981 +-2.15758313331618,54.9345753767886 + + + + + +NY96 +#labelStyle + +-2.07963811774801,54.979582569489 + + + + +NY97 + +Small Square NY97 Boundry Box +#Line2 + + +1 + +-2.15793602832662,55.0244368791504 +-2.15829085908392,55.1142880582184 +-2.0015383094567,55.1143909479608 +-2.00153428237266,55.0245394273319 +-2.15793602832662,55.0244368791504 + + + + + +NY97 +#labelStyle + +-2.07981704879093,55.069443656805 + + + + +NY98 + +Small Square NY98 Boundry Box +#Line2 + + +1 + +-2.15829089466961,55.1142970441681 +-2.15864771159629,55.2041468876013 +-2.00154235928256,55.2042501204738 +-2.00153830986057,55.1143999339447 +-2.15829089466961,55.1142970441681 + + + + + +NY98 +#labelStyle + +-2.07999698028909,55.1593034087014 + + + + +NY99 + +Small Square NY99 Boundry Box +#Line2 + + +1 + +-2.15864774738137,55.2041558734175 +-2.15900656566821,55.2940043828048 +-2.00154643161962,55.2941079603546 +-2.00154235968866,55.2042591063244 +-2.15864774738137,55.2041558734175 + + + + + +NY99 +#labelStyle + +-2.08017791988396,55.2491618267697 + + + + + +NZ + +Large Square NZ Boundry Box +#Line1 + + +1 + +-2.00149129994233,54.3954783909829 +-2.00153068399724,55.2941079605619 +-0.427115479665015,55.2839795708965 +-0.461660358238207,54.3856798414269 +-2.00149129994233,54.3954783909829 + + + + + +NZ00 + +Small Square NZ00 Boundry Box +#Line2 + + +1 + +-2.00149129994233,54.3954783909829 +-2.00149514155474,54.4853392940334 +-1.84715802165829,54.4852427796776 +-1.84749164487601,54.3953821937295 +-2.00149129994233,54.3954783909829 + + + + + +NZ00 +#labelStyle + +-1.92440130922994,54.4403899090659 + + + + +NZ01 + +Small Square NZ01 Boundry Box +#Line2 + + +1 + +-2.00149514193999,54.4853482809551 +-2.00149900455478,54.5752078390669 +-1.84682252307713,54.575111006189 +-1.84715798820076,54.4852517665676 +-2.00149514193999,54.4853482809551 + + + + + +NZ01 +#labelStyle + +-1.92423592969506,54.5302590485923 + + + + +NZ02 + +Small Square NZ02 Boundry Box +#Line2 + + +1 + +-2.00149900494214,54.5752168258542 +-2.00150288871711,54.6650750405364 +-1.84648516858333,54.6649778877376 +-1.8468224894347,54.5751199929443 +-2.00149900494214,54.5752168258542 + + + + + +NZ02 +#labelStyle + +-1.92406963610714,54.6201268434583 + + + + +NZ03 + +Small Square NZ03 Boundry Box +#Line2 + + +1 + +-2.00150288910659,54.6650840271894 +-2.00150679420114,54.7549408999646 +-1.84614594421233,54.7548434258352 +-1.84648513475462,54.6649868743585 +-2.00150288910659,54.6650840271894 + + + + + +NZ03 +#labelStyle + +-1.92390242159784,54.7099932951774 + + + + +NZ04 + +Small Square NZ04 Boundry Box +#Line2 + + +1 + +-2.00150679459276,54.7549498864835 +-2.00151072116792,54.844805418887 +-1.84580483585634,54.8447076220063 +-1.84614591019592,54.7548524123219 +-2.00150679459276,54.7549498864835 + + + + + +NZ04 +#labelStyle + +-1.92373427922847,54.7998584052759 + + + + +NZ05 + +Small Square NZ05 Boundry Box +#Line2 + + +1 + +-2.0015107215617,54.8448144052719 +-2.00151466978018,54.9346685988514 +-1.84546182926257,54.9345704777877 +-1.84580480165082,54.8447166083589 +-2.0015107215617,54.8448144052719 + + + + + +NZ05 +#labelStyle + +-1.92356520198912,54.8897221752928 + + + + +NZ06 + +Small Square NZ06 Boundry Box +#Line2 + + +1 + +-2.00151467017613,54.9346775851025 +-2.0015186402023,55.0245304414196 +-1.84511691003137,55.0244319947299 +-1.84546179486651,54.9345794640063 +-2.00151467017613,54.9346775851025 + + + + + +NZ06 +#labelStyle + +-1.9233951827977,54.9795846067801 + + + + +NZ07 + +Small Square NZ07 Boundry Box +#Line2 + + +1 + +-2.00151864060044,55.024539427537 +-2.00152263260035,55.1143909481666 +-1.84477006361428,55.1142921743965 +-1.84511687544332,55.0244409808146 +-2.00151864060044,55.024539427537 + + + + + +NZ07 +#labelStyle + +-1.92322421449908,55.0694457013036 + + + + +NZ08 + +Small Square NZ08 Boundry Box +#Line2 + + +1 + +-2.0015226330007,55.1143999341505 +-2.00152664714215,55.2042501206804 +-1.84442127531221,55.204151018364 +-1.84477002883278,55.1143011603476 +-2.0015226330007,55.1143999341505 + + + + + +NZ08 +#labelStyle + +-1.92305228986408,55.1593054604418 + + + + +NZ09 + +Small Square NZ09 Boundry Box +#Line2 + + +1 + +-2.00152664754472,55.204259106531 +-2.00153068399724,55.2941079605619 +-1.84407053027342,55.2940085282219 +-1.84442124033579,55.2041600041817 +-2.00152664754472,55.204259106531 + + + + + +NZ09 +#labelStyle + +-1.92287940158858,55.2491638857866 + + + + +NZ10 + +Small Square NZ10 Boundry Box +#Line2 + + +1 + +-1.84747624343109,54.3953821742881 +-1.84714258646398,54.4852427601721 +-1.69280731133668,54.4849492038763 +-1.69347841944053,54.3950895833248 +-1.84747624343109,54.3953821742881 + + + + + +NZ10 +#labelStyle + +-1.77021840560414,54.4401951647101 + + + + +NZ11 + +Small Square NZ11 Boundry Box +#Line2 + + +1 + +-1.84714255300306,54.485251747062 +-1.84680705394372,54.575110986619 +-1.69213243106967,54.5748164606648 +-1.69280724403436,54.4849581906695 +-1.84714255300306,54.485251747062 + + + + + +NZ11 +#labelStyle + +-1.76971456888608,54.5300636614518 + + + + +NZ12 + +Small Square NZ12 Boundry Box +#Line2 + + +1 + +-1.84680702029788,54.5751199733743 +-1.84646966532311,54.6649778681029 +-1.69145381776887,54.664682368228 +-1.69213236339544,54.574825447323 +-1.84680702029788,54.5751199733743 + + + + + +NZ12 +#labelStyle + +-1.76920794791244,54.6199308107131 + + + + +NZ13 + +Small Square NZ13 Boundry Box +#Line2 + + +1 + +-1.84646963149097,54.6649868547239 +-1.84613040663615,54.7548434061356 +-1.69077144334607,54.7545469280444 +-1.69145374971993,54.6646913547513 +-1.84646963149097,54.6649868547239 + + + + + +NZ13 +#labelStyle + +-1.76869852176187,54.7097966139854 + + + + +NZ14 + +Small Square NZ14 Boundry Box +#Line2 + + +1 + +-1.8461303726163,54.7548523926222 +-1.84578926377365,54.8447076022414 +-1.6900852794251,54.8444101416048 +-1.69077137491961,54.754555914433 +-1.8461303726163,54.7548523926222 + + + + + +NZ14 +#labelStyle + +-1.76818626929873,54.799661072773 + + + + +NZ15 + +Small Square NZ15 Boundry Box +#Line2 + + +1 + +-1.84578922956467,54.844716588594 +-1.84544622248137,54.9345704579572 +-1.68939529733807,54.9342720104123 +-1.69008521061826,54.8444191278589 +-1.84578922956467,54.844716588594 + + + + + +NZ15 +#labelStyle + +-1.76767116917042,54.8895241885922 + + + + +NZ16 + +Small Square NZ16 Boundry Box +#Line2 + + +1 + +-1.84544618808183,54.9345794441758 +-1.8451012683582,55.0244319748335 +-1.6887014681217,55.0241325359833 +-1.68939522814798,54.934280996532 +-1.84544618808183,54.9345794441758 + + + + + +NZ16 +#labelStyle + +-1.76715319980455,54.9793859629728 + + + + +NZ17 + +Small Square NZ17 Boundry Box +#Line2 + + +1 + +-1.84510123376665,55.0244409609183 +-1.84475438685421,55.114292154434 +-1.68800376251346,55.1139917198467 +-1.68870139854543,55.0241415219687 +-1.84510123376665,55.0244409609183 + + + + + +NZ17 +#labelStyle + +-1.76663233940616,55.0692463974576 + + + + +NZ18 + +Small Square NZ18 Boundry Box +#Line2 + + +1 + +-1.84475435206919,55.1143011403851 +-1.84440556326882,55.2041509983351 +-1.6873021509478,55.2038495635442 +-1.68800369254808,55.114000705698 +-1.84475435206919,55.1143011403851 + + + + + +NZ18 +#labelStyle + +-1.76610856595484,55.159105493602 + + + + +NZ19 + +Small Square NZ19 Boundry Box +#Line2 + + +1 + +-1.84440552828885,55.2041599841527 +-1.84405478274879,55.2940085081262 +-1.68659660355217,55.2937060686299 +-1.68730208059033,55.2038585492616 +-1.84440552828885,55.2041599841527 + + + + + +NZ19 +#labelStyle + +-1.76558185720185,55.2489632529746 + + + + +NZ20 + +Small Square NZ20 Boundry Box +#Line2 + + +1 + +-1.69346301827121,54.3950895442424 +-1.69279187642001,54.4849491646648 +-1.5384603089936,54.4844585742337 +-1.53946887445175,54.3946005673204 +-1.69346301827121,54.3950895442424 + + + + + +NZ20 +#labelStyle + +-1.61603826827804,54.4398036864144 + + + + +NZ21 + +Small Square NZ21 Boundry Box +#Line2 + + +1 + +-1.69279180911431,54.484958151458 +-1.69211696221599,54.5748164213238 +-1.53744607485621,54.574324210152 +-1.53846020784925,54.4844675608652 +-1.69279180911431,54.484958151458 + + + + + +NZ21 +#labelStyle + +-1.61519599509836,54.5296708906157 + + + + +NZ22 + +Small Square NZ22 Boundry Box +#Line2 + + +1 + +-1.69211689453836,54.574825407982 +-1.69143831479048,54.6646823287569 +-1.53642623084833,54.6641884897189 +-1.53744597315297,54.5743331966478 +-1.69211689453836,54.574825407982 + + + + + +NZ22 +#labelStyle + +-1.61434906767222,54.619536741664 + + + + +NZ23 + +Small Square NZ23 Boundry Box +#Line2 + + +1 + +-1.69143824673812,54.6646913152802 +-1.69075590605387,54.7545468884426 +-1.53540073476178,54.7540514143576 +-1.536426128582,54.6641974760791 +-1.69143824673812,54.6646913152802 + + + + + +NZ23 +#labelStyle + +-1.61349745102794,54.7094012410063 + + + + +NZ24 + +Small Square NZ24 Boundry Box +#Line2 + + +1 + +-1.69075583762396,54.7545558748312 +-1.69006970762853,54.8444101018718 +-1.53436954395562,54.8439129855028 +-1.53540063192812,54.7540604005823 +-1.69075583762396,54.7545558748312 + + + + + +NZ24 +#labelStyle + +-1.61264110983567,54.7992643901027 + + + + +NZ25 + +Small Square NZ25 Boundry Box +#Line2 + + +1 + +-1.69006963881823,54.8444190881259 +-1.68937969084516,54.9342719705475 +-1.53333261535062,54.933773204601 +-1.53436944055034,54.8439219715923 +-1.69006963881823,54.8444190881259 + + + + + +NZ25 +#labelStyle + +-1.61178000840288,54.8891261904244 + + + + +NZ26 + +Small Square NZ26 Boundry Box +#Line2 + + +1 + +-1.68937962165158,54.9342809566672 +-1.688685826739,55.024132495986 +-1.53228990542367,55.0236320731114 +-1.5333325113694,54.9337821905553 +-1.68937962165158,54.9342809566672 + + + + + +NZ26 +#labelStyle + +-1.61091411066973,54.9789866434556 + + + + +NZ27 + +Small Square NZ27 Boundry Box +#Line2 + + +1 + +-1.68868575715923,55.0241414819714 +-1.68798808604608,55.1139916797164 +-1.53124137020203,55.1134895925053 +-1.53228980086212,55.0236410589307 +-1.68868575715923,55.0241414819714 + + + + + +NZ27 +#labelStyle + +-1.61004338020428,55.0688457506932 + + + + +NZ28 + +Small Square NZ28 Boundry Box +#Line2 + + +1 + +-1.68798801607718,55.1140006655677 +-1.68728643919933,55.2038495232803 +-1.53018696525759,55.2033457642659 +-1.53124126505573,55.1134985781898 +-1.68798801607718,55.1140006655677 + + + + + +NZ28 +#labelStyle + +-1.60916778019779,55.1587035136464 + + + + +NZ29 + +Small Square NZ29 Boundry Box +#Line2 + + +1 + +-1.68728636883833,55.2038585089977 +-1.68658085632473,55.2937060282318 +-1.52912664570097,55.2932005898884 +-1.53018685952209,55.2033547498157 +-1.68728636883833,55.2038585089977 + + + + + +NZ29 +#labelStyle + +-1.60828727345983,55.2485599338368 + + + + +NZ30 + +Small Square NZ30 Boundry Box +#Line2 + + +1 + +-1.53945347374294,54.3946005085979 +-1.53844487454089,54.4844585153175 +-1.38411887746618,54.4837709037919 +-1.38546485891257,54.393915158669 +-1.53945347374294,54.3946005085979 + + + + + +NZ30 +#labelStyle + +-1.46186275331189,54.4392154845671 + + + + +NZ31 + +Small Square NZ31 Boundry Box +#Line2 + + +1 + +-1.53844477339316,54.4844675019489 +-1.53743060646997,54.5743241510411 +-1.38276533125063,54.5736342677826 +-1.38411874248397,54.4837798901967 +-1.53844477339316,54.4844675019489 + + + + + +NZ31 +#labelStyle + +-1.46068207830012,54.5290807465441 + + + + +NZ32 + +Small Square NZ32 Boundry Box +#Line2 + + +1 + +-1.53743050476333,54.5743331375369 +-1.53641072834089,54.6641884304125 +-1.3814042987553,54.6634962654334 +-1.38276519552259,54.5736432540507 +-1.53743050476333,54.5743331375369 + + + + + +NZ32 +#labelStyle + +-1.45949487940474,54.6189446468434 + + + + +NZ33 + +Small Square NZ33 Boundry Box +#Line2 + + +1 + +-1.53641062607115,54.6641974167727 +-1.53538519794407,54.7540513548548 +-1.38003572365746,54.7533568980897 +-1.38140416227583,54.6635052515649 +-1.53641062607115,54.6641974167727 + + + + + +NZ33 +#labelStyle + +-1.45830110760821,54.7088071868459 + + + + +NZ34 + +Small Square NZ34 Boundry Box +#Line2 + + +1 + +-1.53538509510697,54.7540603410796 +-1.53435397263713,54.8439129258028 +-1.37865954905694,54.8432161671079 +-1.38003558642089,54.7533658840848 +-1.53538509510697,54.7540603410796 + + + + + +NZ34 +#labelStyle + +-1.45710071339105,54.7986683679446 + + + + +NZ35 + +Small Square NZ35 Boundry Box +#Line2 + + +1 + +-1.5343538692284,54.8439219118923 +-1.53331700933942,54.9337731447029 +-1.3772757174688,54.9330740738549 +-1.37865941105755,54.8432251529666 +-1.5343538692284,54.8439219118923 + + + + + +NZ35 +#labelStyle + +-1.45589364672547,54.8885281915431 + + + + +NZ36 + +Small Square NZ36 Boundry Box +#Line2 + + +1 + +-1.53331690535472,54.9337821306572 +-1.53227426452635,55.0236320130143 +-1.37588417081577,55.02293061971 +-1.37727557870082,54.9330830595775 +-1.53331690535472,54.9337821306572 + + + + + +NZ36 +#labelStyle + +-1.45467985706883,54.9783866590574 + + + + +NZ37 + +Small Square NZ37 Boundry Box +#Line2 + + +1 + +-1.53227415996131,55.0236409988336 +-1.53122569422373,55.1134895322083 +-1.3744848504207,55.1127858060634 +-1.37588403127336,55.0229396052966 +-1.53227415996131,55.0236409988336 + + + + + +NZ37 +#labelStyle + +-1.45345929335704,55.0682437719154 + + + + +NZ38 + +Small Square NZ38 Boundry Box +#Line2 + + +1 + +-1.53122558907392,55.1134985178928 +-1.53017125400194,55.2033457037681 +-1.3730776969988,55.2026396343167 +-1.37448471009796,55.1127947915141 +-1.53122558907392,55.1134985178928 + + + + + +NZ38 +#labelStyle + +-1.45223190399787,55.1580995315566 + + + + +NZ39 + +Small Square NZ39 Boundry Box +#Line2 + + +1 + +-1.5301711482629,55.2033546893179 +-1.52911089897013,55.293200529189 +-1.37166265064983,55.2924921058825 +-1.37307755588977,55.2026486196317 +-1.5301711482629,55.2033546893179 + + + + + +NZ39 +#labelStyle + +-1.45099763686416,55.247953939432 + + + + +NZ40 + +Small Square NZ40 Boundry Box +#Line2 + + +1 + +-1.38544945884915,54.3939150803081 +-1.38410344366369,54.4837708251724 +-1.22978487916954,54.4828862108283 +-1.23146822140913,54.3930333755228 +-1.38544945884915,54.3939150803081 + + + + + +NZ40 +#labelStyle + +-1.30769371641665,54.4384305747749 + + + + +NZ41 + +Small Square NZ41 Boundry Box +#Line2 + + +1 + +-1.3841033086781,54.4837798115772 +-1.38274986351949,54.5736341889034 +-1.22809207663947,54.5727466519602 +-1.22978471035502,54.4828951969414 +-1.3841033086781,54.4837798115772 + + + + + +NZ41 +#labelStyle + +-1.30617468810588,54.5282932449513 + + + + +NZ42 + +Small Square NZ42 Boundry Box +#Line2 + + +1 + +-1.38274972778805,54.5736431751714 +-1.38138879690789,54.6634961862933 +-1.22638991199055,54.6626057139026 +-1.22809190689223,54.5727556379354 +-1.38274972778805,54.5736431751714 + + + + + +NZ42 +#labelStyle + +-1.30464726677004,54.6181545420744 + + + + +NZ43 + +Small Square NZ43 Boundry Box +#Line2 + + +1 + +-1.381388660425,54.6635051724247 +-1.38002018750475,54.7533568186875 +-1.22467831479279,54.7524633979007 +-1.22638974130359,54.6626146997399 +-1.381388660425,54.6635051724247 + + + + + +NZ43 +#labelStyle + +-1.30311138935207,54.7080144674368 + + + + +NZ44 + +Small Square NZ44 Boundry Box +#Line2 + + +1 + +-1.38002005026474,54.7533658046826 +-1.37864397840849,54.8432160874425 +-1.22295721389418,54.8423197052099 +-1.22467814315903,54.7524723836002 +-1.38002005026474,54.7533658046826 + + + + + +NZ44 +#labelStyle + +-1.30156699214925,54.7978730223422 + + + + +NZ45 + +Small Square NZ45 Boundry Box +#Line2 + + +1 + +-1.37864384040565,54.8432250733012 +-1.37726011213272,54.9330739939252 +-1.22122653741153,54.9321746370952 +-1.22295704130647,54.8423286907718 +-1.37864384040565,54.8432250733012 + + + + + +NZ45 +#labelStyle + +-1.30001401080501,54.8877302081039 + + + + +NZ46 + +Small Square NZ46 Boundry Box +#Line2 + + +1 + +-1.37725997336126,54.9330829796477 +-1.3758685305987,55.0229305395147 +-1.21948621272104,55.0220281948328 +-1.22122636386264,54.9321836225197 +-1.37725997336126,54.9330829796477 + + + + + +NZ46 +#labelStyle + +-1.29845238030055,54.977586026047 + + + + +NZ47 + +Small Square NZ47 Boundry Box +#Line2 + + +1 + +-1.3758683910528,55.0229395251013 +-1.37446917512783,55.1127857256014 +-1.21773616644885,55.1118803797087 +-1.21948603820368,55.0220371801199 +-1.3758683910528,55.0229395251013 + + + + + +NZ47 +#labelStyle + +-1.2968820349463,55.067440477507 + + + + +NZ48 + +Small Square NZ48 Boundry Box +#Line2 + + +1 + +-1.37446903480158,55.1127947110521 +-1.37306198643383,55.2026395535868 +-1.21597632446134,55.2017311930194 +-1.21773599095563,55.1118893648586 +-1.37446903480158,55.1127947110521 + + + + + +NZ48 +#labelStyle + +-1.29530290837336,55.1572935638305 + + + + +NZ49 + +Small Square NZ49 Boundry Box +#Line2 + + +1 + +-1.37306184532127,55.2026485389017 +-1.37164690461496,55.2924920248834 +-1.21420661185538,55.2915806360711 +-1.21597614798482,55.2017401780322 +-1.37306184532127,55.2026485389017 + + + + + +NZ49 +#labelStyle + +-1.29371493352474,55.2471452863747 + + + + +NZ50 + +Small Square NZ50 Boundry Box +#Line2 + + +1 + +-1.23145282217593,54.3930332775255 +-1.22976944620349,54.4828861125076 +-1.0754601759558,54.4818045188539 +-1.07748080997164,54.3919552412322 +-1.23145282217593,54.3930332775255 + + + + + +NZ50 +#labelStyle + +-1.15353301281386,54.4374489778613 + + + + +NZ51 + +Small Square NZ51 Boundry Box +#Line2 + + +1 + +-1.22976927738558,54.4828950986207 +-1.22807660975104,54.5727465533147 +-1.07342818683906,54.5716613863586 +-1.0754599733159,54.4818135046104 +-1.22976927738558,54.4828950986207 + + + + + +NZ51 +#labelStyle + +-1.15167569363451,54.5273084068044 + + + + +NZ52 + +Small Square NZ52 Boundry Box +#Line2 + + +1 + +-1.2280764400004,54.5727555392898 +-1.22637441099219,54.6626056149308 +-1.07138496047741,54.6615168589641 +-1.07342798307963,54.5716703719755 +-1.2280764400004,54.5727555392898 + + + + + +NZ52 +#labelStyle + +-1.14980811292622,54.6171664484691 + + + + +NZ53 + +Small Square NZ53 Boundry Box +#Line2 + + +1 + +-1.22637424030181,54.6626146007681 +-1.22466277949554,54.7524632986012 +-1.06933041234264,54.7513709377938 +-1.07138475559004,54.6615258444417 +-1.22637424030181,54.6626146007681 + + + + + +NZ53 +#labelStyle + +-1.14793019360054,54.7070231040377 + + + + +NZ54 + +Small Square NZ54 Boundry Box +#Line2 + + +1 + +-1.22466260785834,54.7524722843008 +-1.22294164410766,54.8423196055813 +-1.06726445704015,54.8412236239793 +-1.06933020631885,54.751379923132 +-1.22466260785834,54.7524722843008 + + + + + +NZ54 +#labelStyle + +-1.14604185777975,54.796878374702 + + + + +NZ55 + +Small Square NZ55 Boundry Box +#Line2 + + +1 + +-1.22294147151649,54.8423285911432 +-1.22121093294391,54.932174537136 +-1.06518700829784,54.9310749186612 +-1.06726424987134,54.8412326091784 +-1.22294147151649,54.8423285911432 + + + + + +NZ55 +#labelStyle + +-1.14414302678686,54.8867322616627 + + + + +NZ56 + +Small Square NZ56 Boundry Box +#Line2 + + +1 + +-1.22121075939154,54.9321835225604 +-1.21947057337904,55.0220280945415 +-1.06309797895491,55.0209248229894 +-1.06518679997534,54.9310839037211 +-1.22121075939154,54.9321835225604 + + + + + +NZ56 +#labelStyle + +-1.14223362113538,54.9765847661306 + + + + +NZ57 + +Small Square NZ57 Boundry Box +#Line2 + + +1 + +-1.21947039885818,55.0220370798286 +-1.21772049203772,55.1118802790839 +-1.06099728095041,55.1107733381229 +-1.06309776946996,55.0209338079104 +-1.21947039885818,55.0220370798286 + + + + + +NZ57 +#labelStyle + +-1.1403135605189,55.0664358893266 + + + + +NZ58 + +Small Square NZ58 Boundry Box +#Line2 + + +1 + +-1.21772031654098,55.1118892642337 +-1.21596061478485,55.2017310920595 +-1.05888482531173,55.2006204652295 +-1.06099707029416,55.110782322905 +-1.21772031654098,55.1118892642337 + + + + + +NZ58 +#labelStyle + +-1.13838276380062,55.1562856324806 + + + + +NZ59 + +Small Square NZ59 Boundry Box +#Line2 + + +1 + +-1.21596043830479,55.2017400770722 +-1.2141908667158,55.2915805347746 +-1.05676052214276,55.2904662054855 +-1.05888461347523,55.2006294498728 +-1.21596043830479,55.2017400770722 + + + + + +NZ59 +#labelStyle + +-1.13644114900258,55.2461339968325 + + + + +NZ60 + +Small Square NZ60 Boundry Box +#Line2 + + +1 + +-1.07746541175343,54.3919551236011 +-1.07544474401234,54.4818044008346 +-0.921146628973149,54.4805258566116 +-0.923504471935167,54.3906807843433 +-1.07746541175343,54.3919551236011 + + + + + +NZ60 +#labelStyle + +-0.999382497095537,54.4362707198644 + + + + +NZ61 + +Small Square NZ61 Boundry Box +#Line2 + + +1 + +-1.07544454136905,54.4818133865911 +-1.07341272098088,54.5716612679494 +-0.918775536952892,54.5703784999189 +-0.921146392516195,54.4805348419466 +-1.07544454136905,54.4818133865911 + + + + + +NZ61 +#labelStyle + +-0.997186963367341,54.5261262583212 + + + + +NZ62 + +Small Square NZ62 Boundry Box +#Line2 + + +1 + +-1.07341251721805,54.5716702535664 +-1.07136946051705,54.6615167401634 +-0.916391333417258,54.6602297297599 +-0.918775299189684,54.5703874851125 +-1.07341251721805,54.5716702535664 + + + + + +NZ62 +#labelStyle + +-0.994979300385756,54.6159803924269 + + + + +NZ63 + +Small Square NZ63 Boundry Box +#Line2 + + +1 + +-1.07136925562627,54.6615257256409 +-1.06931487809123,54.7513708185997 +-0.913993919750732,54.7500795471132 +-0.916391094337984,54.6602387148122 +-1.07136925562627,54.6615257256409 + + + + + +NZ63 +#labelStyle + +-0.992759417040799,54.705833123231 + + + + +NZ64 + +Small Square NZ64 Boundry Box +#Line2 + + +1 + +-1.06931467206399,54.7513798039379 +-1.06724888830737,54.8412235043902 +-0.911583196327138,54.8399279529649 +-0.91399367934548,54.7500885320243 +-1.06931467206399,54.7513798039379 + + + + + +NZ64 +#labelStyle + +-0.990527221289827,54.7956844517914 + + + + +NZ65 + +Small Square NZ65 Boundry Box +#Line2 + + +1 + +-1.0672486811351,54.8412324895892 +-1.06517140489196,54.9310747986752 +-0.909159062496738,54.9297749483078 +-0.911582954585894,54.8399369377349 +-1.0672486811351,54.8412324895892 + + + + + +NZ65 +#labelStyle + +-0.988282620145665,54.8855343791734 + + + + +NZ66 + +Small Square NZ66 Boundry Box +#Line2 + + +1 + +-1.06517119656598,54.9310837837351 +-1.06308234068271,55.0209247026048 +-0.906721416573101,55.0196205341433 +-0.909158819409387,54.9297839329369 +-1.06517119656598,54.9310837837351 + + + + + +NZ66 +#labelStyle + +-0.986025519664504,54.9753829064511 + + + + +NZ67 + +Small Square NZ67 Boundry Box +#Line2 + + +1 + +-1.06308213119427,55.0209336875257 +-1.06098160761725,55.110773217338 +-0.904270155819819,55.1094647114799 +-0.90672117212942,55.0196295186315 +-1.06308213119427,55.0209336875257 + + + + + +NZ67 +#labelStyle + +-0.983755824933639,55.0652300347071 + + + + +NZ68 + +Small Square NZ68 Boundry Box +#Line2 + + +1 + +-1.06098139695748,55.11078220212 +-1.05886911672144,55.2006203440423 +-0.901805176437001,55.1993074813333 +-0.904269910009483,55.1094736958272 +-1.06098139695748,55.11078220212 + + + + + +NZ68 +#labelStyle + +-0.981473440059031,55.155075765032 + + + + +NZ69 + +Small Square NZ69 Boundry Box +#Line2 + + +1 + +-1.05886890488141,55.2006293286856 +-1.05674477809771,55.2904660838944 +-0.899326373547557,55.2891488447266 +-0.901804929249576,55.19931646554 +-1.05886890488141,55.2006293286856 + + + + + +NZ69 +#labelStyle + +-0.979178268152665,55.2449200985246 + + + + +NZ70 + +Small Square NZ70 Boundry Box +#Line2 + + +1 + +-0.923489074916655,54.3906806470815 +-0.921131198238345,54.4805257188969 +-0.766846098525094,54.4790502580731 +-0.769541053800699,54.3892100385954 +-0.923489074916655,54.3906806470815 + + + + + +NZ70 +#labelStyle + +-0.845244023084218,54.4348958320349 + + + + +NZ71 + +Small Square NZ71 Boundry Box +#Line2 + + +1 + +-0.92113096177801,54.4805347042319 +-0.918760072312447,54.5703783617493 +-0.764136001229055,54.5688980268478 +-0.766845828260802,54.4790592429218 +-0.92113096177801,54.4805347042319 + + + + + +NZ71 +#labelStyle + +-0.842710365006513,54.5247468309681 + + + + +NZ72 + +Small Square NZ72 Boundry Box +#Line2 + + +1 + +-0.918759834545839,54.5703873469429 +-0.916375834683793,54.6602295911334 +-0.761410919145194,54.6587443607332 +-0.76413572947188,54.5689070115529 +-0.918759834545839,54.5703873469429 + + + + + +NZ72 +#labelStyle + +-0.840162710871967,54.6145964056317 + + + + +NZ73 + +Small Square NZ73 Boundry Box +#Line2 + + +1 + +-0.9163755956011,54.6602385761857 +-0.91397838673546,54.7500794080277 +-0.758670739583398,54.7485892605416 +-0.761410645883924,54.6587533452949 +-0.9163755956011,54.6602385761857 + + + + + +NZ73 +#labelStyle + +-0.837600955560807,54.7044445569204 + + + + +NZ74 + +Small Square NZ74 Boundry Box +#Line2 + + +1 + +-0.91397814632677,54.7500883929388 +-0.911567628839847,54.8399278134184 +-0.755915348698832,54.8384327270906 +-0.758670464806707,54.7485982449599 +-0.91397814632677,54.7500883929388 + + + + + +NZ74 +#labelStyle + +-0.835024992877343,54.7942912857359 + + + + +NZ75 + +Small Square NZ75 Boundry Box +#Line2 + + +1 + +-0.911567387095147,54.8399367981884 +-0.909143460345782,54.9297748082983 +-0.753144631477208,54.9282747612032 +-0.755915072395276,54.8384417113656 +-0.911567387095147,54.8399367981884 + + + + + +NZ75 +#labelStyle + +-0.832434715536286,54.8841365929856 + + + + +NZ76 + +Small Square NZ76 Boundry Box +#Line2 + + +1 + +-0.909143217254954,54.9297837929273 +-0.90670577956538,55.0196203936687 +-0.750358471719778,55.0181153637088 +-0.753144353635228,54.928283745335 +-0.909143217254954,54.9297837929273 + + + + + +NZ76 +#labelStyle + +-0.829830015148776,54.9739804795841 + + + + +NZ77 + +Small Square NZ77 Boundry Box +#Line2 + + +1 + +-0.906705535118204,55.0196293781568 +-0.904254483760767,55.1094645705381 +-0.747556752028167,55.1079545354425 +-0.750358192327695,55.0181243476975 +-0.906705535118204,55.0196293781568 + + + + + +NZ77 +#labelStyle + +-0.827210782208251,55.0638229464528 + + + + +NZ78 + +Small Square NZ78 Boundry Box +#Line2 + + +1 + +-0.904254237946916,55.1094735548854 +-0.90178946913057,55.1993073399223 +-0.744739353788936,55.1977922772448 +-0.747556471074179,55.1079635192881 +-0.904254237946916,55.1094735548854 + + + + + +NZ78 +#labelStyle + +-0.824576906076095,55.1536639945197 + + + + +NZ79 + +Small Square NZ79 Boundry Box +#Line2 + + +1 + +-0.90178922193961,55.1993163241288 +-0.899310630796202,55.2891487028441 +-0.741906157157924,55.2876285899617 +-0.744739071261121,55.1978012609475 +-0.90178922193961,55.1993163241288 + + + + + +NZ79 +#labelStyle + +-0.821928274967058,55.2435036247188 + + + + +NZ80 + +Small Square NZ80 Boundry Box +#Line2 + + +1 + +-0.76952565816648,54.3892098817066 +-0.766830669184937,54.4790501006668 +-0.612560443929868,54.4773777624361 +-0.615592401096247,54.387543042918 +-0.76952565816648,54.3892098817066 + + + + + +NZ80 +#labelStyle + +-0.691119443693178,54.433324350833 + + + + +NZ81 + +Small Square NZ81 Boundry Box +#Line2 + + +1 + +-0.766830398917264,54.4790590855154 +-0.764120537993716,54.5688978689214 +-0.609511452917827,54.5672200066135 +-0.612560139869336,54.4773867467335 +-0.766830398917264,54.4790590855154 + + + + + +NZ81 +#labelStyle + +-0.688247765333338,54.5231701614567 + + + + +NZ82 + +Small Square NZ82 Boundry Box +#Line2 + + +1 + +-0.764120266233143,54.5689068536265 +-0.761395421827402,54.6587442022846 +-0.606445604985795,54.6570607916258 +-0.609511147177897,54.5672289907649 +-0.764120266233143,54.5689068536265 + + + + + +NZ82 +#labelStyle + +-0.685360225175669,54.613014525049 + + + + +NZ83 + +Small Square NZ83 Boundry Box +#Line2 + + +1 + +-0.761395148562714,54.6587531868462 +-0.758655207994473,54.7485891015684 +-0.603362773383576,54.7469001180966 +-0.606445297553856,54.6570697756314 +-0.761395148562714,54.6587531868462 + + + + + +NZ83 +#labelStyle + +-0.682456704104116,54.7028574423279 + + + + +NZ84 + +Small Square NZ84 Boundry Box +#Line2 + + +1 + +-0.758654933214345,54.7485980859867 +-0.755899782648673,54.8384325675906 +-0.600262830062416,54.8367379866528 +-0.603362464246889,54.7469091019563 +-0.758654933214345,54.7485980859867 + + + + + +NZ84 +#labelStyle + +-0.679537081783662,54.7926989140164 + + + + +NZ85 + +Small Square NZ85 Boundry Box +#Line2 + + +1 + +-0.755899506341662,54.8384415518655 +-0.753129030774279,54.9282746011739 +-0.597145645658438,54.9265743979248 +-0.60026251920811,54.8367469703667 +-0.755899506341662,54.8384415518655 + + + + + +NZ85 +#labelStyle + +-0.676601236644825,54.8825389408416 + + + + +NZ86 + +Small Square NZ86 Boundry Box +#Line2 + + +1 + +-0.753128752928825,54.9282835853057 +-0.750342836171093,55.018115203148 +-0.594011089475775,55.0164093525474 +-0.597145333073511,54.926583381493 +-0.753128752928825,54.9282835853057 + + + + + +NZ86 +#labelStyle + +-0.673649045867839,54.9723775235358 + + + + +NZ87 + +Small Square NZ87 Boundry Box +#Line2 + + +1 + +-0.750342556775515,55.0181241871366 +-0.747541081439273,55.1079543743477 +-0.590859029469511,55.1062428511593 +-0.59401077514709,55.0164183359701 +-0.750342556775515,55.0181241871366 + + + + + +NZ87 +#labelStyle + +-0.670680385366643,55.0622146628364 + + + + +NZ88 + +Small Square NZ88 Boundry Box +#Line2 + + +1 + +-0.747540800481771,55.1079633581933 +-0.7447236479639,55.1977921156137 +-0.587689332228333,55.1960748944023 +-0.590858713383795,55.1062518344364 +-0.747540800481771,55.1079633581933 + + + + + +NZ88 +#labelStyle + +-0.667695129772622,55.1520503594852 + + + + +NZ89 + +Small Square NZ89 Boundry Box +#Line2 + + +1 + +-0.744723365432552,55.1978010993164 +-0.741890415899318,55.2876284277919 +-0.584501862956917,55.2859054829217 +-0.587689014372177,55.1960838775339 +-0.744723365432552,55.1978010993164 + + + + + +NZ89 +#labelStyle + +-0.664693152418101,55.2418846142286 + + + + +NZ90 + +Small Square NZ90 Boundry Box +#Line2 + + +1 + +-0.615577007030821,54.3875428664064 +-0.612545016170235,54.4773775853422 +-0.458291523380001,54.4755084141203 +-0.461660358238207,54.3856798414269 +-0.615577007030821,54.3875428664064 + + + + + +NZ90 +#labelStyle + +-0.537010610786786,54.4315563179249 + + + + +NZ91 + +Small Square NZ91 Boundry Box +#Line2 + + +1 + +-0.612544712106324,54.4773865696395 +-0.609495991274865,54.5672198289345 +-0.454903764129494,54.5653444839424 +-0.458291185535714,54.4755173978016 +-0.612544712106324,54.4773865696395 + + + + + +NZ91 +#labelStyle + +-0.53380103006692,54.5213962917406 + + + + +NZ92 + +Small Square NZ92 Boundry Box +#Line2 + + +1 + +-0.609495685531537,54.5672288130859 +-0.606430109272352,54.6570606133594 +-0.451497277109132,54.6551790674738 +-0.454903424419421,54.565353467475 +-0.609495685531537,54.5672288130859 + + + + + +NZ92 +#labelStyle + +-0.530573723011951,54.6112347929227 + + + + +NZ93 + +Small Square NZ93 Boundry Box +#Line2 + + +1 + +-0.606429801836997,54.6570695973649 +-0.603347243411096,54.74689993924 +-0.448071921524955,54.745012165127 +-0.451496935519266,54.6551880508578 +-0.606429801836997,54.6570695973649 + + + + + +NZ93 +#labelStyle + +-0.527328556524844,54.7010718219902 + + + + +NZ94 + +Small Square NZ94 Boundry Box +#Line2 + + +1 + +-0.603346934270974,54.7469089230997 +-0.600247265640923,54.8367378072035 +-0.444627555140861,54.834843777316 +-0.448071578041145,54.7450211483624 +-0.603346934270974,54.7469089230997 + + + + + +NZ94 +#labelStyle + +-0.524065396146789,54.7909073794654 + + + + +NZ95 + +Small Square NZ95 Boundry Box +#Line2 + + +1 + +-0.600246954783162,54.8367467909174 +-0.597130046596521,54.9265742178801 +-0.441164034260208,54.924673904456 +-0.444627209748808,54.8348527604029 +-0.600246954783162,54.8367467909174 + + + + + +NZ95 +#labelStyle + +-0.520784106039888,54.8807414658725 + + + + +NZ96 + +Small Square NZ96 Boundry Box +#Line2 + + +1 + +-0.597129734008121,54.9265832014483 +-0.593995455580575,55.0164091719048 +-0.437681213707094,55.0145025469645 +-0.441163686945472,54.9246828873944 +-0.597129734008121,54.9265832014483 + + + + + +NZ96 +#labelStyle + +-0.517484548969484,54.9705740817388 + + + + +NZ97 + +Small Square NZ97 Boundry Box +#Line2 + + +1 + +-0.593995141248397,55.0164181553274 +-0.590843360546705,55.1062426699159 +-0.434178946807409,55.1043297052606 +-0.437680864455081,55.0145115297546 +-0.593995141248397,55.0164181553274 + + + + + +NZ97 +#labelStyle + +-0.514166586286279,55.0604052275948 + + + + +NZ98 + +Small Square NZ98 Boundry Box +#Line2 + + +1 + +-0.590843044457476,55.106251653193 +-0.587673628082118,55.1960747125556 +-0.43065708536958,55.1941553797641 +-0.434178595603376,55.1043386879022 +-0.590843044457476,55.106251653193 + + + + + +NZ98 +#labelStyle + +-0.51083007790818,55.1502349039731 + + + + +NZ99 + +Small Square NZ99 Boundry Box +#Line2 + + +1 + +-0.58767331022243,55.1960836956871 +-0.584486123389998,55.2859053004689 +-0.427115479665015,55.2839795708965 +-0.430656732198633,55.1941643622574 +-0.58767331022243,55.1960836956871 + + + + + +NZ99 +#labelStyle + +-0.507474882301856,55.2400631114089 + + + + + +OV + +Large Square OV Boundry Box +#Line1 + + +1 + +-0.461644965925956,54.3856796452971 +-0.427099741988587,55.2839793681658 +1.14532695125954,55.2535805442007 +1.0763418283588,54.3562699109907 +-0.461644965925956,54.3856796452971 + + + + + +OV00 + +Small Square OV00 Boundry Box +#Line2 + + +1 + +-0.461644965925956,54.3856796452971 +-0.45827609738665,54.4755082173434 +-0.304041193802126,54.4734422627633 +-0.307746768392909,54.3836204834205 +-0.461644965925956,54.3856796452971 + + + + + +OV00 +#labelStyle + +-0.382919375041075,54.4295917801794 + + + + +OV01 + +Small Square OV01 Boundry Box +#Line2 + + +1 + +-0.458275759538986,54.4755172010247 +-0.454888304266057,54.5653442865156 +-0.300314805692371,54.563271508815 +-0.304040822187951,54.4734512457637 +-0.458275759538986,54.4755172010247 + + + + + +OV01 +#labelStyle + +-0.379372023722959,54.5194252690118 + + + + +OV02 + +Small Square OV02 Boundry Box +#Line2 + + +1 + +-0.454887964552588,54.5653532700482 +-0.451481783188593,54.6551788693943 +-0.296567820386986,54.6530992386036 +-0.300314432026165,54.5632804916638 +-0.454887964552588,54.5653532700482 + + + + + +OV02 +#labelStyle + +-0.375805082877199,54.6092572567709 + + + + +OV03 + +Small Square OV03 Boundry Box +#Line2 + + +1 + +-0.451481441595312,54.6551878527782 +-0.448056393358895,54.7450119663918 +-0.292800083066366,54.7429254523086 +-0.296567444653344,54.6531082213008 +-0.451481441595312,54.6551878527782 + + + + + +OV03 +#labelStyle + +-0.372218405442868,54.699087743755 + + + + +OV04 + +Small Square OV04 Boundry Box +#Line2 + + +1 + +-0.448056049871651,54.7450209496272 +-0.444611992539442,54.8348435779222 +-0.289011437325456,54.8327501501088 +-0.292799705249729,54.7429344348542 +-0.448056049871651,54.7450209496272 + + + + + +OV04 +#labelStyle + +-0.368611842854716,54.7889167302632 + + + + +OV05 + +Small Square OV05 Boundry Box +#Line2 + + +1 + +-0.444611647143936,54.8348525610091 +-0.44114843703216,54.9246737044008 +-0.285201725153533,54.9225733321816 +-0.289011057410102,54.8327591325028 +-0.444611647143936,54.8348525610091 + + + + + +OV05 +#labelStyle + +-0.364985245024047,54.8787442165944 + + + + +OV06 + +Small Square OV06 Boundry Box +#Line2 + + +1 + +-0.441148089713952,54.9246826873392 +-0.4376655816597,55.0145023462449 +-0.281370786913624,55.0123949987045 +-0.285201343123581,54.922582314424 +-0.441148089713952,54.9246826873392 + + + + + +OV06 +#labelStyle + +-0.361338460319202,54.9685702030484 + + + + +OV07 + +Small Square OV07 Boundry Box +#Line2 + + +1 + +-0.437665232404195,55.0145113290349 +-0.43416327974649,55.1043295038736 +-0.277518461321688,55.1022151498537 +-0.281370402753027,55.0124039807953 +-0.437665232404195,55.0145113290349 + + + + + +OV07 +#labelStyle + +-0.357671335545814,55.0583946899258 + + + + +OV08 + +Small Square OV08 Boundry Box +#Line2 + + +1 + +-0.434162928538946,55.1043384865151 +-0.430641383099481,55.1941551777068 +-0.273644585425452,55.1920337858045 +-0.277518075014235,55.1022241317931 +-0.434162928538946,55.1043384865151 + + + + + +OV08 +#labelStyle + +-0.353983715926754,55.1482176775269 + + + + +OV09 + +Small Square OV09 Boundry Box +#Line2 + + +1 + +-0.430641029925003,55.1941641602 +-0.427099741988587,55.2839793681658 +-0.269748994582913,55.2818509067305 +-0.273644196954764,55.1920427675924 +-0.430641029925003,55.1941641602 + + + + + +OV09 +#labelStyle + +-0.350275445081768,55.2380391661523 + + + + +OV10 + +Small Square OV10 Boundry Box +#Line2 + + +1 + +-0.307731378018081,54.3836202676777 +-0.304025769760682,54.4734420463088 +-0.149811310717018,54.4711793632163 +-0.153853473338401,54.381365023375 +-0.307731378018081,54.3836202676777 + + + + + +OV10 +#labelStyle + +-0.228847585804537,54.4274307896629 + + + + +OV11 + +Small Square OV11 Boundry Box +#Line2 + + +1 + +-0.304025398143131,54.4734510293091 +-0.300299347795474,54.5632712916457 +-0.145746447011072,54.5610011364612 +-0.149810905348204,54.4711883454711 +-0.304025398143131,54.4734510293091 + + + + + +OV11 +#labelStyle + +-0.224962609472781,54.5172571456958 + + + + +OV12 + +Small Square OV12 Boundry Box +#Line2 + + +1 + +-0.300298974125873,54.5632802744944 +-0.296552328447769,54.6530990207163 +-0.141659118249318,54.6508213606274 +-0.145746039404136,54.5610101185611 +-0.300298974125873,54.5632802744944 + + + + + +OV12 +#labelStyle + +-0.221056181906333,54.6070819693816 + + + + +OV13 + +Small Square OV13 Boundry Box +#Line2 + + +1 + +-0.296551952710714,54.6531080034134 +-0.292784556896561,54.7429252337002 +-0.137549155606422,54.7406400356396 +-0.141658708387462,54.6508303425724 +-0.296551952710714,54.6531080034134 + + + + + +OV13 +#labelStyle + +-0.21712814209925,54.696905260776 + + + + +OV14 + +Small Square OV14 Boundry Box +#Line2 + + +1 + +-0.292784179076491,54.7429342162457 +-0.288995876735379,54.832749930776 +-0.133416388528597,54.830457161419 +-0.13754874347268,54.7406490174297 +-0.292784179076491,54.7429342162457 + + + + + +OV14 +#labelStyle + +-0.213178327399005,54.7867270199329 + + + + +OV15 + +Small Square OV15 Boundry Box +#Line2 + + +1 + +-0.288995496816573,54.8327589131699 +-0.285186129952068,54.9225731121213 +-0.129260644711566,54.9202727378828 +-0.133415974105823,54.8304661430541 +-0.288995496816573,54.8327589131699 + + + + + +OV15 +#labelStyle + +-0.209206573485558,54.8765472469035 + + + + +OV16 + +Small Square OV16 Boundry Box +#Line2 + + +1 + +-0.285185747918646,54.9225820943636 +-0.281355156908213,55.0123947779134 +-0.125081750078134,55.0100867649457 +-0.129260227982444,54.9202817193629 +-0.285185747918646,54.9225820943636 + + + + + +OV16 +#labelStyle + +-0.205212714350008,54.9663659417375 + + + + +OV17 + +Small Square OV17 Boundry Box +#Line2 + + +1 + +-0.281354772744126,55.0124037600041 +-0.277502796318311,55.1022149283286 +-0.120879528755499,55.0998992425186 +-0.125081331025166,55.0100957462709 +-0.281354772744126,55.0124037600041 + + + + + +OV17 +#labelStyle + +-0.201196582272977,55.0561831044826 + + + + +OV18 + +Small Square OV18 Boundry Box +#Line2 + + +1 + +-0.277502410007349,55.1022239102679 +-0.273628885228614,55.1920335635421 +-0.11665380305218,55.1897101705083 +-0.120879107361006,55.0999082236888 +-0.277502410007349,55.1022239102679 + + + + + +OV18 +#labelStyle + +-0.197158007802673,55.1459987351838 + + + + +OV19 + +Small Square OV19 Boundry Box +#Line2 + + +1 + +-0.273628496754398,55.1920425453298 +-0.26973325899563,55.2818506837274 +-0.112404393434597,55.2795195488175 +-0.116653379298303,55.1897191515236 +-0.273628496754398,55.1920425453298 + + + + + +OV19 +#labelStyle + +-0.193096819732606,55.2358128338838 + + + + +OV20 + +Small Square OV20 Boundry Box +#Line2 + + +1 + +-0.153838085085101,54.3813647880248 +-0.149795888812959,54.4711791270899 +0.00439627190008763,54.4687197755389 +1.76866734936773E-05,54.3789135209391 +-0.153838085085101,54.3813647880248 + + + + + +OV20 +#labelStyle + +-0.0747970909591722,54.4250734036351 + + + + +OV21 + +Small Square OV21 Boundry Box +#Line2 + + +1 + +-0.14979548344077,54.4711881093446 +-0.145730991267579,54.5610008995551 +0.00879944407494572,54.5585334273549 +0.00439671100691282,54.4687287569833 +-0.14979548344077,54.4711881093446 + + + + + +OV21 +#labelStyle + +-0.0705746490026324,54.5148919794468 + + + + +OV22 + +Small Square OV22 Boundry Box +#Line2 + + +1 + +-0.14573058365725,54.5610098816549 +-0.141643628479688,54.6508211229382 +0.0132269474589815,54.6483454944377 +0.00879988560581394,54.5585424086408 +-0.14573058365725,54.5610098816549 + + + + + +OV22 +#labelStyle + +-0.0663288957303231,54.6047089888076 + + + + +OV23 + +Small Square OV23 Boundry Box +#Line2 + + +1 + +-0.141643218614421,54.6508301048831 +-0.137533631622554,54.7406397971638 +0.0176789648615521,54.7381559764349 +0.0132273914320811,54.6483544755651 +-0.141643218614421,54.6508301048831 + + + + + +OV23 +#labelStyle + +-0.0620596562119389,54.6945244315084 + + + + +OV24 + +Small Square OV24 Boundry Box +#Line2 + + +1 + +-0.13753321948538,54.7406487789537 +-0.133400830140973,54.830456922153 +0.022155680963142,54.827964872988 +0.0176794112952568,54.7381649574038 +-0.13753321948538,54.7406487789537 + + + + + +OV24 +#labelStyle + +-0.0577667537286441,54.784338307336 + + + + +OV25 + +Small Square OV25 Boundry Box +#Line2 + + +1 + +-0.13340041571475,54.8304659037881 +-0.129245051729242,54.9202724978233 +0.0266572823392041,54.9177721837318 +0.0221561298760155,54.8279738537984 +-0.13340041571475,54.8304659037881 + + + + + +OV25 +#labelStyle + +-0.0534500097503498,54.8741506160714 + + + + +OV26 + +Small Square OV26 Boundry Box +#Line2 + + +1 + +-0.129244634996651,54.9202814793034 +-0.125066122308724,55.0100865240891 +0.0311839574844352,55.0075779082954 +0.0266577337499976,54.9177811643836 +-0.129244634996651,54.9202814793034 + + + + + +OV26 +#labelStyle + +-0.0491092439125263,54.9639613574917 + + + + +OV27 + +Small Square OV27 Boundry Box +#Line2 + + +1 + +-0.125065703252267,55.0100955054142 +-0.120863866005156,55.0998990008613 +0.0357358968373329,55.0973820463014 +0.0311844114120965,55.0075868887886 +-0.125065703252267,55.0100955054142 + + + + + +OV27 +#labelStyle + +-0.0447442739927382,55.0537705313689 + + + + +OV28 + +Small Square OV28 Boundry Box +#Line2 + + +1 + +-0.120863444607156,55.0999079820315 +-0.116638105125586,55.1897099280468 +0.0403132928051537,55.1871845973652 +0.0357363533010033,55.0973910266358 +-0.120863444607156,55.0999079820315 + + + + + +OV28 +#labelStyle + +-0.040354915886823,55.1435781374698 + + + + +OV29 + +Small Square OV29 Boundry Box +#Line2 + + +1 + +-0.116637681368182,55.189718909062 +-0.112388660134947,55.2795193055481 +0.0449163397892676,55.2769855610952 +0.0403137518241729,55.1871935775409 +-0.116637681368182,55.189718909062 + + + + + +OV29 +#labelStyle + +-0.0359409835846874,55.2333841755558 + + + + +OV30 + +Small Square OV30 Boundry Box +#Line2 + + +1 + +3.30726213219326E-05,54.3789132659879 +0.00441169148144737,54.4687195197468 +0.158579701758892,54.4660635649931 +0.153864873054832,54.3762660409293 +3.30726213219326E-05,54.3789132659879 + + + + + +OV30 +#labelStyle + +0.0792302632181777,54.4225196845435 + + + + +OV31 + +Small Square OV31 Boundry Box +#Line2 + + +1 + +0.00441213059164531,54.4687285011912 +0.00881489747833347,54.5585331707183 +0.163321001432536,54.5558684472085 +0.158580174585723,54.4660725455625 +0.00441213059164531,54.4687285011912 + + + + + +OV31 +#labelStyle + +0.0837899976267433,54.5123298331428 + + + + +OV32 + +Small Square OV32 Boundry Box +#Line2 + + +1 + +0.0088153390125934,54.5585421520041 +0.0132424348709225,54.6483452369528 +0.168088496621034,54.6456717062014 +0.163321476869147,54.5558774276156 +0.0088153390125934,54.5585421520041 + + + + + +OV32 +#labelStyle + +0.0883749016660171,54.6021383783612 + + + + +OV33 + +Small Square OV33 Boundry Box +#Line2 + + +1 + +0.0132428788474324,54.6483542180802 +0.0176944864699691,54.738155718098 +0.17288238409428,54.7354733413205 +0.168088974687003,54.6456806864461 +0.0132428788474324,54.6483542180802 + + + + + +OV33 +#labelStyle + +0.09298516416824,54.6919453197033 + + + + +OV34 + +Small Square OV34 Boundry Box +#Line2 + + +1 + +0.0176949329071029,54.7381646990669 +0.022171236957369,54.8279646137954 +0.177702862635605,54.8252733519056 +0.172882864809383,54.7354823214028 +0.0176949329071029,54.7381646990669 + + + + + +OV34 +#labelStyle + +0.0976209758957868,54.7817506566663 + + + + +OV35 + +Small Square OV35 Boundry Box +#Line2 + + +1 + +0.0221716858736903,54.8279735946057 +0.0266728729100008,54.9177719236796 +0.182550133067425,54.9150717372862 +0.177703346019824,54.8252823318253 +0.0221716858736903,54.8279735946057 + + + + + +OV35 +#labelStyle + +0.102282529565678,54.8715543887392 + + + + +OV36 + +Small Square OV36 Boundry Box +#Line2 + + +1 + +0.0266733243242613,54.9177809043313 +0.0311995828240026,55.0075776473798 +0.187424398277354,55.0048684967836 +0.182550619140943,54.9150807170434 +0.0266733243242613,54.9177809043313 + + + + + +OV36 +#labelStyle + +0.106970019874595,54.9613565154035 + + + + +OV37 + +Small Square OV37 Boundry Box +#Line2 + + +1 + +0.0312000367551501,55.0075866278729 +0.0357515571393265,55.0973817845185 +0.192325863244615,55.0946636297091 +0.187424887060565,55.0048774763782 +0.0312000367551501,55.0075866278729 + + + + + +OV37 +#labelStyle + +0.111683643524196,55.0511570361331 + + + + +OV38 + +Small Square OV38 Boundry Box +#Line2 + + +1 + +0.0357520136065027,55.0973907648529 +0.0403289882646995,55.1871843347112 +0.19725473506689,55.1844571353639 +0.192326354758122,55.094672609141 +0.0357520136065027,55.0973907648529 + + + + + +OV38 +#labelStyle + +0.116423599246811,55.1409559503936 + + + + +OV39 + +Small Square OV39 Boundry Box +#Line2 + + +1 + +0.0403294472872442,55.1871933148869 +0.0449320706029778,55.2769852975662 +0.202211222987595,55.2742490130387 +0.19725522933151,55.184466114633 +0.0403294472872442,55.1871933148869 + + + + + +OV39 +#labelStyle + +0.121190087831556,55.2307532576419 + + + + +OV40 + +Small Square OV40 Boundry Box +#Line2 + + +1 + +0.153880256513417,54.3762657663837 +0.158595118832412,54.4660632895422 +0.312737128393097,54.4632108020379 +0.307686249018888,54.373422653323 +0.153880256513417,54.3762657663837 + + + + + +OV40 +#labelStyle + +0.233232632194197,54.4197697000176 + + + + +OV41 + +Small Square OV41 Boundry Box +#Line2 + + +1 + +0.158595591662614,54.4660722701115 +0.163336452309295,54.5558681708483 +0.317816360775687,54.553006266967 +0.312737634920553,54.4632197816676 +0.158595591662614,54.4660722701115 + + + + + +OV41 +#labelStyle + +0.238129472120214,54.5095707748792 + + + + +OV42 + +Small Square OV42 Boundry Box +#Line2 + + +1 + +0.163336927749296,54.5558771512553 +0.168103981487367,54.6456714289278 +0.322923650990584,54.6428000673542 +0.317816870098463,54.5530152464303 +0.163336927749296,54.5558771512553 + + + + + +OV42 +#labelStyle + +0.24305333808591,54.5993702066083 + + + + +OV43 + +Small Square OV43 Boundry Box +#Line2 + + +1 + +0.168104459556744,54.6456804091724 +0.172897903137914,54.7354730631296 +0.328059209742952,54.7325922022275 +0.322924163129644,54.642809046651 +0.168104459556744,54.6456804091724 + + + + + +OV43 +#labelStyle + +0.248004432801265,54.6891679944013 + + + + +OV44 + +Small Square OV44 Boundry Box +#Line2 + + +1 + +0.172898383856444,54.7354820432118 +0.177718416045677,54.8252730727932 +0.333223249893316,54.8223826706026 +0.328059724719473,54.7326011813577 +0.172898383856444,54.7354820432118 + + + + + +OV44 +#labelStyle + +0.25298296104763,54.778964137444 + + + + +OV45 + +Small Square OV45 Boundry Box +#Line2 + + +1 + +0.177718899433343,54.8252820527129 +0.182565721034497,54.9150714572483 +0.33841598648501,54.912171471482 +0.333223767728695,54.8223916495661 +0.177718899433343,54.8252820527129 + + + + + +OV45 +#labelStyle + +0.257989129704017,54.868758634911 + + + + +OV46 + +Small Square OV46 Boundry Box +#Line2 + + +1 + +0.18256620711148,54.9150804370055 +0.187440020993424,55.0048682158161 +0.343637636772117,55.0019586038562 +0.338416507200859,54.9121804502787 +0.18256620711148,54.9150804370055 + + + + + +OV46 +#labelStyle + +0.263023147773934,54.9585514859661 + + + + +OV47 + +Small Square OV47 Boundry Box +#Line2 + + +1 + +0.187440509780119,55.0048771954106 +0.192341520903135,55.0946633478078 +0.34888842024773,55.0917440667027 +0.343638160390273,55.001967582486 +0.187440509780119,55.0048771954106 + + + + + +OV47 +#labelStyle + +0.268085226412549,55.0483426897621 + + + + +OV48 + +Small Square OV48 Boundry Box +#Line2 + + +1 + +0.192342012420146,55.0946723272397 +0.197270427862779,55.1844568525246 +0.354168558672691,55.1815278589853 +0.348888946790258,55.0917530451655 +0.192342012420146,55.0946723272397 + + + + + +OV48 +#labelStyle + +0.27317557895425,55.1381322454406 + + + + +OV49 + +Small Square OV49 Boundry Box +#Line2 + + +1 + +0.197270922130923,55.1844658317937 +0.202226951117255,55.2742487292573 +0.359478276104763,55.2713099796538 +0.354169088161879,55.1815368372809 +0.197270922130923,55.1844658317937 + + + + + +OV49 +#labelStyle + +0.278294420940658,55.2279201521306 + + + + +OV50 + +Small Square OV50 Boundry Box +#Line2 + + +1 + +0.307701629804647,54.3734223591903 +0.312752542773826,54.4632105069355 +0.466866703299123,54.4601615623223 +0.461479979717149,54.3703834332525 +0.307701629804647,54.3734223591903 + + + + + +OV50 +#labelStyle + +0.387208173317122,54.4168235228626 + + + + +OV51 + +Small Square OV51 Boundry Box +#Line2 + + +1 + +0.312753049304651,54.4632194865651 +0.317831808939486,54.5530059708905 +0.472283659805988,54.549946962801 +0.466867243506452,54.4601705409478 +0.312753049304651,54.4632194865651 + + + + + +OV51 +#labelStyle + +0.39244191808803,54.5066148779625 + + + + +OV52 + +Small Square OV52 Boundry Box +#Line2 + + +1 + +0.31783231826565,54.5530149503537 +0.322939133123581,54.6427997702993 +0.477730534334239,54.6397306545933 +0.472284202993965,54.5499559412557 +0.31783231826565,54.5530149503537 + + + + + +OV52 +#labelStyle + +0.39770454326215,54.5964045473617 + + + + +OV53 + +Small Square OV53 Boundry Box +#Line2 + + +1 + +0.322939645266048,54.642808749596 +0.328074726032667,54.7325919041899 +0.483207551497273,54.7295126363848 +0.477731080525212,54.639739632877 +0.322939645266048,54.642808749596 + + + + + +OV53 +#labelStyle + +0.40299626540125,54.6861925299264 + + + + +OV54 + +Small Square OV54 Boundry Box +#Line2 + + +1 + +0.328075241012613,54.73260088332 +0.333238800528675,54.822382371578 +0.488714938205359,54.819292906845 +0.483208100713817,54.7295216144974 +0.328075241012613,54.73260088332 + + + + + +OV54 +#labelStyle + +0.408317303279302,54.7759788245093 + + + + +OV55 + +Small Square OV55 Boundry Box +#Line2 + + +1 + +0.333239318367498,54.8223913505414 +0.33843157165636,54.912171171466 +0.494252923694876,54.9090714646271 +0.488715490470282,54.8193018847864 +0.333239318367498,54.8223913505414 + + + + + +OV55 +#labelStyle + +0.413667877910553,54.8657634299481 + + + + +OV56 + +Small Square OV56 Boundry Box +#Line2 + + +1 + +0.338432092375672,54.9121801502626 +0.34365325667124,55.0019583028444 +0.499821739558074,54.9988483083685 +0.494253479031217,54.9090804423972 +0.338432092375672,54.9121801502626 + + + + + +OV56 +#labelStyle + +0.419048212578175,54.9555463450667 + + + + +OV57 + +Small Square OV57 Boundry Box +#Line2 + + +1 + +0.343653780292879,55.0019672814741 +0.348904075067859,55.0917437646907 +0.505421619773187,55.0886234366901 +0.499822297989114,54.9988572859671 +0.343653780292879,55.0019672814741 + + + + + +OV57 +#labelStyle + +0.424458532863259,55.0453275686743 + + + + +OV58 + +Small Square OV58 Boundry Box +#Line2 + + +1 + +0.348904601613888,55.0917527431533 +0.354184248608523,55.1815275559685 +0.511052800735028,55.1783968481952 +0.505422181322442,55.0886324141171 +0.348904601613888,55.0917527431533 + + + + + +OV58 +#labelStyle + +0.42989906667424,55.1351070995653 + + + + +OV59 + +Small Square OV59 Boundry Box +#Line2 + + +1 + +0.354184778101232,55.1815365342641 +0.359494001352474,55.2713096756278 +0.51671552128608,55.26816854147 +0.51105336542626,55.1784058254505 +0.354184778101232,55.1815365342641 + + + + + +OV59 +#labelStyle + +0.4353700442768,55.2248849365184 + + + + +OV60 + +Small Square OV60 Boundry Box +#Line2 + + +1 + +0.461495357646698,54.3703831195406 +0.466882114802314,54.4601612475762 +0.620966580074449,54.4569159266783 +0.615244232375932,54.3671484609981 +0.461495357646698,54.3703831195406 + + + + + +OV60 +#labelStyle + +0.54115504595441,54.4136812310527 + + + + +OV61 + +Small Square OV61 Boundry Box +#Line2 + + +1 + +0.466882655013009,54.4601702262015 +0.472299105070702,54.5499466470161 +0.626721038352716,54.5466906160997 +0.620967153939528,54.456924904235 +0.466882655013009,54.4601702262015 + + + + + +OV61 +#labelStyle + +0.546725481185223,54.5034622209039 + + + + +OV62 + +Small Square OV62 Boundry Box +#Line2 + + +1 + +0.472299648262064,54.5499556254706 +0.477746013546384,54.639730337765 +0.63250727257333,54.6364635498705 +0.626721615383545,54.5466995934809 +0.472299648262064,54.5499556254706 + + + + + +OV62 +#labelStyle + +0.552326648998268,54.5932414796744 + + + + +OV63 + +Small Square OV63 Boundry Box +#Line2 + + +1 + +0.477746559740761,54.6397393160486 +0.483223064844145,54.7295123185086 +0.638325521229117,54.7262347263121 +0.632507852793638,54.6364725270761 +0.477746559740761,54.6397393160486 + + + + + +OV63 +#labelStyle + +0.557958779779392,54.683019005879 + + + + +OV64 + +Small Square OV64 Boundry Box +#Line2 + + +1 + +0.483223614064112,54.7295212966211 +0.48873048587566,54.8192925879162 +0.644176025250853,54.816004143726 +0.638326104662876,54.7262437033418 +0.483223614064112,54.7295212966211 + + + + + +OV64 +#labelStyle + +0.563622106267054,54.7727947980149 + + + + +OV65 + +Small Square OV65 Boundry Box +#Line2 + + +1 + +0.488731038144025,54.8193015658576 +0.494268505878724,54.9090711446411 +0.650059028038269,54.9057718003937 +0.644176611922279,54.8160131205797 +0.488731038144025,54.8193015658576 + + + + + +OV65 +#labelStyle + +0.569316863582174,54.8625688545611 + + + + +OV66 + +Small Square OV66 Boundry Box +#Line2 + + +1 + +0.494269061218527,54.9090801224111 +0.499837356447021,54.9988479873206 +0.655974775491643,54.9955376945773 +0.650059617971825,54.9057807770713 +0.494269061218527,54.9090801224111 + + + + + +OV66 +#labelStyle + +0.575043289258586,54.9523411739792 + + + + +OV67 + +Small Square OV67 Boundry Box +#Line2 + + +1 + +0.499837914881541,54.9988569649191 +0.50543727156023,55.0886231145755 +0.661923516043731,55.0853018245182 +0.655975368712047,54.9955466710785 +0.499837914881541,54.9988569649191 + + + + + +OV67 +#labelStyle + +0.580801623273853,55.0421117547123 + + + + +OV68 + +Small Square OV68 Boundry Box +#Line2 + + +1 + +0.505437833112985,55.0886320920024 +0.511068487614628,55.1783965250092 +0.667905500692242,55.1750641884369 +0.661924112575953,55.0853108008429 +0.505437833112985,55.0886320920024 + + + + + +OV68 +#labelStyle + +0.586592108080558,55.1318805951848 + + + + +OV69 + +Small Square OV69 Boundry Box +#Line2 + + +1 + +0.511069052309378,55.1784055022644 +0.516731243454172,55.2681682172078 +0.673920983032813,55.2648247845323 +0.667906100561511,55.1750731645849 +0.511069052309378,55.1784055022644 + + + + + +OV69 +#labelStyle + +0.592414988638079,55.2216476938018 + + + + +OV70 + +Small Square OV70 Boundry Box +#Line2 + + +1 + +0.615259607266102,54.3671481277151 +0.620981988515572,54.4569155922968 +0.775034914555548,54.4534739811135 +0.768977176432613,54.3637178219803 +0.615259607266102,54.3671481277151 + + + + + +OV70 +#labelStyle + +0.695071411630017,54.4103429077238 + + + + +OV71 + +Small Square OV71 Boundry Box +#Line2 + + +1 + +0.620982562384014,54.4569245698534 +0.626736480532438,54.5466902806148 +0.781126638512505,54.5432373134634 +0.775035522054886,54.4534829575369 +0.620982562384014,54.4569245698534 + + + + + +OV71 +#labelStyle + +0.700978309250617,54.5001128874115 + + + + +OV72 + +Small Square OV72 Boundry Box +#Line2 + + +1 + +0.62673705756665,54.5466992579959 +0.632522748677326,54.6364632132774 +0.787251993925337,54.6329988403845 +0.781127249362457,54.5432462897064 +0.62673705756665,54.5466992579959 + + + + + +OV72 +#labelStyle + +0.706917789309294,54.5898810878325 + + + + +OV73 + +Small Square OV73 Boundry Box +#Line2 + + +1 + +0.632523328901036,54.6364721904828 +0.638341031444448,54.7262343886057 +0.793411233135748,54.7227585598121 +0.787252608151011,54.6330078164468 +0.632523328901036,54.6364721904828 + + + + + +OV73 +#labelStyle + +0.712890095986514,54.679647507128 + + + + +OV74 + +Small Square OV74 Boundry Box +#Line2 + + +1 + +0.638341614881627,54.7262433656353 +0.644191569765978,54.8160038049016 +0.799604611063991,54.8125164696582 +0.793411850762506,54.7227675356936 +0.638341614881627,54.7262433656353 + + + + + +OV74 +#labelStyle + +0.718895475955324,54.7694121434187 + + + + +OV75 + +Small Square OV75 Boundry Box +#Line2 + + +1 + +0.644192156440844,54.8160127817552 +0.650074607043067,54.9057714604463 +0.805832385241656,54.9022725678103 +0.799605232117455,54.8125254453586 +0.644192156440844,54.8160127817552 + + + + + +OV75 +#labelStyle + +0.72493417841295,54.8591749948026 + + + + +OV76 + +Small Square OV76 Boundry Box +#Line2 + + +1 + +0.650075196980081,54.9057804371238 +0.655990389177417,54.9955373535019 +0.81209481584506,54.9920268521328 +0.80583300974771,54.9022815433294 +0.650075196980081,54.9057804371238 + + + + + +OV76 +#labelStyle + +0.731006455113057,54.9489360593564 + + + + +OV77 + +Small Square OV77 Boundry Box +#Line2 + + +1 + +0.655990982401298,54.995546330003 +0.66193916460323,55.0853014823098 +0.818392165729011,55.0817793204653 +0.812095443829856,54.9920358274704 +0.655990982401298,54.995546330003 + + + + + +OV77 +#labelStyle + +0.737112560398384,55.0386953351349 + + + + +OV78 + +Small Square OV78 Boundry Box +#Line2 + + +1 + +0.661939761138949,55.0853104586344 +0.667921184319674,55.1750638450905 +0.824724700461135,55.1715299706224 +0.81839279721897,55.0817882956212 +0.661939761138949,55.0853104586344 + + + + + +OV78 +#labelStyle + +0.743252751233865,55.12845282017 + + + + +OV79 + +Small Square OV79 Boundry Box +#Line2 + + +1 + +0.66792178419246,55.1750728212384 +0.673936701923859,55.2648244400426 +0.831092688356737,55.2612788003929 +0.824725335482949,55.1715389455964 +0.66792178419246,55.1750728212384 + + + + + +OV79 +#labelStyle + +0.749427287240305,55.2182085124702 + + + + +OV80 + +Small Square OV80 Boundry Box +#Line2 + + +1 + +0.768992548100462,54.363717469135 +0.775050319750301,54.4534736271055 +0.929069864955389,54.449835816803 +0.922676983671423,54.3600916067521 +0.768992548100462,54.363717469135 + + + + + +OV80 +#labelStyle + +0.84895543416127,54.4068086411658 + + + + +OV81 + +Small Square OV81 Boundry Box +#Line2 + + +1 + +0.775050927253001,54.4534826035288 +0.781142077421563,54.5432369582874 +0.935498604788578,54.5395871466952 +0.929070506064132,54.4498447920287 +0.775050927253001,54.4534826035288 + + + + + +OV81 +#labelStyle + +0.855198552445413,54.4965669663828 + + + + +OV82 + +Small Square OV82 Boundry Box +#Line2 + + +1 + +0.781142688274895,54.5432459345303 +0.787267466734126,54.6329984840353 +0.941962829044888,54.6293366185724 +0.935499249432547,54.5395961217353 +0.781142688274895,54.5432459345303 + + + + + +OV82 +#labelStyle + +0.861476100562083,54.5863234613465 + + + + +OV83 + +Small Square OV83 Boundry Box +#Line2 + + +1 + +0.787268080963199,54.6330074600976 +0.793426740031078,54.7227582022847 +0.948462803882592,54.7190842299623 +0.941963477250563,54.6293455934266 +0.787268080963199,54.6330074600976 + + + + + +OV83 +#labelStyle + +0.867788336455172,54.6760781238036 + + + + +OV84 + +Small Square OV84 Boundry Box +#Line2 + + +1 + +0.793427357661253,54.7227671781661 +0.799620152234068,54.8125161109473 +0.954998798178624,54.8088299783652 +0.948463455676724,54.7190932046303 +0.793427357661253,54.7227671781661 + + + + + +OV84 +#labelStyle + +0.874135520700639,54.7658309514758 + + + + +OV85 + +Small Square OV85 Boundry Box +#Line2 + + +1 + +0.79962077329097,54.8125250866476 +0.805847960876099,54.9022722079107 +0.961571083563133,54.8985738612531 +0.95499945358824,54.8088389528468 +0.79962077329097,54.8125250866476 + + + + + +OV85 +#labelStyle + +0.880517916539865,54.8555819420586 + + + + +OV86 + +Small Square OV86 Boundry Box +#Line2 + + +1 + +0.805848585385609,54.9022811834297 +0.812110426134914,54.9920264910392 +0.968179934454665,54.9883158760701 +0.961571742615532,54.898582835548 +0.805848585385609,54.9022811834297 + + + + + +OV86 +#labelStyle + +0.886935789913697,54.9453310932218 + + + + +OV87 + +Small Square OV87 Boundry Box +#Line2 + + +1 + +0.812111054123185,54.9920354663767 +0.818407810866761,55.0817789581724 +0.974825628095748,55.0780560202317 +0.968180597177431,54.9883248501781 +0.812111054123185,54.9920354663767 + + + + + +OV87 +#labelStyle + +0.893389409496895,55.0350784026092 + + + + +OV88 + +Small Square OV88 Boundry Box +#Line2 + + +1 + +0.818408442360214,55.0817879333282 +0.824740380640721,55.1715296071248 +0.981508444589063,55.1677942911239 +0.974826294516748,55.0780649941525 +0.818408442360214,55.0817879333282 + + + + + +OV88 +#labelStyle + +0.899879046733093,55.1248238678376 + + + + +OV89 + +Small Square OV89 Boundry Box +#Line2 + + +1 + +0.824741015666049,55.1715385820988 +0.83110840377357,55.2612784356853 +0.988228666934184,55.2575306861026 +0.981509114736451,55.1678032648572 +0.824741015666049,55.1715385820988 + + + + + +OV89 +#labelStyle + +0.906404975870332,55.2145674864961 + + + + +OV90 + +Small Square OV90 Boundry Box +#Line2 + + +1 + +0.922692351934252,54.360091234354 +0.929085266719718,54.4498354431778 +1.08306959200048,54.4460015300808 +1.0763418283588,54.3562699109907 +0.922692351934252,54.360091234354 + + + + + +OV90 +#labelStyle + +1.00280527979529,54.4030785248145 + + + + +OV91 + +Small Square OV91 Boundry Box +#Line2 + + +1 + +0.92908590783182,54.4498444184034 +0.935514040241547,54.5395867718375 +1.08983508422952,54.5357402127925 +1.08307026669242,54.4460105040446 +0.92908590783182,54.4498444184034 + + + + + +OV91 +#labelStyle + +1.00938436339133,54.492824551896 + + + + +OV92 + +Small Square OV92 Boundry Box +#Line2 + + +1 + +0.935514684888894,54.5395957468775 +0.941978298371662,54.6293362424768 +1.09663791116426,54.6254769821012 +1.08983576264102,54.5357491865652 +0.935514684888894,54.5395957468775 + + + + + +OV92 +#labelStyle + +1.0159997216152,54.5825686949436 + + + + +OV93 + +Small Square OV93 Boundry Box +#Line2 + + +1 + +0.941978946580734,54.6293452173309 +0.948478307269715,54.7190838526234 +1.10347835274552,54.7152118351057 +1.09663859332319,54.6254859556824 +0.941978946580734,54.6293452173309 + + + + + +OV93 +#labelStyle + +1.02265162614129,54.6723109512877 + + + + +OV94 + +Small Square OV94 Boundry Box +#Line2 + + +1 + +0.948478959067263,54.7190928272912 +0.955014335814036,54.8088295997775 +1.11035669177234,54.804944768873 +1.10347903868,54.7152208084951 +0.948478959067263,54.7190928272912 + + + + + +OV94 +#labelStyle + +1.02934035141504,54.7620513182296 + + + + +OV95 + +Small Square OV95 Boundry Box +#Line2 + + +1 + +0.955014991227086,54.808838574259 +0.96158665563618,54.898573481411 +1.11727321393834,54.8946757804371 +1.11035738151081,54.8049537420703 +0.955014991227086,54.808838574259 + + + + + +OV95 +#labelStyle + +1.03606617468806,54.8517897930403 + + + + +OV96 + +Small Square OV96 Boundry Box +#Line2 + + +1 + +0.961587314692032,54.8985824557058 +0.968195541156116,54.9883154949681 +1.12422820786867,54.9844048668002 +1.1172739075095,54.894684753442 +0.961587314692032,54.8985824557058 + + + + + +OV96 +#labelStyle + +1.04282937605392,54.9415263729607 + + + + +OV97 + +Small Square OV97 Boundry Box +#Line2 + + +1 + +0.968196203882355,54.9883244690759 +0.97484126961781,55.0780556378642 +1.13122196515738,55.0741320249311 +1.12422890530154,54.9844138396125 +0.968196203882355,54.9883244690759 + + + + + +OV97 +#labelStyle + +1.0496302384844,55.0312610552012 + + + + +OV98 + +Small Square OV98 Boundry Box +#Line2 + + +1 + +0.974841936042302,55.0780646117849 +0.981524121125394,55.1677939074852 +1.1382547804055,55.1638572517646 +1.13122266648127,55.0741409975504 +0.974841936042302,55.0780646117849 + + + + + +OV98 +#labelStyle + +1.05646904786631,55.1209938369409 + + + + +OV99 + +Small Square OV99 Boundry Box +#Line2 + + +1 + +0.981524791276293,55.1678028812184 +0.988244378679908,55.257530301187 +1.14532695125954,55.2535805442007 +1.13825548565001,55.1638662241906 +0.981524791276293,55.1678028812184 + + + + + +OV99 +#labelStyle + +1.06334609303885,55.2107247153269 + + + + + +SC + +Large Square SC Boundry Box +#Line1 + + +1 + +-5.01395297375881,53.4586823321121 +-5.07933191241414,54.3561810279415 +-3.54135088389641,54.3856306563855 +-3.50857706379532,53.4871835939621 +-5.01395297375881,53.4586823321121 + + + + + +SC00 + +Small Square SC00 Boundry Box +#Line2 + + +1 + +-5.01395297375881,53.4586823321121 +-5.02033210181954,53.5484326358452 +-4.86961680056412,53.552146904442 +-4.86355487475952,53.462384524761 +-5.01395297375881,53.4586823321121 + + + + + +SC00 +#labelStyle + +-4.94185696990587,53.5054401840201 + + + + +SC01 + +Small Square SC01 Boundry Box +#Line2 + + +1 + +-5.02033274151563,53.548441611679 +-5.02674633895195,53.6381900309705 +-4.87571209661315,53.6419164277146 +-4.86961740845166,53.5521558814861 +-5.02033274151563,53.548441611679 + + + + + +SC01 +#labelStyle + +-4.94809491433747,53.5952046505171 + + + + +SC02 + +Small Square SC02 Boundry Box +#Line2 + + +1 + +-5.02674698210782,53.6381990066157 +-5.03319529992223,53.7279455388675 +-4.88184039695736,53.7316841151383 +-4.87571270778914,53.6419254045752 +-5.02674698210782,53.6381990066157 + + + + + +SC02 +#labelStyle + +-4.95436660034908,53.6849672570068 + + + + +SC03 + +Small Square SC03 Boundry Box +#Line2 + + +1 + +-5.03319594656312,53.7279545143238 +-5.03967923825338,53.817699156912 +-4.88800194264397,53.8214499644779 +-4.88184101144579,53.7316930918152 +-5.03319594656312,53.7279545143238 + + + + + +SC03 +#labelStyle + +-4.96067227400813,53.7747280010739 + + + + +SC04 + +Small Square SC04 Boundry Box +#Line2 + + +1 + +-5.03967988840477,53.8177081321792 +-5.04619840999478,53.9074508824535 +-4.89419697712323,53.9112139734758 +-4.88800256046907,53.8214589409709 +-5.03967988840477,53.8177081321792 + + + + + +SC04 +#labelStyle + +-4.96701218383171,53.8644868802791 + + + + +SC05 + +Small Square SC05 Boundry Box +#Line2 + + +1 + +-5.0461990636824,53.9074598575313 +-5.05275307375349,53.9972007128147 +-4.90042574627815,54.0009761398513 +-4.89419759830946,53.9112229497846 +-5.0461990636824,53.9074598575313 + + + + + +SC05 +#labelStyle + +-4.97338658081686,53.9542438921583 + + + + +SC06 + +Small Square SC06 Boundry Box +#Line2 + + +1 + +-5.05275373100333,53.9972096877029 +-5.05934349072603,54.0869486452909 +-4.90668849845482,54.0907364613003 +-4.90042637085023,54.0009851159757 +-5.05275373100333,53.9972096877029 + + + + + +SC06 +#labelStyle + +-4.97979571847136,54.0439990342225 + + + + +SC07 + +Small Square SC07 Boundry Box +#Line2 + + +1 + +-5.05934415156434,54.0869576199891 +-5.06596992473062,54.1766946771495 +-4.91298548449301,54.180494935495 +-4.9066891264377,54.0907454372401 +-5.05934415156434,54.0869576199891 + + + + + +SC07 +#labelStyle + +-4.98623985284496,54.1337523039569 + + + + +SC08 + +Small Square SC08 Boundry Box +#Line2 + + +1 + +-5.06597058918391,54.1767036516576 +-5.07263264223989,54.2664388056297 +-4.91931695775736,54.2702515600828 +-4.9129861159119,54.1805039112499 +-5.06597058918391,54.1767036516576 + + + + + +SC08 +#labelStyle + +-4.99271924256109,54.2235036988208 + + + + +SC09 + +Small Square SC09 Boundry Box +#Line2 + + +1 + +-5.07263331033495,54.2664477799472 +-5.07933191241414,54.3561810279415 +-4.92568317416901,54.3600063326868 +-4.91931759263774,54.2702605356527 +-5.07263331033495,54.2664477799472 + + + + + +SC09 +#labelStyle + +-4.99923414884903,54.3132532162466 + + + + +SC10 + +Small Square SC10 Boundry Box +#Line2 + + +1 + +-4.86353983179091,53.4623848855584 +-4.8696017258601,53.5521472664164 +-4.71885366531855,53.5556717310946 +-4.71310920977103,53.4658978894181 +-4.86353983179091,53.4623848855584 + + + + + +SC10 +#labelStyle + +-4.79126887286136,53.5090540243017 + + + + +SC11 + +Small Square SC11 Boundry Box +#Line2 + + +1 + +-4.86960233374444,53.5521562434606 +-4.87569698999969,53.6419167908711 +-4.72462974974139,53.6454527659275 +-4.7188542413706,53.5556807092873 +-4.86960233374444,53.5521562434606 + + + + + +SC11 +#labelStyle + +-4.79718857906693,53.5988302863932 + + + + +SC12 + +Small Square SC12 Boundry Box +#Line2 + + +1 + +-4.87569760117247,53.6419257677317 +-4.88182525826236,53.7316844794818 +-4.73043711637135,53.7352320136986 +-4.72463032891031,53.6454617439417 +-4.87569760117247,53.6419257677317 + + + + + +SC12 +#labelStyle + +-4.80314031213452,53.6886047383754 + + + + +SC13 + +Small Square SC13 Boundry Box +#Line2 + + +1 + +-4.88182587274757,53.7316934561588 +-4.8879867716941,53.8214503300136 +-4.73627599374931,53.825009472542 +-4.73043769867988,53.7352409915339 +-4.88182587274757,53.7316934561588 + + + + + +SC13 +#labelStyle + +-4.80912430570094,53.7783773782105 + + + + +SC14 + +Small Square SC14 Boundry Box +#Line2 + + +1 + +-4.88798738951597,53.8214593065066 +-4.89418177374388,53.9112143402087 +-4.74214661269531,53.9147851405735 +-4.73627657922042,53.8250184501984 +-4.88798738951597,53.8214593065066 + + + + + +SC14 +#labelStyle + +-4.81514079572974,53.8681482038404 + + + + +SC15 + +Small Square SC15 Boundry Box +#Line2 + + +1 + +-4.89418239492686,53.9112233165176 +-4.90041051029346,54.0009765077864 +-4.74804920633685,54.004559015889 +-4.74214720135219,53.9147941180506 +-4.89418239492686,53.9112233165176 + + + + + +SC15 +#labelStyle + +-4.82119002054011,53.9579172131859 + + + + +SC16 + +Small Square SC16 Boundry Box +#Line2 + + +1 + +-4.90041113486227,54.000985483911 +-4.90667322968762,54.090736830443 +-4.75398401013757,54.0943310965652 +-4.74804979820294,54.0045679931868 +-4.90041113486227,54.000985483911 + + + + + +SC16 +#labelStyle + +-4.82727222083605,54.0476844041466 + + + + +SC17 + +Small Square SC17 Boundry Box +#Line2 + + +1 + +-4.90667385766721,54.0907458063829 +-4.91297018276483,54.1804953058503 +-4.75995126192639,54.1841013806585 +-4.75398460523653,54.0943400736835 +-4.90667385766721,54.0907458063829 + + + + + +SC17 +#labelStyle + +-4.83338763973612,54.1374497746003 + + + + +SC18 + +Small Square SC18 Boundry Box +#Line2 + + +1 + +-4.91297081418042,54.1805042816053 +-4.91930162288843,54.2702519316561 +-4.76595120192702,54.2738698662047 +-4.75995186028212,54.184110357597 +-4.91297081418042,54.1805042816053 + + + + + +SC18 +#labelStyle + +-4.83953652280352,54.2272133224029 + + + + +SC19 + +Small Square SC19 Boundry Box +#Line2 + + +1 + +-4.91930225776547,54.2702609072261 +-4.92566780597822,54.3600067054832 +-4.77198407278802,54.3636365512186 +-4.76595180356367,54.2738788429632 +-4.91930225776547,54.2702609072261 + + + + + +SC19 +#labelStyle + +-4.84571911807668,54.316975045387 + + + + +SC20 + +Small Square SC20 Boundry Box +#Line2 + + +1 + +-4.71309416363462,53.4658982312902 +-4.71883858742371,53.5556720740821 +-4.56805947712017,53.5590066447235 +-4.5626327158577,53.4692219568415 +-4.71309416363462,53.4658982312902 + + + + + +SC20 +#labelStyle + +-4.64064898325491,53.5124783040498 + + + + +SC21 + +Small Square SC21 Boundry Box +#Line2 + + +1 + +-4.71883916347258,53.555681052275 +-4.72461463991386,53.6454531100353 +-4.5735161236428,53.6487985726815 +-4.56806002131423,53.5590156240033 +-4.71883916347258,53.555681052275 + + + + + +SC21 +#labelStyle + +-4.64625021991158,53.6022657448913 + + + + +SC22 + +Small Square SC22 Boundry Box +#Line2 + + +1 + +-4.72461521907958,53.6454620880495 +-4.73042197443882,53.7352323589313 +-4.57900232803332,53.7385887597612 +-4.57351667078191,53.6488075517873 +-4.72461521907958,53.6454620880495 + + + + + +SC22 +#labelStyle + +-4.65188176641407,53.6920514229308 + + + + +SC23 + +Small Square SC23 Boundry Box +#Line2 + + +1 + +-4.73042255674413,53.7352413367668 +-4.73626081953819,53.8250098189046 +-4.5845183062984,53.828377204447 +-4.57900287813898,53.7385977386928 +-4.73042255674413,53.7352413367668 + + + + + +SC23 +#labelStyle + +-4.65754384394012,53.7818353364884 + + + + +SC24 + +Small Square SC24 Boundry Box +#Line2 + + +1 + +-4.73626140500607,53.8250187965611 +-4.74213140603077,53.9147854880706 +-4.59006427659961,53.9181639052077 +-4.58451885939232,53.8283861832043 +-4.73626140500607,53.8250187965611 + + + + + +SC24 +#labelStyle + +-4.66323667587097,53.8716174838675 + + + + +SC25 + +Small Square SC25 Boundry Box +#Line2 + + +1 + +-4.7421319946844,53.9147944655479 +-4.74803396704277,54.0045593645256 +-4.59564045928025,54.0079488604965 +-4.59006483270372,53.9181728837906 +-4.7421319946844,53.9147944655479 + + + + + +SC25 +#labelStyle + +-4.66896048781869,53.9613978633541 + + + + +SC26 + +Small Square SC26 Boundry Box +#Line2 + + +1 + +-4.74803455890559,54.0045683418235 +-4.75396873803655,54.0943314463462 +-4.60124707689241,54.0977320687504 +-4.59564101841669,54.0079578389047 +-4.74803455890559,54.0045683418235 + + + + + +SC26 +#labelStyle + +-4.67471550765384,54.0511764732163 + + + + +SC27 + +Small Square SC27 Boundry Box +#Line2 + + +1 + +-4.75396933313222,54.0943404234645 +-4.75993595683971,54.1841017315887 +-4.60688435422458,54.1875135283896 +-4.60124763908355,54.0977410469838 +-4.75396933313222,54.0943404234645 + + + + + +SC27 +#labelStyle + +-4.68050196553364,54.1409533117045 + + + + +SC28 + +Small Square SC28 Boundry Box +#Line2 + + +1 + +-4.75993655519213,54.1841107085273 +-4.76593586367466,54.2738702182892 +-4.61255251832955,54.2772932378177 +-4.606884919493,54.1875225064481 +-4.75993655519213,54.1841107085273 + + + + + +SC28 +#labelStyle + +-4.6863200939305,54.2307283770503 + + + + +SC29 + +Small Square SC29 Boundry Box +#Line2 + + +1 + +-4.76593646530798,54.2738791950478 +-4.77196870118863,54.3636369044623 +-4.61825179855285,54.3670711954208 +-4.61255308669808,54.2773022157011 +-4.76593646530798,54.2738791950478 + + + + + +SC29 +#labelStyle + +-4.69217012766098,54.3205016674665 + + + + +SC30 + +Small Square SC30 Boundry Box +#Line2 + + +1 + +-4.56261766672335,53.4692222797795 +-4.56804439620561,53.5590069687154 +-4.41723594788662,53.5621515600251 +-4.41212709264835,53.4723566422946 +-4.56261766672335,53.4692222797795 + + + + + +SC30 +#labelStyle + +-4.48999900575599,53.5157129358403 + + + + +SC31 + +Small Square SC31 Boundry Box +#Line2 + + +1 + +-4.56804494039647,53.5590159479952 +-4.57350101077354,53.6487988977317 +-4.42237294264631,53.6519537621004 +-4.41723646020139,53.5621605403301 +-4.56804494039647,53.5590159479952 + + + + + +SC31 +#labelStyle + +-4.49528155387798,53.6055109380019 + + + + +SC32 + +Small Square SC32 Boundry Box +#Line2 + + +1 + +-4.57350155790944,53.6488078768376 +-4.57898718303683,53.7385890858743 +-4.42753776880621,53.7417542668725 +-4.42237345773412,53.6519627422358 +-4.57350155790944,53.6488078768376 + + + + + +SC32 +#labelStyle + +-4.50059269265312,53.6953072220722 + + + + +SC33 + +Small Square SC33 Boundry Box +#Line2 + + +1 + +-4.57898773313927,53.738598064806 +-4.58450312900088,53.8283775316275 +-4.43273062981243,53.8315530731558 +-4.42753828668731,53.741763246838 +-4.57898773313927,53.738598064806 + + + + + +SC33 +#labelStyle + +-4.50593263077319,53.7851017867101 + + + + +SC34 + +Small Square SC34 Boundry Box +#Line2 + + +1 + +-4.58450368209156,53.8283865103849 +-4.590049066826,53.9181642334602 +-4.43795173114134,53.9213501797531 +-4.43273115050725,53.8315620529515 +-4.58450368209156,53.8283865103849 + + + + + +SC34 +#labelStyle + +-4.51130157900983,53.8748946305606 + + + + +SC35 + +Small Square SC35 Boundry Box +#Line2 + + +1 + +-4.59004962292685,53.9181732120431 +-4.59562521685419,54.0079491898255 +-4.44320128032487,54.0111455854541 +-4.43795225467053,53.9213591593787 +-4.59004962292685,53.9181732120431 + + + + + +SC35 +#labelStyle + +-4.51669975024026,53.964685752255 + + + + +SC36 + +Small Square SC36 Boundry Box +#Line2 + + +1 + +-4.59562577598735,54.0079581682338 +-4.60123180163627,54.0977323991605 +-4.44847948697606,54.1009392890362 +-4.4432018067093,54.0111545649096 +-4.59562577598735,54.0079581682338 + + + + + +SC36 +#labelStyle + +-4.5221273594735,54.0544751504101 + + + + +SC37 + +Small Square SC37 Boundry Box +#Line2 + + +1 + +-4.60123236382412,54.097741377394 +-4.60686904595942,54.1875138598855 +-4.45378656281499,54.1907312892633 +-4.44848001623678,54.1009482683214 +-4.60123236382412,54.097741377394 + + + + + +SC37 +#labelStyle + +-4.5275846238769,54.1442628236283 + + + + +SC38 + +Small Square SC38 Boundry Box +#Line2 + + +1 + +-4.60686961122453,54.1875228379441 +-4.61253717687512,54.2772935704041 +-4.45912272169517,54.2805215848858 +-4.45378709497329,54.1907402683781 +-4.60686961122453,54.1875228379441 + + + + + +SC38 +#labelStyle + +-4.53307176280307,54.2340487704967 + + + + +SC39 + +Small Square SC39 Boundry Box +#Line2 + + +1 + +-4.61253774524032,54.2773025482876 +-4.61823642372755,54.3670715291025 +-4.46448817963029,54.3703101746404 +-4.45912325677254,54.2805305638301 +-4.61253774524032,54.2773025482876 + + + + + +SC39 +#labelStyle + +-4.5385889978173,54.3238329895873 + + + + +SC40 + +Small Square SC40 Boundry Box +#Line2 + + +1 + +-4.41211204068613,53.4723569462903 +-4.41722086412362,53.5621518650131 +-4.266384791637,53.5651063965271 +-4.26159404184769,53.4753018658402 +-4.41211204068613,53.4723569462903 + + + + + +SC40 +#labelStyle + +-4.33932064718299,53.5187578370612 + + + + +SC41 + +Small Square SC41 Boundry Box +#Line2 + + +1 + +-4.41722137643521,53.5621608453182 +-4.42235782690785,53.6519540680848 +-4.27120193320828,53.6549182531718 +-4.26638527205246,53.5651153777955 +-4.41722137643521,53.5621608453182 + + + + + +SC41 +#labelStyle + +-4.34428430014808,53.6085657825588 + + + + +SC42 + +Small Square SC42 Boundry Box +#Line2 + + +1 + +-4.42235834199246,53.6519630482203 +-4.42752262091956,53.7417545738575 +-4.27604517770675,53.7447284534744 +-4.27120241622455,53.6549272342746 +-4.42235834199246,53.6519630482203 + + + + + +SC42 +#labelStyle + +-4.34927482251936,53.6983720520746 + + + + +SC43 + +Small Square SC43 Boundry Box +#Line2 + + +1 + +-4.42752313879743,53.7417635538232 +-4.43271544960356,53.8315533811458 +-4.28091471599309,53.8345369965604 +-4.27604566334282,53.7447374344116 +-4.42752313879743,53.7417635538232 + + + + + +SC43 +#labelStyle + +-4.35429241047726,53.7881766445863 + + + + +SC44 + +Small Square SC44 Boundry Box +#Line2 + + +1 + +-4.43271597029514,53.8315623609416 +-4.43793651843498,53.9213504887522 +-4.28581074083332,53.9243438815458 +-4.28091520426815,53.8345459773318 +-4.43271597029514,53.8315623609416 + + + + + +SC44 +#labelStyle + +-4.35933726215802,53.8779795590611 + + + + +SC45 + +Small Square SC45 Boundry Box +#Line2 + + +1 + +-4.43793704196092,53.921359468378 +-4.44318603494447,54.0111458954669 +-4.29073344692242,54.0141491075374 +-4.28581123176674,53.9243528621513 +-4.43793704196092,53.921359468378 + + + + + +SC45 +#labelStyle + +-4.3644095776779,53.9677807944555 + + + + +SC46 + +Small Square SC46 Boundry Box +#Line2 + + +1 + +-4.44318656132562,54.0111548749224 +-4.44846420874376,54.1009396000668 +-4.29568303090838,54.1039526736324 +-4.29073394053377,54.014158087977 +-4.44318656132562,54.0111548749224 + + + + + +SC46 +#labelStyle + +-4.36950955915776,54.0575803497147 + + + + +SC47 + +Small Square SC47 Boundry Box +#Line2 + + +1 + +-4.44846473800118,54.1009485793521 +-4.45377125155162,54.1907316013162 +-4.30065969141656,54.1937545789179 +-4.29568352721741,54.103961653906 +-4.44846473800118,54.1009485793521 + + + + + +SC47 +#labelStyle + +-4.37463741074815,54.1473782237728 + + + + +SC48 + +Small Square SC48 Boundry Box +#Line2 + + +1 + +-4.45377178370661,54.1907405804311 +-4.45910737722026,54.2805218979655 +-4.30566362907443,54.2835548224705 +-4.30066019044324,54.1937635590253 +-4.45377178370661,54.1907405804311 + + + + + +SC48 +#labelStyle + +-4.37979333865455,54.237174415552 + + + + +SC49 + +Small Square SC49 Boundry Box +#Line2 + + +1 + +-4.4591079122943,54.2805308769098 +-4.46447280176201,54.3703104887512 +-4.31069504653667,54.3733534033567 +-4.30566413083892,54.2835638024118 +-4.4591079122943,54.2805308769098 + + + + + +SC49 +#labelStyle + +-4.38497755116319,54.3269689239624 + + + + +SC50 + +Small Square SC50 Boundry Box +#Line2 + + +1 + +-4.26157898722787,53.475302150886 +-4.26636970519708,53.5651066825033 +-4.11550772437039,53.5678710785954 +-4.1110352671163,53.4780575523476 +-4.26157898722787,53.475302150886 + + + + + +SC50 +#labelStyle + +-4.18861561638259,53.521612929919 + + + + +SC51 + +Small Square SC51 Boundry Box +#Line2 + + +1 + +-4.26637018560935,53.5651156637718 +-4.27118681477338,53.6549185400824 +-4.12000482378948,53.6576919697536 +-4.11550817286773,53.5678800607654 +-4.26637018560935,53.5651156637718 + + + + + +SC51 +#labelStyle + +-4.19326017995715,53.6114302002471 + + + + +SC52 + +Small Square SC52 Boundry Box +#Line2 + + +1 + +-4.27118729778644,53.6549275211854 +-4.27603002710393,53.7447287413235 +-4.12452629578086,53.7475112429127 +-4.12000527471522,53.6577009517619 +-4.27118729778644,53.6549275211854 + + + + + +SC52 +#labelStyle + +-4.19792988975919,53.7012458340966 + + + + +SC53 + +Small Square SC53 Boundry Box +#Line2 + + +1 + +-4.27603051273678,53.7447377222608 +-4.28089953304815,53.8345372853519 +-4.12907231859651,53.8373288974887 +-4.12452674915274,53.7475202247591 +-4.27603051273678,53.7447377222608 + + + + + +SC53 +#labelStyle + +-4.20262492943392,53.7910598307444 + + + + +SC54 + +Small Square SC54 Boundry Box +#Line2 + + +1 + +-4.28090002131997,53.8345462661234 +-4.28579552537078,53.9243441712837 +-4.13364307226838,53.9271449328917 +-4.12907277443244,53.8373378791732 +-4.28090002131997,53.8345462661234 + + + + + +SC54 +#labelStyle + +-4.20734548445791,53.8808721894599 + + + + +SC55 + +Small Square SC55 Boundry Box +#Line2 + + +1 + +-4.28579601630094,53.9243531518893 +-4.29071819876553,54.0141493982258 +-4.13823873863053,54.016959348525 +-4.13364353058646,53.9271539144142 +-4.28579601630094,53.9243531518893 + + + + + +SC55 +#labelStyle + +-4.21209174216183,53.9706829095048 + + + + +SC56 + +Small Square SC56 Boundry Box +#Line2 + + +1 + +-4.29071869237359,54.0141583786655 +-4.29566774987907,54.1039529652754 +-4.14285950134152,54.1067721437854 +-4.13823919944903,54.0169683298855 +-4.29071869237359,54.0141583786655 + + + + + +SC56 +#labelStyle + +-4.21686389175346,54.0604919901328 + + + + +SC57 + +Small Square SC57 Boundry Box +#Line2 + + +1 + +-4.29566824618481,54.1039619455491 +-4.30064437733546,54.1937548715196 +-4.14750554590724,54.1965833180626 +-4.1428599646789,54.1067811249839 +-4.29566824618481,54.1039619455491 + + + + + +SC57 +#labelStyle + +-4.22166212434115,54.150299430589 + + + + +SC58 + +Small Square SC58 Boundry Box +#Line2 + + +1 + +-4.30064487635883,54.1937638516271 +-4.30564828176085,54.2835551160351 +-4.15217705970401,54.2863928707389 +-4.14750601178215,54.196592299099 +-4.30064487635883,54.1937638516271 + + + + + +SC58 +#labelStyle + +-4.22648663295752,54.2401052301102 + + + + +SC59 + +Small Square SC59 Boundry Box +#Line2 + + +1 + +-4.30564878352202,54.2835640959765 +-4.31067966580859,54.3733536978883 +-4.15687423200205,54.3762008011891 +-4.15217752813528,54.2864018516131 +-4.30564878352202,54.2835640959765 + + + + + +SC59 +#labelStyle + +-4.23133761258362,54.329909387924 + + + + +SC60 + +Small Square SC60 Boundry Box +#Line2 + + +1 + +-4.11102021000934,53.478057818436 +-4.11549263542524,53.5678713455526 +-3.96460646394388,53.5704455354413 +-3.96045247395013,53.4806236314989 +-4.11102021000934,53.478057818436 + + + + + +SC60 +#labelStyle + +-4.03788562410876,53.524278141446 + + + + +SC61 + +Small Square SC61 Boundry Box +#Line2 + + +1 + +-4.11549308391938,53.5678803277226 +-4.11998970283108,53.6576922375832 +-3.96878334473167,53.6602748405817 +-3.96460688050553,53.5704545184509 +-4.11549308391938,53.5678803277226 + + + + + +SC61 +#labelStyle + +-4.04221091647127,53.6141041176097 + + + + +SC62 + +Small Square SC62 Boundry Box +#Line2 + + +1 + +-4.11999015375361,53.6577012195915 +-4.12451114263608,53.7475115116184 +-3.97298286597879,53.7501025634428 +-3.96878376354913,53.6602838234331 +-4.11999015375361,53.6577012195915 + + + + + +SC62 +#labelStyle + +-4.04655963007372,53.703928494187 + + + + +SC63 + +Small Square SC63 Boundry Box +#Line2 + + +1 + +-4.12451159600474,53.7475204934648 +-4.12905713309097,53.8373291670743 +-3.97720519330673,53.8399287037121 +-3.97298328706855,53.750111546136 +-4.12451159600474,53.7475204934648 + + + + + +SC63 +#labelStyle + +-4.0509319360037,53.7937512707344 + + + + +SC64 + +Small Square SC64 Boundry Box +#Line2 + + +1 + +-4.12905758892366,53.8373381487588 +-4.13362785422642,53.9271452033608 +-3.9814504939913,53.929753261073 +-3.97720561668545,53.8399376862469 +-4.12905758892366,53.8373381487588 + + + + + +SC64 +#labelStyle + +-4.05532800705541,53.8835724468038 + + + + +SC65 + +Small Square SC65 Boundry Box +#Line2 + + +1 + +-4.13362831254124,53.9271541848835 +-4.13822348787519,54.0169596198816 +-3.98571893698315,54.0195762352056 +-3.98145091967577,53.9297622434496 +-4.13362831254124,53.9271541848835 + + + + + +SC65 +#labelStyle + +-4.05974801775086,53.973392021942 + + + + +SC66 + +Small Square SC66 Boundry Box +#Line2 + + +1 + +-4.13822394869042,54.0169686012422 +-4.14284421769456,54.1067724160333 +-3.99001069292867,54.1093976257858 +-3.98571936499036,54.0195852174239 +-4.13822394869042,54.0169686012422 + + + + + +SC66 +#labelStyle + +-4.06419214436134,54.0632099956906 + + + + +SC67 + +Small Square SC67 Boundry Box +#Line2 + + +1 + +-4.14284468102865,54.1067813972318 +-4.14749022918911,54.1965835912055 +-3.99432593419116,54.1992174324851 +-3.99001112327577,54.1094066078456 +-4.14284468102865,54.1067813972318 + + + + + +SC67 +#labelStyle + +-4.06866056492927,54.1530263675856 + + + + +SC68 + +Small Square SC68 Boundry Box +#Line2 + + +1 + +-4.1474906950607,54.1965925722419 +-4.1521617097338,54.2863931447808 +-3.99866483487229,54.2890356549707 +-3.99432636689546,54.1992264143866 +-4.1474906950607,54.1965925722419 + + + + + +SC68 +#labelStyle + +-4.07315345929029,54.2428411371575 + + + + +SC69 + +Small Square SC69 Boundry Box +#Line2 + + +1 + +-4.15216217816173,54.286402125655 +-4.15685884859754,54.3762010761339 +-4.003027570834,54.3788522929051 +-3.9986652699513,54.2890446367138 +-4.15216217816173,54.286402125655 + + + + + +SC69 +#labelStyle + +-4.0776710090958,54.3326543039307 + + + + +SC70 + +Small Square SC70 Boundry Box +#Line2 + + +1 + +-3.96043741452667,53.4806238786233 +-3.96459137266537,53.5704457833725 +-3.81368272995032,53.5728297011272 +-3.80984736955979,53.4830000377957 +-3.96043741452667,53.4806238786233 + + + + + +SC70 +#labelStyle + +-3.88713238290142,53.526753403507 + + + + +SC71 + +Small Square SC71 Boundry Box +#Line2 + + +1 + +-3.96459178922383,53.5704547663822 +-3.96876822142289,53.6602750893233 +-3.81753922813382,53.6626667992754 +-3.81368311455997,53.5728386849145 +-3.96459178922383,53.5704547663822 + + + + + +SC71 +#labelStyle + +-3.89113823466455,53.6165874660541 + + + + +SC72 + +Small Square SC72 Boundry Box +#Line2 + + +1 + +-3.96876864023714,53.6602840721747 +-3.97296771046644,53.7501028129982 +-3.82141663302979,53.7525023482373 +-3.81753961482654,53.6626757829077 +-3.96876864023714,53.6602840721747 + + + + + +SC72 +#labelStyle + +-3.89516578099446,53.7064199632919 + + + + +SC73 + +Small Square SC73 Boundry Box +#Line2 + + +1 + +-3.97296813155298,53.7501117956915 +-3.97719000541626,53.8399289540847 +-3.82531509760896,53.8423363479514 +-3.8214170218208,53.7525113317147 +-3.97296813155298,53.7501117956915 + + + + + +SC73 +#labelStyle + +-3.89921518040024,53.7962508950368 + + + + +SC74 + +Small Square SC74 Boundry Box +#Line2 + + +1 + +-3.97719042879173,53.8399379366197 +-3.98143527354687,53.9297535122664 +-3.82923477637043,53.9321687983552 +-3.82531548851365,53.8423453312739 +-3.97719042879173,53.8399379366197 + + + + + +SC74 +#labelStyle + +-3.90328659297257,53.8860802611032 + + + + +SC75 + +Small Square SC75 Boundry Box +#Line2 + + +1 + +-3.98143569922808,53.9297624946431 +-3.98570368380764,54.0195764872233 +-3.8331758253606,54.0219996993848 +-3.82923516940431,53.9321777815228 +-3.98143569922808,53.9297624946431 + + + + + +SC75 +#labelStyle + +-3.9073801804033,53.9759080613028 + + + + +SC76 + +Small Square SC76 Boundry Box +#Line2 + + +1 + +-3.98570411181156,54.0195854694416 +-3.98999540684364,54.1093978786313 +-3.8371384021925,54.1118290509747 +-3.83317622053936,54.0220086823974 +-3.98570411181156,54.0195854694416 + + + + + +SC76 +#labelStyle + +-3.91149610600542,54.0657342954449 + + + + +SC77 + +Small Square SC77 Boundry Box +#Line2 + + +1 + +-3.98999583718743,54.1094068606912 +-3.99431061501687,54.199217686162 +-3.84112266606533,54.2016568530579 +-3.83713879953198,54.1118380338323 +-3.98999583718743,54.1094068606912 + + + + + +SC77 +#labelStyle + +-3.91563453473327,54.1555589633359 + + + + +SC78 + +Small Square SC78 Boundry Box +#Line2 + + +1 + +-3.99431104771785,54.1992266680635 +-3.99864948242768,54.2890359094826 +-3.84512877778435,54.2914831055656 +-3.84112306558153,54.2016658357606 +-3.99431104771785,54.1992266680635 + + + + + +SC78 +#labelStyle + +-3.91979563320304,54.2453820647791 + + + + +SC79 + +Small Square SC79 Boundry Box +#Line2 + + +1 + +-3.99864991750335,54.2890448912257 +-4.00301218493664,54.3788525482557 +-3.84915689978101,54.3813078084266 +-3.84512917949342,54.2914920881133 +-3.99864991750335,54.2890448912257 + + + + + +SC79 +#labelStyle + +-3.92397956971366,54.3352035995747 + + + + +SC80 + +Small Square SC80 Boundry Box +#Line2 + + +1 + +-3.80983230799064,53.4830002659497 +-3.8136676365105,53.5728299300262 +-3.66273824359579,53.5750235145731 +-3.65922166274942,53.4851867105644 +-3.80983230799064,53.4830002659497 + + + + + +SC80 +#labelStyle + +-3.73635760696475,53.5290386528046 + + + + +SC81 + +Small Square SC81 Boundry Box +#Line2 + + +1 + +-3.81366802111695,53.5728389138136 +-3.81752410264796,53.6626670289226 +-3.6662742077281,53.664867784344 +-3.66273859623837,53.575032499076 +-3.81366802111695,53.5728389138136 + + + + + +SC81 +#labelStyle + +-3.74004386119591,53.6188801818582 + + + + +SC82 + +Small Square SC82 Boundry Box +#Line2 + + +1 + +-3.81752448933747,53.662676012555 +-3.82140147532443,53.7525025786359 +-3.66982934331652,53.7547105353909 +-3.66627456228086,53.6648767686951 +-3.81752448933747,53.662676012555 + + + + + +SC82 +#labelStyle + +-3.74375008175858,53.7087201772604 + + + + +SC83 + +Small Square SC83 Boundry Box +#Line2 + + +1 + +-3.82140186411221,53.7525115621134 +-3.82529990750939,53.8423365791047 +-3.67340379066234,53.8445517678835 +-3.66982969979341,53.7547195195901 +-3.82140186411221,53.7525115621134 + + + + + +SC83 +#labelStyle + +-3.74747641456404,53.798558639068 + + + + +SC84 + +Small Square SC84 Boundry Box +#Line2 + + +1 + +-3.82530029841083,53.8423455624272 +-3.82921955370065,53.9321690302663 +-3.67699769146892,53.9343914819927 +-3.67340414907747,53.8445607519308 +-3.82530029841083,53.8423455624272 + + + + + +SC84 +#labelStyle + +-3.7512230069798,53.8883955673375 + + + + +SC85 + +Small Square SC85 Boundry Box +#Line2 + + +1 + +-3.82921994673126,53.9321780134339 +-3.83316056994332,54.0219999320569 +-3.68061118885916,54.0242296778907 +-3.67699805183653,53.9344004658882 +-3.82921994673126,53.9321780134339 + + + + + +SC85 +#labelStyle + +-3.75499000784764,53.9782309621257 + + + + +SC86 + +Small Square SC86 Boundry Box +#Line2 + + +1 + +-3.8331609651188,54.0220089150696 +-3.83712311384913,54.1118292844112 +-3.68424442739313,54.1140663557503 +-3.68061155119363,54.0242386616344 +-3.8331609651188,54.0220089150696 + + + + + +SC86 +#labelStyle + +-3.75877756750202,54.0680648234891 + + + + +SC87 + +Small Square SC87 Boundry Box +#Line2 + + +1 + +-3.83712351118531,54.111838267269 +-3.84110734461596,54.2016570872621 +-3.68789755308609,54.203901515745 +-3.68424479170899,54.1140753393422 +-3.83712351118531,54.111838267269 + + + + + +SC87 +#labelStyle + +-3.76258583778867,54.1578971514839 + + + + +SC88 + +Small Square SC88 Boundry Box +#Line2 + + +1 + +-3.84110774412884,54.2016660699649 +-3.84511342304773,54.2914833405408 +-3.6915707134267,54.293735158049 +-3.68789791939802,54.2039104991851 +-3.84110774412884,54.2016660699649 + + + + + +SC88 +#labelStyle + +-3.76641497208351,54.2477279461655 + + + + +SC89 + +Small Square SC89 Boundry Box +#Line2 + + +1 + +-3.84511382475347,54.2914923230886 +-3.84914151157457,54.3813080441762 +-3.69526405739549,54.3835672828366 +-3.69157108174951,54.2937441413373 +-3.84511382475347,54.2914923230886 + + + + + +SC89 +#labelStyle + +-3.77026512531184,54.3375572075889 + + + + +SC90 + +Small Square SC90 Boundry Box +#Line2 + + +1 + +-3.65920659920552,53.4851869197422 +-3.66272314816685,53.5750237244339 +-3.51177472757669,53.5770269195613 +-3.50857706379532,53.4871835939621 +-3.65920659920552,53.4851869197422 + + + + + +SC90 +#labelStyle + +-3.58556301204526,53.5311338308857 + + + + +SC91 + +Small Square SC91 Boundry Box +#Line2 + + +1 + +-3.66272350080623,53.5750327089369 +-3.66625908023861,53.664867994891 +-3.51499001875543,53.6668777391922 +-3.51177504823838,53.5770359047178 +-3.66272350080623,53.5750327089369 + + + + + +SC91 +#labelStyle + +-3.58892952428562,53.6209822061763 + + + + +SC92 + +Small Square SC92 Boundry Box +#Line2 + + +1 + +-3.66625943478815,53.6648769792421 +-3.66981418359287,53.7547107466268 +-3.51822274474914,53.7567270679268 +-3.51499034115426,53.6668867241996 +-3.66625943478815,53.6648769792421 + + + + + +SC92 +#labelStyle + +-3.59231427318397,53.7108290768509 + + + + +SC93 + +Small Square SC93 Boundry Box +#Line2 + + +1 + +-3.66981454006653,53.7547197308261 +-3.67338859852966,53.8445519798113 +-3.52147303317249,53.8465749061463 +-3.51822306889781,53.7567360527851 +-3.66981454006653,53.7547197308261 + + + + + +SC93 +#labelStyle + +-3.59571739203593,53.8006744431863 + + + + +SC94 + +Small Square SC94 Boundry Box +#Line2 + + +1 + +-3.67338895694154,53.8445609638587 +-3.67698246675108,53.9343916946155 +-3.5247410129157,53.936421254235 +-3.52147335908383,53.8465838908555 +-3.67338895694154,53.8445609638587 + + + + + +SC94 +#labelStyle + +-3.59913901546776,53.8905183054618 + + + + +SC95 + +Small Square SC95 Boundry Box +#Line2 + + +1 + +-3.67698282711542,53.9344006785111 +-3.68059593137871,54.0242298912114 +-3.52802681416043,54.0262661125807 +-3.52474134060266,53.9364302387953 +-3.67698282711542,53.9344006785111 + + + + + +SC95 +#labelStyle + +-3.60257927945284,53.9803606639585 + + + + +SC96 + +Small Square SC96 Boundry Box +#Line2 + + +1 + +-3.6805962937099,54.0242388749551 +-3.68422913697133,54.1140665697718 +-3.53133056839587,54.1161094815738 +-3.52802714363609,54.026275096992 +-3.6805962937099,54.0242388749551 + + + + + +SC96 +#labelStyle + +-3.60603832132845,54.0702015189598 + + + + +SC97 + +Small Square SC97 Boundry Box +#Line2 + + +1 + +-3.68422950128389,54.1140755533637 +-3.68788222954288,54.2039017304704 +-3.53465240843511,54.2059513616077 +-3.53133089967345,54.1161184658362 +-3.68422950128389,54.1140755533637 + + + + + +SC97 +#labelStyle + +-3.60951627981284,54.1600408707511 + + + + +SC98 + +Small Square SC98 Boundry Box +#Line2 + + +1 + +-3.68788259585149,54.2039107139106 +-3.69155535658067,54.2937353734813 +-3.53799246843167,54.2957917530787 +-3.53465274152795,54.2059603457213 +-3.68788259585149,54.2039107139106 + + + + + +SC98 +#labelStyle + +-3.61301329502243,54.2498787196192 + + + + +SC99 + +Small Square SC99 Boundry Box +#Line2 + + +1 + +-3.69155572490015,54.2937443567698 +-3.6952486670639,54.383567498979 +-3.54135088389641,54.3856306563855 +-3.53799280335326,54.2958007370435 +-3.69155572490015,54.2937443567698 + + + + + +SC99 +#labelStyle + +-3.61652950848943,54.3397150658527 + + + + + +SD + +Large Square SD Boundry Box +#Line1 + + +1 + +-3.50856199844778,53.4871837841583 +-3.54133549162379,54.385630852915 +-2.00150670109139,54.3954694037265 +-2.00146907556046,53.496705189357 +-3.50856199844778,53.4871837841583 + + + + + +SD00 + +Small Square SD00 Boundry Box +#Line2 + + +1 + +-3.50856199844778,53.4871837841583 +-3.51175963033098,53.5770271103787 +-3.36079390595664,53.5788398647421 +-3.35791528432436,53.4889906369809 +-3.50856199844778,53.4871837841583 + + + + + +SD00 +#labelStyle + +-3.4347503153095,53.5330388841459 + + + + +SD01 + +Small Square SD01 Boundry Box +#Line2 + + +1 + +-3.51175995098947,53.5770360955353 +-3.51497488943589,53.6668779306334 +-3.36368839784086,53.6686966121247 +-3.36079419462487,53.5788488504902 +-3.51175995098947,53.5770360955353 + + + + + +SD01 +#labelStyle + +-3.43779695359159,53.6228934850443 + + + + +SD02 + +Small Square SD02 Boundry Box +#Line2 + + +1 + +-3.51497521183151,53.6668869156409 +-3.51820758318206,53.7567272599946 +-3.36659858663911,53.7585518938013 +-3.36368868807307,53.6687055977262 +-3.51497521183151,53.6668869156409 + + + + + +SD02 +#labelStyle + +-3.44086009754393,53.7127466077358 + + + + +SD03 + +Small Square SD03 Boundry Box +#Line2 + + +1 + +-3.51820790732749,53.756736244853 +-3.52145783918285,53.8465750988432 +-3.36952458726378,53.8484057103443 +-3.36659887844673,53.7585608792562 +-3.51820790732749,53.756736244853 + + + + + +SD03 +#labelStyle + +-3.44393986783022,53.8025982526977 + + + + +SD04 + +Small Square SD04 Boundry Box +#Line2 + + +1 + +-3.52145816509094,53.8465840835526 +-3.52472578632723,53.9364214475639 +-3.3724665157761,53.9382580623314 +-3.36952488065837,53.8484146956527 +-3.52145816509094,53.8465840835526 + + + + + +SD04 +#labelStyle + +-3.44703638631894,53.8924484204115 + + + + +SD05 + +Small Square SD05 Boundry Box +#Line2 + + +1 + +-3.52472611401092,53.9364304321243 +-3.52801155479555,54.0262663065442 +-3.3754244894004,54.0281089503455 +-3.37246681076932,53.9382670474934 +-3.52472611401092,53.9364304321243 + + + + + +SD05 +#labelStyle + +-3.4501497760983,53.982297111363 + + + + +SD06 + +Small Square SD06 Boundry Box +#Line2 + + +1 + +-3.52801188426793,54.0262752909556 +-3.53131527607571,54.1161096761746 +-3.37839862653865,54.1179583749742 +-3.37542478600404,54.0281179353611 +-3.52801188426793,54.0262752909556 + + + + + +SD06 +#labelStyle + +-3.45328016149138,54.0721443260418 + + + + +SD07 + +Small Square SD07 Boundry Box +#Line2 + + +1 + +-3.53131560734998,54.1161186604371 +-3.53463708297945,54.2059515568487 +-3.38138904678515,54.2078063368099 +-3.37839892476459,54.1179673598435 +-3.53131560734998,54.1161186604371 + + + + + +SD07 +#labelStyle + +-3.45642766807164,54.1619900649417 + + + + +SD08 + +Small Square SD08 Boundry Box +#Line2 + + +1 + +-3.53463741606897,54.2059605409623 +-3.53797710965897,54.2957919489625 +-3.38439587094148,54.29765283645 +-3.38138934664542,54.207815321533 +-3.53463741606897,54.2059605409623 + + + + + +SD08 +#labelStyle + +-3.45959242267851,54.25183432856 + + + + +SD09 + +Small Square SD09 Boundry Box +#Line2 + + +1 + +-3.53797744457723,54.2958009329273 +-3.54133549162379,54.385630852915 +-3.38741922103172,54.3874978744962 +-3.38439617244823,54.2976618210269 +-3.53797744457723,54.2958009329273 + + + + + +SD09 +#labelStyle + +-3.46277455343328,54.341677117398 + + + + +SD10 + +Small Square SD10 Boundry Box +#Line2 + + +1 + +-3.3579002173444,53.4889908081907 +-3.36077880706662,53.5788400365111 +-3.20979750404308,53.5804623036378 +-3.20723803719204,53.4906077934529 +-3.3579002173444,53.4889908081907 + + + + + +SD10 +#labelStyle + +-3.28392123522157,53.5347537638349 + + + + +SD11 + +Small Square SD11 Boundry Box +#Line2 + + +1 + +-3.36077909573165,53.5788490222592 +-3.36367326686501,53.6686967844554 +-3.21237108286866,53.6703243563514 +-3.20979776070651,53.5804712899153 +-3.36077909573165,53.5788490222592 + + + + + +SD11 +#labelStyle + +-3.28664788008528,53.6246139693841 + + + + +SD12 + +Small Square SD12 Boundry Box +#Line2 + + +1 + +-3.363673557094,53.6687057700569 +-3.36658342340358,53.758552066696 +-3.2149586195727,53.7601849659086 +-3.21237134092281,53.6703333424845 +-3.363673557094,53.6687057700569 + + + + + +SD12 +#labelStyle + +-3.2893892984416,53.7144727205066 + + + + +SD13 + +Small Square SD13 Boundry Box +#Line2 + + +1 + +-3.36658371520797,53.7585610521509 +-3.36950939159346,53.8484058838054 +-3.21756021635125,53.8500441330533 +-3.21495887902773,53.7601939518974 +-3.36658371520797,53.7585610521509 + + + + + +SD13 +#labelStyle + +-3.2921455983076,53.80433001786 + + + + +SD14 + +Small Square SD14 Boundry Box +#Line2 + + +1 + +-3.3695096849848,53.8484148691139 +-3.37245128749458,53.9382582363614 +-3.22017597642224,53.9399018585363 +-3.21756047721743,53.8500531188979 +-3.3695096849848,53.8484148691139 + + + + + +SD14 +#labelStyle + +-3.29491688877898,53.8941858621082 + + + + +SD15 + +Small Square SD15 Boundry Box +#Line2 + + +1 + +-3.37245158248453,53.9382672215235 +-3.37540922832998,54.0281091249468 +-3.22280600403819,54.0297581431151 +-3.22017623870995,53.9399108442368 +-3.37245158248453,53.9382672215235 + + + + + +SD15 +#labelStyle + +-3.29770328004359,53.9840402539208 + + + + +SD16 + +Small Square SD16 Boundry Box +#Line2 + + +1 + +-3.37540952493033,54.0281181099625 +-3.37838333250032,54.1179585501493 +-3.22545040449909,54.1196129875538 +-3.2228062677579,54.0297671286715 +-3.37540952493033,54.0281181099625 + + + + + +SD16 +#labelStyle + +-3.30050488339491,54.0738931939734 + + + + +SD17 + +Small Square SD17 Boundry Box +#Line2 + + +1 + +-3.37838363072296,54.1179675350186 +-3.38137371959857,54.2078065125613 +-3.22810928416553,54.2094663926232 +-3.22545066966138,54.1196219729662 +-3.37838363072296,54.1179675350186 + + + + + +SD17 +#labelStyle + +-3.30332181124597,54.1637446829476 + + + + +SD18 + +Small Square SD18 Boundry Box +#Line2 + + +1 + +-3.38137401945553,54.2078154972844 +-3.384380510425,54.2976530127801 +-3.230782750472,54.2993183591006 +-3.2281095507811,54.2094753778918 +-3.38137401945553,54.2078154972844 + + + + + +SD18 +#labelStyle + +-3.30615417714329,54.2535947215303 + + + + +SD19 + +Small Square SD19 Boundry Box +#Line2 + + +1 + +-3.38438081192841,54.297661997357 +-3.38740382700231,54.3874980514076 +-3.23347091194035,54.3891688877695 +-3.23078301855164,54.2993273442253 +-3.38438081192841,54.297661997357 + + + + + +SD19 +#labelStyle + +-3.30900209578115,54.3434433104142 + + + + +SD20 + +Small Square SD20 Boundry Box +#Line2 + + +1 + +-3.207222968751,53.4906079456718 +-3.20978240368134,53.580462456354 +-3.05878724826362,53.5818941946471 +-3.05654703636038,53.492035022054 +-3.207222968751,53.4906079456718 + + + + + +SD20 +#labelStyle + +-3.13307749142034,53.5362784260601 + + + + +SD21 + +Small Square SD21 Boundry Box +#Line2 + + +1 + +-3.20978266034158,53.5804714426315 +-3.21235595041035,53.670324509567 +-3.06103981285716,53.671760929991 +-3.05878747291221,53.5819031813919 +-3.20978266034158,53.5804714426315 + + + + + +SD21 +#labelStyle + +-3.13548403592746,53.6261436150086 + + + + +SD22 + +Small Square SD22 Boundry Box +#Line2 + + +1 + +-3.21235620846128,53.6703334957001 +-3.21494345484385,53.7601851196257 +-3.06330459528436,53.7616262420851 +-3.06104003872309,53.6717699165933 +-3.21235620846128,53.6703334957001 + + + + + +SD22 +#labelStyle + +-3.13790362068422,53.7160073706785 + + + + +SD23 + +Small Square SD23 Boundry Box +#Line2 + + +1 + +-3.21494371429565,53.7601941056146 +-3.21754501917665,53.8500442872741 +-3.06558168501241,53.8514901318246 +-3.06330482237653,53.7616352285451 +-3.21494371429565,53.7601941056146 + + + + + +SD23 +#labelStyle + +-3.14033634104778,53.8058696938881 + + + + +SD24 + +Small Square SD24 Boundry Box +#Line2 + + +1 + +-3.21754528003958,53.8500532731188 +-3.22016074662537,53.9399020132629 +-3.06787117240322,53.9413526001131 +-3.06558191333981,53.8514991181425 +-3.21754528003958,53.8500532731188 + + + + + +SD24 +#labelStyle + +-3.14278229332773,53.8957305854631 + + + + +SD25 + +Small Square SD25 Boundry Box +#Line2 + + +1 + +-3.22016100890981,53.9399109989634 +-3.22279074144123,54.0297582983497 +-3.07017314872458,54.0312136478623 +-3.06787140197494,53.9413615862888 +-3.22016100890981,53.9399109989634 + + + + + +SD25 +#labelStyle + +-3.14524157479791,53.9855900462372 + + + + +SD26 + +Small Square SD26 Boundry Box +#Line2 + + +1 + +-3.22279100515765,54.0297672839062 +-3.22543510892292,54.1196131432986 +-3.07248770616143,54.1210732759923 +-3.07017337954978,54.031222633896 +-3.22279100515765,54.0297672839062 + + + + + +SD26 +#labelStyle + +-3.14771428370843,54.0754480770511 + + + + +SD27 + +Small Square SD27 Boundry Box +#Line2 + + +1 + +-3.22543537408191,54.1196221287111 +-3.22809395542971,54.2094665488804 +-3.07481493782736,54.2109314854311 +-3.07248793824939,54.1210822618841 +-3.22543537408191,54.1196221287111 + + + + + +SD27 +#labelStyle + +-3.15020051929785,54.1653046787535 + + + + +SD28 + +Small Square SD28 Boundry Box +#Line2 + + +1 + +-3.22809422204196,54.209475534149 +-3.23076738839474,54.2993185158723 +-3.07715493777623,54.3007882771151 +-3.07481517118742,54.2109404711812 +-3.22809422204196,54.209475534149 + + + + + +SD28 +#labelStyle + +-3.15270038180556,54.2551598521999 + + + + +SD29 + +Small Square SD29 Boundry Box +#Line2 + + +1 + +-3.23076765647104,54.2993275009971 +-3.23345551633853,54.389169045058 +-3.07950780101402,54.3906436519883 +-3.07715517241786,54.3007972627234 +-3.23076765647104,54.2993275009971 + + + + + +SD29 +#labelStyle + +-3.15521397248437,54.3450135982533 + + + + +SD30 + +Small Square SD30 Boundry Box +#Line2 + + +1 + +-3.05653196662971,53.4920351552782 +-3.05877214660287,53.5818943283066 +-2.90776486604232,53.5831355010487 +-2.90584399677567,53.4932722863076 +-3.05653196662971,53.4920351552782 + + + + + +SD30 +#labelStyle + +-2.98222080459653,53.537612831791 + + + + +SD31 + +Small Square SD31 Boundry Box +#Line2 + + +1 + +-3.05877237124825,53.5819033150514 +-3.06102467909034,53.6717610640876 +-2.90969632783345,53.6730062960751 +-2.90776505866724,53.5831444881985 +-3.05877237124825,53.5819033150514 + + + + + +SD31 +#labelStyle + +-2.98430715434377,53.627482382625 + + + + +SD32 + +Small Square SD32 Boundry Box +#Line2 + + +1 + +-3.06102490495305,53.67177005069 +-3.06328942923742,53.7616263766207 +-2.91163826652979,53.762875685113 +-2.90969652150225,53.6730152830843 +-3.06102490495305,53.67177005069 + + + + + +SD32 +#labelStyle + +-2.98640481015702,53.7173505186941 + + + + +SD33 + +Small Square SD33 Boundry Box +#Line2 + + +1 + +-3.06328965632636,53.7616353630808 +-3.06556648651003,53.851490266801 +-2.9135907588587,53.8527436691886 +-2.91163846125011,53.7628846719816 +-3.06328965632636,53.7616353630808 + + + + + +SD33 +#labelStyle + +-2.98851385472192,53.8072172409572 + + + + +SD34 + +Small Square SD34 Boundry Box +#Line2 + + +1 + +-3.06556671483419,53.8514992531189 +-3.0678559412688,53.9413527355322 +-2.91555388231496,53.9426102493381 +-2.91359095463825,53.8527526559168 +-3.06556671483419,53.8514992531189 + + + + + +SD34 +#labelStyle + +-2.99063437155007,53.8970825503821 + + + + +SD35 + +Small Square SD35 Boundry Box +#Line2 + + +1 + +-3.06785617083725,53.941361721708 +-3.0701578847802,54.0312137837261 +-2.9175277151703,54.032475426607 +-2.91555407916151,53.9426192359259 +-3.06785617083725,53.941361721708 + + + + + +SD35 +#labelStyle + +-2.99276644498932,53.9869464479457 + + + + +SD36 + +Small Square SD36 Boundry Box +#Line2 + + +1 + +-3.07015811560212,54.0312227697599 +-3.07247240922787,54.1210734123026 +-2.91951233648316,54.1223392020506 +-2.91752791309174,54.0324844130546 +-3.07015811560212,54.0312227697599 + + + + + +SD36 +#labelStyle + +-2.99491016023417,54.0768089346336 + + + + +SD37 + +Small Square SD37 Boundry Box +#Line2 + + +1 + +-3.07247264131252,54.1210823981945 +-3.07479960772408,54.21093162219 +-2.92150782610846,54.2122015767334 +-2.91951253548742,54.122348188358 +-3.07247264131252,54.1210823981945 + + + + + +SD37 +#labelStyle + +-2.99706560333637,54.1666700114406 + + + + +SD38 + +Small Square SD38 Boundry Box +#Line2 + + +1 + +-3.07479984108082,54.21094060794 +-3.07713957432134,54.3007884143244 +-2.92351426470765,54.3020625517295 +-2.92150802620358,54.2122105629008 +-3.07479984108082,54.21094060794 + + + + + +SD38 +#labelStyle + +-2.99923286121562,54.2565296793699 + + + + +SD39 + +Small Square SD39 Boundry Box +#Line2 + + +1 + +-3.07713980895963,54.3007973999327 +-3.07949240402428,54.39064378965 +-2.9255317337588,54.3919221281223 +-2.92351446590172,54.302071537757 +-3.07713980895963,54.3007973999327 + + + + + +SD39 +#labelStyle + +-3.00141202167051,54.3463879394337 + + + + +SD40 + +Small Square SD40 Boundry Box +#Line2 + + +1 + +-2.90582892592691,53.4932724005338 +-2.90774976325532,53.5831356156481 +-2.75673208567557,53.5841861910045 +-2.75513063424592,53.4943195545881 +-2.90582892592691,53.4932724005338 + + + + + +SD40 +#labelStyle + +-2.83135289636953,53.5387569468627 + + + + +SD41 + +Small Square SD41 Boundry Box +#Line2 + + +1 + +-2.90774995587705,53.5831446027979 +-2.90968119293216,53.6730064110493 +-2.75834236870777,53.6740604225515 +-2.75673224626927,53.5841951784973 +-2.90774995587705,53.5831446027979 + + + + + +SD41 +#labelStyle + +-2.8331189695,53.6286302378386 + + + + +SD42 + +Small Square SD42 Boundry Box +#Line2 + + +1 + +-2.90968138659775,53.6730153980585 +-2.91162309934009,53.7628758004635 +-2.75996138695885,53.7639332627237 +-2.75834253017182,53.6740694099051 +-2.90968138659775,53.6730153980585 + + + + + +SD42 +#labelStyle + +-2.8348946136971,53.7185021299269 + + + + +SD43 + +Small Square SD43 Boundry Box +#Line2 + + +1 + +-2.91162329405717,53.7628847873322 +-2.91357555920517,53.8527437849172 +-2.76158920440689,53.8538047126585 +-2.75996154929961,53.7639422499382 +-2.91162329405717,53.7628847873322 + + + + + +SD43 +#labelStyle + +-2.83667989896483,53.8083726242072 + + + + +SD44 + +Small Square SD44 Boundry Box +#Line2 + + +1 + +-2.91357575498146,53.8527527716454 +-2.9155386500209,53.9426103654463 +-2.76322588566999,53.9436747735042 +-2.76158936763079,53.853813699734 +-2.91357575498146,53.8527527716454 + + + + + +SD44 +#labelStyle + +-2.83847489600655,53.8982417217688 + + + + +SD45 + +Small Square SD45 Boundry Box +#Line2 + + +1 + +-2.91553884686419,53.9426193520342 +-2.91751245005773,54.0324755430965 +-2.76487149601416,54.0335434464197 +-2.76322604978352,53.9436837604409 +-2.91553884686419,53.9426193520342 + + + + + +SD45 +#labelStyle + +-2.8402796762337,53.9881094237116 + + + + +SD46 + +Small Square SD46 Boundry Box +#Line2 + + +1 + +-2.91751264797587,54.0324845295441 +-2.91949703837276,54.1223393189229 +-2.76652610136147,54.1234107325746 +-2.76487166102389,54.0335524332176 +-2.91751264797587,54.0324845295441 + + + + + +SD46 +#labelStyle + +-2.8420943117746,54.0779757311456 + + + + +SD47 + +Small Square SD47 Boundry Box +#Line2 + + +1 + +-2.91949723737371,54.1223483052305 +-2.9214924948196,54.2122016939903 +-2.7681897682982,54.2132766331492 +-2.76652626727401,54.1234197192339 +-2.91949723737371,54.1223483052305 + + + + + +SD47 +#labelStyle + +-2.84391887548344,54.1678406451908 + + + + +SD48 + +Small Square SD48 Boundry Box +#Line2 + + +1 + +-2.92149269491139,54.2122106801578 +-2.92349890005835,54.3020626693726 +-2.76986256408323,54.3031411493341 +-2.76818993512026,54.21328561967 +-2.92149269491139,54.2122106801578 + + + + + +SD48 +#labelStyle + +-2.84575344094933,54.2577041669771 + + + + +SD49 + +Small Square SD49 Boundry Box +#Line2 + + +1 + +-2.92349910124908,54.3020716554002 +-2.92551633556574,54.3919222461533 +-2.77154455665645,54.3930042823307 +-2.76986273182156,54.3031501357165 +-2.92349910124908,54.3020716554002 + + + + + +SD49 +#labelStyle + +-2.84759808250558,54.3475662976448 + + + + +SD50 + +Small Square SD50 Boundry Box +#Line2 + + +1 + +-2.75511556245069,53.4943196498133 +-2.75671698193521,53.5841862865408 +-2.60569063620803,53.5850462375627 +-2.60440866531823,53.4951768001231 +-2.75511556245069,53.4943196498133 + + + + + +SD50 +#labelStyle + +-2.68047548916409,53.5397107419786 + + + + +SD51 + +Small Square SD51 Boundry Box +#Line2 + + +1 + +-2.75671714252571,53.5841952740336 +-2.75832723284616,53.6740605184003 +-2.60697967714791,53.6749232822868 +-2.6056907647642,53.5850552253361 +-2.75671714252571,53.5841952740336 + + + + + +SD51 +#labelStyle + +-2.68192121637724,53.6295871511559 + + + + +SD52 + +Small Square SD52 Boundry Box +#Line2 + + +1 + +-2.75832739430699,53.6740695057539 +-2.75994621880178,53.7639333588863 +-2.6082757109883,53.7647989476008 +-2.60697980640084,53.6749322699223 +-2.75832739430699,53.6740695057539 + + + + + +SD52 +#labelStyle + +-2.68337477896696,53.7194621746848 + + + + +SD53 + +Small Square SD53 Boundry Box +#Line2 + + +1 + +-2.7599463811393,53.7639423461008 +-2.76157400377889,53.8538048091363 +-2.60957878895019,53.8546732347331 +-2.60827584094307,53.7648079350984 +-2.7599463811393,53.7639423461008 + + + + + +SD53 +#labelStyle + +-2.68483623424702,53.809335813745 + + + + +SD54 + +Small Square SD54 Boundry Box +#Line2 + + +1 + +-2.76157416699953,53.8538137962118 +-2.76321065239429,53.9436748702984 +-2.610888962767,53.9445461449236 +-2.60957891961195,53.8546822220929 +-2.76157416699953,53.8538137962118 + + + + + +SD54 +#labelStyle + +-2.68630564010385,53.8992080695277 + + + + +SD55 + +Small Square SD55 Boundry Box +#Line2 + + +1 + +-2.76321081650455,53.9436838572351 +-2.7648562299127,54.0335435435318 +-2.61220628469095,54.0344176794243 +-2.61088909414095,53.9445551321458 +-2.76321081650455,53.9436838572351 + + + + + +SD55 +#labelStyle + +-2.68778305500364,53.9890789432352 + + + + +SD56 + +Small Square SD56 Boundry Box +#Line2 + + +1 + +-2.76485639491913,54.0335525303298 +-2.76651080225486,54.123410830006 +-2.61353080749952,54.1242878394982 +-2.61220641678234,54.034426666509 +-2.76485639491913,54.0335525303298 + + + + + +SD56 +#labelStyle + +-2.6892685379996,54.078948436081 + + + + +SD57 + +Small Square SD57 Boundry Box +#Line2 + + +1 + +-2.76651096816409,54.1234198166653 +-2.76817443600573,54.2132767309011 +-2.61486258450205,54.2141566264204 +-2.61353094031366,54.1242968264456 +-2.76651096816409,54.1234198166653 + + + + + +SD57 +#labelStyle + +-2.69076214873926,54.1688165492896 + + + + +SD58 + +Small Square SD58 Boundry Box +#Line2 + + +1 + +-2.76817460282446,54.213285717422 +-2.76984719842286,54.303141247408 +-2.61620166954636,54.3040240414772 +-2.61486271804428,54.2141656132305 +-2.76817460282446,54.213285717422 + + + + + +SD58 +#labelStyle + +-2.69226394747192,54.2586832840969 + + + + +SD59 + +Small Square SD59 Boundry Box +#Line2 + + +1 + +-2.76984736615784,54.3031502337905 +-2.77152915744477,54.3930043807281 +-2.61754811702559,54.3938900859663 +-2.61620180382211,54.3040330281501 +-2.76984736615784,54.3031502337905 + + + + + +SD59 +#labelStyle + +-2.69377399505622,54.3485486417494 + + + + +SD60 + +Small Square SD60 Boundry Box +#Line2 + + +1 + +-2.60439359274822,53.4951768763448 +-2.60567553168724,53.5850463140334 +-2.45464224730828,53.5857156186596 +-2.45367980715605,53.4958440009963 +-2.60439359274822,53.4951768763448 + + + + + +SD60 +#labelStyle + +-2.52959030608683,53.5404741927129 + + + + +SD61 + +Small Square SD61 Boundry Box +#Line2 + + +1 + +-2.60567566024021,53.5850553018069 +-2.60696454050017,53.6749233590078 +-2.45560999545331,53.675594853069 +-2.45464234382189,53.5857246066516 +-2.60567566024021,53.5850553018069 + + + + + +SD61 +#labelStyle + +-2.53071563064693,53.6303530979871 + + + + +SD62 + +Small Square SD62 Boundry Box +#Line2 + + +1 + +-2.60696466974988,53.6749323466433 +-2.60826054203935,53.7647990245729 +-2.45658299367443,53.7654727173824 +-2.45561009249001,53.6756038409239 +-2.60696466974988,53.6749323466433 + + + + + +SD62 +#labelStyle + +-2.531847054328,53.720230628212 + + + + +SD63 + +Small Square SD63 Boundry Box +#Line2 + + +1 + +-2.60826067199087,53.7648080120706 +-2.60956358752448,53.8546733119574 +-2.45756128042928,53.855349212899 +-2.45658309123806,53.7654817051004 +-2.60826067199087,53.7648080120706 + + + + + +SD63 +#labelStyle + +-2.53298462174657,53.8101067846479 + + + + +SD64 + +Small Square SD64 Boundry Box +#Line2 + + +1 + +-2.60956371818298,53.8546822993173 +-2.61087372868772,53.9445462224014 +-2.45854489456023,53.9452243409303 +-2.4575613785237,53.8553582004801 +-2.60956371818298,53.8546822993173 + + + + + +SD64 +#labelStyle + +-2.53412837796503,53.8999815685671 + + + + +SD65 + +Small Square SD65 Boundry Box +#Line2 + + +1 + +-2.61087386005839,53.9445552096236 +-2.61219101777997,54.0344177571564 +-2.45953387529922,54.0350981028005 +-2.45854499318934,53.9452333283748 +-2.61087386005839,53.9445552096236 + + + + + +SD65 +#labelStyle + +-2.5352783684971,53.9898549812542 + + + + +SD66 + +Small Square SD66 Boundry Box +#Line2 + + +1 + +-2.61219114986807,54.0344267442412 +-2.6135155075774,54.124287917486 +-2.46052826227259,54.1249704998456 +-2.45953397446697,54.0351070901084 +-2.61219114986807,54.0344267442412 + + + + + +SD66 +#labelStyle + +-2.53643463931352,54.0797270240055 + + + + +SD67 + +Small Square SD67 Boundry Box +#Line2 + + +1 + +-2.61351564038823,54.1242969044333 +-2.61484725138802,54.2141567046648 +-2.46152809550602,54.2148415334142 +-2.46052836198295,54.1249794870171 +-2.61351564038823,54.1242969044333 + + + + + +SD67 +#labelStyle + +-2.53759723684772,54.1695976981293 + + + + +SD68 + +Small Square SD68 Boundry Box +#Line2 + + +1 + +-2.61484738492693,54.2141656914749 +-2.61618630305832,54.3040241199793 +-2.46253341542955,54.3047112048672 +-2.46152819576302,54.2148505204495 +-2.61484738492693,54.2141656914749 + + + + + +SD68 +#labelStyle + +-2.53876620800164,54.2594670049459 + + + + +SD69 + +Small Square SD69 Boundry Box +#Line2 + + +1 + +-2.61618643733072,54.3040331066523 +-2.61753271698006,54.3938901647273 +-2.46354426288269,54.3945795155774 +-2.46253351623727,54.3047201917663 +-2.61618643733072,54.3040331066523 + + + + + +SD69 +#labelStyle + +-2.5399416001516,54.3493349457876 + + + + +SD70 + +Small Square SD70 Boundry Box +#Line2 + + +1 + +-2.453664733983,53.4958440582126 +-2.45462714218006,53.5857156760628 +-2.30358864914444,53.5861943171222 +-2.30294577741625,53.4963211401491 +-2.453664733983,53.4958440582126 + + + + + +SD70 +#labelStyle + +-2.37869907080268,53.5410472795132 + + + + +SD71 + +Small Square SD71 Boundry Box +#Line2 + + +1 + +-2.45462723869046,53.5857246640548 +-2.45559485819369,53.6755949106601 +-2.30423506642911,53.6760751176094 +-2.30358871361169,53.5862033052704 +-2.45462723869046,53.5857246640548 + + + + + +SD71 +#labelStyle + +-2.37950394854571,53.6309280586483 + + + + +SD72 + +Small Square SD72 Boundry Box +#Line2 + + +1 + +-2.45559495522718,53.675603898515 +-2.45656782410912,53.7654727751621 +-2.30488499058553,53.7659545546631 +-2.30423513124577,53.6760841056213 +-2.45559495522718,53.675603898515 + + + + + +SD72 +#labelStyle + +-2.38031318871384,53.7208074706921 + + + + +SD73 + +Small Square SD73 Boundry Box +#Line2 + + +1 + +-2.45656792166951,53.7654817628801 +-2.45754607838269,53.855349270868 +-2.30553844730324,53.8558326296331 +-2.30488505575416,53.7659635425386 +-2.45656792166951,53.7654817628801 + + + + + +SD73 +#labelStyle + +-2.38112682322091,53.8106855169653 + + + + +SD74 + +Small Square SD74 Boundry Box +#Line2 + + +1 + +-2.45754617647385,53.8553582584492 +-2.4585296598555,53.9452243990896 +-2.30619546252878,53.9457093438823 +-2.30553851282642,53.8558416173725 +-2.45754617647385,53.8553582584492 + + + + + +SD74 +#labelStyle + +-2.38194488429972,53.9005621988015 + + + + +SD75 + +Small Square SD75 Boundry Box +#Line2 + + +1 + +-2.45852975848133,53.9452333865341 +-2.45951860775817,54.0350981611507 +-2.30685606246895,54.0355846987863 +-2.30619552840912,53.9457183314857 +-2.45852975848133,53.9452333865341 + + + + + +SD75 +#labelStyle + +-2.38276740450589,53.9904375175466 + + + + +SD76 + +Small Square SD76 Boundry Box +#Line2 + + +1 + +-2.45951870692262,54.0351071484587 +-2.46051296171573,54.1249705583877 +-2.30752027359401,54.1254586957334 +-2.30685612870908,54.0355936862538 +-2.45951870692262,54.0351071484587 + + + + + +SD76 +#labelStyle + +-2.383594416722,54.0803114745593 + + + + +SD77 + +Small Square SD77 Boundry Box +#Line2 + + +1 + +-2.46051306142278,54.1249795455592 +-2.46151276175253,54.214841592149 +-2.30818812264099,54.2153313361251 +-2.30752034019659,54.1254676830653 +-2.46051306142278,54.1249795455592 + + + + + +SD77 +#labelStyle + +-2.38442595416158,54.1701840712108 + + + + +SD78 + +Small Square SD78 Boundry Box +#Line2 + + +1 + +-2.46151286200621,54.2148505791842 +-2.4625180482973,54.3047112637954 +-2.30885963661706,54.3052026213751 +-2.30818818960871,54.2153403233213 +-2.46151286200621,54.2148505791842 + + + + + +SD78 +#labelStyle + +-2.38526205037332,54.2600553088851 + + + + +SD79 + +Small Square SD79 Boundry Box +#Line2 + + +1 + +-2.46251814910166,54.3047202506945 +-2.46352886218813,54.3945795747 +-2.3095348428029,54.3950725529103 +-2.30885970395263,54.3052116084359 +-2.46251814910166,54.3047202506945 + + + + + +SD79 +#labelStyle + +-2.38610273924523,54.3499251889782 + + + + +SD80 + +Small Square SD80 Boundry Box +#Line2 + + +1 + +-2.30293070381194,53.4963211783585 +-2.30357354358183,53.5861943554565 +-2.15253157225967,53.5864823206693 +-2.15220829412614,53.4966082053823 +-2.30293070381194,53.4963211783585 + + + + + +SD80 +#labelStyle + +-2.22780350741117,53.541429987702 + + + + +SD81 + +Small Square SD81 Boundry Box +#Line2 + + +1 + +-2.30357360804587,53.5862033436048 +-2.30421992873193,53.6760751560691 +-2.15285663326017,53.6763640635441 +-2.15253160467803,53.5864913089116 +-2.30357360804587,53.5862033436048 + + + + + +SD81 +#labelStyle + +-2.22828790675019,53.6313120183633 + + + + +SD82 + +Small Square SD82 Boundry Box +#Line2 + + +1 + +-2.30421999354537,53.676084144081 +-2.30486982057945,53.7659545932488 +-2.1531834576743,53.7662444469955 +-2.15285666585423,53.6763730516504 +-2.30421999354537,53.676084144081 + + + + + +SD82 +#labelStyle + +-2.22877493150352,53.7211926872491 + + + + +SD83 + +Small Square SD83 Boundry Box +#Line2 + + +1 + +-2.30486988574484,53.7659635811243 +-2.30552324481264,53.8558326683453 +-2.15351205842033,53.8561234724039 +-2.15318349044535,53.7662534349659 +-2.30486988574484,53.7659635811243 + + + + + +SD83 +#labelStyle + +-2.22926460087844,53.8110719957209 + + + + +SD84 + +Small Square SD84 Boundry Box +#Line2 + + +1 + +-2.30552331033256,53.8558416560847 +-2.30618022737676,53.9457093827215 +-2.15384244854581,53.9460011411629 +-2.15351209136967,53.8561324602386 +-2.30552331033256,53.8558416560847 + + + + + +SD84 +#labelStyle + +-2.22975693427415,53.9009499451527 + + + + +SD85 + +Small Square SD85 Boundry Box +#Line2 + + +1 + +-2.30618029325383,53.9457183703249 +-2.30684079447731,54.0355847377531 +-2.15417464122911,54.0358774546792 +-2.15384248167474,53.946010128862 +-2.30618029325383,53.9457183703249 + + + + + +SD85 +#labelStyle + +-2.23025195128418,53.9908265369319 + + + + +SD86 + +Small Square SD86 Boundry Box +#Line2 + + +1 + +-2.30684086071415,54.0355937252206 +-2.30750497258322,54.1254587348283 +-2.15450864978114,54.1257524143727 +-2.15417467453896,54.0358864422428 +-2.30684086071415,54.0355937252206 + + + + + +SD86 +#labelStyle + +-2.23074967169883,54.0807017724586 + + + + +SD87 + +Small Square SD87 Boundry Box +#Line2 + + +1 + +-2.30750503918249,54.1254677221602 +-2.30817278843021,54.2153313753487 +-2.15484448764692,54.2156260216763 +-2.15450868327324,54.125761401801 +-2.30750503918249,54.1254677221602 + + + + + +SD87 +#labelStyle + +-2.23125011550762,54.1705756531461 + + + + +SD88 + +Small Square SD88 Boundry Box +#Line2 + + +1 + +-2.3081728553946,54.2153403625449 +-2.3088442690241,54.3052026607279 +-2.15518216840736,54.3054982780361 +-2.15484452132264,54.2156350089695 +-2.3081728553946,54.2153403625449 + + + + + +SD88 +#labelStyle + +-2.23175330290174,54.2604481804206 + + + + +SD89 + +Small Square SD89 Boundry Box +#Line2 + + +1 + +-2.30884433635632,54.3052116477888 +-2.3095194416442,54.395072592393 +-2.15552170578087,54.3953691849111 +-2.15518220226804,54.3055072651942 +-2.30884433635632,54.3052116477888 + + + + + +SD89 +#labelStyle + +-2.23225925427667,54.3503193557213 + + + + +SD90 + +Small Square SD90 Boundry Box +#Line2 + + +1 + +-2.1521932202624,53.4966082245839 +-2.15251646643573,53.5864823399337 +-2.00147274744759,53.5865796219129 +-2.00146907556046,53.496705189357 +-2.1521932202624,53.4966082245839 + + + + + +SD90 +#labelStyle + +-2.07690534032265,53.5416223074779 + + + + +SD91 + +Small Square SD91 Boundry Box +#Line2 + + +1 + +-2.15251649885089,53.586491328176 +-2.15284149529975,53.6763640828715 +-2.00147643938489,53.6764616834353 +-2.0014727478158,53.586588610187 +-2.15251649885089,53.586491328176 + + + + + +SD91 +#labelStyle + +-2.07706924225166,53.6315049672646 + + + + +SD92 + +Small Square SD92 Boundry Box +#Line2 + + +1 + +-2.15284152789059,53.6763730709778 +-2.15316828740304,53.7662444663862 +-2.00148015115013,53.7663423868916 +-2.00147643975508,53.6764706715735 +-2.15284152789059,53.6763730709778 + + + + + +SD92 +#labelStyle + +-2.0772340323947,53.7213862679493 + + + + +SD93 + +Small Square SD93 Boundry Box +#Line2 + + +1 + +-2.15316832017085,53.7662534543566 +-2.15349685566262,53.8561234918582 +-2.00148388288874,53.8562217336725 +-2.00148015152231,53.766351374894 +-2.15316832017085,53.7662534543566 + + + + + +SD93 +#labelStyle + +-2.0773997172501,53.8112662109136 + + + + +SD94 + +Small Square SD94 Boundry Box +#Line2 + + +1 + +-2.15349688860869,53.8561324796929 +-2.15382721312471,53.9460011606811 +-2.00148763474762,53.9460997251821 +-2.00148388326292,53.8562307215394 +-2.15349688860869,53.8561324796929 + + + + + +SD94 +#labelStyle + +-2.07756630338112,53.9011447975522 + + + + +SD95 + +Small Square SD95 Boundry Box +#Line2 + + +1 + +-2.15382724625036,53.9460101483802 +-2.1541593729664,54.0358774742615 +-2.00149140687512,54.0359763628377 +-2.00148763512381,53.9461087129136 +-2.15382724625036,53.9460101483802 + + + + + +SD95 +#labelStyle + +-2.07773379741675,53.991022029273 + + + + +SD96 + +Small Square SD96 Boundry Box +#Line2 + + +1 + +-2.15415940627295,54.0358864618252 +-2.15449334849727,54.1257524340194 +-2.00149519942112,54.1258516480696 +-2.00149140725336,54.0359853504338 +-2.15415940627295,54.0358864618252 + + + + + +SD96 +#labelStyle + +-2.07790220605258,54.0808979074972 + + + + +SD97 + +Small Square SD97 Boundry Box +#Line2 + + +1 + +-2.15449338198607,54.1257614214477 +-2.15482915316104,54.2156260413877 +-2.00149901253697,54.2157255823216 +-2.0014951998014,54.1258606355305 +-2.15449338198607,54.1257614214477 + + + + + +SD97 +#labelStyle + +-2.07807153605158,54.1707724336591 + + + + +SD98 + +Small Square SD98 Boundry Box +#Line2 + + +1 + +-2.15482918683343,54.2156350286809 +-2.15516680053724,54.3054982978124 +-2.00150284637558,54.3055981670505 +-2.00149901291932,54.2157345696475 +-2.15482918683343,54.2156350286809 + + + + + +SD98 +#labelStyle + +-2.07824179424497,54.2606456092063 + + + + +SD99 + +Small Square SD99 Boundry Box +#Line2 + + +1 + +-2.15516683439458,54.3055072849706 +-2.15550630434295,54.3953692047527 +-2.00150670109139,54.3954694037265 +-2.00150284676001,54.3056071542416 +-2.15516683439458,54.3055072849706 + + + + + +SD99 +#labelStyle + +-2.07841298753305,54.3505174355995 + + + + + +SE + +Large Square SE Boundry Box +#Line1 + + +1 + +-2.00145400160912,53.4967051895503 +-2.00149129955918,54.3954694039266 +-0.461660694230575,54.3856708575969 +-0.494359400669312,53.4872224205394 +-2.00145400160912,53.4967051895503 + + + + + +SE00 + +Small Square SE00 Boundry Box +#Line2 + + +1 + +-2.00145400160912,53.4967051895503 +-2.00145764153541,53.5865796221068 +-1.85041390562768,53.5864862183584 +-1.85072984011827,53.4966120895956 +-2.00145400160912,53.4967051895503 + + + + + +SE00 +#labelStyle + +-1.92600629413449,53.5416242339165 + + + + +SE01 + +Small Square SE01 Boundry Box +#Line2 + + +1 + +-2.00145764190041,53.5865886103809 +-2.00146130133559,53.6764616836299 +-1.85009622836913,53.6763679747716 +-1.85041387394571,53.5864952066021 +-2.00145764190041,53.5865886103809 + + + + + +SE01 +#labelStyle + +-1.92584969223073,53.6315069003949 + + + + +SE02 + +Small Square SE02 Boundry Box +#Line2 + + +1 + +-2.00146130170255,53.6764706717681 +-2.00146498078934,53.7663423870868 +-1.84977682735146,53.7662483718231 +-1.85009619651542,53.6763769628793 +-2.00146130170255,53.6764706717681 + + + + + +SE02 +#labelStyle + +-1.92569224127667,53.7213882078018 + + + + +SE03 + +Small Square SE03 Boundry Box +#Line2 + + +1 + +-2.00146498115828,53.7663513750893 +-2.00146868004083,53.8562217338685 +-1.84945568994726,53.8561274108936 +-1.84977679532474,53.7662573597948 +-2.00146498115828,53.7663513750893 + + + + + +SE03 +#labelStyle + +-1.9255339350609,53.8112681575188 + + + + +SE04 + +Small Square SE04 Boundry Box +#Line2 + + +1 + +-2.00146868041175,53.8562307217354 +-2.00147239923566,53.9460997253788 +-1.84913280340277,53.9460050933774 +-1.84945565774627,53.8561363987297 +-2.00146868041175,53.8562307217354 + + + + + +SE04 +#labelStyle + +-1.92537476730991,53.9011467509411 + + + + +SE05 + +Small Square SE05 Boundry Box +#Line2 + + +1 + +-2.00147239960858,53.9461087131102 +-2.00147613852088,54.035976363035 +-1.84880815483631,54.0358814206816 +-1.84913277102622,53.9460140810779 +-2.00147239960858,53.9461087131102 + + + + + +SE05 +#labelStyle + +-1.92521473168735,53.9910239894768 + + + + +SE06 + +Small Square SE06 Boundry Box +#Line2 + + +1 + +-2.00147613889582,54.0359853506311 +-2.00147989804505,54.1258516482676 +-1.84848173123669,54.1257563942264 +-1.84880812228291,54.0358904082466 +-2.00147613889582,54.0359853506311 + + + + + +SE06 +#labelStyle + +-1.92505382179325,54.0808998745472 + + + + +SE07 + +Small Square SE07 Boundry Box +#Line2 + + +1 + +-2.00147989842202,54.1258606357286 +-2.0014836779582,54.2157255825203 +-1.84815351946159,54.2156300154454 +-1.84848169850514,54.1257653816561 +-2.00147989842202,54.1258606357286 + + + + + +SE07 +#labelStyle + +-1.9248920311632,54.170774407587 + + + + +SE08 + +Small Square SE08 Boundry Box +#Line2 + + +1 + +-2.00148367833721,54.2157345698462 +-2.00148747841188,54.3055981672499 +-1.84782350623588,54.305502285785 +-1.84815348655055,54.2156390027399 +-2.00148367833721,54.2157345698462 + + + + + +SE08 +#labelStyle + +-1.92472935326758,54.2606475900439 + + + + +SE09 + +Small Square SE09 Boundry Box +#Line2 + + +1 + +-2.00148747879296,54.305607154441 +-2.00149129955918,54.3954694039266 +-1.84749167815002,54.3953732067049 +-1.84782347314403,54.3055112729445 +-2.00148747879296,54.305607154441 + + + + + +SE09 +#labelStyle + +-1.92456578151068,54.3505194233788 + + + + +SE10 + +Small Square SE10 Boundry Box +#Line2 + + +1 + +-1.85071476625117,53.4966120707805 +-1.85039879980035,53.5864861994819 +-1.69935677772064,53.5862021124054 +-1.69999230619982,53.4963289084813 +-1.85071476625117,53.4966120707805 + + + + + +SE10 +#labelStyle + +-1.77510809350718,53.5414357669711 + + + + +SE11 + +Small Square SE11 Boundry Box +#Line2 + + +1 + +-1.85039876811518,53.5864951877256 +-1.8500810904053,53.6763679558334 +-1.69871774377994,53.6760829399688 +-1.69935671398974,53.5862111005564 +-1.85039876811518,53.5864951877256 + + + + + +SE11 +#labelStyle + +-1.77463099393193,53.631317817707 + + + + +SE12 + +Small Square SE12 Boundry Box +#Line2 + + +1 + +-1.85008105854836,53.6763769439411 +-1.84976165707677,53.7662483528229 +-1.69807524261796,53.7659624042218 +-1.69871767970359,53.6760919279833 +-1.85008105854836,53.6763769439411 + + + + + +SE12 +#labelStyle + +-1.77415130810346,53.7211985067589 + + + + +SE13 + +Small Square SE13 Boundry Box +#Line2 + + +1 + +-1.84976162504681,53.7662573407947 +-1.84944048718608,53.8561273918312 +-1.69742924883596,53.8558405065155 +-1.69807517819362,53.7659713921001 +-1.84976162504681,53.7662573407947 + + + + + +SE13 +#labelStyle + +-1.77366901710135,53.8110778354887 + + + + +SE14 + +Small Square SE14 Boundry Box +#Line2 + + +1 + +-1.84944045498183,53.8561363796673 +-1.84911756797818,53.9460050742525 +-1.69677973678112,53.9457172482136 +-1.69742918406108,53.8558494942577 +-1.84944045498183,53.8561363796673 + + + + + +SE14 +#labelStyle + +-1.77318410181612,53.9009558052713 + + + + +SE15 + +Small Square SE15 Boundry Box +#Line2 + + +1 + +-1.84911753559836,53.946014061953 +-1.84879288657008,54.0358814014939 +-1.6961266805433,54.0355926306925 +-1.69677967165312,53.9457262358198 +-1.84911753559836,53.946014061953 + + + + + +SE15 +#labelStyle + +-1.77269654294686,53.9908324174947 + + + + +SE16 + +Small Square SE16 Boundry Box +#Line2 + + +1 + +-1.84879285401339,54.0358903890589 +-1.84846642994928,54.1257563749757 +-1.6954700539519,54.1254666553417 +-1.69612661505958,54.0356016181628 +-1.84879285401339,54.0358903890589 + + + + + +SE16 +#labelStyle + +-1.77220632099883,54.0807076735597 + + + + +SE17 + +Small Square SE17 Boundry Box +#Line2 + + +1 + +-1.84846639721442,54.1257653624054 +-1.84813818497213,54.2156299961314 +-1.69480983057253,54.2153393235633 +-1.69546998810983,54.1254756426763 +-1.84846639721442,54.1257653624054 + + + + + +SE17 +#labelStyle + +-1.77171341628107,54.1705815748804 + + + + +SE18 + +Small Square SE18 Boundry Box +#Line2 + + +1 + +-1.84813815205776,54.2156389834259 +-1.84780813836216,54.3055022664074 +-1.69414598370376,54.3052106367723 +-1.69480976436945,54.2153483107623 +-1.84813815205776,54.2156389834259 + + + + + +SE18 +#labelStyle + +-1.77121780890389,54.2604541228837 + + + + +SE19 + +Small Square SE19 Boundry Box +#Line2 + + +1 + +-1.84780810526696,54.305511253567 +-1.84747627670847,54.3953731872634 +-1.69347848637371,54.3950805963965 +-1.69414591713698,54.3052196238359 +-1.84780810526696,54.305511253567 + + + + + +SE19 +#labelStyle + +-1.77071947877645,54.3503253190093 + + + + +SE20 + +Small Square SE20 Boundry Box +#Line2 + + +1 + +-1.6999772325888,53.4963288706584 +-1.69934167215125,53.586202074459 +-1.54830309452375,53.585727311347 +-1.54925819208347,53.4958556532589 +-1.6999772325888,53.4963288706584 + + + + + +SE20 +#labelStyle + +-1.62421246304048,53.5410569114722 + + + + +SE21 + +Small Square SE21 Boundry Box +#Line2 + + +1 + +-1.69934160841716,53.5862110626099 +-1.69870260607594,53.6760829018982 +-1.54734272905946,53.6756065863689 +-1.54830299874644,53.585736299343 +-1.69934160841716,53.5862110626099 + + + + + +SE21 +#labelStyle + +-1.62341488453832,53.6309377240639 + + + + +SE22 + +Small Square SE22 Boundry Box +#Line2 + + +1 + +-1.69870254199637,53.6760918899128 +-1.698060072605,53.7659623660267 +-1.54637715316279,53.7654844914797 +-1.547342632763,53.6756155742279 +-1.69870254199637,53.6760918899128 + + + + + +SE22 +#labelStyle + +-1.62261298276684,53.7208171697166 + + + + +SE23 + +Small Square SE23 Boundry Box +#Line2 + + +1 + +-1.69806000817742,53.765971353905 +-1.69741404633843,53.8558404681953 +-1.54540632866683,53.85536102798 +-1.54637705634338,53.7654934792017 +-1.69806000817742,53.765971353905 + + + + + +SE23 +#labelStyle + +-1.62180672609896,53.8106952497521 + + + + +SE24 + +Small Square SE24 Boundry Box +#Line2 + + +1 + +-1.69741398156029,53.8558494559374 +-1.69676450162211,53.9457172097676 +-1.54443021702283,53.9452361971828 +-1.54540623132064,53.8553700155652 +-1.69741398156029,53.8558494559374 + + + + + +SE24 +#labelStyle + +-1.62099608259157,53.9005719655051 + + + + +SE25 + +Small Square SE25 Boundry Box +#Line2 + + +1 + +-1.69676443649084,53.9457261973738 +-1.69611141254462,54.0355925921203 +-1.54344877929543,54.0351100004136 +-1.54443011914598,53.9452451846314 +-1.69676443649084,53.9457261973738 + + + + + +SE25 +#labelStyle + +-1.62018101998158,53.9904473183227 + + + + +SE26 + +Small Square SE26 Boundry Box +#Line2 + + +1 + +-1.69611134705761,54.0356015795906 +-1.69545475293402,54.1254666166428 +-1.54246197615786,54.1249824390099 +-1.54344868088402,54.0351189877256 +-1.69611134705761,54.0356015795906 + + + + + +SE26 +#labelStyle + +-1.61936150568192,54.0803213095648 + + + + +SE27 + +Small Square SE27 Boundry Box +#Line2 + + +1 + +-1.69545468708864,54.1254756039774 +-1.69479449635461,54.2153392847371 +-1.54146976788699,54.2148535143218 +-1.54246187720793,54.1249914261856 +-1.69545468708864,54.1254756039774 + + + + + +SE27 +#labelStyle + +-1.61853750677752,54.1701939406038 + + + + +SE28 + +Small Square SE28 Boundry Box +#Line2 + + +1 + +-1.6947944301482,54.2153482719361 +-1.69413061610359,54.3052105978183 +-1.54047211435842,54.3047232277113 +-1.54146966839455,54.2148625013612 +-1.6947944301482,54.2153482719361 + + + + + +SE28 +#labelStyle + +-1.61770899002117,54.2600652128246 + + + + +SE29 + +Small Square SE29 Boundry Box +#Line2 + + +1 + +-1.69413054953347,54.3052195848819 +-1.69346308520775,54.395080557314 +-1.53946897504136,54.3945915805531 +-1.54047201431942,54.3047322146146 +-1.69413054953347,54.3052195848819 + + + + + +SE29 +#labelStyle + +-1.61687592182935,54.3499351276248 + + + + +SE30 + +Small Square SE30 Boundry Box +#Line2 + + +1 + +-1.54924311890034,53.4958555964291 +-1.54828798938538,53.5857272543315 +-1.3972545865863,53.5850618273693 +-1.39852921580258,53.4951923360331 +-1.54924311890034,53.4958555964291 + + + + + +SE30 +#labelStyle + +-1.47332112714957,53.5404876771276 + + + + +SE31 + +Small Square SE31 Boundry Box +#Line2 + + +1 + +-1.54828789360487,53.5857362423275 +-1.54732759178962,53.675606529167 +-1.39597292739873,53.6749389262402 +-1.39725445876633,53.5850708151482 +-1.54828789360487,53.5857362423275 + + + + + +SE31 +#labelStyle + +-1.47220310104605,53.6303666292388 + + + + +SE32 + +Small Square SE32 Boundry Box +#Line2 + + +1 + +-1.54732749548994,53.675615517026 +-1.54636198358717,53.7654844340905 +-1.39468431494493,53.7648146459475 +-1.39597279888596,53.6749479138811 +-1.54732749548994,53.675615517026 + + + + + +SE32 +#labelStyle + +-1.47107901496937,53.7202442065137 + + + + +SE33 + +Small Square SE33 Boundry Box +#Line2 + + +1 + +-1.54636188676452,53.7654934218126 +-1.54539112660985,53.8553609704028 +-1.39338869829448,53.8546889877214 +-1.39468418573429,53.7648236334505 +-1.54636188676452,53.7654934218126 + + + + + +SE33 +#labelStyle + +-1.46994882458967,53.8101204102144 + + + + +SE34 + +Small Square SE34 Boundry Box +#Line2 + + +1 + +-1.5453910292604,53.8553699579881 +-1.54441498230762,53.9452361394168 +-1.39208602600749,53.944561952804 +-1.39338856838086,53.8546979750867 +-1.5453910292604,53.8553699579881 + + + + + +SE34 +#labelStyle + +-1.46881248513412,53.8999952416147 + + + + +SE35 + +Small Square SE35 Boundry Box +#Line2 + + +1 + +-1.5444148844275,53.9452451268654 +-1.54343351174382,54.0351099424579 +-1.39077624612818,54.0344335424488 +-1.39208589538571,53.9445709400317 +-1.5444148844275,53.9452451268654 + + + + + +SE35 +#labelStyle + +-1.46766995138145,53.9898687020009 + + + + +SE36 + +Small Square SE36 Boundry Box +#Line2 + + +1 + +-1.54343341332912,54.03511892977 +-1.54244667559036,54.1249823808638 +-1.38945930617852,54.124303757921 +-1.39077611479304,54.034442529539 +-1.54343341332912,54.03511892977 + + + + + +SE36 +#labelStyle + +-1.4665211776563,54.0797407926708 + + + + +SE37 + +Small Square SE37 Boundry Box +#Line2 + + +1 + +-1.54244657663712,54.1249913680394 +-1.54145443412279,54.2148534559844 +-1.38813515315161,54.2141726004974 +-1.38945917412472,54.1243127448739 +-1.54244657663712,54.1249913680394 + + + + + +SE37 +#labelStyle + +-1.46536611782361,54.1696115149345 + + + + +SE38 + +Small Square SE38 Boundry Box +#Line2 + + +1 + +-1.54145433462702,54.2148624430237 +-1.54045674721535,54.3047231691818 +-1.38680373350511,54.3040400714663 +-1.38813502037383,54.2141815873131 +-1.54145433462702,54.2148624430237 + + + + + +SE38 +#labelStyle + +-1.46420472528279,54.2594808701139 + + + + +SE39 + +Small Square SE39 Boundry Box +#Line2 + + +1 + +-1.54045664717301,54.3047321560851 +-1.53945357433591,54.3945915218307 +-1.38546499315449,54.3939061721274 +-1.38680359999798,54.3040490581448 +-1.54045664717301,54.3047321560851 + + + + + +SE39 +#labelStyle + +-1.46303695296195,54.3493488595429 + + + + +SE40 + +Small Square SE40 Boundry Box +#Line2 + + +1 + +-1.39851414321913,53.4951922601979 +-1.39723948205198,53.5850617512863 +-1.24621298408495,53.5842056775504 +-1.24780709502246,53.4943389737684 +-1.39851414321913,53.4951922601979 + + + + + +SE40 +#labelStyle + +-1.32243580994118,53.5397280785211 + + + + +SE41 + +Small Square SE41 Boundry Box +#Line2 + + +1 + +-1.3972393542288,53.5850707390652 +-1.39595779073735,53.6749388499084 +-1.24461008161157,53.6740799767757 +-1.24621282422733,53.58421466505 +-1.3972393542288,53.5850707390652 + + + + + +SE41 +#labelStyle + +-1.32099738013905,53.6296045479134 + + + + +SE42 + +Small Square SE42 Boundry Box +#Line2 + + +1 + +-1.39595766222136,53.6749478375493 +-1.39466914598222,53.7648145693658 +-1.24299848354143,53.7639528849343 +-1.24460992088756,53.6740889641361 +-1.39595766222136,53.6749478375493 + + + + + +SE42 +#labelStyle + +-1.31955115409753,53.7194796319311 + + + + +SE43 + +Small Square SE43 Boundry Box +#Line2 + + +1 + +-1.39466901676835,53.7648235568689 +-1.39337349685492,53.8546889108889 +-1.24137812618689,53.853824403166 +-1.24299832194468,53.7639618721556 +-1.39466901676835,53.7648235568689 + + + + + +SE43 +#labelStyle + +-1.31809707478938,53.8093533317562 + + + + +SE44 + +Small Square SE44 Boundry Box +#Line2 + + +1 + +-1.39337336693804,53.8546978982542 +-1.39207079191424,53.9445618757195 +-1.2397489452232,53.9436945326214 +-1.241377963711,53.8538333902484 +-1.39337336693804,53.8546978982542 + + + + + +SE44 +#labelStyle + +-1.31663508461759,53.8992256485818 + + + + +SE45 + +Small Square SE45 Boundry Box +#Line2 + + +1 + +-1.3920706612892,53.9445708629472 +-1.39076097920313,54.0344334651112 +-1.23811087568066,54.0335632744618 +-1.23974878186172,53.943703519565 +-1.3920706612892,53.9445708629472 + + + + + +SE45 +#labelStyle + +-1.31516512540829,53.9890965836125 + + + + +SE46 + +Small Square SE46 Boundry Box +#Line2 + + +1 + +-1.39076084786469,54.0344424522014 +-1.38944400624221,54.1243036803293 +-1.23646385193647,54.1234306298592 +-1.23811071142705,54.0335722612666 +-1.39076084786469,54.0344424522014 + + + + + +SE46 +#labelStyle + +-1.31368713840352,54.0789661380637 + + + + +SE47 + +Small Square SE47 Boundry Box +#Line2 + + +1 + +-1.38944387418511,54.1243126672821 +-1.38811982002328,54.2141725226504 +-1.23480780770662,54.213296599996 +-1.23646368678414,54.1234396165254 +-1.38944387418511,54.1243126672821 + + + + + +SE47 +#labelStyle + +-1.31220106425397,54.1688343131622 + + + + +SE48 + +Small Square SE48 Boundry Box +#Line2 + + +1 + +-1.38811968724218,54.214181509466 +-1.38678836700265,54.3040399933629 +-1.23314267603758,54.3031611860656 +-1.23480764164891,54.2133055865238 +-1.38811968724218,54.214181509466 + + + + + +SE48 +#labelStyle + +-1.31070684301155,54.2587011101458 + + + + +SE49 + +Small Square SE49 Boundry Box +#Line2 + + +1 + +-1.38678823349218,54.3040489800414 +-1.38544959309443,54.3939060937665 +-1.23146838929787,54.3930243892716 +-1.23314250906775,54.303170172455 +-1.38678823349218,54.3040489800414 + + + + + +SE49 +#labelStyle + +-1.30920441412188,54.3485665302634 + + + + +SE50 + +Small Square SE50 Boundry Box +#Line2 + + +1 + +-1.24779202321044,53.4943388789296 +-1.24619788032767,53.5842055824019 +-1.09518001669928,53.5831588838591 +-1.09709354691741,53.4932955882868 +-1.24779202321044,53.4943388789296 + + + + + +SE50 +#labelStyle + +-1.17155823508984,53.5387781351118 + + + + +SE51 + +Small Square SE51 Boundry Box +#Line2 + + +1 + +-1.24619772046685,53.5842145699014 +-1.24459494573291,53.674079881316 +-1.09325593400856,53.6730297600919 +-1.0951798248103,53.583167871017 +-1.24619772046685,53.5842145699014 + + + + + +SE51 +#labelStyle + +-1.16979945806369,53.6286514996774 + + + + +SE52 + +Small Square SE52 Boundry Box +#Line2 + + +1 + +-1.24459478500568,53.6740888686764 +-1.24298331536718,53.7639527891622 +-1.09132141401988,53.7628992307058 +-1.09325574107964,53.6730387471092 +-1.24459478500568,53.6740888686764 + + + + + +SE52 +#labelStyle + +-1.16803114909478,53.7185234656903 + + + + +SE53 + +Small Square SE53 Boundry Box +#Line2 + + +1 + +-1.2429831537672,53.7639617763834 +-1.24136292554157,53.8538243070801 +-1.08937638029616,53.8527672967301 +-1.09132122004342,53.7629082175826 +-1.2429831537672,53.7639617763834 + + + + + +SE53 +#labelStyle + +-1.1662532384655,53.8083940342324 + + + + +SE54 + +Small Square SE54 Boundry Box +#Line2 + + +1 + +-1.24136276306243,53.8538332941624 +-1.23973371193005,53.9436944362204 +-1.08742075563581,53.9426339592034 +-1.08937618526448,53.8527762834665 +-1.24136276306243,53.8538332941624 + + + + + +SE54 +#labelStyle + +-1.16446565576174,53.8982632063957 + + + + +SE55 + +Small Square SE55 Boundry Box +#Line2 + + +1 + +-1.2397335485653,53.9437034231639 +-1.23809560956161,54.0335631777443 +-1.08545446206316,54.0324992191744 +-1.08742055954115,53.9426429457995 +-1.2397335485653,53.9437034231639 + + + + + +SE55 +#labelStyle + +-1.16266832986421,53.9881309832826 + + + + +SE56 + +Small Square SE56 Boundry Box +#Line2 + + +1 + +-1.23809544530471,54.0335721645491 +-1.23644855281213,54.1234305328237 +-1.08347742081887,54.1223630777009 +-1.08545426489768,54.0325082056303 +-1.23809544530471,54.0335721645491 + + + + + +SE56 +#labelStyle + +-1.16086118893964,54.0779973660056 + + + + +SE57 + +Small Square SE57 Boundry Box +#Line2 + + +1 + +-1.23644838765649,54.12343951949 +-1.23479247539629,54.2132965026414 +-1.0814895523501,54.2122255358505 +-1.08347722257467,54.1223720640167 +-1.23644838765649,54.12343951949 + + + + + +SE57 +#labelStyle + +-1.15904416043191,54.1678623556873 + + + + +SE58 + +Small Square SE58 Boundry Box +#Line2 + + +1 + +-1.23479230933524,54.2133054891691 +-1.2331273103592,54.3031610883903 +-1.07949077630054,54.3020865947001 +-1.08148935301917,54.2122345220263 +-1.23479230933524,54.2133054891691 + + + + + +SE58 +#labelStyle + +-1.15721717105292,54.2577259534604 + + + + +SE59 + +Small Square SE59 Boundry Box +#Line2 + + +1 + +-1.23312714338602,54.3031700747797 +-1.23145299006804,54.3930242912743 +-1.07748101150033,54.391946255336 +-1.07949057587481,54.302095580736 +-1.23312714338602,54.3031700747797 + + + + + +SE59 +#labelStyle + +-1.15538014677346,54.3475881604675 + + + + +SE60 + +Small Square SE60 Boundry Box +#Line2 + + +1 + +-1.0970784760485,53.4932954744469 +-1.09516491389199,53.5831587696475 +-0.944157413487387,53.5819214731523 +-0.946390288047798,53.4920622062663 +-1.0970784760485,53.4932954744469 + + + + + +SE60 +#labelStyle + +-1.02069012571422,53.5376378712315 + + + + +SE61 + +Small Square SE61 Boundry Box +#Line2 + + +1 + +-1.0951647219998,53.5831677568053 +-1.09324079908682,53.6730296455068 +-0.941912226271072,53.6717883032265 +-0.944157189574566,53.5819304599065 +-1.0951647219998,53.5831677568053 + + + + + +SE61 +#labelStyle + +-1.01861107050358,53.6275075090264 + + + + +SE62 + +Small Square SE62 Boundry Box +#Line2 + + +1 + +-1.09324060615468,53.673038632524 +-1.09130624680956,53.7628991157456 +-0.93965486081082,53.7616537104822 +-0.941912001144855,53.6717972898384 +-1.09324060615468,53.673038632524 + + + + + +SE62 +#labelStyle + +-1.01652074833486,53.717375732452 + + + + +SE63 + +Small Square SE63 Boundry Box +#Line2 + + +1 + +-1.09130605282987,53.7629081026224 +-1.08936118062186,53.8527671813932 +-0.937385227929494,53.8515176958179 +-0.939654634462336,53.7616626969518 +-1.09130605282987,53.7629081026224 + + + + + +SE63 +#labelStyle + +-1.01441907680861,53.8072425424702 + + + + +SE64 + +Small Square SE64 Boundry Box +#Line2 + + +1 + +-1.08936098558692,53.8527761681296 +-1.08740552332081,53.9426338434883 +-0.935103237558117,53.9413802601402 +-0.937385000349778,53.8515266821453 +-1.08936098558692,53.8527761681296 + + + + + +SE64 +#labelStyle + +-1.01230597270228,53.8971079400517 + + + + +SE65 + +Small Square SE65 Boundry Box +#Line2 + + +1 + +-1.08740532722288,53.9426428300844 +-1.08543919692948,54.0324991030794 +-0.932808798724786,54.0312414043642 +-0.935103008738118,53.9413892463256 +-1.08740532722288,53.9426428300844 + + + + + +SE65 +#labelStyle + +-1.01018135195995,53.9869719261764 + + + + +SE66 + +Small Square SE66 Boundry Box +#Line2 + + +1 + +-1.08543899976071,54.0325080895353 +-1.0834621226872,54.1223629612244 +-0.930501819543397,54.1211011294134 +-0.932808568655361,54.0312503904077 +-1.08543899976071,54.0325080895353 + + + + + +SE66 +#labelStyle + +-1.00804512968198,54.076834501833 + + + + +SE67 + +Small Square SE67 Boundry Box +#Line2 + + +1 + +-1.08346192443969,54.1223719475402 +-1.0814742210398,54.2122254189908 +-0.928182207202218,54.2109594362192 +-0.930501588215312,54.121110115315 +-1.08346192443969,54.1223719475402 + + + + + +SE67 +#labelStyle + +-1.00589722011446,54.1666956680193 + + + + +SE68 + +Small Square SE68 Boundry Box +#Line2 + + +1 + +-1.08147402170554,54.2122344051666 +-1.07947541162964,54.3020864774555 +-0.925849867952276,54.3008163257211 +-0.928181974606145,54.210968421979 +-1.08147402170554,54.2122344051666 + + + + + +SE68 +#labelStyle + +-1.0037375366385,54.2565554257417 + + + + +SE69 + +Small Square SE69 Boundry Box +#Line2 + + +1 + +-1.07947521120056,54.3020954634915 +-1.0774656132855,54.391946137705 +-0.923504707095578,54.3906717988667 +-0.925849634078793,54.3008253113392 +-1.07947521120056,54.3020954634915 + + + + + +SE69 +#labelStyle + +-1.00156599175938,54.3464137760154 + + + + +SE70 + +Small Square SE70 Boundry Box +#Line2 + + +1 + +-0.946375218293634,53.4920620734284 +-0.944142311802952,53.5819213398805 +-0.793146902761551,53.5804934771733 +-0.795699034237322,53.4906388592387 +-0.946375218293634,53.4920620734284 + + + + + +SE70 +#labelStyle + +-0.869833204253463,53.5363073160834 + + + + +SE71 + +Small Square SE71 Boundry Box +#Line2 + + +1 + +-0.94414208788693,53.5819303266346 +-0.94189709248039,53.6717881695189 +-0.790580699325457,53.6703556381364 +-0.793146646833682,53.5805024634616 +-0.94414208788693,53.5819303266346 + + + + + +SE71 +#labelStyle + +-0.867433952454406,53.6261726053596 + + + + +SE72 + +Small Square SE72 Boundry Box +#Line2 + + +1 + +-0.941896867350955,53.6717971561307 +-0.93963969473984,53.761653576337 +-0.788000577580403,53.7602163564359 +-0.790580442010818,53.6703646242804 +-0.941896867350955,53.6717971561307 + + + + + +SE72 +#labelStyle + +-0.865021699495058,53.7160364618136 + + + + +SE73 + +Small Square SE73 Boundry Box +#Line2 + + +1 + +-0.939639468388118,53.7616625628065 +-0.937370029402886,53.8515175612331 +-0.785406435620125,53.8500756328194 +-0.788000318868854,53.7602253424356 +-0.939639468388118,53.7616625628065 + + + + + +SE73 +#labelStyle + +-0.862596350304202,53.805898886267 + + + + +SE74 + +Small Square SE74 Boundry Box +#Line2 + + +1 + +-0.937369801819916,53.8515265475605 +-0.935088006399271,53.9413801251141 +-0.782798170519383,53.9399334680412 +-0.785406175501425,53.8500846186749 +-0.937369801819916,53.8515265475605 + + + + + +SE74 +#labelStyle + +-0.860157808861058,53.895759879549 + + + + +SE75 + +Small Square SE75 Boundry Box +#Line2 + + +1 + +-0.935087777576001,53.9413891112994 +-0.932793534755791,54.0312412688949 +-0.780175678321279,54.0297898628627 +-0.782797908983188,53.9399424537527 +-0.935087777576001,53.9413891112994 + + + + + +SE75 +#labelStyle + +-0.857705978183484,53.9856194424966 + + + + +SE76 + +Small Square SE76 Boundry Box +#Line2 + + +1 + +-0.932793304683077,54.0312502549383 +-0.930486522585029,54.1211009934989 +-0.77753885402439,54.1196448180518 +-0.780175415357141,54.0297988484302 +-0.932793304683077,54.0312502549383 + + + + + +SE76 +#labelStyle + +-0.855240760315995,54.0754775759544 + + + + +SE77 + +Small Square SE77 Boundry Box +#Line2 + + +1 + +-0.930486291253637,54.1211099794004 +-0.928166877073928,54.2109592998575 +-0.774887591569705,54.2094983343831 +-0.777538589621757,54.1196538034754 +-0.930486291253637,54.1211099794004 + + + + + +SE77 +#labelStyle + +-0.852762056317605,54.1653342807742 + + + + +SE78 + +Small Square SE78 Boundry Box +#Line2 + + +1 + +-0.92816664447453,54.2109682856173 +-0.925834504472177,54.3008161889104 +-0.772221783827365,54.2993504126377 +-0.774887325717917,54.2095073196628 +-0.92816664447453,54.2109682856173 + + + + + +SE78 +#labelStyle + +-0.850269766249489,54.2551895578153 + + + + +SE79 + +Small Square SE79 Boundry Box +#Line2 + + +1 + +-0.92583427059535,54.3008251745285 +-0.923489310080429,54.3906716616051 +-0.769541322583206,54.3892010536031 +-0.772221516515656,54.2993593977737 +-0.92583427059535,54.3008251745285 + + + + + +SE79 +#labelStyle + +-0.847763789162452,54.3450434079442 + + + + +SE80 + +Small Square SE80 Boundry Box +#Line2 + + +1 + +-0.795683965769435,53.490638707406 +-0.793131802372761,53.5804933248447 +-0.642150211964108,53.5788749325487 +-0.645021500450321,53.4890255835864 +-0.795683965769435,53.490638707406 + + + + + +SE80 +#labelStyle + +-0.718989192343772,53.5347865037391 + + + + +SE81 + +Small Square SE81 Boundry Box +#Line2 + + +1 + +-0.793131546441691,53.5805023111329 +-0.790565566839881,53.6703554853097 +-0.639263093217329,53.6687318016945 +-0.642149924031232,53.5788839183089 +-0.793131546441691,53.5805023111329 + + + + + +SE81 +#labelStyle + +-0.716269838098997,53.6246468229777 + + + + +SE82 + +Small Square SE82 Boundry Box +#Line2 + + +1 + +-0.790565309522024,53.6703644714536 +-0.787985412824083,53.7602162031091 +-0.636360317103104,53.7585872056885 +-0.639262803724408,53.6687407873082 +-0.790565309522024,53.6703644714536 + + + + + +SE82 +#labelStyle + +-0.713535749429707,53.7145056883067 + + + + +SE83 + +Small Square SE83 Boundry Box +#Line2 + + +1 + +-0.787985154109298,53.7602251891087 +-0.78539123841783,53.8500754789902 +-0.633441768998543,53.8484411451072 +-0.636360026038735,53.7585961911556 +-0.787985154109298,53.7602251891087 + + + + + +SE83 +#labelStyle + +-0.710786818604545,53.8043631003875 + + + + +SE84 + +Small Square SE84 Boundry Box +#Line2 + + +1 + +-0.785390978295876,53.8500844648457 +-0.782782940694597,53.9399333137076 +-0.630507333134817,53.9382936205326 +-0.633441476351204,53.8484501304279 +-0.785390978295876,53.8500844648457 + + + + + +SE84 +#labelStyle + +-0.708022936816319,53.8942190598877 + + + + +SE85 + +Small Square SE85 Boundry Box +#Line2 + + +1 + +-0.782782679155132,53.939942299419 +-0.78016041569619,54.0297897080225 +-0.627556892582903,54.0281446325516 +-0.630507038892875,53.9383026057069 +-0.782782679155132,53.939942299419 + + + + + +SE85 +#labelStyle + +-0.705243994168631,53.9840735674812 + + + + +SE86 + +Small Square SE86 Boundry Box +#Line2 + + +1 + +-0.780160152728763,54.0297986935899 +-0.777523558419872,54.1196446627028 +-0.624590329239122,54.1179941817561 +-0.627556596734606,54.0281536175796 +-0.780160152728763,54.0297986935899 + + + + + +SE86 +#labelStyle + +-0.702449879662312,54.0739266238474 + + + + +SE87 + +Small Square SE87 Boundry Box +#Line2 + + +1 + +-0.777523294013932,54.1196536481263 +-0.774872262805311,54.2094981785231 +-0.621607523810442,54.2078422687429 +-0.6245900317726,54.1180031666379 +-0.777523294013932,54.1196536481263 + + + + + +SE87 +#labelStyle + +-0.699640481181643,54.1637782296717 + + + + +SE88 + +Small Square SE88 Boundry Box +#Line2 + + +1 + +-0.774871996950198,54.2095071638027 +-0.772206421721309,54.2993502562645 +-0.618608355799581,54.2976888941137 +-0.621607224713707,54.2078512534785 +-0.774871996950198,54.2095071638027 + + + + + +SE88 +#labelStyle + +-0.696815685480388,54.2536283856454 + + + + +SE89 + +Small Square SE89 Boundry Box +#Line2 + + +1 + +-0.772206154406255,54.2993592414004 +-0.76952592695235,54.3892008967144 +-0.615592703489864,54.3875340584746 +-0.618608055060521,54.2976978787032 +-0.772206154406255,54.2993592414004 + + + + + +SE89 +#labelStyle + +-0.69397537816759,54.3434770924651 + + + + +SE90 + +Small Square SE90 Boundry Box +#Line2 + + +1 + +-0.645006433440162,53.4890254127628 +-0.64213511304366,53.5788747611672 +-0.491169067543437,53.577065880785 +-0.494359400669312,53.4872224205394 +-0.645006433440162,53.4890254127628 + + + + + +SE90 +#labelStyle + +-0.568159810695061,53.5330754731356 + + + + +SE91 + +Small Square SE91 Boundry Box +#Line2 + + +1 + +-0.642134825107584,53.5788837469273 +-0.639247962210815,53.6687316297527 +-0.487961146986036,53.6669168356866 +-0.491168747616847,53.577074865955 +-0.642134825107584,53.5788837469273 + + + + + +SE91 +#labelStyle + +-0.565120460682422,53.6229302010792 + + + + +SE92 + +Small Square SE92 Boundry Box +#Line2 + + +1 + +-0.639247672714677,53.6687406153663 +-0.636345153836675,53.758587033184 +-0.484735831134649,53.7567663003075 +-0.48796082532624,53.6669258207076 +-0.639247672714677,53.6687406153663 + + + + + +SE92 +#labelStyle + +-0.562064644043762,53.7127834513938 + + + + +SE93 + +Small Square SE93 Boundry Box +#Line2 + + +1 + +-0.63634486276907,53.7585960186511 +-0.633426573297074,53.8484409720376 +-0.4814929926638,53.8466142750334 +-0.484735507728978,53.7567752851795 +-0.63634486276907,53.7585960186511 + + + + + +SE93 +#labelStyle + +-0.558992240400756,53.8026352245608 + + + + +SE94 + +Small Square SE94 Boundry Box +#Line2 + + +1 + +-0.633426280646483,53.8484499573583 +-0.630492104821903,53.9382934468955 +-0.478232502975328,53.9364607602534 +-0.481492667499458,53.8466232597564 +-0.633426280646483,53.8484499573583 + + + + + +SE94 +#labelStyle + +-0.555903128173169,53.892485521066 + + + + +SE95 + +Small Square SE95 Boundry Box +#Line2 + + +1 + +-0.630491810576691,53.9383024320698 +-0.627541631480842,54.0281444583445 +-0.474954232182559,54.0263057563597 +-0.478232176039391,53.9364697448275 +-0.630491810576691,53.9383024320698 + + + + + +SE95 +#labelStyle + +-0.552797184563916,53.9823343413996 + + + + +SE96 + +Small Square SE96 Boundry Box +#Line2 + + +1 + +-0.627541335629257,54.0281534433725 +-0.624575035168901,54.1179940069766 +-0.471658049094237,54.1161492637477 +-0.474953903461972,54.0263147407849 +-0.627541335629257,54.0281534433725 + + + + + +SE96 +#labelStyle + +-0.549674285543914,54.0721816860557 + + + + +SE97 + +Small Square SE97 Boundry Box +#Line2 + + +1 + +-0.624574737699073,54.1180029918583 +-0.621592196591727,54.2078420933886 +-0.468343821198225,54.2059912828154 +-0.471657718575817,54.116158248024 +-0.624574737699073,54.1180029918583 + + + + + +SE97 +#labelStyle + +-0.546534305836695,54.1620275555324 + + + + +SE98 + +Small Square SE98 Boundry Box +#Line2 + + +1 + +-0.621591897491668,54.2078510781242 +-0.618592995250701,54.297688718182 +-0.465011414644944,54.295831813964 +-0.468343488868654,54.2060002669429 +-0.621591897491668,54.2078510781242 + + + + + +SE98 +#labelStyle + +-0.543377118902797,54.2518719503318 + + + + +SE99 + +Small Square SE99 Boundry Box +#Line2 + + +1 + +-0.618592694508299,54.2976977027714 +-0.615577309427799,54.387533881963 +-0.461660694230575,54.3856708575969 +-0.465011080490769,54.2958407979427 +-0.618592694508299,54.2976977027714 + + + + + +SE99 +#labelStyle + +-0.540202596923908,54.3417148709596 + + + + + +SH + +Large Square SH Boundry Box +#Line1 + + +1 + +-4.95199780080601,52.5609864359306 +-5.01395233749754,53.45867335609 +-3.50857674485821,53.4871746086564 +-3.47752225799181,52.588578385943 +-4.95199780080601,52.5609864359306 + + + + + +SH00 + +Small Square SH00 Boundry Box +#Line2 + + +1 + +-4.95199780080601,52.5609864359306 +-4.95804551245624,52.6507554465199 +-4.81042770656946,52.6543511765725 +-4.80468078059881,52.5645705795397 +-4.95199780080601,52.5609864359306 + + + + + +SH00 +#labelStyle + +-4.8812808706154,52.6076937336585 + + + + +SH01 + +Small Square SH01 Boundry Box +#Line2 + + +1 + +-4.95804611888878,52.6507644242258 +-4.96412592065812,52.7405315750396 +-4.81620570904941,52.744138940032 +-4.81042828284111,52.6543601554395 +-4.95804611888878,52.6507644242258 + + + + + +SH01 +#labelStyle + +-4.88719441484905,52.697476672374 + + + + +SH02 + +Small Square SH02 Boundry Box +#Line2 + + +1 + +-4.96412653031133,52.7405405525593 +-4.97023864985016,52.8303058412317 +-4.822014431267,52.8339248888536 +-4.81620628838217,52.7441479187176 +-4.96412653031133,52.7405405525593 + + + + + +SH02 +#labelStyle + +-4.8931393683556,52.7872577740072 + + + + +SH03 + +Small Square SH03 Boundry Box +#Line2 + + +1 + +-4.97023926274694,52.8303148185651 +-4.9763839299161,52.920078242709 +-4.82785409178527,52.9237090210034 +-4.82201501368263,52.8339338673577 +-4.97023926274694,52.8303148185651 + + + + + +SH03 +#labelStyle + +-4.89911595427976,52.8770370363593 + + + + +SH04 + +Small Square SH04 Boundry Box +#Line2 + + +1 + +-4.97638454607953,52.9200872198559 +-4.98256199297697,53.0098487770626 +-4.83372491129521,53.013491334429 +-4.82785467730573,52.9237179993257 +-4.97638454607953,52.9200872198559 + + + + + +SH04 +#labelStyle + +-4.90512439793587,52.966814457212 + + + + +SH05 + +Small Square SH05 Boundry Box +#Line2 + + +1 + +-4.98256261243038,53.0098577540226 +-4.98877307341822,53.0996174418614 +-4.83962711264151,53.1032718270594 +-4.83372549994268,53.0135003125693 +-4.98256261243038,53.0098577540226 + + + + + +SH05 +#labelStyle + +-4.91116492683412,53.0565900343267 + + + + +SH06 + +Small Square SH06 Boundry Box +#Line2 + + +1 + +-4.98877369618517,53.0996264186343 +-4.99501740791712,53.1893842346517 +-4.84556092084868,53.1930504968045 +-4.83962770443838,53.1032808050175 +-4.98877369618517,53.0996264186343 + + + + + +SH06 +#labelStyle + +-4.91723777070713,53.1463637654444 + + + + +SH07 + +Small Square SH07 Boundry Box +#Line2 + + +1 + +-4.99501803402139,53.1893932112373 +-5.00129523547063,53.2791491529573 +-4.85152656314752,53.2828273415549 +-4.84556151581756,53.1930594745803 +-4.99501803402139,53.1893932112373 + + + + + +SH07 +#labelStyle + +-4.92334316153692,53.236135648285 + + + + +SH08 + +Small Square SH08 Boundry Box +#Line2 + + +1 + +-5.00129586493623,53.2791581293553 +-5.00760679742362,53.368912194278 +-4.85752426900204,53.3726023591812 +-4.85152716131124,53.2828363191481 +-5.00129586493623,53.2791581293553 + + + + + +SH08 +#labelStyle + +-4.9294813335823,53.3259056805471 + + + + +SH09 + +Small Square SH09 Boundry Box +#Line2 + + +1 + +-5.00760743027481,53.3689211704882 +-5.01395233749754,53.45867335609 +-4.8635542701367,53.4623755475337 +-4.85752487038367,53.3726113365915 +-5.00760743027481,53.3689211704882 + + + + + +SH09 +#labelStyle + +-4.9356525234066,53.4156738599073 + + + + +SH10 + +Small Square SH10 Boundry Box +#Line2 + + +1 + +-4.80466604588283,52.5645709288317 +-4.81041294176101,52.6543515269938 +-4.66276463855132,52.657763492117 +-4.65731874267808,52.5679718978845 +-4.80466604588283,52.5645709288317 + + + + + +SH10 +#labelStyle + +-4.73378349615624,52.6111922819106 + + + + +SH11 + +Small Square SH11 Boundry Box +#Line2 + + +1 + +-4.81041351802964,52.6543605058609 +-4.81619091398635,52.7441392915872 +-4.66823998863077,52.7475622988233 +-4.66276518463751,52.657772472086 +-4.81041351802964,52.6543605058609 + + + + + +SH11 +#labelStyle + +-4.73939529165057,52.700986537216 + + + + +SH12 + +Small Square SH12 Boundry Box +#Line2 + + +1 + +-4.81619149331608,52.7441482702729 +-4.82199960578909,52.8339252415475 +-4.67374445493286,52.8373593361738 +-4.6682405376183,52.7475712786155 +-4.81619149331608,52.7441482702729 + + + + + +SH12 +#labelStyle + +-4.7450368995658,52.7907790017568 + + + + +SH13 + +Small Square SH13 Boundry Box +#Line2 + + +1 + +-4.82200018820167,52.8339342200516 +-4.82783923573112,52.9237093748406 +-4.67927824467345,52.9271546024699 +-4.67374500684235,52.837368315789 +-4.82200018820167,52.8339342200516 + + + + + +SH13 +#labelStyle + +-4.75070853176626,52.8805696736771 + + + + +SH14 + +Small Square SH14 Boundry Box +#Line2 + + +1 + +-4.82783982124852,52.923718353163 +-4.8337100245023,53.0134916894142 +-4.68484156708656,53.0169480959982 +-4.6792787995257,52.927163581908 +-4.82783982124852,52.923718353163 + + + + + +SH14 +#labelStyle + +-4.756410402177,52.9703585511045 + + + + +SH15 + +Small Square SH15 Boundry Box +#Line2 + + +1 + +-4.83371061314669,53.0135006675546 +-4.83961219494616,53.1032721831973 +-4.69043463344888,53.1067398150295 +-4.68484212490261,53.0169570752588 +-4.83371061314669,53.0135006675546 + + + + + +SH15 +#labelStyle + +-4.76214272680867,53.0601456321498 + + + + +SH16 + +Small Square SH16 Boundry Box +#Line2 + + +1 + +-4.83961278673993,53.1032811611556 +-4.84554597208603,53.1930508541001 +-4.69605765710449,53.1965297578192 +-4.69043519424996,53.1067487941126 +-4.83961278673993,53.1032811611556 + + + + + +SH16 +#labelStyle + +-4.76790572378281,53.1499309149069 + + + + +SH17 + +Small Square SH17 Boundry Box +#Line2 + + +1 + +-4.8455465670518,53.1930598318759 +-4.85151158315156,53.2828277000128 +-4.70171085349,53.2863179226063 +-4.69605822091203,53.1965387367246 +-4.8455465670518,53.1930598318759 + + + + + +SH17 +#labelStyle + +-4.77369961335746,53.2397143974517 + + + + +SH18 + +Small Square SH18 Boundry Box +#Line2 + + +1 + +-4.85151218131215,53.2828366776061 +-4.85750925760554,53.3726027188064 +-4.70739444016008,53.3761043076136 +-4.70171142032565,53.2863269013338 +-4.85151218131215,53.2828366776061 + + + + + +SH18 +#labelStyle + +-4.77952461795319,53.3294960778424 + + + + +SH19 + +Small Square SH19 Boundry Box +#Line2 + + +1 + +-4.85750985898402,53.3726116962168 +-4.86353922717125,53.462375908331 +-4.71310863681333,53.4658889110469 +-4.70739501004571,53.3761132861631 +-4.85750985898402,53.3726116962168 + + + + + +SH19 +#labelStyle + +-4.78538096217944,53.4192759541188 + + + + +SH20 + +Small Square SH20 Boundry Box +#Line2 + + +1 + +-4.65730400501253,52.5679722288529 +-4.66274987077241,52.6577638241556 +-4.51507266234972,52.6609919399813 +-4.509927999791,52.5711899395283 +-4.65730400501253,52.5679722288529 + + + + + +SH20 +#labelStyle + +-4.58625652191851,52.614507299722 + + + + +SH21 + +Small Square SH21 Boundry Box +#Line2 + + +1 + +-4.66275041685559,52.6577728041248 +-4.66822519057617,52.7475626319365 +-4.52024515482109,52.7508011964965 +-4.51507317823005,52.6610009209933 +-4.66275041685559,52.6577728041248 + + + + + +SH21 +#labelStyle + +-4.59156635885951,52.7043122796521 + + + + +SH22 + +Small Square SH22 Boundry Box +#Line2 + + +1 + +-4.66822573956066,52.7475716117289 +-4.67372962644213,52.8373596703661 +-4.5254451580061,52.8406087265202 +-4.52024567344276,52.7508101773358 +-4.66822573956066,52.7475716117289 + + + + + +SH22 +#labelStyle + +-4.59690440933336,52.7941155127291 + + + + +SH23 + +Small Square SH23 Boundry Box +#Line2 + + +1 + +-4.67373017834855,52.8373686499814 +-4.67926338558498,52.9271549377458 +-4.53067286774932,52.9304145286717 +-4.5254456793886,52.8406177071868 +-4.67373017834855,52.8373686499814 + + + + + +SH23 +#labelStyle + +-4.60227087389948,52.8839169974221 + + + + +SH24 + +Small Square SH24 Boundry Box +#Line2 + + +1 + +-4.67926394043416,52.9271639171839 +-4.68482667723762,53.016948432362 +-4.53592848180345,53.0202186015581 +-4.53067339191234,52.9304235091654 +-4.67926394043416,52.9271639171839 + + + + + +SH24 +#labelStyle + +-4.60766595506872,52.9737167321869 + + + + +SH25 + +Small Square SH25 Boundry Box +#Line2 + + +1 + +-4.68482723505059,53.0169574116227 +-4.69041971267558,53.1067401524858 +-4.54121219985237,53.1100209437744 +-4.53592900876685,53.0202275818789 +-4.68482723505059,53.0169574116227 + + + + + +SH25 +#labelStyle + +-4.61308985732695,53.0635147154658 + + + + +SH26 + +Small Square SH26 Boundry Box +#Line2 + + +1 + +-4.69042027347356,53.106749131569 +-4.69604270524176,53.1965300963725 +-4.54652422353459,53.1998215539029 +-4.54121272963622,53.1100299239221 +-4.69042027347356,53.106749131569 + + + + + +SH26 +#labelStyle + +-4.61854278715898,53.153310945687 + + + + +SH27 + +Small Square SH27 Boundry Box +#Line2 + + +1 + +-4.69604326904619,53.196539075278 +-4.7016958703716,53.2863182622613 +-4.55186475646703,53.2896204305129 +-4.54652475615915,53.1998305338773 +-4.69604326904619,53.196539075278 + + + + + +SH27 +#labelStyle + +-4.62402495307289,53.2431054212643 + + + + +SH28 + +Small Square SH28 Boundry Box +#Line2 + + +1 + +-4.70169643720413,53.2863272409889 +-4.70737942561858,53.3761046483748 +-4.55723400426915,53.3794175721604 +-4.55186529195277,53.2896294103139 +-4.70169643720413,53.2863272409889 + + + + + +SH28 +#labelStyle + +-4.6295365656246,53.3328981405971 + + + + +SH29 + +Small Square SH29 Boundry Box +#Line2 + + +1 + +-4.70737999550107,53.3761136269244 +-4.71309359068009,53.4658892529189 +-4.56263217458742,53.4692129773878 +-4.55723454263673,53.3794265517878 +-4.70737999550107,53.3761136269244 + + + + + +SH29 +#labelStyle + +-4.63507783744292,53.4226891020693 + + + + +SH30 + +Small Square SH30 Boundry Box +#Line2 + + +1 + +-4.50991325933408,52.571190252165 +-4.51505789175968,52.6609922536291 +-4.36735337220298,52.6640364403067 +-4.36251013502222,52.5742246251299 +-4.50991325933408,52.571190252165 + + + + + +SH30 +#labelStyle + +-4.43870153558567,52.6176387052409 + + + + +SH31 + +Small Square SH31 Boundry Box +#Line2 + + +1 + +-4.51505840763699,52.6610012346411 +-4.52023035393541,52.7508015111595 +-4.37222281312096,52.7538555526701 +-4.36735385785814,52.6640454223022 +-4.51505840763699,52.6610012346411 + + + + + +SH31 +#labelStyle + +-4.44370921535605,52.7074538172961 + + + + +SH32 + +Small Square SH32 Boundry Box +#Line2 + + +1 + +-4.52023087255404,52.750810491999 +-4.52543032666412,52.8406090422027 +-4.37711815735835,52.8436729789842 +-4.37222330135728,52.7538645344971 +-4.52023087255404,52.750810491999 + + + + + +SH32 +#labelStyle + +-4.44874350784321,52.7972672239982 + + + + +SH33 + +Small Square SH33 Boundry Box +#Line2 + + +1 + +-4.52543084804357,52.8406180228694 +-4.53065800578926,52.9304148453778 +-4.38203958936574,52.9334887181679 +-4.3771186481942,52.8436819606424 +-4.52543084804357,52.8406180228694 + + + + + +SH33 +#labelStyle + +-4.45380460227838,52.8870789241239 + + + + +SH34 + +Small Square SH34 Boundry Box +#Line2 + + +1 + +-4.5306585299492,52.9304238258717 +-4.53591358906237,53.0202189192921 +-4.38698729539133,53.0233027691313 +-4.38204008281965,52.9334976996574 +-4.5306585299492,52.9304238258717 + + + + + +SH34 +#labelStyle + +-4.45889268973462,52.9768889164394 + + + + +SH35 + +Small Square SH35 Boundry Box +#Line2 + + +1 + +-4.53591411602269,53.020227899613 +-4.54119727616618,53.1100212625406 +-4.39196146350281,53.113115130775 +-4.38698779148202,53.0233117504519 +-4.53591411602269,53.020227899613 + + + + + +SH35 +#labelStyle + +-4.46400796314908,53.0666971997001 + + + + +SH36 + +Small Square SH36 Boundry Box +#Line2 + + +1 + +-4.54119780594693,53.1100302426884 +-4.54650926873803,53.1998218737056 +-4.39696228360933,53.2029258019899 +-4.39196196224917,53.1131241119267 +-4.54119780594693,53.1100302426884 + + + + + +SH36 +#labelStyle + +-4.46915061734559,53.1565037726507 + + + + +SH37 + +Small Square SH37 Boundry Box +#Line2 + + +1 + +-4.54650980135947,53.19983085368 +-4.55184977039364,53.2896207513563 +-4.401989947484,53.292734781657 +-4.39696278503045,53.2029347829725 +-4.54650980135947,53.19983085368 + + + + + +SH37 +#labelStyle + +-4.47432084905758,53.2463086340244 + + + + +SH38 + +Small Square SH38 Boundry Box +#Line2 + + +1 + +-4.55185030587624,53.2896297311573 +-4.5572189867513,53.3794178940489 +-4.40704464878657,53.382542068647 +-4.40199045159915,53.2927437624704 +-4.55185030587624,53.2896297311573 + + + + + +SH38 +#labelStyle + +-4.47951885695138,53.3361117825428 + + + + +SH39 + +Small Square SH39 Boundry Box +#Line2 + + +1 + +-4.55721952511572,53.3794268736764 +-4.56261712545625,53.4692133003258 +-4.41212658308656,53.47234766182 +-4.40704515561522,53.382551049291 +-4.55721952511572,53.3794268736764 + + + + + +SH39 +#labelStyle + +-4.48474484164977,53.4259132169156 + + + + +SH40 + +Small Square SH40 Boundry Box +#Line2 + + +1 + +-4.36249539193234,52.5742249194272 +-4.36733859896133,52.6640367355559 +-4.21960836421121,52.6668969177589 +-4.21506673329608,52.5770758798437 +-4.36249539193234,52.5742249194272 + + + + + +SH40 +#labelStyle + +-4.2911201267453,52.6205864211229 + + + + +SH41 + +Small Square SH41 Boundry Box +#Line2 + + +1 + +-4.36733908461346,52.6640457175515 +-4.37220800956483,52.7538558488752 +-4.22417457091518,52.756725291517 +-4.21960881962302,52.6669059006786 +-4.36733908461346,52.6640457175515 + + + + + +SH41 +#labelStyle + +-4.29582546194749,52.7104110722975 + + + + +SH42 + +Small Square SH42 Boundry Box +#Line2 + + +1 + +-4.37220849779811,52.7538648307022 +-4.37710332332691,52.843673276149 +-4.22876507176829,52.846552017241 +-4.22417502874781,52.756734274272 +-4.37220849779811,52.7538648307022 + + + + + +SH42 +#labelStyle + +-4.30055580723061,52.8002340572037 + + + + +SH43 + +Small Square SH43 Boundry Box +#Line2 + + +1 + +-4.37710381415971,52.8436822578074 +-4.38202472469702,52.9334890162965 +-4.23338003980563,52.9363770941318 +-4.22876553203896,52.8465609998311 +-4.37710381415971,52.8436822578074 + + + + + +SH43 +#labelStyle + +-4.30531134047582,52.8900553749075 + + + + +SH44 + +Small Square SH44 Boundry Box +#Line2 + + +1 + +-4.38202521814786,52.9334979977861 +-4.38697239992222,53.0233030682276 +-4.2380196497492,53.0262005213842 +-4.23338050253173,52.936386076557 +-4.38202521814786,52.9334979977861 + + + + + +SH44 +#labelStyle + +-4.31009224129609,52.9798750244675 + + + + +SH45 + +Small Square SH45 Boundry Box +#Line2 + + +1 + +-4.38697289600982,53.0233120495483 +-4.39194653706901,53.113115430843 +-4.24268407802834,53.1160222981864 +-4.23802011494828,53.0262095036444 +-4.38697289600982,53.0233120495483 + + + + + +SH45 +#labelStyle + +-4.31489869105727,53.0696930049343 + + + + +SH46 + +Small Square SH46 Boundry Box +#Line2 + + +1 + +-4.39194703581227,53.1131244119948 +-4.39694732604539,53.2029261030337 +-4.24737350280048,53.2058424237194 +-4.24268454571814,53.1160312802815 +-4.39194703581227,53.1131244119948 + + + + + +SH46 +#labelStyle + +-4.31973087289926,53.1595093153507 + + + + +SH47 + +Small Square SH47 Boundry Box +#Line2 + + +1 + +-4.39694782746339,53.2029350840164 +-4.40197495862327,53.2927350836807 +-4.25208810397216,53.2956608971573 +-4.24737397299889,53.2058514056494 +-4.39694782746339,53.2029350840164 + + + + + +SH47 +#labelStyle + +-4.32458897175761,53.2493239547506 + + + + +SH48 + +Small Square SH48 Boundry Box +#Line2 + + +1 + +-4.40197546273528,53.2927440644941 +-4.40702962846121,53.3825423716546 +-4.25682806322037,53.3854777176666 +-4.25208857669726,53.295669878922 +-4.40197546273528,53.2927440644941 + + + + + +SH48 +#labelStyle + +-4.32947317438541,53.3391369221595 + + + + +SH49 + +Small Square SH49 Boundry Box +#Line2 + + +1 + +-4.4070301352867,53.3825513522988 +-4.41211153112752,53.4723479658157 +-4.26159356401424,53.4752928844063 +-4.25682853849043,53.385486699266 +-4.4070301352867,53.3825513522988 + + + + + +SH49 +#labelStyle + +-4.33438366937551,53.428948216594 + + + + +SH50 + +Small Square SH50 Boundry Box +#Line2 + + +1 + +-4.21505198773181,52.5770761557943 +-4.21959358847764,52.6668971946022 +-4.07183923622854,52.6695733015345 +-4.06759938127011,52.5797436333258 +-4.21505198773181,52.5770761557943 + + + + + +SH50 +#labelStyle + +-4.14351388678218,52.6233503745361 + + + + +SH51 + +Small Square SH51 Boundry Box +#Line2 + + +1 + +-4.21959404388643,52.666906177522 +-4.22415976484944,52.7567255692567 +-4.07610203736377,52.7594103417702 +-4.07183966137994,52.6695822853191 +-4.21959404388643,52.666906177522 + + + + + +SH51 +#labelStyle + +-4.14791670125986,52.7131839713487 + + + + +SH52 + +Small Square SH52 Boundry Box +#Line2 + + +1 + +-4.22416022267903,52.7567345520118 +-4.22875023520937,52.8465522958807 +-4.08038752181121,52.8492457695559 +-4.07610246477548,52.7594193253936 +-4.22416022267903,52.7567345520118 + + + + + +SH52 +#labelStyle + +-4.15234292147158,52.8030159385573 + + + + +SH53 + +Small Square SH53 Boundry Box +#Line2 + + +1 + +-4.22875069547698,52.8465612784709 +-4.23336517259138,52.9363773736753 +-4.08469585117034,52.9390795843567 +-4.08038795149931,52.849254753018 +-4.22875069547698,52.8465612784709 + + + + + +SH53 +#labelStyle + +-4.15679271392768,52.8928462754997 + + + + +SH54 + +Small Square SH54 Boundry Box +#Line2 + + +1 + +-4.2333656353144,52.9363863561006 +-4.23800475171632,53.0262008018353 +-4.08902718861649,53.028911785634 +-4.08469628315106,52.9390885676575 +-4.2333656353144,52.9363863561006 + + + + + +SH54 +#labelStyle + +-4.16126624676016,52.9826749815089 + + + + +SH55 + +Small Square SH55 Boundry Box +#Line2 + + +1 + +-4.23800521691232,53.0262097840956 +-4.24266914901238,53.1160225795487 +-4.09338169891997,53.1187423728451 +-4.08902762290623,53.0289207687735 +-4.23800521691232,53.0262097840956 + + + + + +SH55 +#labelStyle + +-4.16576368974227,53.0725020559125 + + + + +SH56 + +Small Square SH56 Boundry Box +#Line2 + + +1 + +-4.24266961669907,53.1160315616439 +-4.2473585426358,53.2058427059968 +-4.09775954846541,53.2085713454428 +-4.09338213553529,53.1187513558231 +-4.24266961669907,53.1160315616439 + + + + + +SH56 +#labelStyle + +-4.17028521430843,53.1623274980326 + + + + +SH57 + +Small Square SH57 Boundry Box +#Line2 + + +1 + +-4.24735901283108,53.2058516879269 +-4.25207311249192,53.2956611803536 +-4.10216090527144,53.2983987028756 +-4.09775998742303,53.2085803282593 +-4.24735901283108,53.2058516879269 + + + + + +SH57 +#labelStyle + +-4.17483099357443,53.2521513071859 + + + + +SH58 + +Small Square SH58 Boundry Box +#Line2 + + +1 + +-4.25207358521388,53.2956701621184 +-4.25681304025655,53.3854780017857 +-4.10658593901066,53.388224444587 +-4.10216134658825,53.2984076855305 +-4.25207358521388,53.2956701621184 + + + + + +SH58 +#labelStyle + +-4.17940120235794,53.3419734826829 + + + + +SH59 + +Small Square SH59 Boundry Box +#Line2 + + +1 + +-4.25681351552345,53.3854869833851 +-4.2615785093976,53.4752931694519 +-4.11103482102981,53.4780485700159 +-4.10658638270369,53.3882334270804 +-4.25681351552345,53.3854869833851 + + + + + +SH59 +#labelStyle + +-4.18399601719929,53.431794023828 + + + + +SH60 + +Small Square SH60 Boundry Box +#Line2 + + +1 + +-4.06758463339021,52.5797438909229 +-4.07182445816293,52.6695735599651 +-3.92404758775507,52.6720655253675 +-3.92010966722824,52.58222781974 +-4.06758463339021,52.5797438909229 + + + + + +SH60 +#labelStyle + +-3.99588440877093,52.6259304971685 + + + + +SH61 + +Small Square SH61 Boundry Box +#Line2 + + +1 + +-4.07182488331131,52.6695825437498 +-4.07608722894941,52.7594106010377 +-3.92800682329252,52.7619106367296 +-3.92404798263015,52.6720745099576 +-4.07182488331131,52.6695825437498 + + + + + +SH61 +#labelStyle + +-3.99998453762949,52.7157724456908 + + + + +SH62 + +Small Square SH62 Boundry Box +#Line2 + + +1 + +-4.07608765635808,52.7594195846611 +-4.08037268288694,52.8492460296636 +-3.93198712974833,52.8517541687909 +-3.92800722026723,52.7619196211618 +-4.07608765635808,52.7594195846611 + + + + + +SH62 +#labelStyle + +-4.00410646627299,52.8056127988494 + + + + +SH63 + +Small Square SH63 Boundry Box +#Line2 + + +1 + +-4.08037311257198,52.8492550131259 +-4.08468098157385,52.9390798453083 +-3.93598865726755,52.9415961212627 +-3.93198752883762,52.8517631530652 +-4.08037311257198,52.8492550131259 + + + + + +SH63 +#labelStyle + +-4.00825034982168,52.8954515562361 + + + + +SH64 + +Small Square SH64 Boundry Box +#Line2 + + +1 + +-4.0846814135515,52.9390888286091 +-4.08901228818432,53.0289120474328 +-3.94001155745976,53.0314364938548 +-3.93598905848651,52.941605105379 +-4.0846814135515,52.9390888286091 + + + + + +SH64 +#labelStyle + +-4.01241634490691,52.9852887174399 + + + + +SH65 + +Small Square SH65 Boundry Box +#Line2 + + +1 + +-4.08901272247097,53.0289210305723 +-4.09336676748749,53.1187426354946 +-3.94405598341683,53.1212752862751 +-3.94001196082361,53.031445477813 +-4.08901272247097,53.0289210305723 + + + + + +SH65 +#labelStyle + +-4.01660460968945,53.0751242820475 + + + + +SH66 + +Small Square SH66 Boundry Box +#Line2 + + +1 + +-4.0933672040997,53.1187516184727 +-4.09774458586681,53.2085716089467 +-3.94812208973095,53.2111124982299 +-3.94405638894096,53.1212842700753 +-4.0933672040997,53.1187516184727 + + + + + +SH66 +#labelStyle + +-4.02081530387804,53.1649582496422 + + + + +SH67 + +Small Square SH67 Boundry Box +#Line2 + + +1 + +-4.0977450248213,53.2085805917633 +-4.10214591133972,53.2983989672373 +-3.95221003251292,53.3009481294234 +-3.9481224974309,53.2111214818721 +-4.0977450248213,53.2085805917633 + + + + + +SH67 +#labelStyle + +-4.02504858874821,53.2547906198043 + + + + +SH68 + +Small Square SH68 Boundry Box +#Line2 + + +1 + +-4.10214635265338,53.2984079498924 +-4.10657091357761,53.3882247098103 +-3.95631996941064,53.3907821795573 +-3.95221044240437,53.3009571129075 +-4.10214635265338,53.2984079498924 + + + + + +SH68 +#labelStyle + +-4.0293046271614,53.3446213921108 + + + + +SH69 + +Small Square SH69 Boundry Box +#Line2 + + +1 + +-4.10657135726749,53.3882336923037 +-4.11101976392603,53.4780488361043 +-3.96045205962799,53.4806146483311 +-3.95632038150944,53.3907911628833 +-4.10657135726749,53.3882336923037 + + + + + +SH69 +#labelStyle + +-4.03358358358435,53.4344505661349 + + + + +SH70 + +Small Square SH70 Boundry Box +#Line2 + + +1 + +-3.92009491719161,52.5822280589772 +-3.92403280751745,52.6720657653788 +-3.77623501982849,52.6743735275341 +-3.77259918097371,52.5845283777634 +-3.92009491719161,52.5822280589772 + + + + + +SH70 +#labelStyle + +-3.84823328736851,52.628326725233 + + + + +SH71 + +Small Square SH71 Boundry Box +#Line2 + + +1 + +-3.9240332023895,52.672074749969 +-3.92799201269071,52.7619108775183 +-3.77989054108337,52.7642261142672 +-3.77623538441245,52.6743825128702 +-3.9240332023895,52.672074749969 + + + + + +SH71 +#labelStyle + +-3.85203057699402,52.7181764311194 + + + + +SH72 + +Small Square SH72 Boundry Box +#Line2 + + +1 + +-3.92799240966238,52.7619198619506 +-3.93197228862103,52.8517544103602 +-3.78356551941585,52.8540771524101 +-3.77989090760615,52.7642350994484 +-3.92799240966238,52.7619198619506 + + + + + +SH72 +#labelStyle + +-3.85584805896242,52.8080245734546 + + + + +SH73 + +Small Square SH73 Boundry Box +#Line2 + + +1 + +-3.93197268770726,52.8517633946345 +-3.93597378545229,52.9415963636157 +-3.78726009349903,52.9439266419021 +-3.78356588789125,52.8540861374365 +-3.93197268770726,52.8517633946345 + + + + + +SH73 +#labelStyle + +-3.85968587698582,52.8978711520662 + + + + +SH74 + +Small Square SH74 Boundry Box +#Line2 + + +1 + +-3.93597418666817,52.941605347732 +-3.93999665479292,53.0314367369947 +-3.79097440335898,53.0337745826832 +-3.78726046394098,52.9439356267736 +-3.93597418666817,52.941605347732 + + + + + +SH74 +#labelStyle + +-3.86354417617665,52.9877161667816 + + + + +SH75 + +Small Square SH75 Boundry Box +#Line2 + + +1 + +-3.93999705815368,53.031445720953 +-3.94404104973363,53.1212755302053 +-3.79470859039114,53.123620974694 +-3.79097477578156,53.0337835673999 +-3.93999705815368,53.031445720953 + + + + + +SH75 +#labelStyle + +-3.86742310306462,53.0775596174278 + + + + +SH76 + +Small Square SH76 Boundry Box +#Line2 + + +1 + +-3.94404145525465,53.1212845140056 +-3.94810712486543,53.2111127429537 +-3.79846279737698,53.2134658178754 +-3.79470896480855,53.1236299592558 +-3.94404145525465,53.1212845140056 + + + + + +SH76 +#labelStyle + +-3.87132280561397,53.167401503831 + + + + +SH77 + +Small Square SH77 Boundry Box +#Line2 + + +1 + +-3.94810753256226,53.2111217265959 +-3.95219503629791,53.300948374944 +-3.8022371685009,53.3033091121683 +-3.79846317380357,53.2134748022822 +-3.94810753256226,53.2111217265959 + + + + + +SH77 +#labelStyle + +-3.87524343324085,53.2572418258167 + + + + +SH78 + +Small Square SH78 Boundry Box +#Line2 + + +1 + +-3.95219544618622,53.3009573584281 +-3.95630494167779,53.3907824258781 +-3.80603184936733,53.3931508575141 +-3.80223754695116,53.3033180964203 +-3.95219544618622,53.3009573584281 + + + + + +SH78 +#labelStyle + +-3.8791851368311,53.3470805832093 + + + + +SH79 + +Small Square SH79 Boundry Box +#Line2 + + +1 + +-3.95630535377343,53.3907914092041 +-3.96043700020771,53.4806148954554 +-3.80984698701815,53.4829910538535 +-3.80603222985589,53.3931598416112 +-3.95630535377343,53.3907914092041 + + + + + +SH79 +#labelStyle + +-3.88314806875817,53.4369177758322 + + + + +SH80 + +Small Square SH80 Boundry Box +#Line2 + + +1 + +-3.77258442893941,52.5845285986349 +-3.77622023757903,52.6743737491204 +-3.62840313491544,52.6764972508587 +-3.62506951372171,52.5866452505915 +-3.77258442893941,52.5845285986349 + + + + + +SH80 +#labelStyle + +-3.70056211870631,52.6305389994732 + + + + +SH81 + +Small Square SH81 Boundry Box +#Line2 + + +1 + +-3.77622060215996,52.6743827344566 +-3.77987572845543,52.7642263365712 +-3.63175480456448,52.7663567168326 +-3.62840346919461,52.6765062368813 +-3.77622060215996,52.6743827344566 + + + + + +SH81 +#labelStyle + +-3.70405642678334,52.7203958679904 + + + + +SH82 + +Small Square SH82 Boundry Box +#Line2 + + +1 + +-3.77987609497516,52.7642353217525 +-3.78355067624797,52.8540773754348 +-3.63512431611366,52.8562146624849 +-3.63175514062152,52.7663657027031 +-3.77987609497516,52.7642353217525 + + + + + +SH82 +#labelStyle + +-3.70756931837771,52.8102512023374 + + + + +SH83 + +Small Square SH83 Boundry Box +#Line2 + + +1 + +-3.78355104472031,52.8540863604612 +-3.78724521962862,52.9439268656504 +-3.63851179674798,52.9460710879649 +-3.63512465396123,52.8562236482034 +-3.78355104472031,52.8540863604612 + + + + + +SH83 +#labelStyle + +-3.71110092577668,52.9001050025599 + + + + +SH84 + +Small Square SH84 Boundry Box +#Line2 + + +1 + +-3.78724559006749,52.943935850522 +-3.79095949862226,53.0337748071582 +-3.64191737489358,53.0359259934246 +-3.63851213639885,52.9460800735314 +-3.78724559006749,52.943935850522 + + + + + +SH84 +#labelStyle + +-3.71465138255678,52.9899572687053 + + + + +SH85 + +Small Square SH85 Boundry Box +#Line2 + + +1 + +-3.79095987104174,53.0337837918749 +-3.79469365462319,53.1236211998987 +-3.64534118023284,53.1257793790185 +-3.64191771636067,53.0359349788391 +-3.79095987104174,53.0337837918749 + + + + + +SH85 +#labelStyle + +-3.7182208235995,53.0798080008227 + + + + +SH86 + +Small Square SH86 Boundry Box +#Line2 + + +1 + +-3.79469402903749,53.1236301844605 +-3.7984478304117,53.2134660438127 +-3.64878334371963,53.2156312449036 +-3.64534152352918,53.125788364281 +-3.79469402903749,53.1236301844605 + + + + + +SH86 +#labelStyle + +-3.72180938510709,53.1696571989627 + + + + +SH87 + +Small Square SH87 Boundry Box +#Line2 + + +1 + +-3.79844820683516,53.2134750282197 +-3.80222217017097,53.3033093388415 +-3.65224399759479,53.3054815912392 +-3.64878368885838,53.2156402300142 +-3.79844820683516,53.2134750282197 + + + + + +SH87 +#labelStyle + +-3.72541720461862,53.2595048631772 + + + + +SH88 + +Small Square SH88 Boundry Box +#Line2 + + +1 + +-3.80222254861809,53.3033183230935 +-3.80601681950424,53.393151084926 +-3.6557232754019,53.3953304181867 +-3.65224434458923,53.3054905761978 +-3.80222254861809,53.3033183230935 + + + + + +SH88 +#labelStyle + +-3.72904442102635,53.3493509935195 + + + + +SH89 + +Small Square SH89 Boundry Box +#Line2 + + +1 + +-3.80601719998964,53.3931600690232 +-3.80983192545217,53.4829912820074 +-3.65922131200319,53.4851777259096 +-3.65572362426545,53.3953394029935 +-3.80601719998964,53.3931600690232 + + + + + +SH89 +#labelStyle + +-3.73269117459224,53.4391955900437 + + + + +SH90 + +Small Square SH90 Boundry Box +#Line2 + + +1 + +-3.62505475984892,52.5866454530918 +-3.62838835081446,52.6764974540144 +-3.48055353680265,52.6784366427181 +-3.47752225799181,52.588578385943 +-3.62505475984892,52.5866454530918 + + + + + +SH90 +#labelStyle + +-3.55287250028205,52.6325672651682 + + + + +SH91 + +Small Square SH91 Boundry Box +#Line2 + + +1 + +-3.6283886850906,52.676506440037 +-3.63173999007185,52.7663569206463 +-3.48360122889999,52.7683023914578 +-3.48055384076449,52.6784456293677 +-3.6283886850906,52.676506440037 + + + + + +SH91 +#labelStyle + +-3.55606369581013,52.7224307012247 + + + + +SH92 + +Small Square SH92 Boundry Box +#Line2 + + +1 + +-3.63174032612584,52.766365906517 +-3.6351094710678,52.8562148669595 +-3.48666514649381,52.8581666456994 +-3.48360153447864,52.7683113779579 +-3.63174032612584,52.766365906517 + + + + + +SH92 +#labelStyle + +-3.5592718647562,52.8122926300573 + + + + +SH93 + +Small Square SH93 Boundry Box +#Line2 + + +1 + +-3.63510980891231,52.8562238526781 +-3.63849692098616,52.946071293103 +-3.48974540526616,52.9480294057839 +-3.48666545370078,52.8581756320501 +-3.63510980891231,52.8562238526781 + + + + + +SH93 +#labelStyle + +-3.56249712796727,52.9021530519119 + + + + +SH94 + +Small Square SH94 Boundry Box +#Line2 + + +1 + +-3.63849726063396,52.9460802786696 +-3.64190246825191,53.035926199229 +-3.49284212202822,53.0378906720571 +-3.48974571411307,52.9480383919852 +-3.63849726063396,52.9460802786696 + + + + + +SH94 +#labelStyle + +-3.56573960746838,52.9920119670376 + + + + +SH95 + +Small Square SH95 Boundry Box +#Line2 + + +1 + +-3.64190280971591,53.0359351846436 +-3.64532624254626,53.1257795854919 +-3.495955414734,53.1277504448691 +-3.4928424325268,53.0378996581091 +-3.64190280971591,53.0359351846436 + + + + + +SH95 +#labelStyle + +-3.56899942647692,53.0818693756875 + + + + +SH96 + +Small Square SH96 Boundry Box +#Line2 + + +1 + +-3.64532658583949,53.1257885707545 +-3.64876837482189,53.2156314520488 +-3.49908540249427,53.2176087245744 +-3.49595572689611,53.1277594307718 +-3.64532658583949,53.1257885707545 + + + + + +SH96 +#labelStyle + +-3.57227670941709,53.1717252781178 + + + + +SH97 + +Small Square SH97 Boundry Box +#Line2 + + +1 + +-3.6487687199575,53.2156404371595 +-3.65222899731845,53.3054817990591 +-3.50223220559062,53.3074655115316 +-3.49908571633188,53.2176177103277 +-3.6487687199575,53.2156404371595 + + + + + +SH97 +#labelStyle + +-3.57557158193459,53.2615796745884 + + + + +SH98 + +Small Square SH98 Boundry Box +#Line2 + + +1 + +-3.65222934430974,53.3054907840178 +-3.6557082435783,53.3953306266841 +-3.50539594548979,53.3973208061033 +-3.50223252111582,53.3074744971356 +-3.65222934430974,53.3054907840178 + + + + + +SH98 +#labelStyle + +-3.57888417091153,53.3514325653621 + + + + +SH99 + +Small Square SH99 Boundry Box +#Line2 + + +1 + +-3.65570859243869,53.3953396114909 +-3.65920624846247,53.4851779350873 +-3.50857674485821,53.4871746086564 +-3.50539626271478,53.3973297915582 +-3.65570859243869,53.3953396114909 + + + + + +SH99 +#labelStyle + +-3.58221460448157,53.4412839507049 + + + + + +SJ + +Large Square SJ Boundry Box +#Line1 + + +1 + +-3.47750750243985,52.5885785700672 +-3.50856167951384,53.4871747988526 +-2.00146907519421,53.4966962009469 +-2.00143340493619,52.5977959181395 +-3.47750750243985,52.5885785700672 + + + + + +SJ00 + +Small Square SJ00 Boundry Box +#Line2 + + +1 + +-3.47750750243985,52.5885785700672 +-3.48053875101059,52.6784368274382 +-3.3326878304878,52.6801916550466 +-3.32995900750014,52.5903277360644 +-3.47750750243985,52.5885785700672 + + + + + +SJ00 +#labelStyle + +-3.40516603085144,52.6344114721374 + + + + +SJ01 + +Small Square SJ01 Boundry Box +#Line2 + + +1 + +-3.4805390549694,52.6784458140879 +-3.48358641270426,52.7683025767763 +-3.33543143047966,52.7700630897619 +-3.33268810412092,52.6802006422636 +-3.4805390549694,52.6784458140879 + + + + + +SJ01 +#labelStyle + +-3.40805399416022,52.724280880313 + + + + +SJ02 + +Small Square SJ02 Boundry Box +#Line2 + + +1 + +-3.48358671827986,52.7683115632765 +-3.48665029973271,52.8581668316187 +-3.33818963844881,52.8599330533545 +-3.33543170556841,52.7700720768318 +-3.48358671827986,52.7683115632765 + + + + + +SJ02 +#labelStyle + +-3.41095731962377,52.8141488057737 + + + + +SJ03 + +Small Square SJ03 Boundry Box +#Line2 + + +1 + +-3.48665060693661,52.8581758179695 +-3.48973052777684,52.9480295923067 +-3.34096255856085,52.9498015463393 +-3.33818991500355,52.8599420402773 +-3.48665060693661,52.8581758179695 + + + + + +SJ03 +#labelStyle + +-3.41387611663477,52.9040152489471 + + + + +SJ04 + +Small Square SJ04 Boundry Box +#Line2 + + +1 + +-3.48973083662066,52.948038578508 +-3.49282721364666,53.0378908591858 +-3.34375029599829,53.0396685692373 +-3.34096283659204,52.9498105331151 +-3.48973083662066,52.948038578508 + + + + + +SJ04 +#labelStyle + +-3.4168104956525,52.993880210266 + + + + +SJ05 + +Small Square SJ05 Boundry Box +#Line2 + + +1 + +-3.49282752414214,53.0378998452378 +-3.49594047529503,53.1277506326062 +-3.3465529569729,53.1295341225757 +-3.3437505755165,53.0396775558661 +-3.49282752414214,53.0378998452378 + + + + + +SJ05 +#labelStyle + +-3.41976056821579,53.0837436901689 + + + + +SJ06 + +Small Square SJ06 Boundry Box +#Line2 + + +1 + +-3.49594078745402,53.1277596185089 +-3.49907043183151,53.2176089129224 +-3.34937064873823,53.2193982068877 +-3.34655323798881,53.1295431090576 +-3.49594078745402,53.1277596185089 + + + + + +SJ06 +#labelStyle + +-3.42272644695608,53.1736056890993 + + + + +SJ07 + +Small Square SJ07 Boundry Box +#Line2 + + +1 + +-3.49907074566599,53.2176178986757 +-3.5022172035365,53.307465700493 +-3.35220347960232,53.3092608227126 +-3.34937093126263,53.2194071932228 +-3.49907074566599,53.2176178986757 + + + + + +SJ07 +#labelStyle + +-3.42570824561078,53.2634662075059 + + + + +SJ08 + +Small Square SJ08 Boundry Box +#Line2 + + +1 + +-3.50221751905856,53.3074746860971 +-3.50538091187555,53.3973209956808 +-3.35505155894056,53.3991219705951 +-3.35220376364608,53.3092698089007 +-3.50221751905856,53.3074746860971 + + + + + +SJ08 +#labelStyle + +-3.42870607903674,53.3533252458426 + + + + +SJ09 + +Small Square SJ09 Boundry Box +#Line2 + + +1 + +-3.50538122909738,53.3973299811357 +-3.50856167951384,53.4871747988526 +-3.3579149972088,53.4889816510862 +-3.35505184451466,53.3991309566365 +-3.50538122909738,53.3973299811357 + + + + + +SJ09 +#labelStyle + +-3.43172006322396,53.4431828045682 + + + + +SJ10 + +Small Square SJ10 Boundry Box +#Line2 + + +1 + +-3.32994425042843,52.5903279018078 +-3.33267304316521,52.6801918213264 +-3.18480762207024,52.6817622443394 +-3.18238135705136,52.5918932577336 +-3.32994425042843,52.5903279018078 + + + + + +SJ10 +#labelStyle + +-3.25744431031961,52.6360715747444 + + + + +SJ11 + +Small Square SJ11 Boundry Box +#Line2 + + +1 + +-3.3326733167953,52.6802008085435 +-3.33541661274252,52.7700632565805 +-3.18724702680819,52.7716387679549 +-3.18480786536437,52.6817712320643 +-3.3326733167953,52.6802008085435 + + + + + +SJ11 +#labelStyle + +-3.26002893308273,52.7259463593204 + + + + +SJ12 + +Small Square SJ12 Boundry Box +#Line2 + + +1 + +-3.33541688782821,52.7700722436504 +-3.3381747901353,52.8599332207141 +-3.18969942099959,52.8615138413726 +-3.18724727139667,52.7716477555347 +-3.33541688782821,52.7700722436504 + + + + + +SJ12 +#labelStyle + +-3.26262730568364,52.81581968325 + + + + +SJ13 + +Small Square SJ13 Boundry Box +#Line2 + + +1 + +-3.33817506668697,52.8599422076369 +-3.34094767950802,52.9498017142421 +-3.19216489728144,52.9513874652629 +-3.18969966689163,52.8615228288075 +-3.33817506668697,52.8599422076369 + + + + + +SJ13 +#labelStyle + +-3.26523952604797,52.9056915471245 + + + + +SJ14 + +Small Square SJ14 Boundry Box +#Line2 + + +1 + +-3.34094795753613,52.9498107010179 +-3.34373538604202,53.0396687376855 +-3.19464354919523,53.0412596403038 +-3.19216514448634,52.9513964525528 +-3.34094795753613,52.9498107010179 + + + + + +SJ14 +#labelStyle + +-3.26786569305631,52.9955619515424 + + + + +SJ15 + +Small Square SJ15 Boundry Box +#Line2 + + +1 + +-3.34373566555714,53.0396777243144 +-3.3465380159479,53.1295342915716 +-3.19713547119798,53.131130367181 +-3.19464379772241,53.0412686274489 +-3.34373566555714,53.0396777243144 + + + + + +SJ15 +#labelStyle + +-3.27050590655579,53.085430897109 + + + + +SJ16 + +Small Square SJ16 Boundry Box +#Line2 + + +1 + +-3.3465382969607,53.1295432780535 +-3.34935567647802,53.2193983764336 +-3.19964075867331,53.2209996465879 +-3.19713572105692,53.1311393541813 +-3.3465382969607,53.1295432780535 + + + + + +SJ16 +#labelStyle + +-3.27316026737181,53.1752983844364 + + + + +SJ17 + +Small Square SJ17 Boundry Box +#Line2 + + +1 + +-3.34935595899928,53.2194073627687 +-3.35218847593921,53.3092609928107 +-3.20215950794281,53.3108674792251 +-3.1996410098736,53.2210086334435 +-3.34935595899928,53.2194073627687 + + + + + +SJ17 +#labelStyle + +-3.27582887731999,53.2651644141438 + + + + +SJ18 + +Small Square SJ18 Boundry Box +#Line2 + + +1 + +-3.35218875997982,53.3092699789989 +-3.35503652370567,53.3991221412479 +-3.20469181627744,53.400733865801 +-3.20215976049413,53.3108764659361 +-3.35218875997982,53.3092699789989 + + + + + +SJ18 +#labelStyle + +-3.27851183921821,53.3550289868567 + + + + +SJ19 + +Small Square SJ19 Boundry Box +#Line2 + + +1 + +-3.35503680927661,53.3991311272893 +-3.35789993023202,53.4889818222959 +-3.20723778190924,53.490598807031 +-3.20469207018957,53.4007428523674 +-3.35503680927661,53.3991311272893 + + + + + +SJ19 +#labelStyle + +-3.28120925689891,53.4448921032075 + + + + +SJ20 + +Small Square SJ20 Boundry Box +#Line2 + + +1 + +-3.18236659861943,52.5918934050921 +-3.18479283337779,52.6817623921749 +-3.03691451864144,52.6831483716567 +-3.03479090243044,52.5932749122638 +-3.18236659861943,52.5918934050921 + + + + + +SJ20 +#labelStyle + +-3.10970893963233,52.6375475319013 + + + + +SJ21 + +Small Square SJ21 Boundry Box +#Line2 + + +1 + +-3.18479307666889,52.6817713798998 +-3.18723220769144,52.7716389162694 +-3.0390496363944,52.7730293868417 +-3.03691473158745,52.6831573598298 +-3.18479307666889,52.6817713798998 + + + + + +SJ21 +#labelStyle + +-3.11199012487998,52.7274270968896 + + + + +SJ22 + +Small Square SJ22 Boundry Box +#Line2 + + +1 + +-3.18723245227686,52.7716479038493 +-3.18968457129664,52.8615139901682 +-3.04119612418338,52.8629089703008 +-3.03904985047338,52.7730383748716 +-3.18723245227686,52.7716479038493 + + + + + +SJ22 +#labelStyle + +-3.11428344670499,52.8173052208573 + + + + +SJ23 + +Small Square SJ23 Boundry Box +#Line2 + + +1 + +-3.18968481718561,52.8615229776031 +-3.19215001682923,52.9513876145414 +-3.04335406310594,52.9527871228417 +-3.04119633940341,52.8629179581876 +-3.18968481718561,52.8615229776031 + + + + + +SJ23 +#labelStyle + +-3.11658899155453,52.9071819045415 + + + + +SJ24 + +Small Square SJ24 Boundry Box +#Line2 + + +1 + +-3.19215026403105,52.9513966018314 +-3.19462863782955,53.0412597900673 +-3.04552353505162,53.0426638452812 +-3.04335427947517,52.9527961105855 +-3.19215026403105,52.9513966018314 + + + + + +SJ24 +#labelStyle + +-3.11890684671893,52.9970571486876 + + + + +SJ25 + +Small Square SJ25 Boundry Box +#Line2 + + +1 + +-3.19462888635363,53.0412687772124 +-3.19712052875343,53.1311305174315 +-3.0477046227115,53.1325391384449 +-3.04552375257827,53.042672832882 +-3.19462888635363,53.0412687772124 + + + + + +SJ25 +#labelStyle + +-3.12123710034189,53.0869309540496 + + + + +SJ26 + +Small Square SJ26 Boundry Box +#Line2 + + +1 + +-3.19712077860926,53.1311395044318 +-3.19962578498332,53.2209997973274 +-3.04989740958801,53.2224130031674 +-3.04770484140389,53.1325481259028 +-3.19712077860926,53.1311395044318 + + + + + +SJ26 +#labelStyle + +-3.12357984143085,53.1768033213895 + + + + +SJ27 + +Small Square SJ27 Boundry Box +#Line2 + + +1 + +-3.19962603618048,53.221008784183 +-3.2021445028396,53.3108676304557 +-3.05210198000479,53.3122854402922 +-3.04989762945452,53.2224219904825 +-3.19962603618048,53.221008784183 + + + + + +SJ27 +#labelStyle + +-3.12593515986752,53.2666742514779 + + + + +SJ28 + +Small Square SJ28 Boundry Box +#Line2 + + +1 + +-3.20214475538776,53.3108766171667 +-3.20467677959202,53.4007340175247 +-3.05431841911677,53.4021564506717 +-3.0521022010539,53.3122944274646 +-3.20214475538776,53.3108766171667 + + + + + +SJ28 +#labelStyle + +-3.12830314641856,53.3565437450934 + + + + +SJ29 + +Small Square SJ29 Boundry Box +#Line2 + + +1 + +-3.20467703350097,53.4007430040911 +-3.20722271347138,53.4905989592499 +-3.05654681292032,53.4920260351668 +-3.05431864135704,53.4021654377014 +-3.20467703350097,53.4007430040911 + + + + + +SJ29 +#labelStyle + +-3.13068389274643,53.4464118030225 + + + + +SJ30 + +Small Square SJ30 Boundry Box +#Line2 + + +1 + +-3.03477614279793,52.5932750412338 +-3.03689972873988,52.6831485010442 +-2.88901012817532,52.684350002627 +-2.88718924029433,52.594472665507 +-3.03477614279793,52.5932750412338 + + + + + +SJ30 +#labelStyle + +-2.96196152066709,52.6388393070718 + + + + +SJ31 + +Small Square SJ31 Boundry Box +#Line2 + + +1 + +-3.03689994168286,52.6831574892174 +-3.03903481605993,52.7730295166485 +-2.89084087864022,52.7742349118251 +-2.88901031076522,52.6843589911887 +-3.03689994168286,52.6831574892174 + + + + + +SJ31 +#labelStyle + +-2.96393918279723,52.7287230562452 + + + + +SJ32 + +Small Square SJ32 Boundry Box +#Line2 + + +1 + +-3.03903503013587,52.7730385046784 +-3.04118127325403,52.8629091005286 +-2.89268137894132,52.8641184053145 +-2.89084106220165,52.7742439002453 +-3.03903503013587,52.7730385046784 + + + + + +SJ32 +#labelStyle + +-2.96592736741133,52.8186053815788 + + + + +SJ33 + +Small Square SJ33 Boundry Box +#Line2 + + +1 + +-3.041181488471,52.8629180884154 +-3.04333918141857,52.9527872534923 +-2.8945316986273,52.9540004840217 +-2.89268156348121,52.8641273935931 +-3.041181488471,52.8629180884154 + + + + + +SJ33 +#labelStyle + +-2.96792614946804,52.9084862839373 + + + + +SJ34 + +Small Square SJ34 Boundry Box +#Line2 + + +1 + +-3.04333939778472,52.9527962412361 +-3.04550862244192,53.0426639763562 +-2.89639190792608,53.0438811488837 +-2.89453188415263,52.9540094721589 +-3.04333939778472,52.9527962412361 + + + + + +SJ34 +#labelStyle + +-2.96993560465717,52.998365764195 + + + + +SJ35 + +Small Square SJ35 Boundry Box +#Line2 + + +1 + +-3.04550883996547,53.0426729639571 +-3.04768967901399,53.1325392699462 +-2.89826207775309,53.1337604008477 +-2.8963920944439,53.0438901368796 +-3.04550883996547,53.0426729639571 + + + + + +SJ35 +#labelStyle + +-2.97195580940864,53.0882438232358 + + + + +SJ36 + +Small Square SJ36 Boundry Box +#Line2 + + +1 + +-3.04768989770326,53.1325482574041 +-3.04988243463603,53.2224131350967 +-2.90014227971965,53.2236382408708 +-2.89826226527053,53.1337693887023 +-3.04768989770326,53.1325482574041 + + + + + +SJ36 +#labelStyle + +-2.97398684090139,53.1781204619532 + + + + +SJ37 + +Small Square SJ37 Boundry Box +#Line2 + + +1 + +-3.0498826544994,53.2224221224118 +-3.05208697363046,53.3122855726514 +-2.90203258614143,53.3135146699202 +-2.90014246824391,53.2236472285842 +-3.0498826544994,53.2224221224118 + + + + + +SJ37 +#labelStyle + +-2.97602877707258,53.2679956812503 + + + + +SJ38 + +Small Square SJ38 Boundry Box +#Line2 + + +1 + +-3.05208719467642,53.3122945598238 +-3.05430338115102,53.4021565834625 +-2.9039330700471,53.4033896889732 +-2.90203277567977,53.3135236574926 +-3.05208719467642,53.3122945598238 + + + + + +SJ38 +#labelStyle + +-2.9780816966268,53.3578694820395 + + + + +SJ39 + +Small Square SJ39 Boundry Box +#Line2 + + +1 + +-3.05430360338811,53.4021655704922 +-3.05653174319284,53.492026168391 +-2.90584380518707,53.4932632990171 +-2.90393326060687,53.4033986764047 +-3.05430360338811,53.4021655704922 + + + + + +SJ39 +#labelStyle + +-2.98014567904551,53.4477418652427 + + + + +SJ40 + +Small Square SJ40 Boundry Box +#Line2 + + +1 + +-2.88717447962094,52.5944727760853 +-2.88899533722549,52.6843501135633 +-2.74109605941843,52.6853671074497 +-2.73957796806336,52.5954864878563 +-2.88717447962094,52.5944727760853 + + + + + +SJ40 +#labelStyle + +-2.81420365612395,52.6399468682746 + + + + +SJ41 + +Small Square SJ41 Boundry Box +#Line2 + + +1 + +-2.88899551981236,52.6843591021251 +-2.89082605725003,52.774235023121 +-2.74262237372954,52.7752553129094 +-2.74109621164537,52.6853760963404 +-2.88899551981236,52.6843591021251 + + + + + +SJ41 +#labelStyle + +-2.81587772091227,52.7298342051962 + + + + +SJ42 + +Small Square SJ42 Boundry Box +#Line2 + + +1 + +-2.89082624080841,52.7742440115411 +-2.89266652694871,52.8641185169713 +-2.74415681700601,52.8651421162204 +-2.7426225267665,52.7752643016598 +-2.89082624080841,52.7742440115411 + + + + + +SJ42 +#labelStyle + +-2.81756069336879,52.819720133012 + + + + +SJ43 + +Small Square SJ43 Boundry Box +#Line2 + + +1 + +-2.89266671148553,52.8641275052499 +-2.89451681586907,52.954000596041 +-2.74569944723948,52.9550275184104 +-2.74415697085876,52.8651511048307 +-2.89266671148553,52.8641275052499 + + + + + +SJ43 +#labelStyle + +-2.81925263695488,52.9096046526962 + + + + +SJ44 + +Small Square SJ44 Boundry Box +#Line2 + + +1 + +-2.8945170013913,52.9540095841782 +-2.89637699423784,53.043881261267 +-2.74725032298802,53.0449115205182 +-2.74569960191384,52.9550365068806 +-2.8945170013913,52.9540095841782 + + + + + +SJ44 +#labelStyle + +-2.82095361575101,52.9994877652334 + + + + +SJ45 + +Small Square SJ45 Boundry Box +#Line2 + + +1 + +-2.89637718075255,53.0438902492629 +-2.89824713296928,53.1337605135965 +-2.74880950338304,53.1347941235935 +-2.74725047848988,53.0449205088484 +-2.89637718075255,53.0438902492629 + + + + + +SJ45 +#labelStyle + +-2.82266369446429,53.0893694716193 + + + + +SJ46 + +Small Square SJ46 Boundry Box +#Line2 + + +1 + +-2.89824732048361,53.1337695014511 +-2.90012730367353,53.2236383539866 +-2.75037704813626,53.2246753286975 +-2.74880965971834,53.1348031117839 +-2.89824732048361,53.1337695014511 + + + + + +SJ46 +#labelStyle + +-2.82438293843605,53.1792497728599 + + + + +SJ47 + +Small Square SJ47 Boundry Box +#Line2 + + +1 + +-2.90012749219466,53.2236473417001 +-2.90201757866506,53.3135147834046 +-2.75195301754678,53.314555136902 +-2.750377205311,53.2246843167481 +-2.90012749219466,53.2236473417001 + + + + + +SJ47 +#labelStyle + +-2.82611141364962,53.269128669972 + + + + +SJ48 + +Small Square SJ48 Boundry Box +#Line2 + + +1 + +-2.90201776820025,53.313523770977 +-2.90391803097133,53.4033898028277 +-2.75353747250826,53.4044335492902 +-2.75195317556702,53.314564124813 +-2.90201776820025,53.313523770977 + + + + + +SJ48 +#labelStyle + +-2.82784918673813,53.3590061639829 + + + + +SJ49 + +Small Square SJ49 Boundry Box +#Line2 + + +1 + +-2.90391822152792,53.4033987902592 +-2.90582873434149,53.4932634132432 +-2.75513047451626,53.494310566956 +-2.75353763138012,53.4044425370616 +-2.90391822152792,53.4033987902592 + + + + + +SJ49 +#labelStyle + +-2.82959632499252,53.4488822559304 + + + + +SJ50 + +Small Square SJ50 Boundry Box +#Line2 + + +1 + +-2.73956320650886,52.5954865800402 +-2.74108126758124,52.6853671999321 +-2.59317392177996,52.6861996608981 +-2.59195868381262,52.5963163542489 +-2.73956320650886,52.5954865800402 + + + + + +SJ50 +#labelStyle + +-2.66643694941634,52.6408701880858 + + + + +SJ51 + +Small Square SJ51 Boundry Box +#Line2 + + +1 + +-2.74108141980515,52.6853761888228 +-2.74260755144567,52.7752554056915 +-2.59439574251691,52.7760905647019 +-2.59317404363822,52.6862086500581 +-2.74108141980515,52.6853761888228 + + + + + +SJ51 +#labelStyle + +-2.66780735402484,52.730760516139 + + + + +SJ52 + +Small Square SJ52 Boundry Box +#Line2 + + +1 + +-2.74260770447958,52.7752643944419 +-2.74414196411335,52.8651422093035 +-2.5956240707888,52.8659800774592 +-2.59439586502362,52.7760995537227 +-2.74260770447958,52.7752643944419 + + + + + +SJ52 +#labelStyle + +-2.66918505087418,52.820649447372 + + + + +SJ53 + +Small Square SJ53 Boundry Box +#Line2 + + +1 + +-2.74414211796303,52.8651511979138 +-2.74568456357475,52.9550276117957 +-2.59685895302346,52.95586820028 +-2.59562419394858,52.8659890663409 +-2.74414211796303,52.8651511979138 + + + + + +SJ53 +#labelStyle + +-2.67057009192102,52.9105369828502 + + + + +SJ54 + +Small Square SJ54 Boundry Box +#Line2 + + +1 + +-2.74568471824603,52.9550366002659 +-2.74723540838679,53.0449116142069 +-2.59810043610224,53.0457549342865 +-2.59685907684097,52.9558771890228 +-2.74568471824603,52.9550366002659 + + + + + +SJ54 +#labelStyle + +-2.67196252962898,53.0004231236504 + + + + +SJ55 + +Small Square SJ55 Boundry Box +#Line2 + + +1 + +-2.74723556388554,53.0449206025372 +-2.74879455767968,53.134794217587 +-2.59934856736554,53.1356402806127 +-2.5981005605822,53.0457639228905 +-2.74723556388554,53.0449206025372 + + + + + +SJ55 +#labelStyle + +-2.67336241697475,53.0903078708612 + + + + +SJ56 + +Small Square SJ56 Boundry Box +#Line2 + + +1 + +-2.74879471401186,53.1348032057774 +-2.75036207116396,53.2246754229969 +-2.60060339461839,53.2255242404045 +-2.5993486925127,53.135649269078 +-2.74879471401186,53.1348032057774 + + + + + +SJ56 +#labelStyle + +-2.67476980745434,53.1801912255827 + + + + +SJ57 + +Small Square SJ57 Boundry Box +#Line2 + + +1 + +-2.75036222833557,53.2246844110476 +-2.75193800913753,53.3145552315087 +-2.60186496613614,53.3154068148198 +-2.60060352043756,53.2255332287312 +-2.75036222833557,53.2246844110476 + + + + + +SJ57 +#labelStyle + +-2.67618475508939,53.2700731889264 + + + + +SJ58 + +Small Square SJ58 Boundry Box +#Line2 + + +1 + +-2.75193816715462,53.3145642194197 +-2.75352243249284,53.4044336442054 +-2.60313333067016,53.4052880050283 +-2.60186509263216,53.315415803008 +-2.75193816715462,53.3145642194197 + + + + + +SJ58 +#labelStyle + +-2.67760731443362,53.3599537620154 + + + + +SJ59 + +Small Square SJ59 Boundry Box +#Line2 + + +1 + +-2.75352259136153,53.4044426319769 +-2.75511540272421,53.4943106621812 +-2.60440853745375,53.4951678122115 +-2.60313345784794,53.4052969930782 +-2.75352259136153,53.4044426319769 + + + + + +SJ59 +#labelStyle + +-2.67903754057935,53.4498329459841 + + + + +SJ60 + +Small Square SJ60 Boundry Box +#Line2 + + +1 + +-2.59194392153685,52.5963164280361 +-2.59315912921638,52.6861997349243 +-2.44524532522164,52.686847642321 +-2.44433298616318,52.596962244168 +-2.59194392153685,52.5963164280361 + + + + + +SJ60 +#labelStyle + +-2.51866300456164,52.6416092436412 + + + + +SJ61 + +Small Square SJ61 Boundry Box +#Line2 + + +1 + +-2.59315925107161,52.6862087240842 +-2.59438091950148,52.776090638968 +-2.44616260641611,52.7767406464162 +-2.44524541670666,52.6868566316905 +-2.59315925107161,52.6862087240842 + + + + + +SJ61 +#labelStyle + +-2.51972969754597,52.7315019660597 + + + + +SJ62 + +Small Square SJ62 Boundry Box +#Line2 + + +1 + +-2.59438104200514,52.7760996279888 +-2.59560921715936,52.8659801519662 +-2.44708477326707,52.8666322681074 +-2.44616269838796,52.7767496356475 +-2.59438104200514,52.7760996279888 + + + + + +SJ62 +#labelStyle + +-2.52080206684297,52.8213933014937 + + + + +SJ63 + +Small Square SJ63 Boundry Box +#Line2 + + +1 + +-2.59560934031607,52.8659891408479 +-2.59684406861668,52.9558682750289 +-2.44801186063313,52.956522508569 +-2.44708486572923,52.8666412572005 +-2.59560934031607,52.8659891408479 + + + + + +SJ63 +#labelStyle + +-2.52188015289858,52.9112832510817 + + + + +SJ64 + +Small Square SJ64 Boundry Box +#Line2 + + +1 + +-2.59684419243111,52.9558772637717 +-2.59808552075363,53.0457550092783 +-2.4489439037134,53.046411368988 +-2.44801195358908,52.9565314975241 +-2.59684419243111,52.9558772637717 + + + + + +SJ64 +#labelStyle + +-2.5229639965534,53.0011718159743 + + + + +SJ65 + +Small Square SJ65 Boundry Box +#Line2 + + +1 + +-2.59808564523049,53.0457639978823 +-2.59933362090943,53.1356403558484 +-2.44988093805169,53.136298850564 +-2.4489439971667,53.0464203578051 +-2.59808564523049,53.0457639978823 + + + + + +SJ65 +#labelStyle + +-2.52405363904748,53.0910589973346 + + + + +SJ66 + +Small Square SJ66 Boundry Box +#Line2 + + +1 + +-2.59933374605347,53.1356493443137 +-2.60058841688792,53.2255243158852 +-2.45082299954069,53.226184954509 +-2.44988103200591,53.1363078392432 +-2.59933374605347,53.1356493443137 + + + + + +SJ66 +#labelStyle + +-2.52514912202514,53.1809447963378 + + + + +SJ67 + +Small Square SJ67 Boundry Box +#Line2 + + +1 + +-2.60058854270395,53.2255333042119 +-2.60184995696323,53.3154068905465 +-2.45177012442621,53.3160696820476 +-2.45082309399943,53.2261939430505 +-2.60058854270395,53.2255333042119 + + + + + +SJ67 +#labelStyle + +-2.52625048753996,53.2708292141714 + + + + +SJ68 + +Small Square SJ68 Boundry Box +#Line2 + + +1 + +-2.6018500834561,53.3154158787347 +-2.60311828988555,53.405288081002 +-2.45272234931153,53.4059530344172 +-2.45177021939311,53.3160786704516 +-2.6018500834561,53.3154158787347 + + + + + +SJ68 +#labelStyle + +-2.52735777805971,53.3607122520351 + + + + +SJ69 + +Small Square SJ69 Boundry Box +#Line2 + + +1 + +-2.60311841706016,53.4052970690518 +-2.60439346488693,53.4951678884332 +-2.45367971116175,53.4958350128671 +-2.45272244479027,53.4059620226837 +-2.60311841706016,53.4052970690518 + + + + + +SJ69 +#labelStyle + +-2.52847103647149,53.4505939111409 + + + + +SJ70 + +Small Square SJ70 Boundry Box +#Line2 + + +1 + +-2.44431822332602,52.5969622995567 +-2.4452305320927,52.686847697889 +-2.29731188014762,52.6873110356447 +-2.29670247417321,52.5974241416445 +-2.44431822332602,52.5969622995567 + + + + + +SJ70 +#labelStyle + +-2.37088342607175,52.6421640166387 + + + + +SJ71 + +Small Square SJ71 Boundry Box +#Line2 + + +1 + +-2.44523062357467,52.6868566872586 +-2.44614778283129,52.7767407021644 +-2.29792458728864,52.7772055418731 +-2.29731194125595,52.6873200251642 +-2.44523062357467,52.6868566872586 + + + + + +SJ71 +#labelStyle + +-2.37164636738712,52.7320585365361 + + + + +SJ72 + +Small Square SJ72 Boundry Box +#Line2 + + +1 + +-2.44614787480008,52.7767496913956 +-2.44706991906418,52.8666323240364 +-2.29854055787135,52.8670986718796 +-2.29792464872216,52.7772145312548 +-2.44614787480008,52.7767496913956 + + + + + +SJ72 +#labelStyle + +-2.37241336869715,52.8219516768339 + + + + +SJ73 + +Small Square SJ73 Boundry Box +#Line2 + + +1 + +-2.44707001152326,52.8666413131295 +-2.44799697564879,52.9565225646797 +-2.29915981518102,52.9569904268845 +-2.29854061963237,52.8671076611238 +-2.44707001152326,52.8666413131295 + + + + + +SJ73 +#labelStyle + +-2.37318445893233,52.9118434387253 + + + + +SJ74 + +Small Square SJ74 Boundry Box +#Line2 + + +1 + +-2.44799706860166,52.9565315536347 +-2.44892898778308,53.046411425281 +-2.29978238273041,53.0468808081214 +-2.29915987727188,52.9569994159913 +-2.44799706860166,52.9565315536347 + + + + + +SJ74 +#labelStyle + +-2.37395966730548,53.0017338234165 + + + + +SJ75 + +Small Square SJ75 Boundry Box +#Line2 + + +1 + +-2.44892908123328,53.0464204140981 +-2.44986599100969,53.1362989070401 +-2.30040828426254,53.1367698168366 +-2.29978244515348,53.0468897970909 +-2.44892908123328,53.0464204140981 + + + + + +SJ75 +#labelStyle + +-2.37473902331512,53.0916228321263 + + + + +SJ76 + +Small Square SJ76 Boundry Box +#Line2 + + +1 + +-2.44986608496079,53.1363078957193 +-2.45080802122011,53.226185011169 +-2.30103754375349,53.2266574542896 +-2.30040834702021,53.1367788056689 +-2.44986608496079,53.1363078957193 + + + + + +SJ76 +#labelStyle + +-2.375522556749,53.1815104660865 + + + + +SJ77 + +Small Square SJ77 Boundry Box +#Line2 + + +1 + +-2.45080811567571,53.2261939997105 +-2.45175511465893,53.3160697388923 +-2.30167018541523,53.3165437217528 +-2.30103760684816,53.2266664429848 +-2.45080811567571,53.2261939997105 + + + + + +SJ77 +#labelStyle + +-2.37631029768757,53.2713967265416 + + + + +SJ78 + +Small Square SJ78 Boundry Box +#Line2 + + +1 + +-2.45175520962268,53.3160787272963 +-2.45270730792823,53.4059530914472 +-2.30230623369853,53.4064286205116 +-2.30167024884933,53.3165527103111 +-2.45175520962268,53.3160787272963 + + + + + +SJ78 +#labelStyle + +-2.37710227650763,53.361281614749 + + + + +SJ79 + +Small Square SJ79 Boundry Box +#Line2 + + +1 + +-2.45270740340381,53.4059620797138 +-2.45366463799189,53.4958350700834 +-2.30294571329587,53.4963121518643 +-2.30230629747453,53.4064376089331 +-2.45270740340381,53.4059620797138 + + + + + +SJ79 +#labelStyle + +-2.37789852388588,53.4511651319786 + + + + +SJ80 + +Small Square SJ80 Boundry Box +#Line2 + + +1 + +-2.29668771093459,52.5974241786332 +-2.29729708661436,52.6873110727533 +-2.14937519729412,52.6875898293745 +-2.14906874722905,52.5977020352583 +-2.29668771093459,52.5974241786332 + + + + + +SJ80 +#labelStyle + +-2.22309981884349,52.6425344933393 + + + + +SJ81 + +Small Square SJ81 Boundry Box +#Line2 + + +1 + +-2.29729714771965,52.6873200622728 +-2.29790976329663,52.7772055791019 +-2.14968330733215,52.7774852395023 +-2.14937522802347,52.6875988189842 +-2.29729714771965,52.6873200622728 + + + + + +SJ81 +#labelStyle + +-2.22355897984934,52.7324302137392 + + + + +SJ82 + +Small Square SJ82 Boundry Box +#Line2 + + +1 + +-2.29790982472709,52.7772145684837 +-2.29852570325836,52.8670987092292 +-2.14999305837237,52.8673792771292 +-2.14968333822502,52.7774942289747 +-2.29790982472709,52.7772145684837 + + + + + +SJ82 +#labelStyle + +-2.22402058425301,52.8223245594726 + + + + +SJ83 + +Small Square SJ83 Boundry Box +#Line2 + + +1 + +-2.29852576501631,52.8671076984735 +-2.29914492978365,52.9569904643555 +-2.15030446212402,52.9572719435033 +-2.14999308942992,52.8673882664644 +-2.29852576501631,52.8671076984735 + + + + + +SJ83 +#labelStyle + +-2.22448464946617,52.9122175317694 + + + + +SJ84 + +Small Square SJ84 Boundry Box +#Line2 + + +1 + +-2.29914499187143,52.9569994534623 +-2.2997674663841,53.0468808457142 +-2.15061753041072,53.0471632398859 +-2.15030449334743,52.9572809327014 +-2.29914499187143,52.9569994534623 + + + + + +SJ84 +#labelStyle + +-2.22495119307038,53.0021091318727 + + + + +SJ85 + +Small Square SJ85 Boundry Box +#Line2 + + +1 + +-2.29976752880407,53.0468898346837 +-2.30039333680156,53.1367698545517 +-2.15093227517192,53.1370531675517 +-2.15061756180118,53.0471722289471 +-2.29976752880407,53.0468898346837 + + + + + +SJ85 +#labelStyle + +-2.22542023281922,53.0919993610388 + + + + +SJ86 + +Small Square SJ86 Boundry Box +#Line2 + + +1 + +-2.3003933995561,53.136778843384 +-2.30102256501089,53.2266574921275 +-2.15124870846422,53.2269417277886 +-2.15093230673063,53.1370621564761 +-2.3003933995561,53.136778843384 + + + + + +SJ86 +#labelStyle + +-2.22589178664028,53.1818882205371 + + + + +SJ87 + +Small Square SJ87 Boundry Box +#Line2 + + +1 + +-2.30102262810243,53.2266664808227 +-2.30165517522289,53.316543759714 +-2.15156684246288,53.3168289218978 +-2.15124874019239,53.2269507165763 +-2.30102262810243,53.2266664808227 + + + + + +SJ87 +#labelStyle + +-2.22636587263739,53.2717757116503 + + + + +SJ88 + +Small Square SJ88 Boundry Box +#Line2 + + +1 + +-2.30165523865384,53.3165527482723 +-2.30229119188709,53.4064286585967 +-2.15188668946325,53.4067147511936 +-2.15156687436174,53.3168379105489 +-2.30165523865384,53.3165527482723 + + + + + +SJ88 +#labelStyle + +-2.22684250909267,53.361661835674 + + + + +SJ89 + +Small Square SJ89 Boundry Box +#Line2 + + +1 + +-2.30229125565992,53.4064376470181 +-2.30293063969476,53.4963121900737 +-2.1522082618822,53.4965992170038 +-2.15188672153402,53.4067237397083 +-2.30229125565992,53.4064376470181 + + + + + +SJ89 +#labelStyle + +-2.22732171446879,53.4515465939173 + + + + +SJ90 + +Small Square SJ90 Boundry Box +#Line2 + + +1 + +-2.14905398374892,52.5977020538463 +-2.14936040351763,52.6875898480227 +-2.00143688761919,52.6876840165955 +-2.00143340493619,52.5977959181395 +-2.14905398374892,52.5977020538463 + + + + + +SJ90 +#labelStyle + +-2.07531378804896,52.6427206645685 + + + + +SJ91 + +Small Square SJ91 Boundry Box +#Line2 + + +1 + +-2.14936043424394,52.6875988376324 +-2.14966848309519,52.777485258211 +-2.00144038896877,52.7775797323436 +-2.00143688796841,52.6876930062357 +-2.14936043424394,52.6875988376324 + + + + + +SJ91 +#labelStyle + +-2.07546915151232,52.7326169884343 + + + + +SJ92 + +Small Square SJ92 Boundry Box +#Line2 + + +1 + +-2.149668513985,52.7774942476833 +-2.14997820351267,52.8673792958986 +-2.00144390876809,52.8674740768502 +-2.00144038931983,52.7775887218465 +-2.149668513985,52.7774942476833 + + + + + +SJ92 +#labelStyle + +-2.07562534160885,52.8225119401145 + + + + +SJ93 + +Small Square SJ93 Boundry Box +#Line2 + + +1 + +-2.14997823456716,52.8673882852338 +-2.15028957647818,52.9572719623337 +-2.00144744714897,52.9573670513729 +-2.00144390912099,52.8674830662162 +-2.14997823456716,52.8673882852338 + + + + + +SJ93 +#labelStyle + +-2.07578236422936,52.9124055208573 + + + + +SJ94 + +Small Square SJ94 Boundry Box +#Line2 + + +1 + +-2.1502896076985,52.9572809515318 +-2.15060261381416,53.0471632587775 +-2.00145100424456,53.0472586571825 +-2.00144744750375,52.9573760406019 +-2.1502896076985,52.9572809515318 + + + + + +SJ94 +#labelStyle + +-2.07594022532215,53.0022977319246 + + + + +SJ95 + +Small Square SJ95 Boundry Box +#Line2 + + +1 + +-2.15060264520152,53.0471722478387 +-2.15091732745888,53.1370531865048 +-2.00145458018926,53.137148895563 +-2.00145100460121,53.0472676462747 +-2.15060264520152,53.0471722478387 + + + + + +SJ95 +#labelStyle + +-2.0760989308937,53.0921885745912 + + + + +SJ96 + +Small Square SJ96 Boundry Box +#Line2 + + +1 + +-2.15091735901447,53.1370621754291 +-2.15123372946775,53.2269417468034 +-2.00145817511882,53.2270377678122 +-2.0014545805478,53.1371578845185 +-2.15091735901447,53.1370621754291 + + + + + +SJ96 +#labelStyle + +-2.07625848700939,53.1820780501458 + + + + +SJ97 + +Small Square SJ97 Boundry Box +#Line2 + + +1 + +-2.15123376119278,53.2269507355911 +-2.15155183201484,53.3168289409746 +-2.00146178917032,53.3169252752408 +-2.00145817547926,53.2270467566311 +-2.15123376119278,53.2269507355911 + + + + + +SJ97 +#labelStyle + +-2.0764188997942,53.27196615989 + + + + +SJ98 + +Small Square SJ98 Boundry Box +#Line2 + + +1 + +-2.15155186391053,53.3168379296257 +-2.15187164739425,53.4067147703327 +-2.00146542248218,53.4068114191732 +-2.00146178953268,53.3169342639234 +-2.15155186391053,53.3168379296257 + + + + + +SJ98 +#labelStyle + +-2.07658017543344,53.3618529051389 + + + + +SJ99 + +Small Square SJ99 Boundry Box +#Line2 + + +1 + +-2.15187167946185,53.4067237588474 +-2.15219318802164,53.4965992362054 +-2.00146907519421,53.4966962009469 +-2.00146542284648,53.4068204077195 +-2.15187167946185,53.4067237588474 + + + + + +SJ99 +#labelStyle + +-2.07674232017352,53.451738287221 + + + + + +SK + +Large Square SK Boundry Box +#Line1 + + +1 + +-2.00141864137451,52.5977959183263 +-2.00145400124606,53.4966962011402 +-0.494359718875241,53.4872134352203 +-0.525342989449434,52.5886158985577 +-2.00141864137451,52.5977959183263 + + + + + +SK00 + +Small Square SK00 Boundry Box +#Line2 + + +1 + +-2.00141864137451,52.5977959183263 +-2.00142209376059,52.6876840167829 +-1.85349856219234,52.6875935949731 +-1.85379804701024,52.5977057879689 +-2.00141864137451,52.5977959183263 + + + + + +SK00 +#labelStyle + +-1.92752693902591,52.642722525717 + + + + +SK01 + +Small Square SK01 Boundry Box +#Line2 + + +1 + +-2.00142209410677,52.687693006423 +-2.0014255646491,52.7775797325315 +-1.85319745473343,52.777489018047 +-1.85349853216142,52.687602584584 +-2.00142209410677,52.687693006423 + + + + + +SK01 +#labelStyle + +-1.92737849912336,52.7326188559819 + + + + +SK02 + +Small Square SK02 Boundry Box +#Line2 + + +1 + +-2.0014255649971,52.7775887220345 +-2.00142905382509,52.8674740770389 +-1.85289474317061,52.8673830686773 +-1.85319742454266,52.7774980075206 +-2.0014255649971,52.7775887220345 + + + + + +SK02 +#labelStyle + +-1.92722926903261,52.8225138140896 + + + + +SK03 + +Small Square SK03 Boundry Box +#Line2 + + +1 + +-2.00142905417493,52.8674830664048 +-2.00143256141924,52.9573670515622 +-1.8525904160583,52.9572757481125 +-1.85289471281886,52.8673920580137 +-2.00142905417493,52.8674830664048 + + + + + +SK03 +#labelStyle + +-1.92707924312293,52.9124074012884 + + + + +SK04 + +Small Square SK04 Boundry Box +#Line2 + + +1 + +-2.00143256177093,52.9573760407912 +-2.0014360875635,53.0472586573724 +-1.85228446183909,53.0471670576144 +-1.85259038554442,52.9572847373119 +-2.00143256177093,52.9573760407912 + + + + + +SK04 +#labelStyle + +-1.92692841570864,53.0022996188403 + + + + +SK05 + +Small Square SK05 Boundry Box +#Line2 + + +1 + +-2.00143608791705,53.0472676464646 +-2.00143963239111,53.1371488957536 +-1.8519768688424,53.137056998458 +-1.85228443116192,53.0471760466769 +-2.00143608791705,53.0472676464646 + + + + + +SK05 +#labelStyle + +-1.92677678104845,53.0921904680205 + + + + +SK06 + +Small Square SK06 Boundry Box +#Line2 + + +1 + +-2.00143963274654,53.1371578847091 +-2.00144319603663,53.2270377680034 +-1.85166762528306,53.2269455719317 +-1.85197683800076,53.1370659873837 +-2.00143963274654,53.1371578847091 + + + + + +SK06 +#labelStyle + +-1.92662433334477,53.1820799501178 + + + + +SK07 + +Small Square SK07 Boundry Box +#Line2 + + +1 + +-2.00144319639394,53.2270467568224 +-2.00144677863593,53.3169252754328 +-1.85135671925997,53.3168327793371 +-1.85166759427577,53.2269545607207 +-2.00144319639394,53.2270467568224 + + + + + +SK07 +#labelStyle + +-1.92647106674304,53.2719680664341 + + + + +SK08 + +Small Square SK08 Boundry Box +#Line2 + + +1 + +-2.00144677899514,53.3169342641153 +-2.00145038032621,53.4068114193658 +-1.85104413875462,53.4067186219891 +-1.85135668808583,53.3168417679896 +-2.00144677899514,53.3169342641153 + + + + + +SK08 +#labelStyle + +-1.92631697533101,53.3618548182847 + + + + +SK09 + +Small Square SK09 Boundry Box +#Line2 + + +1 + +-2.00145038068734,53.4068204079121 +-2.00145400124606,53.4966962011402 +-1.85072987162972,53.4966031012158 +-1.85104410741244,53.4067276105052 +-2.00145038068734,53.4068204079121 + + + + + +SK09 +#labelStyle + +-1.92616205313807,53.4517402069982 + + + + +SK10 + +Small Square SK10 Boundry Box +#Line2 + + +1 + +-1.853783283527,52.5977057697543 +-1.85348376841272,52.6875935766996 +-1.70556183208414,52.6873185667533 +-1.7061642731679,52.5974316469778 +-1.853783283527,52.5977057697543 + + + + + +SK10 +#labelStyle + +-1.779740877168,52.6425400767411 + + + + +SK11 + +Small Square SK11 Boundry Box +#Line2 + + +1 + +-1.85348373837876,52.6876025663105 +-1.8531826304933,52.7774889997143 +-1.70495612716213,52.7772130988733 +-1.7055617716742,52.6873275562753 +-1.85348373837876,52.6876025663105 + + + + + +SK11 +#labelStyle + +-1.77928863948635,52.7324358163382 + + + + +SK12 + +Small Square SK12 Boundry Box +#Line2 + + +1 + +-1.85318260029948,52.7774979891879 +-1.85287988830773,52.8673830502852 +-1.70434719569315,52.8671062548859 +-1.70495606643068,52.7772220882576 +-1.85318260029948,52.7774979891879 + + + + + +SK12 +#labelStyle + +-1.7788339948495,52.8223301813536 + + + + +SK13 + +Small Square SK13 Boundry Box +#Line2 + + +1 + +-1.8528798579529,52.8673920396216 +-1.85257553040925,52.9572757296607 +-1.70373501465551,52.9569980360125 +-1.70434713463789,52.8671152441328 +-1.8528798579529,52.8673920396216 + + + + + +SK13 +#labelStyle + +-1.77837692610584,52.9122231730179 + + + + +SK14 + +Small Square SK14 Boundry Box +#Line2 + + +1 + +-1.85257549989228,52.9572847188601 +-1.8522695452393,53.0471670391027 +-1.70311956080264,53.0468884434873 +-1.70373495327414,52.957007025122 +-1.85257549989228,52.9572847188601 + + + + + +SK14 +#labelStyle + +-1.77791741593638,53.0021147925749 + + + + +SK15 + +Small Square SK15 Boundry Box +#Line2 + + +1 + +-1.85226951455903,53.0471760281652 +-1.85196192112611,53.1370569798861 +-1.70250081066032,53.1367774785576 +-1.70311949909282,53.0468974324594 +-1.85226951455903,53.0471760281652 + + + + + +SK15 +#labelStyle + +-1.77745544685272,53.0920050412815 + + + + +SK16 + +Small Square SK16 Boundry Box +#Line2 + + +1 + +-1.85196189028135,53.1370659688118 +-1.85165264628331,53.2269455532994 +-1.70187874052389,53.2266651424836 +-1.70250074861969,53.1367864673925 +-1.85196189028135,53.1370659688118 + + + + + +SK16 +#labelStyle + +-1.77699100119501,53.1818939204076 + + + + +SK17 + +Small Square SK17 Boundry Box +#Line2 + + +1 + +-1.85165261527289,53.2269545420884 +-1.85134170880861,53.3168327606442 +-1.70125332645546,53.3165514365386 +-1.70187867815006,53.2266741311815 +-1.85165261527289,53.2269545420884 + + + + + +SK17 +#labelStyle + +-1.77652406112983,53.2717814312367 + + + + +SK18 + +Small Square SK18 Boundry Box +#Line2 + + +1 + +-1.85134167763132,53.3168417492966 +-1.85102909668229,53.4067186032352 +-1.70062454428106,53.406436362009 +-1.70125326374603,53.3165604250996 +-1.85134167763132,53.3168417492966 + + + + + +SK18 +#labelStyle + +-1.77605460864808,53.3616675750651 + + + + +SK19 + +Small Square SK19 Boundry Box +#Line2 + + +1 + +-1.85102906533693,53.4067275917513 +-1.85071479776581,53.4966030824007 +-1.69999236958775,53.4963199201938 +-1.70062448123361,53.4064453504331 +-1.85102906533693,53.4067275917513 + + + + + +SK19 +#labelStyle + +-1.77558262556284,53.4515523532024 + + + + +SK20 + +Small Square SK20 Boundry Box +#Line2 + + +1 + +-1.70614950992306,52.5974316103624 +-1.70554703854461,52.6873185300194 +-1.55762830825586,52.6868589387627 +-1.55853368301784,52.5969735019483 +-1.70614950992306,52.5974316103624 + + + + + +SK20 +#labelStyle + +-1.63195720781508,52.642173322163 + + + + +SK21 + +Small Square SK21 Boundry Box +#Line2 + + +1 + +-1.70554697813163,52.6873275195415 +-1.70494130316381,52.7772130620204 +-1.5567180286803,52.7767519816937 +-1.55762821746917,52.6868679281361 +-1.70554697813163,52.6873275195415 + + + + + +SK21 +#labelStyle + +-1.63120118935074,52.7320678740546 + + + + +SK22 + +Small Square SK22 Boundry Box +#Line2 + + +1 + +-1.7049412424293,52.7772220514047 +-1.70433234107379,52.8671062179135 +-1.55580290033697,52.8666436423927 +-1.55671793741045,52.7767609709289 +-1.7049412424293,52.7772220514047 + + + + + +SK22 +#labelStyle + +-1.63044114732964,52.821961046488 + + + + +SK23 + +Small Square SK23 Boundry Box +#Line2 + + +1 + +-1.70433228001546,52.8671152071604 +-1.70372012925173,52.9569979989201 +-1.55488288863082,52.9565339220352 +-1.55580280858052,52.8666526314897 +-1.70433228001546,52.8671152071604 + + + + + +SK23 +#labelStyle + +-1.62967705308131,52.9118528406577 + + + + +SK24 + +Small Square SK24 Boundry Box +#Line2 + + +1 + +-1.70372006786727,52.9570069880295 +-1.70310464444988,53.0468884062744 +-1.55395795862883,53.0464228218094 +-1.55488279638429,52.9565429109941 +-1.70372006786727,52.9570069880295 + + + + + +SK24 +#labelStyle + +-1.62890887765545,53.0017432577706 + + + + +SK25 + +Small Square SK25 Boundry Box +#Line2 + + +1 + +-1.70310458273695,53.0468973952465 +-1.70248586319283,53.1367774412237 +-1.5530280750559,53.1363103429163 +-1.55395786588872,53.0464318106304 +-1.70310458273695,53.0468973952465 + + + + + +SK25 +#labelStyle + +-1.62813659181865,53.0916322990468 + + + + +SK26 + +Small Square SK26 Boundry Box +#Line2 + + +1 + +-1.70248580114907,53.1367864300586 +-1.70186376177473,53.2266651050282 +-1.55209320229071,53.2261964865691 +-1.55302798181866,53.1363193315995 +-1.70248580114907,53.1367864300586 + + + + + +SK26 +#labelStyle + +-1.62736016605085,53.181519965719 + + + + +SK27 + +Small Square SK27 Boundry Box +#Line2 + + +1 + +-1.70186369939777,53.2266740937261 +-1.7012383162565,53.3165513989613 +-1.55115330436145,53.3160812539939 +-1.55209310855276,53.2262054751146 +-1.70186369939777,53.2266740937261 + + + + + +SK27 +#labelStyle + +-1.62657957054191,53.271406259033 + + + + +SK28 + +Small Square SK28 Boundry Box +#Line2 + + +1 + +-1.70123825354393,53.3165603875222 +-1.70060950246296,53.4064363243091 +-1.55020834494157,53.4059646464291 +-1.55115321011917,53.3160902424019 +-1.70123825354393,53.3165603875222 + + + + + +SK28 +#labelStyle + +-1.62579477518805,53.3612911802469 + + + + +SK29 + +Small Square SK29 Boundry Box +#Line2 + + +1 + +-1.70060943941234,53.4064453127332 +-1.69997729597991,53.4963198823709 +-1.54925828734539,53.4958466651257 +-1.5502082501913,53.4059736346997 +-1.70060943941234,53.4064453127332 + + + + + +SK29 +#labelStyle + +-1.62500574958821,53.451174730632 + + + + +SK30 + +Small Square SK30 Boundry Box +#Line2 + + +1 + +-1.55851892017135,52.596973446933 +-1.55761351511751,52.6868588835693 +-1.40969960144913,52.6862147224075 +-1.41090787595172,52.5963313642127 +-1.55851892017135,52.596973446933 + + + + + +SK30 +#labelStyle + +-1.48417753614352,52.6416222710698 + + + + +SK31 + +Small Square SK31 Boundry Box +#Line2 + + +1 + +-1.55761342432778,52.6868678729427 +-1.556703205086,52.7767519263215 +-1.40848478149101,52.7761056779895 +-1.40969948028911,52.6862237115726 +-1.55761342432778,52.6868678729427 + + + + + +SK31 +#labelStyle + +-1.4831177653005,52.731515038278 + + + + +SK32 + +Small Square SK32 Boundry Box +#Line2 + + +1 + +-1.5567031138131,52.7767609155567 +-1.55578804612452,52.8666435868409 +-1.40726349087833,52.8659952427542 +-1.40848465968622,52.7761146670155 +-1.5567031138131,52.7767609155567 + + + + + +SK32 +#labelStyle + +-1.48205235457568,52.8214064186999 + + + + +SK33 + +Small Square SK33 Boundry Box +#Line2 + + +1 + +-1.55578795436501,52.8666525759379 +-1.55486800363686,52.9565338663031 +-1.40603568344669,52.9558834178131 +-1.40726336842417,52.8660042316411 +-1.55578795436501,52.8666525759379 + + + + + +SK33 +#labelStyle + +-1.48098126378301,52.9112964134751 + + + + +SK34 + +Small Square SK34 Boundry Box +#Line2 + + +1 + +-1.55486791138725,52.956542855262 +-1.55394304268882,53.0464227658963 +-1.40480131258076,53.0457702042903 +-1.40603556033853,52.9558924065612 +-1.55486791138725,52.956542855262 + + + + + +SK34 +#labelStyle + +-1.47990445234435,53.001185023756 + + + + +SK35 + +Small Square SK35 Boundry Box +#Line2 + + +1 + +-1.55394294994561,53.0464317547173 +-1.55301312800414,53.1363102868213 +-1.40356033120872,53.1356556033213 +-1.4048011888139,53.0457791928996 +-1.55394294994561,53.0464317547173 + + + + + +SK35 +#labelStyle + +-1.47882187928467,53.0910722507069 + + + + +SK36 + +Small Square SK36 Boundry Box +#Line2 + + +1 + +-1.55301303476378,53.1363192755045 +-1.55207822396028,53.2261964302916 +-1.40231269179679,53.2255396160539 +-1.40356020677844,53.1356645917919 +-1.55301303476378,53.1363192755045 + + + + + +SK36 +#labelStyle + +-1.47773350322723,53.1809580955047 + + + + +SK37 + +Small Square SK37 Boundry Box +#Line2 + + +1 + +-1.55207813021919,53.2262054188371 +-1.55113829458425,53.3160811975331 +-1.40105834634354,53.3154222436477 +-1.40231256669831,53.2255486043859 +-1.55207813021919,53.2262054188371 + + + + + +SK37 +#labelStyle + +-1.47663928238871,53.2708425593383 + + + + +SK38 + +Small Square SK38 Boundry Box +#Line2 + + +1 + +-1.55113820033881,53.316090185941 +-1.55019330354827,53.4059645897842 +-1.39979724637418,53.405303487274 +-1.40105822057204,53.3154312318412 +-1.55113820033881,53.316090185941 + + + + + +SK38 +#labelStyle + +-1.47553917457421,53.360725643409 + + + + +SK39 + +Small Square SK39 Boundry Box +#Line2 + + +1 + +-1.55019320879484,53.4059735780547 +-1.54924321416546,53.4958466082959 +-1.39852934293477,53.4951833481162 +-1.3997971199248,53.4053124753292 +-1.55019320879484,53.4059735780547 + + + + + +SK39 +#labelStyle + +-1.47443313717224,53.4506073489302 + + + + +SK40 + +Small Square SK40 Boundry Box +#Line2 + + +1 + +-1.4108931136635,52.5963312907988 +-1.40968480887302,52.686214648756 +-1.26177732207562,52.685385933673 +-1.26328845103515,52.5955052496521 +-1.4108931136635,52.5963312907988 + + + + + +SK40 +#labelStyle + +-1.33640346705648,52.6408869371134 + + + + +SK41 + +Small Square SK41 Boundry Box +#Line2 + + +1 + +-1.40968468770996,52.6862236379211 +-1.40846995846296,52.7761056040994 +-1.26025800746342,52.7752742038507 +-1.26177717054681,52.6853949225701 +-1.40968468770996,52.6862236379211 + + + + + +SK41 +#labelStyle + +-1.33503998364312,52.7307773227497 + + + + +SK42 + +Small Square SK42 Boundry Box +#Line2 + + +1 + +-1.40846983665511,52.7761145931254 +-1.40724863723616,52.8659951686244 +-1.25873060075549,52.8651610721662 +-1.26025785512827,52.7752831926076 +-1.40846983665511,52.7761145931254 + + + + + +SK42 +#labelStyle + +-1.3336692444104,52.8206663118204 + + + + +SK43 + +Small Square SK43 Boundry Box +#Line2 + + +1 + +-1.40724851477893,52.8660041575114 +-1.40602079902709,52.9558833434428 +-1.25719504422351,52.9550465396492 +-1.25873044760825,52.865170060783 +-1.40724851477893,52.8660041575114 + + + + + +SK43 +#labelStyle + +-1.33229119766143,52.9105539053928 + + + + +SK44 + +Small Square SK44 Boundry Box +#Line2 + + +1 + +-1.40602067591584,52.9558923321908 +-1.40478639721922,53.0457701296783 +-1.25565127957526,53.0449306073405 +-1.25719489025838,52.9550555281259 +-1.40602067591584,52.9558923321908 + + + + + +SK44 +#labelStyle + +-1.33090579119493,53.0004401045455 + + + + +SK45 + +Small Square SK45 Boundry Box +#Line2 + + +1 + +-1.40478627344926,53.0457791182876 +-1.40354538473958,53.1356555284667 +-1.25409924794782,53.134813276292 +-1.25565112478639,53.0449395956773 +-1.40478627344926,53.0457791182876 + + + + + +SK45 +#labelStyle + +-1.3295129722991,53.0903249103691 + + + + +SK46 + +Small Square SK46 Boundry Box +#Line2 + + +1 + +-1.40354526030619,53.1356645169373 +-1.40229771405319,53.2255395409557 +-1.25253888990056,53.224694547567 +-1.25409909232929,53.134822264489 +-1.40354526030619,53.1356645169373 + + + + + +SK46 +#labelStyle + +-1.32811268774541,53.1802083239655 + + + + +SK47 + +Small Square SK47 Boundry Box +#Line2 + + +1 + +-1.40229758895158,53.2255485292877 +-1.40104333715741,53.3154221683048 +-1.25097014540816,53.3145744222396 +-1.2525387334464,53.2247035356243 +-1.40229758895158,53.2255485292877 + + + + + +SK47 +#labelStyle + +-1.32670488378234,53.2700903464481 + + + + +SK48 + +Small Square SK48 Boundry Box +#Line2 + + +1 + +-1.40104321138276,53.3154311564983 +-1.39978220557624,53.4053034116855 +-1.24939295385341,53.404452901395 +-1.25096998811233,53.3145834101572 +-1.40104321138276,53.3154311564983 + + + + + +SK48 +#labelStyle + +-1.32528950612891,53.3599709789421 + + + + +SK49 + +Small Square SK49 Boundry Box +#Line2 + + +1 + +-1.39978207912369,53.4053123997407 +-1.39851427035452,53.4951832722809 +-1.24780725401995,53.4943299861296 +-1.24939279570982,53.4044618891732 +-1.39978207912369,53.4053123997407 + + + + + +SK49 +#labelStyle + +-1.3238664999683,53.4498502225838 + + + + +SK50 + +Small Square SK50 Boundry Box +#Line2 + + +1 + +-1.2632736894651,52.5955051578416 +-1.26176253022277,52.6853858415652 +-1.11386308010676,52.6843725931218 +-1.11567700689877,52.5944951786958 +-1.2632736894651,52.5955051578416 + + + + + +SK50 +#labelStyle + +-1.18863660507431,52.6399673385087 + + + + +SK51 + +Small Square SK51 Boundry Box +#Line2 + + +1 + +-1.26176237869092,52.6853948304623 +-1.26024318516376,52.7752741114445 +-1.1120393280211,52.7742575799749 +-1.11386289821486,52.6843815816913 +-1.26176237869092,52.6853948304623 + + + + + +SK51 +#labelStyle + +-1.18696946029865,52.7298547458039 + + + + +SK52 + +Small Square SK52 Boundry Box +#Line2 + + +1 + +-1.26024303282556,52.7752831002014 +-1.25871574784692,52.8651609794603 +-1.11020586295576,52.8641411514626 +-1.11203914516134,52.7742665684028 +-1.26024303282556,52.7752831002014 + + + + + +SK52 +#labelStyle + +-1.1852934442645,52.8197407443046 + + + + +SK53 + +Small Square SK53 Boundry Box +#Line2 + + +1 + +-1.25871559469662,52.8651699680771 +-1.25718016054275,52.9550464466424 +-1.10836261562519,52.9540233085144 +-1.11020567912125,52.864150139749 +-1.25871559469662,52.8651699680771 + + + + + +SK53 +#labelStyle + +-1.18360849377015,52.909625334987 + + + + +SK54 + +Small Square SK54 Boundry Box +#Line2 + + +1 + +-1.25718000657454,52.9550554351191 +-1.25563636495787,53.0449305140315 +-1.1065095160672,53.0439040520696 +-1.10836243080897,52.9540322966594 +-1.25718000657454,52.9550554351191 + + + + + +SK54 +#labelStyle + +-1.1819145449973,52.9995085188382 + + + + +SK55 + +Small Square SK55 Boundry Box +#Line2 + + +1 + +-1.2556362101659,53.0449395023683 +-1.25408430222818,53.1348131826797 +-1.10464649363465,53.1337833830779 +-1.10650933026224,53.0439130400733 +-1.2556362101659,53.0449395023683 + + + + + +SK55 +#labelStyle + +-1.18021153350361,53.089390296856 + + + + +SK56 + +Small Square SK56 Boundry Box +#Line2 + + +1 + +-1.25408414660653,53.1348221708766 +-1.25252391291186,53.22469445365 +-1.10277347698715,53.223661302499 +-1.10464630683384,53.1337923709404 +-1.25408414660653,53.1348221708766 + + + + + +SK56 +#labelStyle + +-1.17849939421505,53.179270670049 + + + + +SK57 + +Small Square SK57 Boundry Box +#Line2 + + +1 + +-1.25252375645456,53.2247034417072 +-1.25095513698239,53.3145743280166 +-1.10089039408262,53.3135378113028 +-1.10277328918333,53.2236702902204 +-1.25252375645456,53.2247034417072 + + + + + +SK57 +#labelStyle + +-1.17677806141827,53.2691496394361 + + + + +SK58 + +Small Square SK58 Boundry Box +#Line2 + + +1 + +-1.25095497968341,53.3145833159343 +-1.24937791382133,53.4044528068648 +-1.0989971721687,53.4034129104693 +-1.10089020526855,53.3135467988832 +-1.25095497968341,53.3145833159343 + + + + + +SK58 +#labelStyle + +-1.17504746875274,53.359027206047 + + + + +SK59 + +Small Square SK59 Boundry Box +#Line2 + + +1 + +-1.24937775567458,53.404461794643 +-1.24779218221112,53.4943298912909 +-1.09709373777399,53.4932866009881 +-1.09899698233706,53.4034218979087 +-1.24937775567458,53.404461794643 + + + + + +SK59 +#labelStyle + +-1.17330754920285,53.448903370922 + + + + +SK60 + +Small Square SK60 Boundry Box +#Line2 + + +1 + +-1.11566224620672,52.5944950684907 +-1.11384828913813,52.6843724825601 +-0.965958484963561,52.6831747258925 +-0.968075141629357,52.5933011763187 +-1.11566224620672,52.5944950684907 + + + + + +SK60 +#labelStyle + +-1.04087855422501,52.6388634980326 + + + + +SK61 + +Small Square SK61 Boundry Box +#Line2 + + +1 + +-1.11384810724319,52.6843814711295 +-1.11202450661197,52.7742574690549 +-0.963830364030598,52.7730558316654 +-0.965958272715396,52.6831837140747 +-1.11384810724319,52.6843814711295 + + + + + +SK61 +#labelStyle + +-1.03890781068883,52.7287473303669 + + + + +SK62 + +Small Square SK62 Boundry Box +#Line2 + + +1 + +-1.11202432374916,52.7742664574827 +-1.11019101094406,52.8641410401829 +-0.961690909902631,52.8629355061132 +-0.96383015065313,52.7730648197044 +-1.11202432374916,52.7742664574827 + + + + + +SK62 +#labelStyle + +-1.0369265810643,52.8186297392291 + + + + +SK63 + +Small Square SK63 Boundry Box +#Line2 + + +1 + +-1.11019082710648,52.8641500284693 +-1.10834773284772,52.9540231968735 +-0.959540041745043,52.9528137500464 +-0.961690695387813,52.862944494009 +-1.11019082710648,52.8641500284693 + + + + + +SK63 +#labelStyle + +-1.03493479065227,52.9085107254864 + + + + +SK64 + +Small Square SK64 Boundry Box +#Line2 + + +1 + +-1.10834754802842,52.9540321850185 +-1.10649460235958,53.043903940066 +-0.957377677933824,53.0426905642848 +-0.959539826084754,52.9528227377993 +-1.10834754802842,52.9540321850185 + + + + + +SK64 +#labelStyle + +-1.03293236402492,52.998390290016 + + + + +SK65 + +Small Square SK65 Boundry Box +#Line2 + + +1 + +-1.10649441655151,53.0439129280697 +-1.10463154883131,53.1337832707101 +-0.955203736045988,53.132565949657 +-0.957377461119861,53.0426995518948 +-1.10649441655151,53.0439129280697 + + + + + +SK65 +#labelStyle + +-1.03091922501692,53.0882684337044 + + + + +SK66 + +Small Square SK66 Boundry Box +#Line2 + + +1 + +-1.10463136202738,53.1337922585726 +-1.10275850092136,53.2236611897656 +-0.953018132849848,53.2224399070007 +-0.95520351807007,53.1325749371241 +-1.10463136202738,53.1337922585726 + + + + + +SK66 +#labelStyle + +-1.02889529671645,53.178145157448 + + + + +SK67 + +Small Square SK67 Boundry Box +#Line2 + + +1 + +-1.1027583131144,53.2236701774869 +-1.10087538658643,53.3135376982022 +-0.950820784295148,53.3123124371624 +-0.95301791370361,53.2224488943251 +-1.1027583131144,53.2236701774869 + + + + + +SK67 +#labelStyle + +-1.02686050145615,53.2680204621526 + + + + +SK68 + +Small Square SK68 Boundry Box +#Line2 + + +1 + +-1.1008751977692,53.3135466857825 +-1.09898213307293,53.4034127969998 +-0.948611605503058,53.4021835409973 +-0.950820563970143,53.312321424344 +-1.1008751977692,53.3135466857825 + + + + + +SK68 +#labelStyle + +-1.02481476080385,53.3578943487333 + + + + +SK69 + +Small Square SK69 Boundry Box +#Line2 + + +1 + +-1.09898194323813,53.4034217844393 +-1.09707866690827,53.4932864871483 +-0.946390510756008,53.4920532193697 +-0.948611383990757,53.4021925280364 +-1.09898194323813,53.4034217844393 + + + + + +SK69 +#labelStyle + +-1.02275799555321,53.4477668181149 + + + + +SK70 + +Small Square SK70 Boundry Box +#Line2 + + +1 + +-0.968060381975082,52.5933010477219 +-0.965943695040075,52.6831745968795 +-0.818065145406563,52.6817923616973 +-0.820484452661063,52.5919232720398 +-0.968060381975082,52.5933010477219 + + + + + +SK70 +#labelStyle + +-0.893130917934679,52.637575443022 + + + + +SK71 + +Small Square SK71 Boundry Box +#Line2 + + +1 + +-0.965943482788875,52.6831835850616 +-0.963815543674041,52.7730557022344 +-0.815632735689956,52.7716689888293 +-0.818064902810102,52.6818013494325 +-0.965943482788875,52.6831835850616 + + + + + +SK71 +#labelStyle + +-0.890856649626245,52.7274551039544 + + + + +SK72 + +Small Square SK72 Boundry Box +#Line2 + + +1 + +-0.963815330293521,52.7730646902733 +-0.961676058951018,52.8629353762624 +-0.813187373343035,52.8615441662215 +-0.81563249180282,52.7716779764195 +-0.963815330293521,52.7730646902733 + + + + + +SK72 +#labelStyle + +-0.888570281119634,52.8173333242904 + + + + +SK73 + +Small Square SK73 Boundry Box +#Line2 + + +1 + +-0.961675844433133,52.8629443641583 +-0.959525160035235,52.9528136197742 +-0.810728965991535,52.9514178945474 +-0.813187128156031,52.8615531536667 +-0.961675844433133,52.8629443641583 + + + + + +SK73 +#labelStyle + +-0.886271726226951,52.90721010477 + + + + +SK74 + +Small Square SK74 Boundry Box +#Line2 + + +1 + +-0.959524944371862,52.9528226075271 +-0.957362765301516,53.0426904335894 +-0.808257420359242,53.0412901744885 +-0.810728719495383,52.9514268818478 +-0.959524944371862,52.9528226075271 + + + + + +SK74 +#labelStyle + +-0.883960897919677,52.9970854461418 + + + + +SK75 + +Small Square SK75 Boundry Box +#Line2 + + +1 + +-0.957362548484454,53.0426994211994 +-0.9551887923257,53.1325658185367 +-0.805772642257035,53.131161006734 +-0.808257172544567,53.0412991616441 +-0.957362548484454,53.0426994211994 + + + + + +SK75 +#labelStyle + +-0.881637708318471,53.086959349163 + + + + +SK76 + +Small Square SK76 Boundry Box +#Line2 + + +1 + +-0.955188574346664,53.1325748060038 +-0.953003157874907,53.2224397754537 +-0.803274536571783,53.2210303919805 +-0.805772393114372,53.1311699937448 +-0.955188574346664,53.1325748060038 + + + + + +SK76 +#labelStyle + +-0.879302068682834,53.1768318145987 + + + + +SK77 + +Small Square SK77 Boundry Box +#Line2 + + +1 + +-0.953002938725535,53.222448762778 +-0.950805777897686,53.3123123051868 +-0.800763007255076,53.3108983309323 +-0.803274286091574,53.2210393788467 +-0.953002938725535,53.222448762778 + + + + + +SK77 +#labelStyle + +-0.876953889400613,53.2667028432228 + + + + +SK78 + +Small Square SK78 Boundry Box +#Line2 + + +1 + +-0.95080555756953,53.3123212923685 +-0.948596567513991,53.4021834085915 +-0.798237957311785,53.4007648243012 +-0.80076275542767,53.3109073176539 +-0.95080555756953,53.3123212923685 + + + + + +SK78 +#labelStyle + +-0.874593079977356,53.356572435817 + + + + +SK79 + +Small Square SK79 Boundry Box +#Line2 + + +1 + +-0.948596345998522,53.4021923956306 +-0.946375441005029,53.4920530865318 +-0.795699288788461,53.4906298728061 +-0.798237704127435,53.4007738108783 +-0.948596345998522,53.4021923956306 + + + + + +SK79 +#labelStyle + +-0.872219549025512,53.4464405931712 + + + + +SK80 + +Small Square SK80 Boundry Box +#Line2 + + +1 + +-0.820469694204275,52.5919231250545 +-0.818050356689058,52.6817922142362 +-0.67018466942582,52.6802255348194 +-0.672906536666746,52.5903614999198 +-0.820469694204275,52.5919231250545 + + + + + +SK80 +#labelStyle + +-0.74539529891821,52.6361032053711 + + + + +SK81 + +Small Square SK81 Boundry Box +#Line2 + + +1 + +-0.818050114089562,52.6818012019714 +-0.815617916547957,52.7716688408905 +-0.667448062417444,52.7700970859748 +-0.670184396490167,52.680234522048 +-0.818050114089562,52.6818012019714 + + + + + +SK81 +#labelStyle + +-0.742817591203697,52.7259780986697 + + + + +SK82 + +Small Square SK82 Boundry Box +#Line2 + + +1 + +-0.815617672657771,52.7716778284806 +-0.813172523614641,52.8615440178029 +-0.664696884234661,52.8599671665226 +-0.667447788029835,52.7701060730564 +-0.815617672657771,52.7716778284806 + + + + + +SK82 +#labelStyle + +-0.740226170011807,52.8158515318026 + + + + +SK83 + +Small Square SK83 Boundry Box +#Line2 + + +1 + +-0.813172278424571,52.8615530052482 +-0.810714085513693,52.9514177456472 +-0.661931030974351,52.9498357769813 +-0.664696608384756,52.8599761534572 +-0.813172278424571,52.8615530052482 + + + + + +SK83 +#labelStyle + +-0.737620937675956,52.9057235053645 + + + + +SK84 + +Small Square SK84 Boundry Box +#Line2 + + +1 + +-0.810713839014457,52.9514267329475 +-0.808242508967732,53.0412900251047 +-0.659150397719039,53.0397029178757 +-0.661930753651709,52.9498447637689 +-0.810713839014457,52.9514267329475 + + + + + +SK84 +#labelStyle + +-0.735001795577119,52.9955940199572 + + + + +SK85 + +Small Square SK85 Boundry Box +#Line2 + + +1 + +-0.808242261149957,53.0412990122602 +-0.805757699786461,53.1311608568644 +-0.656354878524579,53.1295685897369 +-0.659150118913116,53.0397119045164 +-0.808242261149957,53.0412990122602 + + + + + +SK85 +#labelStyle + +-0.732368644132291,53.0854630761897 + + + + +SK86 + +Small Square SK86 Boundry Box +#Line2 + + +1 + +-0.805757450640682,53.1311698438752 +-0.803259562855564,53.2210302416232 +-0.65354436640767,53.2194327931018 +-0.65635459822473,53.1295775762306 +-0.805757450640682,53.1311698438752 + + + + + +SK86 +#labelStyle + +-0.729721382782768,53.1753306746778 + + + + +SK87 + +Small Square SK87 Boundry Box +#Line2 + + +1 + +-0.803259312372223,53.2210392284894 +-0.80074800212543,53.3108981800853 +-0.650718753333181,53.3092955285137 +-0.653544084603144,53.2194417794488 +-0.803259312372223,53.2210392284894 + + + + + +SK87 +#labelStyle + +-0.727059909982264,53.2651968160441 + + + + +SK88 + +Small Square SK88 Boundry Box +#Line2 + + +1 + +-0.800747750294874,53.3109071668069 +-0.798222920599719,53.4007646729624 +-0.647877930201292,53.3991567965214 +-0.650718470013122,53.3093045147139 +-0.800747750294874,53.3109071668069 + + + + + +SK88 +#labelStyle + +-0.724384123184851,53.355061500918 + + + + +SK89 + +Small Square SK89 Boundry Box +#Line2 + + +1 + +-0.798222667412202,53.4007736595394 +-0.795684220323758,53.4906297209734 +-0.645021786834446,53.4890165976796 +-0.647877645354736,53.3991657825748 +-0.798222667412202,53.4007736595394 + + + + + +SK89 +#labelStyle + +-0.721693918832722,53.4449247299355 + + + + +SK90 + +Small Square SK90 Boundry Box +#Line2 + + +1 + +-0.672891779567069,52.5903613345495 +-0.670169882075052,52.6802253689139 +-0.522318664131078,52.6784742841103 +-0.525342989449434,52.5886158985577 +-0.672891779567069,52.5903613345495 + + + + + +SK90 +#labelStyle + +-0.597673299069999,52.6344468215291 + + + + +SK91 + +Small Square SK91 Boundry Box +#Line2 + + +1 + +-0.670169609136365,52.6802343561425 +-0.667433244651902,52.7700969195319 +-0.519277962740387,52.7683401622082 +-0.522318360866475,52.6784832707728 +-0.670169609136365,52.6802343561425 + + + + + +SK91 +#labelStyle + +-0.594792248683578,52.7243163512008 + + + + +SK92 + +Small Square SK92 Boundry Box +#Line2 + + +1 + +-0.667432970261243,52.7701059066134 +-0.66468203589254,52.85996699954 +-0.516221072633471,52.85820454638 +-0.519277657862646,52.7683491487213 +-0.667432970261243,52.7701059066134 + + + + + +SK92 +#labelStyle + +-0.59189587248169,52.8141843986946 + + + + +SK93 + +Small Square SK93 Boundry Box +#Line2 + + +1 + +-0.664681760039568,52.8599759864745 +-0.661916151892692,52.9498356094568 +-0.513147878390486,52.948067436971 +-0.516220766131105,52.8582135327437 +-0.664681760039568,52.8599759864745 + + + + + +SK93 +#labelStyle + +-0.588984061330438,52.9040509644418 + + + + +SK94 + +Small Square SK94 Boundry Box +#Line2 + + +1 + +-0.661915874566968,52.9498445962443 +-0.65913548773372,53.0397027498071 +-0.510058263465006,53.037928834331 +-0.513147570251897,52.9480764231854 +-0.661915874566968,52.9498445962443 + + + + + +SK94 +#labelStyle + +-0.586056705031842,52.9939160488792 + + + + +SK95 + +Small Square SK95 Boundry Box +#Line2 + + +1 + +-0.659135208924698,53.0397117364477 +-0.656339937470302,53.1295684211218 +-0.506952110170352,53.1277887388145 +-0.510057953678483,53.0379378203961 +-0.659135208924698,53.0397117364477 + + + + + +SK95 +#labelStyle + +-0.583113692310942,53.0837796524494 + + + + +SK96 + +Small Square SK96 Boundry Box +#Line2 + + +1 + +-0.656339657167339,53.1295774076155 +-0.653529394117953,53.2194326239381 +-0.503829299665725,53.2176471507801 +-0.50695179872407,53.1277977247303 +-0.656339657167339,53.1295774076155 + + + + + +SK96 +#labelStyle + +-0.580154910802718,53.1736417755997 + + + + +SK97 + +Small Square SK97 Boundry Box +#Line2 + + +1 + +-0.653529112310296,53.219441610285 +-0.650703749640343,53.309295358799 +-0.500689711942132,53.3075040705909 +-0.50382898654774,53.2176561365467 +-0.653529112310296,53.219441610285 + + + + + +SK97 +#labelStyle + +-0.57718024703881,53.2635024187832 + + + + +SK98 + +Small Square SK98 Boundry Box +#Line2 + + +1 + +-0.650703466317135,53.3093043449991 +-0.647862894936441,53.3991566262534 +-0.497533225808111,53.3973594986139 +-0.500689397140385,53.3075130562083 +-0.650703466317135,53.3093043449991 + + + + + +SK98 +#labelStyle + +-0.574189586434052,53.3533615824576 + + + + +SK99 + +Small Square SK99 Boundry Box +#Line2 + + +1 + +-0.647862610086719,53.3991656123068 +-0.64500671982747,53.489016426856 +-0.494359718875241,53.4872134352203 +-0.497532909310423,53.3973684840821 +-0.647862610086719,53.3991656123068 + + + + + +SK99 +#labelStyle + +-0.5711828132728,53.4432192670859 + + + + + +SM + +Large Square SM Boundry Box +#Line1 + + +1 + +-6.33543784293982,51.6186558295225 +-6.42330247254407,52.5150785720295 +-4.95201192917688,52.560977090432 +-4.8932456340518,51.66310440533 +-6.33543784293982,51.6186558295225 + + + + + +SM00 + +Small Square SM00 Boundry Box +#Line2 + + +1 + +-6.33543784293982,51.6186558295225 +-6.34401886897982,51.7083009062423 +-6.19970514599536,51.7135572116322 +-6.19140710042968,51.6238953630476 +-6.33543784293982,51.6186558295225 + + + + + +SM00 +#labelStyle + +-6.26763545203431,51.6661294413425 + + + + +SM01 + +Small Square SM01 Boundry Box +#Line2 + + +1 + +-6.34401972939553,51.7083098715266 +-6.35264539864546,51.7979525494821 +-6.20804720699864,51.8032256944154 +-6.19970597803736,51.7135661785972 +-6.34401972939553,51.7083098715266 + + + + + +SM01 +#labelStyle + +-6.27609777872425,51.755790758904 + + + + +SM02 + +Small Square SM02 Boundry Box +#Line2 + + +1 + +-6.35264626354126,51.7979615145263 +-6.36131688348798,51.887601787489 +-6.21643275329685,51.8928918384449 +-6.20804804337424,51.8032346611468 +-6.35264626354126,51.7979615145263 + + + + + +SM02 +#labelStyle + +-6.28460417432882,51.845449707749 + + + + +SM03 + +Small Square SM03 Boundry Box +#Line2 + + +1 + +-6.36131775289477,51.8876107522923 +-6.37003363392989,51.9772486139787 +-6.22486208529823,51.9825556379163 +-6.21643359403596,51.8929008049421 +-6.36131775289477,51.8876107522923 + + + + + +SM03 +#labelStyle + +-6.2931549428337,51.9351062818619 + + + + +SM04 + +Small Square SM04 Boundry Box +#Line2 + + +1 + +-6.37003450787886,51.9772575785406 +-6.37879596333283,52.0668930226117 +-6.23333550625684,52.072217086974 +-6.22486293043103,51.9825646041788 +-6.37003450787886,51.9772575785406 + + + + + +SM04 +#labelStyle + +-6.3017503911003,52.0247604751736 + + + + +SM05 + +Small Square SM05 Boundry Box +#Line2 + + +1 + +-6.37879684185547,52.0669019869314 +-6.38760418803202,52.1565350069915 +-6.24185332230596,52.1618761797101 +-6.23333635581379,52.0722260530012 +-6.37879684185547,52.0669019869314 + + + + + +SM05 +#labelStyle + +-6.31039082889943,52.1144122815614 + + + + +SM06 + +Small Square SM06 Boundry Box +#Line2 + + +1 + +-6.38760507116011,52.1565439710685 +-6.39645862737124,52.2461745606646 +-6.25041584249203,52.2515329101642 +-6.24185417631782,52.1618851455014 +-6.38760507116011,52.1565439710685 + + + + + +SM06 +#labelStyle + +-6.31907656894556,52.2040616948478 + + + + +SM07 + +Small Square SM07 Boundry Box +#Line2 + + +1 + +-6.39645951513686,52.2461835244982 +-6.40535960373833,52.3358116771193 +-6.25902337880898,52.3411872723222 +-6.25041670098986,52.251541875719 +-6.39645951513686,52.2461835244982 + + + + + +SM07 +#labelStyle + +-6.32780792693148,52.2937087087999 + + + + +SM08 + +Small Square SM08 Boundry Box +#Line2 + + +1 + +-6.40536049617388,52.3358206407088 +-6.41430744260115,52.4254463497845 +-6.26767624623313,52.4308392601154 +-6.25902424182412,52.3411962376398 +-6.40536049617388,52.3358206407088 + + + + + +SM08 +#labelStyle + +-6.33658522156345,52.3833533171285 + + + + +SM09 + +Small Square SM09 Boundry Box +#Line2 + + +1 + +-6.41430833973932,52.4254553131293 +-6.42330247254407,52.5150785720295 +-6.2763747627585,52.5204888674202 +-6.26767711379723,52.4308482251953 +-6.41430833973932,52.4254553131293 + + + + + +SM09 +#labelStyle + +-6.34540877459688,52.4729955134873 + + + + +SM10 + +Small Square SM10 Boundry Box +#Line2 + + +1 + +-6.19139269374627,51.6238958782354 +-6.19969071099618,51.7135577284694 +-6.05533380737763,51.7186370909093 +-6.04731906534388,51.6289590297142 +-6.19139269374627,51.6238958782354 + + + + + +SM10 +#labelStyle + +-6.12342726549889,51.6712895448134 + + + + +SM11 + +Small Square SM11 Boundry Box +#Line2 + + +1 + +-6.19969154303534,51.7135666954345 +-6.2080327435347,51.8032262129085 +-6.06339107370263,51.8083218517604 +-6.05533461101345,51.7186460594989 +-6.19969154303534,51.7135666954345 + + + + + +SM11 +#labelStyle + +-6.13160567687338,51.7609673895635 + + + + +SM12 + +Small Square SM12 Boundry Box +#Line2 + + +1 + +-6.20803357990744,51.80323517964 +-6.21641826122101,51.8928923586005 +-6.07149035248105,51.8980043381571 +-6.06339188152528,51.8083308201229 +-6.20803357990744,51.80323517964 + + + + + +SM12 +#labelStyle + +-6.13982669069574,51.8506429307563 + + + + +SM13 + +Small Square SM13 Boundry Box +#Line2 + + +1 + +-6.21641910195725,51.8929013250979 +-6.22484756446234,51.9825561597411 +-6.07963193407287,51.987684544759 +-6.07149116451942,51.8980133062919 +-6.21641910195725,51.8929013250979 + + + + + +SM13 +#labelStyle + +-6.14809060096607,51.9403161628456 + + + + +SM14 + +Small Square SM14 Boundry Box +#Line2 + + +1 + +-6.22484840959225,51.9825651260037 +-6.23332095651174,52.0722176104745 +-6.08781611159012,52.0773624661788 +-6.07963275035613,51.9876935126655 +-6.22484840959225,51.9825651260037 + + + + + +SM14 +#labelStyle + +-6.15639770446723,52.0299870802366 + + + + +SM15 + +Small Square SM15 Boundry Box +#Line2 + + +1 + +-6.23332180606579,52.0722265765018 +-6.24183874350147,52.161876704893 +-6.09604318092928,52.1670380969816 +-6.08781693214772,52.0773714338565 +-6.23332180606579,52.0722265765018 + + + + + +SM15 +#labelStyle + +-6.16474830079744,52.119655677285 + + + + +SM16 + +Small Square SM16 Boundry Box +#Line2 + + +1 + +-6.24183959751042,52.1618856706844 +-6.25040123447693,52.2515334370363 +-6.10431344080401,52.256711431684 +-6.09604400579095,52.1670470644299 +-6.24183959751042,52.1618856706844 + + + + + +SM16 +#labelStyle + +-6.17314269240343,52.2093219482962 + + + + +SM17 + +Small Square SM17 Boundry Box +#Line2 + + +1 + +-6.25040209297183,52.2515424025912 +-6.25900874143102,52.3411878008901 +-6.11262719277845,52.3463824647537 +-6.10431426999977,52.2567203989025 +-6.25040209297183,52.2515424025912 + + + + + +SM17 +#labelStyle + +-6.181581184614,52.2989858875248 + + + + +SM18 + +Small Square SM18 Boundry Box +#Line2 + + +1 + +-6.25900960444322,52.3411967662079 +-6.26766157933899,52.4308397903861 +-6.12098474130097,52.4360511906082 +-6.1126280263386,52.3463914317417 +-6.25900960444322,52.3411967662079 + + + + + +SM18 +#labelStyle + +-6.19006408567407,52.3886474891735 + + + + +SM19 + +Small Square SM19 Boundry Box +#Line2 + + +1 + +-6.26766244690014,52.4308487554661 +-6.27636006619382,52.5204893994006 +-6.12938639373833,52.5257176036148 +-6.12098557925609,52.4360601573653 +-6.26766244690014,52.4308487554661 + + + + + +SM19 +#labelStyle + +-6.19859170677926,52.4783067473928 + + + + +SM20 + +Small Square SM20 Boundry Box +#Line2 + + +1 + +-6.04730465444406,51.6289595272559 +-6.05531936813304,51.7186375900442 +-5.91092074662922,51.7235398884558 +-5.9031895930363,51.6338461763726 +-6.04730465444406,51.6289595272559 + + + + + +SM20 +#labelStyle + +-5.97917677043698,51.6762729074827 + + + + +SM21 + +Small Square SM21 Boundry Box +#Line2 + + +1 + +-6.05532017176603,51.718646558634 +-6.06337660596403,51.808322352495 +-5.9186929306501,51.8132403634181 +-5.91092152183026,51.7235488586137 +-6.05532017176603,51.718646558634 + + + + + +SM21 +#labelStyle + +-5.98707097526033,51.7659667169352 + + + + +SM22 + +Small Square SM22 Boundry Box +#Line2 + + +1 + +-6.06337741378383,51.8083313208576 +-6.07147585610102,51.8980048404976 +-5.92650565156282,51.9029386260312 +-5.9186937098909,51.813249333355 +-6.06337741378383,51.8083313208576 + + + + + +SM22 +#labelStyle + +-5.99500631331436,51.8556582858067 + + + + +SM23 + +Small Square SM23 Boundry Box +#Line2 + + +1 + +-6.07147666813652,51.8980138086325 +-6.07961740890296,51.9876850487118 +-5.93435918964722,51.9926346714035 +-5.92650643487128,51.9029475957467 +-6.07147666813652,51.8980138086325 + + + + + +SM23 +#labelStyle + +-6.00298306858144,51.9453476090053 + + + + +SM24 + +Small Square SM24 Boundry Box +#Line2 + + +1 + +-6.07961822518334,51.9876940166185 +-6.08780155748091,52.0773629717503 +-5.94225382784099,52.0823284946002 +-5.9343599770515,51.992643640897 +-6.07961822518334,51.9876940166185 + + + + + +SM24 +#labelStyle + +-6.01100152773323,52.0350346813945 + + + + +SM25 + +Small Square SM25 Boundry Box +#Line2 + + +1 + +-6.08780237803561,52.0773719394282 +-6.09602859773029,52.1670386041783 +-5.95018985177099,52.1720200906435 +-5.94225461936952,52.0823374638713 +-6.08780237803561,52.0773719394282 + + + + + +SM25 +#labelStyle + +-6.01906198016222,52.1247194977929 + + + + +SM26 + +Small Square SM26 Boundry Box +#Line2 + + +1 + +-6.09602942258904,52.1670475716268 +-6.10429882836373,52.2567119405124 +-5.95816754978484,52.2617094545112 +-5.95019064745246,52.1720290596916 +-6.09602942258904,52.1670475716268 + + + + + +SM26 +#labelStyle + +-6.02716471801383,52.2144020529728 + + + + +SM27 + +Small Square SM27 Boundry Box +#Line2 + + +1 + +-6.10429965755655,52.256720907731 +-6.11261255094434,52.3463829752203 +-5.96618721298318,52.3513965811365 +-5.95816834964824,52.2617184233358 +-6.10429965755655,52.256720907731 + + + + + +SM27 +#labelStyle + +-6.03531003621881,52.3040823416603 + + + + +SM28 + +Small Square SM28 Boundry Box +#Line2 + + +1 + +-6.11261338450154,52.3463919422085 +-6.12097006991942,52.4360517027197 +-5.97424913525219,52.4410814654069 +-5.96618801705774,52.3514055497371 +-6.11261338450154,52.3463919422085 + + + + + +SM28 +#labelStyle + +-6.04349823252623,52.393760358534 + + + + +SM29 + +Small Square SM29 Boundry Box +#Line2 + + +1 + +-6.12097090787159,52.4360606694769 +-6.12937169265468,52.5257181173777 +-5.98235361329668,52.5307641021639 +-5.97424994356745,52.4410904337831 +-6.12097090787159,52.4360606694769 + + + + + +SM29 +#labelStyle + +-6.05172960753683,52.4834360982246 + + + + +SM30 + +Small Square SM30 Boundry Box +#Line2 + + +1 + +-5.90317517806551,51.6338466562565 +-5.91090630328567,51.7235403698767 +-5.7664674293317,51.7282654873394 +-5.75902013919459,51.6385566868275 +-5.90317517806551,51.6338466562565 + + + + + +SM30 +#labelStyle + +-5.83488542614838,51.6810794107139 + + + + +SM31 + +Small Square SM31 Boundry Box +#Line2 + + +1 + +-5.91090707848386,51.7235493400348 +-5.91867845878427,51.8132408463821 +-5.77395425340956,51.8179811117124 +-5.7664681760703,51.7282744590093 +-5.91090707848386,51.7235493400348 + + + + + +SM31 +#labelStyle + +-5.84249514311021,51.7707886216294 + + + + +SM32 + +Small Square SM32 Boundry Box +#Line2 + + +1 + +-5.91867923802221,51.8132498163192 +-5.92649115102702,51.9029391105446 +-5.78148013619076,51.9076945836415 +-5.77395500404061,51.8179900831673 +-5.91867923802221,51.8132498163192 + + + + + +SM32 +#labelStyle + +-5.85014452142754,51.8604956527508 + + + + +SM33 + +Small Square SM33 Boundry Box +#Line2 + + +1 + +-5.92649193433261,51.9029480802602 +-5.93434466029275,51.9926351574722 +-5.78904534784418,51.9974058986674 +-5.78148089074115,51.9077035548809 +-5.92649193433261,51.9029480802602 + + + + + +SM33 +#labelStyle + +-5.85783383503384,51.950200499425 + + + + +SM34 + +Small Square SM34 Boundry Box +#Line2 + + +1 + +-5.93434544769414,51.9926441269659 +-5.94223926951814,52.0823289822306 +-5.79665016110193,52.0871150522928 +-5.78904610634105,51.9974148696909 +-5.93434544769414,51.9926441269659 + + + + + +SM34 +#labelStyle + +-5.86556336045798,52.0399031569583 + + + + +SM35 + +Small Square SM35 Boundry Box +#Line2 + + +1 + +-5.94224006104376,52.0823379515018 +-5.95017526432899,52.1720205798417 +-5.80429485128952,52.1768220399806 +-5.79665092357269,52.0871240231 +-5.94224006104376,52.0823379515018 + + + + + +SM35 +#labelStyle + +-5.87333337685474,52.129603620616 + + + + +SM36 + +Small Square SM36 Boundry Box +#Line2 + + +1 + +-5.95017606000755,52.17202954889 +-5.95815293307194,52.2617099452836 +-5.81197969635644,52.2665268571539 +-5.80429561776183,52.1768310105709 +-5.95017606000755,52.17202954889 + + + + + +SM36 +#labelStyle + +-5.88114416603572,52.2193018856218 + + + + +SM37 + +Small Square SM37 Boundry Box +#Line2 + + +1 + +-5.9581537329324,52.2617189141084 +-5.96617256684653,52.3513970734893 +-5.81970497690719,52.3562294991951 +-5.81198046685822,52.2665358275269 +-5.9581537329324,52.2617189141084 + + + + + +SM37 +#labelStyle + +-5.88899601250072,52.3089979471568 + + + + +SM38 + +Small Square SM38 Boundry Box +#Line2 + + +1 + +-5.96617337091814,52.3514060420901 +-5.9742344595379,52.4410819593466 +-5.82747097623271,52.4459299614453 +-5.81970575146664,52.3562384693504 +-5.96617337091814,52.3514060420901 + + + + + +SM38 +#labelStyle + +-5.89688920346952,52.3986918003595 + + + + +SM39 + +Small Square SM39 Boundry Box +#Line2 + + +1 + +-5.97423526785019,52.4410909277229 +-5.98233890784979,52.5307645976968 +-5.83527798034233,52.5356282392037 +-5.8274717548783,52.4459389313824 +-5.97423526785019,52.4410909277229 + + + + + +SM39 +#labelStyle + +-5.90482402891413,52.4883834403242 + + + + +SM40 + +Small Square SM40 Boundry Box +#Line2 + + +1 + +-5.75900572029853,51.638557149042 +-5.76645298203586,51.7282659510346 +-5.62197532366126,51.7328137747953 +-5.61481216207109,51.6430904490251 +-5.75900572029853,51.638557149042 + + + + + +SM40 +#labelStyle + +-5.69055469455824,51.6857089400204 + + + + +SM41 + +Small Square SM41 Boundry Box +#Line2 + + +1 + +-5.76645372877162,51.7282749227047 +-5.77393977756418,51.8179815768944 +-5.62917652017455,51.8225439831616 +-5.62197604191081,51.7328227479208 +-5.76645372877162,51.7282749227047 + + + + + +SM41 +#labelStyle + +-5.69787965230424,51.7754329884323 + + + + +SM42 + +Small Square SM42 Boundry Box +#Line2 + + +1 + +-5.77394052819238,51.8179905483494 +-5.78146563164789,51.907695050316 +-5.6364152946693,51.9122720967823 +-5.62917724216897,51.8225529560778 +-5.77394052819238,51.8179905483494 + + + + + +SM42 +#labelStyle + +-5.70524279696532,51.8651549156414 + + + + +SM43 + +Small Square SM43 Boundry Box +#Line2 + + +1 + +-5.78146638619541,51.9077040215555 +-5.78903081445486,51.9974063668404 +-5.64369190717371,52.0019981116155 +-5.63641602043448,51.9122810694888 +-5.78146638619541,51.9077040215555 + + + + + +SM43 +#labelStyle + +-5.712644392396,51.9548747174175 + + + + +SM44 + +Small Square SM44 Boundry Box +#Line2 + + +1 + +-5.78903157294884,51.9974153378641 +-5.79663559871618,52.0871155219703 +-5.65100662018413,52.0917220235848 +-5.64369263673578,52.0020070841119 +-5.78903157294884,51.9974153378641 + + + + + +SM44 +#labelStyle + +-5.7200847049519,52.0445923894941 + + + + +SM45 + +Small Square SM45 Boundry Box +#Line2 + + +1 + +-5.79663636118403,52.0871244927775 +-5.80428025975632,52.1768225111685 +-5.65835969869419,52.1814438285783 +-5.65100735356947,52.0917309958707 +-5.79663636118403,52.0871244927775 + + + + + +SM45 +#labelStyle + +-5.72756400351914,52.1343079275676 + + + + +SM46 + +Small Square SM46 Boundry Box +#Line2 + + +1 + +-5.80428102622571,52.176831481759 +-5.81196507552374,52.2665273298583 +-5.66575141022418,52.2711635224479 +-5.6583604359294,52.1814528006533 +-5.80428102622571,52.176831481759 + + + + + +SM46 +#labelStyle + +-5.73508255954417,52.2240213272965 + + + + +SM47 + +Small Square SM47 Boundry Box +#Line2 + + +1 + +-5.81196584602259,52.2665363002315 +-5.81969032662189,52.3562299734221 +-5.67318202485101,52.3608811010092 +-5.66575215133616,52.2711724943116 +-5.81196584602259,52.2665363002315 + + + + + +SM47 +#labelStyle + +-5.742640647064,52.3137325843014 + + + + +SM48 + +Small Square SM48 Boundry Box +#Line2 + + +1 + +-5.81969110117839,52.3562389435775 +-5.82745629634063,52.445930437201 +-5.68065181523849,52.4505965600403 +-5.67318276986689,52.3608900726611 +-5.81969110117839,52.3562389435775 + + + + + +SM48 +#labelStyle + +-5.75023854273687,52.4034416941636 + + + + +SM49 + +Small Square SM49 Boundry Box +#Line2 + + +1 + +-5.82745707498325,52.4459394071383 +-5.83526327068823,52.5356287164944 +-5.68816105666808,52.5403098952816 +-5.68065256418567,52.45060553148 +-5.82745707498325,52.4459394071383 + + + + + +SM49 +#labelStyle + +-5.75787652587338,52.4931486524251 + + + + +SM50 + +Small Square SM50 Boundry Box +#Line2 + + +1 + +-5.6147977393957,51.6430908935594 +-5.62196087256009,51.732814220754 +-5.47744590029645,51.7371846422361 +-5.47056712239158,51.647447355063 +-5.6147977393957,51.6430908935594 + + + + + +SM50 +#labelStyle + +-5.54618604012553,51.6901613850752 + + + + +SM51 + +Small Square SM51 Boundry Box +#Line2 + + +1 + +-5.62196159080679,51.7328231938795 +-5.62916204049757,51.8225444305504 +-5.48436121167024,51.826928868487 +-5.47744659003129,51.7371936167606 +-5.62196159080679,51.7328231938795 + + + + + +SM51 +#labelStyle + +-5.55322597728701,51.7798997063156 + + + + +SM52 + +Small Square SM52 Boundry Box +#Line2 + + +1 + +-5.62916276248913,51.8225534034667 +-5.63640078626833,51.9122725456068 +-5.49131261786423,51.9166710554779 +-5.48436190500215,51.8269378428077 +-5.62916276248913,51.8225534034667 + + + + + +SM52 +#labelStyle + +-5.56030262445117,51.8696359627428 + + + + +SM53 + +Small Square SM53 Boundry Box +#Line2 + + +1 + +-5.63640151203063,51.9122815183134 +-5.64367736989952,52.0019985618815 +-5.49830036873725,52.0064111995686 +-5.49131331481808,51.9166800295945 +-5.63640151203063,51.9122815183134 + + + + + +SM53 +#labelStyle + +-5.56741623536459,51.9593701505338 + + + + +SM54 + +Small Square SM54 Boundry Box +#Line2 + + +1 + +-5.6436780994587,52.002007534378 +-5.6509920538865,52.091722475298 +-5.50532471652089,52.0961492970877 +-5.49830106933815,52.0064201734807 +-5.6436780994587,52.002007534378 + + + + + +SM54 +#labelStyle + +-5.57456706618023,52.0491022658333 + + + + +SM55 + +Small Square SM55 Boundry Box +#Line2 + + +1 + +-5.65099278726892,52.091731447584 +-5.65834510322184,52.1814442817444 +-5.51238591584735,52.1858853443322 +-5.50532542079416,52.096158270795 +-5.65099278726892,52.091731447584 + + + + + +SM55 +#labelStyle + +-5.58175537548574,52.1388323047528 + + + + +SM56 + +Small Square SM56 Boundry Box +#Line2 + + +1 + +-5.65834584045413,52.1814532538196 +-5.66573678542479,52.2711639770729 +-5.5194842237779,52.275619337567 +-5.5123866238186,52.1858943178343 +-5.65834584045413,52.1814532538196 + + + + + +SM56 +#labelStyle + +-5.58898142433218,52.2285602633698 + + + + +SM57 + +Small Square SM57 Boundry Box +#Line2 + + +1 + +-5.66573752653383,52.2711729489367 +-5.67316737057122,52.3608815570988 +-5.52661989983154,52.365351273024 +-5.51948493547294,52.2756283108635 +-5.66573752653383,52.2711729489367 + + + + + +SM57 +#labelStyle + +-5.59624547626311,52.3182861377276 + + + + +SM58 + +Small Square SM58 Boundry Box +#Line2 + + +1 + +-5.67316811558414,52.3608905287509 +-5.68063713132386,52.4505970176005 +-5.5337932060142,52.4550811469022 +-5.52662061527646,52.3653602461145 +-5.67316811558414,52.3608905287509 + + + + + +SM58 +#labelStyle + +-5.60354779734414,52.4080099238345 + + + + +SM59 + +Small Square SM59 Boundry Box +#Line2 + + +1 + +-5.68063788026807,52.4506059890404 +-5.68814634296311,52.5403103543184 +-5.54100440684829,52.5448089553664 +-5.53379392523531,52.4550901197863 +-5.68063788026807,52.4506059890404 + + + + + +SM59 +#labelStyle + +-5.61088865619287,52.4977316176633 + + + + +SM60 + +Small Square SM60 Boundry Box +#Line2 + + +1 + +-5.47055269608306,51.6474477819064 +-5.47743144553713,51.7371850704475 +-5.33288063232534,51.74137798526 +-5.32628648326355,51.6516273011982 +-5.47055269608306,51.6474477819064 + + + + + +SM60 +#labelStyle + +-5.40178092975094,51.6944366397194 + + + + +SM61 + +Small Square SM61 Boundry Box +#Line2 + + +1 + +-5.47743213526912,51.7371940449721 +-5.48434672830986,51.8269292980718 +-5.3395098110596,51.8311356626219 +-5.33288129352085,51.7413869611269 +-5.47743213526912,51.7371940449721 + + + + + +SM61 +#labelStyle + +-5.40853559497344,51.7841886684458 + + + + +SM62 + +Small Square SM62 Boundry Box +#Line2 + + +1 + +-5.48434742163891,51.8269382723926 +-5.49129810575436,51.9166714864416 +-5.34617359910775,51.9208913539913 +-5.33951047570413,51.8311446382904 +-5.48434742163891,51.8269382723926 + + + + + +SM62 +#labelStyle + +-5.41532549090787,51.8739386865405 + + + + +SM63 + +Small Square SM63 Boundry Box +#Line2 + + +1 + +-5.49129880270533,51.9166804605583 +-5.49828582772844,52.0064116319167 +-5.35287223613174,52.0106450561132 +-5.34617426722517,51.920900329461 +-5.49129880270533,51.9166804605583 + + + + + +SM63 +#labelStyle + +-5.42215086116496,51.9636866905725 + + + + +SM64 + +Small Square SM64 Boundry Box +#Line2 + + +1 + +-5.49828652832643,52.0064206058289 +-5.50531014646264,52.0961497308257 +-5.35960596407037,52.1003967657055 +-5.35287290774611,52.0106540313838 +-5.49828652832643,52.0064206058289 + + + + + +SM64 +#labelStyle + +-5.4290119516667,52.0534326770816 + + + + +SM65 + +Small Square SM65 Boundry Box +#Line2 + + +1 + +-5.50531085073301,52.0961587045331 +-5.51237131658816,52.1858857794656 +-5.36637502716617,52.190146479458 +-5.35960663920601,52.1004057407767 +-5.50531085073301,52.0961587045331 + + + + + +SM65 +#labelStyle + +-5.43590901067357,52.1431766425784 + + + + +SM66 + +Small Square SM66 Boundry Box +#Line2 + + +1 + +-5.51237202455648,52.1858947529679 +-5.5194695951652,52.2756197741014 +-5.37317967199257,52.279894194032 +-5.36637570584761,52.1901554543295 +-5.51237202455648,52.1858947529679 + + + + + +SM66 +#labelStyle + +-5.44284228881213,52.232918583543 + + + + +SM67 + +Small Square SM67 Boundry Box +#Line2 + + +1 + +-5.5194703068573,52.275628747398 +-5.5266052417117,52.3653517109651 +-5.38002014748153,52.3696399060598 +-5.37318035424459,52.2799031687034 +-5.5194703068573,52.275628747398 + + + + + +SM67 +#labelStyle + +-5.44981203910298,52.3226584964254 + + + + +SM68 + +Small Square SM68 Boundry Box +#Line2 + + +1 + +-5.52660595715366,52.3653606840558 +-5.53377851823254,52.4550815862557 +-5.38689670495152,52.4593836121442 +-5.38002083332915,52.3696488805308 +-5.52660595715366,52.3653606840558 + + + + + +SM68 +#labelStyle + +-5.45681851698914,52.4123963776443 + + + + +SM69 + +Small Square SM69 Boundry Box +#Line2 + + +1 + +-5.53377923745068,52.45509055914 +-5.54098968924903,52.544809396138 +-5.39380959813592,52.5491253088579 +-5.38689739441998,52.4593925864144 +-5.53377923745068,52.45509055914 + + + + + +SM69 +#labelStyle + +-5.46386198036482,52.5021322235865 + + + + +SM70 + +Small Square SM70 Boundry Box +#Line2 + + +1 + +-5.32627205346832,51.6516277103406 +-5.3328661740553,51.7413783957138 +-5.18828099515239,51.7453937036595 +-5.18197171008407,51.6556301878561 +-5.32627205346832,51.6516277103406 + + + + + +SM70 +#labelStyle + +-5.25734083268446,51.6985346019717 + + + + +SM71 + +Small Square SM71 Boundry Box +#Line2 + + +1 + +-5.33286683524796,51.7413873715809 +-5.33949532416426,51.8311360743925 +-5.19462380384913,51.8351642647208 +-5.18828162778494,51.7454026808122 +-5.33286683524796,51.7413873715809 + + + + + +SM71 +#labelStyle + +-5.26380998465526,51.7882997721926 + + + + +SM72 + +Small Square SM72 Boundry Box +#Line2 + + +1 + +-5.33949598880592,51.8311450500611 +-5.34615908343844,51.9208917670838 +-5.20099973410317,51.9249328908326 +-5.19462443978244,51.8351732416802 +-5.33949598880592,51.8311450500611 + + + + + +SM72 +#labelStyle + +-5.27031288576291,51.8780629837499 + + + + +SM73 + +Small Square SM73 Boundry Box +#Line2 + + +1 + +-5.34615975155297,51.9209007425536 +-5.35285769153877,52.0106454705329 +-5.20740901535309,52.01469957911 +-5.20100037336007,51.9249418675984 +-5.34615975155297,51.9209007425536 + + + + + +SM73 +#labelStyle + +-5.27684976945545,51.9678242335887 + + + + +SM74 + +Small Square SM74 Boundry Box +#Line2 + + +1 + +-5.35285836315024,52.0106544458037 +-5.35959139040303,52.1003971814578 +-5.21385187921812,52.1044643266436 +-5.20740965795663,52.0147085556818 +-5.35285836315024,52.0106544458037 + + + + + +SM74 +#labelStyle + +-5.28342087139672,52.0575835186281 + + + + +SM75 + +Small Square SM75 Boundry Box +#Line2 + + +1 + +-5.35959206553576,52.1004061565291 +-5.3663604242727,52.1901468965481 +-5.22032855952386,52.1942271304999 +-5.21385252519158,52.1044733030212 +-5.35959206553576,52.1004061565291 + + + + + +SM75 +#labelStyle + +-5.29002642949244,52.1473408357615 + + + + +SM76 + +Small Square SM76 Boundry Box +#Line2 + + +1 + +-5.36636110295122,52.1901558714197 +-5.37316503972017,52.2798946124653 +-5.22683929232835,52.2839879877204 +-5.22032920889073,52.194236106683 +-5.36636110295122,52.1901558714197 + + + + + +SM76 +#labelStyle + +-5.29666668391671,52.2370961818557 + + + + +SM77 + +Small Square SM77 Boundry Box +#Line2 + + +1 + +-5.37316572196925,52.2799035871369 +-5.38000548567633,52.3696403258417 +-5.23338431594847,52.3737468953209 +-5.22683994511235,52.2839969637086 +-5.37316572196925,52.2799035871369 + + + + + +SM77 +#labelStyle + +-5.30334187713876,52.3268495537506 + + + + +SM78 + +Small Square SM78 Boundry Box +#Line2 + + +1 + +-5.38000617152099,52.3696493003128 +-5.38688201345858,52.4593840332802 +-5.23996387098687,52.4635038502917 +-5.23338497217355,52.3737558711141 +-5.38000617152099,52.3696493003128 + + + + + +SM78 +#labelStyle + +-5.31005225395026,52.4166009482588 + + + + +SM79 + +Small Square SM79 Boundry Box +#Line2 + + +1 + +-5.38688270292407,52.4593930075505 +-5.39379487679923,52.5491257313534 +-5.24657820035908,52.5532588495963 +-5.2399645306772,52.4635128258894 +-5.38688270292407,52.4593930075505 + + + + + +SM79 +#labelStyle + +-5.31679806149288,52.5063503621646 + + + + +SM80 + +Small Square SM80 Boundry Box +#Line2 + + +1 + +-5.18195727694879,51.6556305792877 +-5.18826653351929,51.745394096346 +-5.0436484664049,51.7492317014297 +-5.03762427044734,51.6594559196382 +-5.18195727694879,51.6556305792877 + + + + + +SM80 +#labelStyle + +-5.11286722043257,51.7024551740356 + + + + +SM81 + +Small Square SM81 Boundry Box +#Line2 + + +1 + +-5.18826716614898,51.7454030734988 +-5.19460931356749,51.8351646586672 +-5.04970467779425,51.8390145781667 +-5.04364907045188,51.7492406798116 +-5.18826716614898,51.7454030734988 + + + + + +SM81 +#labelStyle + +-5.11905062790712,51.7922329191371 + + + + +SM82 + +Small Square SM82 Boundry Box +#Line2 + + +1 + +-5.19460994949792,51.8351736356268 +-5.2009852150241,51.9249332860441 +-5.05579252082912,51.9287955687681 +-5.04970528499349,51.8390235563601 +-5.19460994949792,51.8351736356268 + + + + + +SM82 +#labelStyle + +-5.12526630075348,51.8820087553245 + + + + +SM83 + +Small Square SM83 Boundry Box +#Line2 + + +1 + +-5.20098585427812,51.92494226281 +-5.20739446732669,52.0146999755914 +-5.06191221469941,52.0185746707023 +-5.05579313120246,51.9288045467727 +-5.20098585427812,51.92494226281 + + + + + +SM83 +#labelStyle + +-5.1315144622313,51.9717826799026 + + + + +SM84 + +Small Square SM84 Boundry Box +#Line2 + + +1 + +-5.20739510992733,52.0147089521633 +-5.21383730209345,52.1044647244001 +-5.06806398067906,52.1083518814172 +-5.06191282826886,52.018583648518 +-5.20739510992733,52.0147089521633 + + + + + +SM84 +#labelStyle + +-5.13779533772016,52.0615546901541 + + + + +SM85 + +Small Square SM85 Boundry Box +#Line2 + + +1 + +-5.213837948064,52.1044737007778 +-5.22031395314894,52.1942275295366 +-5.07424804215065,52.1981271983394 +-5.06806459746685,52.1083608590436 +-5.213837948064,52.1044737007778 + + + + + +SM85 +#labelStyle + +-5.1441091547446,52.1513247833389 + + + + +SM86 + +Small Square SM86 Boundry Box +#Line2 + + +1 + +-5.22031460251288,52.1942365057198 +-5.22682465655012,52.2839883880423 +-5.08046462463036,52.2879006188742 +-5.07424866217923,52.1981361757763 +-5.22031460251288,52.1942365057198 + + + + + +SM86 +#labelStyle + +-5.15045614299936,52.2410929566942 + + + + +SM87 + +Small Square SM87 Boundry Box +#Line2 + + +1 + +-5.22682530933118,52.2839973640307 +-5.23336965061285,52.3737472969333 +-5.08671395579323,52.3776721404045 +-5.08046524792239,52.2879095961213 +-5.22682530933118,52.2839973640307 + + + + + +SM87 +#labelStyle + +-5.15683653437515,52.3308592074334 + + + + +SM88 + +Small Square SM88 Boundry Box +#Line2 + + +1 + +-5.23337030683497,52.3737562727266 +-5.23994917593868,52.4635042531998 +-5.09299626549882,52.4674417602911 +-5.08671458237159,52.3776811174616 +-5.23337030683497,52.3737562727266 + + + + + +SM88 +#labelStyle + +-5.16325056298467,52.4206235327463 + + + + +SM89 + +Small Square SM89 Boundry Box +#Line2 + + +1 + +-5.23994983562603,52.4635132287977 +-5.24656347544207,52.5532592538054 +-5.09931178581725,52.5572094758718 +-5.0929968953866,52.4674507371579 +-5.23994983562603,52.4635132287977 + + + + + +SM89 +#labelStyle + +-5.16969846518901,52.5103859297981 + + + + +SM90 + +Small Square SM90 Boundry Box +#Line2 + + +1 + +-5.03760983411887,51.6594562933496 +-5.0436340015566,51.7492320763395 +-4.89898452583904,51.752891886776 +-4.8932456340518,51.66310440533 +-5.03760983411887,51.6594562933496 + + + + + +SM90 +#labelStyle + +-4.96836156666499,51.706198262308 + + + + +SM91 + +Small Square SM91 Boundry Box +#Line2 + + +1 + +-5.04363460560071,51.7492410547215 +-5.04969018427519,51.8390149542796 +-4.90475392280423,51.84268651058 +-4.89898510127882,51.7529008663303 +-5.04363460560071,51.7492410547215 + + + + + +SM91 +#labelStyle + +-4.97425900849227,51.7959880150805 + + + + +SM92 + +Small Square SM92 Boundry Box +#Line2 + + +1 + +-5.04969079147156,51.8390239324732 +-5.05577799849021,51.9287959460889 +-4.91055345944349,51.9324792948274 +-4.90475450124759,51.8426954899504 +-5.04969079147156,51.8390239324732 + + + + + +SM92 +#labelStyle + +-4.98018722983112,51.885775906464 + + + + +SM93 + +Small Square SM93 Boundry Box +#Line2 + + +1 + +-5.05577860886065,51.9288049240937 +-5.06189766339052,52.0185750492358 +-4.91638334467375,52.0222702373244 +-4.91055404091123,51.9324882740137 +-5.05577860886065,51.9288049240937 + + + + + +SM93 +#labelStyle + +-4.98614644372817,51.9755619341076 + + + + +SM94 + +Small Square SM94 Boundry Box +#Line2 + + +1 + +-5.06189827695707,52.0185840270516 +-5.06804940024904,52.1083522611683 +-4.92224378939908,52.1120593358596 +-4.91638392918687,52.0222792163264 +-5.06189827695707,52.0185840270516 + + + + + +SM94 +#labelStyle + +-4.99213686525379,52.065346095641 + + + + +SM95 + +Small Square SM95 Boundry Box +#Line2 + + +1 + +-5.06805001703391,52.1083612387948 +-5.07423343244729,52.1981275793129 +-4.92813500653415,52.2018465882037 +-4.92224437697877,52.1120683146772 +-5.06805001703391,52.1083612387948 + + + + + +SM95 +#labelStyle + +-4.99815871152596,52.155128388675 + + + + +SM96 + +Small Square SM96 Boundry Box +#Line2 + + +1 + +-5.07423405247294,52.19813655675 +-5.08044998550041,52.287901001075 +-4.93405721102797,52.291631992109 +-4.92813559720179,52.2018555668366 +-5.07423405247294,52.19813655675 + + + + + +SM96 +#labelStyle + +-5.00421220173445,52.2449088108001 + + + + +SM97 + +Small Square SM97 Boundry Box +#Line2 + + +1 + +-5.08045060878949,52.2879099783223 +-5.08669928708236,52.3776725238376 +-4.94001061988807,52.3814155453092 +-4.93405780480516,52.2916409705569 +-5.08045060878949,52.2879099783223 + + + + + +SM97 +#labelStyle + +-5.01029755716536,52.3346873595873 + + + + +SM98 + +Small Square SM98 Boundry Box +#Line2 + + +1 + +-5.08669991365775,52.3776815008949 +-5.09298156705164,52.4674421449615 +-4.94599545220494,52.4711972455185 +-4.94001121679662,52.3814245235719 +-5.08669991365775,52.3776815008949 + + + + + +SM98 +#labelStyle + +-5.01641500122597,52.4244640325866 + + + + +SM99 + +Small Square SM99 Boundry Box +#Line2 + + +1 + +-5.09298219693644,52.4674511218284 +-5.09929705747726,52.5572098617845 +-4.95201192917688,52.560977090432 +-4.94599605226686,52.4712062235958 +-5.09298219693644,52.4674511218284 + + + + + +SM99 +#labelStyle + +-5.02256475947003,52.5142388273272 + + + + + +SN + +Large Square SN Boundry Box +#Line1 + + +1 + +-4.89323119467721,51.6631047613124 +-4.95199719757149,52.5609774580388 +-3.47752195563537,52.588569399144 +-3.44806809900685,51.6898236653724 +-4.89323119467721,51.6631047613124 + + + + + +SN00 + +Small Square SN00 Boundry Box +#Line2 + + +1 + +-4.89323119467721,51.6631047613124 +-4.89897005792362,51.7528922439001 +-4.75429065524559,51.7563741721216 +-4.74883727260693,51.6665755579084 +-4.89323119467721,51.6631047613124 + + + + + +SN00 +#labelStyle + +-4.82382534712114,51.709763777387 + + + + +SN01 + +Small Square SN01 Boundry Box +#Line2 + + +1 + +-4.89897063336054,51.7529012234545 +-4.90473942619685,51.8426868688503 +-4.75977303084686,51.8461799738251 +-4.75429120205758,51.7563831527915 +-4.89897063336054,51.7529012234545 + + + + + +SN01 +#labelStyle + +-4.82943661226793,51.7995649700511 + + + + +SN02 + +Small Square SN02 Boundry Box +#Line2 + + +1 + +-4.90474000463734,51.8426958482208 +-4.91053893399485,51.9324796542485 +-4.76528405218686,51.9359839803116 +-4.75977358051356,51.8461889543155 +-4.90474000463734,51.8426958482208 + + + + + +SN02 +#labelStyle + +-4.83507716906593,51.8893643466225 + + + + +SN03 + +Small Square SN03 Boundry Box +#Line2 + + +1 + +-4.9105395154597,51.932488633435 +-4.91636879023353,52.0222705979009 +-4.77082391788643,52.0257861897089 +-4.76528460472802,51.9359929606224 +-4.9105395154597,51.932488633435 + + + + + +SN03 +#labelStyle + +-4.84074722032525,51.9791619050781 + + + + +SN04 + +Small Square SN04 Boundry Box +#Line2 + + +1 + +-4.91636937474374,52.0222795769031 +-4.92222920581592,52.1120596975961 +-4.77639282845634,52.1155866001301 +-4.77082447332203,52.0257951698399 +-4.91636937474374,52.0222795769031 + + + + + +SN04 +#labelStyle + +-4.84644697078319,52.068957643379 + + + + +SN05 + +Small Square SN05 Boundry Box +#Line2 + + +1 + +-4.92222979339268,52.1120686764138 +-4.92812039365562,52.2018469511049 +-4.78199098631951,52.2053852096734 +-4.77639338680652,52.1155955800811 +-4.92222979339268,52.1120686764138 + + + + + +SN05 +#labelStyle + +-4.852176627127,52.1587515594698 + + + + +SN06 + +Small Square SN06 Boundry Box +#Line2 + + +1 + +-4.92812098432032,52.2018559297378 +-4.93404256870062,52.2916323561795 +-4.7876185958337,52.2951820164219 +-4.7819915476046,52.2053941894443 +-4.92812098432032,52.2018559297378 + + + + + +SN06 +#labelStyle + +-4.85793639801692,52.2485436512788 + + + + +SN07 + +Small Square SN07 Boundry Box +#Line2 + + +1 + +-4.93404316247485,52.2916413346275 +-4.93999594795735,52.3814159105536 +-4.79327586331445,52.3849770184429 +-4.78761916007424,52.2951909960124 +-4.93404316247485,52.2916413346275 + + + + + +SN07 +#labelStyle + +-4.86372649410956,52.3383339167172 + + + + +SN08 + +Small Square SN08 Boundry Box +#Line2 + + +1 + +-4.93999654486293,52.3814248888165 +-4.94598075051525,52.4711976119418 +-4.79896299705837,52.4747702137878 +-4.79327643053117,52.3849859978528 +-4.93999654486293,52.3814248888165 + + + + + +SN08 +#labelStyle + +-4.86954712808158,52.4281223536788 + + + + +SN09 + +Small Square SN09 Boundry Box +#Line2 + + +1 + +-4.94598135057418,52.4712065900192 +-4.95199719757149,52.5609774580388 +-4.80468020736673,52.5645616004915 +-4.7989635672722,52.4747791930169 +-4.94598135057418,52.4712065900192 + + + + + +SN09 +#labelStyle + +-4.87539851465376,52.5179089600399 + + + + +SN10 + +Small Square SN10 Boundry Box +#Line2 + + +1 + +-4.7488228303335,51.6665758961533 +-4.75427618441133,51.7563745114514 +-4.60956833835531,51.7596784741146 +-4.60440065973972,51.6698692945485 +-4.7488228303335,51.6665758961533 + + + + + +SN10 +#labelStyle + +-4.67926003951622,51.7131516340783 + + + + +SN11 + +Small Square SN11 Boundry Box +#Line2 + + +1 + +-4.75427673122046,51.7563834921214 +-4.75975853130046,51.8461803142442 +-4.6147634958527,51.8494948840183 +-4.60956885651993,51.7596874558431 +-4.75427673122046,51.7563834921214 + + + + + +SN11 +#labelStyle + +-4.68458492709027,51.8029636983121 + + + + +SN12 + +Small Square SN12 Boundry Box +#Line2 + + +1 + +-4.75975908096427,51.8461892947347 +-4.76526952377882,51.9359843218244 +-4.61998580328572,51.9393095408004 +-4.61476401672296,51.8495038655716 +-4.75975908096427,51.8461892947347 + + + + + +SN12 +#labelStyle + +-4.68993761655049,51.8927739895154 + + + + +SN13 + +Small Square SN13 Boundry Box +#Line2 + + +1 + +-4.76527007631709,51.9359933021353 +-4.77080936046624,52.0257865323196 +-4.62523544895714,52.0291224428942 +-4.61998632688036,51.9393185221784 +-4.76527007631709,51.9359933021353 + + + + + +SN13 +#labelStyle + +-4.69531830044804,51.9825825059773 + + + + +SN14 + +Small Square SN14 Boundry Box +#Line2 + + +1 + +-4.77080991589893,52.0257955124507 +-4.77637824187244,52.1155869438432 +-4.63051262296207,52.118933588721 +-4.62523597529507,52.0291314240966 +-4.77080991589893,52.0257955124507 + + + + + +SN14 +#labelStyle + +-4.70072717316445,52.0723892459736 + + + + +SN15 + +Small Square SN15 Boundry Box +#Line2 + + +1 + +-4.77637880021969,52.1155959237943 +-4.78197637041928,52.2053855544933 +-4.63581751720909,52.2087429766901 +-4.63051315206241,52.1189425697477 +-4.77637880021969,52.1155959237943 + + + + + +SN15 +#labelStyle + +-4.70616443093319,52.1621942077669 + + + + +SN16 + +Small Square SN16 Boundry Box +#Line2 + + +1 + +-4.78197693170144,52.2053945342643 +-4.78760395046348,52.2951823623531 +-4.64115032544175,52.2985506051986 +-4.63581804909111,52.208751957541 +-4.78197693170144,52.2053945342643 + + + + + +SN16 +#labelStyle + +-4.71163027186159,52.2519973896063 + + + + +SN17 + +Small Square SN17 Boundry Box +#Line2 + + +1 + +-4.78760451470107,52.2951913419436 +-4.7932611883195,52.3849773654898 +-4.64651124326032,52.3883564726308 +-4.64115086012492,52.2985595858734 +-4.78760451470107,52.2951913419436 + + + + + +SN17 +#labelStyle + +-4.71712489595306,52.341798789727 + + + + +SN18 + +Small Square SN18 Boundry Box +#Line2 + + +1 + +-4.79326175553325,52.3849863448998 +-4.79894829228286,52.4747705619549 +-4.65190046814389,52.4781605773582 +-4.64651178076429,52.3883654531294 +-4.79326175553325,52.3849863448998 + + + + + +SN18 +#labelStyle + +-4.7226485051296,52.4315984063496 + + + + +SN19 + +Small Square SN19 Boundry Box +#Line2 + + +1 + +-4.79894886249371,52.4747795411841 +-4.80466547265376,52.5645619497834 +-4.65731819947279,52.5679629177388 +-4.6519010084885,52.4781695576805 +-4.79894886249371,52.4747795411841 + + + + + +SN19 +#labelStyle + +-4.72820130325464,52.5213962376804 + + + + +SN20 + +Small Square SN20 Boundry Box +#Line2 + + +1 + +-4.6043862147149,51.6698696150479 +-4.60955386475068,51.759678795642 +-4.46481906074397,51.7628047136346 +-4.4599372709008,51.6729855366308 +-4.6043862147149,51.6698696150479 + + + + + +SN20 +#labelStyle + +-4.53466712344694,51.7163617514029 + + + + +SN21 + +Small Square SN21 Boundry Box +#Line2 + + +1 + +-4.60955438291243,51.7596877773707 +-4.61474899351676,51.849495206578 +-4.46972681361902,51.8526311615342 +-4.46481955024266,51.762813696365 +-4.60955438291243,51.7596877773707 + + + + + +SN21 +#labelStyle + +-4.53970544271908,51.8061841183682 + + + + +SN22 + +Small Square SN22 Boundry Box +#Line2 + + +1 + +-4.61474951438414,51.8495041881315 +-4.6199712720688,51.9393098643966 +-4.47466021885526,51.9424558961592 +-4.4697273056741,51.8526401440934 +-4.61474951438414,51.8495041881315 + + + + + +SN22 +#labelStyle + +-4.54477007230338,51.896004753127 + + + + +SN23 + +Small Square SN23 Boundry Box +#Line2 + + +1 + +-4.61997179566054,51.9393188457747 +-4.62522088870853,52.029122767531 +-4.47961945441654,52.0322789162318 +-4.47466071348446,51.942464878547 +-4.61997179566054,51.9393188457747 + + + + + +SN23 +#labelStyle + +-4.54986119447079,51.9858236542639 + + + + +SN24 + +Small Square SN24 Boundry Box +#Line2 + + +1 + +-4.62522141504356,52.0291317487335 +-4.63049803353004,52.1189339144024 +-4.48460469996116,52.1221002204652 +-4.47961995163772,52.032287898448 +-4.62522141504356,52.0291317487335 + + + + + +SN24 +#labelStyle + +-4.55497899322543,52.0756408203538 + + + + +SN25 + +Small Square SN25 Boundry Box +#Line2 + + +1 + +-4.63049856262745,52.1189428954292 +-4.63580289844084,52.2087433034204 +-4.48961613686186,52.2119198075635 +-4.48460519979237,52.1221092025098 +-4.63049856262745,52.1189428954292 + + + + + +SN25 +#labelStyle + +-4.56012365432513,52.1654562499606 + + + + +SN26 + +Small Square SN26 Boundry Box +#Line2 + + +1 + +-4.63580343031991,52.2087522842714 +-4.64113567718341,52.298550932982 +-4.49465394822619,52.301737676221 +-4.48961663932134,52.2119287894363 +-4.63580343031991,52.2087522842714 + + + + + +SN26 +#labelStyle + +-4.56529536530211,52.2552699416377 + + + + +SN27 + +Small Square SN27 Boundry Box +#Line2 + + +1 + +-4.64113621186362,52.2985599136569 +-4.64649656535695,52.3883568014716 +-4.49971831891708,52.3915538251224 +-4.49465445333233,52.3017466579219 +-4.64113621186362,52.2985599136569 + + + + + +SN27 +#labelStyle + +-4.57049431548405,52.3450818939274 + + + + +SN28 + +Small Square SN28 Boundry Box +#Line2 + + +1 + +-4.64649710285795,52.3883657819703 +-4.65188576043948,52.4781609072606 +-4.5048094355737,52.481368252942 +-4.49971882668846,52.3915628066512 +-4.64649710285795,52.3883657819703 + + + + + +SN28 +#labelStyle + +-4.57572069601543,52.4348921053606 + + + + +SN29 + +Small Square SN29 Boundry Box +#Line2 + + +1 + +-4.65188630078111,52.478169887583 +-4.65730346181024,52.5679632487071 +-4.50992748663271,52.5711809583439 +-4.50480994602907,52.4813772342987 +-4.65188630078111,52.478169887583 + + + + + +SN29 +#labelStyle + +-4.58097469987914,52.5247005744564 + + + + +SN30 + +Small Square SN30 Boundry Box +#Line2 + + +1 + +-4.45992282327222,51.6729858393769 +-4.46480458451761,51.762805017352 +-4.32004430973712,51.7657528157995 +-4.31544858327028,51.6759242097468 +-4.45992282327222,51.6729858393769 + + + + + +SN30 +#labelStyle + +-4.390048080297,51.7193940526034 + + + + +SN31 + +Small Square SN31 Boundry Box +#Line2 + + +1 + +-4.46480507401343,51.7628140000825 +-4.46971230864321,51.8526314662269 +-4.32466448171343,51.8555887310127 +-4.32004477055233,51.7657617994747 +-4.46480507401343,51.7628140000825 + + + + + +SN31 +#labelStyle + +-4.3947996507221,51.8092261529726 + + + + +SN32 + +Small Square SN32 Boundry Box +#Line2 + + +1 + +-4.46971280069541,51.8526404487862 +-4.47464568498017,51.942456201831 +-4.32930880680191,51.9454229705452 +-4.32466494493562,51.8555977145204 +-4.46971280069541,51.8526404487862 + + + + + +SN32 +#labelStyle + +-4.39957603817243,51.8990565597164 + + + + +SN33 + +Small Square SN33 Boundry Box +#Line2 + + +1 + +-4.47464617960646,51.9424651842189 +-4.47960489149128,52.0322792228866 +-4.33397745260772,52.0352555333922 +-4.32930927244777,51.9454319538853 +-4.47464617960646,51.9424651842189 + + + + + +SN33 +#labelStyle + +-4.40437741461853,51.9888852716993 + + + + +SN34 + +Small Square SN34 Boundry Box +#Line2 + + +1 + +-4.47960538870954,52.032288205103 +-4.4845901078338,52.122100528107 +-4.33867058833233,52.1250864185425 +-4.33397792069409,52.0352645165647 +-4.47960538870954,52.032288205103 + + + + + +SN34 +#labelStyle + +-4.4092039536667,52.0787122877784 + + + + +SN35 + +Small Square SN35 Boundry Box +#Line2 + + +1 + +-4.48459060766208,52.1221095101517 +-4.48960151537943,52.2119201161962 +-4.34338838479238,52.2149156249781 +-4.3386710588762,52.1250954015471 +-4.48459060766208,52.1221095101517 + + + + + +SN35 +#labelStyle + +-4.41405583057836,52.1685376068027 + + + + +SN36 + +Small Square SN36 Boundry Box +#Line2 + + +1 + +-4.48960201783597,52.2119290980691 +-4.49463929723466,52.3017379858487 +-4.34813101443879,52.304743151674 +-4.34338885781091,52.2149246078147 +-4.48960201783597,52.2119290980691 + + + + + +SN36 +#labelStyle + +-4.41893322228958,52.2583612276133 + + + + +SN37 + +Small Square SN37 Boundry Box +#Line2 + + +1 + +-4.49463980233784,52.3017469675497 +-4.49970363826132,52.391554135749 +-4.35289865137626,52.3945689975983 +-4.34813148994933,52.3047521343427 +-4.49463980233784,52.3017469675497 + + + + + +SN37 +#labelStyle + +-4.42383630743098,52.3481831490429 + + + + +SN38 + +Small Square SN38 Boundry Box +#Line2 + + +1 + +-4.49970414602972,52.3915631172779 +-4.50479472509751,52.4813685645716 +-4.35769147138285,52.4843931617114 +-4.35289912939629,52.3945779800989 +-4.49970414602972,52.3915631172779 + + + + + +SN38 +#labelStyle + +-4.42876526634786,52.4380033699156 + + + + +SN39 + +Small Square SN39 Boundry Box +#Line2 + + +1 + +-4.50479523554989,52.4813775459284 +-4.5099127461788,52.5711812709806 +-4.36250965193005,52.574215642966 +-4.35769195193003,52.4844021440437 +-4.50479523554989,52.4813775459284 + + + + + +SN39 +#labelStyle + +-4.43372028112066,52.5278218890463 + + + + +SN40 + +Small Square SN40 Boundry Box +#Line2 + + +1 + +-4.31543413318574,51.6759244947324 +-4.32002983103785,51.7657531016995 +-4.17524557431452,51.7685227099712 +-4.17093607566328,51.6786852437059 +-4.31543413318574,51.6759244947324 + + + + + +SN40 +#labelStyle + +-4.24540439314219,51.7222484651502 + + + + +SN41 + +Small Square SN41 Boundry Box +#Line2 + + +1 + +-4.32003029185019,51.7657620853749 +-4.32464997424759,51.855589017831 +-4.1795779993772,51.8583675213644 +-4.17524600642973,51.7685316945343 +-4.32003029185019,51.7657620853749 + + + + + +SN41 +#labelStyle + +-4.24986904437907,51.8120897291329 + + + + +SN42 + +Small Square SN42 Boundry Box +#Line2 + + +1 + +-4.3246504374669,51.8555980013388 +-4.3292942704195,51.9454232582853 +-4.18393307672546,51.9482106924141 +-4.17957843374983,51.8583765057636 +-4.3246504374669,51.8555980013388 + + + + + +SN42 +#labelStyle + +-4.25435701773761,51.9019293358247 + + + + +SN43 + +Small Square SN43 Boundry Box +#Line2 + + +1 + +-4.32929473606247,51.9454322416255 +-4.33396288715771,52.0352558220578 +-4.18831096358715,52.0380522223721 +-4.18393351337115,51.9482196766492 +-4.32929473606247,51.9454322416255 + + + + + +SN43 +#labelStyle + +-4.25886847486892,51.9917672843536 + + + + +SN44 + +Small Square SN44 Boundry Box +#Line2 + + +1 + +-4.33396335524116,52.0352648052303 +-4.33865599366262,52.1250867081373 +-4.19271181868806,52.1278921104861 +-4.18831140252171,52.038061206443 +-4.33396335524116,52.0352648052303 + + + + + +SN44 +#labelStyle + +-4.26340357896216,52.0816035738426 + + + + +SN45 + +Small Square SN45 Boundry Box +#Line2 + + +1 + +-4.33865646420356,52.125095691142 +-4.34337376074982,52.2149159155058 +-4.19713580226953,52.2177303559998 +-4.19271225992742,52.1279010943928 +-4.33865646420356,52.125095691142 + + + + + +SN45 +#labelStyle + +-4.26796249476276,52.1714382034092 + + + + +SN46 + +Small Square SN46 Boundry Box +#Line2 + + +1 + +-4.34337423376541,52.2149248983425 +-4.34811636086918,52.3047434431384 +-4.20158307610652,52.3075669581521 +-4.19713624582981,52.2177393397422 +-4.34337423376541,52.2149248983425 + + + + + +SN46 +#labelStyle + +-4.27254538859079,52.2612711721657 + + + + +SN47 + +Small Square SN47 Boundry Box +#Line2 + + +1 + +-4.34811683637676,52.3047524258071 +-4.3528839681243,52.3945692900032 +-4.20605380352575,52.3974019161774 +-4.20158352200396,52.3075759417301 +-4.34811683637676,52.3047524258071 + + + + + +SN47 +#labelStyle + +-4.27715242835964,52.3511024792184 + + + + +SN48 + +Small Square SN48 Boundry Box +#Line2 + + +1 + +-4.35288444614135,52.3945782725038 +-4.35767675829217,52.4843934550605 +-4.21054814942424,52.487235229305 +-4.20605425177678,52.397410899591 +-4.35288444614135,52.3945782725038 + + + + + +SN48 +#labelStyle + +-4.28178378359502,52.4409321236672 + + + + +SN49 + +Small Square SN49 Boundry Box +#Line2 + + +1 + +-4.35767723883636,52.4844024373929 +-4.36249490884318,52.5742159372632 +-4.21506628028803,52.5770668967592 +-4.21054860004541,52.4872442125541 +-4.35767723883636,52.4844024373929 + + + + + +SN49 +#labelStyle + +-4.28643962545416,52.5307601046063 + + + + +SN50 + +Small Square SN50 Boundry Box +#Line2 + + +1 + +-4.17092162327074,51.6786855109242 +-4.17523109329132,51.7685229780471 +-4.03042434501433,51.7711143297616 +-4.02640122843523,51.6812685725401 +-4.17092162327074,51.6786855109242 + + + + + +SN50 +#labelStyle + +-4.10073754665531,51.7249249207471 + + + + +SN51 + +Small Square SN51 Boundry Box +#Line2 + + +1 + +-4.17523152540366,51.7685319626103 +-4.17956348957135,51.8583677903014 +-4.03446886742836,51.8609674657771 +-4.03042474841403,51.7711233151556 +-4.17523152540366,51.7685319626103 + + + + + +SN51 +#labelStyle + +-4.10491511858546,51.8147747781175 + + + + +SN52 + +Small Square SN52 Boundry Box +#Line2 + + +1 + +-4.17956392394109,51.8583767747006 +-4.18391853798679,51.9482109622155 +-4.03853453982106,51.9508189945257 +-4.03446927293577,51.8609764510103 +-4.17956392394109,51.8583767747006 + + + + + +SN52 +#labelStyle + +-4.10911451621367,51.9046230122806 + + + + +SN53 + +Small Square SN53 Boundry Box +#Line2 + + +1 + +-4.18391897462958,51.9482199464506 +-4.18829639576449,52.0380524930414 +-4.04262150902553,52.0406689154995 +-4.03853494745079,51.9508279795982 +-4.18391897462958,51.9482199464506 + + + + + +SN53 +#labelStyle + +-4.11333589085369,51.9944696226119 + + + + +SN54 + +Small Square SN54 Boundry Box +#Line2 + + +1 + +-4.18829683469612,52.0380614771124 +-4.19269722162914,52.1278923820268 +-4.04672992327412,52.1305172281887 +-4.04262191879233,52.0406779004111 +-4.18829683469612,52.0380614771124 + + + + + +SN54 +#labelStyle + +-4.11757939525939,52.0843146084841 + + + + +SN55 + +Small Square SN55 Boundry Box +#Line2 + + +1 + +-4.19269766286557,52.1279013659336 +-4.19712117582106,52.2177306284154 +-4.05085993221496,52.2203639320819 +-4.04673033519288,52.1305262129396 +-4.19269766286557,52.1279013659336 + + + + + +SN55 +#labelStyle + +-4.12184518364177,52.1741579692666 + + + + +SN56 + +Small Square SN56 Boundry Box +#Line2 + + +1 + +-4.19712161937839,52.2177396121578 +-4.20156842011412,52.3075672314461 +-4.05501168692877,52.3102090266652 +-4.05086034630073,52.2203729166719 +-4.19712161937839,52.2177396121578 + + + + + +SN56 +#labelStyle + +-4.12613341168619,52.263999704326 + + + + +SN57 + +Small Square SN57 Boundry Box +#Line2 + + +1 + +-4.2015688660086,52.3075762150242 +-4.20603911783397,52.3974021903533 +-4.05918533994587,52.4000525114222 +-4.05501210319672,52.3102180110941 +-4.2015688660086,52.3075762150242 + + + + + +SN57 +#labelStyle + +-4.13044423656993,52.3538398130252 + + + + +SN58 + +Small Square SN58 Boundry Box +#Line2 + + +1 + +-4.20603956608202,52.397411173767 +-4.21053343387655,52.4872355043665 +-4.06338104526344,52.4898943858344 +-4.05918575841132,52.4000614956902 +-4.20603956608202,52.397411173767 + + + + + +SN58 +#labelStyle + +-4.13477781697984,52.4436782947236 + + + + +SN59 + +Small Square SN59 Boundry Box +#Line2 + + +1 + +-4.21053388449472,52.4872444876156 +-4.21505153472678,52.5770671727098 +-4.06759895836308,52.57973464938 +-4.06338146594187,52.4899033699413 +-4.21053388449472,52.4872444876156 + + + + + +SN59 +#labelStyle + +-4.13913431313045,52.5335151487768 + + + + +SN60 + +Small Square SN60 Boundry Box +#Line2 + + +1 + +-4.0263867738828,51.6812688219848 +-4.03040986181632,51.7711145800069 +-3.88558211383698,51.7735276130379 +-3.88184552338691,51.6836741345104 +-4.0263867738828,51.6812688219848 + + + + + +SN60 +#labelStyle + +-3.95604902701068,51.7274233553375 + + + + +SN61 + +Small Square SN61 Boundry Box +#Line2 + + +1 + +-4.03041026521315,51.7711235654009 +-4.03445435543265,51.8609677168262 +-3.88933858816445,51.8633885017208 +-3.88558248850671,51.7735365992055 +-4.03041026521315,51.7711235654009 + + + + + +SN61 +#labelStyle + +-3.959939369756,51.8172812354606 + + + + +SN62 + +Small Square SN62 Boundry Box +#Line2 + + +1 + +-4.03445476093717,51.8609767020596 +-4.03851999887733,51.9508192463819 +-3.89311470878085,51.9532478139493 +-3.88933896479203,51.8633974877308 +-4.03445476093717,51.8609767020596 + + + + + +SN62 +#labelStyle + +-3.96385004035251,51.907137524206 + + + + +SN63 + +Small Square SN63 Boundry Box +#Line2 + + +1 + +-4.03852040650416,51.9508282314544 +-4.04260693898245,52.0406691681659 +-3.89691061210823,52.0431055494396 +-3.89311508737987,51.9532567998017 +-4.03852040650416,51.9508282314544 + + + + + +SN63 +#labelStyle + +-3.96778117975988,51.9969922211803 + + + + +SN64 + +Small Square SN64 Boundry Box +#Line2 + + +1 + +-4.04260734874633,52.0406781530777 +-4.0467153239793,52.1305174816687 +-3.90072643586896,52.1329617079079 +-3.89691099269238,52.0431145351343 +-4.04260734874633,52.0406781530777 + + + + + +SN64 +#labelStyle + +-3.97173293027965,52.0868453259891 + + + + +SN65 + +Small Square SN65 Boundry Box +#Line2 + + +1 + +-4.04671573589512,52.1305264664196 +-4.05084530351494,52.2203641863787 +-3.90456231910117,52.2228162890707 +-3.90072681845208,52.1329706934449 +-4.04671573589512,52.1305264664196 + + + + + +SN65 +#labelStyle + +-3.97570543557117,52.1766968382375 + + + + +SN66 + +Small Square SN66 Boundry Box +#Line2 + + +1 + +-4.05084571759776,52.2203731709687 +-4.05499702866903,52.310209281782 +-3.9084184021743,52.3126692926445 +-3.90456270369723,52.22282527445 +-4.05084571759776,52.2203731709687 + + + + + +SN66 +#labelStyle + +-3.9796988406676,52.2665467575295 + + + + +SN67 + +Small Square SN67 Boundry Box +#Line2 + + +1 + +-4.05499744493401,52.3102182662111 +-4.05917065197081,52.4000527673625 +-3.912294826805,52.4025207183455 +-3.90841878879742,52.3126782778659 +-4.05499744493401,52.3102182662111 + + + + + +SN67 +#labelStyle + +-3.98371329199229,52.3563950834679 + + + + +SN68 + +Small Square SN68 Boundry Box +#Line2 + + +1 + +-4.05917107043328,52.4000617516305 +-4.06336632741637,52.4898946426013 +-3.91619173607311,52.4923705658895 +-3.9122952154694,52.4025297034091 +-4.05917107043328,52.4000617516305 + + + + + +SN68 +#labelStyle + +-3.98774893737529,52.4462418156542 + + + + +SN69 + +Small Square SN69 Boundry Box +#Line2 + + +1 + +-4.0633667480918,52.4899036267083 +-4.06758421048619,52.579734906977 +-3.920109274438,52.582218834992 +-3.91619212679318,52.4923795507954 +-4.0633667480918,52.4899036267083 + + + + + +SN69 +#labelStyle + +-3.99180592607015,52.5360869536884 + + + + +SN70 + +Small Square SN70 Boundry Box +#Line2 + + +1 + +-3.88183106682284,51.6836743661754 +-3.88556762861344,51.7735278454465 +-3.74072037414892,51.7757625019273 +-3.73727044366919,51.6859018721107 +-3.88183106682284,51.6836743661754 + + + + + +SN70 +#labelStyle + +-3.8113403217886,51.7297437091088 + + + + +SN71 + +Small Square SN71 Boundry Box +#Line2 + + +1 + +-3.88556800328029,51.7735368316143 +-3.88932407412917,51.8633887348761 +-3.74418866526506,51.8656305709529 +-3.74072072007522,51.7757714888116 +-3.88556800328029,51.7735368316143 + + + + + +SN71 +#labelStyle + +-3.81494329572783,51.8196090409679 + + + + +SN72 + +Small Square SN72 Boundry Box +#Line2 + + +1 + +-3.88932445075386,51.8633977208862 +-3.8931001657834,51.9532480478543 +-3.74767509769534,51.9554970920694 +-3.74418901299924,51.8656395576824 +-3.88932445075386,51.8633977208862 + + + + + +SN72 +#labelStyle + +-3.81856509834524,51.9094728110214 + + + + +SN73 + +Small Square SN73 Boundry Box +#Line2 + + +1 + +-3.89310054437951,51.9532570337067 +-3.89689603999713,52.0431057840972 +-3.75117979743556,52.0453620652003 +-3.74767544724994,51.9555060786441 +-3.89310054437951,51.9532570337067 + + + + + +SN73 +#labelStyle + +-3.82220586023074,51.9993350190904 + + + + +SN74 + +Small Square SN74 Boundry Box +#Line2 + + +1 + +-3.89689642057836,52.0431147697919 +-3.90071183449168,52.1329619433211 +-3.75470289168274,52.1352254902715 +-3.75118014882322,52.0453710516202 +-3.89689642057836,52.0431147697919 + + + + + +SN74 +#labelStyle + +-3.82586571321772,52.0891956649974 + + + + +SN75 + +Small Square SN75 Boundry Box +#Line2 + + +1 + +-3.90071221707187,52.1329709288581 +-3.90454768830412,52.2228165252425 +-3.75824450884937,52.2250873672108 +-3.75470324491625,52.1352344765366 +-3.90071221707187,52.1329709288581 + + + + + +SN75 +#labelStyle + +-3.82954479039776,52.1790547485661 + + + + +SN76 + +Small Square SN76 Boundry Box +#Line2 + + +1 + +-3.90454807289724,52.2228255106218 +-3.90840374180283,52.312669529578 +-3.76180477857785,52.314947695948 +-3.75824486394164,52.2250963533211 +-3.90454807289724,52.2228255106218 + + + + + +SN76 +#labelStyle + +-3.83324322613552,52.2689122696214 + + + + +SN77 + +Small Square SN77 Boundry Box +#Line2 + + +1 + +-3.90840412842298,52.3126785147995 +-3.91228013670335,52.4025209560438 +-3.76538383175504,52.4048064764149 +-3.76180513554189,52.3149566819035 +-3.90840412842298,52.3126785147995 + + + + + +SN77 +#labelStyle + +-3.83696115608391,52.358768227989 + + + + +SN78 + +Small Square SN78 Boundry Box +#Line2 + + +1 + +-3.91228052536477,52.4025299411075 +-3.91617701608445,52.4923708043557 +-3.76898180052719,52.4946637085448 +-3.76538419060402,52.4048154622156 +-3.91228052536477,52.4025299411075 + + + + + +SN78 +#labelStyle + +-3.84069871719935,52.4486226234954 + + + + +SN79 + +Small Square SN79 Boundry Box +#Line2 + + +1 + +-3.91617740680151,52.4923797892616 +-3.92009452440438,52.5822190742292 +-3.77259881831491,52.5845193922724 +-3.76898216127438,52.4946726941906 +-3.91617740680151,52.4923797892616 + + + + + +SN79 +#labelStyle + +-3.8444560477574,52.5384754559676 + + + + +SN80 + +Small Square SN80 Boundry Box +#Line2 + + +1 + +-3.73725598524187,51.6859020859905 +-3.74070588704924,51.7757627164938 +-3.59584062058599,51.7778189428224 +-3.59267747368764,51.6879517320732 +-3.73725598524187,51.6859020859905 + + + + + +SN80 +#labelStyle + +-3.66661291987938,51.7318859264979 + + + + +SN81 + +Small Square SN81 Boundry Box +#Line2 + + +1 + +-3.74070623297267,51.7757717033781 +-3.74417414934065,51.8656307862087 +-3.59902060369418,51.8676936195231 +-3.59584093775645,51.7778279303662 +-3.74070623297267,51.7757717033781 + + + + + +SN81 +#labelStyle + +-3.66992839566359,51.8217581387215 + + + + +SN82 + +Small Square SN82 Boundry Box +#Line2 + + +1 + +-3.74417449707194,51.8656397729383 +-3.74766055279564,51.9554973080174 +-3.60221722195458,51.9575667745896 +-3.59902092252241,51.8677026069146 +-3.74417449707194,51.8656397729383 + + + + + +SN82 +#labelStyle + +-3.67326119972406,51.9116288164508 + + + + +SN83 + +Small Square SN83 Boundry Box +#Line2 + + +1 + +-3.74766090234733,51.9555062945922 +-3.75116522340896,52.0453622818433 +-3.60543059092274,52.0474384081366 +-3.60221754245209,51.957575761829 +-3.74766090234733,51.9555062945922 + + + + + +SN83 +#labelStyle + +-3.67661145226649,52.0014979597052 + + + + +SN84 + +Small Square SN84 Boundry Box +#Line2 + + +1 + +-3.7511655747937,52.0453712682632 +-3.75468828837659,52.1352257076121 +-3.60866082725612,52.1373085202825 +-3.60543091310114,52.0474473952238 +-3.7511655747937,52.0453712682632 + + + + + +SN84 +#labelStyle + +-3.67997927464138,52.0913655685076 + + + + +SN85 + +Small Square SN85 Boundry Box +#Line2 + + +1 + +-3.75468864160717,52.1352346938773 +-3.75822987610996,52.2250875852519 +-3.61190804872717,52.2271771111501 +-3.60866115112712,52.1373175072177 +-3.75468864160717,52.1352346938773 + + + + + +SN85 +#labelStyle + +-3.68336478935765,52.1812316428836 + + + + +SN86 + +Small Square SN86 Boundry Box +#Line2 + + +1 + +-3.75823023119928,52.2250965713622 +-3.76179011625038,52.3149479146924 +-3.61517237423656,52.3170441808655 +-3.61190837430262,52.2271860979331 +-3.75823023119928,52.2250965713622 + + + + + +SN86 +#labelStyle + +-3.68676812009636,52.2710961828621 + + + + +SN87 + +Small Square SN87 Boundry Box +#Line2 + + +1 + +-3.76179047321146,52.314956900648 +-3.76536913968364,52.4048066958655 +-3.61845392382659,52.4069097295589 +-3.61517270152839,52.3170531674964 +-3.76179047321146,52.314956900648 + + + + + +SN87 +#labelStyle + +-3.6901893917246,52.3609591884747 + + + + +SN88 + +Small Square SN88 Boundry Box +#Line2 + + +1 + +-3.76536949852963,52.4048156816662 +-3.76896707855488,52.4946639287043 +-3.62175281869483,52.4967737573636 +-3.61845425284687,52.4069187160377 +-3.76536949852963,52.4048156816662 + + + + + +SN88 +#labelStyle + +-3.69362873030964,52.4508206597558 + + + + +SN89 + +Small Square SN89 Boundry Box +#Line2 + + +1 + +-3.76896743929907,52.4946729143502 +-3.77258406628362,52.5845196131439 +-3.62506918120788,52.5866362644168 +-3.62175314945573,52.4967827436904 +-3.76896743929907,52.4946729143502 + + + + + +SN89 +#labelStyle + +-3.69708626313327,52.5406805967422 + + + + +SN90 + +Small Square SN90 Boundry Box +#Line2 + + +1 + +-3.59266301354556,51.6879519281628 +-3.59582613175971,51.7778191395415 +-3.45094434895671,51.7796968863848 +-3.44806809900685,51.6898236653724 +-3.59266301354556,51.6879519281628 + + + + + +SN90 +#labelStyle + +-3.52186831138728,51.7338499561951 + + + + +SN91 + +Small Square SN91 Boundry Box +#Line2 + + +1 + +-3.59582644892729,51.7778281270853 +-3.5990060860312,51.8676938168743 +-3.45383590960225,51.8695775977775 +-3.45094463735993,51.7797058745309 +-3.59582644892729,51.7778281270853 + + + + + +SN91 +#labelStyle + +-3.52489616995411,51.8237284770839 + + + + +SN92 + +Small Square SN92 Boundry Box +#Line2 + + +1 + +-3.59900640485654,51.8677028042659 +-3.60220267530424,51.9575669725755 +-3.45674259814912,51.9594568115378 +-3.45383619951304,51.8695865857737 +-3.59900640485654,51.8677028042659 + + + + + +SN92 +#labelStyle + +-3.5279398552639,51.9136054885262 + + + + +SN93 + +Small Square SN93 Boundry Box +#Line2 + + +1 + +-3.60220299579884,51.9575759598149 +-3.60541601513331,52.0474386067596 +-3.45966451969972,52.049334527955 +-3.45674288957794,51.9594657993843 +-3.60220299579884,51.9575759598149 + + + + + +SN93 +#labelStyle + +-3.53099947712473,52.0034809907234 + + + + +SN94 + +Small Square SN94 Boundry Box +#Line2 + + +1 + +-3.60541633730878,52.0474475938469 +-3.60864622217483,52.1373087195453 +-3.46260178035893,52.1392107473237 +-3.45966481265714,52.0493435156517 +-3.60541633730878,52.0474475938469 + + + + + +SN94 +#labelStyle + +-3.53407514639071,52.0933549838817 + + + + +SN95 + +Small Square SN95 Boundry Box +#Line2 + + +1 + +-3.6086465460429,52.1373177064805 +-3.61189341420019,52.2271773110551 +-3.46555448724589,52.2290854699444 +-3.46260207485559,52.1392197348708 +-3.6086465460429,52.1373177064805 + + + + + +SN95 +#labelStyle + +-3.53716697497439,52.1832274682125 + + + + +SN96 + +Small Square SN96 Boundry Box +#Line2 + + +1 + +-3.61189373977268,52.2271862978382 +-3.61515771010897,52.3170443814154 +-3.46852274850617,52.3189586961229 +-3.46555478329257,52.2290944573418 +-3.61189373977268,52.2271862978382 + + + + + +SN96 +#labelStyle + +-3.54027507585926,52.2730984439316 + + + + +SN97 + +Small Square SN97 Boundry Box +#Line2 + + +1 + +-3.61515803739784,52.3170533680464 +-3.6184392299424,52.4069099307563 +-3.47150667332387,52.4088304261705 +-3.46852304611373,52.3189676833708 +-3.61515803739784,52.3170533680464 + + + + + +SN97 +#labelStyle + +-3.54339956311251,52.3629679112595 + + + + +SN98 + +Small Square SN98 Boundry Box +#Line2 + + +1 + +-3.6184395589597,52.4069189172351 +-3.62173809489695,52.4967739592111 +-3.47450637193407,52.4987006604036 +-3.47150697250328,52.4088394132687 +-3.6184395589597,52.4069189172351 + + + + + +SN98 +#labelStyle + +-3.54654055189791,52.4528358704213 + + + + +SN99 + +Small Square SN99 Boundry Box +#Line2 + + +1 + +-3.62173842565485,52.4967829455379 +-3.6250544273381,52.5866364669171 +-3.47752195563537,52.588569399144 +-3.4745066726964,52.4987096473523 +-3.62173842565485,52.4967829455379 + + + + + +SN99 +#labelStyle + +-3.54969815848894,52.5427023216464 + + + + + +SO + +Large Square SO Boundry Box +#Line1 + + +1 + +-3.44805363729862,51.689823843667 +-3.47750720008642,52.588569583268 +-2.0014334045888,52.5977869283621 +-2.00139955432552,51.6987492864261 +-3.44805363729862,51.689823843667 + + + + + +SO00 + +Small Square SO00 Boundry Box +#Line2 + + +1 + +-3.44805363729862,51.689823843667 +-3.45092985855346,51.7796970652519 +-3.30603305614529,51.7813962875497 +-3.30344380625461,51.6915176272292 +-3.44805363729862,51.689823843667 + + + + + +SO00 +#labelStyle + +-3.37710798753418,51.7356357511487 + + + + +SO01 + +Small Square SO01 Boundry Box +#Line2 + + +1 + +-3.4509301469538,51.779706053398 +-3.45382139035137,51.8695777772193 +-3.30863609022812,51.8712824603629 +-3.30603331577092,51.7814052762408 +-3.4509301469538,51.779706053398 + + + + + +SO01 +#labelStyle + +-3.37984812012104,51.825520008703 + + + + +SO02 + +Small Square SO02 Boundry Box +#Line2 + + +1 + +-3.45382168025927,51.8695867652156 +-3.45672804989984,51.9594569915568 +-3.31125274397074,51.96116715727 +-3.30863635121101,51.8712914489064 +-3.45382168025927,51.8695867652156 + + + + + +SO02 +#labelStyle + +-3.38260257688379,51.9154027795922 + + + + +SO03 + +Small Square SO03 Boundry Box +#Line2 + + +1 + +-3.45672834132575,51.9594659794033 +-3.45964994230022,52.0493347085533 +-3.31388311201072,52.0510503787181 +-3.31125300632031,51.9611761456659 +-3.45672834132575,51.9594659794033 + + + + + +SO03 +#labelStyle + +-3.38537145722074,52.0052840641833 + + + + +SO04 + +Small Square SO04 Boundry Box +#Line2 + + +1 + +-3.45965023525471,52.0493436962502 +-3.46258717365632,52.1392109285038 +-3.31652728988846,52.1409321251615 +-3.31388337573649,52.0510593669665 +-3.45965023525471,52.0493436962502 + + + + + +SO04 +#labelStyle + +-3.38815486147722,52.0951638628498 + + + + +SO05 + +Small Square SO05 Boundry Box +#Line2 + + +1 + +-3.46258746815005,52.1392199160509 +-3.46553985108625,52.2290856517085 +-3.3191853740578,52.2308123970617 +-3.31652755500002,52.1409411132625 +-3.46258746815005,52.1392199160509 + + + + + +SO05 +#labelStyle + +-3.39095289095684,52.1850421759713 + + + + +SO06 + +Small Square SO06 Boundry Box +#Line2 + + +1 + +-3.46554014712997,52.229094639106 +-3.46850808273446,52.3189588784735 +-3.32185746189695,52.3206911948869 +-3.31918564056484,52.2308213850151 +-3.46554014712997,52.229094639106 + + + + + +SO06 +#labelStyle + +-3.39376564793283,52.2749190039343 + + + + +SO07 + +Small Square SO07 Boundry Box +#Line2 + + +1 + +-3.46850838033905,52.3189678657213 +-3.47149197778399,52.4088306091098 +-3.32454365171944,52.4105685191125 +-3.32185772980926,52.320700182693 +-3.46850838033905,52.3189678657213 + + + + + +SO07 +#labelStyle + +-3.39659323565954,52.3647943471309 + + + + +SO08 + +Small Square SO08 Boundry Box +#Line2 + + +1 + +-3.47149227696041,52.4088395962081 +-3.47449164646881,52.4987008439341 +-3.3272440427853,52.5004443702206 +-3.3245439210469,52.4105775067713 +-3.47149227696041,52.4088395962081 + + + + + +SO08 +#labelStyle + +-3.39943575838416,52.4546682059596 + + + + +SO09 + +Small Square SO09 Boundry Box +#Line2 + + +1 + +-3.47449194722814,52.4987098308828 +-3.47750720008642,52.588569583268 +-3.32995873531238,52.5903187487002 +-3.32724431353788,52.5004533577321 +-3.47449194722814,52.4987098308828 + + + + + +SO09 +#labelStyle + +-3.4022933213586,52.544540580825 + + + + +SO10 + +Small Square SO10 Boundry Box +#Line2 + + +1 + +-3.30342934312895,51.6915177877245 +-3.3060185643148,51.7813964485604 +-3.1611082400145,51.7829171055289 +-3.15880608302591,51.6930335771141 +-3.30342934312895,51.6915177877245 + + + + + +SO10 +#labelStyle + +-3.23233344056313,51.7372432685687 + + + + +SO11 + +Small Square SO11 Boundry Box +#Line2 + + +1 + +-3.30601882393755,51.7814054372515 +-3.30862156954011,51.8712826218911 +-3.16342265380071,51.8728081662304 +-3.1611084708532,51.7829260947078 +-3.30601882393755,51.7814054372515 + + + + + +SO11 +#labelStyle + +-3.23478574871919,51.8271326905151 + + + + +SO12 + +Small Square SO12 Boundry Box +#Line2 + + +1 + +-3.30862183052011,51.8712916104346 +-3.31123819427435,51.9611673193177 +-3.16574917811301,51.9626977704739 +-3.16342288584628,51.8728171552636 +-3.30862183052011,51.8712916104346 + + + + + +SO12 +#labelStyle + +-3.23725087754817,51.9170206463093 + + + + +SO13 + +Small Square SO13 Boundry Box +#Line2 + + +1 + +-3.31123845662101,51.9611763077137 +-3.31386853315403,52.0510505412874 +-3.16808789711363,52.0525859188482 +-3.16574941137383,51.9627067593616 +-3.31123845662101,51.9611763077137 + + + + + +SO13 +#labelStyle + +-3.23972891602754,52.0069071364674 + + + + +SO14 + +Small Square SO14 Boundry Box +#Line2 + + +1 + +-3.31386879687687,52.0510595295359 +-3.31651268171849,52.1409322882545 +-3.17043889576774,52.1424726119502 +-3.16808813159815,52.0525949075902 +-3.31386879687687,52.0510595295359 + + + + + +SO14 +#labelStyle + +-3.24221995398266,52.0967921615132 + + + + +SO15 + +Small Square SO15 Boundry Box +#Line2 + + +1 + +-3.3165129468271,52.1409412763555 +-3.31917073642051,52.2308125606805 +-3.17280225985308,52.2323578503857 +-3.17043913148451,52.1424816005468 +-3.3165129468271,52.1409412763555 + + + + + +SO15 +#labelStyle + +-3.24472408209686,52.1866757219785 + + + + +SO16 + +Small Square SO16 Boundry Box +#Line2 + + +1 + +-3.3191710029246,52.2308215486339 +-3.32184279463722,52.3206913590336 +-3.17517807596947,52.3222416347684 +-3.1728024968107,52.2323668388368 +-3.3191710029246,52.2308215486339 + + + + + +SO16 +#labelStyle + +-3.24724139192155,52.2765578184027 + + + + +SO17 + +Small Square SO17 Boundry Box +#Line2 + + +1 + +-3.32184306254656,52.3207003468397 +-3.32452895468107,52.4105686837892 +-3.17756643154873,52.4121239657207 +-3.17517831417665,52.3222506230742 +-3.32184306254656,52.3207003468397 + + + + + +SO17 +#labelStyle + +-3.24977197588658,52.366438451333 + + + + +SO18 + +Small Square SO18 Boundry Box +#Line2 + + +1 + +-3.32452922400554,52.410577671448 +-3.32722931581098,52.5004445354296 +-3.17996741486452,52.5020048438729 +-3.17756667101426,52.4121329538811 +-3.32452922400554,52.410577671448 + + + + + +SO18 +#labelStyle + +-3.25231592731071,52.4563176213239 + + + + +SO19 + +Small Square SO19 Boundry Box +#Line2 + + +1 + +-3.32722958656055,52.5004535229411 +-3.32994397824369,52.5903189144435 +-3.18238111504244,52.5918842698636 +-3.17996765559727,52.5020138318881 +-3.32722958656055,52.5004535229411 + + + + + +SO19 +#labelStyle + +-3.25487334041219,52.5461953289379 + + + + +SO20 + +Small Square SO20 Boundry Box +#Line2 + + +1 + +-3.15879161863161,51.6930337198064 +-3.16109374690661,51.7829172486794 +-3.01617139930837,51.7842593038149 +-3.01415641778672,51.6943714787512 +-3.15879161863161,51.6930337198064 + + + + + +SO20 +#labelStyle + +-3.08754616364168,51.7386724699301 + + + + +SO21 + +Small Square SO21 Boundry Box +#Line2 + + +1 + +-3.16109397774243,51.7829262378584 +-3.16340813182645,51.872808309841 +-3.01819710944061,51.8741546786386 +-3.01617160135184,51.7842682934244 +-3.16109397774243,51.7829262378584 + + + + + +SO21 +#labelStyle + +-3.08971055923877,51.8285664837491 + + + + +SO22 + +Small Square SO22 Boundry Box +#Line2 + + +1 + +-3.16340836386912,51.8728172988743 +-3.16573462712143,51.9626979145465 +-3.02023342017174,51.9640486141726 +-3.01819731254049,51.8741636681041 +-3.16340836386912,51.8728172988743 + + + + + +SO22 +#labelStyle + +-3.09188627116789,51.918459049658 + + + + +SO23 + +Small Square SO23 Boundry Box +#Line2 + + +1 + +-3.16573486037934,51.9627069034341 +-3.16807331695271,52.0525860633845 +-3.0222804051792,52.0539411111303 +-3.02023362433534,51.9640576034942 +-3.16573486037934,51.9627069034341 + + + + + +SO23 +#labelStyle + +-3.09407337797578,52.0083501683055 + + + + +SO24 + +Small Square SO24 Boundry Box +#Line2 + + +1 + +-3.16807355143431,52.0525950521266 +-3.17042428628444,52.1424727569522 +-3.02433813884353,52.1438321702351 +-3.02228061041395,52.0539501003081 +-3.16807355143431,52.0525950521266 + + + + + +SO24 +#labelStyle + +-3.09627195895781,52.0982398403492 + + + + +SO25 + +Small Square SO25 Boundry Box +#Line2 + + +1 + +-3.17042452199827,52.1424817455488 +-3.17278762089325,52.2323579958551 +-3.02640669625661,52.2337217922197 +-3.02433834515688,52.1438411592691 +-3.17042452199827,52.1424817455488 + + + + + +SO25 +#labelStyle + +-3.09848209416683,52.1881280664559 + + + + +SO26 + +Small Square SO26 Boundry Box +#Line2 + + +1 + +-3.17278785784792,52.2323669843063 +-3.17516340737793,52.3222417807073 +-3.02848615323017,52.3236099778267 +-3.02640690365611,52.2337307811101 +-3.17278785784792,52.2323669843063 + + + + + +SO26 +#labelStyle + +-3.10070386442214,52.2780148473015 + + + + +SO27 + +Small Square SO27 Boundry Box +#Line2 + + +1 + +-3.17516364558214,52.3222507690131 +-3.17755173316917,52.4121241121308 +-3.03057658630436,52.4134967278078 +-3.02848636172345,52.3236189665734 +-3.17516364558214,52.3222507690131 + + + + + +SO27 +#labelStyle + +-3.1029373513186,52.3679001835708 + + + + +SO28 + +Small Square SO28 Boundry Box +#Line2 + + +1 + +-3.17755197263171,52.4121331002913 +-3.17995268653954,52.5020049907562 +-3.03267807275639,52.5033820429244 +-3.0305767958991,52.413505716411 +-3.17755197263171,52.4121331002913 + + + + + +SO28 +#labelStyle + +-3.10518263723591,52.4577840759575 + + + + +SO29 + +Small Square SO29 Boundry Box +#Line2 + + +1 + +-3.17995292726928,52.5020139787714 +-3.18236635661354,52.591884417222 +-3.03479069060941,52.5932659239474 +-3.03267828346035,52.5033910313842 +-3.17995292726928,52.5020139787714 + + + + + +SO29 +#labelStyle + +-3.10743980534796,52.5476665251639 + + + + +SO30 + +Small Square SO30 Boundry Box +#Line2 + + +1 + +-3.01414195227268,51.6943716036369 +-3.01615690507299,51.7842594291017 +-2.87122403355475,51.7854228501831 +-2.86949629977776,51.6955313001201 +-3.01414195227268,51.6943716036369 + + + + + +SO30 +#labelStyle + +-2.94274765076505,51.7399233209759 + + + + +SO31 + +Small Square SO31 Boundry Box +#Line2 + + +1 + +-3.01615710711359,51.7842684187113 +-3.01818258633105,51.8741548043282 +-2.87296096706148,51.8753219651568 +-2.87122420679574,51.7854318401658 +-3.01615710711359,51.7842684187113 + + + + + +SO31 +#labelStyle + +-2.94462405600742,51.8298213539291 + + + + +SO32 + +Small Square SO32 Boundry Box +#Line2 + + +1 + +-3.01818278942803,51.8741637937937 +-3.02021886803696,51.9640487402664 +-2.87470699054512,51.9652196557271 +-2.87296114120832,51.875330954997 +-3.01818278942803,51.8741637937937 + + + + + +SO32 +#labelStyle + +-2.94651027250112,51.9197179549416 + + + + +SO33 + +Small Square SO33 Boundry Box +#Line2 + + +1 + +-3.02021907219765,51.9640577295881 +-3.02226582386713,52.0539412376301 +-2.87646216719018,52.0551159227158 +-2.87470716560411,51.9652286454249 +-3.02021907219765,51.9640577295881 + + + + + +SO33 +#labelStyle + +-2.94840636835347,52.009613124778 + + + + +SO34 + +Small Square SO34 Boundry Box +#Line2 + + +1 + +-3.02226602909895,52.053950226808 +-3.02432352820102,52.1438322971425 +-2.87822656078415,52.1450107669556 +-2.87646234316766,52.0551249122713 +-3.02226602909895,52.053950226808 + + + + + +SO34 +#labelStyle + +-2.95031241232095,52.0995068642132 + + + + +SO35 + +Small Square SO35 Boundry Box +#Line2 + + +1 + +-3.02432373451143,52.1438412861765 +-3.02639205612947,52.2337219195363 +-2.88000023572469,52.2349041892897 +-2.87822673768655,52.1450197563689 +-3.02432373451143,52.1438412861765 + + + + + +SO35 +#labelStyle + +-2.95222847381698,52.1893991740324 + + + + +SO36 + +Small Square SO36 Boundry Box +#Line2 + + +1 + +-3.02639226352601,52.2337309084267 +-3.02847148346311,52.3236101055541 +-2.88178325702682,52.3247961905719 +-2.88000041355846,52.2349131785608 +-3.02639226352601,52.2337309084267 + + + + + +SO36 +#labelStyle + +-2.9541546229196,52.2792900550307 + + + + +SO37 + +Small Square SO37 Boundry Box +#Line2 + + +1 + +-3.02847169195341,52.3236190943009 +-3.030561886741,52.4134968559477 +-2.88357569033031,52.4146867716665 +-2.88178343579849,52.324805179701 +-3.02847169195341,52.3236190943009 + + + + + +SO37 +#labelStyle + +-2.95609093037948,52.3691795080135 + + + + +SO38 + +Small Square SO38 Boundry Box +#Line2 + + +1 + +-3.03056209633275,52.413505844551 +-3.03266334323926,52.5033821714785 +-2.88537760190716,52.5045759334487 +-2.8835758700465,52.4146957606537 +-3.03056209633275,52.413505844551 + + + + + +SO38 +#labelStyle + +-2.95803746762786,52.4590675337961 + + + + +SO39 + +Small Square SO39 Boundry Box +#Line2 + + +1 + +-3.03266355394022,52.5033911599384 +-3.03477593097992,52.5932660529174 +-2.8871890586691,52.5944636768035 +-2.88537778257451,52.5045849222939 +-3.03266355394022,52.5033911599384 + + + + + +SO39 +#labelStyle + +-2.95999430678474,52.5489541332038 + + + + +SO40 + +Small Square SO40 Boundry Box +#Line2 + + +1 + +-2.86948183329294,51.6955314071964 +-2.87120953834189,51.7854229576033 +-2.72626764296775,51.7864077166948 +-2.72482721891798,51.6965130134597 +-2.86948183329294,51.6955314071964 + + + + + +SO40 +#labelStyle + +-2.79793939665924,51.7409957917206 + + + + +SO41 + +Small Square SO41 Boundry Box +#Line2 + + +1 + +-2.87120971157999,51.785431947586 +-2.87294644296764,51.8753220729223 +-2.7277157372713,51.8763099976674 +-2.72626778740003,51.7864167069935 +-2.87120971157999,51.785431947586 + + + + + +SO41 +#labelStyle + +-2.79952774409214,51.8308972708777 + + + + +SO42 + +Small Square SO42 Boundry Box +#Line2 + + +1 + +-2.87294661711159,51.8753310627625 +-2.87469243741922,51.9652197638392 +-2.72917141033393,51.9662108668395 +-2.72771588245883,51.8763189878249 +-2.87294661711159,51.8753310627625 + + + + + +SO42 +#labelStyle + +-2.80112439705415,51.920797331789 + + + + +SO43 + +Small Square SO43 Boundry Box +#Line2 + + +1 + +-2.87469261247531,51.9652287535371 +-2.87644758488008,52.0551160311761 +-2.73063471484014,52.0561103251247 +-2.72917155628196,51.9662198568558 +-2.87469261247531,51.9652287535371 + + + + + +SO43 +#labelStyle + +-2.80272941320555,52.0106959753188 + + + + +SO44 + +Small Square SO44 Boundry Box +#Line2 + + +1 + +-2.87644776085464,52.0551250207316 +-2.87821194913665,52.1450108757653 +-2.73210570397728,52.1460083734481 +-2.73063486155397,52.056119315 +-2.87644776085464,52.0551250207316 + + + + + +SO44 +#labelStyle + +-2.80434285075631,52.1005932023424 + + + + +SO45 + +Small Square SO45 Boundry Box +#Line2 + + +1 + +-2.8782121260361,52.1450198651787 +-2.87998559458551,52.2349042984502 +-2.73358443144148,52.2359050127466 +-2.73210585146225,52.1460173631825 +-2.8782121260361,52.1450198651787 + + + + + +SO45 +#labelStyle + +-2.80596476847256,52.1904890137464 + + + + +SO46 + +Small Square SO46 Boundry Box +#Line2 + + +1 + +-2.87998577241632,52.2349132877214 +-2.88176858624061,52.3247963000847 +-2.73507095144373,52.3258002439682 +-2.73358457970299,52.2359140023401 +-2.87998577241632,52.2349132877214 + + + + + +SO46 +#labelStyle + +-2.80759522568323,52.2803834104284 + + + + +SO47 + +Small Square SO47 Boundry Box +#Line2 + + +1 + +-2.88176876500931,52.3248052892138 +-2.88356098974063,52.4146868815331 +-2.736565318716,52.4156940680726 +-2.73507110048722,52.3258092334209 +-2.88176876500931,52.3248052892138 + + + + + +SO47 +#labelStyle + +-2.80923428228675,52.370276393297 + + + + +SO48 + +Small Square SO48 Boundry Box +#Line2 + + +1 + +-2.88356116945382,52.4146958705203 +-2.88536287135646,52.5045760436703 +-2.73806758851743,52.5055864860308 +-2.73656546854696,52.4157030573846 +-2.88356116945382,52.4146958705203 + + + + + +SO48 +#labelStyle + +-2.81088199875779,52.460167963272 + + + + +SO49 + +Small Square SO49 Boundry Box +#Line2 + + +1 + +-2.8853630520208,52.5045850325156 +-2.88717429799873,52.5944637873818 +-2.73957781664072,52.5954774988252 +-2.73806773914144,52.5055954752023 +-2.8853630520208,52.5045850325156 + + + + + +SO49 +#labelStyle + +-2.8125384361542,52.550058121284 + + + + +SO50 + +Small Square SO50 Boundry Box +#Line2 + + +1 + +-2.72481275161139,51.696513102724 +-2.72625314692744,51.7864078062457 +-2.58130372835001,51.7872138796995 +-2.58015066570805,51.6973165952694 +-2.72481275161139,51.696513102724 + + + + + +SO50 +#labelStyle + +-2.6531228966839,51.7418898564515 + + + + +SO51 + +Small Square SO51 Boundry Box +#Line2 + + +1 + +-2.72625329135683,51.7864167965445 +-2.72770121234428,51.8763100875062 +-2.58246293127355,51.8771187523684 +-2.58130384396838,51.7872228702568 +-2.72625329135683,51.7864167965445 + + + + + +SO51 +#labelStyle + +-2.65442312920107,51.831794208718 + + + + +SO52 + +Small Square SO52 Boundry Box +#Line2 + + +1 + +-2.72770135752891,51.8763190776637 +-2.72915685636906,51.9662109569673 +-2.58362820124147,51.967022223555 +-2.58246304749653,51.8771277427856 +-2.72770135752891,51.8763190776637 + + + + + +SO52 +#labelStyle + +-2.65573016098196,51.9216971541577 + + + + +SO53 + +Small Square SO53 Boundry Box +#Line2 + + +1 + +-2.72915700231418,51.9662199469837 +-2.73062013168522,52.0561104155427 +-2.58479958043239,52.056924294248 +-2.58362831807326,51.9670312138321 +-2.72915700231418,51.9662199469837 + + + + + +SO53 +#labelStyle + +-2.65704403923339,52.011598693718 + + + + +SO54 + +Small Square SO54 Boundry Box +#Line2 + + +1 + +-2.73062027839613,52.056119405418 +-2.73209109147905,52.1460084641575 +-2.58597711142751,52.1468249654483 +-2.58479969787722,52.0569332843851 +-2.73062027839613,52.056119405418 + + + + + +SO54 +#labelStyle + +-2.65836481161228,52.101498828358 + + + + +SO55 + +Small Square SO55 Boundry Box +#Line2 + + +1 + +-2.73209123896108,52.1460174538919 +-2.73356978944562,52.2359051037485 +-2.58716083721545,52.2367242381692 +-2.58597722948967,52.1468339554455 +-2.73209123896108,52.1460174538919 + + + + + +SO55 +#labelStyle + +-2.65969252623093,52.1913975590488 + + + + +SO56 + +Small Square SO56 Boundry Box +#Line2 + + +1 + +-2.73356993770416,52.235914093342 +-2.73505627979482,52.3258003352638 +-2.58835080119699,52.3266221134361 +-2.58716095589924,52.2367332280266 +-2.73356993770416,52.235914093342 + + + + + +SO56 +#labelStyle + +-2.66102723166244,52.2812948867735 + + + + +SO57 + +Small Square SO57 Boundry Box +#Line2 + + +1 + +-2.73505642883533,52.3258093247166 +-2.73655061725753,52.415694159663 +-2.58954704719008,52.4165185922866 +-2.58835092050679,52.3266311031538 +-2.73505642883533,52.3258093247166 + + + + + +SO57 +#labelStyle + +-2.6623689769462,52.3711908125269 + + + + +SO58 + +Small Square SO58 Boundry Box +#Line2 + + +1 + +-2.73655076708551,52.4157031489751 +-2.73805285709182,52.5055865779173 +-2.59074961943476,52.5064136757705 +-2.58954716713029,52.4165275818647 +-2.73655076708551,52.4157031489751 + + + + + +SO58 +#labelStyle + +-2.66371781159343,52.4610853373159 + + + + +SO59 + +Small Square SO59 Boundry Box +#Line2 + + +1 + +-2.73805300771282,52.5055955670889 +-2.73956305508924,52.5954775910091 +-2.59195856259823,52.5963073649497 +-2.59074974000982,52.5064226652091 +-2.73805300771282,52.5055955670889 + + + + + +SO59 +#labelStyle + +-2.66507378559283,52.5509784621587 + + + + +SO60 + +Small Square SO60 Boundry Box +#Line2 + + +1 + +-2.58013619772878,51.6973166667194 +-2.58128923163236,51.787213951379 +-2.43633379099495,51.7878413198365 +-2.43546813113369,51.6979420263114 +-2.58013619772878,51.6973166667194 + + + + + +SO60 +#labelStyle + +-2.50829964673522,51.7426054937317 + + + + +SO61 + +Small Square SO61 Boundry Box +#Line2 + + +1 + +-2.58128934724784,51.7872229419364 +-2.5824484056645,51.8771188242784 +-2.4372040607683,51.8777482097754 +-2.43633387779525,51.7878503105952 +-2.58128934724784,51.7872229419364 + + + + + +SO61 +#labelStyle + +-2.50931171758521,51.8325121458759 + + + + +SO62 + +Small Square SO62 Boundry Box +#Line2 + + +1 + +-2.58244852188458,51.8771278146956 +-2.58361364658983,51.9670222956964 +-2.4380788854735,51.9676537062642 +-2.43720414802252,51.8777572003946 +-2.58244852188458,51.8771278146956 + + + + + +SO62 +#labelStyle + +-2.51032908098879,51.9224174003352 + + + + +SO63 + +Small Square SO63 Boundry Box +#Line2 + + +1 + +-2.5836137634187,51.9670312859735 +-2.5847849965859,52.0569243666217 +-2.43895829677859,52.0575578103501 +-2.4380789731848,51.9676626967442 +-2.5836137634187,51.9670312859735 + + + + + +SO63 +#labelStyle + +-2.51135177369409,52.0123212581236 + + + + +SO64 + +Small Square SO64 Boundry Box +#Line2 + + +1 + +-2.5847851140278,52.0569333567588 +-2.58596249823289,52.1468250380552 +-2.43984232665389,52.1474605230932 +-2.43895838495014,52.0575668006909 +-2.5847851140278,52.0569333567588 + + + + + +SO64 +#labelStyle + +-2.51237983279964,52.1022237202672 + + + + +SO65 + +Small Square SO65 Boundry Box +#Line2 + + +1 + +-2.5859626162921,52.1468340280524 +-2.5871461945183,52.2367243110103 +-2.4407310073756,52.2373618455662 +-2.4398424152889,52.1474695132949 +-2.5859626162921,52.1468340280524 + + + + + +SO65 +#labelStyle + +-2.5134132957585,52.1921247878049 + + + + +SO66 + +Small Square SO66 Boundry Box +#Line2 + + +1 + +-2.58714631319914,52.2367333008677 +-2.58833612884187,52.3266221865123 +-2.44162437152945,52.3272617788547 +-2.44073109647732,52.2373708356289 +-2.58714631319914,52.2367333008677 + + + + + +SO66 +#labelStyle + +-2.51445220038246,52.2820244617881 + + + + +SO67 + +Small Square SO67 Boundry Box +#Line2 + + +1 + +-2.5883362481487,52.32663117623 +-2.58953234502044,52.4165186655988 +-2.44252245201436,52.417160324057 +-2.44162446110115,52.3272707687786 +-2.5883362481487,52.32663117623 + + + + + +SO67 +#labelStyle + +-2.51549658484631,52.3719227432807 + + + + +SO68 + +Small Square SO68 Boundry Box +#Line2 + + +1 + +-2.58953246495766,52.4165276551769 +-2.59073488729295,52.5064137493197 +-2.4434252820462,52.5070574822842 +-2.44252254205935,52.4171693138421 +-2.58953246495766,52.4165276551769 + + + + + +SO68 +#labelStyle + +-2.5165464876922,52.4618196333592 + + + + +SO69 + +Small Square SO69 Boundry Box +#Line2 + + +1 + +-2.590735007865,52.5064227387583 +-2.59194380032547,52.5963074387368 +-2.44433289516157,52.59695325466 +-2.44342537256782,52.5070664719307 +-2.590735007865,52.5064227387583 + + + + + +SO69 +#labelStyle + +-2.51760194783396,52.5517151331123 + + + + +SO70 + +Small Square SO70 Boundry Box +#Line2 + + +1 + +-2.43545366263085,51.6979420799455 +-2.43631929375011,51.7878413736429 +-2.29135933258889,51.7882900220368 +-2.29078110656897,51.6983892916123 +-2.43545366263085,51.6979420799455 + + + + + +SO70 +#labelStyle + +-2.36347114314861,51.7431426864013 + + + + +SO71 + +Small Square SO71 Boundry Box +#Line2 + + +1 + +-2.43631938054753,51.7878503644016 +-2.4371895346284,51.8777482637548 +-2.29194063785313,51.8781983547226 +-2.29135939056801,51.7882990129395 +-2.43631938054753,51.7878503644016 + + + + + +SO71 +#labelStyle + +-2.36419501593998,51.8330510650817 + + + + +SO72 + +Small Square SO72 Boundry Box +#Line2 + + +1 + +-2.43718962187973,51.8777572543741 +-2.43806433028732,51.9676537604173 +-2.29252498563801,51.9681052997039 +-2.29194069613545,51.8782073454865 +-2.43718962187973,51.8777572543741 + + + + + +SO72 +#labelStyle + +-2.36492267422857,51.9229580529413 + + + + +SO73 + +Small Square SO73 Boundry Box +#Line2 + + +1 + +-2.4380644179957,51.9676627508973 +-2.43894371239384,52.0575578646776 +-2.29311239709744,52.0580108580698 +-2.29252504422563,51.9681142903291 +-2.4380644179957,51.9676627508973 + + + + + +SO73 +#labelStyle + +-2.36565414429977,52.0128636510436 + + + + +SO74 + +Small Square SO74 Boundry Box +#Line2 + + +1 + +-2.43894380056246,52.0575668550184 +-2.43982771291723,52.1474605775958 +-2.29370289358728,52.1479150309224 +-2.29311245599249,52.0580198485563 +-2.43894380056246,52.0575668550184 + + + + + +SO74 +#labelStyle + +-2.36638945268956,52.1027678604654 + + + + +SO75 + +Small Square SO75 Boundry Box +#Line2 + + +1 + +-2.4398278015493,52.1474695677975 +-2.44071636413263,52.2373619002445 +-2.29429649666771,52.2378178193772 +-2.29370295279191,52.1479240212704 +-2.4398278015493,52.1474695677975 + + + + + +SO75 +#labelStyle + +-2.36712862618756,52.1926706822963 + + + + +SO76 + +Small Square SO76 Boundry Box +#Line2 + + +1 + +-2.44071645323139,52.2373708903073 +-2.44160969862467,52.3272618337095 +-2.29489322810569,52.3277192245627 +-2.29429655618409,52.2378268095868 +-2.44071645323139,52.2373708903073 + + + + + +SO76 +#labelStyle + +-2.36787169183997,52.2825721176392 + + + + +SO77 + +Small Square SO77 Boundry Box +#Line2 + + +1 + +-2.4416097881934,52.3272708236334 +-2.44250774929119,52.417160379089 +-2.29549310987738,52.4176192476208 +-2.294893287936,52.3277282146341 +-2.4416097881934,52.3272708236334 + + + + + +SO77 +#labelStyle + +-2.36861867695268,52.3724721676097 + + + + +SO78 + +Small Square SO78 Boundry Box +#Line2 + + +1 + +-2.44250783933319,52.4171693688742 +-2.44341054934694,52.5070575374942 +-2.29609616417069,52.5075178897063 +-2.29549317002383,52.417628237554 +-2.44250783933319,52.4171693688742 + + + + + +SO78 +#labelStyle + +-2.36936960909434,52.4623708333366 + + + + +SO79 + +Small Square SO79 Boundry Box +#Line2 + + +1 + +-2.44341063986556,52.5070665271407 +-2.44431813232743,52.5969533100487 +-2.29670241338778,52.5974151519872 +-2.29609622463551,52.5075268795015 +-2.44341063986556,52.5070665271407 + + + + + +SO79 +#labelStyle + +-2.37012451609948,52.5522681159614 + + + + +SO80 + +Small Square SO80 Boundry Box +#Line2 + + +1 + +-2.29076663769172,51.6983893274293 +-2.29134483496705,51.7882900579688 +-2.14638185511314,51.7885599755242 +-2.14609108367948,51.6986583804644 +-2.29076663769172,51.6983893274293 + + + + + +SO80 +#labelStyle + +-2.21863888260146,51.7435014215791 + + + + +SO81 + +Small Square SO81 Boundry Box +#Line2 + + +1 + +-2.29134489294328,51.7882990488715 +-2.29192611133361,51.8781983907702 +-2.14667417492408,51.8784691763649 +-2.14638188426898,51.7885689665135 +-2.29134489294328,51.7882990488715 + + + + + +SO81 +#labelStyle + +-2.21907453130674,51.833410953372 + + + + +SO82 + +Small Square SO82 Boundry Box +#Line2 + + +1 + +-2.29192616961303,51.878207381534 +-2.29251043006957,51.9681053358675 +-2.14696802464495,51.9683769929594 +-2.14667420423239,51.8784781672158 +-2.29192616961303,51.878207381534 + + + + + +SO82 +#labelStyle + +-2.21951245820529,51.9233190989291 + + + + +SO83 + +Small Square SO83 Boundry Box +#Line2 + + +1 + +-2.29251048865428,51.9681143264927 +-2.29309781232777,52.0580108943498 +-2.14726341491319,52.0582834264219 +-2.14696805410678,51.9683859836719 +-2.29251048865428,51.9681143264927 + + + + + +SO83 +#labelStyle + +-2.21995267911675,52.0132258593474 + + + + +SO84 + +Small Square SO84 Boundry Box +#Line2 + + +1 + +-2.2930978712199,52.0580198848364 +-2.29368827946301,52.1479150673194 +-2.14756035646777,52.14818847788 +-2.14726344452961,52.0582924169961 +-2.2930978712199,52.0580198848364 + + + + + +SO84 +#labelStyle + +-2.22039521001163,52.1031312357373 + + + + +SO85 + +Small Square SO85 Boundry Box +#Line2 + + +1 + +-2.2936883386647,52.1479240576674 +-2.29428185303441,52.2378178558915 +-2.14785886015044,52.2380921484748 +-2.14756038623986,52.1481974683161 +-2.2936883386647,52.1479240576674 + + + + + +SO85 +#labelStyle + +-2.22084006701307,52.1930352292225 + + + + +SO86 + +Small Square SO86 Boundry Box +#Line2 + + +1 + +-2.29428191254783,52.2378268461012 +-2.29487855480784,52.327719261195 +-2.14815893690692,52.3279944393607 +-2.14785889007929,52.2381011387728 +-2.29428191254783,52.2378268461012 + + + + + +SO86 +#labelStyle + +-2.22128726639866,52.28293784094 + + + + +SO87 + +Small Square SO87 Boundry Box +#Line2 + + +1 + +-2.29487861463517,52.3277282512664 +-2.29547840675837,52.4176192843714 +-2.14846059778812,52.4178953517056 +-2.14815896699362,52.3280034295208 +-2.29487861463517,52.3277282512664 + + + + + +SO87 +#labelStyle + +-2.22173682460227,52.3728390720402 + + + + +SO88 + +Small Square SO88 Boundry Box +#Line2 + + +1 + +-2.29547846690183,52.4176282743046 +-2.2960814310728,52.5075179265757 +-2.14876385395146,52.5077948866909 +-2.1484606280338,52.4179043417279 +-2.29547846690183,52.4176282743046 + + + + + +SO88 +#labelStyle + +-2.22218875821591,52.4627389236866 + + + + +SO89 + +Small Square SO89 Boundry Box +#Line2 + + +1 + +-2.29608149153461,52.5075269163709 +-2.29668765015218,52.597415188976 +-2.14906871666206,52.5976930455112 +-2.14876388435722,52.5078038765756 +-2.29608149153461,52.5075269163709 + + + + + +SO89 +#labelStyle + +-2.22264308399165,52.5526373970563 + + + + +SO90 + +Small Square SO90 Boundry Box +#Line2 + + +1 + +-2.14607661457699,51.6986583984633 +-2.1463673572645,51.7885599935809 +-2.00140286074597,51.788651173816 +-2.00139955432552,51.6987492864261 +-2.14607661457699,51.6986583984633 + + + + + +SO90 +#labelStyle + +-2.07380436201566,51.7436816906635 + + + + +SO91 + +Small Square SO91 Boundry Box +#Line2 + + +1 + +-2.14636738641746,51.7885689845702 +-2.1466596481762,51.8784691944798 +-2.00140618457652,51.8785606681781 +-2.00140286107749,51.7886601648346 +-2.14636738641746,51.7885689845702 + + + + + +SO91 +#labelStyle + +-2.07395177097432,51.8335918020899 + + + + +SO92 + +Small Square SO92 Boundry Box +#Line2 + + +1 + +-2.14665967748161,51.8784781853306 +-2.14695346884656,51.9683770111326 +-2.00140952560599,51.9684687794646 +-2.00140618490976,51.8785696590584 +-2.14665967748161,51.8784781853306 + + + + + +SO92 +#labelStyle + +-2.07409995067326,51.9235005295865 + + + + +SO93 + +Small Square SO93 Boundry Box +#Line2 + + +1 + +-2.14695349830547,51.9683860018451 +-2.14724882991196,52.0582834446536 +-2.00141288395417,52.0583755087982 +-2.00140952594096,51.9684777702066 +-2.14695349830547,51.9683860018451 + + + + + +SO93 +#labelStyle + +-2.07424890646465,52.0134078742668 + + + + +SO94 + +Small Square SO94 Boundry Box +#Line2 + + +1 + +-2.14724885952545,52.0582924352279 +-2.14754574211033,52.1481884961705 +-2.00141625974195,52.148280857315 +-2.00141288429087,52.0583844994021 +-2.14724885952545,52.0582924352279 + + + + + +SO94 +#labelStyle + +-2.07439864375173,52.1033138372584 + + + + +SO95 + +Small Square SO95 Boundry Box +#Line2 + + +1 + +-2.14754577187948,52.1481974866066 +-2.14784421628233,52.2380921668243 +-2.00141965309142,52.2381848261649 +-2.00141626008041,52.1482898477809 +-2.14754577187948,52.1481974866066 + + + + + +SO95 +#labelStyle + +-2.07454916798937,52.1932184197017 + + + + +SO96 + +Small Square SO96 Boundry Box +#Line2 + + +1 + +-2.14784424620822,52.2381011571223 +-2.14814426337261,52.3279944577694 +-2.00142306412581,52.3280874165111 +-2.00141965343164,52.2381938164929 +-2.14784424620822,52.2381011571223 + + + + + +SO96 +#labelStyle + +-2.07470048468467,52.2831216227514 + + + + +SO97 + +Small Square SO97 Boundry Box +#Line2 + + +1 + +-2.14814429345634,52.3280034479296 +-2.14844589443098,52.4178953701739 +-2.00142649296955,52.4179886295303 +-2.0014230644678,52.3280964067012 +-2.14814429345634,52.3280034479296 + + + + + +SO97 +#labelStyle + +-2.07485259939765,52.3730234475749 + + + + +SO98 + +Small Square SO98 Boundry Box +#Line2 + + +1 + +-2.14844592467367,52.4179043601962 +-2.14874912061376,52.5077949052189 +-2.00142993974827,52.5078884664127 +-2.00142649331333,52.4179976195827 +-2.14844592467367,52.4179043601962 + + + + + +SO98 +#labelStyle + +-2.07500551774179,52.4629238953536 + + + + +SO99 + +Small Square SO99 Boundry Box +#Line2 + + +1 + +-2.14874915101651,52.5078038951036 +-2.14905395318495,52.5976930640992 +-2.0014334045888,52.5977869283621 +-2.00142994009385,52.5078974563276 +-2.14874915101651,52.5078038951036 + + + + + +SO99 +#labelStyle + +-2.07515924538474,52.5528229672821 + + + + + +SP + +Large Square SP Boundry Box +#Line1 + + +1 + +-2.001385085147,51.6987492866065 +-2.00141864103014,52.5977869285488 +-0.525343291112274,52.5886069117458 +-0.554729559785054,51.6898599204363 +-2.001385085147,51.6987492866065 + + + + + +SP00 + +Small Square SP00 Boundry Box +#Line2 + + +1 + +-2.001385085147,51.6987492866065 +-2.00138836282076,51.788651173997 +-1.85642385176465,51.7885636147237 +-1.85670801046523,51.6986620073229 +-2.001385085147,51.6987492866065 + + + + + +SP00 +#labelStyle + +-1.92896907846023,51.743683489333 + + + + +SP01 + +Small Square SP01 Boundry Box +#Line2 + + +1 + +-2.00138836314941,51.7886601650156 +-2.00139165775154,51.8785606683598 +-1.85613817950595,51.8784728279598 +-1.85642382327185,51.7885726057143 +-2.00138836314941,51.7886601650156 + + + + + +SP01 +#labelStyle + +-1.92882824238036,51.8335936068865 + + + + +SP02 + +Small Square SP02 Boundry Box +#Line2 + + +1 + +-2.00139165808188,51.8785696592401 +-2.00139496972996,51.9684687796469 +-1.85585101173411,51.9683806570029 +-1.85613815086412,51.8784818188119 +-2.00139165808188,51.8785696592401 + + + + + +SP02 +#labelStyle + +-1.92868666953741,51.9235023405365 + + + + +SP03 + +Small Square SP03 Boundry Box +#Line2 + + +1 + +-2.00139497006202,51.9684777703889 +-2.00139829887476,52.0583755089811 +-1.85556233805124,52.0582871029677 +-1.85585098294221,51.9683896477166 +-2.00139497006202,51.9684777703889 + + + + + +SP03 +#labelStyle + +-1.9285443548155,52.0134096913968 + + + + +SP04 + +Small Square SP04 Boundry Box +#Line2 + + +1 + +-2.00139829920854,52.058384499585 +-2.00140164530578,52.1482808574986 +-1.85527214796015,52.1481921669822 +-1.85556230910822,52.0582960935431 +-2.00139829920854,52.058384499585 + + + + + +SP04 +#labelStyle + +-1.92840129304998,52.103315660595 + + + + +SP05 + +Small Square SP05 Boundry Box +#Line2 + + +1 + +-2.00140164564129,52.1482898479644 +-2.00140500914403,52.2381848263491 +-1.85498043086324,52.2380958501878 +-1.85527211886496,52.1482011574195 +-2.00140164564129,52.1482898479644 + + + + + +SP05 +#labelStyle + +-1.92825747902681,52.1932202492719 + + + + +SP06 + +Small Square SP06 Boundry Box +#Line2 + + +1 + +-2.00140500948129,52.238193816677 +-2.00140839051166,52.3280874166959 +-1.85468717606127,52.3279981537395 +-1.85498040161482,52.2381048404871 +-2.00140500948129,52.238193816677 + + + + + +SP06 +#labelStyle + +-1.92811290748205,52.2831234585822 + + + + +SP07 + +Small Square SP07 Boundry Box +#Line2 + + +1 + +-2.00140839085068,52.328096406886 +-2.00141178953201,52.4179886297157 +-1.85439237275214,52.4178990788055 +-1.85468714665854,52.3280071439009 +-2.00140839085068,52.328096406886 + + + + + +SP07 +#labelStyle + +-1.92796757310117,52.3730252896937 + + + + +SP08 + +Small Square SP08 Boundry Box +#Line2 + + +1 + +-2.0014117898728,52.4179976197682 +-2.0014152063296,52.5078884665988 +-1.8540960100297,52.5077986265674 +-1.85439234319402,52.4179080688291 +-2.0014117898728,52.4179976197682 + + + + + +SP08 +#labelStyle + +-1.92782147051853,52.4629257437878 + + + + +SP09 + +Small Square SP09 Boundry Box +#Line2 + + +1 + +-2.00141520667217,52.5078974565137 +-2.00141864103014,52.5977869285488 +-1.85379807688246,52.5976967982205 +-1.85409598031509,52.5078076164534 +-2.00141520667217,52.5078974565137 + + + + + +SP09 +#labelStyle + +-1.9276745943167,52.5528248220595 + + + + +SP10 + +Small Square SP10 Boundry Box +#Line2 + + +1 + +-1.85669354135985,51.6986619896849 +-1.85640935391311,51.7885635970291 +-1.71144633044742,51.7882973003534 +-1.71201794405765,51.6983965452474 +-1.85669354135985,51.6986619896849 + + + + + +SP10 +#labelStyle + +-1.78413452905385,51.7435068175471 + + + + +SP11 + +Small Square SP11 Boundry Box +#Line2 + + +1 + +-1.85640932541743,51.7885725880197 +-1.85612365275514,51.8784728102083 +-1.71087167240886,51.8782056578292 +-1.71144627313131,51.7883062912586 +-1.85640932541743,51.7885725880197 + + + + + +SP11 +#labelStyle + +-1.78370545301277,51.8334163677209 + + + + +SP12 + +Small Square SP12 Boundry Box +#Line2 + + +1 + +-1.85612362411041,51.8784818010604 +-1.85583645593277,51.9683806391943 +-1.71029400624328,51.9681126277072 +-1.71087161479298,51.8782146485956 +-1.85612362411041,51.8784818010604 + + + + + +SP12 +#labelStyle + +-1.78327413275353,51.9233245317379 + + + + +SP13 + +Small Square SP13 Boundry Box +#Line2 + + +1 + +-1.85583642713795,51.9683896299081 +-1.85554775304703,52.0582870851018 +-1.70971331103625,52.0580182110771 +-1.71029394832554,51.9681216183348 +-1.85583642713795,51.9683896299081 + + + + + +SP13 +#labelStyle + +-1.78284055269277,52.0132313106958 + + + + +SP14 + +Small Square SP14 Boundry Box +#Line2 + + +1 + +-1.85554772410109,52.0582960756773 +-1.85525753359971,52.1481921490588 +-1.7091295656737,52.1479224090419 +-1.70971325281456,52.0580272015661 +-1.85554772410109,52.0582960756773 + + + + + +SP14 +#labelStyle + +-1.78240469709852,52.1031367057053 + + + + +SP15 + +Small Square SP15 Boundry Box +#Line2 + + +1 + +-1.85525750450158,52.1482011394961 +-1.85496578699211,52.2380958322067 +-1.70854274883953,52.2378252227179 +-1.70912950714593,52.1479313993925 +-1.85525750450158,52.1482011394961 + + + + + +SP15 +#labelStyle + +-1.78196655008847,52.1930407178909 + + + + +SP16 + +Small Square SP16 Boundry Box +#Line2 + + +1 + +-1.85496575774073,52.238104822506 +-1.85467250252392,52.3279981357003 +-1.70795283901323,52.3277266532343 +-1.70854269000354,52.23783421293 +-1.85496575774073,52.238104822506 + + + + + +SP16 +#labelStyle + +-1.78152609562815,52.2829433483901 + + + + +SP17 + +Small Square SP17 Boundry Box +#Line2 + + +1 + +-1.85467247311821,52.3280071258617 +-1.85437766939194,52.4178990607081 +-1.70735981446742,52.4176267017338 +-1.70795277986686,52.3277356433082 +-1.85467247311821,52.3280071258617 + + + + + +SP17 +#labelStyle + +-1.78108331752916,52.3728445983539 + + + + +SP18 + +Small Square SP18 Boundry Box +#Line2 + + +1 + +-1.85437763983082,52.4179080507317 +-1.85408127668891,52.5077986084116 +-1.70676365326539,52.5075253693721 +-1.70735975500848,52.4176356916696 +-1.85437763983082,52.4179080507317 + + + + + +SP18 +#labelStyle + +-1.78063819944729,52.4627444689464 + + + + +SP19 + +Small Square SP19 Boundry Box +#Line2 + + +1 + +-1.85408124697129,52.5078075982975 +-1.85378331340224,52.5976967800059 +-1.7061643332586,52.5974226573179 +-1.70676359349168,52.5075343591698 +-1.85408124697129,52.5078075982975 + + + + + +SP19 +#labelStyle + +-1.7801907248807,52.5526429613452 + + + + +SP20 + +Small Square SP20 Boundry Box +#Line2 + + +1 + +-1.71200347517463,51.6983965097913 +-1.71143183281976,51.7882972647835 +-1.5664717989754,51.7878522371051 +-1.56733084696593,51.697952906559 +-1.71200347517463,51.6983965097913 + + + + + +SP20 +#labelStyle + +-1.63930221086741,51.7431516795456 + + + + +SP21 + +Small Square SP21 Boundry Box +#Line2 + + +1 + +-1.71143177550077,51.7883062556887 +-1.71085714588349,51.878205622145 +-1.56560817588349,51.8777591642275 +-1.56647171283806,51.7878612278675 +-1.71143177550077,51.7883062556887 + + + + + +SP21 +#labelStyle + +-1.63858491031109,51.83306008886 + + + + +SP22 + +Small Square SP22 Boundry Box +#Line2 + + +1 + +-1.71085708826471,51.8782146129113 +-1.71027945066893,51.9681125919082 +-1.56474003224805,51.9676646980598 +-1.56560808929565,51.8777681548505 +-1.71085708826471,51.8782146129113 + + + + + +SP22 +#labelStyle + +-1.63786385822847,51.9229671074851 + + + + +SP23 + +Small Square SP23 Boundry Box +#Line2 + + +1 + +-1.71027939274829,51.9681215825358 +-1.70969872626063,52.0580181751629 +-1.56386733664048,52.0575688396504 +-1.56473994520659,51.9676736885436 +-1.71027939274829,51.9681215825358 + + + + + +SP23 +#labelStyle + +-1.63713902857042,52.0128727364857 + + + + +SP24 + +Small Square SP24 Boundry Box +#Line2 + + +1 + +-1.70969866803601,52.0580271656519 +-1.70911495154344,52.147922373012 +-1.56299005733217,52.1474715900603 +-1.56386724914224,52.0575778299949 +-1.70969866803601,52.0580271656519 + + + + + +SP24 +#labelStyle + +-1.63641039503944,52.1027769769392 + + + + +SP25 + +Small Square SP25 Boundry Box +#Line2 + + +1 + +-1.70911489301273,52.1479313633625 +-1.7085281052002,52.2378251865718 +-1.56210816229094,52.2373729503636 +-1.56298996937397,52.1474805802658 +-1.70911489301273,52.1479313633625 + + + + + +SP25 +#labelStyle + +-1.6356779310867,52.1926798299366 + + + + +SP26 + +Small Square SP26 Boundry Box +#Line2 + + +1 + +-1.70852804636125,52.237834176784 +-1.7079381657093,52.3277266169717 +-1.56122161917743,52.327272921647 +-1.56210807386955,52.2373819404301 +-1.70852804636125,52.237834176784 + + + + + +SP26 +#labelStyle + +-1.63494160990904,52.2825812965813 + + + + +SP27 + +Small Square SP27 Boundry Box +#Line2 + + +1 + +-1.70793810655996,52.3277356070456 +-1.70734511134228,52.4176266653541 +-1.56033039534145,52.41717150501 +-1.56122153028961,52.3272819115747 +-1.70793810655996,52.3277356070456 + + + + + +SP27 +#labelStyle + +-1.63420140444601,52.3724813779902 + + + + +SP28 + +Small Square SP28 Boundry Box +#Line2 + + +1 + +-1.70734505188035,52.4176356552899 +-1.70674892016132,52.5075253328748 +-1.55943445781825,52.5070687015648 +-1.56033030598391,52.4171804947989 +-1.70734505188035,52.4176356552899 + + + + + +SP28 +#labelStyle + +-1.63345728737671,52.4623800752928 + + + + +SP29 + +Small Square SP29 Boundry Box +#Line2 + + +1 + +-1.70674886038461,52.5075343226725 +-1.70614957001678,52.5974226207026 +-1.55853377332478,52.5969645124365 +-1.55943436798768,52.5070776912151 +-1.70674886038461,52.5075343226725 + + + + + +SP29 +#labelStyle + +-1.63270923111676,52.5522773896319 + + + + +SP30 + +Small Square SP30 Boundry Box +#Line2 + + +1 + +-1.56731637845443,51.6979528532857 +-1.56645730172184,51.7878521836608 +-1.42150175933465,51.7872284356725 +-1.42264821086034,51.6973311018837 +-1.56731637845443,51.6979528532857 + + + + + +SP30 +#labelStyle + +-1.49447362082657,51.7426180838488 + + + + +SP31 + +Small Square SP31 Boundry Box +#Line2 + + +1 + +-1.56645721558161,51.7878611744231 +-1.5655936497348,51.8777591106114 +-1.4203492023307,51.8771333579168 +-1.42150164437917,51.7872374262348 +-1.56645721558161,51.7878611744231 + + + + + +SP31 +#labelStyle + +-1.49346812156792,51.8325247788785 + + + + +SP32 + +Small Square SP32 Boundry Box +#Line2 + + +1 + +-1.56559356314407,51.8777681012344 +-1.56472547705301,51.9676646442713 +-1.41919061266329,51.9670368788921 +-1.42034908677403,51.877142348339 +-1.56559356314407,51.8777681012344 + + + + + +SP32 +#labelStyle + +-1.49245736372039,51.9224300764077 + + + + +SP33 + +Small Square SP33 Boundry Box +#Line2 + + +1 + +-1.56472539000864,51.967673634755 +-1.56385275224682,52.0575687856887 +-1.41802594839314,52.0569389995885 +-1.41919049650126,51.9670458691742 +-1.56472539000864,51.967673634755 + + + + + +SP33 +#labelStyle + +-1.49144131077197,52.0123339774516 + + + + +SP34 + +Small Square SP34 Boundry Box +#Line2 + + +1 + +-1.56385266474565,52.0575777760332 +-1.56297544358654,52.1474715359248 +-1.41685516718066,52.1468397210086 +-1.41802583162154,52.0569479897306 +-1.56385266474565,52.0575777760332 + + + + + +SP34 +#labelStyle + +-1.49041992586256,52.1022364830377 + + + + +SP35 + +Small Square SP35 Boundry Box +#Line2 + + +1 + +-1.56297535562539,52.1474805261303 +-1.56209351903892,52.2373728960535 +-1.4156782262812,52.2367390441671 +-1.41685504979524,52.1468487110108 +-1.56297535562539,52.1474805261303 + + + + + +SP35 +#labelStyle + +-1.4893931717798,52.1921375942063 + + + + +SP36 + +Small Square SP36 Boundry Box +#Line2 + + +1 + +-1.56209343061458,52.2373818861201 +-1.56120694626354,52.3272728671617 +-1.41449508254021,52.3266369700911 +-1.41567810827766,52.2367480340295 +-1.56209343061458,52.2373818861201 + + + + + +SP36 +#labelStyle + +-1.4883610109549,52.2820373120101 + + + + +SP37 + +Small Square SP37 Boundry Box +#Line2 + + +1 + +-1.56120685737274,52.3272818570894 +-1.56031569260909,52.4171714503487 +-1.41330569238839,52.4165334998196 +-1.41449496391421,52.3266459598138 +-1.56120685737274,52.3272818570894 + + + + + +SP37 +#labelStyle + +-1.48732340545837,52.3719356375144 + + + + +SP38 + +Small Square SP38 Boundry Box +#Line2 + + +1 + +-1.56031560324856,52.4171804401377 +-1.55941972510973,52.5070686467269 +-1.41211001183675,52.5064286344042 +-1.41330557313556,52.4165424894028 +-1.56031560324856,52.4171804401377 + + + + + +SP38 +#labelStyle + +-1.48628031699578,52.4618325717969 + + + + +SP39 + +Small Square SP39 Boundry Box +#Line2 + + +1 + +-1.55941963527616,52.5070776363772 +-1.55851901048131,52.5969644574212 +-1.41090799647152,52.5963223749083 +-1.41210989195266,52.506437623848 +-1.55941963527616,52.5070776363772 + + + + + +SP39 +#labelStyle + +-1.48523170690335,52.5517281159478 + + + + +SP40 + +Small Square SP40 Boundry Box +#Line2 + + +1 + +-1.42263374286952,51.6973310307945 +-1.42148726260537,51.787228364355 +-1.27653771321816,51.7864259110421 +-1.27797152712153,51.6965311461129 +-1.42263374286952,51.6973310307945 + + + + + +SP40 +#labelStyle + +-1.34965025561429,51.7419060432566 + + + + +SP41 + +Small Square SP41 Boundry Box +#Line2 + + +1 + +-1.421487147647,51.7872373549173 +-1.42033467670993,51.8771332863701 +-1.27509626385482,51.8763282539796 +-1.27653756944867,51.786434901347 +-1.421487147647,51.7872373549173 + + + + + +SP41 +#labelStyle + +-1.34835659383033,51.8318104506582 + + + + +SP42 + +Small Square SP42 Boundry Box +#Line2 + + +1 + +-1.42033456115037,51.8771422767922 +-1.41917605799984,51.9670368071153 +-1.2736472701038,51.9662291853832 +-1.2750961193335,51.8763372441433 +-1.42033456115037,51.8771422767922 + + + + + +SP42 +#labelStyle + +-1.34705616673901,51.9217134514701 + + + + +SP43 + +Small Square SP43 Boundry Box +#Line2 + + +1 + +-1.4191759418349,51.9670457973973 +-1.41801136453476,52.0569389275806 +-1.27219067951981,52.0561287061683 +-1.27364712482542,51.9662381754058 +-1.4191759418349,51.9670457973973 + + + + + +SP43 +#labelStyle + +-1.34574892736955,52.0116150466412 + + + + +SP44 + +Small Square SP44 Boundry Box +#Line2 + + +1 + +-1.41801124776024,52.0569479177227 +-1.41684055397405,52.1468396487688 +-1.27072643915703,52.1460268172621 +-1.27219053347911,52.0561376960499 +-1.41801124776024,52.0569479177227 + + + + + +SP44 +#labelStyle + +-1.34443482830336,52.1015152371324 + + + + +SP45 + +Small Square SP45 Boundry Box +#Line2 + + +1 + +-1.41684043658569,52.1468486387709 +-1.41566358357198,52.2367389716944 +-1.26925449556315,52.2359235196032 +-1.27072629234869,52.1460358070028 +-1.41684043658569,52.1468486387709 + + + + + +SP45 +#labelStyle + +-1.34311382166873,52.1914140239165 + + + + +SP46 + +Small Square SP46 Boundry Box +#Line2 + + +1 + +-1.41566346556548,52.2367479615568 +-1.41448041017293,52.3266368973845 +-1.26777479477331,52.3258188141416 +-1.26925434798179,52.235932509203 +-1.41566346556548,52.2367479615568 + + + + + +SP46 +#labelStyle + +-1.34178585913544,52.2813114079784 + + + + +SP47 + +Small Square SP47 Boundry Box +#Line2 + + +1 + +-1.41448029154396,52.3266458871072 +-1.4132909902065,52.4165334268783 +-1.26628728230408,52.4157127018391 +-1.26777464641352,52.3258278036007 +-1.41448029154396,52.3266458871072 + + + + + +SP47 +#labelStyle + +-1.34045089190934,52.3712073903147 + + + + +SP48 + +Small Square SP48 Boundry Box +#Line2 + + +1 + +-1.41329087095068,52.4165424164614 +-1.41209527968258,52.5064285612271 +-1.26479190314719,52.5056051836687 +-1.26628713316038,52.4157216911576 +-1.41329087095068,52.4165424164614 + + + + + +SP48 +#labelStyle + +-1.33910887072677,52.4611019719338 + + + + +SP49 + +Small Square SP49 Boundry Box +#Line2 + + +1 + +-1.4120951597955,52.5064375506708 +-1.41089323418633,52.5963223014945 +-1.26328860176331,52.5954962606147 +-1.26479175321405,52.5056141728466 +-1.4120951597955,52.5064375506708 + + + + + +SP49 +#labelStyle + +-1.337759745849,52.550995153856 + + + + +SP50 + +Small Square SP50 Boundry Box +#Line2 + + +1 + +-1.27795705980051,51.6965310572095 +-1.27652321716331,51.7864258218532 +-1.13158116192789,51.7854446824921 +-1.13330228674368,51.6955530584024 +-1.27795705980051,51.6965310572095 + + + + + +SP50 +#labelStyle + +-1.20483361157349,51.7410155748474 + + + + +SP51 + +Small Square SP51 Boundry Box +#Line2 + + +1 + +-1.27652307339094,51.786434812158 +-1.27508173891316,51.876328164504 +-1.12985087216457,51.8753438718174 +-1.13158098934957,51.7854536724822 +-1.27652307339094,51.786434812158 + + + + + +SP51 +#labelStyle + +-1.2032518338013,51.8309171213868 + + + + +SP52 + +Small Square SP52 Boundry Box +#Line2 + + +1 + +-1.27508159438894,51.8763371546677 +-1.27363271612418,51.9662290956199 +-1.1281115267841,51.9652416370592 +-1.12985069868381,51.8753528616651 +-1.27508159438894,51.8763371546677 + + + + + +SP52 +#labelStyle + +-1.20166178444593,51.92081724997 + + + + +SP53 + +Small Square SP53 Boundry Box +#Line2 + + +1 + +-1.27363257084289,51.9662380856424 +-1.27217609635003,52.0561286161161 +-1.12636306284106,52.0551379790415 +-1.12811135239464,51.9652506267645 +-1.27363257084289,51.9662380856424 + + + + + +SP53 +#labelStyle + +-1.20006340608305,52.0107159614633 + + + + +SP54 + +Small Square SP54 Boundry Box +#Line2 + + +1 + +-1.2721759503064,52.0561376059976 +-1.27071182664383,52.1460267269197 +-1.12460541678932,52.1450328985992 +-1.12636288753658,52.0551469686046 +-1.2721759503064,52.0561376059976 + + + + + +SP54 +#labelStyle + +-1.19845664074087,52.1006132567442 + + + + +SP55 + +Small Square SP55 Boundry Box +#Line2 + + +1 + +-1.27071167983255,52.1460357166604 +-1.26923985355219,52.2359234289695 +-1.12283852447491,52.234926396578 +-1.12460524056343,52.1450418880201 +-1.27071167983255,52.1460357166604 + + + + + +SP55 +#labelStyle + +-1.19684142989371,52.1905091367014 + + + + +SP56 + +Small Square SP56 Boundry Box +#Line2 + + +1 + +-1.26923970596788,52.2359324185693 +-1.2677601231092,52.3258187232156 +-1.12106232112881,52.3248184738338 +-1.12283834732117,52.2349353858567 +-1.26923970596788,52.2359324185693 + + + + + +SP56 +#labelStyle + +-1.19521771445541,52.2804036022345 + + + + +SP57 + +Small Square SP57 Boundry Box +#Line2 + + +1 + +-1.26775997474643,52.3258277126746 +-1.2662725808303,52.4157126106194 +-1.1192767413596,52.4147091312336 +-1.1210621430407,52.3248274629705 +-1.26775997474643,52.3258277126746 + + + + + +SP57 +#labelStyle + +-1.19358543477264,52.3702966542545 + + + + +SP58 + +Small Square SP58 Boundry Box +#Line2 + + +1 + +-1.26627243168361,52.4157215999378 +-1.26477717170614,52.5056050921541 +-1.11748171914607,52.5045983696546 +-1.11927656233056,52.4147181202284 +-1.26627243168361,52.4157215999378 + + + + + +SP58 +#labelStyle + +-1.19194453061817,52.4601882936832 + + + + +SP59 + +Small Square SP59 Boundry Box +#Line2 + + +1 + +-1.26477702177,52.505614081332 +-1.26327384019627,52.5954961688041 +-1.11567718782964,52.5944861899846 +-1.11748153916946,52.5046073585076 +-1.26477702177,52.505614081332 + + + + + +SP59 +#labelStyle + +-1.19029494118397,52.5500785214533 + + + + +SP60 + +Small Square SP60 Boundry Box +#Line2 + + +1 + +-1.13328782024154,51.6955529516868 +-1.13156666669758,51.7854445754339 +-0.986633606276964,51.7842847735905 +-0.98864198023778,51.6943968621708 +-1.13328782024154,51.6955529516868 + + + + + +SP60 +#labelStyle + +-1.06002518460971,51.739946699977 + + + + +SP61 + +Small Square SP61 Boundry Box +#Line2 + + +1 + +-1.13156649411638,51.785453565424 +-1.12983634805317,51.8753437644152 +-0.984614538474022,51.8741802351492 +-0.986633404896013,51.7842937632087 +-1.13156649411638,51.785453565424 + + + + + +SP61 +#labelStyle + +-1.0581553477413,51.8298448125564 + + + + +SP62 + +Small Square SP62 Boundry Box +#Line2 + + +1 + +-1.12983617456951,51.8753527542628 +-1.1280969736405,51.9652415293115 +-0.982584904418218,51.9640742577912 +-0.984614336040095,51.8741892246234 +-1.12983617456951,51.8753527542628 + + + + + +SP62 +#labelStyle + +-1.056275733555,51.9197414935373 + + + + +SP63 + +Small Square SP63 Boundry Box +#Line2 + + +1 + +-1.12809679924813,51.9652505190168 +-1.12634848051313,52.055137870947 +-0.980544630671015,52.0539668422327 +-0.982584700924005,51.9640832471216 +-1.12809679924813,51.9652505190168 + + + + + +SP63 +#labelStyle + +-1.05438627417928,52.0096367436868 + + + + +SP64 + +Small Square SP64 Boundry Box +#Line2 + + +1 + +-1.12634830520572,52.05514686051 +-1.12459080512385,52.1450327901565 +-0.978493643093097,52.1438579891995 +-0.980544426109137,52.0539758314192 +-1.12634830520572,52.05514686051 + + + + + +SP64 +#labelStyle + +-1.05248690109568,52.0995305637823 + + + + +SP65 + +Small Square SP65 Boundry Box +#Line2 + + +1 + +-1.12459062889502,52.1450417795773 +-1.12282388331763,52.2349262877856 +-0.97643186683607,52.2337476994273 +-0.978493437456105,52.1438669782424 +-1.12459062889502,52.1450417795773 + + + + + +SP65 +#labelStyle + +-1.05057754513111,52.1894229546113 + + + + +SP66 + +Small Square SP66 Boundry Box +#Line2 + + +1 + +-1.12282370616093,52.2349352770643 +-1.12104765032436,52.3248183646905 +-0.97435922633404,52.3236359736611 +-0.976431660116444,52.2337566883265 +-1.12282370616093,52.2349352770643 + + + + + +SP66 +#labelStyle + +-1.04865813645012,52.2793139169716 + + + + +SP67 + +Small Square SP67 Boundry Box +#Line2 + + +1 + +-1.12104747223328,52.3248273538271 +-1.11926204075154,52.4147090217378 +-0.972275645295066,52.4135228126558 +-0.974359018524186,52.3236449624168 +-1.12104747223328,52.3248273538271 + + + + + +SP67 +#labelStyle + +-1.04672860454699,52.3692034516711 + + + + +SP68 + +Small Square SP68 Boundry Box +#Line2 + + +1 + +-1.11926186171952,52.4147180107326 +-1.11746698857685,52.5045982598049 +-0.970181046692497,52.5034082171753 +-0.972275436387318,52.4135318012679 +-1.11926186171952,52.4147180107326 + + + + + +SP68 +#labelStyle + +-1.04478887823773,52.4590915595275 + + + + +SP69 + +Small Square SP69 Boundry Box +#Line2 + + +1 + +-1.11746680859724,52.5046072486578 +-1.11566242714061,52.5944860797796 +-0.968075352756184,52.5932921879932 +-0.970180836679117,52.503417205644 +-1.11746680859724,52.5046072486578 + + + + + +SP69 +#labelStyle + +-1.04283888565204,52.5489782413687 + + + + +SP70 + +Small Square SP70 Boundry Box +#Line2 + + +1 + +-0.988627514703545,51.6943967376457 +-0.986619112021246,51.7842846486656 +-0.841696546491821,51.7829462121938 +-0.843992097535001,51.6930625850977 +-0.988627514703545,51.6943967376457 + + + + + +SP70 +#labelStyle + +-0.915226470093823,51.7386994442764 + + + + +SP71 + +Small Square SP71 Boundry Box +#Line2 + + +1 + +-0.986618910637416,51.7842936382837 +-0.984600015343965,51.8741801098229 +-0.839388773403666,51.8728373720096 +-0.841696316315484,51.7829552013826 +-0.986618910637416,51.7842936382837 + + + + + +SP71 +#labelStyle + +-0.91306864136983,51.8285935499621 + + + + +SP72 + +Small Square SP72 Boundry Box +#Line2 + + +1 + +-0.984599812907142,51.874189099297 +-0.982570352262792,51.9640741320618 +-0.837068924119583,51.9627270757937 +-0.839388542023879,51.8728463610528 +-0.984599812907142,51.874189099297 + + + + + +SP72 +#labelStyle + +-0.910899530232681,51.9184862081324 + + + + +SP73 + +Small Square SP73 Boundry Box +#Line2 + + +1 + +-0.982570148765668,51.964083121392 +-0.980530049338139,52.0539667160985 +-0.834736914716096,52.0526153241377 +-0.837068691527994,51.9627360646913 +-0.982570148765668,51.964083121392 + + + + + +SP73 +#labelStyle + +-0.908719058371237,52.0083774194389 + + + + +SP74 + +Small Square SP74 Boundry Box +#Line2 + + +1 + +-0.980529844773336,52.053975705285 +-0.978479032429634,52.1438578626591 +-0.832392660469011,52.1425021176419 +-0.834736680904271,52.0526243128898 +-0.980529844773336,52.053975705285 + + + + + +SP74 +#labelStyle + +-0.906527146727989,52.098267184542 + + + + +SP75 + +Small Square SP75 Boundry Box +#Line2 + + +1 + +-0.978478826789701,52.1438668517019 +-0.976417226687812,52.2337475724789 +-0.830036075843931,52.2323874569148 +-0.832392425428438,52.1425111062485 +-0.978478826789701,52.1438668517019 + + + + + +SP75 +#labelStyle + +-0.904323715490223,52.1881555041115 + + + + +SP76 + +Small Square SP76 Boundry Box +#Line2 + + +1 + +-0.976417019965229,52.2337565613781 +-0.974344556545701,52.3236358463032 +-0.827667074486637,52.3222713425736 +-0.830035839566017,52.232396445376 +-0.976417019965229,52.2337565613781 + + + + + +SP76 +#labelStyle + +-0.902108684081061,52.278042378826 + + + + +SP77 + +Small Square SP77 Boundry Box +#Line2 + + +1 + +-0.974344348732875,52.3236448350588 +-0.972260945710267,52.4135226848865 +-0.825285569213322,52.4121537752435 +-0.827666836962703,52.3222803308894 +-0.974344348732875,52.3236448350588 + + + + + +SP77 +#labelStyle + +-0.899881971150376,52.3679278093733 + + + + +SP78 + +Small Square SP78 Boundry Box +#Line2 + + +1 + +-0.972260736799533,52.4135316734987 +-0.970166317153764,52.5034080889931 +-0.822891472000699,52.5020347555582 +-0.825285330434609,52.4121627634141 +-0.972260736799533,52.4135316734987 + + + + + +SP78 +#labelStyle + +-0.897643494565574,52.45781179645 + + + + +SP79 + +Small Square SP79 Boundry Box +#Line2 + + +1 + +-0.970166107137381,52.5034170774618 +-0.968060593104929,52.5932920593965 +-0.820484693975954,52.5919142841595 +-0.822891231958362,52.5020437435837 +-0.970166107137381,52.5034170774618 + + + + + +SP79 +#labelStyle + +-0.895393171402245,52.5476943407615 + + + + +SP80 + +Small Square SP80 Boundry Box +#Line2 + + +1 + +-0.843977633117628,51.6930624427661 +-0.841682053360687,51.7829460694052 +-0.696771482114565,51.781429030444 +-0.699354127890112,51.6915502591214 +-0.843977633117628,51.6930624427661 + + + + + +SP80 +#labelStyle + +-0.770438962764898,51.7372738376504 + + + + +SP81 + +Small Square SP81 Boundry Box +#Line2 + + +1 + +-0.841681823181471,51.7829550585939 +-0.839374251405988,51.8728372287621 +-0.694175086881581,51.8713153147464 +-0.696771223151117,51.7814380191462 +-0.841681823181471,51.7829550585939 + + + + + +SP81 +#labelStyle + +-0.767993219767134,51.8271633636995 + + + + +SP82 + +Small Square SP82 Boundry Box +#Line2 + + +1 + +-0.839374020023307,51.8728462178052 +-0.837054373104404,51.9627269320855 +-0.691565106301017,51.9612001236219 +-0.694174826564289,51.871324303301 +-0.839374020023307,51.8728462178052 + + + + + +SP82 +#labelStyle + +-0.76553468999867,51.9170514240439 + + + + +SP83 + +Small Square SP83 Boundry Box +#Line2 + + +1 + +-0.837054140509905,51.9627359209831 +-0.834722334531413,52.052615179967 +-0.68894144597381,52.0510834575213 +-0.691564844620484,51.9612091120291 +-0.837054140509905,51.9627359209831 + + + + + +SP83 +#labelStyle + +-0.763063284717452,52.0069380192025 + + + + +SP84 + +Small Square SP84 Boundry Box +#Line2 + + +1 + +-0.834722100716663,52.052624168719 +-0.83237805096176,52.1425019730068 +-0.686304010600374,52.1409653169021 +-0.688941182920552,52.0510924457809 +-0.834722100716663,52.052624168719 + + + + + +SP84 +#labelStyle + +-0.760578914335763,52.0968231497026 + + + + +SP85 + +Small Square SP85 Boundry Box +#Line2 + + +1 + +-0.832377815918247,52.1425109616133 +-0.830021436859982,52.2323873118134 +-0.683652703969932,52.2308457022294 +-0.686303746164815,52.1409743050144 +-0.832377815918247,52.1425109616133 + + + + + +SP85 +#labelStyle + +-0.758081488410216,52.1867068160791 + + + + +SP86 + +Small Square SP86 Boundry Box +#Line2 + + +1 + +-0.830021200579112,52.2323963002746 +-0.827652405870781,52.3222711970041 +-0.680987428949698,52.3207246139749 +-0.683652438142406,52.2308546901942 +-0.830021200579112,52.2323963002746 + + + + + +SP86 +#labelStyle + +-0.755570915631606,52.2765890188748 + + + + +SP87 + +Small Square SP87 Boundry Box +#Line2 + + +1 + +-0.827652168343876,52.3222801853199 +-0.825270870809261,52.412153629204 +-0.678308087473902,52.4106020526176 +-0.680987161720445,52.3207336017924 +-0.827652168343876,52.3222801853199 + + + + + +SP87 +#labelStyle + +-0.753047103814616,52.36646975864 + + + + +SP88 + +Small Square SP88 Boundry Box +#Line2 + + +1 + +-0.825270632027561,52.4121626173746 +-0.822876743651037,52.5020346090468 +-0.675614580532661,52.5004780186432 +-0.678307818833069,52.4106110402878 +-0.825270632027561,52.4121626173746 + + + + + +SP88 +#labelStyle + +-0.750509959887376,52.4563490359329 + + + + +SP89 + +Small Square SP89 Boundry Box +#Line2 + + +1 + +-0.822876503605697,52.5020435970722 +-0.820469935522184,52.5919141371742 +-0.672906808160683,52.590352512544 +-0.675614310470298,52.5004870061661 +-0.822876503605697,52.5020435970722 + + + + + +SP89 +#labelStyle + +-0.747959389880874,52.5462268513189 + + + + +SP90 + +Small Square SP90 Boundry Box +#Line2 + + +1 + +-0.69933966473849,51.6915500989867 +-0.696756990257931,51.7814288697951 +-0.551859911905372,51.7797332647665 +-0.554729559785054,51.6898599204363 +-0.69933966473849,51.6915500989867 + + + + + +SP90 +#labelStyle + +-0.625664156633116,51.7356699142744 + + + + +SP91 + +Small Square SP91 Boundry Box +#Line2 + + +1 + +-0.696756731291604,51.7814378584972 +-0.694160566167237,51.8713151535812 +-0.548974988044697,51.8696141000179 +-0.55185962416412,51.7797422529249 +-0.696756731291604,51.7814378584972 + + + + + +SP91 +#labelStyle + +-0.622930587275989,51.8255542881628 + + + + +SP92 + +Small Square SP92 Boundry Box +#Line2 + + +1 + +-0.69416030584705,51.8713241421358 +-0.691550556578088,51.9611999619385 +-0.546074970574841,51.9594934381695 +-0.548974698799295,51.8696230880266 +-0.69416030584705,51.8713241421358 + + + + + +SP92 +#labelStyle + +-0.620182727626464,51.915437175886 + + + + +SP93 + +Small Square SP93 Boundry Box +#Line2 + + +1 + +-0.691550294894647,51.9612089503456 +-0.688926867090379,52.0510832953175 +-0.543159754631676,52.0493712795142 +-0.546074679814851,51.9595024260285 +-0.691550294894647,51.9612089503456 + + + + + +SP93 +#labelStyle + +-0.617420478521437,52.0053185778145 + + + + +SP94 + +Small Square SP94 Boundry Box +#Line2 + + +1 + +-0.688926604034197,52.0510922835771 +-0.686289402403463,52.1409651541759 +-0.540229234350888,52.1392476243504 +-0.543159462346561,52.0493802672234 +-0.688926604034197,52.0510922835771 + + + + + +SP94 +#labelStyle + +-0.614643739852991,52.0951984943251 + + + + +SP95 + +Small Square SP95 Boundry Box +#Line2 + + +1 + +-0.686289137964966,52.1409741422881 +-0.683638066305499,52.2308455389786 +-0.537283302856141,52.2291224729826 +-0.540228940530012,52.1392566119101 +-0.686289137964966,52.1409741422881 + + + + + +SP95 +#labelStyle + +-0.611852410557214,52.1850769258015 + + + + +SP96 + +Small Square SP96 Boundry Box +#Line2 + + +1 + +-0.683637800475019,52.2308545269434 +-0.680972761662622,52.3207244501975 +-0.534321852247056,52.3189958257204 +-0.537283007488765,52.2291314603926 +-0.683637800475019,52.2308545269434 + + + + + +SP96 +#labelStyle + +-0.609046388602867,52.2749538726334 + + + + +SP97 + +Small Square SP97 Boundry Box +#Line2 + + +1 + +-0.680972494430399,52.320733438015 +-0.678293390407974,52.4106018883114 +-0.53134477358703,52.408867682879 +-0.534321555322339,52.3190048129809 +-0.680972494430399,52.320733438015 + + + + + +SP97 +#labelStyle + +-0.606225570979885,52.364829335217 + + + + +SP98 + +Small Square SP98 Boundry Box +#Line2 + + +1 + +-0.678293121764155,52.4106108759816 +-0.675599853530574,52.500477853806 +-0.528351956890874,52.4987380447789 +-0.531344475094025,52.40887666999 +-0.678293121764155,52.4106108759816 + + + + + +SP98 +#labelStyle + +-0.603389853687715,52.4547033139542 + + + + +SP99 + +Small Square SP99 Boundry Box +#Line2 + + +1 + +-0.675599583465209,52.500486841329 +-0.672892051064023,52.5903523471738 +-0.525343291112274,52.5886069117458 +-0.52835165681853,52.4987470317404 +-0.675599583465209,52.500486841329 + + + + + +SP99 +#labelStyle + +-0.600539131723484,52.5445758092535 + + + + + +SR + +Large Square SR Boundry Box +#Line1 + + +1 + +-6.25200895878901,50.721984797004 +-6.3354369869736,51.6186468639985 +-4.89324506159501,51.6630954255921 +-4.83745309244627,50.7650392067023 +-6.25200895878901,50.721984797004 + + + + + +SR00 + +Small Square SR00 Boundry Box +#Line2 + + +1 + +-6.25200895878901,50.721984797004 +-6.26015984884597,50.8116535303035 +-6.11861210750807,50.8167449942125 +-6.11073012588438,50.7270601238276 +-6.25200895878901,50.721984797004 + + + + + +SR00 +#labelStyle + +-6.18537108951552,50.769387273442 + + + + +SR01 + +Small Square SR01 Boundry Box +#Line2 + + +1 + +-6.2601606660981,50.8116624979567 +-6.26835327710582,50.901328891932 +-6.12653523492081,50.9064365560214 +-6.11861289779853,50.8167539634827 +-6.2601606660981,50.8116624979567 + + + + + +SR01 +#labelStyle + +-6.19340883680869,50.8590719584139 + + + + +SR02 + +Small Square SR02 Boundry Box +#Line2 + + +1 + +-6.26835409854443,50.901337859351 +-6.27658871071224,50.9910019082796 +-6.13449899303681,50.9961258344672 +-6.12653602926074,50.9064455250635 +-6.26835409854443,50.901337859351 + + + + + +SR02 +#labelStyle + +-6.20148776423092,50.9487543320787 + + + + +SR03 + +Small Square SR03 Boundry Box +#Line2 + + +1 + +-6.27658953636548,50.9910108754638 +-6.28486643249216,51.080672573576 +-6.14250365554558,51.0858128242173 +-6.13449979145347,50.9961348032807 +-6.27658953636548,50.9910108754638 + + + + + +SR03 +#labelStyle + +-6.20960814876596,51.0384343889094 + + + + +SR04 + +Small Square SR04 Boundry Box +#Line2 + + +1 + +-6.28486726238845,51.0806815405247 +-6.2931867278918,51.1703408820027 +-6.15054949867259,51.1754975198952 +-6.14250445806644,51.0858217928017 +-6.28486726238845,51.0806815405247 + + + + + +SR04 +#labelStyle + +-6.21777026996065,51.1281121233334 + + + + +SR05 + +Small Square SR05 Boundry Box +#Line2 + + +1 + +-6.29318756205981,51.1703498487154 +-6.30154988500671,51.2600068276927 +-6.15863680120838,51.2651799160793 +-6.15055030532541,51.1755064882498 +-6.29318756205981,51.1703498487154 + + + + + +SR05 +#labelStyle + +-6.22597440995423,51.2177875297319 + + + + +SR06 + +Small Square SR06 Boundry Box +#Line2 + + +1 + +-6.30155072347539,51.2600157941689 +-6.30995619461222,51.3496704047296 +-6.1667658445381,51.3548600073032 +-6.15863761202117,51.2651888842038 +-6.30155072347539,51.2600157941689 + + + + + +SR06 +#labelStyle + +-6.23422085350814,51.3074606024386 + + + + +SR07 + +Small Square SR07 Boundry Box +#Line2 + + +1 + +-6.30995703741079,51.3496793709686 +-6.31840595019432,51.4393316071465 +-6.17493691267135,51.4445377880538 +-6.16676665953913,51.3548689751968 +-6.30995703741079,51.3496793709686 + + + + + +SR07 +#labelStyle + +-6.2425098880362,51.39713133574 + + + + +SR08 + +Small Square SR08 Boundry Box +#Line2 + + +1 + +-6.31840679735225,51.4393405731478 +-6.32689944798092,51.528990428926 +-6.18315029227256,51.5342132527716 +-6.17493773188915,51.4445467557161 +-6.31840679735225,51.4393405731478 + + + + + +SR08 +#labelStyle + +-6.25084180363516,51.4867997238738 + + + + +SR09 + +Small Square SR09 Boundry Box +#Line2 + + +1 + +-6.32690029952797,51.5289993946889 +-6.3354369869736,51.6186468639985 +-6.19140627269167,51.6238863958496 +-6.18315111573592,51.5342222202021 +-6.32690029952797,51.5289993946889 + + + + + +SR09 +#labelStyle + +-6.25921689311579,51.5764657610284 + + + + +SR10 + +Small Square SR10 Boundry Box +#Line2 + + +1 + +-6.11071599456112,50.7270606228676 +-6.11859794927769,50.8167454948395 +-5.97700985506391,50.8216655301429 +-5.96939707741718,50.731965061091 +-6.11071599456112,50.7270606228676 + + + + + +SR10 +#labelStyle + +-6.04392353286882,50.7743855884587 + + + + +SR11 + +Small Square SR11 Boundry Box +#Line2 + + +1 + +-6.11859873956546,50.8167544641098 +-6.12652104964393,50.9064370582414 +-5.98466238344114,50.9113727516405 +-5.97701061836303,50.821674500976 +-6.11859873956546,50.8167544641098 + + + + + +SR11 +#labelStyle + +-6.05169150002958,50.8640861739382 + + + + +SR12 + +Small Square SR12 Boundry Box +#Line2 + + +1 + +-6.12652184398116,50.9064460272837 +-6.13448478057583,50.9961263382864 +-5.99235416523382,51.0010777496597 +-5.98466315065246,50.9113817222516 +-6.12652184398116,50.9064460272837 + + + + + +SR12 +#labelStyle + +-6.05949927581905,50.9537845088018 + + + + +SR13 + +Small Square SR13 Boundry Box +#Line2 + + +1 + +-6.13448557898976,50.9961353071001 +-6.14248941576198,51.0858133296419 +-6.0000854649644,51.0907805192915 +-5.99235493638367,51.0010867200482 +-6.13448557898976,50.9961353071001 + + + + + +SR13 +#labelStyle + +-6.06734712810958,51.043480587951 + + + + +SR14 + +Small Square SR14 Boundry Box +#Line2 + + +1 + +-6.1424902182801,51.0858222982264 +-6.15053523142692,51.1754980269312 +-6.00785654960758,51.1804810555865 +-6.00008624007934,51.0907894894568 +-6.1424902182801,51.0858222982264 + + + + + +SR14 +#labelStyle + +-6.07523532725353,51.1331744062461 + + + + +SR15 + +Small Square SR15 Boundry Box +#Line2 + + +1 + +-6.15053603807699,51.175506995286 +-6.15862250636027,51.2651804247331 +-6.0156676886185,51.270179353555 +-6.00785732871445,51.1804900255283 +-6.15053603807699,51.175506995286 + + + + + +SR15 +#labelStyle + +-6.0831641461117,51.2228659585046 + + + + +SR16 + +Small Square SR16 Boundry Box +#Line2 + + +1 + +-6.15862331717029,51.2651893928577 +-6.16675152194623,51.3548605175809 +-6.02351915396125,51.3598754081654 +-6.01566847174436,51.2701883232727 +-6.15862331717029,51.2651893928577 + + + + + +SR16 +#labelStyle + +-6.09113386008213,51.3125552395012 + + + + +SR17 + +Small Square SR17 Boundry Box +#Line2 + + +1 + +-6.16675233694448,51.3548694854747 +-6.17492256219346,51.4445382999618 +-6.03141122013782,51.4495692143441 +-6.02351994113343,51.3598843776585 +-6.16675233694448,51.3548694854747 + + + + + +SR17 +#labelStyle + +-6.09914474712934,51.4022422439666 + + + + +SR18 + +Small Square SR18 Boundry Box +#Line2 + + +1 + +-6.17492338140846,51.4445472676243 +-6.18313591376541,51.5342137663162 +-6.03934416421741,51.5392607669749 +-6.03141201138389,51.4495781836121 +-6.17492338140846,51.4445472676243 + + + + + +SR18 +#labelStyle + +-6.10719708781394,51.4919269665872 + + + + +SR19 + +Small Square SR19 Boundry Box +#Line2 + + +1 + +-6.18313673722597,51.5342227337469 +-6.19139186601109,51.6238869110372 +-6.04731826586624,51.6289500608979 +-6.03934495956522,51.5392697360173 +-6.18313673722597,51.5342227337469 + + + + + +SR19 +#labelStyle + +-6.11529116532268,51.5816094020043 + + + + +SR20 + +Small Square SR20 Boundry Box +#Line2 + + +1 + +-5.96938294215301,50.7319655430347 +-5.97699569286621,50.8216660136195 +-5.83536861385275,50.8264145065788 +-5.82802529984538,50.7366989796195 +-5.96938294215301,50.7319655430347 + + + + + +SR20 +#labelStyle + +-5.90243643555358,50.7792126707883 + + + + +SR21 + +Small Square SR21 Boundry Box +#Line2 + + +1 + +-5.97699645616262,50.8216749844528 +-5.98464819417028,50.911373236656 +-5.84275028110923,50.9161368449203 +-5.83536935013443,50.8264234789208 +-5.97699645616262,50.8216749844528 + + + + + +SR21 +#labelStyle + +-5.90993435717419,50.8689286152963 + + + + +SR22 + +Small Square SR22 Boundry Box +#Line2 + + +1 + +-5.98464896137888,50.9113822072672 +-5.99233994875195,51.0010782362199 +-5.85016982206895,51.0058570176223 +-5.8427510211656,50.9161458170459 +-5.98464896137888,50.9113822072672 + + + + + +SR22 +#labelStyle + +-5.91747071347132,50.9586423678439 + + + + +SR23 + +Small Square SR23 Boundry Box +#Line2 + + +1 + +-5.99234071989906,51.0010872066085 +-6.00007122113274,51.0907810074023 +-5.85762749205955,51.0955750201853 +-5.85017056592542,51.0058659895311 +-5.99234071989906,51.0010872066085 + + + + + +SR23 +#labelStyle + +-5.92504576317786,51.0483539237473 + + + + +SR24 + +Small Square SR24 Boundry Box +#Line2 + + +1 + +-6.00007199624494,51.0907899775678 +-6.00784227828644,51.180481545254 +-5.86512354877684,51.1852908480731 +-5.85762823974176,51.0955839918768 +-6.00007199624494,51.0907899775678 + + + + + +SR24 +#labelStyle + +-5.9326597674233,51.1380632782852 + + + + +SR25 + +Small Square SR25 Boundry Box +#Line2 + + +1 + +-6.00784305739055,51.1804905151959 +-6.01565338966726,51.2701798447851 +-5.87265825231197,51.2750044967126 +-5.86512430031069,51.185299819547 +-6.00784305739055,51.1804905151959 + + + + + +SR25 +#labelStyle + +-5.94031298976116,51.2277704266972 + + + + +SR26 + +Small Square SR26 Boundry Box +#Line2 + + +1 + +-6.01565417279035,51.270188814503 +-6.02350482723832,51.3598759009642 +-5.88023186517908,51.364715961493 +-5.87265900772359,51.2750134679683 +-6.01565417279035,51.270188814503 + + + + + +SR26 +#labelStyle + +-5.94800569619685,51.317475364184 + + + + +SR27 + +Small Square SR27 Boundry Box +#Line2 + + +1 + +-6.02350561440772,51.3598848704574 +-6.03139686550068,51.4495697087177 +-5.88784465234317,51.4544252377653 +-5.88023262449484,51.3647249325301 +-6.02350561440772,51.3598848704574 + + + + + +SR27 +#labelStyle + +-5.95573815521599,51.4071780859063 + + + + +SR28 + +Small Square SR28 Boundry Box +#Line2 + + +1 + +-6.03139765674396,51.4495786779859 +-6.03932978152258,51.5392612629294 +-5.89549688124852,51.5441323208415 +-5.88784541558969,51.4544342085833 +-6.03139765674396,51.4495786779859 + + + + + +SR28 +#labelStyle + +-5.96351063781298,51.4968785869844 + + + + +SR29 + +Small Square SR29 Boundry Box +#Line2 + + +1 + +-6.03933057686758,51.5392702319719 +-6.04730385496925,51.6289505584395 +-5.9031888218474,51.6338372059942 +-5.89549764845267,51.5441412914399 +-6.03933057686758,51.5392702319719 + + + + + +SR29 +#labelStyle + +-5.97132341752012,51.5865768624974 + + + + +SR30 + +Small Square SR30 Boundry Box +#Line2 + + +1 + +-5.82801116077635,50.7366994444559 +-5.83535444782467,50.8264149728939 +-5.69368975448261,50.8309918136801 +-5.68661615474855,50.7412617702494 +-5.82801116077635,50.7366994444559 + + + + + +SR30 +#labelStyle + +-5.76091116247344,50.7838684089798 + + + + +SR31 + +Small Square SR31 Boundry Box +#Line2 + + +1 + +-5.83535518410365,50.826423945236 +-5.84273608798224,50.9161373127199 +-5.70080030764469,50.9207287253381 +-5.69369046372167,50.8310007874766 +-5.83535518410365,50.826423945236 + + + + + +SR31 +#labelStyle + +-5.76813878220306,50.8735991703459 + + + + +SR32 + +Small Square SR32 Boundry Box +#Line2 + + +1 + +-5.84273682803589,50.9161462848457 +-5.85015560170496,51.0058574869121 +-5.70794735245658,51.0104635271443 +-5.70080102052068,50.9207376989238 +-5.84273682803589,50.9161462848457 + + + + + +SR32 +#labelStyle + +-5.77540346028768,50.9633277963656 + + + + +SR33 + +Small Square SR33 Boundry Box +#Line2 + + +1 + +-5.85015634555869,51.0058664588211 +-5.85761324431954,51.095575490971 +-5.7151311350243,51.1001962149942 +-5.70794806899402,51.0104725005189 +-5.85015634555869,51.0058664588211 + + + + + +SR33 +#labelStyle + +-5.78270544629363,51.0530542827558 + + + + +SR34 + +Small Square SR34 Boundry Box +#Line2 + + +1 + +-5.85761399199901,51.0955844626627 +-5.86510927352087,51.1852913203605 +-5.72235190373753,51.1899267847502 +-5.71513185524789,51.1002051881571 +-5.85761399199901,51.0955844626627 + + + + + +SR34 +#labelStyle + +-5.79004499210001,51.1427786251989 + + + + +SR35 + +Small Square SR35 Boundry Box +#Line2 + + +1 + +-5.86511002505196,51.1853002918345 +-5.87264394939918,51.2750049705075 +-5.7296099092959,51.2796552322417 +-5.72235262767223,51.1899357577012 +-5.86511002505196,51.1853002918345 + + + + + +SR35 +#labelStyle + +-5.79742235192521,51.2325008193425 + + + + +SR36 + +Small Square SR36 Boundry Box +#Line2 + + +1 + +-5.87264470480802,51.2750139417634 +-5.88021753446763,51.3647164368012 +-5.7369054047356,51.3693815532637 +-5.7296106369669,51.2796642049802 +-5.87264470480802,51.2750139417634 + + + + + +SR36 +#labelStyle + +-5.80483778235378,51.3222208607987 + + + + +SR37 + +Small Square SR37 Boundry Box +#Line2 + + +1 + +-5.8802182937806,51.3647254078385 +-5.88783029369028,51.4544257145927 +-5.74423864545632,51.4591057435768 +-5.73690613616832,51.3693905257893 +-5.8802182937806,51.3647254078385 + + + + + +SR37 +#labelStyle + +-5.81229154236378,51.4119387451433 + + + + +SR38 + +Small Square SR38 Boundry Box +#Line2 + + +1 + +-5.887831056934,51.4544346854109 +-5.89548249451045,51.5441327991941 +-5.75160988924865,51.5488277989066 +-5.74423938067642,51.4591147158892 +-5.887831056934,51.4544346854109 + + + + + +SR38 +#labelStyle + +-5.81978389335436,51.5016544679157 + + + + +SR39 + +Small Square SR39 Boundry Box +#Line2 + + +1 + +-5.89548326171179,51.5441417697927 +-5.90317440687944,51.6338376858779 +-5.75901939632179,51.638547714943 +-5.75161062828202,51.5488367710053 +-5.89548326171179,51.5441417697927 + + + + + +SR39 +#labelStyle + +-5.8273150991739,51.5913680246179 + + + + +SR40 + +Small Square SR40 Boundry Box +#Line2 + + +1 + +-5.68660201201092,50.7412622179677 +-5.69367558476133,50.8309922628229 +-5.55197464987454,50.8353973455249 +-5.5451710059932,50.7456533277115 +-5.68660201201092,50.7412622179677 + + + + + +SR40 +#labelStyle + +-5.61934908087285,50.7883526954845 + + + + +SR41 + +Small Square SR41 Boundry Box +#Line2 + + +1 + +-5.69367629399769,50.8310012366196 +-5.70078611079965,50.9207291759111 +-5.55881384510661,50.9251482863139 +-5.55197533204671,50.8354063207216 +-5.69367629399769,50.8310012366196 + + + + + +SR41 +#labelStyle + +-5.62630615144427,50.8780977308708 + + + + +SR42 + +Small Square SR42 Boundry Box +#Line2 + + +1 + +-5.70078682367293,50.9207381494969 +-5.70793312834947,51.0104639791529 +-5.5656881476774,51.0148971709818 +-5.55881453077775,50.9251572613053 +-5.70078682367293,50.9207381494969 + + + + + +SR42 +#labelStyle + +-5.63329890176271,50.9678406854776 + + + + +SR43 + +Small Square SR43 Boundry Box +#Line2 + + +1 + +-5.70793384488417,51.0104729525276 +-5.71511688351587,51.1001966684439 +-5.57259779444536,51.1046439958047 +-5.56568883687107,51.0149061457674 +-5.70793384488417,51.0104729525276 + + + + + +SR43 +#labelStyle + +-5.64032757220178,51.0575815554081 + + + + +SR44 + +Small Square SR44 Boundry Box +#Line2 + + +1 + +-5.71511760373671,51.1002056416069 +-5.72233762468761,51.1899272396466 +-5.57954302446786,51.1943887570293 +-5.57259848718538,51.1046529703841 +-5.71511760373671,51.1002056416069 + + + + + +SR44 +#labelStyle + +-5.64739240536366,51.1473203367344 + + + + +SR45 + +Small Square SR45 Boundry Box +#Line2 + + +1 + +-5.72233834861955,51.1899362125977 +-5.72959560256337,51.2796556885903 +-5.58652407902636,51.2841314508725 +-5.57954372077823,51.1943977314022 +-5.72233834861955,51.1899362125977 + + + + + +SR45 +#labelStyle + +-5.65449364610468,51.2370570254972 + + + + +SR46 + +Small Square SR46 Boundry Box +#Line2 + + +1 + +-5.7295963302316,51.279664661329 +-5.73689107017839,51.3693820110702 +-5.59354120165214,51.3738720735206 +-5.58652477893133,51.2841404250384 +-5.7295963302316,51.279664661329 + + + + + +SR46 +#labelStyle + +-5.66163154156126,51.3267916177054 + + + + +SR47 + +Small Square SR47 Boundry Box +#Line2 + + +1 + +-5.73689180160833,51.369390983596 +-5.74422428293142,51.4591062028469 +-5.60059463815221,51.4636106211291 +-5.59354190517616,51.3738810474792 +-5.73689180160833,51.369390983596 + + + + + +SR47 +#labelStyle + +-5.66880634117621,51.4165241093353 + + + + +SR48 + +Small Square SR48 Boundry Box +#Line2 + + +1 + +-5.74422501814871,51.4591151751594 +-5.75159549861206,51.548828259646 +-5.60768463663576,51.5533470898218 +-5.60059534531999,51.46361959488 +-5.74422501814871,51.4591151751594 + + + + + +SR48 +#labelStyle + +-5.67601829672543,51.5062544963302 + + + + +SR49 + +Small Square SR49 Boundry Box +#Line2 + + +1 + +-5.75159623764262,51.5488372317448 +-5.75900497742856,51.6385481771574 +-5.61481144754079,51.6430814756908 +-5.60768534747222,51.5533560633646 +-5.75159623764262,51.5488372317448 + + + + + +SR49 +#labelStyle + +-5.68326766234493,51.5959827746001 + + + + +SR50 + +Small Square SR50 Boundry Box +#Line2 + + +1 + +-5.54515685972348,50.7456537583013 +-5.55196047659747,50.835397777485 +-5.41022467518015,50.8396310001179 +-5.4036912196512,50.7498735506391 +-5.54515685972348,50.7456537583013 + + + + + +SR50 +#labelStyle + +-5.47775156025525,50.7926654266643 + + + + +SR51 + +Small Square SR51 Boundry Box +#Line2 + + +1 + +-5.55196115876693,50.8354067526819 +-5.55879964468186,50.9251487196497 +-5.41679227781019,50.9293954252183 +-5.41022533026208,50.8396399766605 +-5.55196115876693,50.8354067526819 + + + + + +SR51 +#labelStyle + +-5.48443784351067,50.8824241925892 + + + + +SR52 + +Small Square SR52 Boundry Box +#Line2 + + +1 + +-5.55880033035027,50.9251576946412 +-5.56567391996641,51.0148976056986 +-5.42339360129402,51.0191578458658 +-5.41679293625288,50.9294044015606 +-5.55880033035027,50.9251576946412 + + + + + +SR52 +#labelStyle + +-5.49115842570194,50.9721809302493 + + + + +SR53 + +Small Square SR53 Boundry Box +#Line2 + + +1 + +-5.56567460915736,51.0149065804843 +-5.5725835393087,51.1046444319077 +-5.43002887321767,51.1089182587028 +-5.42339426312015,51.0191668220075 +-5.56567460915736,51.0149065804843 + + + + + +SR53 +#labelStyle + +-5.4979135379847,51.0619356361193 + + + + +SR54 + +Small Square SR54 Boundry Box +#Line2 + + +1 + +-5.57258423204596,51.1046534064872 +-5.5795287417651,51.194389194524 +-5.43669832328083,51.1986766603457 +-5.43002953845009,51.1089272346436 +-5.57258423204596,51.1046534064872 + + + + + +SR54 +#labelStyle + +-5.50470341365862,51.1516883066466 + + + + +SR55 + +Small Square SR55 Boundry Box +#Line2 + + +1 + +-5.5795294380727,51.1943981688969 +-5.58650976861617,51.2841318897641 +-5.44340218332119,51.2884330473843 +-5.43669899194262,51.1986856360852 +-5.5795294380727,51.1943981688969 + + + + + +SR55 +#labelStyle + +-5.51152828819201,51.2414389382504 + + + + +SR56 + +Small Square SR56 Boundry Box +#Line2 + + +1 + +-5.58651046851835,51.2841408639301 +-5.59352686339221,51.3738725138146 +-5.45014068733911,51.3781874163813 +-5.44340285543564,51.2884420229221 +-5.58651046851835,51.2841408639301 + + + + + +SR56 +#labelStyle + +-5.51838839924686,51.3311875273217 + + + + +SR57 + +Small Square SR57 Boundry Box +#Line2 + + +1 + +-5.59352756691344,51.3738814877733 +-5.6005802718993,51.463611062831 +-5.45691407152262,51.467939763872 +-5.45014136292974,51.3781963917171 +-5.59352756691344,51.3738814877733 + + + + + +SR57 +#labelStyle + +-5.52528398670409,51.4209340702224 + + + + +SR58 + +Small Square SR58 Boundry Box +#Line2 + + +1 + +-5.60058097906426,51.463620036582 +-5.60767024224563,51.5533475329371 +-5.46372257427273,51.5576900863637 +-5.45691475061315,51.4679487390055 +-5.60058097906426,51.463620036582 + + + + + +SR58 +#labelStyle + +-5.53221529268928,51.510678563285 + + + + +SR59 + +Small Square SR59 Boundry Box +#Line2 + + +1 + +-5.60767095307927,51.55335650648 +-5.61479702486823,51.643081920225 +-5.47056643622918,51.6474383803351 +-5.46372325688711,51.5576990612945 +-5.60767095307927,51.55335650648 + + + + + +SR59 +#labelStyle + +-5.53918256159866,51.6004210028119 + + + + +SR60 + +Small Square SR60 Boundry Box +#Line2 + + +1 + +-5.40367706998611,50.7498739640905 +-5.4102104984849,50.8396314148853 +-5.26844120769876,50.8436926793984 +-5.26217816391791,50.7539223415764 +-5.40367706998611,50.7498739640905 + + + + + +SR60 +#labelStyle + +-5.33611997230082,50.7968065027993 + + + + +SR61 + +Small Square SR61 Boundry Box +#Line2 + + +1 + +-5.41021115356412,50.8396403914281 +-5.41677807394425,50.9293958413069 +-5.27473699224289,50.9334700433805 +-5.26844183566799,50.8437016572324 +-5.41021115356412,50.8396403914281 + + + + + +SR61 +#labelStyle + +-5.34253523921678,50.8865784551623 + + + + +SR62 + +Small Square SR62 Boundry Box +#Line2 + + +1 + +-5.41677873238422,50.9294048176494 +-5.42337937011864,51.0191582632806 +-5.28106510906633,51.0232454525104 +-5.2747376234345,50.9334790210192 +-5.41677873238422,50.9294048176494 + + + + + +SR62 +#labelStyle + +-5.34898342213781,50.9763484297169 + + + + +SR63 + +Small Square SR63 Boundry Box +#Line2 + + +1 + +-5.42338003194203,51.0191672394225 +-5.43001461459316,51.108918677449 +-5.28742577645864,51.1130189037822 +-5.28106574350205,51.0232544299535 +-5.42338003194203,51.0191672394225 + + + + + +SR63 +#labelStyle + +-5.35546474297726,51.0661164232955 + + + + +SR64 + +Small Square SR64 Boundry Box +#Line2 + + +1 + +-5.43001527982283,51.1089276533899 +-5.43668403706657,51.1986770804283 +-5.29381921473755,51.2027903941674 +-5.2874264141604,51.1130278810294 +-5.43001527982283,51.1089276533899 + + + + + +SR64 +#labelStyle + +-5.36197942570765,51.155882432706 + + + + +SR65 + +Small Square SR65 Boundry Box +#Line2 + + +1 + +-5.4366847057256,51.198686056168 +-5.44338786937562,51.2884334688086 +-5.30024564627232,51.2925599206138 +-5.29381985572748,51.2027993712183 +-5.4366847057256,51.198686056168 + + + + + +SR65 +#labelStyle + +-5.36852769638434,51.2456464547318 + + + + +SR66 + +Small Square SR66 Boundry Box +#Line2 + + +1 + +-5.4433885414873,51.2884424443465 +-5.45012634551972,51.3781878391524 +-5.30670529550741,51.3823274800459 +-5.30024629057277,51.2925688974682 +-5.4433885414873,51.2884424443465 + + + + + +SR66 +#labelStyle + +-5.37510978316953,51.335408486131 + + + + +SR67 + +Small Square SR67 Boundry Box +#Line2 + + +1 + +-5.45012702110755,51.3781968144884 +-5.45689970168591,51.4679401879952 +-5.31319838898647,51.4720930693637 +-5.30670594314092,51.3823364567034 +-5.45012702110755,51.3781968144884 + + + + + +SR67 +#labelStyle + +-5.38172591635661,51.4251685236361 + + + + +SR68 + +Small Square SR68 Boundry Box +#Line2 + + +1 + +-5.45690038077363,51.4679491631289 +-5.46370817627425,51.5576905118443 +-5.31972515537668,51.5618566854426 +-5.31319903997581,51.472102045824 +-5.45690038077363,51.4679491631289 + + + + + +SR68 +#labelStyle + +-5.38837632839479,51.5149265639538 + + + + +SR69 + +Small Square SR69 Boundry Box +#Line2 + + +1 + +-5.46370885888581,51.5576994867753 +-5.47055200992349,51.6474388071784 +-5.32628582549343,51.6516183251332 +-5.31972580974481,51.5618656617055 +-5.46370885888581,51.5576994867753 + + + + + +SR69 +#labelStyle + +-5.39506125391413,51.6046826037639 + + + + +SR70 + +Small Square SR70 Boundry Box +#Line2 + + +1 + +-5.26216401099437,50.7539227378799 +-5.26842702772318,50.8436930769635 +-5.12662562679425,50.8475822892479 +-5.1206332090299,50.7577996069855 +-5.26216401099437,50.7539227378799 + + + + + +SR70 +#labelStyle + +-5.19445569078399,50.8007758280967 + + + + +SR71 + +Small Square SR71 Boundry Box +#Line2 + + +1 + +-5.26842765568969,50.8437020547977 +-5.27472278507453,50.9334704422122 +-5.13264937698042,50.9373720460964 +-5.12662622762926,50.8475912683188 +-5.26842765568969,50.8437020547977 + + + + + +SR71 +#labelStyle + +-5.20059972149532,50.8905604222014 + + + + +SR72 + +Small Square SR72 Boundry Box +#Line2 + + +1 + +-5.27472341626341,50.9334794198511 +-5.28105087456623,51.0232458526136 +-5.13870406886637,51.0271598956207 +-5.13264998089921,50.9373810249768 +-5.27472341626341,50.9334794198511 + + + + + +SR72 +#labelStyle + +-5.20677528324521,50.9803430868916 + + + + +SR73 + +Small Square SR73 Boundry Box +#Line2 + + +1 + +-5.28105150899921,51.0232548300568 +-5.28741151448691,51.1130193051618 +-5.14478991142218,51.1169458351523 +-5.13870467588975,51.0271688743102 +-5.28105150899921,51.0232548300568 + + + + + +SR73 +#labelStyle + +-5.21298258868139,51.0701238193424 + + + + +SR74 + +Small Square SR74 Boundry Box +#Line2 + + +1 + +-5.28741215218592,51.113028282409 +-5.29380492515337,51.2027907968282 +-5.15090711556029,51.2067298620028 +-5.14479052157114,51.1169548136507 +-5.28741215218592,51.113028282409 + + + + + +SR74 +#labelStyle + +-5.21922185242558,51.1599026167078 + + + + +SR75 + +Small Square SR75 Boundry Box +#Line2 + + +1 + +-5.29380556614053,51.2027997738792 +-5.30023132893391,51.2925603245608 +-5.15705589415782,51.2965119734636 +-5.15090772885601,51.2067388403097 +-5.29380556614053,51.2027997738792 + + + + + +SR75 +#labelStyle + +-5.22549329109616,51.2496794761205 + + + + +SR76 + +Small Square SR76 Boundry Box +#Line2 + + +1 + +-5.30023197323157,51.2925693014153 +-5.30669095027203,51.3823278852841 +-5.16323646207935,51.3862921668057 +-5.15705651062171,51.2965209515789 +-5.30023197323157,51.2925693014153 + + + + + +SR76 +#labelStyle + +-5.23179712333125,51.339454394691 + + + + +SR77 + +Small Square SR77 Boundry Box +#Line2 + + +1 + +-5.30669159790274,51.3823368619417 +-5.31318401571043,51.4720934758982 +-5.16944903619983,51.4760704392788 +-5.16323708173298,51.386301144729 +-5.30669159790274,51.3823368619417 + + + + + +SR77 +#labelStyle + +-5.238133569812,51.4292273695075 + + + + +SR78 + +Small Square SR78 Boundry Box +#Line2 + + +1 + +-5.31318466669695,51.4721024523586 +-5.3197107539153,51.5618570932785 +-5.17569383542792,51.5658467881115 +-5.16944965906499,51.4760794170099 +-5.31318466669695,51.4721024523586 + + + + + +SR78 +#labelStyle + +-5.24450285328625,51.5189983976357 + + + + +SR79 + +Small Square SR79 Boundry Box +#Line2 + + +1 + +-5.3197114082806,51.5618660695414 +-5.32627139570105,51.6516187342754 +-5.18197108072966,51.6556212105103 +-5.17569446152661,51.5658557656501 +-5.3197114082806,51.5618660695414 + + + + + +SR79 +#labelStyle + +-5.25090519859255,51.6087674761175 + + + + +SR80 + +Small Square SR80 Boundry Box +#Line2 + + +1 + +-5.12061905298503,50.757799986132 +-5.12661144367636,50.8475826696015 +-4.98477931381151,50.8512997394974 +-4.97905772718237,50.7615052572542 +-5.12061905298503,50.757799986132 + + + + + +SR80 +#labelStyle + +-5.05276009149056,50.8045733106969 + + + + +SR81 + +Small Square SR81 Boundry Box +#Line2 + + +1 + +-5.12661204450866,50.8475916486726 +-5.13263516664859,50.937372427662 +-4.99053082260219,50.9411013426357 +-4.98477988749169,50.8513087197508 +-5.12661204450866,50.8475916486726 + + + + + +SR81 +#labelStyle + +-5.05863267531337,50.8943700012763 + + + + +SR82 + +Small Square SR82 Boundry Box +#Line2 + + +1 + +-5.13263577056466,50.9373814065425 +-5.13868983118145,51.0271602784029 +-4.99631188059295,51.0309010839004 +-4.99053139922737,50.9411103227029 +-5.13263577056466,50.9373814065425 + + + + + +SR82 +#labelStyle + +-5.06453540325675,50.9841648087669 + + + + +SR83 + +Small Square SR83 Boundry Box +#Line2 + + +1 + +-5.13869043820208,51.0271692570925 +-5.14477564624407,51.1169462191558 +-5.00212268741231,51.1206989609456 +-4.99631246018299,51.0309100637813 +-5.13869043820208,51.0271692570925 + + + + + +SR83 +#labelStyle + +-5.07046847868043,51.0739577306725 + + + + +SR84 + +Small Square SR84 Boundry Box +#Line2 + + +1 + +-5.14477625639027,51.1169551976543 +-5.15089282274795,51.2067302472323 +-5.00796344454504,51.2104949714086 +-5.00212326998729,51.12070794064 +-5.14477625639027,51.1169551976543 + + + + + +SR84 +#labelStyle + +-5.07643210683259,51.1637487644786 + + + + +SR85 + +Small Square SR85 Boundry Box +#Line2 + + +1 + +-5.15089343604091,51.2067392255394 +-5.15704157356929,51.2965123599239 +-5.01383435535349,51.3002891129094 +-5.00796403012518,51.2105039509162 +-5.15089343604091,51.2067392255394 + + + + + +SR85 +#labelStyle + +-5.08242649487167,51.2535379076522 + + + + +SR86 + +Small Square SR86 Boundry Box +#Line2 + + +1 + +-5.1570421900304,51.2965213380393 +-5.16322211357169,51.3862925545015 +-5.01973562509933,51.3900813830505 +-5.01383494395924,51.30029809223 +-5.1570421900304,51.2965213380393 + + + + + +SR86 +#labelStyle + +-5.08845185188833,51.3433251576415 + + + + +SR87 + +Small Square SR87 Boundry Box +#Line2 + + +1 + +-5.16322273322252,51.3863015324249 +-5.16943465962912,51.476070828215 +-5.0256674609655,51.4798717794163 +-5.0197362167513,51.3900903621839 +-5.16322273322252,51.3863015324249 + + + + + +SR87 +#labelStyle + +-5.09450838892782,51.4331105118753 + + + + +SR88 + +Small Square SR88 Boundry Box +#Line2 + + +1 + +-5.16943528249147,51.4760798059462 +-5.17567943064928,51.5658471782928 +-5.0316300720785,51.569660299573 +-5.0256680556845,51.4798807583622 +-5.16943528249147,51.4760798059462 + + + + + +SR88 +#labelStyle + +-5.10059631901265,51.5228939677629 + + + + +SR89 + +Small Square SR89 Boundry Box +#Line2 + + +1 + +-5.17568005674514,51.5658561558316 +-5.18195664759722,51.6556216019417 +-5.03762366953103,51.6594469410681 +-5.03163066988555,51.5696692783311 +-5.17568005674514,51.5658561558316 + + + + + +SR89 +#labelStyle + +-5.10671585716551,51.6126755226935 + + + + +SR90 + +Small Square SR90 Boundry Box +#Line2 + + +1 + +-4.97904356815347,50.7615056192347 +-4.98476512768956,50.8513001026307 +-4.84290365199267,50.8548449439347 +-4.83745309244627,50.7650392067023 +-4.97904356815347,50.7615056192347 + + + + + +SR90 +#labelStyle + +-4.91103455213445,50.8081988626817 + + + + +SR91 + +Small Square SR91 Boundry Box +#Line2 + + +1 + +-4.98476570136702,50.8513090828842 +-4.99051660924605,50.9411017069262 +-4.8483827216066,50.944657846249 +-4.84290419849833,50.8548539253158 +-4.98476570136702,50.8513090828842 + + + + + +SR91 +#labelStyle + +-4.91663548758823,50.8980071039216 + + + + +SR92 + +Small Square SR92 Boundry Box +#Line2 + + +1 + +-4.9905171858685,50.9411106869936 +-4.99629763986328,51.0309014493526 +-4.85388994608588,51.0344689300585 +-4.84838327091829,50.9446668274484 +-4.9905171858685,50.9411106869936 + + + + + +SR92 +#labelStyle + +-4.92226517837766,50.9878135063262 + + + + +SR93 + +Small Square SR93 Boundry Box +#Line2 + + +1 + +-4.99629821945058,51.0309104292337 +-5.00210841916884,51.1206993275641 +-4.85942551569641,51.1242781933251 +-4.85389049822254,51.0344779110758 +-4.99629821945058,51.0309104292337 + + + + + +SR93 +#labelStyle + +-4.927923818553,51.0776180677131 + + + + +SR94 + +Small Square SR94 Boundry Box +#Line2 + + +1 + +-5.00210900174105,51.1207083072586 +-5.00794914864654,51.2104953391978 +-4.86498962247388,51.2140856339969 +-4.85942607067716,51.1242871741603 +-5.00210900174105,51.1207083072586 + + + + + +SR94 +#labelStyle + +-4.93361160396721,51.1674207858847 + + + + +SR95 + +Small Square SR95 Boundry Box +#Line2 + + +1 + +-5.00794973422391,51.2105043187055 +-5.01382003165779,51.3002894818738 +-4.87058246024418,51.3038912500078 +-4.86499018031801,51.2140946146498 +-5.00794973422391,51.2105043187055 + + + + + +SR95 +#labelStyle + +-4.9393287322967,51.2572216586274 + + + + +SR96 + +Small Square SR96 Boundry Box +#Line2 + + +1 + +-5.01382062026074,51.3002984611945 +-5.01972127346329,51.3900817531947 +-4.8762042246441,51.3936950392765 +-4.87058302097116,51.303900230478 +-5.01382062026074,51.3002984611945 + + + + + +SR96 +#labelStyle + +-4.94507540306237,51.3470206837123 + + + + +SR97 + +Small Square SR97 Boundry Box +#Line2 + + +1 + +-5.01972186511245,51.3900907323282 +-5.02565308124501,51.4798721507449 +-4.88185511314226,51.4834969997071 +-4.87620478827358,51.393704019564 +-5.01972186511245,51.3900907323282 + + + + + +SR97 +#labelStyle + +-4.95085181765094,51.4368178588936 + + + + +SR98 + +Small Square SR98 Boundry Box +#Line2 + + +1 + +-5.02565367596119,51.4798811296909 +-5.03161566412848,51.5696606720907 +-4.88753532506041,51.573297129188 +-4.88185567969408,51.4835059798116 +-5.02565367596119,51.4798811296909 + + + + + +SR98 +#labelStyle + +-4.95665817933659,51.526613181909 + + + + +SR99 + +Small Square SR99 Boundry Box +#Line2 + + +1 + +-5.0316162619327,51.5696696508489 +-5.03760923320541,51.6594473147794 +-4.89324506159501,51.6630954255921 +-4.88753589455461,51.5733061091093 +-5.0316162619327,51.5696696508489 + + + + + +SR99 +#labelStyle + +-4.96249469330288,51.6164066504794 + + + + + +SS + +Large Square SS Boundry Box +#Line1 + + +1 + +-4.83743893057086,50.7650395515086 +-4.89323062222327,51.6630957815744 +-3.44806781210084,51.6898146770766 +-3.42010680564436,50.7909191304528 +-4.83743893057086,50.7650395515086 + + + + + +SS00 + +Small Square SS00 Boundry Box +#Line2 + + +1 + +-4.83743893057086,50.7650395515086 +-4.84288946300506,50.8548452898392 +-4.70100002639292,50.8582178203106 +-4.69582068068513,50.7684013735888 +-4.83743893057086,50.7650395515086 + + + + + +SS00 +#labelStyle + +-4.76928045227424,50.8116524000805 + + + + +SS01 + +Small Square SS01 Boundry Box +#Line2 + + +1 + +-4.842890009508,50.8548542712204 +-4.84836850536549,50.9446581932561 +-4.70620646832592,50.9480414741749 +-4.70100054570529,50.8582268027647 +-4.842890009508,50.8548542712204 + + + + + +SS01 +#labelStyle + +-4.77460954710301,50.9014716456444 + + + + +SS02 + +Small Square SS02 Boundry Box +#Line2 + + +1 + +-4.84836905467445,50.9446671744555 +-4.85387570245175,51.0344692781723 +-4.71143966903997,51.0378633508166 +-4.70620699030518,50.9480504564514 +-4.84836905467445,50.9446671744555 + + + + + +SS02 +#labelStyle + +-4.77996600670037,50.9912890945496 + + + + +SS03 + +Small Square SS03 Boundry Box +#Line2 + + +1 + +-4.85387625458567,51.0344782591898 +-4.8594112445288,51.1242785425499 +-4.71669980941823,51.1276834484911 +-4.71144019370413,51.0378723329154 +-4.85387625458567,51.0344782591898 + + + + + +SS03 +#labelStyle + +-4.78535001578666,51.0811047449128 + + + + +SS04 + +Small Square SS04 Boundry Box +#Line2 + + +1 + +-4.85941179950679,51.1242875233853 +-4.86497532363138,51.2140859843371 +-4.72198707202691,51.2175017654425 +-4.71670033678545,51.1276924304119 +-4.85941179950679,51.1242875233853 + + + + + +SS04 +#labelStyle + +-4.79076176079887,51.1709185948385 + + + + +SS05 + +Small Square SS05 Boundry Box +#Line2 + + +1 + +-4.86497588147274,51.2140949649901 +-4.87056813358444,51.3038916014676 +-4.72730164113476,51.307318299903 +-4.72198760211555,51.2175107471851 +-4.86497588147274,51.2140949649901 + + + + + +SS05 +#labelStyle + +-4.79620142991035,51.2607306424182 + + + + +SS06 + +Small Square SS06 Boundry Box +#Line2 + + +1 + +-4.87056869430863,51.303900581938 +-4.87618987002378,51.3936953918603 +-4.73264370273269,51.3971330500932 +-4.72730217396331,51.3073272814673 +-4.87056869430863,51.303900581938 + + + + + +SS06 +#labelStyle + +-4.8016692130509,51.35054088573 + + + + +SS07 + +Small Square SS07 Boundry Box +#Line2 + + +1 + +-4.87619043365047,51.393704372148 +-4.88184073041707,51.4834973534193 +-4.73801344455379,51.4869460142211 +-4.73264423831986,51.3971420314789 +-4.87619043365047,51.393704372148 + + + + + +SS07 +#labelStyle + +-4.80716530192708,51.4403493228389 + + + + +SS08 + +Small Square SS08 Boundry Box +#Line2 + + +1 + +-4.88184129696609,51.483506333524 +-4.88752091408509,51.5732974840331 +-4.74341105609347,51.5767571904822 +-4.73801398291842,51.4869549954281 +-4.88184129696609,51.483506333524 + + + + + +SS08 +#labelStyle + +-4.81268989004282,51.5301559517959 + + + + +SS09 + +Small Square SS09 Boundry Box +#Line2 + + +1 + +-4.88752148357646,51.5733064639545 +-4.89323062222327,51.6630957815744 +-4.74883672863006,51.6665665770593 +-4.74341159725461,51.5767661715104 +-4.88752148357646,51.5733064639545 + + + + + +SS09 +#labelStyle + +-4.8182431727203,51.6199607706377 + + + + +SS10 + +Small Square SS10 Boundry Box +#Line2 + + +1 + +-4.69580651610087,50.7684017012129 +-4.70098583467825,50.8582181489783 +-4.55906982379613,50.8614182903456 +-4.55416186947158,50.771591680118 +-4.69580651610087,50.7684017012129 + + + + + +SS10 +#labelStyle + +-4.62749917322938,50.8149338428771 + + + + +SS11 + +Small Square SS11 Boundry Box +#Line2 + + +1 + +-4.7009863539879,50.8582271314326 +-4.70619224933936,50.9480418038904 +-4.56400345884093,50.951252147646 +-4.55907031589739,50.8614272738182 +-4.7009863539879,50.8582271314326 + + + + + +SS11 +#labelStyle + +-4.63255624442183,50.9047635459305 + + + + +SS12 + +Small Square SS12 Boundry Box +#Line2 + + +1 + +-4.70619277131589,50.948050786167 +-4.71142542264184,51.0378636815839 +-4.56896245491865,51.0410842669155 +-4.56400395346976,50.9512611309448 +-4.70619277131589,50.948050786167 + + + + + +SS12 +#labelStyle + +-4.6376392881188,50.9945914924204 + + + + +SS13 + +Small Square SS13 Boundry Box +#Line2 + + +1 + +-4.71142594730325,51.0378726636827 +-4.71668553546789,51.1276837803142 +-4.57394698351052,51.1309146466882 +-4.56896295209214,51.0410932500405 +-4.71142594730325,51.0378726636827 + + + + + +SS13 +#labelStyle + +-4.64274847969123,51.0844176807484 + + + + +SS14 + +Small Square SS14 Boundry Box +#Line2 + + +1 + +-4.71668606283235,51.1276927622351 +-4.72197277038278,51.2175020983255 +-4.57895721769392,51.220743285489 +-4.57394748324589,51.1309236296391 +-4.71668606283235,51.1276927622351 + + + + + +SS14 +#labelStyle + +-4.64788399614032,51.1742421093061 + + + + +SS15 + +Small Square SS15 Boundry Box +#Line2 + + +1 + +-4.72197330046864,51.2175110800682 +-4.7272873116543,51.3073186338501 +-4.58399333216073,51.3105701818341 +-4.57895772000855,51.2207522682658 +-4.72197330046864,51.2175110800682 + + + + + +SS15 +#labelStyle + +-4.65304601611634,51.2640647764748 + + + + +SS16 + +Small Square SS16 Boundry Box +#Line2 + + +1 + +-4.72728784448007,51.3073276154144 +-4.73262934527241,51.3971333851084 +-4.58905550323609,51.4003953342302 +-4.58399383707219,51.3105791644366 +-4.72728784448007,51.3073276154144 + + + + + +SS16 +#labelStyle + +-4.65823471993768,51.3538856806254 + + + + +SS17 + +Small Square SS17 Boundry Box +#Line2 + + +1 + +-4.73262988085677,51.3971423664942 +-4.73799905896919,51.4869463503086 +-4.59414390889724,51.4902187411744 +-4.58905601076207,51.4004043166582 +-4.73262988085677,51.3971423664942 + + + + + +SS17 +#labelStyle + +-4.66345028961012,51.4437048201178 + + + + +SS18 + +Small Square SS18 Boundry Box +#Line2 + + +1 + +-4.73799959733101,51.4869553315157 +-4.7433966422391,51.5767575276463 +-4.5992587287928,51.5800404011536 +-4.59414441905564,51.4902277234277 +-4.73799959733101,51.4869553315157 + + + + + +SS18 +#labelStyle + +-4.66869290884644,51.533522193301 + + + + +SS19 + +Small Square SS19 Boundry Box +#Line2 + + +1 + +-4.74339718339741,51.5767665086745 +-4.74882228635948,51.6665669153041 +-4.60440014426218,51.6698603126449 +-4.59925924160167,51.5800493832322 +-4.74339718339741,51.5767665086745 + + + + + +SS19 +#labelStyle + +-4.67396276308627,51.6233377985125 + + + + +SS20 + +Small Square SS20 Boundry Box +#Line2 + + +1 + +-4.55414770231632,50.7715919905523 +-4.55905562949316,50.8614186017689 +-4.41711443263015,50.8644462797362 +-4.4124780380036,50.7746100524457 +-4.55414770231632,50.7715919905523 + + + + + +SS20 +#labelStyle + +-4.48569209799605,50.818043115016 + + + + +SS21 + +Small Square SS21 Boundry Box +#Line2 + + +1 + +-4.5590561215917,50.8614275852416 +-4.56398923724862,50.9512524600623 +-4.42177509089527,50.9542897918954 +-4.41711489750337,50.8644552641724 +-4.5590561215917,50.8614275852416 + + + + + +SS21 +#labelStyle + +-4.49047697180481,50.9078827282506 + + + + +SS22 + +Small Square SS22 Boundry Box +#Line2 + + +1 + +-4.56398973187472,50.9512614433612 +-4.56894820589714,51.0410845803285 +-4.42645971086732,51.044131603121 +-4.42177555815662,50.9542987761616 +-4.56398973187472,50.9512614433612 + + + + + +SS22 +#labelStyle + +-4.49528642424237,50.9977206229319 + + + + +SS23 + +Small Square SS23 Boundry Box +#Line2 + + +1 + +-4.56894870306789,51.0410935634536 +-4.57393270691903,51.1309149611017 +-4.43116845460746,51.1339717122107 +-4.42646018053291,51.0441405872171 +-4.56894870306789,51.0410935634536 + + + + + +SS23 +#labelStyle + +-4.50012062131174,51.0875567977314 + + + + +SS24 + +Small Square SS24 Boundry Box +#Line2 + + +1 + +-4.57393320665163,51.1309239440527 +-4.57894291339069,51.220743600907 +-4.43590148568577,51.2238101179558 +-4.43116892669358,51.1339806961364 +-4.57393320665163,51.1309239440527 + + + + + +SS24 +#labelStyle + +-4.50497973055956,51.1773912513131 + + + + +SS25 + +Small Square SS25 Boundry Box +#Line2 + + +1 + +-4.57894341570255,51.2207525836839 +-4.58397900000306,51.3105704982605 +-4.44065896919865,51.313646819141 +-4.43590196020886,51.2238191017112 +-4.57894341570255,51.2207525836839 + + + + + +SS25 +#labelStyle + +-4.50986392109398,51.2672239823331 + + + + +SS26 + +Small Square SS26 Boundry Box +#Line2 + + +1 + +-4.58397950491172,51.310579480863 +-4.5890411430803,51.4003956516688 +-4.44544107178648,51.4034818145441 +-4.44065944617528,51.3136558027258 +-4.58397950491172,51.310579480863 + + + + + +SS26 +#labelStyle + +-4.51477336360264,51.3570549894397 + + + + +SS27 + +Small Square SS27 Boundry Box +#Line2 + + +1 + +-4.58904165060348,51.4004046340969 +-4.59412952059869,51.4902190596292 +-4.45024796165153,51.4933151029356 +-4.44544155123341,51.4034907979583 +-4.58904165060348,51.4004046340969 + + + + + +SS27 +#labelStyle + +-4.519708230371,51.4468842712729 + + + + +SS28 + +Small Square SS28 Boundry Box +#Line2 + + +1 + +-4.59413003075428,51.4902280418826 +-4.59924431220586,51.5800407206286 +-4.45507980857611,51.5831466830788 +-4.45024844358565,51.493324086179 +-4.59413003075428,51.4902280418826 + + + + + +SS28 +#labelStyle + +-4.52466869530084,51.5367118264642 + + + + +SS29 + +Small Square SS29 Boundry Box +#Line2 + + +1 + +-4.59924482501189,51.5800497027073 +-4.6043856992402,51.6698606331441 +-4.45993678394097,51.6729765537292 +-4.45508029301448,51.5831556661513 +-4.59924482501189,51.5800497027073 + + + + + +SS29 +#labelStyle + +-4.5296549339291,51.6265376536363 + + + + +SS30 + +Small Square SS30 Boundry Box +#Line2 + + +1 + +-4.41246386841534,50.774610345683 +-4.4171002358778,50.8644465739079 +-4.27513524288183,50.8673017181603 +-4.27077056702053,50.7774564206844 +-4.41246386841534,50.774610345683 + + + + + +SS30 +#labelStyle + +-4.34386061116287,50.8209801444079 + + + + +SS31 + +Small Square SS31 Boundry Box +#Line2 + + +1 + +-4.4171007007483,50.8644555583442 +-4.42176086683707,50.9542900870051 +-4.27952276380952,50.9571543361625 +-4.27513568051105,50.8673107035054 +-4.4171007007483,50.8644555583442 + + + + + +SS31 +#labelStyle + +-4.34837312312277,50.9108291200666 + + + + +SS32 + +Small Square SS32 Boundry Box +#Line2 + + +1 + +-4.42176133409567,50.9542990712714 +-4.42644545936324,51.0441318991724 +-4.2839328456265,51.0470052882301 +-4.27952320368724,50.957163321341 +-4.42176133409567,50.9542990712714 + + + + + +SS32 +#labelStyle + +-4.35290881830972,51.0006764130931 + + + + +SS33 + +Small Square SS33 Boundry Box +#Line2 + + +1 + +-4.42644592902608,51.0441408832685 +-4.43115417551656,51.1339720092073 +-4.2883656409567,51.1368545734097 +-4.28393328776791,51.047014273242 +-4.42644592902608,51.0441408832685 + + + + + +SS33 +#labelStyle + +-4.35746785334123,51.090522022414 + + + + +SS34 + +Small Square SS34 Boundry Box +#Line2 + + +1 + +-4.43115464759992,51.1339809931332 +-4.43588717886615,51.2238104159014 +-4.2928213038455,51.2267021907438 +-4.28836608537714,51.1368635582548 +-4.43115464759992,51.1339809931332 + + + + + +SS34 +#labelStyle + +-4.36205038629163,51.1803659469509 + + + + +SS35 + +Small Square SS35 Boundry Box +#Line2 + + +1 + +-4.43588765338645,51.2238193996568 +-4.44064463450743,51.3136471180392 +-4.29729998977613,51.3165481392706 +-4.29282175056045,51.2267111754221 +-4.43588765338645,51.2238193996568 + + + + + +SS35 +#labelStyle + +-4.3666565767089,51.2702081856198 + + + + +SS36 + +Small Square SS36 Boundry Box +#Line2 + + +1 + +-4.44064511148127,51.3136561016241 +-4.44542670907984,51.4034821143986 +-4.30180185568636,51.4063924180238 +-4.29730043880121,51.316557123782 +-4.44064511148127,51.3136561016241 + + + + + +SS36 +#labelStyle + +-4.37128658563165,51.3600487373313 + + + + +SS37 + +Small Square SS37 Boundry Box +#Line2 + + +1 + +-4.44542718852396,51.4034910978128 +-4.45023357078466,51.4933154037501 +-4.30632705998529,51.4962350260321 +-4.30180230703733,51.4064014023681 +-4.44542718852396,51.4034910978128 + + + + + +SS37 +#labelStyle + +-4.37594057560645,51.4498876009899 + + + + +SS38 + +Small Square SS38 Boundry Box +#Line2 + + +1 + +-4.45023405271596,51.4933243869937 +-4.45506538940321,51.5831469848572 +-4.31087576257054,51.5860759623194 +-4.30632751367808,51.4962440102094 +-4.45023405271596,51.4933243869937 + + + + + +SS38 +#labelStyle + +-4.38061871070528,51.5397247754944 + + + + +SS39 + +Small Square SS39 Boundry Box +#Line2 + + +1 + +-4.45506587383874,51.5831559679298 +-4.45992233631524,51.6729768564752 +-4.31544812484553,51.6759152259042 +-4.3108762186212,51.5860849463294 +-4.45506587383874,51.5831559679298 + + + + + +SS39 +#labelStyle + +-4.38532115654334,51.629560259737 + + + + +SS40 + +Small Square SS40 Boundry Box +#Line2 + + +1 + +-4.27075639513741,50.777456696718 +-4.27512104381919,50.8673019950735 +-4.13313364601188,50.8699845392828 +-4.12904083871884,50.7801307189096 +-4.27075639513741,50.777456696718 + + + + + +SS40 +#labelStyle + +-4.20200609882629,50.8237448629357 + + + + +SS41 + +Small Square SS41 Boundry Box +#Line2 + + +1 + +-4.27512148144567,50.8673109804187 +-4.27950853742542,50.9571546139588 +-4.13724787839501,50.9598457136983 +-4.13313405638203,50.8699935254819 +-4.27512148144567,50.8673109804187 + + + + + +SS41 +#labelStyle + +-4.20624609377164,50.9136026528369 + + + + +SS42 + +Small Square SS42 Boundry Box +#Line2 + + +1 + +-4.2795089773004,50.9571635991374 +-4.2839185917808,51.0470055669129 +-4.14138326944462,51.0497052550764 +-4.13724829087391,50.9598546997341 +-4.2795089773004,50.9571635991374 + + + + + +SS42 +#labelStyle + +-4.21050787510213,51.0034587939343 + + + + +SS43 + +Small Square SS43 Boundry Box +#Line2 + + +1 + +-4.28391903391946,51.0470145519248 +-4.28835135950829,51.1368548529824 +-4.14553996233123,51.1395631626977 +-4.14138368404653,51.0497142409488 +-4.28391903391946,51.0470145519248 + + + + + +SS43 +#labelStyle + +-4.2147915900332,51.0933132853949 + + + + +SS44 + +Small Square SS44 Boundry Box +#Line2 + + +1 + +-4.28835180392597,51.1368638378276 +-4.29280699465234,51.2267024712099 +-4.14971810155911,51.229419435841 +-4.14554037907053,51.1395721484067 +-4.28835180392597,51.1368638378276 + + + + + +SS44 +#labelStyle + +-4.21909738715008,51.1831661263829 + + + + +SS45 + +Small Square SS45 Boundry Box +#Line2 + + +1 + +-4.29280744136451,51.2267114558883 +-4.29728565269521,51.3165484206336 +-4.15391783298171,51.3192740737828 +-4.14971852045031,51.2294284213865 +-4.29280744136451,51.2267114558883 + + + + + +SS45 +#labelStyle + +-4.22342541642352,51.2730173160591 + + + + +SS46 + +Small Square SS46 Boundry Box +#Line2 + + +1 + +-4.29728610171749,51.316557405145 +-4.30178749057368,51.4063927002871 +-4.15813930381725,51.4091270757973 +-4.15391825403946,51.3192830591648 +-4.29728610171749,51.316557405145 + + + + + +SS46 +#labelStyle + +-4.22777582922586,51.3628668535812 + + + + +SS47 + +Small Square SS47 Boundry Box +#Line2 + + +1 + +-4.30178794192185,51.4064016846315 +-4.3063126666959,51.4962353091993 +-4.16238266266461,51.4989784411561 +-4.15813972705636,51.4091360610157 +-4.30178794192185,51.4064016846315 + + + + + +SS47 +#labelStyle + +-4.23214877834727,51.4527147381031 + + + + +SS48 + +Small Square SS48 Boundry Box +#Line2 + + +1 + +-4.30631312038586,51.4962442933766 +-4.31086134095848,51.5860762463939 +-4.16664805951935,51.588828169128 +-4.1623830881,51.4989874262108 +-4.30631312038586,51.4962442933766 + + + + + +SS48 +#labelStyle + +-4.23654441801219,51.5425609687751 + + + + +SS49 + +Small Square SS49 Boundry Box +#Line2 + + +1 + +-4.31086179700629,51.586085230404 +-4.31543367476385,51.6759155108897 +-4.17093564578998,51.6786762589788 +-4.16664848716608,51.5888371540189 +-4.31086179700629,51.586085230404 + + + + + +SS49 +#labelStyle + +-4.24096290389605,51.6324055447434 + + + + +SS50 + +Small Square SS50 Boundry Box +#Line2 + + +1 + +-4.12902666467915,50.7801309777329 +-4.13311944477815,50.8699847989311 +-3.99111103486937,50.8724946807607 +-3.98729023666764,50.7826328851638 +-4.12902666467915,50.7801309777329 + + + + + +SS50 +#labelStyle + +-4.06012994850576,50.8263372064596 + + + + +SS51 + +Small Square SS51 Boundry Box +#Line2 + + +1 + +-4.13311985514558,50.8699937851302 +-4.13723364982517,50.9598459741747 +-3.99495183686741,50.9623638617708 +-3.99111141796634,50.8725036677589 +-4.13311985514558,50.8699937851302 + + + + + +SS51 +#labelStyle + +-4.0640972805867,50.9162032620219 + + + + +SS52 + +Small Square SS52 Boundry Box +#Line2 + + +1 + +-4.13723406230133,50.9598549602106 +-4.1413690133984,51.0497055163841 +-3.99881239399066,51.0522314405355 +-3.99495222193325,50.9623728486088 +-4.13723406230133,50.9598549602106 + + + + + +SS52 +#labelStyle + +-4.06808500085679,51.0060677005128 + + + + +SS53 + +Small Square SS53 Boundry Box +#Line2 + + +1 + +-4.14136942799755,51.0497145022567 +-4.14552567866738,51.13956342484 +-4.00269283994101,51.1420974165547 +-3.99881278103867,51.0522404272133 +-4.14136942799755,51.0497145022567 + + + + + +SS53 +#labelStyle + +-4.07209324711383,51.0959305213247 + + + + +SS54 + +Small Square SS54 Boundry Box +#Line2 + + +1 + +-4.1455260954039,51.1395724105491 +-4.14970379013544,51.2294196988211 +-4.00659330966622,51.2319617893281 +-4.00269322898463,51.1421064030721 +-4.1455260954039,51.1395724105491 + + + + + +SS54 +#labelStyle + +-4.07612215843813,51.1857917238495 + + + + +SS55 + +Small Square SS55 Boundry Box +#Line2 + + +1 + +-4.14970420902385,51.2294286843667 +-4.15390349365506,51.3192743376039 +-4.01051393937432,51.3218245583556 +-4.00659370071901,51.2319707756852 +-4.14970420902385,51.2294286843667 + + + + + +SS55 +#labelStyle + +-4.08017187520722,51.2756513074778 + + + + +SS56 + +Small Square SS56 Boundry Box +#Line2 + + +1 + +-4.15390391471002,51.319283322986 +-4.1581249364435,51.4091273404627 +-4.01445486654822,51.4116857231366 +-4.01051433244997,51.3218335445523 +-4.15390391471002,51.319283322986 + + + + + +SS56 +#labelStyle + +-4.08424253911091,51.365509271599 + + + + +SS57 + +Small Square SS57 Boundry Box +#Line2 + + +1 + +-4.15812535967979,51.4091363256812 +-4.16236826709865,51.4989787066691 +-4.01841622996046,51.5015452831699 +-4.01445526166053,51.4116947091728 +-4.15812535967979,51.4091363256812 + + + + + +SS57 +#labelStyle + +-4.08833429316652,51.4553656156011 + + + + +SS58 + +Small Square SS58 Boundry Box +#Line2 + + +1 + +-4.16236869253121,51.4989876917239 +-4.16663363561508,51.588828435492 +-4.02239816968827,51.5914032379537 +-4.01841662712337,51.5015542690456 +-4.16236869253121,51.4989876917239 + + + + + +SS58 +#labelStyle + +-4.09244728173422,51.5452203388704 + + + + +SS59 + +Small Square SS59 Boundry Box +#Line2 + + +1 + +-4.16663406325897,51.5888374203829 +-4.1709211934003,51.6786765261971 +-4.02640082712875,51.6812595869855 +-4.02239856891586,51.5914122236689 +-4.16663406325897,51.5888374203829 + + + + + +SS59 +#labelStyle + +-4.09658165053277,51.6350734407916 + + + + +SS60 + +Small Square SS60 Boundry Box +#Line2 + + +1 + +-3.9872760606098,50.782633126771 +-3.99109683160391,50.872494923138 +-3.84906880360612,50.8748320842481 +-3.84552014572398,50.7849628614624 +-3.9872760606098,50.782633126771 + + + + + +SS60 +#labelStyle + +-3.91823354905861,50.828757114822 + + + + +SS61 + +Small Square SS61 Boundry Box +#Line2 + + +1 + +-3.99109721469815,50.8725039101363 +-3.99493760625213,50.9623641049213 +-3.85263604276013,50.9647087216699 +-3.84906915941673,50.8748410719906 +-3.99109721469815,50.8725039101363 + + + + + +SS61 +#labelStyle + +-3.92192808175649,50.9186308870891 + + + + +SS62 + +Small Square SS62 Boundry Box +#Line2 + + +1 + +-3.99493799131522,50.9623730917594 +-3.99879813588514,51.0522316844621 +-3.85622163226648,51.0545837855301 +-3.85263640039959,50.964717709255 +-3.99493799131522,50.9623730917594 + + + + + +SS62 +#labelStyle + +-3.92564160317975,51.0085030719177 + + + + +SS63 + +Small Square SS63 Boundry Box +#Line2 + + +1 + +-3.9987985229304,51.0522406711399 +-4.00267855420389,51.1420976612604 +-3.85982569634426,51.1444572755326 +-3.85622199174717,51.0545927729578 +-3.9987985229304,51.0522406711399 + + + + + +SS63 +#labelStyle + +-3.92937424169396,51.0983736689111 + + + + +SS64 + +Small Square SS64 Boundry Box +#Line2 + + +1 + +-4.00267894324474,51.1421066477779 +-4.00657899615518,51.231962034816 +-3.86344836037032,51.2343291913835 +-3.85982605767866,51.1444662628029 +-4.00267894324474,51.1421066477779 + + + + + +SS64 +#labelStyle + +-3.93312612685971,51.1882426776737 + + + + +SS65 + +Small Square SS65 Boundry Box +#Line2 + + +1 + +-4.00657938720519,51.2319710211732 +-4.01049959794607,51.3218248046287 +-3.8670897508927,51.3241995327905 +-3.86344872357103,51.2343381784964 +-4.00657938720519,51.2319710211732 + + + + + +SS65 +#labelStyle + +-3.9368973894463,51.2781100978107 + + + + +SS66 + +Small Square SS66 Boundry Box +#Line2 + + +1 + +-4.01049999101892,51.3218337908254 +-4.0144404970585,51.4116859701979 +-3.87074999564413,51.4140682994628 +-3.86709011597241,51.3242085197459 +-4.01049999101892,51.3218337908254 + + + + + +SS66 +#labelStyle + +-3.94068816144583,51.3679759289281 + + + + +SS67 + +Small Square SS67 Boundry Box +#Line2 + + +1 + +-4.01444089216799,51.4116949562342 +-4.01840183226403,51.5015455310225 +-3.87442922355587,51.5039354911112 +-3.8707503626157,51.4140772862607 +-4.01444089216799,51.4116949562342 + + + + + +SS67 +#labelStyle + +-3.9444985760873,51.4578401706324 + + + + +SS68 + +Small Square SS68 Boundry Box +#Line2 + + +1 + +-4.01840222942411,51.5015545168983 +-4.02238374363888,51.5914034866008 +-3.87812756477161,51.5938011074476 +-3.87442959243225,51.5039444777516 +-4.01840222942411,51.5015545168983 + + + + + +SS68 +#labelStyle + +-3.94832876785103,51.5477028225306 + + + + +SS69 + +Small Square SS69 Boundry Box +#Line2 + + +1 + +-4.02238414286364,51.591412472316 +-4.02638637257918,51.6812598364301 +-3.88184515066158,51.6836651481851 +-3.87812793556586,51.5938100939304 +-4.02238414286364,51.591412472316 + + + + + +SS69 +#labelStyle + +-3.9521788724832,51.6375638842299 + + + + +SS70 + +Small Square SS70 Boundry Box +#Line2 + + +1 + +-3.84550596778654,50.7849630858478 +-3.8490545984484,50.8748323093489 +-3.70700834759082,50.8769966954007 +-3.70373195194802,50.7871205937973 +-3.84550596778654,50.7849630858478 + + + + + +SS70 +#labelStyle + +-3.77631829059487,50.8310045318524 + + + + +SS71 + +Small Square SS71 Boundry Box +#Line2 + + +1 + +-3.84905495425628,50.8748412970914 +-3.85262181023981,50.9647089474888 +-3.71030190083743,50.9668802387119 +-3.7070086761028,50.8770056838324 +-3.84905495425628,50.8748412970914 + + + + + +SS71 +#labelStyle + +-3.77973989673662,50.9208854715176 + + + + +SS72 + +Small Square SS72 Boundry Box +#Line2 + + +1 + +-3.85262216787653,50.9647179350739 +-3.85620737224304,51.0545840120698 +-3.71361239851903,51.056762235034 +-3.71030223103815,50.9668892269888 +-3.85262216787653,50.9647179350739 + + + + + +SS72 +#labelStyle + +-3.78317909095869,51.010764851275 + + + + +SS73 + +Small Square SS73 Boundry Box +#Line2 + + +1 + +-3.85620773172097,51.0545929994976 +-3.8598114086762,51.144457502796 +-3.71693995535869,51.1466426842604 +-3.71361273041992,51.0567712231563 +-3.85620773172097,51.0545929994976 + + + + + +SS73 +#labelStyle + +-3.78663599218085,51.1006426709237 + + + + +SS74 + +Small Square SS74 Boundry Box +#Line2 + + +1 + +-3.85981177000782,51.1444664900664 +-3.8634340449152,51.2343294193734 +-3.72028468714898,51.236521586288 +-3.71694028897126,51.146651672228 +-3.85981177000782,51.1444664900664 + + + + + +SS74 +#labelStyle + +-3.79011072043014,51.1905189302656 + + + + +SS75 + +Small Square SS75 Boundry Box +#Line2 + + +1 + +-3.86343440811312,51.2343384064864 +-3.86707540750711,51.3241997615097 +-3.72364671076437,51.3263989410171 +-3.72028502248488,51.2365305741008 +-3.86343440811312,51.2343384064864 + + + + + +SS75 +#labelStyle + +-3.79360339685369,51.2803936291055 + + + + +SS76 + +Small Square SS76 Boundry Box +#Line2 + + +1 + +-3.86707577258403,51.3242087484651 +-3.87073562418369,51.4140685289141 +-3.7270261441737,51.4162747483515 +-3.72364704783533,51.3264079286752 +-3.86707577258403,51.3242087484651 + + + + + +SS76 +#labelStyle + +-3.79711414373167,51.3702667672506 + + + + +SS77 + +Small Square SS77 Boundry Box +#Line2 + + +1 + +-3.87073599115244,51.4140775157121 +-3.87441482387521,51.5039357212975 +-3.73042310645296,51.5061490081981 +-3.72702648299158,51.4162837358548 +-3.87073599115244,51.4140775157121 + + + + + +SS77 +#labelStyle + +-3.80064308449042,51.4601383445104 + + + + +SS78 + +Small Square SS78 Boundry Box +#Line2 + + +1 + +-3.87441519274875,51.5039447079379 +-3.87811313672435,51.5938013383717 +-3.73383771779815,51.5960217204672 +-3.73042344702972,51.5061579955467 +-3.87441519274875,51.5039447079379 + + + + + +SS78 +#labelStyle + +-3.8041903437158,51.5500083606971 + + + + +SS79 + +Small Square SS79 Boundry Box +#Line2 + + +1 + +-3.87811350751576,51.5938103248547 +-3.88183069410037,51.68366537985 +-3.73727009953834,51.6858928850716 +-3.73383806014586,51.596030707661 +-3.87811350751576,51.5938103248547 + + + + + +SS79 +#labelStyle + +-3.80775604716666,51.6398768156245 + + + + +SS80 + +Small Square SS80 Boundry Box +#Line2 + + +1 + +-3.70371777226964,50.7871208009557 +-3.70699414068044,50.8769969032196 +-3.56493106332297,50.8789884638797 +-3.56192704251786,50.7891060321414 +-3.70371777226964,50.7871208009557 + + + + + +SS80 +#labelStyle + +-3.63438556439172,50.8330794053714 + + + + +SS81 + +Small Square SS81 Boundry Box +#Line2 + + +1 + +-3.70699446918969,50.8770058916513 +-3.71028766655261,50.9668804471939 +-3.56795081700741,50.9688783622436 +-3.56493136452502,50.8789974529456 +-3.70699446918969,50.8770058916513 + + + + + +SS81 +#labelStyle + +-3.63753412616327,50.9229669628026 + + + + +SS82 + +Small Square SS82 Boundry Box +#Line2 + + +1 + +-3.7102879967506,50.9668894354709 +-3.71359813671914,51.0567624441816 +-3.57098610815226,51.0587667380773 +-3.56795111975798,50.9688873511573 +-3.7102879967506,50.9668894354709 + + + + + +SS82 +#labelStyle + +-3.6406988742755,51.0128529857516 + + + + +SS83 + +Small Square SS83 Boundry Box +#Line2 + + +1 + +-3.71359846861727,51.0567714323039 +-3.71692566590212,51.1466428940762 +-3.57403704197238,51.1486535914481 +-3.57098641246183,51.0587757268387 +-3.71359846861727,51.0567714323039 + + + + + +SS83 +#labelStyle + +-3.64387991818974,51.1027374741983 + + + + +SS84 + +Small Square SS84 Boundry Box +#Line2 + + +1 + +-3.71692599951193,51.1466518820438 +-3.72027036989319,51.2365217967745 +-3.57710372466371,51.2385389224289 +-3.57403734785151,51.1486625800574 +-3.71692599951193,51.1466518820438 + + + + + +SS84 +#labelStyle + +-3.64707736838673,51.1926204281273 + + + + +SS85 + +Small Square SS85 Boundry Box +#Line2 + + +1 + +-3.7202707052263,51.2365307845874 +-3.72363236556582,51.3263991521769 +-3.58018626341459,51.3284227310974 +-3.57710403212307,51.2385479108859 +-3.7202707052263,51.2365307845874 + + + + + +SS85 +#labelStyle + +-3.65029133637845,51.2825018475275 + + + + +SS86 + +Small Square SS86 Boundry Box +#Line2 + + +1 + +-3.72363270263398,51.3264081398351 +-3.7270117708879,51.4162749601873 +-3.58328476641728,51.4183050175364 +-3.58018657246495,51.3284317194022 +-3.72363270263398,51.3264081398351 + + + + + +SS86 +#labelStyle + +-3.65352193472,51.3723817323919 + + + + +SS87 + +Small Square SS87 Boundry Box +#Line2 + + +1 + +-3.72701210970296,51.4162839476907 +-3.73040870493443,51.5061492207126 +-3.58639934287962,51.5081857818336 +-3.58328507706951,51.4183140056889 +-3.72701210970296,51.4162839476907 + + + + + +SS87 +#labelStyle + +-3.65676927702176,51.462260082718 + + + + +SS88 + +Small Square SS88 Boundry Box +#Line2 + + +1 + +-3.73040904550835,51.5061582080613 +-3.73382328790039,51.5960219336629 +-3.58953010303684,51.5980650240816 +-3.58639965514468,51.508194769834 +-3.73040904550835,51.5061582080613 + + + + + +SS88 +#labelStyle + +-3.66003347796158,51.5521368985069 + + + + +SS89 + +Small Square SS89 Boundry Box +#Line2 + + +1 + +-3.73382363024526,51.5960309208568 +-3.73725564111387,51.6858930989514 +-3.59267715816356,51.6879427443772 +-3.58953041692582,51.5980740119297 +-3.73382363024526,51.5960309208568 + + + + + +SS89 +#labelStyle + +-3.66331465329731,51.6420121797639 + + + + +SS90 + +Small Square SS90 Boundry Box +#Line2 + + +1 + +-3.56191286123732,50.7891062220681 +-3.56491685479962,50.8789886544119 +-3.42283834834666,50.880807343356 +-3.42010680564436,50.7909191304528 +-3.56191286123732,50.7891062220681 + + + + + +SS90 +#labelStyle + +-3.49243676280787,50.8349816871951 + + + + +SS91 + +Small Square SS91 Boundry Box +#Line2 + + +1 + +-3.56491715599895,50.8789976434779 +-3.56793658109874,50.9688785533839 +-3.42558419823478,50.9707030456467 +-3.42283862222841,50.8808163330013 +-3.56491715599895,50.8789976434779 + + + + + +SS91 +#labelStyle + +-3.49531217176659,50.9248753124596 + + + + +SS92 + +Small Square SS92 Boundry Box +#Line2 + + +1 + +-3.56793688384657,50.9688875422976 +-3.57097184471752,51.0587669298278 +-3.42834417763894,51.0605972477495 +-3.42558447352473,50.9707120351419 +-3.56793688384657,50.9688875422976 + + + + + +SS92 +#labelStyle + +-3.49820236431861,51.0147674265598 + + + + +SS93 + +Small Square SS93 Boundry Box +#Line2 + + +1 + +-3.57097214902433,51.0587759185893 +-3.57402275086987,51.1486537838113 +-3.4311183822546,51.1504899498911 +-3.42834445434661,51.0606062370947 +-3.57097214902433,51.0587759185893 + + + + + +SS93 +#labelStyle + +-3.50110744045521,51.1046580296415 + + + + +SS94 + +Small Square SS94 Boundry Box +#Line2 + + +1 + +-3.57402305674623,51.1486627724206 +-3.57708940575077,51.2385391154071 +-3.43390690866972,51.2403811523047 +-3.43111866038961,51.1504989390863 +-3.57402305674623,51.1486627724206 + + + + + +SS94 +#labelStyle + +-3.50402750109907,51.1945471218568 + + + + +SS95 + +Small Square SS95 Boundry Box +#Line2 + + +1 + +-3.57708971320734,51.2385481038642 +-3.58017191654759,51.328422924693 +-3.43670985437503,51.3302708552304 +-3.43390718824177,51.24039014135 +-3.57708971320734,51.2385481038642 + + + + + +SS95 +#labelStyle + +-3.50696264811506,51.2844347033635 + + + + +SS96 + +Small Square SS96 Boundry Box +#Line2 + + +1 + +-3.58017222559514,51.3284319129978 +-3.58327039145162,51.4183052117519 +-3.43952731777453,51.4201590589145 +-3.43671013539391,51.3302798441257 +-3.58017222559514,51.3284319129978 + + + + + +SS96 +#labelStyle + +-3.50991298432115,51.3743207743253 + + + + +SS97 + +Small Square SS97 Boundry Box +#Line2 + + +1 + +-3.58327070210102,51.4183141999044 +-3.58638493966969,51.5081859766713 +-3.44235939819608,51.5100457636098 +-3.43952760025013,51.4201680476599 +-3.58327070210102,51.4183141999044 + + + + + +SS97 +#labelStyle + +-3.51287861349944,51.4642053349116 + + + + +SS98 + +Small Square SS98 Boundry Box +#Line2 + + +1 + +-3.58638525193192,51.5081949646717 +-3.58951567143606,51.5980652195439 +-3.44520619590217,51.5999309695754 +-3.44235968213838,51.5100547522053 +-3.58638525193192,51.5081949646717 + + + + + +SS98 +#labelStyle + +-3.51585964040738,51.5540883852974 + + + + +SS99 + +Small Square SS99 Boundry Box +#Line2 + + +1 + +-3.58951598532219,51.5980742073921 +-3.59266269802434,51.6879429404667 +-3.44806781210084,51.6898146770766 +-3.44520648132125,51.599939958021 +-3.58951598532219,51.5980742073921 + + + + + +SS99 +#labelStyle + +-3.51885617078917,51.6439699256633 + + + + + +ST + +Large Square ST Boundry Box +#Line1 + + +1 + +-3.42009262290053,50.7909193031433 +-3.44805335039547,51.6898148553711 +-2.0013995539957,51.698740295269 +-2.00136740090217,50.7995641378696 +-3.42009262290053,50.7909193031433 + + + + + +ST00 + +Small Square ST00 Boundry Box +#Line2 + + +1 + +-3.42009262290053,50.7909193031433 +-3.42282413835016,50.8808075165972 +-3.28073160116417,50.882453291514 +-3.27827263048568,50.7925598466776 +-3.42009262290053,50.7909193031433 + + + + + +ST00 +#labelStyle + +-3.35047327919772,50.8367113331386 + + + + +ST01 + +Small Square ST01 Boundry Box +#Line2 + + +1 + +-3.42282441222918,50.8808165062425 +-3.42556996084301,50.9707032194408 +-3.28320345245348,50.972354246341 +-3.28073184771618,50.8824622816835 +-3.42282441222918,50.8808165062425 + + + + + +ST01 +#labelStyle + +-3.35307543628386,50.926610476028 + + + + +ST02 + +Small Square ST02 Boundry Box +#Line2 + + +1 + +-3.42557023613021,50.970712208936 +-3.42832991271105,51.0605974220985 +-3.28568802443223,51.0622537212039 +-3.28320370027328,50.9723632363625 +-3.42557023613021,50.970712208936 + + + + + +ST02 +#labelStyle + +-3.3556909732952,51.0165081289608 + + + + +ST03 + +Small Square ST03 Boundry Box +#Line2 + + +1 + +-3.42833018941596,51.0606064114438 +-3.43110408964881,51.1504901247972 +-3.28818540326635,51.1521517164734 +-3.2856882735284,51.0622627110774 +-3.42833018941596,51.0606064114438 + + + + + +ST03 +#labelStyle + +-3.35831998074235,51.106404292234 + + + + +ST04 + +Small Square ST04 Boundry Box +#Line2 + + +1 + +-3.43110436778104,51.1504991139924 +-3.43389258824326,51.24038132777 +-3.29069567592546,51.2420482325283 +-3.28818565364753,51.152160706199 +-3.43110436778104,51.1504991139924 + + + + + +ST04 +#labelStyle + +-3.36096254997919,51.1962989661519 + + + + +ST05 + +Small Square ST05 Boundry Box +#Line2 + + +1 + +-3.43389286781251,51.2403903168154 +-3.43669550598418,51.3302710312571 +-3.29321893019224,51.3319432697553 +-3.2906959276004,51.242057222106 +-3.43389286781251,51.2403903168154 + + + + + +ST05 +#labelStyle + +-3.36361877321257,51.2861921510261 + + + + +ST06 + +Small Square ST06 Boundry Box +#Line2 + + +1 + +-3.43669578700026,51.3302800201525 +-3.43951294127459,51.4201592355048 +-3.29575525467181,51.4218368285489 +-3.29321918316976,51.3319522591851 +-3.43669578700026,51.3302800201525 + + + + + +ST06 +#labelStyle + +-3.36628874351226,51.3760838471754 + + + + +ST07 + +Small Square ST07 Boundry Box +#Line2 + + +1 + +-3.43951322374737,51.4201682242503 +-3.44234499344135,51.510045940766 +-3.2983047388013,51.5117289093114 +-3.29575550896081,51.4218458178309 +-3.43951322374737,51.4201682242503 + + + + + +ST07 +#labelStyle + +-3.36897255482087,51.4659740549259 + + + + +ST08 + +Small Square ST08 Boundry Box +#Line2 + + +1 + +-3.44234527738082,51.5100549293615 +-3.44519176274597,51.5999311472996 +-3.30086747285955,51.6016195124527 +-3.29830499441076,51.5117378984456 +-3.44234527738082,51.5100549293615 + + + + + +ST08 +#labelStyle + +-3.37167030196408,51.5558627746104 + + + + +ST09 + +Small Square ST09 Boundry Box +#Line2 + + +1 + +-3.4451920481622,51.5999401357453 +-3.44805335039547,51.6898148553711 +-3.30344354797692,51.6915086383904 +-3.30086772979855,51.6016285014392 +-3.4451920481622,51.5999401357453 + + + + + +ST09 +#labelStyle + +-3.37438208066092,51.645750006569 + + + + +ST10 + +Small Square ST10 Boundry Box +#Line2 + + +1 + +-3.27825844641751,50.792560002128 +-3.28071738983442,50.8824534474601 +-3.13861222114944,50.8839262700542 +-3.13642590706172,50.794028142754 +-3.27825844641751,50.792560002128 + + + + + +ST10 +#labelStyle + +-3.2084965078254,50.8382683030194 + + + + +ST11 + +Small Square ST11 Boundry Box +#Line2 + + +1 + +-3.2807176363837,50.8824624376296 +-3.28318921371944,50.9723544027848 +-3.1408099884791,50.9738319257879 +-3.13861244036321,50.8839352606929 +-3.2807176363837,50.8824624376296 + + + + + +ST11 +#labelStyle + +-3.21082532337255,50.9281724130744 + + + + +ST12 + +Small Square ST12 Boundry Box +#Line2 + + +1 + +-3.28318946153649,50.9723633928063 +-3.28567375815299,51.0622538781473 +-3.14301906687716,51.0637361196604 +-3.14081020882018,50.9738409162803 +-3.28318946153649,50.9723633928063 + + + + + +ST12 +#labelStyle + +-3.21316611434324,51.0180750522685 + + + + +ST13 + +Small Square ST13 Boundry Box +#Line2 + + +1 + +-3.28567400724639,51.0622628680208 +-3.28817110930001,51.1521518739183 +-3.14523953297078,51.1536388521717 +-3.14301928835316,51.0637451100067 +-3.28567400724639,51.0622628680208 + + + + + +ST13 +#labelStyle + +-3.21551896175781,51.1079762210346 + + + + +ST14 + +Small Square ST14 Boundry Box +#Line2 + + +1 + +-3.28817135967842,51.1521608636439 +-3.2906813541292,51.2420483904767 +-3.14747146410201,51.2435401238307 +-3.1452397555894,51.1536478423719 +-3.28817135967842,51.1521608636439 + + + + + +ST14 +#labelStyle + +-3.21788394739157,51.1978759198142 + + + + +ST15 + +Small Square ST15 Boundry Box +#Line2 + + +1 + +-3.29068160580135,51.2420573800544 +-3.29320458042224,51.3319434282091 +-3.14971493833602,51.3334399351555 +-3.14747168787103,51.2435491138848 +-3.29068160580135,51.2420573800544 + + + + + +ST15 +#labelStyle + +-3.22026115378352,51.2877741490573 + + + + +ST16 + +Small Square ST16 Boundry Box +#Line2 + + +1 + +-3.29320483339695,51.3319524176389 +-3.29574087678328,51.42183698751 +-3.15197003446949,51.4233382866732 +-3.14971516326327,51.3334489250636 +-3.29320483339695,51.3319524176389 + + + + + +ST16 +#labelStyle + +-3.22265066424517,51.3776709092225 + + + + +ST17 + +Small Square ST17 Boundry Box +#Line2 + + +1 + +-3.29574113106946,51.4218459767921 +-3.29829033264846,51.5117290687819 +-3.15423683203915,51.5132351789199 +-3.15197026056291,51.4233472764353 +-3.29574113106946,51.4218459767921 + + + + + +ST17 +#labelStyle + +-3.22505256286952,51.4675662007768 + + + + +ST18 + +Small Square ST18 Boundry Box +#Line2 + + +1 + +-3.29829058825509,51.5117380579161 +-3.30085303829562,51.6016196724346 +-3.15651541133033,51.6031306124407 +-3.1542370593067,51.5132441685362 +-3.29829058825509,51.5117380579161 + + + + + +ST18 +#labelStyle + +-3.22746693454017,51.5574600241954 + + + + +ST19 + +Small Square ST19 Boundry Box +#Line2 + + +1 + +-3.30085329523177,51.6016286614211 +-3.30342908485412,51.6915087988857 +-3.15880585338578,51.6930245877895 +-3.1565156397801,51.6031396019111 +-3.30085329523177,51.6016286614211 + + + + + +ST19 +#labelStyle + +-3.22989386494052,51.6473523799621 + + + + +ST20 + +Small Square ST20 Boundry Box +#Line2 + + +1 + +-3.13641172180826,50.7940282809605 +-3.1385980086264,50.8839264087016 +-2.99648160846133,50.885226244697 +-2.99456802616841,50.7953239846144 +-3.13641172180826,50.7940282809605 + + + + + +ST20 +#labelStyle + +-3.0665078437786,50.8396525606607 + + + + +ST21 + +Small Square ST21 Boundry Box +#Line2 + + +1 + +-3.13859822783744,50.8839353993403 +-3.14079574854372,50.9738320648777 +-2.99840521592125,50.9751360494932 +-2.9964818003293,50.8852352357498 +-3.13859822783744,50.8839353993403 + + + + + +ST21 +#labelStyle + +-3.06856323752318,50.9295610871962 + + + + +ST22 + +Small Square ST22 Boundry Box +#Line2 + + +1 + +-3.14079596888204,50.9738410553702 +-3.14300479938843,51.0637362591944 +-3.00033872412189,51.0650444084088 +-2.99840540877597,50.9751450404013 +-3.14079596888204,50.9738410553702 + + + + + +ST22 +#labelStyle + +-3.07062920144335,51.0194681598525 + + + + +ST23 + +Small Square ST23 Boundry Box +#Line2 + + +1 + +-3.14300502086166,51.0637452495408 +-3.14522523778675,51.1536389921516 +-3.00228220014353,51.1549513220577 +-3.00033891797003,51.0650533991725 +-3.14300502086166,51.0637452495408 + + + + + +ST23 +#labelStyle + +-3.07270580706061,51.1093737791832 + + + + +ST24 + +Small Square ST24 Boundry Box +#Line2 + + +1 + +-3.14522546040259,51.1536479823519 +-3.14745714107976,51.2435402642583 +-3.00423571169234,51.2448567910638 +-3.00228239499183,51.1549603126769 +-3.14522546040259,51.1536479823519 + + + + + +ST24 +#labelStyle + +-3.07479312656298,51.1992779457517 + + + + +ST25 + +Small Square ST25 Boundry Box +#Line2 + + +1 + +-3.14745736484599,51.2435492543124 +-3.14970058733166,51.3334400760325 +-3.0061993271076,51.3347608160611 +-3.00423590754759,51.2448657815385 +-3.14745736484599,51.2435492543124 + + + + + +ST25 +#labelStyle + +-3.07689123281273,51.2891806601314 + + + + +ST26 + +Small Square ST26 Boundry Box +#Line2 + + +1 + +-3.14970081225611,51.3334490659406 +-3.15195565533816,51.4233384280013 +-3.00817311536907,51.4246633976938 +-3.00619952397668,51.3347698063914 +-3.14970081225611,51.3334490659406 + + + + + +ST26 +#labelStyle + +-3.07900019935418,51.3790819229051 + + + + +ST27 + +Small Square ST27 Boundry Box +#Line2 + + +1 + +-3.15195588142875,51.4233474177635 +-3.15422242463498,51.5132353207009 +-3.01015714610442,51.5145645366163 +-3.00817331325891,51.4246723878799 +-3.15195588142875,51.4233474177635 + + + + + +ST27 +#labelStyle + +-3.08112010042161,51.4689817346652 + + + + +ST28 + +Small Square ST28 Boundry Box +#Line2 + + +1 + +-3.1542226518997,51.5132443103173 +-3.15650097550646,51.6031307546764 +-3.01215148959678,51.6044642334929 +-3.01015734502201,51.5145735266581 +-3.1542226518997,51.5132443103173 + + + + + +ST28 +#labelStyle + +-3.08325101094732,51.5588800960135 + + + + +ST29 + +Small Square ST29 Boundry Box +#Line2 + + +1 + +-3.15650120395338,51.6031397441469 +-3.15879138899435,51.6930247304817 +-3.01415621679238,51.6943624889977 +-3.01215168954918,51.6044732233905 +-3.15650120395338,51.6031397441469 + + + + + +ST29 +#labelStyle + +-3.08539300656973,51.6487770075616 + + + + +ST30 + +Small Square ST30 Boundry Box +#Line2 + + +1 + +-2.99455383986877,50.795324105574 +-2.99646739488507,50.8852263660424 +-2.85434116395685,50.8863531851846 +-2.8527003792919,50.7964473421888 +-2.99455383986877,50.795324105574 + + + + + +ST30 +#labelStyle + +-2.92450868288235,50.840864073894 + + + + +ST31 + +Small Square ST31 Boundry Box +#Line2 + + +1 + +-2.99646758675031,50.8852353570952 +-2.99839097492553,50.9751361712258 +-2.85599054509572,50.9762665870101 +-2.85434132847242,50.8863621765964 +-2.99646758675031,50.8852353570952 + + + + + +ST31 +#labelStyle + +-2.92629058397206,50.9307764660242 + + + + +ST32 + +Small Square ST32 Boundry Box +#Line2 + + +1 + +-2.9983911677775,50.975145162134 +-3.00032445556563,51.0650445305303 +-2.85764841602896,51.0661785568116 +-2.85599071045741,50.9762755782787 +-2.9983911677775,50.975145162134 + + + + + +ST32 +#labelStyle + +-2.92808164933058,51.0206874191408 + + + + +ST33 + +Small Square ST33 Boundry Box +#Line2 + + +1 + +-3.00032464941101,51.0650535212939 +-3.00226790388472,51.1549514445695 +-2.85931483428283,51.1560890953016 +-2.85764858224249,51.066187547937 +-3.00032464941101,51.0650535212939 + + + + + +ST33 +#labelStyle + +-2.92988194097293,51.1105969339034 + + + + +ST34 + +Small Square ST34 Boundry Box +#Line2 + + +1 + +-3.00226809873023,51.1549604351887 +-3.00422138758798,51.2448569139674 +-2.86098985792039,51.2459982032036 +-2.85931500135399,51.1560980862839 +-3.00226809873023,51.1549604351887 + + + + + +ST34 +#labelStyle + +-2.93169152149215,51.2005050109822 + + + + +ST35 + +Small Square ST35 Boundry Box +#Line2 + + +1 + +-3.00422158344045,51.2448659044421 +-3.00618497501375,51.334760939358 +-2.8626735455477,51.3359058812524 +-2.86099002585501,51.2460071940429 +-3.00422158344045,51.2448659044421 + + + + + +ST35 +#labelStyle + +-2.93351045406597,51.2904116510584 + + + + +ST36 + +Small Square ST36 Boundry Box +#Line2 + + +1 + +-3.00618517188002,51.3347699296883 +-3.00815873514079,51.4246635213856 +-2.86436595632014,51.4258121301937 +-2.86267371435167,51.3359148719487 +-3.00618517188002,51.3347699296883 + + + + + +ST36 +#labelStyle + +-2.93533880246361,51.3803168548236 + + + + +ST37 + +Small Square ST37 Boundry Box +#Line2 + + +1 + +-3.00815893302781,51.4246725115717 +-3.01014273759578,51.5145646607045 +-2.86606714994878,51.5157169507842 +-2.8643661259994,51.4258211207471 +-3.00815893302781,51.4246725115717 + + + + + +ST37 +#labelStyle + +-2.93717663105259,51.4702206229799 + + + + +ST38 + +Small Square ST38 Boundry Box +#Line2 + + +1 + +-3.01014293651053,51.5145736507463 +-3.01213705266084,51.604464357979 +-2.86777718670688,51.6056203437917 +-2.86606732050934,51.5157259411949 +-3.01014293651053,51.5145736507463 + + + + + +ST38 +#labelStyle + +-2.93902400480577,51.5601229562402 + + + + +ST39 + +Small Square ST39 Boundry Box +#Line2 + + +1 + +-3.01213725261039,51.6044733478767 +-3.01414175128121,51.6943626138834 +-2.8694961274364,51.6955223099949 +-2.86777735815478,51.6056293340597 +-3.01213725261039,51.6044733478767 + + + + + +ST39 +#labelStyle + +-2.94088098930834,51.6500238553277 + + + + +ST40 + +Small Square ST40 Boundry Box +#Line2 + + +1 + +-2.85268619208527,50.7964474458986 +-2.85432694946748,50.8863532892251 +-2.71219228910425,50.8873070652837 +-2.7108243585226,50.7973981894064 +-2.85268619208527,50.7964474458986 + + + + + +ST40 +#labelStyle + +-2.78250042161263,50.8419028145617 + + + + +ST41 + +Small Square ST41 Boundry Box +#Line2 + + +1 + +-2.85432711398031,50.886362280637 +-2.85597630318071,50.9762666913828 +-2.71356738693653,50.9772235119415 +-2.71219242626174,50.8873160569994 +-2.85432711398031,50.886362280637 + + + + + +ST41 +#labelStyle + +-2.78400876861398,50.9318185212249 + + + + +ST42 + +Small Square ST42 Boundry Box +#Line2 + + +1 + +-2.85597646853965,50.9762756826514 +-2.85763414654718,51.0661786615177 +-2.71494956308627,51.0671385383061 +-2.71356752479947,50.9772325035151 +-2.85597646853965,50.9762756826514 + + + + + +ST42 +#labelStyle + +-2.78552487340601,51.0217328016227 + + + + +ST43 + +Small Square ST43 Boundry Box +#Line2 + + +1 + +-2.85763431275796,51.0661876526431 +-2.85930053709221,51.1560892003423 +-2.71633886551954,51.1570521451738 +-2.71494970165943,51.0671475297378 +-2.85763431275796,51.0661876526431 + + + + + +ST43 +#labelStyle + +-2.78704878849067,51.1116456565057 + + + + +ST44 + +Small Square ST44 Boundry Box +#Line2 + + +1 + +-2.8593007041606,51.1560981913246 +-2.86097553287789,51.2459983085803 +-2.7177353426501,51.2469643333524 +-2.71633900480775,51.1570611364635 +-2.8593007041606,51.1560981913246 + + + + + +ST44 +#labelStyle + +-2.78858056685935,51.2015570866357 + + + + +ST45 + +Small Square ST45 Boundry Box +#Line2 + + +1 + +-2.86097570080972,51.2460072994196 +-2.8626591925093,51.3359059869663 +-2.71913904334447,51.3368751036619 +-2.71773548265821,51.2469733245003 +-2.86097570080972,51.2460072994196 + + + + + +ST45 +#labelStyle + +-2.79012026199848,51.2914670927862 + + + + +ST46 + +Small Square ST46 Boundry Box +#Line2 + + +1 + +-2.86265936131047,51.3359149776627 +-2.86435157514084,51.4258122362462 +-2.72055001692728,51.4267844569339 +-2.7191391840774,51.336884094668 +-2.86265936131047,51.3359149776627 + + + + + +ST46 +#labelStyle + +-2.79166792789527,51.3813756757423 + + + + +ST47 + +Small Square ST47 Boundry Box +#Line2 + + +1 + +-2.86435174481729,51.4258212267997 +-2.8660527404826,51.5157170571766 +-2.72196831318652,51.5166923940121 +-2.72055015838997,51.4267934477984 +-2.86435174481729,51.4258212267997 + + + + + +ST47 +#labelStyle + +-2.79322361904356,51.4712828363003 + + + + +ST48 + +Small Square ST48 Boundry Box +#Line2 + + +1 + +-2.86605291104031,51.5157260475873 +-2.8677627488068,51.6056204505254 +-2.72339398237899,51.6065989157517 +-2.72196845538399,51.5167013847351 +-2.86605291104031,51.5157260475873 + + + + + +ST48 +#labelStyle + +-2.79478739044967,51.561188575268 + + + + +ST49 + +Small Square ST49 Boundry Box +#Line2 + + +1 + +-2.86776292025185,51.6056294407934 +-2.86948166095444,51.6955224170711 +-2.72482707523577,51.6965040230197 +-2.72339412531628,51.6066079063332 +-2.86776292025185,51.6056294407934 + + + + + +ST49 +#labelStyle + +-2.79635929763845,51.6510928934646 + + + + +ST50 + +Small Square ST50 Boundry Box +#Line2 + + +1 + +-2.71081017054821,50.797398275864 +-2.71217807384194,50.8873071520171 +-2.57003638589595,50.8880878627878 +-2.56894135646919,50.7981765041984 +-2.71081017054821,50.797398275864 + + + + + +ST50 +#labelStyle + +-2.64048445700989,50.8427687585193 + + + + +ST51 + +Small Square ST51 Boundry Box +#Line2 + + +1 + +-2.71217821099669,50.8873161437328 +-2.71355314424336,50.9772235989517 +-2.571137152908,50.9780068019418 +-2.57003649569063,50.8880968547523 +-2.71217821099669,50.8873161437328 + + + + + +ST51 +#labelStyle + +-2.64171919791468,50.9326872285029 + + + + +ST52 + +Small Square ST52 Boundry Box +#Line2 + + +1 + +-2.71355328210355,50.9772325905254 +-2.71493529282106,51.0671386255943 +-2.57224358631811,51.0679243304068 +-2.57113726326741,50.9780157937651 +-2.71355328210355,50.9772325905254 + + + + + +ST52 +#labelStyle + +-2.64296028964827,51.0226042828508 + + + + +ST53 + +Small Square ST53 Boundry Box +#Line2 + + +1 + +-2.71493543139145,51.067147617026 +-2.71632456754017,51.1570522327409 +-2.57335572452713,51.1578404490474 +-2.57224369724608,51.0679333220891 +-2.71493543139145,51.067147617026 + + + + + +ST53 +#labelStyle + +-2.64420777519398,51.1125199223892 + + + + +ST54 + +Small Square ST54 Boundry Box +#Line2 + + +1 + +-2.7163247068256,51.1570612240307 +-2.71772101681347,51.2469644211996 +-2.57447360629428,51.2477551587407 +-2.57335583602751,51.1578494405888 +-2.7163247068256,51.1570612240307 + + + + + +ST54 +#labelStyle + +-2.64546169793588,51.2024341479565 + + + + +ST55 + +Small Square ST55 Boundry Box +#Line2 + + +1 + +-2.71772115681879,51.2469734123476 +-2.71912468950652,51.3368751917903 +-2.57559727074133,51.3376684603764 +-2.57447371837096,51.2477641501413 +-2.71772115681879,51.2469734123476 + + + + + +ST55 +#labelStyle + +-2.64672210166334,51.2923469604033 + + + + +ST56 + +Small Square ST56 Boundry Box +#Line2 + + +1 + +-2.71912483023664,51.3368841827965 +-2.72053563494295,51.4267845453446 +-2.57672675735679,51.4275803548567 +-2.57559738339825,51.3376774516362 +-2.71912483023664,51.3368841827965 + + + + + +ST56 +#labelStyle + +-2.64798903057581,51.3822583605923 + + + + +ST57 + +Small Square ST57 Boundry Box +#Line2 + + +1 + +-2.72053577640283,51.4267935362092 +-2.72195390290978,51.5166924827062 +-2.57786210600021,51.5174908430959 +-2.57672687059791,51.4275893459758 +-2.72053577640283,51.4267935362092 + + + + + +ST57 +#labelStyle + +-2.64926252928749,51.4721683493986 + + + + +ST58 + +Small Square ST58 Boundry Box +#Line2 + + +1 + +-2.72195404510441,51.5167014734292 +-2.72337954366279,51.6065990047303 +-2.57900335690646,51.6073999260211 +-2.57786221982954,51.5174998340744 +-2.72195404510441,51.5167014734292 + + + + + +ST58 +#labelStyle + +-2.65054264283224,51.562076927709 + + + + +ST59 + +Small Square ST59 Boundry Box +#Line2 + + +1 + +-2.72337968659723,51.6066079953118 +-2.72481260793205,51.6965041122839 +-2.58015055069013,51.6973076045717 +-2.57900347132804,51.6074089168592 +-2.72337968659723,51.6066079953118 + + + + + +ST59 +#labelStyle + +-2.65182941666842,51.6519840964229 + + + + +ST60 + +Small Square ST60 Boundry Box +#Line2 + + +1 + +-2.56892716786632,50.7981765734017 +-2.57002217000093,50.8880879322119 +-2.42787485676151,50.8886955595182 +-2.42705276617245,50.7987822684989 +-2.56892716786632,50.7981765734017 + + + + + +ST60 +#labelStyle + +-2.49846218659251,50.843461885637 + + + + +ST61 + +Small Square ST61 Boundry Box +#Line2 + + +1 + +-2.57002227979287,50.8880969241764 +-2.57112290957783,50.9780068715875 +-2.42870125491653,50.9786164387188 +-2.42787493918959,50.8887045516764 +-2.57002227979287,50.8880969241764 + + + + + +ST61 +#labelStyle + +-2.49942327882333,50.9333825676028 + + + + +ST62 + +Small Square ST62 Boundry Box +#Line2 + + +1 + +-2.57112301993449,50.9780158634109 +-2.57222931541159,51.067924400275 +-2.42953190719603,51.0685359147067 +-2.4287013377686,50.9786254307365 +-2.57112301993449,50.9780158634109 + + + + + +ST62 +#labelStyle + +-2.50038931452499,51.0233018424429 + + + + +ST63 + +Small Square ST63 Boundry Box +#Line2 + + +1 + +-2.5722294263368,51.0679333919573 +-2.57334142590209,51.157840519139 +-2.43036684243146,51.1584539884 +-2.42953199047494,51.0685449065842 +-2.5722294263368,51.0679333919573 + + + + + +ST63 +#labelStyle + +-2.50136032715765,51.113219711044 + + + + +ST64 + +Small Square ST64 Boundry Box +#Line2 + + +1 + +-2.57334153739969,51.1578495106804 +-2.57445927980758,51.2477552290565 +-2.43120608972341,51.2483706607296 +-2.43036692614012,51.1584629801373 +-2.57334153739969,51.1578495106804 + + + + + +ST64 +#labelStyle + +-2.50233635049339,51.2031361743057 + + + + +ST65 + +Small Square ST65 Boundry Box +#Line2 + + +1 + +-2.57445939188147,51.2477642204571 +-2.57558291624887,51.3376685309173 +-2.43204967844467,51.3382859326394 +-2.43120617386474,51.2483796523268 +-2.57445939188147,51.2477642204571 + + + + + +ST65 +#labelStyle + +-2.50331741861989,51.2930512331404 + + + + +ST66 + +Small Square ST66 Boundry Box +#Line2 + + +1 + +-2.57558302890298,51.3376775221771 +-2.57671237471348,51.4275804256235 +-2.43289763824339,51.4281998050864 +-2.43204976302162,51.3382949240966 +-2.57558302890298,51.3376775221771 + + + + + +ST66 +#labelStyle + +-2.50430356594398,51.3829648884732 + + + + +ST67 + +Small Square ST67 Boundry Box +#Line2 + + +1 + +-2.57671248795178,51.4275894167426 +-2.57784769505996,51.5174909140895 +-2.43374999904632,51.5181122790403 +-2.43289772325894,51.4282087964037 +-2.57671248795178,51.4275894167426 + + + + + +ST67 +#labelStyle + +-2.50529482719546,51.4728771412418 + + + + +ST68 + +Small Square ST68 Boundry Box +#Line2 + + +1 + +-2.57784780888646,51.5174999050681 +-2.57898891752218,51.6073999972425 +-2.43460679106202,51.608023355484 +-2.43375008450347,51.5181212702178 +-2.57784780888646,51.5174999050681 + + + + + +ST68 +#labelStyle + +-2.5062912374308,51.5627879923968 + + + + +ST69 + +Small Square ST69 Boundry Box +#Line2 + + +1 + +-2.57898903194091,51.6074089880806 +-2.58013608271373,51.6973076760217 +-2.43546804478419,51.6979330354132 +-2.43460687696382,51.6080323465218 +-2.57898903194091,51.6074089880806 + + + + + +ST69 +#labelStyle + +-2.50729283203694,51.6526974429015 + + + + +ST70 + +Small Square ST70 Boundry Box +#Line2 + + +1 + +-2.42703857708043,50.7987823204464 +-2.42786064037403,50.8886956116315 +-2.28570910448038,50.8891301413263 +-2.28515998101914,50.7992154682467 +-2.42703857708043,50.7987823204464 + + + + + +ST70 +#labelStyle + +-2.35643500827013,50.8439821798017 + + + + +ST71 + +Small Square ST71 Boundry Box +#Line2 + + +1 + +-2.42786072279938,50.8887046037896 +-2.42868701109059,50.9786164909984 +-2.28626110522254,50.9790524080351 +-2.28570915953903,50.8891391336229 +-2.42786072279938,50.8887046037896 + + + + + +ST71 +#labelStyle + +-2.35712241868485,50.9339045223108 + + + + +ST72 + +Small Square ST72 Boundry Box +#Line2 + + +1 + +-2.4286870939399,50.9786254830161 +-2.42951763579037,51.0685359671534 +-2.2868159475496,51.0689732768794 +-2.28626116056439,50.9790614001919 +-2.4286870939399,50.9786254830161 + + + + + +ST72 +#labelStyle + +-2.35781336490416,51.0238254640835 + + + + +ST73 + +Small Square ST73 Boundry Box +#Line2 + + +1 + +-2.42951771906652,51.0685449590308 +-2.43035254330389,51.1584540410143 +-2.28737365072062,51.158892748815 +-2.28681600317657,51.0689822688964 +-2.42951771906652,51.0685449590308 + + + + + +ST73 +#labelStyle + +-2.35850787086144,51.1137450060521 + + + + +ST74 + +Small Square ST74 Boundry Box +#Line2 + + +1 + +-2.43035262700977,51.1584630327516 +-2.43119176273076,51.2483707135122 +-2.28793423417439,51.2488108248116 +-2.28737370663464,51.1589017406924 +-2.43035262700977,51.1584630327516 + + + + + +ST74 +#labelStyle + +-2.35920596071325,51.2036631491622 + + + + +ST75 + +Small Square ST75 Boundry Box +#Line2 + + +1 + +-2.4311918468693,51.2483797051094 +-2.4320353234428,51.338285985591 +-2.28849771753157,51.3387275058518 +-2.28793429037742,51.2488198165494 +-2.4311918468693,51.2483797051094 + + + + + +ST75 +#labelStyle + +-2.35990765884183,51.2935798943724 + + + + +ST76 + +Small Square ST76 Boundry Box +#Line2 + + +1 + +-2.43203540801694,51.3382949770483 +-2.43288325508717,51.4281998582076 +-2.28906412059677,51.4286427929317 +-2.28849777402558,51.3387364974501 +-2.43203540801694,51.3382949770483 + + + + + +ST76 +#labelStyle + +-2.36061298985777,51.3834952426546 + + + + +ST77 + +Small Square ST77 Boundry Box +#Line2 + + +1 + +-2.4328833400999,51.4282088495249 +-2.43373558758964,51.5181123323318 +-2.28963346336068,51.5185566870608 +-2.28906417738374,51.4286517843907 +-2.4328833400999,51.4282088495249 + + + + + +ST77 +#labelStyle + +-2.36132197860268,51.4734091949938 + + + + +ST78 + +Small Square ST78 Boundry Box +#Line2 + + +1 + +-2.43373567304396,51.5181213235093 +-2.43459235115777,51.6080234089465 +-2.29020576600227,51.6084691892618 +-2.28963352044263,51.5185656783806 +-2.43373567304396,51.5181213235093 + + + + + +ST78 +#labelStyle + +-2.36203465015181,51.5633217523883 + + + + +ST79 + +Small Square ST79 Boundry Box +#Line2 + + +1 + +-2.43459243705671,51.6080323999843 +-2.43545357628422,51.6979330890473 +-2.29078104889097,51.6983803005707 +-2.29020582338122,51.6084781804425 +-2.43459243705671,51.6080323999843 + + + + + +ST79 +#labelStyle + +-2.36275102981683,51.6532329158493 + + + + +ST80 + +Small Square ST80 Boundry Box +#Line2 + + +1 + +-2.28514579157732,50.7992155029372 +-2.28569488774075,50.8891301761275 +-2.14354053209476,50.8893915980938 +-2.14326439465574,50.7994760933866 +-2.28514579157732,50.7992155029372 + + + + + +ST80 +#labelStyle + +-2.21440432025697,50.8443296289179 + + + + +ST81 + +Small Square ST81 Boundry Box +#Line2 + + +1 + +-2.28569494279666,50.8891391684241 +-2.28624686104205,50.9790524429474 +-2.14381811635215,50.9793146997095 +-2.14354055978207,50.8894005904737 +-2.28569494279666,50.8891391684241 + + + + + +ST81 +#labelStyle + +-2.21481802515227,50.9342530804558 + + + + +ST82 + +Small Square ST82 Boundry Box +#Line2 + + +1 + +-2.28624691638115,50.9790614351042 +-2.286801675787,51.0689733119032 +-2.14409712947724,51.0692364066795 +-2.14381814418187,50.9793236919499 +-2.28624691638115,50.9790614351042 + + + + + +ST82 +#labelStyle + +-2.21523385796538,51.0241751355254 + + + + +ST83 + +Small Square ST83 Boundry Box +#Line2 + + +1 + +-2.2868017314112,51.0689823039202 +-2.28735935123367,51.1588927839509 +-2.1443775811546,51.1591567199828 +-2.14409715745033,51.0692453987805 +-2.2868017314112,51.0689823039202 + + + + + +ST83 +#labelStyle + +-2.21565183310038,51.1140957950895 + + + + +ST84 + +Small Square ST84 Boundry Box +#Line2 + + +1 + +-2.28735940714492,51.1589017758282 +-2.28791990681992,51.2488108600598 +-2.14465948115919,51.2490756406121 +-2.14437760927203,51.1591657119445 +-2.28735940714492,51.1589017758282 + + + + + +ST84 +#labelStyle + +-2.21607196509567,51.2040150601242 + + + + +ST85 + +Small Square ST85 Boundry Box +#Line2 + + +1 + +-2.28791996302015,51.2488198517977 +-2.28848336216541,51.3387275412129 +-2.14494283935741,51.3389931695734 +-2.14465950942194,51.2490846324345 +-2.28791996302015,51.2488198517977 + + + + + +ST85 +#labelStyle + +-2.2164942686255,51.2939329316193 + + + + +ST86 + +Small Square ST86 Boundry Box +#Line2 + + +1 + +-2.28848341865661,51.3387365328113 +-2.28904973707377,51.4286428284061 +-2.14522766570817,51.4289093078865 +-2.14494286776648,51.3390021612568 +-2.28848341865661,51.3387365328113 + + + + + +ST86 +#labelStyle + +-2.21691875850155,51.3838494105778 + + + + +ST87 + +Small Square ST87 Boundry Box +#Line2 + + +1 + +-2.28904979385792,51.4286518198652 +-2.2896190515347,51.5185567226489 +-2.14551397026396,51.5188240565847 +-2.14522769426455,51.4289182994309 +-2.28904979385792,51.4286518198652 + + + + + +ST87 +#labelStyle + +-2.21734544967452,51.4737644980163 + + + + +ST88 + +Small Square ST88 Boundry Box +#Line2 + + +1 + +-2.28961910861381,51.5185657139688 +-2.29019132572617,51.6084692249641 +-2.14580176317193,51.6087374167145 +-2.14551399896867,51.5188330479901 +-2.28961910861381,51.5185657139688 + + + + + +ST88 +#labelStyle + +-2.21777435723575,51.5636781949648 + + + + +ST89 + +Small Square ST89 Boundry Box +#Line2 + + +1 + +-2.29019138310227,51.6084782161448 +-2.29076658001658,51.6983803363876 +-2.14609105467505,51.6986493893365 +-2.14580179202599,51.6087464079812 +-2.29019138310227,51.6084782161448 + + + + + +ST89 +#labelStyle + +-2.21820549641887,51.6535905024668 + + + + +ST90 + +Small Square ST90 Boundry Box +#Line2 + + +1 + +-2.1432502050035,50.7994761108192 +-2.14352631514328,50.8893916155821 +-2.00137054282227,50.8894799237341 +-2.00136740090217,50.7995641378696 +-2.1432502050035,50.7994761108192 + + + + + +ST90 +#labelStyle + +-2.07237152098505,50.8445042249087 + + + + +ST91 + +Small Square ST91 Boundry Box +#Line2 + + +1 + +-2.14352634282786,50.8894006079621 +-2.14380387195839,50.9793147172536 +-2.00137370100897,50.9794033076171 +-2.00137054313729,50.8894889161422 +-2.14352634282786,50.8894006079621 + + + + + +ST91 +#labelStyle + +-2.07251150609893,50.9344282339104 + + + + +ST92 + +Small Square ST92 Boundry Box +#Line2 + + +1 + +-2.14380389978535,50.979323709494 +-2.14408285749992,51.0692364242797 +-2.00137687525686,51.0693252979439 +-2.00137370132559,50.9794122998858 +-2.14380389978535,50.979323709494 + + + + + +ST92 +#labelStyle + +-2.07265221111112,51.0243508485904 + + + + +ST93 + +Small Square ST93 Boundry Box +#Line2 + + +1 + +-2.14408288547024,51.0692454163807 +-2.14436328145148,51.1591567376393 +-2.00138006567501,51.1592458957015 +-2.00137687557509,51.0693342900733 +-2.14408288547024,51.0692454163807 + + + + + +ST93 +#labelStyle + +-2.0727936408949,51.1142720699265 + + + + +ST94 + +Small Square ST94 Boundry Box +#Line2 + + +1 + +-2.14436330956613,51.159165729601 +-2.14464515358706,51.2490756583251 +-2.00138327237349,51.2491651018902 +-2.00138006599487,51.1592548876917 +-2.14436330956613,51.159165729601 + + + + + +ST94 +#labelStyle + +-2.07293580036896,51.2041918989105 + + + + +ST95 + +Small Square ST95 Boundry Box +#Line2 + + +1 + +-2.14464518184702,51.2490846501476 +-2.1449284837721,51.3389931873432 +-2.00138649546337,51.3390829175241 +-2.00138327269497,51.2491740937413 +-2.14464518184702,51.2490846501476 + + + + + +ST95 +#labelStyle + +-2.07307869449797,51.2941103365475 + + + + +ST96 + +Small Square ST96 Boundry Box +#Line2 + + +1 + +-2.14492851217836,51.3390021790266 +-2.14521328196452,51.4289093257133 +-2.00138973505682,51.4289993436308 +-2.00138649578651,51.3390919092361 +-2.14492851217836,51.3390021790266 + + + + + +ST96 +#labelStyle + +-2.07322232829308,51.3840273838564 + + + + +ST97 + +Small Square ST97 Boundry Box +#Line2 + + +1 + +-2.14521331051808,51.4289183172576 +-2.14549955821582,51.5188240744686 +-2.001392991267,51.5189143812516 +-2.0013897353816,51.4290083352039 +-2.14521331051808,51.4289183172576 + + + + + +ST97 +#labelStyle + +-2.0733667068125,51.4739430418697 + + + + +ST98 + +Small Square ST98 Boundry Box +#Line2 + + +1 + +-2.14549958691769,51.518833065874 +-2.14578732267214,51.6087374346559 +-2.00139626420818,51.6088280314415 +-2.00139299159346,51.518923372686 +-2.14549958691769,51.518833065874 + + + + + +ST98 +#labelStyle + +-2.07351183516201,51.5638573116333 + + + + +ST99 + +Small Square ST99 Boundry Box +#Line2 + + +1 + +-2.14578735152335,51.6087464259225 +-2.14607658557543,51.6986494073354 +-2.0013995539957,51.698740295269 +-2.00139626453632,51.6088370227372 +-2.14578735152335,51.6087464259225 + + + + + +ST99 +#labelStyle + +-2.07365771849552,51.6537701942068 + + + + + +SU + +Large Square SU Boundry Box +#Line1 + + +1 + +-2.00135321117889,50.799564138044 +-2.00138508482004,51.6987402954494 +-0.554729846032492,51.6898509321282 +-0.582626648536493,50.7909541804906 +-2.00135321117889,50.799564138044 + + + + + +SU00 + +Small Square SU00 Boundry Box +#Line2 + + +1 + +-2.00135321117889,50.799564138044 +-2.00135632579928,50.8894799239092 +-1.85920053996869,50.8893951161927 +-1.8594703936655,50.7994795996539 +-2.00135321117889,50.799564138044 + + + + + +SU00 +#labelStyle + +-1.93033800901745,50.8445059637165 + + + + +SU01 + +Small Square SU01 Boundry Box +#Line2 + + +1 + +-2.00135632611156,50.8894889163173 +-2.0013594565432,50.9794033077927 +-1.85892927198575,50.9793182296905 +-1.85920051291141,50.8894041085738 +-2.00135632611156,50.8894889163173 + + + + + +SU01 +#labelStyle + +-1.93020426953072,50.9344299785918 + + + + +SU02 + +Small Square SU02 Boundry Box +#Line2 + + +1 + +-2.00135945685707,50.9794123000614 +-2.00136260320705,51.0693252981202 +-1.85865660725658,51.0692399485923 +-1.85892924478926,50.9793272219321 +-2.00135945685707,50.9794123000614 + + + + + +SU02 +#labelStyle + +-1.93006984187797,51.0243525991699 + + + + +SU03 + +Small Square SU03 Boundry Box +#Line2 + + +1 + +-2.00136260352251,51.0693342902495 +-2.0013657658989,51.1592458958783 +-1.85838253631469,51.1591602738776 +-1.85865657991994,51.0692489406945 +-2.00136260352251,51.0693342902495 + + + + + +SU03 +#labelStyle + +-1.92993472140111,51.1142738264289 + + + + +SU04 + +Small Square SU04 Boundry Box +#Line2 + + +1 + +-2.00136576621598,51.1592548878685 +-2.00136894472788,51.2491651020676 +-1.85810704960526,51.2490792065391 +-1.85838250883696,51.1591692658404 +-2.00136576621598,51.1592548878685 + + + + + +SU04 +#labelStyle + +-1.92979890339862,51.2041936613606 + + + + +SU05 + +Small Square SU05 Boundry Box +#Line2 + + +1 + +-2.00136894504657,51.2491740939187 +-2.00137213980409,51.3390829177021 +-1.85783013748405,51.3389967475836 +-1.85810702198547,51.2490881983628 +-2.00136894504657,51.2491740939187 + + + + + +SU05 +#labelStyle + +-1.92966238312506,51.2941121049705 + + + + +SU06 + +Small Square SU06 Boundry Box +#Line2 + + +1 + +-2.00137214012441,51.3390919094141 +-2.00137535123868,51.4289993438094 +-1.85755179021642,51.4289128980309 +-1.85783010972124,51.3390057392681 +-2.00137214012441,51.3390919094141 + + + + + +SU06 +#labelStyle + +-1.92952515579054,51.3840291582775 + + + + +SU07 + +Small Square SU07 Boundry Box +#Line2 + + +1 + +-2.00137535156065,51.4290083353826 +-2.00137857914386,51.5189143814309 +-1.85727199797626,51.5188276589147 +-1.8575517623096,51.4289218895764 +-2.00137535156065,51.4290083353826 + + + + + +SU07 +#labelStyle + +-1.92938721656019,51.4739448223143 + + + + +SU08 + +Small Square SU08 Boundry Box +#Line2 + + +1 + +-2.00137857946748,51.5189233728653 +-2.00138182363287,51.6088280316214 +-1.85699075084488,51.6087410312821 +-1.85727196992445,51.5188366503213 +-2.00137857946748,51.5189233728653 + + + + + +SU08 +#labelStyle + +-1.92924856055368,51.563859098127 + + + + +SU09 + +Small Square SU09 Boundry Box +#Line2 + + +1 + +-2.00138182395815,51.6088370229171 +-2.00138508482004,51.6987402954494 +-1.85670803881002,51.6986530161937 +-1.85699072264708,51.6087500225499 +-2.00138182395815,51.6088370229171 + + + + + +SU09 +#labelStyle + +-1.92910918284467,51.6537719867755 + + + + +SU10 + +Small Square SU10 Boundry Box +#Line2 + + +1 + +-1.85945620401057,50.7994795825701 +-1.85918632301451,50.8893950990544 +-1.71703192684062,50.8891371774469 +-1.71757476685363,50.7992224807047 +-1.85945620401057,50.7994795825701 + + + + + +SU10 +#labelStyle + +-1.78830518296149,50.8443348453033 + + + + +SU11 + +Small Square SU11 Boundry Box +#Line2 + + +1 + +-1.85918629595449,50.8894040914355 +-1.85891502758926,50.9793182124975 +-1.71648624207612,50.9790594679195 +-1.71703187241198,50.8891461697459 +-1.85918629595449,50.8894040914355 + + + + + +SU11 +#labelStyle + +-1.78789772349829,50.9342583144616 + + + + +SU12 + +Small Square SU12 Boundry Box +#Line2 + + +1 + +-1.85891500039003,50.9793272047391 +-1.85864233527651,51.0692399313445 +-1.71593774784536,51.0689803606269 +-1.71648618736747,50.9790684600786 +-1.85891500039003,50.9793272047391 + + + + + +SU12 +#labelStyle + +-1.78748816784773,51.0241803872253 + + + + +SU13 + +Small Square SU13 Boundry Box +#Line2 + + +1 + +-1.85864230793711,51.0692489234467 +-1.8583682366088,51.1591602565747 +-1.71538642510734,51.1588998565258 +-1.71593769285481,51.0689893526463 +-1.85864230793711,51.0692489234467 + + + + + +SU13 +#labelStyle + +-1.78707650182087,51.1141010645578 + + + + +SU14 + +Small Square SU14 Boundry Box +#Line2 + + +1 + +-1.85836820912829,51.1591692485375 +-1.85809272203035,51.2490791891809 +-1.71483225464336,51.2488179565865 +-1.71538636983299,51.1589088484056 +-1.85836820912829,51.1591692485375 + + + + + +SU14 +#labelStyle + +-1.78666271109647,51.2040203474355 + + + + +SU15 + +Small Square SU15 Boundry Box +#Line2 + + +1 + +-1.85809269440777,51.2490881810046 +-1.85781578189594,51.3389967301698 +-1.71427521705491,51.3387346617923 +-1.71483219908327,51.2488269483267 +-1.85809269440777,51.2490881810046 + + + + + +SU15 +#labelStyle + +-1.7862467812195,51.2939382368488 + + + + +SU16 + +Small Square SU16 Boundry Box +#Line2 + + +1 + +-1.85781575413032,51.3390057218544 +-1.85753740646996,51.4289128805614 +-1.7137152927616,51.4286499731401 +-1.71427516120712,51.3387436533931 +-1.85781575413032,51.3390057218544 + + + + + +SU16 +#labelStyle + +-1.7858286975995,51.3838547338014 + + + + +SU17 + +Small Square SU17 Boundry Box +#Line2 + + +1 + +-1.85753737856031,51.4289218721069 +-1.85725758592527,51.5188276413893 +-1.71315246199907,51.51856389164 +-1.71371523662416,51.4286589646016 +-1.85753737856031,51.4289218721069 + + + + + +SU17 +#labelStyle + +-1.78540844550911,51.4737698393102 + + + + +SU18 + +Small Square SU18 Boundry Box +#Line2 + + +1 + +-1.85725755787063,51.5188366327959 +-1.85697631034223,51.6087410137005 +-1.71258670481682,51.6084764183155 +-1.71315240556999,51.5185728829622 +-1.85725755787063,51.5188366327959 + + + + + +SU18 +#labelStyle + +-1.7849860100824,51.5636835544058 + + + + +SU19 + +Small Square SU19 Boundry Box +#Line2 + + +1 + +-1.85697628214157,51.6087500049683 +-1.85669356970751,51.6986529985557 +-1.71201800107605,51.6983875542033 +-1.7125866480941,51.6084854094986 +-1.85697628214157,51.6087500049683 + + + + + +SU19 +#labelStyle + +-1.78456137631327,51.6535958801323 + + + + +SU20 + +Small Square SU20 Boundry Box +#Line2 + + +1 + +-1.71756057740644,50.7992224463631 +-1.71701771009559,50.8891371429958 +-1.57486610665823,50.8887061135064 +-1.57568191428898,50.7987927869944 +-1.71756057740644,50.7992224463631 + + + + + +SU20 +#labelStyle + +-1.64627444138189,50.8439908736505 + + + + +SU21 + +Small Square SU21 Boundry Box +#Line2 + + +1 + +-1.7170176556642,50.8891461352948 +-1.71647199789019,50.9790594333584 +-1.57404602398624,50.9786270283512 +-1.5748660248601,50.8887151056681 +-1.7170176556642,50.8891461352948 + + + + + +SU21 +#labelStyle + +-1.6455932760092,50.9339132455262 + + + + +SU22 + +Small Square SU22 Boundry Box +#Line2 + + +1 + +-1.71647194317879,50.9790684255176 +-1.71592347607727,51.0689803259555 +-1.57322171930372,51.0685465401326 +-1.57404594176733,50.9786360203725 +-1.71647194317879,50.9790684255176 + + + + + +SU22 +#labelStyle + +-1.64490860655866,51.0238342167882 + + + + +SU23 + +Small Square SU23 Boundry Box +#Line2 + + +1 + +-1.71592342108396,51.0689893179748 +-1.71537212561488,51.1588998217436 +-1.5723931639972,51.1584646497695 +-1.57322163666118,51.0685555320136 +-1.71592342108396,51.0689893179748 + + + + + +SU23 +#labelStyle + +-1.64422040931198,51.1137537883699 + + + + +SU24 + +Small Square SU24 Boundry Box +#Line2 + + +1 + +-1.71537207033775,51.1589088136234 +-1.71481792728333,51.248817921693 +-1.57156032918614,51.2483813581939 +-1.57239308092815,51.1584736415104 +-1.71537207033775,51.1589088136234 + + + + + +SU24 +#labelStyle + +-1.64352866032976,51.2036719612175 + + + + +SU25 + +Small Square SU25 Boundry Box +#Line2 + + +1 + +-1.71481787172044,51.2488269134333 +-1.71426086168314,51.3387346267872 +-1.57072318571983,51.3382966663508 +-1.57156024568769,51.2483903497947 +-1.71481787172044,51.2488269134333 + + + + + +SU25 +#labelStyle + +-1.64283333544888,51.2935887362906 + + + + +SU26 + +Small Square SU26 Boundry Box +#Line2 + + +1 + +-1.71426080583255,51.338743618388 +-1.71370090923295,51.4286499380229 +-1.5698817041743,51.4282105751981 +-1.57072310178905,51.3383056578116 +-1.71426080583255,51.338743618388 + + + + + +SU26 +#labelStyle + +-1.64213441027994,51.3835041145619 + + + + +SU27 + +Small Square SU27 Boundry Box +#Line2 + + +1 + +-1.71370085309269,51.4286589294844 +-1.7131380501674,51.5185638564103 +-1.56903585484906,51.5181230857069 +-1.56988161980823,51.4282195665191 +-1.71370085309269,51.4286589294844 + + + + + +SU27 +#labelStyle + +-1.64143186020464,51.4734180970175 + + + + +SU28 + +Small Square SU28 Boundry Box +#Line2 + + +1 + +-1.71313799373549,51.5185728477325 +-1.71257226453499,51.6084763829728 +-1.56818560776396,51.6080341988609 +-1.56903577004472,51.5181320768881 +-1.71313799373549,51.5185728477325 + + + + + +SU28 +#labelStyle + +-1.64072566037308,51.5633306846562 + + + + +SU29 + +Small Square SU29 Boundry Box +#Line2 + + +1 + +-1.71257220780941,51.6084853741559 +-1.71200353219589,51.6983875187472 +-1.56733093265588,51.6979439156571 +-1.56818552251834,51.6080431899024 +-1.71257220780941,51.6084853741559 + + + + + +SU29 +#labelStyle + +-1.64001578570107,51.6532418784905 + + + + +SU30 + +Small Square SU30 Boundry Box +#Line2 + + +1 + +-1.57566772518892,50.7987927353957 +-1.57485189026265,50.8887060617432 +-1.43270448246791,50.8881019344121 +-1.4337932296222,50.7981905285016 +-1.57566772518892,50.7987927353957 + + + + + +SU30 +#labelStyle + +-1.50424718271401,50.8434740567591 + + + + +SU31 + +Small Square SU31 Boundry Box +#Line2 + + +1 + +-1.57485180846178,50.8887150539049 +-1.57403178015213,50.9786269764228 +-1.4316100302465,50.9780209210894 +-1.43270437330312,50.8881109263814 +-1.57485180846178,50.8887150539049 + + + + + +SU31 +#labelStyle + +-1.50329233494016,50.9333947798363 + + + + +SU32 + +Small Square SU32 Boundry Box +#Line2 + + +1 + +-1.57403169793046,50.9786359684441 +-1.57320744788983,51.0685464880384 +-1.43050994373437,51.0679384972765 +-1.43160992052017,50.9780299129176 +-1.57403169793046,50.9786359684441 + + + + + +SU32 +#labelStyle + +-1.50233257541664,51.0233140959597 + + + + +SU33 + +Small Square SU33 Boundry Box +#Line2 + + +1 + +-1.57320736524453,51.0685554799194 +-1.57237886486134,51.1584645975088 +-1.42940418474862,51.1578546638395 +-1.4305098334427,51.0679474889637 +-1.57320736524453,51.0685554799194 + + + + + +SU33 +#labelStyle + +-1.50136787089836,51.1132320060172 + + + + +SU34 + +Small Square SU34 Boundry Box +#Line2 + + +1 + +-1.57237878178952,51.1584735892496 +-1.57154600218514,51.248381305766 +-1.42829271474997,51.2477694216567 +-1.42940407388778,51.1578636553857 +-1.57237878178952,51.1584735892496 + + + + + +SU34 +#labelStyle + +-1.50039818783026,51.2031485109096 + + + + +SU35 + +Small Square SU35 Boundry Box +#Line2 + + +1 + +-1.5715459186839,51.2483902973668 +-1.57070883070956,51.3382966137552 +-1.42717549483866,51.3376827716194 +-1.42829260331609,51.2477784130621 +-1.5715459186839,51.2483902973668 + + + + + +SU35 +#labelStyle + +-1.49942349234377,51.2930636115505 + + + + +SU36 + +Small Square SU36 Boundry Box +#Line2 + + +1 + +-1.57070874677597,51.338305605216 +-1.56986732100961,51.4282105224341 +-1.42605248575028,51.4275947146309 +-1.42717538282784,51.337691762884 +-1.57070874677597,51.338305605216 + + + + + +SU36 +#labelStyle + +-1.49844375025318,51.3829773088662 + + + + +SU37 + +Small Square SU37 Boundry Box +#Line2 + + +1 + +-1.56986723664072,51.428219513755 +-1.56902144338385,51.5181230327738 +-1.42492364785146,51.5175052516074 +-1.42605237315856,51.4276037057549 +-1.56986723664072,51.428219513755 + + + + + +SU37 +#labelStyle + +-1.49745892705189,51.4728896037958 + + + + +SU38 + +Small Square SU38 Boundry Box +#Line2 + + +1 + +-1.56902135857668,51.5181320239549 +-1.56817116785111,51.6080341457581 +-1.42378894113567,51.6074143834771 +-1.42492353467487,51.5175142425908 +-1.56902135857668,51.5181320239549 + + + + + +SU38 +#labelStyle + +-1.49646898790875,51.5628004972909 + + + + +SU39 + +Small Square SU39 Boundry Box +#Line2 + + +1 + +-1.56817108260263,51.6080431367996 +-1.56731646414725,51.6979438623839 +-1.42264832521878,51.6973221111811 +-1.42378882737019,51.6074233743201 +-1.56817108260263,51.6080431367996 + + + + + +SU39 +#labelStyle + +-1.49547389766422,51.6527099903162 + + + + +SU40 + +Small Square SU40 Boundry Box +#Line2 + + +1 + +-1.4337790410086,50.7981904596471 +-1.43269026656209,50.8881018653381 +-1.29054845705503,50.8873246542358 +-1.29191010624585,50.797415719211 +-1.4337790410086,50.7981904596471 + + + + + +SU40 +#labelStyle + +-1.36222480517702,50.8427844066486 + + + + +SU41 + +Small Square SU41 Boundry Box +#Line2 + + +1 + +-1.43269015739455,50.8881108573072 +-1.43159578690545,50.9780208517949 +-1.28917967312327,50.9772411602938 +-1.29054832052734,50.8873336459575 +-1.43269015739455,50.8881108573072 + + + + + +SU41 +#labelStyle + +-1.36099630794922,50.9327029294866 + + + + +SU42 + +Small Square SU42 Boundry Box +#Line2 + + +1 + +-1.43159567717637,50.978029843623 +-1.43049567281689,51.0679384277607 +-1.28780384297294,51.0671562463072 +-1.28917953589332,50.9772501518734 +-1.43159567717637,50.978029843623 + + + + + +SU42 +#labelStyle + +-1.35976149160638,51.02262003691 + + + + +SU43 + +Small Square SU43 Boundry Box +#Line2 + + +1 + +-1.43049556252246,51.0679474194478 +-1.42938988611253,51.1578545941015 +-1.28642091885579,51.1570699130737 +-1.28780370503599,51.0671652377448 +-1.43049556252246,51.0679474194478 + + + + + +SU43 +#labelStyle + +-1.35852031338014,51.1125357297463 + + + + +SU44 + +Small Square SU44 Boundry Box +#Line2 + + +1 + +-1.42938977524892,51.1578635856477 +-1.42827838825215,51.2477693516957 +-1.28503085257794,51.2469821614032 +-1.28642078020704,51.1570789043694 +-1.42938977524892,51.1578635856477 + + + + + +SU44 +#labelStyle + +-1.35727273010342,51.2024500088357 + + + + +SU45 + +Small Square SU45 Boundry Box +#Line2 + + +1 + +-1.42827827681548,51.2477783431011 +-1.427161140335,51.3376827014345 +-1.28363359549474,51.3368929921173 +-1.28503071321255,51.2469911525571 +-1.42827827681548,51.2477783431011 + + + + + +SU45 +#labelStyle + +-1.3560186982058,51.29236287503 + + + + +SU46 + +Small Square SU46 Boundry Box +#Line2 + + +1 + +-1.42716102832137,51.3376916926991 +-1.42603810309567,51.4275946442213 +-1.28222909850558,51.4268024060495 +-1.28363345540782,51.3369019831295 +-1.42716102832137,51.3376916926991 + + + + + +SU46 +#labelStyle + +-1.35475817370892,51.3822743291939 + + + + +SU47 + +Small Square SU47 Boundry Box +#Line2 + + +1 + +-1.42603799050114,51.4276036353453 +-1.42490923689984,51.5175051809721 +-1.28081731204854,51.5167104040451 +-1.2822289576922,51.4268113969201 +-1.42603799050114,51.4276036353453 + + + + + +SU47 +#labelStyle + +-1.35349111222166,51.4721843722037 + + + + +SU48 + +Small Square SU48 Boundry Box +#Line2 + + +1 + +-1.42490912372041,51.5175141719555 +-1.42377450173994,51.6074143126154 +-1.27939818609503,51.6066169869612 +-1.28081717050372,51.5167193947741 +-1.42490912372041,51.5175141719555 + + + + + +SU48 +#labelStyle + +-1.35221746893539,51.5620930049483 + + + + +SU49 + +Small Square SU49 Boundry Box +#Line2 + + +1 + +-1.4237743879716,51.6074233034583 +-1.42263385723083,51.6973220400919 +-1.27797167014436,51.6965221556667 +-1.27939804381375,51.6066259775488 +-1.4237743879716,51.6074233034583 + + + + + +SU49 +#labelStyle + +-1.35093719861906,51.6520002283282 + + + + +SU50 + +Small Square SU50 Boundry Box +#Line2 + + +1 + +-1.29189591825805,50.7974156331022 +-1.29053424177922,50.8873245678525 +-1.14839943285671,50.886374291079 +-1.15003393720824,50.7964683771118 +-1.29189591825805,50.7974156331022 + + + + + +SU50 +#labelStyle + +-1.22020870668721,50.841921939356 + + + + +SU51 + +Small Square SU51 Boundry Box +#Line2 + + +1 + +-1.29053410524878,50.8873335595741 +-1.28916543041649,50.9772410736348 +-1.14675636453064,50.9762877641791 +-1.14839926897083,50.8863832824979 +-1.29053410524878,50.8873335595741 + + + + + +SU51 +#labelStyle + +-1.21870660238801,50.9318377106143 + + + + +SU52 + +Small Square SU52 Boundry Box +#Line2 + + +1 + +-1.28916529318379,50.9772500652143 +-1.28778957269403,51.0671561593714 +-1.14510483849874,51.0661998055532 +-1.14675619980183,50.9762967554547 +-1.28916529318379,50.9772500652143 + + + + + +SU52 +#labelStyle + +-1.21719677200264,51.0217520558774 + + + + +SU53 + +Small Square SU53 Boundry Box +#Line2 + + +1 + +-1.28778943475432,51.067165150809 +-1.28640662086261,51.1570698258601 +-1.14344479745246,51.1561104159161 +-1.1451046729213,51.0662087966858 +-1.28778943475432,51.067165150809 + + + + + +SU53 +#labelStyle + +-1.21567916324399,51.1116649758975 + + + + +SU54 + +Small Square SU54 Boundry Box +#Line2 + + +1 + +-1.28640648221109,51.1570788171558 +-1.2850165267274,51.2469820739107 +-1.14177618354849,51.2460195959932 +-1.14344463102064,51.1561194069056 +-1.28640648221109,51.1570788171558 + + + + + +SU54 +#labelStyle + +-1.21415372333754,51.2015764714384 + + + + +SU55 + +Small Square SU55 Boundry Box +#Line2 + + +1 + +-1.28501638735922,51.2469910650646 +-1.28361924164278,51.3368929043448 +-1.14009893840253,51.3359273465216 +-1.14177601625647,51.2460285868397 +-1.28501638735922,51.2469910650646 + + + + + +SU55 +#labelStyle + +-1.21262039901574,51.2914865432756 + + + + +SU56 + +Small Square SU56 Boundry Box +#Line2 + + +1 + +-1.28361910155305,51.336901895357 +-1.28221471650714,51.4268023179959 +-1.13841300308307,51.4258336682491 +-1.14009877024445,51.3359363372252 +-1.28361910155305,51.336901895357 + + + + + +SU56 +#labelStyle + +-1.21107913651229,51.381395192196 + + + + +SU57 + +Small Square SU57 Boundry Box +#Line2 + + +1 + +-1.28221457569094,51.4268113088665 +-1.28080290175758,51.5167103157094 +-1.13671831810499,51.5157385619344 +-1.138412834053,51.4258426588098 +-1.28221457569094,51.4268113088665 + + + + + +SU57 +#labelStyle + +-1.20952988155638,51.471302418998 + + + + +SU58 + +Small Square SU58 Boundry Box +#Line2 + + +1 + +-1.28080276020992,51.5167193064384 +-1.27938374736451,51.6066168983422 +-1.13501482342315,51.6056420283477 +-1.13671814819697,51.5157475523524 +-1.28080276020992,51.5167193064384 + + + + + +SU58 +#labelStyle + +-1.20797257936674,51.5612082244912 + + + + +SU59 + +Small Square SU59 Boundry Box +#Line2 + + +1 + +-1.27938360508037,51.6066258889298 +-1.27795720282621,51.6965220667633 +-1.13330245842577,51.6955440682697 +-1.13501465263113,51.605651018623 +-1.27938360508037,51.6066258889298 + + + + + +SU59 +#labelStyle + +-1.20640717464579,51.6511126094968 + + + + +SU60 + +Small Square SU60 Boundry Box +#Line2 + + +1 + +-1.15001974998552,50.7964682737508 +-1.14838521835113,50.8863741873883 +-1.00625881187465,50.8852508670712 +-1.00816611512716,50.7953485241964 +-1.15001974998552,50.7964682737508 + + + + + +SU60 +#labelStyle + +-1.07820028477123,50.840886674935 + + + + +SU61 + +Small Square SU61 Boundry Box +#Line2 + + +1 + +-1.14838505446251,50.8863831788072 +-1.1467421225993,50.9762876601575 +-1.00434151594228,50.975160755013 +-1.00625862063623,50.8852598581322 +-1.14838505446251,50.8863831788072 + + + + + +SU61 +#labelStyle + +-1.07642462521409,50.9307991433984 + + + + +SU62 + +Small Square SU62 Boundry Box +#Line2 + + +1 + +-1.14674195786774,50.9762966514332 +-1.14509056900052,51.0661997011995 +-1.00241435134554,51.0650691974222 +-1.00434132372032,50.9751697459295 +-1.14674195786774,50.9762966514332 + + + + + +SU62 +#labelStyle + +-1.07463983308154,51.0207101731672 + + + + +SU63 + +Small Square SU63 Boundry Box +#Line2 + + +1 + +-1.14509040342032,51.066208692332 +-1.14343050024529,51.1561103112289 +-1.00047725122169,51.1549761949147 +-1.00241415813337,51.0650781881942 +-1.14509040342032,51.066208692332 + + + + + +SU63 +#labelStyle + +-1.07284584657327,51.1106197649032 + + + + +SU64 + +Small Square SU64 Boundry Box +#Line2 + + +1 + +-1.14343033381069,51.1561193022183 +-1.1417618584893,51.2460194909713 +-0.998530148084148,51.244881748117 +-1.0004770570126,51.1549851855422 +-1.14343033381069,51.1561193022183 + + + + + +SU64 +#labelStyle + +-1.07104260331298,51.200527919279 + + + + +SU65 + +Small Square SU65 Boundry Box +#Line2 + + +1 + +-1.14176169119449,51.2460284818178 +-1.14008458534732,51.3359272411636 +-0.996572973815267,51.3347858576657 +-0.998529952871368,51.2448907386002 +-1.14176169119449,51.2460284818178 + + + + + +SU65 +#labelStyle + +-1.06923004034168,51.290434636978 + + + + +SU66 + +Small Square SU66 Boundry Box +#Line2 + + +1 + +-1.14008441718643,51.3359362318672 +-1.13839862188683,51.4258335625536 +-0.994605659659001,51.4246885242074 +-0.996572777591947,51.3347948480045 +-1.14008441718643,51.3359362318672 + + + + + +SU66 +#labelStyle + +-1.06740809411095,51.380339918694 + + + + +SU67 + +Small Square SU67 Boundry Box +#Line2 + + +1 + +-1.13839845285395,51.4258425531144 +-1.13670390862175,51.5157384559004 +-0.992628136213492,51.5145897483989 +-0.994605462418232,51.4246975144019 +-1.13839845285395,51.4258425531144 + + + + + +SU67 +#labelStyle + +-1.06557670047611,51.4702437651316 + + + + +SU68 + +Small Square SU68 Boundry Box +#Line2 + + +1 + +-1.13670373871089,51.5157474463183 +-1.13500038550589,51.6056419219736 +-0.990640333423545,51.604489530907 +-0.992627937948303,51.5145987384492 +-1.13670373871089,51.5157474463183 + + + + + +SU68 +#labelStyle + +-1.06373579468928,51.5601461770058 + + + + +SU69 + +Small Square SU69 Boundry Box +#Line2 + + +1 + +-1.13500021471102,51.6056509122489 +-1.1332879919265,51.6955439615542 +-0.988642180572994,51.6943878724087 +-0.990640134126896,51.6044985208132 +-1.13500021471102,51.6056509122489 + + + + + +SU69 +#labelStyle + +-1.06188531139232,51.6500471550423 + + + + +SU70 + +Small Square SU70 Boundry Box +#Line2 + + +1 + +-1.00815192880876,50.7953484035856 +-1.00624459827948,50.8852507460757 +-0.864127995588023,50.8839544083686 +-0.866308032103865,50.7940561864591 +-1.00815192880876,50.7953484035856 + + + + + +SU70 +#labelStyle + +-0.936200936479466,50.8396786374544 + + + + +SU71 + +Small Square SU71 Boundry Box +#Line2 + + +1 + +-1.00624440703833,50.8852597371367 +-1.00432727492751,50.9751606336314 +-0.861936538303318,50.9738601591155 +-0.864127777003659,50.8839633990168 +-1.00624440703833,50.8852597371367 + + + + + +SU71 +#labelStyle + +-0.934151782903259,50.9295872520577 + + + + +SU72 + +Small Square SU72 Boundry Box +#Line2 + + +1 + +-1.00432708270279,50.9751696245479 +-1.00240008277009,51.065069075653 +-0.859733802012463,51.0637644483987 +-0.86193631859485,50.9738691496175 +-1.00432708270279,50.9751696245479 + + + + + +SU72 +#labelStyle + +-0.932092090831889,51.0194944131497 + + + + +SU73 + +Small Square SU73 Boundry Box +#Line2 + + +1 + +-1.00239988955516,51.0650780664249 +-1.00046295494355,51.1549760727564 +-0.857519710305676,51.1536672767207 +-0.859733581172286,51.0637734387545 +-1.00239988955516,51.0650780664249 + + + + + +SU73 +#labelStyle + +-0.930021788958446,51.1094001212867 + + + + +SU74 + +Small Square SU74 Boundry Box +#Line2 + + +1 + +-1.00046276073169,51.1549850633839 +-0.998515823960332,51.2448816255681 +-0.855294186060334,51.2435686445933 +-0.857519488326113,51.1536762669305 +-1.00046276073169,51.1549850633839 + + + + + +SU74 +#labelStyle + +-0.927940805311472,51.1993043770349 + + + + +SU75 + +Small Square SU75 Boundry Box +#Line2 + + +1 + +-0.99851562874476,51.2448906160512 +-0.996558621701813,51.3347857347246 +-0.853057151432734,51.3334685525374 +-0.855293962933636,51.243577634657 +-0.99851562874476,51.2448906160512 + + + + + +SU75 +#labelStyle + +-0.925849067247292,51.2892071809701 + + + + +SU76 + +Small Square SU76 Boundry Box +#Line2 + + +1 + +-0.996558425475687,51.3347947250634 +-0.994591279410969,51.4246884008726 +-0.850808527849725,51.423367001083 +-0.853056927151081,51.3334775424552 +-0.996558425475687,51.3347947250634 + + + + + +SU76 +#labelStyle + +-0.923746501442222,51.3791085336777 + + + + +SU77 + +Small Square SU77 Boundry Box +#Line2 + + +1 + +-0.994591082167379,51.4246973910671 +-0.99261372768495,51.5145896246689 +-0.848548236000232,51.513263990769 +-0.850808302405223,51.4233759908549 +-0.994591082167379,51.4246973910671 + + + + + +SU77 +#labelStyle + +-0.921633033884674,51.4690084357528 + + + + +SU78 + +Small Square SU78 Boundry Box +#Line2 + + +1 + +-0.992613529416925,51.5145986147192 +-0.990625896467561,51.6044894067803 +-0.846276195826657,51.6031595221435 +-0.848548009384913,51.5132729803951 +-0.992613529416925,51.5145986147192 + + + + + +SU78 +#labelStyle + +-0.919508589867152,51.5589068878 + + + + +SU79 + +Small Square SU79 Boundry Box +#Line2 + + +1 + +-0.990625697168061,51.6044983966865 +-0.988627715041624,51.6943877478837 +-0.843992326516161,51.6930535957632 +-0.846275968032477,51.6031685116238 +-0.990625697168061,51.6044983966865 + + + + + +SU79 +#labelStyle + +-0.917373093978131,51.6488038904334 + + + + +SU80 + +Small Square SU80 Boundry Box +#Line2 + + +1 + +-0.86629384682896,50.7940560486012 +-0.864113783043386,50.8839542700711 +-0.722008384866466,50.8824849451521 +-0.724461079636954,50.7925913938935 +-0.86629384682896,50.7940560486012 + + + + + +SU80 +#labelStyle + +-0.794212058299493,50.8382978549957 + + + + +SU81 + +Small Square SU81 Boundry Box +#Line2 + + +1 + +-0.864113564456289,50.8839632607192 +-0.861922298346174,50.9738600203767 +-0.7195428419423,50.9723860068558 +-0.722008138943698,50.8824939353322 +-0.864113564456289,50.8839632607192 + + + + + +SU81 +#labelStyle + +-0.79188948136202,50.9282020648492 + + + + +SU82 + +Small Square SU82 Boundry Box +#Line2 + + +1 + +-0.861922078634958,50.9738690108786 +-0.859719534501812,51.0637643092168 +-0.717064610374961,51.0622855890423 +-0.719542594754938,50.972394996888 +-0.861922078634958,50.9738690108786 + + + + + +SU82 +#labelStyle + +-0.789554960666649,51.0181048042588 + + + + +SU83 + +Small Square SU83 Boundry Box +#Line2 + + +1 + +-0.859719313658872,51.0637732995727 +-0.857505415099563,51.1536671370941 +-0.714573604215746,51.1521836920853 +-0.71706436191445,51.0622945789265 +-0.859719313658872,51.0637732995727 + + + + + +SU83 +#labelStyle + +-0.787208415407428,51.1080060736603 + + + + +SU84 + +Small Square SU84 Boundry Box +#Line2 + + +1 + +-0.857505193117223,51.1536761273038 +-0.855279863015842,51.2435685045202 +-0.712069736714241,51.242080316367 +-0.714573354473451,51.1521926818217 +-0.857505193117223,51.1536761273038 + + + + + +SU84 +#labelStyle + +-0.784849764025442,51.1979058734982 + + + + +SU85 + +Small Square SU85 Boundry Box +#Line2 + + +1 + +-0.855279639886353,51.243577494584 +-0.853042800405972,51.3334684120162 +-0.709552920309054,51.3319754622769 +-0.712069485681447,51.2420893059554 +-0.855279639886353,51.243577494584 + + + + + +SU85 +#labelStyle + +-0.782478924200115,51.2878042042254 + + + + +SU86 + +Small Square SU86 Boundry Box +#Line2 + + +1 + +-0.853042576121514,51.3334774019339 +-0.850794148695822,51.4233668601118 +-0.707023066618407,51.421869130213 +-0.709552667976964,51.3319844517176 +-0.853042576121514,51.3334774019339 + + + + + +SU86 +#labelStyle + +-0.780095812840386,51.3777010663035 + + + + +SU87 + +Small Square SU87 Boundry Box +#Line2 + + +1 + +-0.850793923248499,51.4233758498837 +-0.848533828573325,51.5132638493462 +-0.704480086430605,51.5117613205807 +-0.707022812978141,51.4218781195059 +-0.850793923248499,51.4233758498837 + + + + + +SU87 +#labelStyle + +-0.777700346075766,51.4675964602026 + + + + +SU88 + +Small Square SU88 Boundry Box +#Line2 + + +1 + +-0.848533601955171,51.5132728389722 +-0.846261759979885,51.6031593802672 +-0.701923889694367,51.6016520337933 +-0.704479831473201,51.5117703097259 +-0.848533601955171,51.5132728389722 + + + + + +SU88 +#labelStyle + +-0.77529243924727,51.5574903864009 + + + + +SU89 + +Small Square SU89 Boundry Box +#Line2 + + +1 + +-0.846261532182856,51.6031683697474 +-0.843977862101653,51.6930534534317 +-0.699354385509021,51.6915412702716 +-0.701923633410777,51.6016610227908 +-0.846261532182856,51.6031683697474 + + + + + +SU89 +#labelStyle + +-0.772872006898215,51.6473828453852 + + + + +SU90 + +Small Square SU90 Boundry Box +#Line2 + + +1 + +-0.724446895544664,50.7925912387917 +-0.721994173512414,50.8824847895558 +-0.579901379883153,50.8808425116245 +-0.582626648536493,50.7909541804906 +-0.724446895544664,50.7925912387917 + + + + + +SU90 +#labelStyle + +-0.652235046069579,50.8367443596516 + + + + +SU91 + +Small Square SU91 Boundry Box +#Line2 + + +1 + +-0.721993927586913,50.8824937797359 +-0.719528603183785,50.972385850763 +-0.5771618364833,50.9707383326506 +-0.579901106630457,50.8808515012816 +-0.721993927586913,50.8824937797359 + + + + + +SU91 +#labelStyle + +-0.649639125840102,50.9266436140658 + + + + +SU92 + +Small Square SU92 Boundry Box +#Line2 + + +1 + +-0.719528355993675,50.9723948407951 +-0.717050344071058,51.0622854324511 +-0.574408195595857,51.0606326539852 +-0.577161561825599,50.9707473221577 +-0.719528355993675,50.9723948407951 + + + + + +SU92 +#labelStyle + +-0.647029857334418,51.0165413789895 + + + + +SU93 + +Small Square SU93 Boundry Box +#Line2 + + +1 + +-0.717050095607785,51.0622944223353 +-0.714559310224575,51.1521835349938 +-0.571640361742345,51.1505254758584 +-0.574407919523648,51.0606416433424 +-0.717050095607785,51.0622944223353 + + + + + +SU93 +#labelStyle + +-0.644407150256116,51.1064376547227 + + + + +SU94 + +Small Square SU94 Boundry Box +#Line2 + + +1 + +-0.714559060479505,51.1521925247301 +-0.712055414892962,51.2420801587731 +-0.568858238553834,51.240416798507 +-0.571640084246036,51.1505344650656 +-0.714559060479505,51.1521925247301 + + + + + +SU94 +#labelStyle + +-0.641770913467521,51.1963324415731 + + + + +SU95 + +Small Square SU95 Boundry Box +#Line2 + + +1 + +-0.712055163857378,51.2420891483616 +-0.709538570513853,51.3319753041789 +-0.566061728760646,51.3303066221745 +-0.568857959623742,51.2404257875643 +-0.712055163857378,51.2420891483616 + + + + + +SU95 +#labelStyle + +-0.639121054979978,51.2862257398556 + + + + +SU96 + +Small Square SU96 Boundry Box +#Line2 + + +1 + +-0.709538318178959,51.3319842936195 +-0.707008688704492,51.4218689716088 +-0.56325073418191,51.4201949471108 +-0.566061448386999,51.3303156110819 +-0.709538318178959,51.3319842936195 + + + + + +SU96 +#labelStyle + +-0.636457481943998,51.3761175498923 + + + + +SU97 + +Small Square SU97 Boundry Box +#Line2 + + +1 + +-0.707008435061407,51.4218779609017 +-0.704465680252194,51.5117611614684 +-0.56042515571498,51.5100817735723 +-0.563250452354844,51.4202039358684 +-0.707008435061407,51.4218779609017 + + + + + +SU97 +#labelStyle + +-0.633780100639257,51.4660078720127 + + + + +SU98 + +Small Square SU98 Boundry Box +#Line2 + + +1 + +-0.704465425291955,51.5117701506135 +-0.701909455104677,51.6016518741708 +-0.557584893324694,51.5999671018218 +-0.560424872424539,51.5100907621801 +-0.704465425291955,51.5117701506135 + + + + + +SU98 +#labelStyle + +-0.63108881646448,51.555896706553 + + + + +SU99 + +Small Square SU99 Boundry Box +#Line2 + + +1 + +-0.701909198818238,51.6016608631682 +-0.699339922360263,51.6915411101369 +-0.554729846032492,51.6898509321282 +-0.557584608560827,51.5999760902797 +-0.701909198818238,51.6016608631682 + + + + + +SU99 +#labelStyle + +-0.628383533927154,51.6457840538568 + + + + + +SV + +Large Square SV Boundry Box +#Line1 + + +1 + +-7.55714936669685,49.7668205022273 +-7.66243549865429,50.6618454070609 +-6.25202227293934,50.7219753129924 +-6.1727407760127,49.8250798383526 +-7.55714936669685,49.7668205022273 + + + + + +SV00 + +Small Square SV00 Boundry Box +#Line2 + + +1 + +-7.55714936669685,49.7668205022273 +-7.5674402226819,49.856328382172 +-7.42896953503859,49.862915636873 +-7.41893151327764,49.7733870467737 +-7.55714936669685,49.7668205022273 + + + + + +SV00 +#labelStyle + +-7.49311624961817,49.8148886245623 + + + + +SV01 + +Small Square SV01 Boundry Box +#Line2 + + +1 + +-7.56744125445063,49.8563373337073 +-7.57778382148015,49.9458422528457 +-7.43905902112681,49.9524502957044 +-7.42897054145884,49.8629245904833 +-7.56744125445063,49.8563373337073 + + + + + +SV01 +#labelStyle + +-7.5033072397022,49.9044144170024 + + + + +SV02 + +Small Square SV02 Boundry Box +#Line2 + + +1 + +-7.57778485843731,49.9458512040844 +-7.58817947363043,50.0353531524669 +-7.4491992993157,50.0419820599411 +-7.43906003260976,49.9524592490257 +-7.57778485843731,49.9458512040844 + + + + + +SV02 +#labelStyle + +-7.51354948590386,49.9939372817051 + + + + +SV03 + +Small Square SV03 Boundry Box +#Line2 + + +1 + +-7.58818051580989,50.035362103408 +-7.59862751931742,50.1248610710033 +-7.45939070173104,50.1315109200773 +-7.44920031589442,50.0419910129725 +-7.58818051580989,50.035362103408 + + + + + +SV03 +#labelStyle + +-7.52384332287975,50.083457208943 + + + + +SV04 + +Small Square SV04 Boundry Box +#Line2 + + +1 + +-7.59862856675334,50.1248700216457 +-7.60912830179136,50.2143659983396 +-7.46963356349358,50.2210368665291 +-7.4593917234389,50.1315198728178 +-7.59862856675334,50.1248700216457 + + + + + +SV04 +#labelStyle + +-7.53418908830014,50.1729741889084 + + + + +SV05 + +Small Square SV05 Boundry Box +#Line2 + + +1 + +-7.60912935451823,50.2143749486825 +-7.61968216740228,50.3038679242771 +-7.47992822275237,50.3105598896335 +-7.46963459036423,50.2210458189778 +-7.60912935451823,50.2143749486825 + + + + + +SV05 +#labelStyle + +-7.54458712288245,50.2624882117128 + + + + +SV06 + +Small Square SV06 Boundry Box +#Line2 + + +1 + +-7.61968322545488,50.3038768743193 +-7.63028946563442,50.3933668385317 +-7.49027502071855,50.4000799796471 +-7.47992925481977,50.3105688417893 +-7.61968322545488,50.3038768743193 + + + + + +SV06 +#labelStyle + +-7.55503777042519,50.3519992673855 + + + + +SV07 + +Small Square SV07 Boundry Box +#Line2 + + +1 + +-7.63029052904788,50.3933757882722 +-7.64095054914141,50.4828627307335 +-7.50067430169963,50.4895971267454 +-7.49027605801699,50.4000889315091 +-7.63029052904788,50.3933757882722 + + + + + +SV07 +#labelStyle + +-7.56554137784238,50.4415073458729 + + + + +SV08 + +Small Square SV08 Boundry Box +#Line2 + + +1 + +-7.64095161795113,50.4828716801712 +-7.65166577378164,50.5723555904251 +-7.51112641313418,50.5791113210212 +-7.5006753442637,50.4896060783126 +-7.64095161795113,50.4828716801712 + + + + + +SV08 +#labelStyle + +-7.57609829519844,50.5310124370369 + + + + +SV09 + +Small Square SV09 Boundry Box +#Line2 + + +1 + +-7.65166684802337,50.572364539559 +-7.66243549865429,50.6618454070609 +-7.52163170562702,50.6686225524842 +-7.51112746099878,50.5791202722927 +-7.65166684802337,50.572364539559 + + + + + +SV09 +#labelStyle + +-7.58670887574352,50.6205145306542 + + + + +SV10 + +Small Square SV10 Boundry Box +#Line2 + + +1 + +-7.41891768758247,49.7733876952787 +-7.42895568404103,49.8629162874236 +-7.29043454076335,49.8693386956958 +-7.28064970468705,49.7797899062716 +-7.41891768758247,49.7733876952787 + + + + + +SV10 +#labelStyle + +-7.35473297928865,49.8213838802479 + + + + +SV11 + +Small Square SV11 Boundry Box +#Line2 + + +1 + +-7.42895669045875,49.8629252410341 +-7.43904514469885,49.9524509483084 +-7.30026955959128,49.9588936299832 +-7.29043552179982,49.86934765133 +-7.42895669045875,49.8629252410341 + + + + + +SV11 +#labelStyle + +-7.36467029395683,49.9109301680335 + + + + +SV12 + +Small Square SV12 Boundry Box +#Line2 + + +1 + +-7.43904615617925,49.9524599016299 +-7.44918539733105,50.0419827146059 +-7.31015410618057,50.0484457443002 +-7.30027054556442,49.9589025853357 +-7.43904615617925,49.9524599016299 + + + + + +SV12 +#labelStyle + +-7.3746576058862,50.000473603369 + + + + +SV13 + +Small Square SV13 Boundry Box +#Line2 + + +1 + +-7.44918641390721,50.0419916676375 +-7.4593767740626,50.1315115768105 +-7.3200885045644,50.1379950296555 +-7.31015509712264,50.0484546993703 +-7.44918641390721,50.0419916676375 + + + + + +SV13 +#labelStyle + +-7.38469524169231,50.0900141770451 + + + + +SV14 + +Small Square SV14 Boundry Box +#Line2 + + +1 + +-7.45937779576789,50.1315205295512 +-7.46961961001345,50.2210375253385 +-7.33007308169983,50.227541476984 +-7.32008950050796,50.1380039844423 +-7.45937779576789,50.1315205295512 + + + + + +SV14 +#labelStyle + +-7.39478353093382,50.1795518797768 + + + + +SV15 + +Small Square SV15 Boundry Box +#Line2 + + +1 + +-7.46962063688151,50.2210464777873 +-7.47991424333181,50.3105605505267 +-7.34010816750034,50.3170850771463 +-7.3300740826777,50.2275504314865 +-7.46962063688151,50.2210464777873 + + + + + +SV15 +#labelStyle + +-7.40492280614529,50.2690867022032 + + + + +SV16 + +Small Square SV16 Boundry Box +#Line2 + + +1 + +-7.47991527539662,50.3105695026827 +-7.490261015228,50.4000806426319 +-7.35019409486888,50.4066258209269 +-7.34010917354567,50.3170940313636 +-7.47991527539662,50.3105695026827 + + + + + +SV16 +#labelStyle + +-7.41511340287037,50.3586186348855 + + + + +SV17 + +Small Square SV17 Boundry Box +#Line2 + + +1 + +-7.49026205252384,50.4000895944941 +-7.5006602700087,50.4895977918296 +-7.36033119973132,50.4961636990341 +-7.35019510601512,50.4066347748581 +-7.49026205252384,50.4000895944941 + + + + + +SV17 +#labelStyle + +-7.42535565969538,50.4481476683069 + + + + +SV18 + +Small Square SV18 Boundry Box +#Line2 + + +1 + +-7.50066131257014,50.489606743397 +-7.51111235511163,50.5791119882127 +-7.37051982107039,50.5856987020983 +-7.36033221601221,50.4961726526783 +-7.50066131257014,50.489606743397 + + + + + +SV18 +#labelStyle + +-7.43564991828348,50.5376737928708 + + + + +SV19 + +Small Square SV19 Boundry Box +#Line2 + + +1 + +-7.51111340297359,50.5791209394844 +-7.52161762114075,50.6686232217909 +-7.38076030096001,50.6752308206712 +-7.37052084251998,50.5857076554545 +-7.51111340297359,50.5791209394844 + + + + + +SV19 +#labelStyle + +-7.44599652340912,50.6271969989002 + + + + +SV20 + +Small Square SV20 Boundry Box +#Line2 + + +1 + +-7.28063587404081,49.7797905383345 +-7.29042068478249,49.8693393297529 +-7.15185034209852,49.8755967482841 +-7.14231900994595,49.7860282733193 +-7.28063587404081,49.7797905383345 + + + + + +SV20 +#labelStyle + +-7.21630003760985,49.8277144577816 + + + + +SV21 + +Small Square SV21 Boundry Box +#Line2 + + +1 + +-7.29042166581642,49.8693482853872 +-7.3002556781475,49.9588942660421 +-7.16143057253553,49.9651714423557 +-7.15185129771923,49.8756057058905 +-7.29042166581642,49.8693482853872 + + + + + +SV21 +#labelStyle + +-7.22598335316813,49.9172807265886 + + + + +SV22 + +Small Square SV22 Boundry Box +#Line2 + + +1 + +-7.30025666411809,49.9589032213948 +-7.3101401991473,50.0484463823682 +-7.17105906350296,50.0547433892332 +-7.1614315329666,49.9651803996879 +-7.30025666411809,49.9589032213948 + + + + + +SV22 +#labelStyle + +-7.23571540422045,50.0068442163942 + + + + +SV23 + +Small Square SV23 Boundry Box +#Line2 + + +1 + +-7.3101411900868,50.0484553374385 +-7.32007457181424,50.1379956697401 +-7.18073613090925,50.1443125804272 +-7.17106002877583,50.0547523462902 +-7.3101411900868,50.0484553374385 + + + + + +SV23 +#labelStyle + +-7.24549650930894,50.0964049184947 + + + + +SV24 + +Small Square SV24 Boundry Box +#Line2 + + +1 + +-7.32007556775522,50.138004624527 +-7.33005912310457,50.2275421190927 +-7.19046209351517,50.2338790073791 +-7.18073710105566,50.1443215372083 +-7.32007556775522,50.138004624527 + + + + + +SV24 +#labelStyle + +-7.25532698984792,50.1859628241161 + + + + +SV25 + +Small Square SV25 Boundry Box +#Line2 + + +1 + +-7.33006012407985,50.2275510735954 +-7.34009418293095,50.3170857212864 +-7.20023727296564,50.3234426614601 +-7.19046306856714,50.2338879638833 +-7.33006012407985,50.2275510735954 + + + + + +SV25 +#labelStyle + +-7.26520717015593,50.275517924412 + + + + +SV26 + +Small Square SV26 Boundry Box +#Line2 + + +1 + +-7.34009518897368,50.317094675504 +-7.35018008419549,50.4066264671062 +-7.21006199382194,50.4130035339705 +-7.20023825295547,50.3234516176866 +-7.34009518897368,50.317094675504 + + + + + +SV26 +#labelStyle + +-7.27513737748809,50.3650702104632 + + + + +SV27 + +Small Square SV27 Boundry Box +#Line2 + + +1 + +-7.35018109533912,50.4066354210377 +-7.36031716282323,50.4961643472602 +-7.21993658359439,50.5025616161382 +-7.21006297878223,50.4130124899183 +-7.35018109533912,50.4066354210377 + + + + + +SV27 +#labelStyle + +-7.28511794206897,50.4546196732768 + + + + +SV28 + +Small Square SV28 Boundry Box +#Line2 + + +1 + +-7.36031817910149,50.4961733009046 +-7.37050575779605,50.5856993523788 +-7.22986137277551,50.5921168991182 +-7.21993757355806,50.5025705718065 +-7.36031817910149,50.4961733009046 + + + + + +SV28 +#labelStyle + +-7.29514919712588,50.544166303785 + + + + +SV29 + +Small Square SV29 Boundry Box +#Line2 + + +1 + +-7.370506779243,50.5857083057353 +-7.380746211187,50.6752314730139 +-7.23983669487349,50.6816693739916 +-7.22986236777574,50.5921258545062 +-7.370506779243,50.5857083057353 + + + + + +SV29 +#labelStyle + +-7.30523147892262,50.6337100928442 + + + + +SV30 + +Small Square SV30 Boundry Box +#Line2 + + +1 + +-7.14230517447361,49.7860288889259 +-7.15183648126014,49.8755973658335 +-7.01321819825379,49.881689654899 +-7.00394068028062,49.7921020090151 +-7.14230517447361,49.7860288889259 + + + + + +SV30 +#labelStyle + +-7.07781867838017,49.8338802160545 + + + + +SV31 + +Small Square SV31 Boundry Box +#Line2 + + +1 + +-7.15183743687832,49.8756063234401 +-7.16141668620252,49.9651720618553 +-7.02254332722344,49.9712835922393 +-7.01321912842759,49.8816986144262 +-7.15183743687832,49.8756063234401 + + + + + +SV31 +#labelStyle + +-7.08724767913799,49.9234659507076 + + + + +SV32 + +Small Square SV32 Boundry Box +#Line2 + + +1 + +-7.16141764663104,49.9651810191877 +-7.17104515154846,50.0547440106901 +-7.03191544667172,50.0608748533066 +-7.02254426208099,49.9712925514993 +-7.16141764663104,49.9651810191877 + + + + + +SV32 +#labelStyle + +-7.09672415078212,50.0130489779622 + + + + +SV33 + +Small Square SV33 Boundry Box +#Line2 + + +1 + +-7.17104611681876,50.0547529677474 +-7.18072219320558,50.1443132038487 +-7.04133486435095,50.150463430101 +-7.03191638624366,50.0608838122986 +-7.17104611681876,50.0547529677474 + + + + + +SV33 +#labelStyle + +-7.10624840374974,50.1026292896087 + + + + +SV34 + +Small Square SV34 Boundry Box +#Line2 + + +1 + +-7.1807231633494,50.14432216063 +-7.19044812993383,50.2338796327725 +-7.0508018907938,50.2400493145577 +-7.04133580866819,50.1504723888242 +-7.1807231633494,50.14432216063 + + + + + +SV34 +#labelStyle + +-7.11582075127886,50.1922068773706 + + + + +SV35 + +Small Square SV35 Boundry Box +#Line2 + + +1 + +-7.19044910498319,50.2338885892769 +-7.20022328337729,50.3234432888327 +-7.06031683934437,50.3296324985464 +-7.05080283988754,50.2400582730113 +-7.19044910498319,50.2338885892769 + + + + + +SV35 +#labelStyle + +-7.12544150943956,50.281781732904 + + + + +SV36 + +Small Square SV36 Boundry Box +#Line2 + + +1 + +-7.20022426336451,50.3234522450594 +-7.21004797809642,50.4130041633297 +-7.06988002618961,50.4192129738696 +-7.06031779324609,50.3296414567295 +-7.20022426336451,50.3234522450594 + + + + + +SV36 +#labelStyle + +-7.13511099716559,50.3713538477965 + + + + +SV37 + +Small Square SV37 Boundry Box +#Line2 + + +1 + +-7.2100489630541,50.4130131192777 +-7.2199225416007,50.5025622474914 +-7.07949177039121,50.5087907322626 +-7.06988098493107,50.4192219317814 +-7.2100489630541,50.4130131192777 + + + + + +SV37 +#labelStyle + +-7.14482953628647,50.4609232135665 + + + + +SV38 + +Small Square SV38 Boundry Box +#Line2 + + +1 + +-7.21992353156173,50.50257120316 +-7.22984730438178,50.5921175324729 +-7.08915239391787,50.5983657653919 +-7.07949273400445,50.5087996899023 +-7.21992353156173,50.50257120316 + + + + + +SV38 +#labelStyle + +-7.15459745155996,50.550489821662 + + + + +SV39 + +Small Square SV39 Boundry Box +#Line2 + + +1 + +-7.22984829937936,50.5921264878612 +-7.23982259994701,50.6816700093554 +-7.09886222167807,50.6879380648547 +-7.08915336243524,50.5983747227586 +-7.22984829937936,50.5921264878612 + + + + + +SV39 +#labelStyle + +-7.16441507070496,50.6400536634596 + + + + +SV40 + +Small Square SV40 Boundry Box +#Line2 + + +1 + +-7.00392684010746,49.7921026081518 +-7.01320433268396,49.8816902559269 +-6.87453937122524,49.8876172794006 +-6.86551596967325,49.7980109780351 +-7.00392684010746,49.7921026081518 + + + + + +SV40 +#labelStyle + +-6.93929015820381,49.8398810175403 + + + + +SV41 + +Small Square SV41 Boundry Box +#Line2 + + +1 + +-7.01320526285521,49.8816992154544 +-7.02252943612807,49.9712841951657 +-6.88360909373621,49.9772299426712 +-6.87454027592175,49.887626240797 +-7.01320526285521,49.8816992154544 + + + + + +SV41 +#labelStyle + +-6.94846453650515,49.929485702034 + + + + +SV42 + +Small Square SV42 Boundry Box +#Line2 + + +1 + +-7.02253037098307,49.971293154426 +-7.03190152992368,50.0608754581385 +-6.89272453392438,50.0668399987279 +-6.88361000298961,49.9772389038073 +-7.02253037098307,49.971293154426 + + + + + +SV42 +#labelStyle + +-6.95768511831514,50.0190877488802 + + + + +SV43 + +Small Square SV43 Boundry Box +#Line2 + + +1 + +-7.03190246949305,50.0608844171307 +-7.04132092182226,50.1504640368454 +-6.90188599135528,50.156447440048 +-6.89272544776447,50.0668489596029 +-7.03190246949305,50.0608844171307 + + + + + +SV43 +#labelStyle + +-6.96695220593518,50.1086871503502 + + + + +SV44 + +Small Square SV44 Boundry Box +#Line2 + + +1 + +-7.04132186613693,50.1504729955688 +-7.05078792235569,50.2400499232218 +-6.91109376830249,50.2460522590479 +-6.90188690981217,50.1564564006611 +-7.04132186613693,50.1504729955688 + + + + + +SV44 +#labelStyle + +-6.97626610439575,50.1982838986529 + + + + +SV45 + +Small Square SV45 Boundry Box +#Line2 + + +1 + +-7.05078887144684,50.2400588816755 +-7.06030284486722,50.3296331091372 +-6.92034816977785,50.3356544480826 +-6.91109469140654,50.2460612193984 +-7.05078887144684,50.2400588816755 + + + + + +SV45 +#labelStyle + +-6.98562712148685,50.2878779859342 + + + + +SV46 + +Small Square SV46 Boundry Box +#Line2 + + +1 + +-7.06030379876633,50.3296420673204 +-7.06986600554297,50.4192135863943 +-6.92964950356208,50.4252539994445 +-6.92034909755969,50.3356634081697 +-7.06030379876633,50.3296420673204 + + + + + +SV46 +#labelStyle + +-6.99503556778882,50.3774694042757 + + + + +SV47 + +Small Square SV47 Boundry Box +#Line2 + + +1 + +-7.0698669642818,50.4192225443064 +-7.07947772344377,50.5087913467285 +-6.93899808023593,50.514850905363 +-6.92965043605264,50.4252629592675 +-7.0698669642818,50.4192225443064 + + + + + +SV47 +#labelStyle + +-7.00449175670364,50.4670581456942 + + + + +SV48 + +Small Square SV48 Boundry Box +#Line2 + + +1 + +-7.07947868705438,50.5088003043684 +-7.08913832053747,50.5983663818063 +-6.94839421321158,50.6044451580032 +-6.9389990174664,50.5148598649211 +-7.07947868705438,50.5088003043684 + + + + + +SV48 +#labelStyle + +-7.01399600448656,50.5566442021404 + + + + +SV49 + +Small Square SV49 Boundry Box +#Line2 + + +1 + +-7.0891392890522,50.5983753391733 +-7.0988481217317,50.6879386832249 +-6.95783821876459,50.6940367494652 +-6.94839515521345,50.6044541172955 +-7.0891392890522,50.5983753391733 + + + + + +SV49 +#labelStyle + +-7.02354863027825,50.6462275654984 + + + + +SV50 + +Small Square SV50 Boundry Box +#Line2 + + +1 + +-6.86550212492478,49.7980115606885 +-6.87452550105029,49.8876178638937 +-6.73581512572517,49.8933794892579 +-6.72704613479244,49.8037550486431 +-6.86550212492478,49.7980115606885 + + + + + +SV50 +#labelStyle + +-6.80071573642121,49.8457167283061 + + + + +SV51 + +Small Square SV51 Boundry Box +#Line2 + + +1 + +-6.87452640574425,49.8876268252903 +-6.88359519800564,49.9772305290109 +-6.74462914490147,49.9830103603189 +-6.73581600491484,49.8933884524717 +-6.87452640574425,49.8876268252903 + + + + + +SV51 +#labelStyle + +-6.80963519267497,49.9353398458264 + + + + +SV52 + +Small Square SV52 Boundry Box +#Line2 + + +1 + +-6.88359610725647,49.9772394901472 +-6.89271061251076,50.0668405869212 +-6.75348760627544,50.0726386913567 +-6.74463002852089,49.9830193232791 +-6.88359610725647,49.9772394901472 + + + + + +SV52 +#labelStyle + +-6.81859958236077,50.024960393591 + + + + +SV53 + +Small Square SV53 Boundry Box +#Line2 + + +1 + +-6.89271152634828,50.0668495477964 +-6.90187204413038,50.1564480301017 +-6.76239080119604,50.162264475313 +-6.7534884943536,50.0726476540626 +-6.89271152634828,50.0668495477964 + + + + + +SV53 +#labelStyle + +-6.82760919961421,50.1145783643398 + + + + +SV54 + +Small Square SV54 Boundry Box +#Line2 + + +1 + +-6.90187296258468,50.156456990715 +-6.91107979513725,50.2460528509688 +-6.77133902364746,50.2518877050728 +-6.76239169376221,50.1622734377638 +-6.90187296258468,50.156456990715 + + + + + +SV54 +#labelStyle + +-6.8366643412278,50.2041937507546 + + + + +SV55 + +Small Square SV55 Boundry Box +#Line2 + + +1 + +-6.9110807182387,50.2460618113195 +-6.92033417054237,50.3356550418777 +-6.78033257027862,50.3415083734636 +-6.77133992073117,50.2518966672678 +-6.9110807182387,50.2460618113195 + + + + + +SV55 +#labelStyle + +-6.84576530668061,50.2938065454583 + + + + +SV56 + +Small Square SV56 Boundry Box +#Line2 + + +1 + +-6.9203350983216,50.335664001965 +-6.92963547812563,50.4252545951209 +-6.78937174043301,50.4311264732549 +-6.78033347190968,50.3415173354021 +-6.9203350983216,50.335664001965 + + + + + +SV56 +#labelStyle + +-6.85491239816832,50.3834167410136 + + + + +SV57 + +Small Square SV57 Boundry Box +#Line2 + + +1 + +-6.92963641061356,50.4252635549441 +-6.93898402846691,50.5148515029277 +-6.7984568361789,50.520741997157 +-6.78937264664148,50.4311354349362 +-6.92963641061356,50.4252635549441 + + + + + +SV57 +#labelStyle + +-6.86410592063367,50.4730243299228 + + + + +SV58 + +Small Square SV58 Boundry Box +#Line2 + + +1 + +-6.93898496569474,50.5148604624859 +-6.94838013497754,50.6044457574633 +-6.80758816234006,50.6103549378204 +-6.79845774699512,50.5207509585803 +-6.93898496569474,50.5148604624859 + + + + + +SV58 +#labelStyle + +-6.87334618179731,50.5626293046264 + + + + +SV59 + +Small Square SV59 Boundry Box +#Line2 + + +1 + +-6.94838107697676,50.6044547167558 +-6.95782411393223,50.6940373508277 +-6.81676602652678,50.6999652878349 +-6.80758907779466,50.6103638989851 +-6.94838107697676,50.6044547167558 + + + + + +SV59 +#labelStyle + +-6.88263349218913,50.6522316575026 + + + + +SV60 + +Small Square SV60 Boundry Box +#Line2 + + +1 + +-6.72703228559447,49.8037556148002 +-6.7358012510717,49.893380057203 +-6.59704672911156,49.8989761555588 +-6.58853243492348,49.8093340927007 +-6.72703228559447,49.8037556148002 + + + + + +SV60 +#labelStyle + +-6.66209667503904,49.8513872180223 + + + + +SV61 + +Small Square SV61 Boundry Box +#Line2 + + +1 + +-6.73580213025882,49.893389020417 +-6.74461524466309,49.9830109300588 +-6.60560475622192,49.9886247154902 +-6.59704758276566,49.8989851205383 +-6.73580213025882,49.893389020417 + + + + + +SV61 +#labelStyle + +-6.67076091774865,49.9410282509675 + + + + +SV62 + +Small Square SV62 Boundry Box +#Line2 + + +1 + +-6.74461612827994,49.9830198930192 +-6.75347368032448,50.0726392628981 +-6.61420594744433,50.0782708007143 +-6.60560561417835,49.9886336802226 +-6.74461612827994,49.9830198930192 + + + + + +SV62 +#labelStyle + +-6.67946882118614,50.0306667801833 + + + + +SV63 + +Small Square SV63 Boundry Box +#Line2 + + +1 + +-6.75347456840006,50.0726482256041 +-6.76237684940398,50.1622650486626 +-6.62285058588209,50.1679144046243 +-6.61420680973129,50.0782797651988 +-6.75347456840006,50.0726482256041 + + + + + +SV63 +#labelStyle + +-6.68822067129205,50.1203027988657 + + + + +SV64 + +Small Square SV64 Boundry Box +#Line2 + + +1 + +-6.76237774196756,50.1622740111135 +-6.77132504588498,50.2518882802372 +-6.6315389572006,50.2575555205611 +-6.62285145252802,50.1679233688604 +-6.76237774196756,50.1622740111135 + + + + + +SV64 +#labelStyle + +-6.69701675659128,50.2099363001568 + + + + +SV65 + +Small Square SV65 Boundry Box +#Line2 + + +1 + +-6.77132594296609,50.2518972424324 +-6.78031856641555,50.3415089504496 +-6.640271349656,50.347194141812 +-6.63153982823418,50.257564484548 +-6.77132594296609,50.2518972424324 + + + + + +SV65 +#labelStyle + +-6.70585736822192,50.2995672771434 + + + + +SV66 + +Small Square SV66 Boundry Box +#Line2 + + +1 + +-6.78031946804399,50.3415179123883 +-6.78935771033833,50.4311270520693 +-6.64904805412425,50.4368302616102 +-6.6402722251062,50.3472031055491 +-6.78031946804399,50.3415179123883 + + + + + +SV66 +#labelStyle + +-6.71474279996453,50.3891957228567 + + + + +SV67 + +Small Square SV67 Boundry Box +#Line2 + + +1 + +-6.78935861654417,50.4311360137508 +-6.79844277972074,50.5207425778067 +-6.65786936413053,50.5264638731343 +-6.64904893402028,50.4368392250969 +-6.78935861654417,50.4311360137508 + + + + + +SV67 +#labelStyle + +-6.72367334827173,50.4788216302713 + + + + +SV68 + +Small Square SV68 Boundry Box +#Line2 + + +1 + +-6.79844369053432,50.5207515392302 +-6.80757407938569,50.6103555203124 +-6.66673557587909,50.6160949695067 +-6.65787024850188,50.5264728363698 +-6.79844369053432,50.5207515392302 + + + + + +SV68 +#labelStyle + +-6.73264931229833,50.5684449923045 + + + + +SV69 + +Small Square SV69 Boundry Box +#Line2 + + +1 + +-6.80757499483763,50.6103644814772 +-6.81675191694261,50.699965872176 +-6.67564698828349,50.7057235437937 +-6.66673646475552,50.6161039324904 +-6.80757499483763,50.6103644814772 + + + + + +SV69 +#labelStyle + +-6.74167099393168,50.6580658018153 + + + + +SV70 + +Small Square SV70 Boundry Box +#Line2 + + +1 + +-6.58851858140207,49.8093346423488 +-6.59703285010644,49.8989767069432 +-6.4582354513171,49.9044071530199 +-6.44997613189806,49.8147479856768 +-6.58851858140207,49.8093346423488 + + + + + +SV70 +#labelStyle + +-6.52343423865985,49.8568923599726 + + + + +SV71 + +Small Square SV71 Boundry Box +#Line2 + + +1 + +-6.59703370375798,49.8989856719229 +-6.60559085160342,49.9886252686176 +-6.4665372058036,49.9940728821433 +-6.45823627940768,49.9044161197132 +-6.59703370375798,49.8989856719229 + + + + + +SV71 +#labelStyle + +-6.53184298445209,49.9465507899748 + + + + +SV72 + +Small Square SV72 Boundry Box +#Line2 + + +1 + +-6.60559170955729,49.9886342333501 +-6.61419201708453,50.078271355591 +-6.47488084378283,50.0837361999939 +-6.46653803806887,49.9940818485957 +-6.60559170955729,49.9886342333501 + + + + + +SV72 +#labelStyle + +-6.54029411571229,50.0362067804022 + + + + +SV73 + +Small Square SV73 Boundry Box +#Line2 + + +1 + +-6.6141928793689,50.0782803200757 +-6.62283662965222,50.1679149612568 +-6.48326664008414,50.173397100404 +-6.47488168025015,50.0837451662048 +-6.6141928793689,50.0782803200757 + + + + + +SV73 +#labelStyle + +-6.54878791015746,50.1258603248942 + + + + +SV74 + +Small Square SV74 Boundry Box +#Line2 + + +1 + +-6.62283749629555,50.1679239254931 +-6.63152497497106,50.257556078956 +-6.49169487202546,50.2630555771574 +-6.48326748078112,50.1734060663729 +-6.62283749629555,50.1679239254931 + + + + + +SV74 +#labelStyle + +-6.55732464801602,50.2155114170403 + + + + +SV75 + +Small Square SV75 Boundry Box +#Line2 + + +1 + +-6.63152584600204,50.2575650429431 +-6.64025734129636,50.3471947019758 +-6.50016581944112,50.3527116239882 +-6.49169571697995,50.2630645428836 +-6.63152584600204,50.2575650429431 + + + + + +SV75 +#labelStyle + +-6.56590461205584,50.3051600503785 + + + + +SV76 + +Small Square SV76 Boundry Box +#Line2 + + +1 + +-6.64025821674393,50.3472036657131 +-6.64903401950322,50.4368308235496 +-6.50867976471013,50.4423652345806 +-6.50016666868124,50.3527205894712 +-6.64025821674393,50.3472036657131 + + + + + +SV76 +#labelStyle + +-6.57452808761269,50.3948062183955 + + + + +SV77 + +Small Square SV77 Boundry Box +#Line2 + + +1 + +-6.64903489939662,50.4368397870365 +-6.65785530311597,50.5264644368559 +-6.51723699278474,50.5320164025678 +-6.50868061826424,50.4423741998197 +-6.64903489939662,50.4368397870365 + + + + + +SV77 +#labelStyle + +-6.58319536261907,50.4844499145252 + + + + +SV78 + +Small Square SV78 Boundry Box +#Line2 + + +1 + +-6.65785618748467,50.5264734000915 +-6.66672148833799,50.6160955350172 +-6.52583779121945,50.6216651215311 +-6.51723785068147,50.5320253675622 +-6.65785618748467,50.5264734000915 + + + + + +SV78 +#labelStyle + +-6.59190672763344,50.5740911321483 + + + + +SV79 + +Small Square SV79 Boundry Box +#Line2 + + +1 + +-6.66672237721177,50.616104498001 +-6.67563287408199,50.7057241110999 +-6.53448245020042,50.7113113849999 +-6.52583865348768,50.6216740862804 +-6.66672237721177,50.616104498001 + + + + + +SV79 +#labelStyle + +-6.6006624758698,50.6637298645915 + + + + +SV80 + +Small Square SV80 Boundry Box +#Line2 + + +1 + +-6.44996227417951,49.8147485188037 +-6.45822156808745,49.9044076878313 +-6.31938256477776,49.909672359996 +-6.31137849002369,49.819996606657 +-6.44996227417951,49.8147485188037 + + + + + +SV80 +#labelStyle + +-6.38472969441124,49.8622320310635 + + + + +SV81 + +Small Square SV81 Boundry Box +#Line2 + + +1 + +-6.45822239617547,49.9044166545248 +-6.46652329693293,49.9940734186456 +-6.32742777428376,49.9993547378958 +-6.31938336727772,49.9096813283511 +-6.45822239617547,49.9044166545248 + + + + + +SV81 +#labelStyle + +-6.39288266806433,49.9519073390101 + + + + +SV82 + +Small Square SV82 Boundry Box +#Line2 + + +1 + +-6.46652412919563,49.9940823850982 +-6.47486690914295,50.0837367381933 +-6.33551358420216,50.0890347660701 +-6.32742858083051,49.9993637060162 +-6.46652412919563,49.9940823850982 + + + + + +SV82 +#labelStyle + +-6.40107674944186,50.0415802696585 + + + + +SV83 + +Small Square SV83 Boundry Box +#Line2 + + +1 + +-6.47486774560769,50.0837457044045 +-6.48325267954604,50.1733976403069 +-6.34364026106092,50.1787124387775 +-6.33551439482224,50.0890437339552 +-6.47486774560769,50.0837457044045 + + + + + +SV83 +#labelStyle + +-6.40931220800963,50.131250817079 + + + + +SV84 + +Small Square SV84 Boundry Box +#Line2 + + +1 + +-6.48325352024043,50.173406606276 +-6.49168088545929,50.2630561187701 +-6.35180807380263,50.2683877502317 +-6.34364107578111,50.1787214064268 +-6.48325352024043,50.173406606276 + + + + + +SV84 +#labelStyle + +-6.4175893156715,50.2209189752954 + + + + +SV85 + +Small Square SV85 Boundry Box +#Line2 + + +1 + +-6.49168173041117,50.2630650844965 +-6.50015180671619,50.3527121673171 +-6.3600172938116,50.3580606946007 +-6.35180889264993,50.2683967176446 +-6.49168173041117,50.2630650844965 + + + + + +SV85 +#labelStyle + +-6.42590834679668,50.3105847382844 + + + + +SV86 + +Small Square SV86 Boundry Box +#Line2 + + +1 + +-6.50015265595369,50.3527211328002 +-6.50866572569489,50.4423657796321 +-6.36826819494126,50.4477312660063 +-6.36001811681328,50.3580696617766 +-6.50015265595369,50.3527211328002 + + + + + +SV86 +#labelStyle + +-6.43426957824733,50.4002480999747 + + + + +SV87 + +Small Square SV87 Boundry Box +#Line2 + + +1 + +-6.50866657924636,50.4423747448713 +-6.51722292734678,50.5320169493483 +-6.37656105354194,50.5373994585232 +-6.36826902212483,50.4477402329446 +-6.50866657924636,50.4423747448713 + + + + + +SV87 +#labelStyle + +-6.4426732894066,50.4899090542465 + + + + +SV88 + +Small Square SV88 Boundry Box +#Line2 + + +1 + +-6.51722378524086,50.5320259143429 +-6.5258236992255,50.6216656700472 +-6.38489614848901,50.6270652661785 +-6.37656188493516,50.5374084252233 +-6.51722378524086,50.5320259143429 + + + + + +SV88 +#labelStyle + +-6.45111976220701,50.5795675949307 + + + + +SV89 + +Small Square SV89 Boundry Box +#Line2 + + +1 + +-6.52582456149107,50.6216746347966 +-6.53446833151634,50.7113119352581 +-6.39327376121142,50.7167286829507 +-6.38489698411989,50.6270742326398 +-6.52582456149107,50.6216746347966 + + + + + +SV89 +#labelStyle + +-6.45960928115918,50.6692237158084 + + + + +SV90 + +Small Square SV90 Boundry Box +#Line2 + + +1 + +-6.31136462823456,49.8199971232507 +-6.31936867745095,49.9096728782224 +-6.1804893443611,49.914771658489 +-6.1727407760127,49.8250798383526 +-6.31136462823456,49.8199971232507 + + + + + +SV90 +#labelStyle + +-6.24598431187468,49.8674061118332 + + + + +SV91 + +Small Square SV91 Boundry Box +#Line2 + + +1 + +-6.31936947994835,49.9096818465776 +-6.3274138612891,49.999355257761 +-6.18827774475828,50.0044701640345 +-6.18049012124414,49.9147806284539 +-6.31936947994835,49.9096818465776 + + + + + +SV91 +#labelStyle + +-6.25388124634556,49.9570977778885 + + + + +SV92 + +Small Square SV92 Boundry Box +#Line2 + + +1 + +-6.32741466783328,49.9993642258816 +-6.33549964541123,50.0890352875802 +-6.19610546009968,50.0941663795086 +-6.18827852555998,50.0044791337706 +-6.32741466783328,49.9993642258816 + + + + + +SV92 +#labelStyle + +-6.26181800838632,50.0467871270384 + + + + +SV93 + +Small Square SV93 Boundry Box +#Line2 + + +1 + +-6.33550045602873,50.0890442554655 +-6.34362629634446,50.1787129619386 +-6.20397274858513,50.1838602995833 +-6.19610624484575,50.0941753490154 +-6.33550045602873,50.0890442554655 + + + + + +SV93 +#labelStyle + +-6.26979485918461,50.136474153771 + + + + +SV94 + +Small Square SV94 Boundry Box +#Line2 + + +1 + +-6.34362711106204,50.178721929588 +-6.35179408303054,50.2683882750499 +-6.21187987075488,50.2735519188893 +-6.20397353730151,50.1838692688603 +-6.34362711106204,50.178721929588 + + + + + +SV94 +#labelStyle + +-6.27781206229249,50.226158852532 + + + + +SV95 + +Small Square SV95 Boundry Box +#Line2 + + +1 + +-6.35179490187523,50.268397242463 +-6.36000327685293,50.3580612210823 +-6.21982708951579,50.3632412320153 +-6.21188066346773,50.273560887936 +-6.35179490187523,50.268397242463 + + + + + +SV95 +#labelStyle + +-6.28586988365285,50.3158412177233 + + + + +SV96 + +Small Square SV96 Boundry Box +#Line2 + + +1 + +-6.36000409985199,50.3580701882583 +-6.36825415166422,50.4477317941574 +-6.22781467016795,50.4529282335077 +-6.21982788625152,50.3632502008311 +-6.36000409985199,50.3580701882583 + + + + + +SV96 +#labelStyle + +-6.29396859162626,50.4055212437029 + + + + +SV97 + +Small Square SV97 Boundry Box +#Line2 + + +1 + +-6.36825497884515,50.4477407610959 +-6.37654698381386,50.5373999883501 +-6.2358428804316,50.5426129178693 +-6.22781547095322,50.4529372020921 +-6.36825497884515,50.4477407610959 + + + + + +SV97 +#labelStyle + +-6.30210845701813,50.4951989247839 + + + + +SV98 + +Small Square SV98 Boundry Box +#Line2 + + +1 + +-6.37654781520442,50.5374089550504 +-6.38488205217635,50.6270657976876 +-6.24391199047445,50.6322952795594 +-6.2358436852933,50.5426218862217 +-6.37654781520442,50.5374089550504 + + + + + +SV98 +#labelStyle + +-6.31028975310626,50.5848742552343 + + + + +SV99 + +Small Square SV99 Boundry Box +#Line2 + + +1 + +-6.38488288780457,50.627074764149 +-6.3932596381798,50.7167292161483 +-6.25202227293934,50.7219753129924 +-6.24391279943972,50.6323042476792 +-6.38488288780457,50.627074764149 + + + + + +SV99 +#labelStyle + +-6.31851275566874,50.6745472292756 + + + + + +SW + +Large Square SW Boundry Box +#Line1 + + +1 + +-6.17272691027978,49.8250803384016 +-6.25200814569546,50.7219758291171 +-4.83745254872788,50.7650302251396 +-4.78443992063377,49.8667925502629 +-6.17272691027978,49.8250803384016 + + + + + +SW00 + +Small Square SW00 Boundry Box +#Line2 + + +1 + +-6.17272691027978,49.8250803384016 +-6.18047545306473,49.9147721601187 +-6.04155706729407,49.9197049341569 +-6.03406425891085,49.8299975671092 +-6.17272691027978,49.8250803384016 + + + + + +SW00 +#labelStyle + +-6.10719936301394,49.872414486461 + + + + +SW01 + +Small Square SW01 Boundry Box +#Line2 + + +1 + +-6.1804762299452,49.9147811300838 +-6.18826382776806,50.0044706672509 +-6.04908840270877,50.0094190455238 +-6.04155781853471,49.9197139056795 +-6.1804762299452,49.9147811300838 + + + + + +SW01 +#labelStyle + +-6.11483999946484,49.9621219900877 + + + + +SW02 + +Small Square SW02 Boundry Box +#Line2 + + +1 + +-6.18826460856718,50.0044796369872 +-6.19609151728695,50.0941668843176 +-6.05665776528508,50.0991309245746 +-6.04908915773971,50.0094280168234 +-6.18826460856718,50.0044796369872 + + + + + +SW02 +#labelStyle + +-6.12251918099286,50.0518272353121 + + + + +SW03 + +Small Square SW03 Boundry Box +#Line2 + + +1 + +-6.19609230203043,50.0941758538246 +-6.2039587798204,50.1838608059907 +-6.06426540486886,50.1888405663816 +-6.0566585241312,50.0991398956507 +-6.19609230203043,50.0941758538246 + + + + + +SW03 +#labelStyle + +-6.13023716048142,50.1415302170275 + + + + +SW04 + +Small Square SW04 Boundry Box +#Line2 + + +1 + +-6.20395956853417,50.1838697752679 +-6.2118658759078,50.2735524269011 +-6.07191157357174,50.2785479659795 +-6.06426616755525,50.1888495372338 +-6.20395956853417,50.1838697752679 + + + + + +SW04 +#labelStyle + +-6.13799419310431,50.2312309300882 + + + + +SW05 + +Small Square SW05 Boundry Box +#Line2 + + +1 + +-6.21186666861804,50.273561395948 +-6.21981306845518,50.3632417416376 +-6.07959652579658,50.3682531183648 +-6.07191234012372,50.2785569366072 +-6.21186666861804,50.273561395948 + + + + + +SW05 +#labelStyle + +-6.14579053635131,50.3209293693084 + + + + +SW06 + +Small Square SW06 Boundry Box +#Line2 + + +1 + +-6.21981386518828,50.3632507104536 +-6.22780062276176,50.4529287447464 +-6.08732051826317,50.4579560184947 +-6.07959729623971,50.3682620887675 +-6.21981386518828,50.3632507104536 + + + + + +SW06 +#labelStyle + +-6.1536264500542,50.4106255294622 + + + + +SW07 + +Small Square SW07 Boundry Box +#Line2 + + +1 + +-6.22780142354439,50.4529377133309 +-6.23582880654692,50.5426134307306 +-6.09508381003438,50.5476566612871 +-6.08732129262324,50.4579649886719 +-6.22780142354439,50.4529377133309 + + + + + +SW07 +#labelStyle + +-6.16150219641311,50.5003194052825 + + + + +SW08 + +Small Square SW08 Boundry Box +#Line2 + + +1 + +-6.23582961140597,50.5426223990831 +-6.2438978899775,50.6322957940492 +-6.10288666254256,50.6373550416199 +-6.09508458833741,50.5476656312384 +-6.23582961140597,50.5426223990831 + + + + + +SW08 +#labelStyle + +-6.1694180400232,50.5900109914604 + + + + +SW09 + +Small Square SW09 Boundry Box +#Line2 + + +1 + +-6.2438986989401,50.6323047621693 +-6.25200814569546,50.7219758291171 +-6.11072933961639,50.7270511543299 +-6.10288744481482,50.6373640113446 +-6.2438986989401,50.6323047621693 + + + + + +SW09 +#labelStyle + +-6.17737424790173,50.6797002826449 + + + + +SW10 + +Small Square SW10 Boundry Box +#Line2 + + +1 + +-6.03405038936116,49.8299980506024 +-6.04154317215597,49.9197054191788 +-5.90258701309051,49.9244720763225 +-5.89535021002566,49.8347496829159 +-6.03405038936116,49.8299980506024 + + + + + +SW10 +#labelStyle + +-5.96837612210317,49.8772570427757 + + + + +SW11 + +Small Square SW11 Boundry Box +#Line2 + + +1 + +-6.04154392339405,49.9197143907015 +-6.04907448185165,50.0094195320802 +-5.90986103592925,50.0142012710151 +-5.90258773866411,49.9244810493507 +-6.04154392339405,49.9197143907015 + + + + + +SW11 +#labelStyle + +-5.9757602099273,49.9669798627568 + + + + +SW12 + +Small Square SW12 Boundry Box +#Line2 + + +1 + +-6.04907523688002,50.0094285033799 +-6.05664381858006,50.0991314126711 +-5.91717179590638,50.1039282892422 +-5.90986176516457,50.0142102438258 +-6.04907523688002,50.0094285033799 + + + + + +SW12 +#labelStyle + +-5.98318155807086,50.0567004809435 + + + + +SW13 + +Small Square SW13 Boundry Box +#Line2 + + +1 + +-6.05664457742358,50.0991403837474 +-6.0642514321862,50.188841056024 +-5.92451953448867,50.1936531264638 +-5.91717252882745,50.1039372618351 +-6.05664457742358,50.0991403837474 + + + + + +SW13 +#labelStyle + +-5.99064041108772,50.1464188926212 + + + + +SW14 + +Small Square SW14 Boundry Box +#Line2 + + +1 + +-6.06425219486998,50.1888500268763 +-6.07189757478087,50.2785484571735 +-5.9319044953338,50.2833757781053 +-5.92452027111975,50.1936620988383 +-6.06425219486998,50.1888500268763 + + + + + +SW14 +#labelStyle + +-5.99813701574774,50.2361350930399 + + + + +SW15 + +Small Square SW15 Boundry Box +#Line2 + + +1 + +-6.07189834133023,50.2785574278014 +-6.07958250076608,50.3682536111162 +-5.93932692431482,50.3730962395576 +-5.93190523569936,50.283384750261 +-6.07189834133023,50.2785574278014 + + + + + +SW15 +#labelStyle + +-6.00567162106161,50.3258490774131 + + + + +SW16 + +Small Square SW16 Boundry Box +#Line2 + + +1 + +-6.07958327120658,50.368262581519 +-6.08730646686075,50.4579565128093 +-5.94678706954516,50.4628145061758 +-5.93932766843956,50.373105211494 +-6.07958327120658,50.368262581519 + + + + + +SW16 +#labelStyle + +-6.01324447830598,50.4155608409176 + + + + +SW17 + +Small Square SW17 Boundry Box +#Line2 + + +1 + +-6.08730724121818,50.4579654829867 +-6.09506973212689,50.547657157171 +-5.95428518140384,50.5525305732794 +-5.94678781745402,50.4628234778926 +-6.08730724121818,50.4579654829867 + + + + + +SW17 +#labelStyle + +-6.020855841049,50.5052703786925 + + + + +SW18 + +Small Square SW18 Boundry Box +#Line2 + + +1 + +-6.09507051042727,50.5476661271224 +-6.10287255799598,50.6373555390788 +-5.96182151256107,50.642244436151 +-5.95428593312195,50.552539544776 +-6.09507051042727,50.5476661271224 + + + + + +SW18 +#labelStyle + +-6.02850596517613,50.5949776858392 + + + + +SW19 + +Small Square SW19 Boundry Box +#Line2 + + +1 + +-6.10287334026557,50.6373645088037 +-6.11071520829581,50.7270516533698 +-5.96939631800416,50.7319560900362 +-5.96182226811382,50.6422534074269 +-6.10287334026557,50.6373645088037 + + + + + +SW19 +#labelStyle + +-6.03619510891637,50.6846827574202 + + + + +SW20 + +Small Square SW20 Boundry Box +#Line2 + + +1 + +-5.89533633678643,49.8347501498424 +-5.90257311423876,49.9244725447256 +-5.76358046347834,49.9290729779816 +-5.75659990285427,49.8393360794126 +-5.89533633678643,49.8347501498424 + + + + + +SW20 +#labelStyle + +-5.82951586565458,49.8819336722641 + + + + +SW21 + +Small Square SW21 Boundry Box +#Line2 + + +1 + +-5.90257383980979,49.9244815177539 +-5.90984711133414,50.0142017409004 +-5.77059693445253,50.0188167328543 +-5.76358116336108,49.929081952463 +-5.90257383980979,49.9244815177539 + + + + + +SW21 +#labelStyle + +-5.83664316250114,49.9716712867248 + + + + +SW22 + +Small Square SW22 Boundry Box +#Line2 + + +1 + +-5.90984784056687,50.0142107137112 +-5.91715784543878,50.1039287606152 +-5.77764885037537,50.1085583652025 +-5.77059763786819,50.0188257071238 +-5.90984784056687,50.0142107137112 + + + + + +SW22 +#labelStyle + +-5.84380643271803,50.0614067540981 + + + + +SW23 + +Small Square SW23 Boundry Box +#Line2 + + +1 + +-5.91715857835726,50.1039377332082 +-5.92450555801866,50.1936535993299 +-5.78473644431037,50.1982978708604 +-5.77764955734714,50.1085673392595 +-5.91715857835726,50.1039377332082 + + + + + +SW23 +#labelStyle + +-5.8510059125051,50.1511400700488 + + + + +SW24 + +Small Square SW24 Boundry Box +#Line2 + + +1 + +-5.92450629464713,50.1936625717046 +-5.93189049273056,50.2833762524702 +-5.79185995143658,50.2880352456312 +-5.78473715486167,50.1983068447045 +-5.92450629464713,50.1936625717046 + + + + + +SW24 +#labelStyle + +-5.85824184020346,50.2408712302094 + + + + +SW25 + +Small Square SW25 Boundry Box +#Line2 + + +1 + +-5.9318912330935,50.2833852246261 +-5.93931289544671,50.3730967154269 +-5.7990196090724,50.3777704852869 +-5.79186066559103,50.288044219262 +-5.9318912330935,50.2833852246261 + + + + + +SW25 +#labelStyle + +-5.86551445631954,50.3306002301796 + + + + +SW26 + +Small Square SW26 Boundry Box +#Line2 + + +1 + +-5.93931363956882,50.3731056873635 +-5.94677301427966,50.4628149835551 +-5.80621565669963,50.4675035855672 +-5.79902032685384,50.377779458704 +-5.93931363956882,50.3731056873635 + + + + + +SW26 +#labelStyle + +-5.87282400354935,50.4203270655255 + + + + +SW27 + +Small Square SW27 Boundry Box +#Line2 + + +1 + +-5.94677376218587,50.4628239552721 +-5.95427109960757,50.5525310521744 +-5.81344833598783,50.5572345421792 +-5.80621637813211,50.4675125587701 +-5.94677376218587,50.4628239552721 + + + + + +SW27 +#labelStyle + +-5.88017072680322,50.5100517317792 + + + + +SW28 + +Small Square SW28 Boundry Box +#Line2 + + +1 + +-5.95427185132302,50.5525400236711 +-5.96180740409976,50.6422449165674 +-5.82071789081912,50.6469633507972 +-5.81344906109563,50.5572435151676 +-5.95427185132302,50.5525400236711 + + + + + +SW28 +#labelStyle + +-5.88755487323071,50.5997742244385 + + + + +SW29 + +Small Square SW29 Boundry Box +#Line2 + + +1 + +-5.96180815964985,50.6422538878435 +-5.96938218274269,50.7319565719798 +-5.8280245673132,50.7366900070617 +-5.82071861962675,50.6469723235705 +-5.96180815964985,50.6422538878435 + + + + + +SW29 +#labelStyle + +-5.89497669224601,50.6894945389659 + + + + +SW30 + +Small Square SW30 Boundry Box +#Line2 + + +1 + +-5.75658602605297,49.839336529762 +-5.76356656104121,49.9290734297554 +-5.62453870232631,49.9335075358109 +-5.61781461301111,49.8437566538983 +-5.75658602605297,49.839336529762 + + + + + +SW30 +#labelStyle + +-5.69061987234585,49.8864442700791 + + + + +SW31 + +Small Square SW31 Boundry Box +#Line2 + + +1 + +-5.76356726092138,49.929082404237 +-5.77058300624853,50.018817186058 +-5.63129739047617,50.0232653270908 +-5.6245393764952,49.9335165116934 +-5.76356726092138,49.929082404237 + + + + + +SW31 +#labelStyle + +-5.69749014414412,49.9761961565085 + + + + +SW32 + +Small Square SW32 Boundry Box +#Line2 + + +1 + +-5.7705837096616,50.0188261603276 +-5.77763489627517,50.1085588198413 +-5.63809022929291,50.1130210478718 +-5.63129806804896,50.0232743027664 +-5.7705837096616,50.0188261603276 + + + + + +SW32 +#labelStyle + +-5.70439510024616,50.0659459486516 + + + + +SW33 + +Small Square SW33 Boundry Box +#Line2 + + +1 + +-5.77763560324435,50.1085677938984 +-5.7847224641838,50.1982983269397 +-5.64491744341332,50.2027746943498 +-5.63809091029197,50.1130300233403 +-5.77763560324435,50.1085677938984 + + + + + +SW33 +#labelStyle + +-5.71133496847406,50.1556936425394 + + + + +SW34 + +Small Square SW34 Boundry Box +#Line2 + + +1 + +-5.78472317473249,50.1983073007839 +-5.79184594515263,50.2880357031564 +-5.65177925951411,50.2925262626923 +-5.64491812786121,50.2027836696106 +-5.78472317473249,50.1983073007839 + + + + + +SW34 +#labelStyle + +-5.71830997871621,50.2454392341739 + + + + +SW35 + +Small Square SW35 Boundry Box +#Line2 + + +1 + +-5.79184665930446,50.2880446767873 +-5.7990055764992,50.3777709442633 +-5.65867590633493,50.3822757490391 +-5.6517799474336,50.2925352377451 +-5.79184665930446,50.2880446767873 + + + + + +SW35 +#labelStyle + +-5.72532036295043,50.3351827195277 + + + + +SW36 + +Small Square SW36 Boundry Box +#Line2 + + +1 + +-5.799006294278,50.3777799176805 +-5.80620159770443,50.4675040460003 +-5.66560761470155,50.4720231495008 +-5.658676597749,50.3822847238835 +-5.799006294278,50.3777799176805 + + + + + +SW36 +#labelStyle + +-5.73236635526745,50.4249240945428 + + + + +SW37 + +Small Square SW37 Boundry Box +#Line2 + + +1 + +-5.80620231913427,50.4675130192033 +-5.81343425043704,50.5572350040745 +-5.67257461754938,50.5617684601591 +-5.66560830963339,50.4720321241364 +-5.80620231913427,50.4675130192033 + + + + + +SW37 +#labelStyle + +-5.73944819189476,50.514663355131 + + + + +SW38 + +Small Square SW38 Boundry Box +#Line2 + + +1 + +-5.81343497554218,50.557243977063 +-5.82070377857824,50.6469638141602 +-5.67957714994736,50.6515116770658 +-5.67257531602238,50.5617774345855 +-5.81343497554218,50.557243977063 + + + + + +SW38 +#labelStyle + +-5.74656611122072,50.6044004971726 + + + + +SW39 + +Small Square SW39 Boundry Box +#Line2 + + +1 + +-5.8207045073832,50.6469727869337 +-5.82801042824685,50.7366904718979 +-5.68661544912215,50.7412527962425 +-5.67957785198515,50.6515206512827 +-5.8207045073832,50.6469727869337 + + + + + +SW39 +#labelStyle + +-5.75372035381901,50.6941355165167 + + + + +SW40 + +Small Square SW40 Boundry Box +#Line2 + + +1 + +-5.61780073277539,49.8437570876605 +-5.62452479643229,49.9335079709453 +-5.48546301557049,49.9377756501759 +-5.4789956181551,49.8480113073392 +-5.61780073277539,49.8437570876605 + + + + + +SW40 +#labelStyle + +-5.55168942294712,49.8907887350477 + + + + +SW41 + +Small Square SW41 Boundry Box +#Line2 + + +1 + +-5.62452547059861,49.9335169468279 +-5.6312834587926,50.0232657636026 +-5.49196369828815,50.0275469534844 +-5.48546366400337,49.9377846274072 +-5.62452547059861,49.9335169468279 + + + + + +SW41 +#labelStyle + +-5.55830244392989,49.9805543703208 + + + + +SW42 + +Small Square SW42 Boundry Box +#Line2 + + +1 + +-5.6312841363628,50.0232747392784 +-5.63807627169026,50.1130214857662 +-5.49849723537367,50.1173162363998 +-5.49196434999572,50.0275559305137 +-5.6312841363628,50.0232747392784 + + + + + +SW42 +#labelStyle + +-5.56494885810655,50.0703179621976 + + + + +SW43 + +Small Square SW43 Boundry Box +#Line2 + + +1 + +-5.63807695268672,50.1130304612348 +-5.64490345976121,50.2027751336318 +-5.50506384301447,50.207083495466 +-5.49849789037745,50.1173252132269 +-5.63807695268672,50.1130304612348 + + + + + +SW43 +#labelStyle + +-5.57162888489862,50.1600795070625 + + + + +SW44 + +Small Square SW44 Boundry Box +#Line2 + + +1 + +-5.64490414420648,50.2027841088928 +-5.65176524968132,50.2925267033672 +-5.51166373936204,50.2968487272018 +-5.50506450133618,50.2070924720905 +-5.64490414420648,50.2027841088928 + + + + + +SW44 +#labelStyle + +-5.57834274571854,50.2498390012735 + + + + +SW45 + +Small Square SW45 Boundry Box +#Line2 + + +1 + +-5.65176593759818,50.2925356784201 +-5.65866187018937,50.382276191112 +-5.51829714455404,50.3866119281014 +-5.51166440102359,50.2968577036235 +-5.65176593759818,50.2925356784201 + + + + + +SW45 +#labelStyle + +-5.58509066399206,50.3395964411627 + + + + +SW46 + +Small Square SW46 Boundry Box +#Line2 + + +1 + +-5.65866256160081,50.3822851659565 +-5.66559355211027,50.4720235929771 +-5.52496428073667,50.4763730946329 +-5.51829780957756,50.3866209043198 +-5.65866256160081,50.3822851659565 + + + + + +SW46 +#labelStyle + +-5.59187286518083,50.4293518230349 + + + + +SW47 + +Small Square SW47 Boundry Box +#Line2 + + +1 + +-5.66559424703946,50.4720325676128 +-5.67256052837855,50.561768905044 +-5.53166537208733,50.5661322232388 +-5.52496494914446,50.4763820706477 +-5.66559424703946,50.4720325676128 + + + + + +SW47 +#labelStyle + +-5.59868957680537,50.5191051431678 + + + + +SW48 + +Small Square SW48 Boundry Box +#Line2 + + +1 + +-5.67256122684889,50.5617778794706 +-5.67956303406229,50.6515121233646 +-5.53840064483762,50.6558893103347 +-5.53166604390192,50.5661411990496 +-5.67256122684889,50.5617778794706 + + + + + +SW48 +#labelStyle + +-5.60554102846835,50.6088563978109 + + + + +SW49 + +Small Square SW49 Boundry Box +#Line2 + + +1 + +-5.67956373609739,50.6515210975816 +-5.68660130638722,50.7412532439607 +-5.54517032729663,50.7456443523096 +-5.53840132008173,50.6558982859412 +-5.67956373609739,50.6515210975816 + + + + + +SW49 +#labelStyle + +-5.61242745187817,50.6986055831857 + + + + +SW50 + +Small Square SW50 Boundry Box +#Line2 + + +1 + +-5.47898173461284,49.8480117245044 +-5.48544910634829,49.9377760686611 +-5.34635469114046,49.9418772251385 +-5.34014419791667,49.8520999443753 +-5.47898173461284,49.8480117245044 + + + + + +SW50 +#labelStyle + +-5.41272580024775,49.8949669696782 + + + + +SW51 + +Small Square SW51 Boundry Box +#Line2 + + +1 + +-5.48544975477859,49.9377850458925 +-5.49194976325455,50.0275473732946 +-5.35259715419227,50.0316615155137 +-5.34635531381599,49.941886203666 +-5.48544975477859,49.9377850458925 + + + + + +SW51 +#labelStyle + +-5.41908135297382,49.9847458300783 + + + + +SW52 + +Small Square SW52 Boundry Box +#Line2 + + +1 + +-5.49195041495953,50.027556350324 +-5.49848327439895,50.1173166575399 +-5.35887117337071,50.1214438336768 +-5.3525977800131,50.0316704938442 +-5.49195041495953,50.027556350324 + + + + + +SW52 +#labelStyle + +-5.42546900581513,50.074522696056 + + + + +SW53 + +Small Square SW53 Boundry Box +#Line2 + + +1 + +-5.49848392940013,50.1173256343671 +-5.50504985596804,50.2070839179408 +-5.36517695639206,50.2112241765063 +-5.3588718023575,50.1214528118099 +-5.49848392940013,50.1173256343671 + + + + + +SW53 +#labelStyle + +-5.43188896977055,50.1642975643359 + + + + +SW54 + +Small Square SW54 Boundry Box +#Line2 + + +1 + +-5.50505051428715,50.2070928945655 +-5.51164972611249,50.2968491510165 +-5.37151471286051,50.3010025408592 +-5.36517758856568,50.2112331544417 +-5.50505051428715,50.2070928945655 + + + + + +SW54 +#labelStyle + +-5.43834145775426,50.2540704316192 + + + + +SW55 + +Small Square SW55 Boundry Box +#Line2 + + +1 + +-5.51165038777142,50.2968581274383 +-5.51828310496907,50.3866123532609 +-5.37788465428937,50.3907789235703 +-5.37151534824202,50.3010115185966 +-5.51165038777142,50.2968581274383 + + + + + +SW55 +#labelStyle + +-5.44482668461728,50.3438412945839 + + + + +SW56 + +Small Square SW56 Boundry Box +#Line2 + + +1 + +-5.51828376998995,50.3866213294794 +-5.52495021468313,50.4763735211423 +-5.38428699412259,50.4805533214521 +-5.37788529290002,50.3907879011094 +-5.51828376998995,50.3866213294794 + + + + + +SW56 +#labelStyle + +-5.45134486716922,50.4336101498841 + + + + +SW57 + +Small Square SW57 Boundry Box +#Line2 + + +1 + +-5.52495088308827,50.4763824971572 +-5.53165127943119,50.5661326511031 +-5.39072194775658,50.5703257312936 +-5.38428763598382,50.4805622987925 +-5.52495088308827,50.4763824971572 + + + + + +SW57 +#labelStyle + +-5.45789622420038,50.5233769941497 + + + + +SW58 + +Small Square SW58 Boundry Box +#Line2 + + +1 + +-5.53165195124311,50.5661416269141 +-5.53838652544394,50.6558897395592 +-5.39718973256228,50.6600961498611 +-5.39072259289002,50.5703347084351 +-5.53165195124311,50.5661416269141 + + + + + +SW58 +#labelStyle + +-5.46448097650417,50.6131418239859 + + + + +SW59 + +Small Square SW59 Boundry Box +#Line2 + + +1 + +-5.53838720068538,50.6558987151658 +-5.54515618102961,50.7456447828993 +-5.40369056790761,50.7498645738965 +-5.39719038098978,50.6601051268033 +-5.53838720068538,50.6558987151658 + + + + + +SW59 +#labelStyle + +-5.47109934689979,50.7029046359726 + + + + +SW60 + +Small Square SW60 Boundry Box +#Line2 + + +1 + +-5.34013031119592,49.8521003449343 +-5.34634077871896,49.9418776269651 +-5.2072150188851,49.9458121684637 +-5.20126163382437,49.8560224733282 +-5.34013031119592,49.8521003449343 + + + + + +SW60 +#labelStyle + +-5.27373028898269,49.8989788801678 + + + + +SW61 + +Small Square SW61 Boundry Box +#Line2 + + +1 + +-5.34634140139191,49.9418866054927 +-5.35258321593837,50.0316619186128 +-5.21319905643312,50.0356089203829 +-5.2072156157828,49.945821148235 +-5.34634140139191,49.9418866054927 + + + + + +SW61 +#labelStyle + +-5.27982816435864,49.9887704414081 + + + + +SW62 + +Small Square SW62 Boundry Box +#Line2 + + +1 + +-5.3525838417566,50.0316708969433 +-5.35885720915449,50.121444238053 +-5.21921334999967,50.1254037463412 +-5.21319965634652,50.0356178999619 +-5.3525838417566,50.0316708969433 + + + + + +SW62 +#labelStyle + +-5.28595684487718,50.0785600552795 + + + + +SW63 + +Small Square SW63 Boundry Box +#Line2 + + +1 + +-5.35885783813868,50.1214532161862 +-5.36516296608275,50.2112245821644 +-5.22525809880897,50.2151966435389 +-5.2192139529486,50.1254127257274 +-5.35885783813868,50.1214532161862 + + + + + +SW63 +#labelStyle + +-5.29211653309333,50.1683477188333 + + + + +SW64 + +Small Square SW64 Boundry Box +#Line2 + + +1 + +-5.36516359825376,50.2112335600999 +-5.37150069632649,50.301002947804 +-5.23133350389668,50.3049876091574 +-5.22525870481346,50.2152056227321 +-5.36516359825376,50.2112335600999 + + + + + +SW64 +#labelStyle + +-5.29830743340152,50.2581334291005 + + + + +SW65 + +Small Square SW65 Boundry Box +#Line2 + + +1 + +-5.37150133170538,50.3010119255415 +-5.37787061139816,50.3907793318067 +-5.23743976813024,50.394776640359 +-5.2313341129769,50.3049965881573 +-5.37150133170538,50.3010119255415 + + + + + +SW65 +#labelStyle + +-5.30452975205622,50.3479171830918 + + + + +SW66 + +Small Square SW66 Boundry Box +#Line2 + + +1 + +-5.37787125000617,50.3907883093459 +-5.38427292474083,50.4805537309847 +-5.24357709622956,50.4845637342864 +-5.23744038030658,50.3947856191653 +-5.37787125000617,50.3907883093459 + + + + + +SW66 +#labelStyle + +-5.3107836971929,50.4376989777969 + + + + +SW67 + +Small Square SW67 Boundry Box +#Line2 + + +1 + +-5.3842735665994,50.4805627083253 +-5.39070785175003,50.5703261421276 +-5.24974569478792,50.5743488880622 +-5.24357771152259,50.4845727128989 +-5.3842735665994,50.4805627083253 + + + + + +SW67 +#labelStyle + +-5.31706947884926,50.5274788101845 + + + + +SW68 + +Small Square SW68 Boundry Box +#Line2 + + +1 + +-5.3907084968808,50.5703351192692 +-5.39717560979582,50.6600965620013 +-5.25594577229324,50.6641320987887 +-5.24974631321839,50.5743578664805 +-5.3907084968808,50.5703351192692 + + + + + +SW68 +#labelStyle + +-5.32338730898676,50.6172566772013 + + + + +SW69 + +Small Square SW69 Boundry Box +#Line2 + + +1 + +-5.39717625822064,50.6601055389436 +-5.40367641824522,50.7498649873478 +-5.26217753914954,50.7539133635473 +-5.2559463938821,50.6641410770125 +-5.39717625822064,50.6601055389436 + + + + + +SW69 +#labelStyle + +-5.32973740151239,50.7070325757721 + + + + +SW70 + +Small Square SW70 Boundry Box +#Line2 + + +1 + +-5.20124774405338,49.8560228572719 +-5.20720110339338,49.9458125536226 +-5.0680452904982,49.9495803916269 +-5.06234920923126,49.8597788062074 +-5.20124774405338,49.8560228572719 + + + + + +SW70 +#labelStyle + +-5.13470417575861,49.9028243764095 + + + + +SW71 + +Small Square SW71 Boundry Box +#Line2 + + +1 + +-5.2072017002885,49.9458215333941 +-5.21318511508883,50.0356093067617 +-5.07377070512082,50.0393890790287 +-5.06804586159841,49.9495893725896 +-5.2072017002885,49.9458215333941 + + + + + +SW71 +#labelStyle + +-5.14054417305971,49.9926281136559 + + + + +SW72 + +Small Square SW72 Boundry Box +#Line2 + + +1 + +-5.21318571499964,50.0356182863408 +-5.21919938267271,50.1254041339444 +-5.07952507386267,50.1291958847868 +-5.07377127910697,50.0393980598034 +-5.21318571499964,50.0356182863408 + + + + + +SW72 +#labelStyle + +-5.14641367871186,50.0824299486615 + + + + +SW73 + +Small Square SW73 Boundry Box +#Line2 + + +1 + +-5.21919998561905,50.1254131133307 +-5.2252441053684,50.215197032371 +-5.08530858743579,50.2190008064098 +-5.07952565075374,50.1292048653732 +-5.21919998561905,50.1254131133307 + + + + + +SW73 +#labelStyle + +-5.15231288680583,50.1722298787913 + + + + +SW74 + +Small Square SW74 Boundry Box +#Line2 + + +1 + +-5.22524471137027,50.2152060115643 +-5.23131948421069,50.3049879992231 +-5.09112143828692,50.3088038413903 +-5.08530916725094,50.2190097868077 +-5.22524471137027,50.2152060115643 + + + + + +SW74 +#labelStyle + +-5.15824199319561,50.2620279013927 + + + + +SW75 + +Small Square SW75 Boundry Box +#Line2 + + +1 + +-5.23132009328828,50.3049969782231 +-5.23742572206614,50.3947770316629 +-5.09696382061699,50.3986049872044 +-5.09112202104548,50.3088128215994 +-5.23132009328828,50.3049969782231 + + + + + +SW75 +#labelStyle + +-5.16420119551821,50.3518240137955 + + + + +SW76 + +Small Square SW76 Boundry Box +#Line2 + + +1 + +-5.23742633423984,50.3947860104693 +-5.24356302365381,50.4845641268331 +-5.10283593040092,50.4884042413115 +-5.09696440633846,50.3986139672244 +-5.23742633423984,50.3947860104693 + + + + + +SW76 +#labelStyle + +-5.17019069321374,50.4416182133118 + + + + +SW77 + +Small Square SW77 Boundry Box +#Line2 + + +1 + +-5.24356363894418,50.4845731054456 +-5.24973159556609,50.5743492818564 +-5.10873796540768,50.5782016011537 +-5.102836519105,50.4884132211422 +-5.24356363894418,50.4845731054456 + + + + + +SW77 +#labelStyle + +-5.17621068754578,50.5314104972349 + + + + +SW78 + +Small Square SW78 Boundry Box +#Line2 + + +1 + +-5.24973221399389,50.5743582602748 +-5.25593164629001,50.6641324938351 +-5.11467012522062,50.6679970641557 +-5.10873855711423,50.5782105807949 +-5.24973221399389,50.5743582602748 + + + + + +SW78 +#labelStyle + +-5.18226138162199,50.6212008628395 + + + + +SW79 + +Small Square SW79 Boundry Box +#Line2 + + +1 + +-5.25593226787618,50.664141472059 +-5.26216338622869,50.7539137598507 +-5.12063261125807,50.7577906277243 +-5.11467071994969,50.6680060436071 +-5.25593226787618,50.664141472059 + + + + + +SW79 +#labelStyle + +-5.1883429804151,50.7109893073814 + + + + +SW80 + +Small Square SW80 Boundry Box +#Line2 + + +1 + +-5.06233531653846,49.8597791735272 +-5.06803137206551,49.9495807601095 +-4.92884679944371,49.9531818098205 +-4.92340820924103,49.8633688587172 +-5.06233531653846,49.8597791735272 + + + + + +SW80 +#labelStyle + +-4.99564874897971,49.9065033719988 + + + + +SW81 + +Small Square SW81 Boundry Box +#Line2 + + +1 + +-5.06803194316315,49.9495897410724 +-5.07375676081625,50.0393894486785 +-4.93431340215553,50.0430019061273 +-4.92884734472763,49.953190791922 +-5.06803194316315,49.9495897410724 + + + + + +SW81 +#labelStyle + +-5.00123067587005,49.9963187598917 + + + + +SW82 + +Small Square SW82 Boundry Box +#Line2 + + +1 + +-5.07375733479981,50.0393984294534 +-5.07951110355594,50.1291962556082 +-4.93980765537193,50.1328201631691 +-4.93431395019544,50.0430108880449 +-5.07375733479981,50.0393984294534 + + + + + +SW82 +#labelStyle + +-5.00684081257634,50.0861322887426 + + + + +SW83 + +Small Square SW83 Boundry Box +#Line2 + + +1 + +-5.0795116804444,50.1292052361947 +-5.08529459099577,50.2190011784071 +-4.94532974127356,50.2226365787497 +-4.93980820618598,50.1328291449027 +-5.0795116804444,50.1292052361947 + + + + + +SW83 +#labelStyle + +-5.01247934470555,50.1759439562164 + + + + +SW84 + +Small Square SW84 Boundry Box +#Line2 + + +1 + +-5.0852951708083,50.2190101588051 +-5.09110741558162,50.3088042145679 +-4.9508798436987,50.3124511506593 +-4.94533029488004,50.2226455602991 +-5.0852951708083,50.2190101588051 + + + + + +SW84 +#labelStyle + +-5.01814645955144,50.2657537599637 + + + + +SW85 + +Small Square SW85 Boundry Box +#Line2 + + +1 + +-5.09110799833754,50.3088131947771 +-5.09694977151355,50.3986053615668 +-4.95645814816198,50.4022638766742 +-4.95088040011608,50.3124601320242 +-5.09110799833754,50.3088131947771 + + + + + +SW85 +#labelStyle + +-5.02384234611345,50.3555616976202 + + + + +SW86 + +Small Square SW86 Boundry Box +#Line2 + + +1 + +-5.09695035723238,50.398614341587 +-5.10282185476562,50.4884046168631 +-4.96206484187328,50.4920747545568 +-4.95645870740889,50.4022728578544 +-5.09695035723238,50.398614341587 + + + + + +SW86 +#labelStyle + +-5.02956719511597,50.4453677668061 + + + + +SW87 + +Small Square SW87 Boundry Box +#Line2 + + +1 + +-5.10282244346704,50.488413596694 +-5.10872386310589,50.578201977899 +-4.96770011375691,50.581883782055 +-4.96206540396854,50.4920837355521 +-5.10282244346704,50.488413596694 + + + + + +SW87 +#labelStyle + +-5.03532119902782,50.5351719651262 + + + + +SW88 + +Small Square SW88 Boundry Box +#Line2 + + +1 + +-5.10872445480977,50.5782109575403 +-5.11465599611684,50.6679974420992 +-4.97336415447107,50.6716909569017 +-4.96770067871949,50.5818927628651 +-5.10872445480977,50.5782109575403 + + + + + +SW88 +#labelStyle + +-5.041104552082,50.6249742901692 + + + + +SW89 + +Small Square SW89 Boundry Box +#Line2 + + +1 + +-5.11465659084323,50.6680064215507 +-5.1206184552159,50.7577910068705 +-4.9790571564275,50.761496276815 +-4.97336472232012,50.6716999375265 +-5.11465659084323,50.6680064215507 + + + + + +SW89 +#labelStyle + +-5.04691745029568,50.7147747395075 + + + + +SW90 + +Small Square SW90 Boundry Box +#Line2 + + +1 + +-4.923394313755,49.8633692094049 +-4.9288328781995,49.9531821616185 +-4.78962084088077,49.9566163419601 +-4.78443992063377,49.8667925502629 +-4.923394313755,49.8633692094049 + + + + + +SW90 +#labelStyle + +-4.8565652987733,49.91001578424 + + + + +SW91 + +Small Square SW91 Boundry Box +#Line2 + + +1 + +-4.92883342348083,49.9531911437201 +-4.93429945502095,50.0430022590398 +-4.79482845115154,50.0464473201003 +-4.78962136033041,49.9566253251478 +-4.92883342348083,49.9531911437201 + + + + + +SW91 +#labelStyle + +-4.86188897132505,49.9998422969172 + + + + +SW92 + +Small Square SW92 Boundry Box +#Line2 + + +1 + +-4.93430000305827,50.0430112409576 +-4.93979368221655,50.1328205172003 +-4.80006240667311,50.136276499412 +-4.79482897322707,50.0464563031082 +-4.93430000305827,50.0430112409576 + + + + + +SW92 +#labelStyle + +-4.86723955348971,50.089666991817 + + + + +SW93 + +Small Square SW93 Boundry Box +#Line2 + + +1 + +-4.93979423302799,50.1328294989341 +-4.94531574196608,50.2226369339038 +-4.80532288107628,50.2261038779805 +-4.80006293139184,50.1362854822399 +-4.93979423302799,50.1328294989341 + + + + + +SW93 +#labelStyle + +-4.87261722237176,50.1794898668917 + + + + +SW94 + +Small Square SW94 Boundry Box +#Line2 + + +1 + +-4.94531629556993,50.2226459154533 +-4.95086581810695,50.3124515069404 +-4.81061004957222,50.31592945388 +-4.80532340845563,50.2261128606282 +-4.94531629556993,50.2226459154533 + + + + + +SW94 +#labelStyle + +-4.87802215668572,50.2693109200812 + + + + +SW95 + +Small Square SW95 Boundry Box +#Line2 + + +1 + +-4.9508663745217,50.3124604883054 +-4.95644409615293,50.4022642340866 +-4.81592408897035,50.4057532251737 +-4.81061057962979,50.3159384363474 +-4.9508663745217,50.3124604883054 + + + + + +SW95 +#labelStyle + +-4.88345453677426,50.3591301493134 + + + + +SW96 + +Small Square SW96 Boundry Box +#Line2 + + +1 + +-4.9564446553972,50.402273215267 +-4.96205076331303,50.4920751131048 +-4.82126517769632,50.4955751899129 +-4.8159246217239,50.4057622074605 +-4.9564446553972,50.402273215267 + + + + + +SW96 +#labelStyle + +-4.88891454462658,50.4489475525034 + + + + +SW97 + +Small Square SW97 Boundry Box +#Line2 + + +1 + +-4.96205132540563,50.4920840941002 +-4.96768600851067,50.5818841417428 +-4.82663349581038,50.5853953461374 +-4.82126571316379,50.495584172019 +-4.96205132540563,50.4920840941002 + + + + + +SW97 +#labelStyle + +-4.89440236389698,50.5387631275532 + + + + +SW98 + +Small Square SW98 Boundry Box +#Line2 + + +1 + +-4.96768657347058,50.581893122553 +-4.97335002240315,50.6716913177336 +-4.83202922502583,50.6752136918747 +-4.82663403400984,50.5854043280626 +-4.96768657347058,50.581893122553 + + + + + +SW98 +#labelStyle + +-4.89991817992375,50.6285768723517 + + + + +SW99 + +Small Square SW99 Boundry Box +#Line2 + + +1 + +-4.97335059024952,50.6717002983585 +-4.97904299740132,50.7614966387954 +-4.83745254872788,50.7650302251396 +-4.83202976597554,50.6752226736186 +-4.97335059024952,50.6717002983585 + + + + + +SW99 +#labelStyle + +-4.90546217974829,50.7183887847741 + + + + + +SX + +Large Square SX Boundry Box +#Line1 + + +1 + +-4.78442602248328,49.8667928843106 +-4.83743838685517,50.7650305699458 +-3.42010653316137,50.7909101406575 +-3.39354030120047,49.8918645391711 +-4.78442602248328,49.8667928843106 + + + + + +SX00 + +Small Square SX00 Boundry Box +#Line2 + + +1 + +-4.78442602248328,49.8667928843106 +-4.78960691695462,49.9566166770656 +-4.65036871158841,49.9598839106906 +-4.64544563179159,49.8700498039565 +-4.78442602248328,49.8667928843106 + + + + + +SX00 +#labelStyle + +-4.71745511691503,49.9133615341528 + + + + +SX01 + +Small Square SX01 Boundry Box +#Line2 + + +1 + +-4.78960743640168,49.9566256602534 +-4.79481450131739,50.0464476562676 +-4.65531715736124,50.0497252431215 +-4.65036920518665,49.9598928949118 +-4.78960743640168,49.9566256602534 + + + + + +SX01 +#labelStyle + +-4.72252035962692,50.0031986452713 + + + + +SX02 + +Small Square SX02 Boundry Box +#Line2 + + +1 + +-4.79481502339033,50.0464566392756 +-4.80004843080038,50.136276836645 +-4.66029064156835,50.1395648152141 +-4.65531765345513,50.0497342271668 +-4.79481502339033,50.0464566392756 + + + + + +SX02 +#labelStyle + +-4.72761121015661,50.0930339779395 + + + + +SX03 + +Small Square SX03 Boundry Box +#Line2 + + +1 + +-4.80004895551649,50.1362858194731 +-4.80530887903349,50.2261042162832 +-4.66528932927309,50.2294026253216 +-4.66029114017431,50.1395737990832 +-4.80004895551649,50.1362858194731 + + + + + +SX03 +#labelStyle + +-4.7327278370882,50.1828675303832 + + + + +SX04 + +Small Square SX04 Boundry Box +#Line2 + + +1 + +-4.80530940641022,50.2261131989311 +-4.81059602122706,50.3159297932565 +-4.67031338704175,50.3192386717889 +-4.6652898304077,50.2294116090144 +-4.80530940641022,50.2261131989311 + + + + + +SX04 +#labelStyle + +-4.73787041053888,50.2726993008186 + + + + +SX05 + +Small Square SX05 Boundry Box +#Line2 + + +1 + +-4.81059655128199,50.315938775724 +-4.81591003418961,50.405753565628 +-4.67536298296047,50.409072952952 +-4.67031389072175,50.3192476553053 +-4.81059655128199,50.315938775724 + + + + + +SX05 +#labelStyle + +-4.7430391021762,50.3625292874519 + + + + +SX06 + +Small Square SX06 Boundry Box +#Line2 + + +1 + +-4.81591056694051,50.4057625479149 +-4.82125109634593,50.495575531449 +-4.68043828665242,50.4989054671377 +-4.67536348920274,50.4090819362918 +-4.81591056694051,50.4057625479149 + + + + + +SX06 +#labelStyle + +-4.74823408523553,50.4523574884793 + + + + +SX07 + +Small Square SX07 Boundry Box +#Line2 + + +1 + +-4.82125163181073,50.4955845135552 +-4.82661938775537,50.5853956887594 +-4.68553946929519,50.5887362126635 +-4.680438795474,50.4989144503007 +-4.82125163181073,50.4955845135552 + + + + + +SX07 +#labelStyle + +-4.75345553453781,50.5421839020865 + + + + +SX08 + +Small Square SX08 Boundry Box +#Line2 + + +1 + +-4.82661992595216,50.5854046706847 +-4.83201509013035,50.6752140355867 +-4.69066670363845,50.6785651878374 +-4.68553998071328,50.5887451956496 +-4.82661992595216,50.5854046706847 + + + + + +SX08 +#labelStyle + +-4.75870362650751,50.6320085264483 + + + + +SX09 + +Small Square SX09 Boundry Box +#Line2 + + +1 + +-4.83201563107738,50.6752230173307 +-4.83743838685517,50.7650305699458 +-4.69582016402181,50.7683923909571 +-4.6906672176704,50.6785741706463 +-4.83201563107738,50.6752230173307 + + + + + +SX09 +#labelStyle + +-4.76397853919086,50.7218313597288 + + + + +SX10 + +Small Square SX10 Boundry Box +#Line2 + + +1 + +-4.64543173110555,49.8700501213567 +-4.65035478511008,49.959884229096 +-4.51109170989011,49.9629844423918 +-4.50642663262392,49.873140546623 +-4.64543173110555,49.8700501213567 + + + + + +SX10 +#labelStyle + +-4.578319496754,49.9165405464777 + + + + +SX11 + +Small Square SX11 Boundry Box +#Line2 + + +1 + +-4.65035527870574,49.9598932133173 +-4.65530320495815,50.0497255625359 +-4.5157808275988,50.0528356011222 +-4.51109217762068,49.9629934275938 +-4.65035527870574,49.9598932133173 + + + + + +SX11 +#labelStyle + +-4.58312614256894,50.0063877292366 + + + + +SX12 + +Small Square SX12 Boundry Box +#Line2 + + +1 + +-4.65530370104943,50.0497345465813 +-4.66027666310973,50.1395651356413 +-4.5204936754391,50.1426850360542 +-4.5157812976946,50.0528445861519 +-4.65530370104943,50.0497345465813 + + + + + +SX12 +#labelStyle + +-4.58795709289059,50.0962331709307 + + + + +SX13 + +Small Square SX13 Boundry Box +#Line2 + + +1 + +-4.66027716171307,50.1395741195105 +-4.66527532462733,50.2294029467653 +-4.52523040989025,50.2325327457958 +-4.52049414791571,50.1426940209114 +-4.66027716171307,50.1395741195105 + + + + + +SX13 +#labelStyle + +-4.59281250776564,50.1860768700459 + + + + +SX14 + +Small Square SX14 Boundry Box +#Line2 + + +1 + +-4.66527582575931,50.2294119304583 +-4.67029935607636,50.319238994253 +-4.5299911888567,50.3223787289487 +-4.5252308847634,50.2325417304805 +-4.66527582575931,50.2294119304583 + + + + + +SX14 +#labelStyle + +-4.59769254869672,50.2759188250611 + + + + +SX15 + +Small Square SX15 Boundry Box +#Line2 + + +1 + +-4.67029985975372,50.3192479777695 +-4.67534892554211,50.4090732764403 +-4.53477617168415,50.4122229841081 +-4.52999166614224,50.3223877134606 +-4.67029985975372,50.3192479777695 + + + + + +SX15 +#labelStyle + +-4.60259737865874,50.3657590344474 + + + + +SX16 + +Small Square SX16 Boundry Box +#Line2 + + +1 + +-4.67534943178172,50.4090822597802 +-4.68042420264684,50.4989057916541 +-4.53958551917589,50.5020655098624 +-4.5347766513981,50.4122319684472 +-4.67534943178172,50.4090822597802 + + + + + +SX16 +#labelStyle + +-4.60752716211556,50.4555974966682 + + + + +SX17 + +Small Square SX17 Boundry Box +#Line2 + + +1 + +-4.68042471146576,50.4989147748172 +-4.68552535856728,50.5887365382118 +-4.54441939360923,50.591906304793 +-4.53958600133439,50.5020744940284 +-4.68042471146576,50.4989147748172 + + + + + +SX17 +#labelStyle + +-4.61248206503677,50.5454342101789 + + + + +SX18 + +Small Square SX18 Boundry Box +#Line2 + + +1 + +-4.68552586998269,50.588745521198 +-4.69065256605219,50.6785655144215 +-4.54927795875231,50.6817453674739 +-4.54441987822859,50.5919152887858 +-4.68552586998269,50.588745521198 + + + + + +SX18 +#labelStyle + +-4.61746225491482,50.6352691734264 + + + + +SX19 + +Small Square SX19 Boundry Box +#Line2 + + +1 + +-4.69065308008144,50.6785744972306 +-4.69580599944026,50.7683927185811 +-4.554161379881,50.7715826964718 +-4.54927844584898,50.6817543512935 +-4.69065308008144,50.6785744972306 + + + + + +SX19 +#labelStyle + +-4.62246790078227,50.7251023848493 + + + + +SX20 + +Small Square SX20 Boundry Box +#Line2 + + +1 + +-4.5064127295314,49.8731408473685 +-4.51107778098952,49.9629847440899 +-4.37179113557805,49.9659178671842 +-4.36738421449262,49.8760647088051 +-4.5064127295314,49.8731408473685 + + + + + +SX20 +#labelStyle + +-4.43915973313749,49.9195527496819 + + + + +SX21 + +Small Square SX21 Boundry Box +#Line2 + + +1 + +-4.5110782487175,49.962993729292 +-4.5157668727575,50.0528359037765 +-4.37622077016352,50.0557783237969 +-4.37179157742549,49.9659268533142 +-4.5110782487175,49.962993729292 + + + + + +SX21 +#labelStyle + +-4.44370762345935,50.0094094768448 + + + + +SX22 + +Small Square SX22 Boundry Box +#Line2 + + +1 + +-4.5157673428507,50.0528448888063 +-4.5204796945262,50.1426853396683 +-4.38067282516868,50.1456370911974 +-4.37622121424565,50.0557873097581 +-4.5157673428507,50.0528448888063 + + + + + +SX22 +#labelStyle + +-4.44827851353719,50.0992644983831 + + + + +SX23 + +Small Square SX23 Boundry Box +#Line2 + + +1 + +-4.5204801670002,50.1426943245257 +-4.52521640277398,50.2325330503733 +-4.38514744847281,50.235494168235 +-4.38067327150023,50.1456460769897 +-4.5204801670002,50.1426943245257 + + + + + +SX23 +#labelStyle + +-4.45287255486411,50.1891178130297 + + + + +SX24 + +Small Square SX24 Boundry Box +#Line2 + + +1 + +-4.5252168776445,50.232542035058 +-4.52997715540444,50.3223790344931 +-4.38964478930244,50.3253495537546 +-4.38514789706863,50.2355031538582 +-4.5252168776445,50.232542035058 + + + + + +SX24 +#labelStyle + +-4.45748990031178,50.2789694195123 + + + + +SX25 + +Small Square SX25 Boundry Box +#Line2 + + +1 + +-4.52997763268734,50.3223880190051 +-4.5347621117624,50.4122232906231 +-4.39416499824656,50.4152032465968 +-4.38964524017752,50.3253585392086 +-4.52997763268734,50.3223880190051 + + + + + +SX25 +#labelStyle + +-4.46213070414587,50.3688193165532 + + + + +SX26 + +Small Square SX26 Boundry Box +#Line2 + + +1 + +-4.53476259147369,50.4122322749623 +-4.53957143265025,50.5020658173516 +-4.39870822727205,50.5050552455977 +-4.39416545141603,50.4152122318815 +-4.53476259147369,50.4122322749623 + + + + + +SX26 +#labelStyle + +-4.46679512204187,50.4586675028694 + + + + +SX27 + +Small Square SX27 Boundry Box +#Line2 + + +1 + +-4.53957191480609,50.5020748015178 +-4.54440528034443,50.5919066132601 +-4.40327462973923,50.5949055495885 +-4.39870868275117,50.5050642307129 +-4.53957191480609,50.5020748015178 + + + + + +SX27 +#labelStyle + +-4.47148331110098,50.5485139771718 + + + + +SX28 + +Small Square SX28 Boundry Box +#Line2 + + +1 + +-4.54440576496111,50.5919155972531 +-4.54926381861217,50.6817456769227 +-4.40786436041773,50.6847541573955 +-4.40327508754341,50.5949145345341 +-4.54440576496111,50.5919155972531 + + + + + +SX28 +#labelStyle + +-4.4761954298663,50.6383587381656 + + + + +SX29 + +Small Square SX29 Boundry Box +#Line2 + + +1 + +-4.54926430570615,50.6817546607424 +-4.55414721272845,50.771583006906 +-4.41247757550251,50.7746010678395 +-4.40786482056252,50.6847631421714 +-4.54926430570615,50.6817546607424 + + + + + +SX29 +#labelStyle + +-4.48093163833922,50.7282017845496 + + + + +SX30 + +Small Square SX30 Boundry Box +#Line2 + + +1 + +-4.36737030912283,49.8760649928893 +-4.37177720438523,49.9659181521682 +-4.2324682898371,49.968684118934 +-4.22831967013687,49.8788222247691 +-4.36737030912283,49.8760649928893 + + + + + +SX30 +#labelStyle + +-4.2999771223356,49.9223980759645 + + + + +SX31 + +Small Square SX31 Boundry Box +#Line2 + + +1 + +-4.37177764623009,49.9659271382984 +-4.37620681301492,50.0557786096843 +-4.23663829476308,50.0585533446084 +-4.23246870578684,49.9686931059394 +-4.37177764623009,49.9659271382984 + + + + + +SX31 +#labelStyle + +-4.30426610704518,50.012263819882 + + + + +SX32 + +Small Square SX32 Boundry Box +#Line2 + + +1 + +-4.37620725709446,50.0557875956456 +-4.38065884193326,50.1456373779916 +-4.24082940906465,50.1484209137001 +-4.23663871281683,50.0585623314482 +-4.37620725709446,50.0557875956456 + + + + + +SX32 +#labelStyle + +-4.30857678539688,50.1021278916666 + + + + +SX33 + +Small Square SX33 Boundry Box +#Line2 + + +1 + +-4.3806592882622,50.1456463637839 +-4.38513343901867,50.2354944559392 +-4.24504177200611,50.2382868252856 +-4.24082982923628,50.1484299003741 +-4.3806592882622,50.1456463637839 + + + + + +SX33 +#labelStyle + +-4.31290930031493,50.1919902902845 + + + + +SX34 + +Small Square SX34 Boundry Box +#Line2 + + +1 + +-4.38513388761187,50.2355034415625 +-4.38963075349681,50.3253498423724 +-4.24927552412091,50.3281510784396 +-4.24504219430962,50.2382958117938 +-4.38513388761187,50.2355034415625 + + + + + +SX34 +#labelStyle + +-4.31726379602449,50.2818510146986 + + + + +SX35 + +Small Square SX35 Boundry Box +#Line2 + + +1 + +-4.38963120436925,50.3253588278264 +-4.3941509359558,50.4152035361315 +-4.25353080722593,50.4180136722342 +-4.2492759485704,50.3281600647819 +-4.38963120436925,50.3253588278264 + + + + + +SX35 +#labelStyle + +-4.32164041806628,50.371710063869 + + + + +SX36 + +Small Square SX36 Boundry Box +#Line2 + + +1 + +-4.39415138912262,50.4152125214162 +-4.39869413836163,50.5050555360528 +-4.257807764436,50.5078746057393 +-4.25353123383565,50.4180226584106 +-4.39415138912262,50.4152125214162 + + + + + +SX36 +#labelStyle + +-4.32603931331145,50.461567436752 + + + + +SX37 + +Small Square SX37 Boundry Box +#Line2 + + +1 + +-4.39869459383808,50.505064521168 +-4.40326051407372,50.5949058409674 +-4.26210654017866,50.5977338780218 +-4.25780819322034,50.5078835917496 +-4.39869459383808,50.505064521168 + + + + + +SX37 +#labelStyle + +-4.33046062997663,50.5514231323004 + + + + +SX38 + +Small Square SX38 Boundry Box +#Line2 + + +1 + +-4.40326097187522,50.5949148259132 +-4.40785021786081,50.6847544497018 +-4.26642728020899,50.687591488146 +-4.26210697115212,50.597742863866 +-4.40326097187522,50.5949148259132 + + + + + +SX38 +#labelStyle + +-4.33490451763921,50.6412771494633 + + + + +SX39 + +Small Square SX39 Boundry Box +#Line2 + + +1 + +-4.40785067800291,50.6847634344778 +-4.41246340591696,50.7746013610767 +-4.27077013162478,50.7774474351729 +-4.26642771338621,50.6876004738239 +-4.40785067800291,50.6847634344778 + + + + + +SX39 +#labelStyle + +-4.33937112725279,50.7311294871856 + + + + +SX40 + +Small Square SX40 Boundry Box +#Line2 + + +1 + +-4.22830576261915,49.8788224921854 +-4.23245435648226,49.9686843871976 +-4.09312447516874,49.9712831352582 +-4.08923429359782,49.881413032509 +-4.22830576261915,49.8788224921854 + + + + + +SX40 +#labelStyle + +-4.16077296196553,49.9250764612614 + + + + +SX41 + +Small Square SX41 Boundry Box +#Line2 + + +1 + +-4.23245477242941,49.968693374203 +-4.23662433543822,50.0585536137225 +-4.09703471243653,50.0611606007934 +-4.09312486520704,49.971292123086 +-4.23245477242941,49.968693374203 + + + + + +SX41 +#labelStyle + +-4.16480289943566,50.0149506938939 + + + + +SX42 + +Small Square SX42 Boundry Box +#Line2 + + +1 + +-4.23662475348938,50.0585626005623 +-4.24081542363862,50.1484211836677 +-4.10096474678088,50.1510364404149 +-4.09703510444804,50.0611695884586 +-4.23662475348938,50.0585626005623 + + + + + +SX42 +#labelStyle + +-4.16885322314769,50.1048232859334 + + + + +SX43 + +Small Square SX43 Boundry Box +#Line2 + + +1 + +-4.24081584380763,50.1484301703418 +-4.24502776034687,50.23828709611 +-4.10491470883702,50.2409106534134 +-4.10096514077861,50.1510454279175 +-4.24081584380763,50.1484301703418 + + + + + +SX43 +#labelStyle + +-4.17292406744251,50.1946942365657 + + + + +SX44 + +Small Square SX44 Boundry Box +#Line2 + + +1 + +-4.24502818264775,50.2382960826184 +-4.24926148609556,50.328151350124 +-4.10888473043097,50.3307832390792 +-4.10491510483409,50.2409196407533 +-4.24502818264775,50.2382960826184 + + + + + +SX44 +#labelStyle + +-4.17701556788413,50.2845635449756 + + + + +SX45 + +Small Square SX45 Boundry Box +#Line2 + + +1 + +-4.24926191054241,50.3281603364665 +-4.25351674270069,50.4180139447819 +-4.112874944593,50.4206541967025 +-4.10888512844063,50.3307922262564 +-4.24926191054241,50.3281603364665 + + + + + +SX45 +#labelStyle + +-4.18112786127344,50.3744312103467 + + + + +SX46 + +Small Square SX46 Boundry Box +#Line2 + + +1 + +-4.25351716930776,50.4180229309584 +-4.25779367327622,50.5078748791535 +-4.11688548557121,50.5105235255727 +-4.11287534462861,50.4206631837168 +-4.25351716930776,50.4180229309584 + + + + + +SX46 +#labelStyle + +-4.18526108566221,50.4642972318612 + + + + +SX47 + +Small Square SX47 Boundry Box +#Line2 + + +1 + +-4.25779410205789,50.5078838651639 +-4.26209242224876,50.5977341523058 +-4.1209164888454,50.6003912249784 +-4.11688588764626,50.5105325124241 +-4.25779410205789,50.5078838651639 + + + + + +SX47 +#labelStyle + +-4.18941538036725,50.5541616086995 + + + + +SX48 + +Small Square SX48 Boundry Box +#Line2 + + +1 + +-4.26209285321954,50.59774313815 +-4.26641313537252,50.6875917633031 +-4.12496809114101,50.6902572942077 +-4.12091689297349,50.6004002116669 +-4.26209285321954,50.59774313815 + + + + + +SX48 +#labelStyle + +-4.19359088598474,50.6440243400405 + + + + +SX49 + +Small Square SX49 Boundry Box +#Line2 + + +1 + +-4.26641356854704,50.687600748981 +-4.27075595974436,50.7774477112063 +-4.12904043044333,50.7801217325473 +-4.12496849733588,50.6902662807331 +-4.26641356854704,50.687600748981 + + + + + +SX49 +#labelStyle + +-4.19778774440482,50.7338854250611 + + + + +SX50 + +Small Square SX50 Boundry Box +#Line2 + + +1 + +-4.08922038406163,49.8814132832516 +-4.09311053978218,49.9712833867952 +-3.95376099531464,49.9737148575289 +-3.95012938014307,49.883837073752 +-4.08922038406163,49.8814132832516 + + + + + +SX50 +#labelStyle + +-4.0215485509158,49.9275878452504 + + + + +SX51 + +Small Square SX51 Boundry Box +#Line2 + + +1 + +-4.09311092981789,49.9712923746231 +-4.09702075106658,50.0611608531279 +-3.95741133547703,50.0636000333662 +-3.95376135942861,49.9737238461264 +-4.09311092981789,49.9712923746231 + + + + + +SX51 +#labelStyle + +-4.0253193080256,50.0174700381908 + + + + +SX52 + +Small Square SX52 Boundry Box +#Line2 + + +1 + +-4.09702114307549,50.0611698407932 +-4.10095075929626,50.1510366935499 +-3.96108015923951,50.1534836119957 +-3.95741170143329,50.0636090218039 +-4.09702114307549,50.0611698407932 + + + + + +SX52 +#labelStyle + +-4.02910914276765,50.1073506201231 + + + + +SX53 + +Small Square SX53 Boundry Box +#Line2 + + +1 + +-4.10095115329137,50.1510456810526 +-4.10490069510558,50.2409109073519 +-3.96476758859496,50.2433655929086 +-3.96108052705022,50.1534926002737 +-4.10095115329137,50.1510456810526 + + + + + +SX53 +#labelStyle + +-4.03291818088592,50.1972295904393 + + + + +SX54 + +Small Square SX54 Boundry Box +#Line2 + + +1 + +-4.10490109110002,50.2409198946919 +-4.10887069031968,50.3307834938242 +-3.96847374664856,50.3332459755971 +-3.96476795827237,50.2433745810268 +-4.10490109110002,50.2409198946919 + + + + + +SX54 +#labelStyle + +-4.03674654926945,50.2871069485322 + + + + +SX55 + +Small Square SX55 Boundry Box +#Line2 + + +1 + +-4.10887108832669,50.3307924810015 +-4.11286087796795,50.420654452257 +-3.97219875763031,50.4231247595554 +-3.96847411820503,50.3332549635555 +-4.10887108832669,50.3307924810015 + + + + + +SX55 +#labelStyle + +-4.04059437596537,50.3769826937953 + + + + +SX56 + +Small Square SX56 Boundry Box +#Line2 + + +1 + +-4.1128612780009,50.4206634392714 +-4.11687139229762,50.5105237819397 +-3.97594274690781,50.5130019442785 +-3.97219913107832,50.4231337473538 +-4.1128612780009,50.4206634392714 + + + + + +SX56 +#labelStyle + +-4.04446179019189,50.4668568256226 + + + + +SX57 + +Small Square SX57 Boundry Box +#Line2 + + +1 + +-4.11687179436999,50.5105327687912 +-4.12090236878757,50.6003914821611 +-3.9797058409991,50.6028775292629 +-3.97594312225995,50.513010931917 +-4.11687179436999,50.5105327687912 + + + + + +SX57 +#labelStyle + +-4.04834892235163,50.5567293434083 + + + + +SX58 + +Small Square SX58 Boundry Box +#Line2 + + +1 + +-4.12090277291298,50.6004004688496 +-4.12495394416236,50.6902575522091 +-3.98348816758582,50.6927515140058 +-3.9797062182681,50.6028865167414 +-4.12090277291298,50.6004004688496 + + + + + +SX58 +#labelStyle + +-4.05225590404504,50.6466002465468 + + + + +SX59 + +Small Square SX59 Boundry Box +#Line2 + + +1 + +-4.12495435035453,50.6902665387346 +-4.12902625640635,50.7801219913706 +-3.98728985552635,50.7826238980055 +-3.98348854678448,50.6927605013243 +-4.12495435035453,50.6902665387346 + + + + + +SX59 +#labelStyle + +-4.05618286808403,50.7364695344325 + + + + +SX60 + +Small Square SX60 Boundry Box +#Line2 + + +1 + +-3.95011546871799,49.8838373078151 +-3.95374705802679,49.9737150923338 +-3.81437915518009,49.9759792308782 +-3.81100622619097,49.8860942939618 +-3.95011546871799,49.8838373078151 + + + + + +SX60 +#labelStyle + +-3.88230518927019,49.9299321713554 + + + + +SX61 + +Small Square SX61 Boundry Box +#Line2 + + +1 + +-3.95374742213816,49.9737240809313 +-3.95739737219328,50.0636002689155 +-3.81776947735447,50.0658715871239 +-3.81437949335769,49.9759882201923 +-3.95374742213816,49.9737240809313 + + + + + +SX61 +#labelStyle + +-3.88581664141848,50.0198217958518 + + + + +SX62 + +Small Square SX62 Boundry Box +#Line2 + + +1 + +-3.95739773814694,50.0636092573533 +-3.96106616982846,50.1534838482924 +-3.82117696855266,50.1557623729021 +-3.81776981724334,50.065880576281 +-3.95739773814694,50.0636092573533 + + + + + +SX62 +#labelStyle + +-3.88934586145708,50.1097098369671 + + + + +SX63 + +Small Square SX63 Boundry Box +#Line2 + + +1 + +-3.96106653763655,50.1534928365705 +-3.96475357292434,50.2433658299553 +-3.82460174211279,50.2456515878901 +-3.82117731016408,50.1557713619021 +-3.96106653763655,50.1534928365705 + + + + + +SX63 +#labelStyle + +-3.89289296652027,50.199596294286 + + + + +SX64 + +Small Square SX64 Boundry Box +#Line2 + + +1 + +-3.96475394259911,50.2433748180736 +-3.96845970458523,50.3332462133968 +-3.82804391240664,50.3355392317689 +-3.82460208545816,50.2456605767331 +-3.96475394259911,50.2433748180736 + + + + + +SX64 +#labelStyle + +-3.89645807480925,50.2894811673956 + + + + +SX65 + +Small Square SX65 Boundry Box +#Line2 + + +1 + +-3.96846007613905,50.3332552013552 +-3.97218468904025,50.4231249981108 +-3.83150359485124,50.4254253042223 +-3.82804425749743,50.3355482204547 +-3.96846007613905,50.3332552013552 + + + + + +SX65 +#labelStyle + +-3.90004130560428,50.3793644558855 + + + + +SX66 + +Small Square SX66 Boundry Box +#Line2 + + +1 + +-3.97218506248559,50.4231339859093 +-3.9759286516561,50.5130021835926 +-3.83498090592076,50.5153098049373 +-3.83150394169905,50.425434292751 +-3.97218506248559,50.4231339859093 + + + + + +SX66 +#labelStyle + +-3.90364277927675,50.4692461593475 + + + + +SX67 + +Small Square SX67 Boundry Box +#Line2 + + +1 + +-3.97592902700557,50.5130111712311 +-3.97969171894994,50.6028777693384 +-3.83847596315844,50.6051927336036 +-3.83498125453729,50.5153187933088 +-3.97592902700557,50.5130111712311 + + + + + +SX67 +#labelStyle + +-3.90726261730167,50.5591262773755 + + + + +SX68 + +Small Square SX68 Boundry Box +#Line2 + + +1 + +-3.97969209621624,50.6028867568169 +-3.98347401860248,50.6927517548457 +-3.84198888518883,50.6950740899137 +-3.83847631355551,50.6052017218178 +-3.97969209621624,50.6028867568169 + + + + + +SX68 +#labelStyle + +-3.9109009422701,50.6490048095652 + + + + +SX69 + +Small Square SX69 Boundry Box +#Line2 + + +1 + +-3.98347439779845,50.6927607421642 +-3.98727567947123,50.7826241396126 +-3.84551979173,50.7849538735627 +-3.84198923737834,50.6950830779707 +-3.98347439779845,50.6927607421642 + + + + + +SX69 +#labelStyle + +-3.9145578779019,50.7388817555143 + + + + +SX70 + +Small Square SX70 Boundry Box +#Line2 + + +1 + +-3.81099231300671,49.8860945113402 +-3.8143652161215,49.9759794489455 +-3.67498026075731,49.9780762042017 +-3.67186612923472,49.8881846423437 +-3.81099231300671,49.8860945113402 + + + + + +SX70 +#labelStyle + +-3.74304417823148,49.932109386751 + + + + +SX71 + +Small Square SX71 Boundry Box +#Line2 + + +1 + +-3.81436555429651,49.9759884382597 +-3.81775551228832,50.0658718058828 +-3.67811045263788,50.0679752106504 +-3.67498057298738,49.9780851941796 +-3.81436555429651,49.9759884382597 + + + + + +SX71 +#labelStyle + +-3.74629620934936,50.0220059137292 + + + + +SX72 + +Small Square SX72 Boundry Box +#Line2 + + +1 + +-3.81775585217459,50.06588079504 +-3.82116297734744,50.155762592355 +-3.68125649794394,50.1578726714031 +-3.67811076644808,50.0679842004738 +-3.81775585217459,50.06588079504 + + + + + +SX72 +#labelStyle + +-3.7495646975606,50.1119008829929 + + + + +SX73 + +Small Square SX73 Boundry Box +#Line2 + + +1 + +-3.82116331895625,50.1557715813551 +-3.82458772463613,50.2456518080398 +-3.6844185013474,50.2477685863101 +-3.6812568133447,50.1578816610719 +-3.82116331895625,50.1557715813551 + + + + + +SX73 +#labelStyle + +-3.75284975137791,50.2017942943058 + + + + +SX74 + +Small Square SX74 Boundry Box +#Line2 + + +1 + +-3.82458806797886,50.2456607968828 +-3.82802986852529,50.3355394526179 +-3.68759656847496,50.3376629552268 +-3.68441881834924,50.2477775758243 +-3.82458806797886,50.2456607968828 + + + + + +SX74 +#labelStyle + +-3.75615148030264,50.2916861474357 + + + + +SX75 + +Small Square SX75 Boundry Box +#Line2 + + +1 + +-3.82803021361343,50.3355484413038 +-3.83148952443107,50.4254255257733 +-3.69079080591884,50.427555778013 +-3.68759688708848,50.3376719445863 +-3.82803021361343,50.3355484413038 + + + + + +SX75 +#labelStyle + +-3.75946999483594,50.3815764421543 + + + + +SX76 + +Small Square SX76 Boundry Box +#Line2 + + +1 + +-3.83148987127622,50.425434514302 +-3.83496680882673,50.5153100271928 +-3.69400132124778,50.5174470545334 +-3.69079112615476,50.427564767218 +-3.83148987127622,50.425434514302 + + + + + +SX76 +#labelStyle + +-3.76280540649008,50.4714651782371 + + + + +SX77 + +Small Square SX77 Boundry Box +#Line2 + + +1 + +-3.8349671574406,50.5153190155644 +-3.83846183925465,50.6051929565664 +-3.6972282230181,50.6073367846569 +-3.6940016431169,50.5174560435837 +-3.8349671574406,50.5153190155644 + + + + + +SX77 +#labelStyle + +-3.76615782779988,50.5613523554637 + + + + +SX78 + +Small Square SX78 Boundry Box +#Line2 + + +1 + +-3.83846218964903,50.6052019447807 +-3.84197473433844,50.6950743135864 +-3.70047162078489,50.6972249682569 +-3.69722854653132,50.6073457735526 +-3.83846218964903,50.6052019447807 + + + + + +SX78 +#labelStyle + +-3.76952737233433,50.6512379736169 + + + + +SX79 + +Small Square SX79 Boundry Box +#Line2 + + +1 + +-3.84197508652525,50.6950833016435 +-3.84550561379527,50.784954097948 +-3.70373162511346,50.7871116052109 +-3.70047194595323,50.6972339569979 +-3.84197508652525,50.6950833016435 + + + + + +SX79 +#labelStyle + +-3.77291415470838,50.7411220324832 + + + + +SX80 + +Small Square SX80 Boundry Box +#Line2 + + +1 + +-3.67185221442108,49.8881848430325 +-3.67496632005864,49.9780764055266 +-3.53556561904855,49.9800057301626 +-3.53271038776635,49.8901080718474 +-3.67185221442108,49.8881848430325 + + + + + +SX80 +#labelStyle + +-3.60376682004511,49.9341194423656 + + + + +SX81 + +Small Square SX81 Boundry Box +#Line2 + + +1 + +-3.6749666322861,49.9780853955045 +-3.67809648592084,50.0679754126138 +-3.53843557691764,50.0699108563199 +-3.53556590532074,49.9800147207514 +-3.6749666322861,49.9780853955045 + + + + + +SX81 +#labelStyle + +-3.60675932260766,50.0240223424524 + + + + +SX82 + +Small Square SX82 Boundry Box +#Line2 + + +1 + +-3.67809679972844,50.0679844024372 +-3.68124250507694,50.1578728740074 +-3.54132007166987,50.1598144595817 +-3.53843586463875,50.0699198467564 +-3.67809679972844,50.0679844024372 + + + + + +SX82 +#labelStyle + +-3.60976697048906,50.1139237085283 + + + + +SX83 + +Small Square SX83 Boundry Box +#Line2 + + +1 + +-3.68124282047508,50.1578818636762 +-3.68440448219796,50.2477687895577 +-3.54421919930027,50.2497165399575 +-3.54132036084946,50.1598234498658 +-3.68124282047508,50.1578818636762 + + + + + +SX83 +#labelStyle + +-3.61278986356945,50.2038235405224 + + + + +SX84 + +Small Square SX84 Boundry Box +#Line2 + + +1 + +-3.68440479919716,50.2477777790719 +-3.68758252290972,50.33766315912 +-3.54713305667964,50.3396170974634 +-3.54421948994797,50.2497255300894 +-3.68440479919716,50.2477777790719 + + + + + +SX84 +#labelStyle + +-3.61582810263915,50.2937218383692 + + + + +SX85 + +Small Square SX85 Boundry Box +#Line2 + + +1 + +-3.68758284152059,50.3376721484796 +-3.69077673380357,50.4275559825543 +-3.55006174156452,50.4295161321212 +-3.54713334880519,50.3396260874429 +-3.68758284152059,50.3376721484796 + + + + + +SX85 +#labelStyle + +-3.61888178940895,50.3836186020088 + + + + +SX86 + +Small Square SX86 Boundry Box +#Line2 + + +1 + +-3.69077705403683,50.4275649717594 +-3.69398722244736,50.5174472597253 +-3.55300535260713,50.5194136439593 +-3.55006203517774,50.4295251219486 +-3.69077705403683,50.4275649717594 + + + + + +SX86 +#labelStyle + +-3.62195102652049,50.4735138313867 + + + + +SX87 + +Small Square SX87 Boundry Box +#Line2 + + +1 + +-3.69398754431381,50.5174562487757 +-3.69721409739651,50.6073369905018 +-3.55596398936558,50.6093096330114 +-3.55300564771792,50.5194226336343 +-3.69398754431381,50.5174562487757 + + + + + +SX87 +#labelStyle + +-3.62503591755681,50.5634075264535 + + + + +SX88 + +Small Square SX88 Boundry Box +#Line2 + + +1 + +-3.69721442090704,50.6073459793976 +-3.70045746820519,50.6972251747573 +-3.55893775231421,50.6992040993175 +-3.55596428598396,50.6093186225342 +-3.69721442090704,50.6073459793976 + + + + + +SX88 +#labelStyle + +-3.62813656705307,50.6532996871651 + + + + +SX89 + +Small Square SX89 Boundry Box +#Line2 + + +1 + +-3.70045779337083,50.6972341634984 +-3.7037174454378,50.7871118123693 +-3.56192674285394,50.7890970429232 +-3.55893805045026,50.699213088688 +-3.70045779337083,50.6972341634984 + + + + + +SX89 +#labelStyle + +-3.63125308050736,50.7431903134825 + + + + +SX90 + +Small Square SX90 Boundry Box +#Line2 + + +1 + +-3.53269647145321,49.8901082558421 +-3.53555167684053,49.9800059147405 +-3.39613653798899,49.9817677651954 +-3.39354030120047,49.8918645391711 +-3.53269647145321,49.8901082558421 + + + + + +SX90 +#labelStyle + +-3.46447441792263,49.935962292886 + + + + +SX91 + +Small Square SX91 Boundry Box +#Line2 + + +1 + +-3.53555196311013,49.9800149053293 +-3.53842160868133,50.0699110414833 +-3.39874616672762,50.0716784803007 +-3.39613679829385,49.981776756342 +-3.53555196311013,49.9800149053293 + + + + + +SX91 +#labelStyle + +-3.46720729295977,50.0258710364317 + + + + +SX92 + +Small Square SX92 Boundry Box +#Line2 + + +1 + +-3.53842189639983,50.0699200319198 +-3.54130607727356,50.1598146453326 +-3.40136901494107,50.1615876933378 +-3.39874642835008,50.0716874712971 +-3.53842189639983,50.0699200319198 + + + + + +SX92 +#labelStyle + +-3.46995400064126,50.1157782677049 + + + + +SX93 + +Small Square SX93 Boundry Box +#Line2 + + +1 + +-3.54130636645052,50.1598236356169 +-3.54420517861138,50.2497167262983 +-3.40400516993772,50.2514954044618 +-3.40136927788983,50.161596684184 +-3.54130636645052,50.1598236356169 + + + + + +SX93 +#labelStyle + +-3.47271463220457,50.2056839867862 + + + + +SX94 + +Small Square SX94 Boundry Box +#Line2 + + +1 + +-3.54420546925645,50.2497257164302 +-3.54711900956475,50.3396172843962 +-3.40665471982264,50.3414016138354 +-3.40400543422155,50.2515043951578 +-3.54420546925645,50.2497257164302 + + + + + +SX94 +#labelStyle + +-3.47548927971873,50.2955881937633 + + + + +SX95 + +Small Square SX95 Boundry Box +#Line2 + + +1 + +-3.54711930168765,50.3396262743758 +-3.55004766788929,50.4295163196483 +-3.40931775350658,50.4313063216287 +-3.40665498545039,50.3414106043813 +-3.54711930168765,50.3396262743758 + + + + + +SX95 +#labelStyle + +-3.47827803609373,50.3854908887307 + + + + +SX96 + +Small Square SX96 Boundry Box +#Line2 + + +1 + +-3.55004796149984,50.4295253094757 +-3.55299125223634,50.5194138320828 +-3.41199436071513,50.5212095280192 +-3.40931802048719,50.4313153120244 +-3.55004796149984,50.4295253094757 + + + + + +SX96 +#labelStyle + +-3.48108099509005,50.4753920717895 + + + + +SX97 + +Small Square SX97 Boundry Box +#Line2 + + +1 + +-3.55299154734446,50.5194228217579 +-3.55594986216312,50.6093098217337 +-3.41468463199791,50.6111112331917 +-3.41199462905761,50.5212185182648 +-3.55299154734446,50.5194228217579 + + + + + +SX97 +#labelStyle + +-3.48389825132825,50.5652917430477 + + + + +SX98 + +Small Square SX98 Boundry Box +#Line2 + + +1 + +-3.55595015877881,50.6093188112565 +-3.55892359814304,50.6992042886409 +-3.41738865873798,50.7010114373381 +-3.41468490171135,50.6111202232871 +-3.55595015877881,50.6093188112565 + + + + + +SX98 +#labelStyle + +-3.48672990029881,50.6551899026196 + + + + +SX99 + +Small Square SX99 Boundry Box +#Line2 + + +1 + +-3.55892389627639,50.6992132780114 +-3.56191256157612,50.7890972328498 +-3.42010653316137,50.7909101406575 +-3.41738892983156,50.7010204272834 +-3.55892389627639,50.6992132780114 + + + + + +SX99 +#labelStyle + +-3.48957603837198,50.7450865506263 + + + + + +SY + +Large Square SY Boundry Box +#Line1 + + +1 + +-3.39352638351782,49.8918647064676 +-3.42009235042025,50.790910313348 +-2.00136740058874,50.799555145322 +-2.00133683290219,49.9002394517392 +-3.39352638351782,49.8918647064676 + + + + + +SY00 + +Small Square SY00 Boundry Box +#Line2 + + +1 + +-3.39352638351782,49.8918647064676 +-3.39612259440247,49.9817679330221 +-3.25669432636963,49.9833622695087 +-3.25435716979799,49.8934540047646 +-3.39352638351782,49.8918647064676 + + + + + +SY00 +#labelStyle + +-3.32516827596496,49.9376378967602 + + + + +SY01 + +Small Square SY01 Boundry Box +#Line2 + + +1 + +-3.39612285470473,49.9817769241688 +-3.39873219710372,50.0716786486598 +-3.25904353946707,50.0732780425585 +-3.25669456069853,49.9833712611602 +-3.39612285470473,49.9817769241688 + + + + + +SY01 +#labelStyle + +-3.32764143307143,50.0275519538616 + + + + +SY02 + +Small Square SY02 Boundry Box +#Line2 + + +1 + +-3.39873245872357,50.0716876396563 +-3.401355019148,50.1615878622313 +-3.26140465384329,50.1631923323922 +-3.2590437749822,50.0732870340616 +-3.39873245872357,50.0716876396563 + + + + + +SY02 +#labelStyle + +-3.33012710932553,50.1174645184614 + + + + +SY03 + +Small Square SY03 Boundry Box +#Line2 + + +1 + +-3.40135528209414,50.1615968530775 +-3.40399114784283,50.2514955738916 +-3.26377774811114,50.2531051392966 +-3.26140489055246,50.163201323747 +-3.40135528209414,50.1615968530775 + + + + + +SY03 +#labelStyle + +-3.33262538731277,50.2073755907784 + + + + +SY04 + +Small Square SY04 Boundry Box +#Line2 + + +1 + +-3.40399141212403,50.2515045645877 +-3.40664067129241,50.3414017838035 +-3.26616290160095,50.3430164635673 +-3.26377798602226,50.2531141305031 +-3.40399141212403,50.2515045645877 + + + + + +SY04 +#labelStyle + +-3.33513635037151,50.2972851710393 + + + + +SY05 + +Small Square SY05 Boundry Box +#Line2 + + +1 + +-3.40664093691752,50.3414107743494 +-3.40930367840661,50.4313064921372 +-3.26856019436858,50.4329263055084 +-3.26616314072198,50.3430254546256 +-3.40664093691752,50.3414107743494 + + + + + +SY05 +#labelStyle + +-3.33766008260146,50.387193259479 + + + + +SY06 + +Small Square SY06 Boundry Box +#Line2 + + +1 + +-3.40930394538455,50.431315482533 +-3.41198025891009,50.5212096990701 +-3.2709697072037,50.5228346654328 +-3.26856043470757,50.4329352964185 +-3.40930394538455,50.431315482533 + + + + + +SY06 +#labelStyle + +-3.34019666887226,50.4770998563405 + + + + +SY07 + +Small Square SY07 Boundry Box +#Line2 + + +1 + +-3.41198052724989,50.5212186893157 +-3.4146705033516,50.611111404787 +-3.27339152163806,50.6127415436617 +-3.27096994876876,50.5228436561947 +-3.41198052724989,50.5212186893157 + + + + + +SY07 +#labelStyle + +-3.34274619483225,50.5670049618745 + + + + +SY08 + +Small Square SY08 Boundry Box +#Line2 + + +1 + +-3.41467077306235,50.6111203948825 +-3.41737450311329,50.70101160948 +-3.275825719954,50.7026469405248 +-3.27339176443738,50.6127505342754 +-3.41467077306235,50.6111203948825 + + + + + +SY08 +#labelStyle + +-3.34530874691731,50.6569085763399 + + + + +SY09 + +Small Square SY09 Boundry Box +#Line2 + + +1 + +-3.41737477420417,50.7010205994253 +-3.42009235042025,50.790910313348 +-3.27827238519296,50.7925508563601 +-3.27582596399585,50.7026559309904 +-3.41737477420417,50.7010205994253 + + + + + +SY09 +#labelStyle + +-3.34788441235981,50.7468107000032 + + + + +SY10 + +Small Square SY10 Boundry Box +#Line2 + + +1 + +-3.25434325087591,49.893454155359 +-3.25668038153552,49.9833624205805 +-3.11724029375989,49.9847892070886 +-3.11516229458966,49.894876432832 +-3.25434325087591,49.893454155359 + + + + + +SY10 +#labelStyle + +-3.18584969908564,49.9391462162004 + + + + +SY11 + +Small Square SY11 Boundry Box +#Line2 + + +1 + +-3.25668061586183,49.9833714122321 +-3.25902956858736,50.0732781941096 +-3.11932901332247,50.0747095068592 +-3.1172405021051,49.9847981991919 +-3.25668061586183,49.9833714122321 + + + + + +SY11 +#labelStyle + +-3.18806305643013,50.0290650567239 + + + + +SY12 + +Small Square SY12 Boundry Box +#Line2 + + +1 + +-3.25902980409988,50.0732871856127 +-3.26139065678612,50.1631924844242 +-3.12142831525841,50.1646283402888 +-3.11932922272244,50.0747184988159 +-3.25902980409988,50.0732871856127 + + + + + +SY12 +#labelStyle + +-3.19028761868114,50.1189824225474 + + + + +SY13 + +Small Square SY13 Boundry Box +#Line2 + + +1 + +-3.26139089349268,50.1632014757791 +-3.26376372474379,50.2531052918115 +-3.12353826947704,50.2545457077822 +-3.1214285257201,50.1646373320989 +-3.26139089349268,50.1632014757791 + + + + + +SY13 +#labelStyle + +-3.19252345976387,50.2088983140139 + + + + +SY14 + +Small Square SY14 Boundry Box +#Line2 + + +1 + +-3.26376396265228,50.2531142830181 +-3.26614885178981,50.3430166165668 +-3.12565894652582,50.3444616097537 +-3.12353848100748,50.2545546994456 +-3.26376396265228,50.2531142830181 + + + + + +SY14 +#labelStyle + +-3.19477065427749,50.2988127314756 + + + + +SY15 + +Small Square SY15 Boundry Box +#Line2 + + +1 + +-3.26614909090819,50.3430256076252 +-3.26854611797916,50.4329264589944 +-3.12779041759752,50.4343760466277 +-3.12565915913209,50.3444706012706 +-3.26614909090819,50.3430256076252 + + + + + +SY15 +#labelStyle + +-3.1970292775028,50.3887256752939 + + + + +SY16 + +Small Square SY16 Boundry Box +#Line2 + + +1 + +-3.26854635831549,50.4329354499045 +-3.27095560410061,50.5228348194071 +-3.12993275453756,50.524289018838 +-3.12779063128678,50.4343850379982 +-3.26854635831549,50.4329354499045 + + + + + +SY16 +#labelStyle + +-3.1992994054099,50.4786371458392 + + + + +SY17 + +Small Square SY17 Boundry Box +#Line2 + + +1 + +-3.270955845663,50.522843810169 +-3.27337739168503,50.6127416981261 +-3.13208602985139,50.6142005268281 +-3.12993296931701,50.524298010062 +-3.270955845663,50.522843810169 + + + + + +SY17 +#labelStyle + +-3.20158111466605,50.5685471434913 + + + + +SY18 + +Small Square SY18 Boundry Box +#Line2 + + +1 + +-3.27337763448166,50.6127506887399 +-3.27581156301382,50.7026470954812 +-3.13425031671204,50.704110571051 +-3.13208624572833,50.6142095179057 +-3.27337763448166,50.6127506887399 + + + + + +SY18 +#labelStyle + +-3.20387448264353,50.6584556686388 + + + + +SY19 + +Small Square SY19 Boundry Box +#Line2 + + +1 + +-3.27581180705296,50.7026560859469 +-3.27825820112751,50.7925510118104 +-3.13642568896769,50.794019151969 +-3.13425053369381,50.7041195619822 +-3.27581180705296,50.7026560859469 + + + + + +SY19 +#labelStyle + +-3.20617958742777,50.7483627216793 + + + + +SY20 + +Small Square SY20 Boundry Box +#Line2 + + +1 + +-3.11514837455828,49.894876566721 +-3.1172263478092,49.984789341402 +-2.97777575043025,49.9860485457009 +-2.97595697729943,49.8961317913345 +-3.11514837455828,49.894876566721 + + + + + +SY20 +#labelStyle + +-3.04651999293379,49.9404872171865 + + + + +SY21 + +Small Square SY21 Boundry Box +#Line2 + + +1 + +-3.1172265561518,49.9847983335054 +-3.11931504131882,50.0747096415988 +-2.97960390718922,50.0759728407719 +-2.97777593278485,49.986057538203 +-3.1172265561518,49.9847983335054 + + + + + +SY21 +#labelStyle + +-3.04847347726724,50.0304103107906 + + + + +SY22 + +Small Square SY22 Boundry Box +#Line2 + + +1 + +-3.11931525071617,50.0747186335555 +-3.12141431706987,50.1646284754561 +-2.98144132678521,50.1658956843982 +-2.97960409046707,50.0759818331288 +-3.11931525071617,50.0747186335555 + + + + + +SY22 +#labelStyle + +-3.05043685159968,50.1203319455254 + + + + +SY23 + +Small Square SY23 Boundry Box +#Line2 + + +1 + +-3.12141452752894,50.1646374672662 +-3.12352424497082,50.2545458433787 +-2.98328807041692,50.2558170770887 +-2.98144151099239,50.16590467661 +-3.12141452752894,50.1646374672662 + + + + + +SY23 +#labelStyle + +-3.05241018118849,50.2102521218443 + + + + +SY24 + +Small Square SY24 Boundry Box +#Line2 + + +1 + +-3.12352445649862,50.2545548350422 +-3.12564489556825,50.3444617457812 +-2.98514419984172,50.345737019363 +-2.98328825555958,50.2558260691555 +-3.12352445649862,50.2545548350422 + + + + + +SY24 +#labelStyle + +-3.05439353188605,50.300170840211 + + + + +SY25 + +Small Square SY25 Boundry Box +#Line2 + + +1 + +-3.12564510817187,50.3444707372981 +-3.12777634005405,50.4343761830877 +-2.98700977738198,50.4356555117512 +-2.98514438592607,50.3457460112847 +-3.12564510817187,50.3444707372981 + + + + + +SY25 +#labelStyle + +-3.05638697014655,50.3900881010994 + + + + +SY26 + +Small Square SY26 Boundry Box +#Line2 + + +1 + +-3.12777655374063,50.4343851744582 +-3.12991865027272,50.5242891557322 +-2.98888486593146,50.525572554794 +-2.98700996441428,50.4356645035279 +-3.12777655374063,50.4343851744582 + + + + + +SY26 +#labelStyle + +-3.05839056303272,50.4800039049934 + + + + +SY27 + +Small Square SY27 Boundry Box +#Line2 + + +1 + +-3.12991886504949,50.5242981469562 +-3.13207189872883,50.6142006641581 +-2.99076952896179,50.615488149043 +-2.98888505391802,50.5255815464259 +-3.12991886504949,50.5242981469562 + + + + + +SY27 +#labelStyle + +-3.06040437822279,50.5699182523873 + + + + +SY28 + +Small Square SY28 Boundry Box +#Line2 + + +1 + +-3.13207211460307,50.6142096552357 +-3.13423615859448,50.7041107088184 +-2.99266383052908,50.7054022950598 +-2.990769717909,50.61549714053 +-3.13207211460307,50.6142096552357 + + + + + +SY28 +#labelStyle + +-3.06242848401748,50.6598311437853 + + + + +SY29 + +Small Square SY29 Boundry Box +#Line2 + + +1 + +-3.13423637557355,50.7041196997496 +-3.13641150371695,50.7940192901756 +-2.99456783528056,50.7953149934169 +-2.99266402044337,50.705411286402 +-3.13423637557355,50.7041196997496 + + + + + +SY29 +#labelStyle + +-3.06446294934707,50.7497425797017 + + + + +SY30 + +Small Square SY30 Boundry Box +#Line2 + + +1 + +-2.97594305628895,49.8961319085151 +-2.97776180349402,49.986048663253 +-2.83830200727464,49.9871402568941 +-2.83674252026782,49.897220051993 +-2.97594305628895,49.8961319085151 + + + + + +SY30 +#labelStyle + +-2.90718046381713,49.9416608694676 + + + + +SY31 + +Small Square SY31 Boundry Box +#Line2 + + +1 + +-2.97776198584603,49.9860576557552 +-2.97958993419354,50.0759729586969 +-2.83986954059321,50.077068015671 +-2.83830216363261,49.9871492497419 +-2.97776198584603,49.9860576557552 + + + + + +SY31 +#labelStyle + +-2.90887401048009,50.0315876856264 + + + + +SY32 + +Small Square SY32 Boundry Box +#Line2 + + +1 + +-2.97959011746878,50.0759819510539 +-2.98142732759809,50.1658958026976 +-2.84144501666009,50.1669943359195 +-2.83986969774285,50.0770770083749 +-2.97959011746878,50.0759819510539 + + + + + +SY32 +#labelStyle + +-2.91057613164619,50.1215130567739 + + + + +SY33 + +Small Square SY33 Boundry Box +#Line2 + + +1 + +-2.98142751180265,50.1659047949094 +-2.98327404490551,50.2558171957639 +-2.8430284879571,50.2569192182387 +-2.84144517460662,50.1670033284796 +-2.98142751180265,50.1659047949094 + + + + + +SY33 +#labelStyle + +-2.91228688389831,50.2114369834602 + + + + +SY34 + +Small Square SY34 Boundry Box +#Line2 + + +1 + +-2.98327423004553,50.2558261878306 +-2.98513014787228,50.3457371384153 +-2.84462000744524,50.3468426632392 +-2.84302864670579,50.256928210655 +-2.98327423004553,50.2558261878306 + + + + + +SY34 +#labelStyle + +-2.91400632433537,50.3013594662468 + + + + +SY35 + +Small Square SY35 Boundry Box +#Line2 + + +1 + +-2.98513033395398,50.345746130337 +-2.9869956988199,50.435655631182 +-2.84621962857006,50.4367646715431 +-2.84462016700142,50.3468516555118 +-2.98513033395398,50.345746130337 + + + + + +SY35 +#labelStyle + +-2.91573451057809,50.3912805057059 + + + + +SY36 + +Small Square SY36 Boundry Box +#Line2 + + +1 + +-2.98699588584953,50.4356646229588 +-2.98887076064121,50.5255726746049 +-2.84782740526718,50.5266852437839 +-2.84621978893909,50.4367736636721 +-2.98699588584953,50.4356646229588 + + + + + +SY36 +#labelStyle + +-2.91747150077497,50.481200102421 + + + + +SY37 + +Small Square SY37 Boundry Box +#Line2 + + +1 + +-2.98887094862509,50.5255816662368 +-2.99075539680696,50.6154882692353 +-2.84944339196783,50.6166043806065 +-2.84782756645448,50.5266942357693 +-2.98887094862509,50.5255816662368 + + + + + +SY37 +#labelStyle + +-2.91921735360821,50.5711182569865 + + + + +SY38 + +Small Square SY38 Boundry Box +#Line2 + + +1 + +-2.99075558575148,50.6154972607223 +-2.99264967137234,50.705402415635 +-2.85106764360453,50.7065220826673 +-2.84944355397887,50.6166133724485 +-2.99075558575148,50.6154972607223 + + + + + +SY38 +#labelStyle + +-2.92097212829984,50.6610349700077 + + + + +SY39 + +Small Square SY39 Boundry Box +#Line2 + + +1 + +-2.99264986128391,50.7054114069773 +-2.99455364898364,50.7953151143765 +-2.85270021561677,50.7964383506337 +-2.85106780644483,50.7065310743658 +-2.99264986128391,50.7054114069773 + + + + + +SY39 +#labelStyle + +-2.92273588461783,50.7509502421012 + + + + +SY40 + +Small Square SY40 Boundry Box +#Line2 + + +1 + +-2.83672859840852,49.8972201524625 +-2.838288059484,49.9871403576821 +-2.69882037573286,49.9880643160008 +-2.69752022637516,49.8981411902896 +-2.83672859840852,49.8972201524625 + + + + + +SY40 +#labelStyle + +-2.76783241862479,49.9426671465652 + + + + +SY41 + +Small Square SY41 Boundry Box +#Line2 + + +1 + +-2.83828821583937,49.98714935053 +-2.83985556673749,50.0770681167788 +-2.70012723361233,50.0779950067385 +-2.69882050608902,49.9880733091413 +-2.83828821583937,49.98714935053 + + + + + +SY41 +#labelStyle + +-2.76926597155399,50.0325971545909 + + + + +SY42 + +Small Square SY42 Boundry Box +#Line2 + + +1 + +-2.83985572388451,50.0770771094828 +-2.84143101660724,50.1669944373483 +-2.70144071367765,50.1679242698826 +-2.70012736462853,50.0780039997362 +-2.83985572388451,50.0770771094828 + + + + + +SY42 +#labelStyle + +-2.77070678298028,50.1225257294896 + + + + +SY43 + +Small Square SY43 Boundry Box +#Line2 + + +1 + +-2.84143117455114,50.1670034299084 +-2.84301446157423,50.2569193199896 +-2.70276085968846,50.2578521061086 +-2.70144084535825,50.1679332627375 +-2.84143117455114,50.1670034299084 + + + + + +SY43 +#labelStyle + +-2.77215490080633,50.2124528718942 + + + + +SY44 + +Small Square SY44 Boundry Box +#Line2 + + +1 + +-2.84301462032028,50.256928312406 +-2.84460595459855,50.3468427653136 +-2.70408771580393,50.3477785161044 +-2.70276099203786,50.2578610988209 +-2.84301462032028,50.256928312406 + + + + + +SY44 +#labelStyle + +-2.77361037337171,50.3023785824497 + + + + +SY45 + +Small Square SY45 Boundry Box +#Line2 + + +1 + +-2.84460611415208,50.3468517575862 +-2.84620554912489,50.4367647739421 +-2.70542132658732,50.4377035005697 +-2.70408784882656,50.3477875086741 +-2.84460611415208,50.3468517575862 + + + + + +SY45 +#labelStyle + +-2.77507324945783,50.3923028618131 + + + + +SY46 + +Small Square SY46 Boundry Box +#Line2 + + +1 + +-2.84620570949125,50.4367737660711 +-2.84781329908795,50.5266853465087 +-2.70676173701052,50.5276270602167 +-2.70542146028766,50.4377124929969 +-2.84620570949125,50.4367737660711 + + + + + +SY46 +#labelStyle + +-2.77654357829292,50.482225710653 + + + + +SY47 + +Small Square SY47 Boundry Box +#Line2 + + +1 + +-2.84781346027257,50.5266943384942 +-2.84942925891807,50.6166044836584 +-2.70810899245874,50.6175491957693 +-2.70676187139309,50.5276360525014 +-2.84781346027257,50.5266943384942 + + + + + +SY47 +#labelStyle + +-2.77802140955711,50.5721471296497 + + + + +SY48 + +Small Square SY48 Boundry Box +#Line2 + + +1 + +-2.84942942092641,50.6166134755004 +-2.85105348354685,50.7065221860475 +-2.70946313873519,50.7074699079639 +-2.7081091275281,50.6175581879117 +-2.84942942092641,50.6166134755004 + + + + + +SY48 +#labelStyle + +-2.77950679338759,50.6620671194955 + + + + +SY49 + +Small Square SY49 Boundry Box +#Line2 + + +1 + +-2.85105364638444,50.706531177746 +-2.85268602841287,50.7964384543434 +-2.71082422206583,50.7973891975486 +-2.70946327449593,50.707478899964 +-2.85105364638444,50.706531177746 + + + + + +SY49 +#labelStyle + +-2.78099978038378,50.7519856808943 + + + + +SY50 + +Small Square SY50 Boundry Box +#Line2 + + +1 + +-2.69750630379733,49.8981412740457 +-2.69880642721898,49.9880644000226 +-2.55933216771282,49.9888207021402 +-2.55829139896466,49.89889518547 +-2.69750630379733,49.8981412740457 + + + + + +SY50 +#labelStyle + +-2.62847716475004,49.9435060257743 + + + + +SY51 + +Small Square SY51 Boundry Box +#Line2 + + +1 + +-2.69880655757254,49.988073393163 +-2.70011325902859,50.0779950910268 +-2.56037830679785,50.0787537929659 +-2.55933227206286,49.9888296955203 +-2.69880655757254,49.988073393163 + + + + + +SY51 +#labelStyle + +-2.62965067648406,50.0334386948409 + + + + +SY52 + +Small Square SY52 Boundry Box +#Line2 + + +1 + +-2.70011339004218,50.0780040840245 +-2.70142671289198,50.1679243544385 +-2.56142974711126,50.1686854651503 +-2.56037841167626,50.078762786204 +-2.70011339004218,50.0780040840245 + + + + + +SY52 +#labelStyle + +-2.63083013027715,50.1233699406894 + + + + +SY53 + +Small Square SY53 Boundry Box +#Line2 + + +1 + +-2.70142684456996,50.1679333472935 +-2.70274683256791,50.2578521909332 +-2.56248652368601,50.2586157194316 +-2.56142985252155,50.1686944582466 +-2.70142684456996,50.1679333472935 + + + + + +SY53 +#labelStyle + +-2.63201556534691,50.213299764022 + + + + +SY54 + +Small Square SY54 Boundry Box +#Line2 + + +1 + +-2.70274696491467,50.2578611836455 +-2.70407366221466,50.3477786011985 +-2.56354867187496,50.3485445565607 +-2.56248662963169,50.2586247123862 +-2.70274696491467,50.2578611836455 + + + + + +SY54 +#labelStyle + +-2.63320702126866,50.3032281655536 + + + + +SY55 + +Small Square SY55 Boundry Box +#Line2 + + +1 + +-2.70407379523464,50.3477875937683 +-2.70540724639462,50.4377035859345 +-2.56461622735448,50.4384719773012 +-2.56354877835958,50.3485535493736 +-2.70407379523464,50.3477875937683 + + + + + +SY55 +#labelStyle + +-2.63440453797945,50.3931551460114 + + + + +SY56 + +Small Square SY56 Boundry Box +#Line2 + + +1 + +-2.70540738009229,50.4377125783617 +-2.70674763007878,50.5276271458531 +-2.56568922612811,50.5283979824293 +-2.56461633438161,50.4384809699725 +-2.70540738009229,50.4377125783617 + + + + + +SY56 +#labelStyle + +-2.6356081557822,50.4830807061352 + + + + +SY57 + +Small Square SY57 Boundry Box +#Line2 + + +1 + +-2.70674776445866,50.5276361381378 +-2.70809485865143,50.6175492816784 +-2.56676770453032,50.6183225727341 +-2.56568933370139,50.5284069749591 +-2.70674776445866,50.5276361381378 + + + + + +SY57 +#labelStyle + +-2.63681791534983,50.5730048466772 + + + + +SY58 + +Small Square SY58 Boundry Box +#Line2 + + +1 + +-2.70809499371809,50.6175582738208 +-2.70944897791488,50.7074699941467 +-2.56785169923023,50.7082457490172 +-2.56676781265339,50.6183315651224 +-2.70809499371809,50.6175582738208 + + + + + +SY58 +#labelStyle + +-2.63803385772945,50.6629275684019 + + + + +SY59 + +Small Square SY59 Boundry Box +#Line2 + + +1 + +-2.70944911367291,50.7074789861468 +-2.71081003409416,50.7973892840061 +-2.56894124723545,50.7981675120927 +-2.56785180790678,50.7082547412641 +-2.70944911367291,50.7074789861468 + + + + + +SY59 +#labelStyle + +-2.63925602434667,50.7528488720861 + + + + +SY60 + +Small Square SY60 Boundry Box +#Line2 + + +1 + +-2.55827747579867,49.898895252511 +-2.55931821860691,49.9888207693938 +-2.41983869551278,49.9894093982193 +-2.41905734176557,49.8994820205449 +-2.55827747579867,49.898895252511 + + + + + +SY60 +#labelStyle + +-2.48911601001301,49.9441774881661 + + + + +SY61 + +Small Square SY61 Boundry Box +#Line2 + + +1 + +-2.55931832295434,49.9888297627738 +-2.56036433161818,50.0787538604328 +-2.4206240810958,50.0793443571556 +-2.41983877385324,49.9894183917858 +-2.55931832295434,49.9888297627738 + + + + + +SY61 +#labelStyle + +-2.49002944169706,50.0341122873316 + + + + +SY62 + +Small Square SY62 Boundry Box +#Line2 + + +1 + +-2.56036443649398,50.078762853671 +-2.56141574572572,50.1686855328314 +-2.42141344663346,50.1692779044198 +-2.42062415983294,50.0793533505809 +-2.56036443649398,50.078762853671 + + + + + +SY62 +#labelStyle + +-2.49094749864852,50.124045671212 + + + + +SY63 + +Small Square SY63 Boundry Box +#Line2 + + +1 + +-2.56141585113337,50.1686945259278 +-2.56247249596161,50.2586157873278 +-2.42220681842849,50.2592100407985 +-2.42141352576991,50.1692868977039 +-2.56141585113337,50.1686945259278 + + + + + +SY63 +#labelStyle + +-2.49187021139591,50.2139776405649 + + + + +SY64 + +Small Square SY64 Boundry Box +#Line2 + + +1 + +-2.56247260190464,50.2586247802824 +-2.56353461767784,50.3485446246727 +-2.42300422302381,50.3491407670919 +-2.42220689796689,50.2592190339417 +-2.56247260190464,50.2586247802824 + + + + + +SY64 +#labelStyle + +-2.49279761074624,50.303908196161 + + + + +SY65 + +Small Square SY65 Boundry Box +#Line2 + + +1 + +-2.5635347241598,50.3485536174856 +-2.56460214654987,50.4384720456298 +-2.42380568720523,50.4390700841132 +-2.42300430296682,50.3491497600941 +-2.5635347241598,50.3485536174856 + + + + + +SY65 +#labelStyle + +-2.49372972778815,50.393837338784 + + + + +SY66 + +Small Square SY66 Boundry Box +#Line2 + + +1 + +-2.56460225357434,50.4384810383011 +-2.56567511858038,50.5283980509754 +-2.42461123800423,50.5289979926886 +-2.42380576755554,50.4390790769745 +-2.56460225357434,50.4384810383011 + + + + + +SY66 +#labelStyle + +-2.49466659389508,50.4837650692305 + + + + +SY67 + +Small Square SY67 Boundry Box +#Line2 + + +1 + +-2.56567522615097,50.5284070435051 +-2.5667535701029,50.6183226414984 +-2.42542090270077,50.6189244936577 +-2.42461131876457,50.5290069854091 +-2.56567522615097,50.5284070435051 + + + + + +SY67 +#labelStyle + +-2.49560824072852,50.5736913883102 + + + + +SY68 + +Small Square SY68 Boundry Box +#Line2 + + +1 + +-2.56675367822327,50.6183316338867 +-2.56783753778564,50.7082458180005 +-2.42623470882607,50.7088495878731 +-2.42542098387387,50.6189334862375 +-2.56675367822327,50.6183316338867 + + + + + +SY68 +#labelStyle + +-2.49655470024127,50.6636162968454 + + + + +SY69 + +Small Square SY69 Boundry Box +#Line2 + + +1 + +-2.56783764645948,50.7082548102475 +-2.56892705863531,50.7981675812961 +-2.4270526841655,50.7987732762003 +-2.4262347904147,50.7088585803122 +-2.56783764645948,50.7082548102475 + + + + + +SY69 +#labelStyle + +-2.49750600468079,50.7535397956716 + + + + +SY70 + +Small Square SY70 Boundry Box +#Line2 + + +1 + +-2.41904341814181,49.8994820708691 +-2.41982474594609,49.9894094487031 +-2.28034127174349,49.989830390934 +-2.27981935881615,49.8999016822908 +-2.41904341814181,49.8994820708691 + + + + + +SY70 +#labelStyle + +-2.34975026258328,49.9446815185882 + + + + +SY71 + +Small Square SY71 Boundry Box +#Line2 + + +1 + +-2.41982482428394,49.9894184422696 +-2.4206101054523,50.0793444077996 +-2.28086587776821,50.0797666859224 +-2.28034132407177,49.9898393846338 +-2.41982482428394,49.9894184422696 + + + + + +SY71 +#labelStyle + +-2.35040358397316,50.0346179168184 + + + + +SY72 + +Small Square SY72 Boundry Box +#Line2 + + +1 + +-2.42061018418683,50.0793534012249 +-2.42139944478103,50.1692779552246 +-2.28139314223638,50.1697015742236 +-2.28086593036145,50.0797756794816 +-2.42061018418683,50.0793534012249 + + + + + +SY72 +#labelStyle + +-2.35106021356346,50.1245529057195 + + + + +SY73 + +Small Square SY73 Boundry Box +#Line2 + + +1 + +-2.42139952391485,50.1692869485087 +-2.42219279023411,50.2592100917647 +-2.28192308271782,50.2596350566593 +-2.28139319509635,50.1697105676421 +-2.42139952391485,50.1692869485087 + + + + + +SY73 +#labelStyle + +-2.35172017319054,50.2144864860909 + + + + +SY74 + +Small Square SY74 Boundry Box +#Line2 + + +1 + +-2.42219286976986,50.2592190849079 +-2.42299016835358,50.3491408182202 +-2.28245571694279,50.3495671340646 +-2.28192313584628,50.2596440499373 +-2.42219286976986,50.2592190849079 + + + + + +SY74 +#labelStyle + +-2.35238348488998,50.3044186587451 + + + + +SY75 + +Small Square SY75 Boundry Box +#Line2 + + +1 + +-2.42299024829393,50.3491498112223 +-2.42379160592436,50.439070135404 +-2.28299106280381,50.4394978072882 +-2.28245577034151,50.3495761272021 +-2.42299024829393,50.3491498112223 + + + + + +SY75 +#labelStyle + +-2.35305017089879,50.3943494245083 + + + + +SY76 + +Small Square SY76 Boundry Box +#Line2 + + +1 + +-2.42379168627201,50.4390791282653 +-2.42459712997706,50.5289980441427 +-2.28352913835749,50.5294270771923 +-2.28299111647459,50.4395068002853 +-2.42379168627201,50.4390791282653 + + + + + +SY76 +#labelStyle + +-2.3537202536577,50.4842787842198 + + + + +SY77 + +Small Square SY77 Boundry Box +#Line2 + + +1 + +-2.42459721073472,50.5290070368632 +-2.4254067677907,50.6189245452757 +-2.28406996182645,50.6193549446524 +-2.28352919230215,50.5294360700491 +-2.42459721073472,50.5290070368632 + + + + + +SY77 +#labelStyle + +-2.3543937558135,50.5742067387322 + + + + +SY78 + +Small Square SY78 Boundry Box +#Line2 + + +1 + +-2.42540684896111,50.6189335378554 +-2.4262205468956,50.7088496396555 +-2.28461355160114,50.7092814105575 +-2.28407001604682,50.619363937369 +-2.42540684896111,50.6189335378554 + + + + + +SY78 +#labelStyle + +-2.35507070022136,50.6641332889117 + + + + +SY79 + +Small Square SY79 Boundry Box +#Line2 + + +1 + +-2.42622062848152,50.7088586320946 +-2.4270384950762,50.7987733281478 +-2.2851599262418,50.7992064758102 +-2.28461360609906,50.709290403134 +-2.42622062848152,50.7088586320946 + + + + + +SY79 +#labelStyle + +-2.35575110994721,50.7540584356373 + + + + +SY80 + +Small Square SY80 Boundry Box +#Line2 + + +1 + +-2.27980543486502,49.8999017158971 +-2.28032732184729,49.9898304246469 +-2.14084120925029,49.9900836707705 +-2.14057875438663,49.9001541612517 +-2.27980543486502,49.8999017158971 + + + + + +SY80 +#labelStyle + +-2.21038123090245,49.9450181056669 + + + + +SY81 + +Small Square SY81 Boundry Box +#Line2 + + +1 + +-2.28032737417296,49.9898394183467 +-2.28085190179302,50.0797667197423 +-2.14110501831433,50.0800207696943 +-2.14084123556466,49.9900926645506 +-2.28032737417296,49.9898394183467 + + + + + +SY81 +#labelStyle + +-2.21077442036757,50.0349555718579 + + + + +SY82 + +Small Square SY82 Boundry Box +#Line2 + + +1 + +-2.28085195438366,50.0797757133015 +-2.28137914005007,50.1697016081509 +-2.14137016415206,50.1699564649312 +-2.14110504476194,50.080029763334 +-2.28085195438366,50.0797757133015 + + + + + +SY82 +#labelStyle + +-2.21116960076922,50.1248916326985 + + + + +SY83 + +Small Square SY83 Boundry Box +#Line2 + + +1 + +-2.28137919290741,50.1697106015694 +-2.28190905418735,50.2596350906944 +-2.14163665559856,50.2598907573241 +-2.14137019073378,50.1699654584306 +-2.28137919290741,50.1697106015694 + + + + + +SY83 +#labelStyle + +-2.21156678524939,50.2148262890159 + + + + +SY84 + +Small Square SY84 Boundry Box +#Line2 + + +1 + +-2.28190910731316,50.2596440839724 +-2.28244166193424,50.3495671682079 +-2.14190450156963,50.3498236477292 +-2.14163668231529,50.2598997506832 +-2.28190910731316,50.2596440839724 + + + + + +SY84 +#labelStyle + +-2.21196598706993,50.3047595416507 + + + + +SY85 + +Small Square SY85 Boundry Box +#Line2 + + +1 + +-2.2824417153303,50.3495761613454 +-2.28297698118237,50.4394978415401 +-2.14217371106264,50.4397551370166 +-2.14190452842226,50.3498326409482 +-2.2824417153303,50.3495761613454 + + + + + +SY85 +#labelStyle + +-2.21236721961396,50.3946913914572 + + + + +SY86 + +Small Square SY86 Boundry Box +#Line2 + + +1 + +-2.28297703485048,50.4395068345373 +-2.28351502998747,50.5294271115532 +-2.1424442931575,50.5296852260699 +-2.14217373805208,50.4397641300955 +-2.28297703485048,50.4395068345373 + + + + + +SY86 +#labelStyle + +-2.21277049638721,50.4846218393034 + + + + +SY87 + +Small Square SY87 Boundry Box +#Line2 + + +1 + +-2.28351508392945,50.5294361044101 +-2.28405582657123,50.6193549791227 +-2.14271625701758,50.6196139157865 +-2.14244432028465,50.5296942190088 +-2.28351508392945,50.5294361044101 + + + + + +SY87 +#labelStyle + +-2.21317583101941,50.5745508860708 + + + + +SY88 + +Small Square SY88 Boundry Box +#Line2 + + +1 + +-2.28405588078891,50.6193639718394 +-2.28459938932321,50.7092814451377 +-2.14298961189066,50.7095412070773 +-2.14271628428337,50.6196229085855 +-2.28405588078891,50.6193639718394 + + + + + +SY88 +#labelStyle + +-2.21358323726572,50.6644785326543 + + + + +SY89 + +Small Square SY89 Boundry Box +#Line2 + + +1 + +-2.28459944381842,50.7092904377143 +-2.2851457368027,50.7992065105007 +-2.14326436710988,50.799467100867 +-2.14298963929601,50.7095501997366 +-2.28459944381842,50.7092904377143 + + + + + +SY89 +#labelStyle + +-2.21399272900814,50.7544047799627 + + + + +SY90 + +Small Square SY90 Boundry Box +#Line2 + + +1 + +-2.14056483023859,49.9001541781394 +-2.14082725915587,49.9900836877118 +-2.0013398210352,49.9901692320059 +-2.00133683290219,49.9002394517392 +-2.14056483023859,49.9001541781394 + + + + + +SY90 +#labelStyle + +-2.07101022360665,49.9451872418071 + + + + +SY91 + +Small Square SY91 Boundry Box +#Line2 + + +1 + +-2.14082728546763,49.9900926814919 +-2.14109104213963,50.0800207866893 +-2.00134282439189,50.0801066027132 +-2.00133982133478,49.9901782258132 +-2.14082728546763,49.9900926814919 + + + + + +SY91 +#labelStyle + +-2.07114326813226,50.0351252448086 + + + + +SY92 + +Small Square SY92 Boundry Box +#Line2 + + +1 + +-2.14109106858462,50.080029780329 +-2.1413561617649,50.1699564819803 +-2.00134584277276,50.1700425707493 +-2.00134282469297,50.0801155963801 +-2.14109106858462,50.080029780329 + + + + + +SY92 +#labelStyle + +-2.07127698621202,50.1250618444608 + + + + +SY93 + +Small Square SY93 Boundry Box +#Line2 + + +1 + +-2.141356188344,50.1699654754797 +-2.14162262686591,50.2598907744273 +-2.0013488762773,50.2599771369641 +-2.00134584307535,50.170051564276 +-2.141356188344,50.1699654754797 + + + + + +SY93 +#labelStyle + +-2.07141138229219,50.2149970416045 + + + + +SY94 + +Small Square SY94 Boundry Box +#Line2 + + +1 + +-2.14162265358,50.2598997677865 +-2.14189044635756,50.3498236648868 +-2.0013519250059,50.349910302221 +-2.00134887658141,50.2599861303506 +-2.14162265358,50.2598997677865 + + + + + +SY94 +#labelStyle + +-2.07154646085958,50.3049308370947 + + + + +SY95 + +Small Square SY95 Boundry Box +#Line2 + + +1 + +-2.14189047320753,50.3498326581058 +-2.14215962923633,50.4397551542288 +-2.00135498905989,50.4398420673974 +-2.00135192531154,50.3499192954675 +-2.14189047320753,50.3498326581058 + + + + + +SY95 +#labelStyle + +-2.07168222644204,50.3948632317999 + + + + +SY96 + +Small Square SY96 Boundry Box +#Line2 + + +1 + +-2.14215965622309,50.4397641473077 +-2.14243018458124,50.5296852433369 +-2.00135806854151,50.5297724333841 +-2.00135498936706,50.4398510605039 +-2.14215965622309,50.4397641473077 + + + + + +SY96 +#labelStyle + +-2.07181868360888,50.4847942266023 + + + + +SY97 + +Small Square SY97 Boundry Box +#Line2 + + +1 + +-2.1424302117057,50.5296942362759 +-2.14270212155474,50.6196139331085 +-2.00136116355394,50.6197014010859 +-2.00135806885023,50.5297814263508 +-2.1424302117057,50.5296942362759 + + + + + +SY97 +#labelStyle + +-2.07195583697138,50.5747238223978 + + + + +SY98 + +Small Square SY98 Boundry Box +#Line2 + + +1 + +-2.14270214881783,50.6196229259076 +-2.1429754494037,50.7095412244546 +-2.00136427420132,50.7096289714212 +-2.00136116386422,50.6197103939128 +-2.14270214881783,50.6196229259076 + + + + + +SY98 +#labelStyle + +-2.07209369118326,50.6646520200963 + + + + +SY99 + +Small Square SY99 Boundry Box +#Line2 + + +1 + +-2.14297547680635,50.7095502171138 +-2.14325017746036,50.7994671182997 +-2.00136740058874,50.799555145322 +-2.00136427451317,50.7096379641084 +-2.14297547680635,50.7095502171138 + + + + + +SY99 +#labelStyle + +-2.07223225094114,50.7545788206209 + + + + + +SZ + +Large Square SZ Boundry Box +#Line1 + + +1 + +-2.00132290868767,49.9002394519079 +-2.00135321086818,50.7995551454964 +-0.582626920393601,50.7909451906835 +-0.609132110022426,49.891898433164 +-2.00132290868767,49.9002394519079 + + + + + +SZ00 + +Small Square SZ00 Boundry Box +#Line2 + + +1 + +-2.00132290868767,49.9002394519079 +-2.00132587087386,49.9901692321752 +-1.86183842017892,49.9900870727084 +-1.86209489886584,49.9001575518334 +-2.00132290868767,49.9002394519079 + + + + + +SZ00 +#labelStyle + +-1.93163854944904,49.9451889231933 + + + + +SZ01 + +Small Square SZ01 Boundry Box +#Line2 + + +1 + +-2.00132587117084,49.9901782259824 +-2.00132884814983,50.080106602883 +-1.86158061773817,50.0800241830355 +-1.86183839446372,49.9900960664896 +-2.00132587117084,49.9901782259824 + + + + + +SZ01 +#labelStyle + +-1.93151144463753,50.035126931832 + + + + +SZ02 + +Small Square SZ02 Boundry Box +#Line2 + + +1 + +-2.0013288484483,50.0801155965499 +-2.00133184031781,50.1700425709197 +-1.86132150857125,50.1699598897223 +-1.86158059189273,50.0800331766763 +-2.0013288484483,50.0801155965499 + + + + + +SZ02 +#labelStyle + +-1.93138369595774,50.1250635371441 + + + + +SZ03 + +Small Square SZ03 Boundry Box +#Line2 + + +1 + +-2.00133184061777,50.1700515644464 +-2.0013348474764,50.259977137135 +-1.86106108404203,50.2598941936117 +-1.8613214825947,50.1699688832228 +-2.00133184061777,50.1700515644464 + + + + + +SZ03 +#labelStyle + +-1.93125529915975,50.2149987399709 + + + + +SZ04 + +Small Square SZ04 Boundry Box +#Line2 + + +1 + +-2.00133484777787,50.2599861305216 +-2.00133786972512,50.3499103023926 +-1.86079933543553,50.3498270955604 +-1.86106105793351,50.2599031869719 +-2.00133484777787,50.2599861305216 + + + + + +SZ04 +#labelStyle + +-1.93112624995487,50.3049325411674 + + + + +SZ05 + +Small Square SZ05 Boundry Box +#Line2 + + +1 + +-2.00133787002811,50.3499192956391 +-2.00134090716441,50.4398420675695 +-1.86053625395698,50.4397585964387 +-1.86079930919417,50.3498360887805 +-2.00133787002811,50.3499192956391 + + + + + +SZ05 +#labelStyle + +-1.9309965440152,50.3948649416023 + + + + +SZ06 + +Small Square SZ06 Boundry Box +#Line2 + + +1 + +-2.00134090746892,50.439851060676 +-2.00134395989561,50.5297724335568 +-1.86027183073096,50.5296886971306 +-1.86053622758189,50.4397675895187 +-2.00134090746892,50.439851060676 + + + + + +SZ06 +#labelStyle + +-1.93086617697319,50.484795942158 + + + + +SZ07 + +Small Square SZ07 Boundry Box +#Line2 + + +1 + +-2.00134396020166,50.5297814265235 +-2.001347028021,50.6197014012592 +-1.86000605680047,50.6196173985339 +-1.86027180422125,50.5296976900707 +-2.00134396020166,50.5297814265235 + + + + + +SZ07 +#labelStyle + +-1.93073514442119,50.5747255437306 + + + + +SZ08 + +Small Square SZ08 Boundry Box +#Line2 + + +1 + +-2.00134702832859,50.6197103940861 +-2.0013501116438,50.709628971595 +-1.85973892312597,50.7095447015598 +-1.86000603015523,50.6196263913341 +-2.00134702832859,50.6197103940861 + + + + + +SZ08 +#labelStyle + +-1.93060344191097,50.6646537472299 + + + + +SZ09 + +Small Square SZ09 Boundry Box +#Line2 + + +1 + +-2.00135011195294,50.7096379642822 +-2.00135321086818,50.7995551454964 +-1.85947042058451,50.7994706071332 +-1.85973889634431,50.7095536942202 +-2.00135011195294,50.7096379642822 + + + + + +SZ09 +#labelStyle + +-1.9304710649533,50.7545805535795 + + + + +SZ10 + +Small Square SZ10 Boundry Box +#Line2 + + +1 + +-1.8620809747153,49.9001575352831 +-1.86182447008198,49.9900870561056 +-1.72233831976295,49.9898371947375 +-1.72285425678132,49.8999084633825 +-1.8620809747153,49.9001575352831 + + + + + +SZ10 +#labelStyle + +-1.7922675172223,49.9450231497901 + + + + +SZ11 + +Small Square SZ11 Boundry Box +#Line2 + + +1 + +-1.86182444436418,49.9900960498869 +-1.86156664156093,50.0800241663801 +-1.72181972009123,50.0797735125323 +-1.72233826803381,49.9898461884397 +-1.86182444436418,49.9900960498869 + + + + + +SZ11 +#labelStyle + +-1.79188026729363,50.034960632892 + + + + +SZ12 + +Small Square SZ12 Boundry Box +#Line2 + + +1 + +-1.86156661571287,50.0800331600209 +-1.86130750618154,50.169959873014 +-1.72129849202105,50.1697084237326 +-1.72181966810012,50.0797825060937 +-1.86156661571287,50.0800331600209 + + + + + +SZ12 +#labelStyle + +-1.79149105611266,50.1248967107124 + + + + +SZ13 + +Small Square SZ13 Boundry Box +#Line2 + + +1 + +-1.86130748020237,50.1699688665145 +-1.86104705530681,50.2598941768504 +-1.72077461818154,50.2596419291608 +-1.72129843976623,50.1697174171534 +-1.86130748020237,50.1699688665145 + + + + + +SZ13 +#labelStyle + +-1.7910998707337,50.2148313840787 + + + + +SZ14 + +Small Square SZ14 Boundry Box +#Line2 + + +1 + +-1.86104702919565,50.2599031702106 +-1.86078528022087,50.3498270787458 +-1.72024808104321,50.3495740296528 +-1.72077456566128,50.2596509224411 +-1.86104702919565,50.2599031702106 + + + + + +SZ14 +#labelStyle + +-1.79070669809302,50.3047646538322 + + + + +SZ15 + +Small Square SZ15 Boundry Box +#Line2 + + +1 + +-1.86078525397685,50.3498360719659 +-1.86052217212806,50.4397585795707 +-1.71971886291613,50.4395047260578 +-1.72024802825573,50.3495830227926 +-1.86078525397685,50.3498360719659 + + + + + +SZ15 +#labelStyle + +-1.79031152500741,50.3946965208277 + + + + +SZ16 + +Small Square SZ16 Boundry Box +#Line2 + + +1 + +-1.8605221457503,50.4397675726507 +-1.86025772215207,50.529688680209 +-1.71918694594813,50.5294340192386 +-1.71971880985967,50.4395137190572 +-1.8605221457503,50.4397675726507 + + + + + +SZ16 +#labelStyle + +-1.7899143381729,50.4846269859336 + + + + +SZ17 + +Small Square SZ17 Boundry Box +#Line2 + + +1 + +-1.86025769563967,50.5296976731491 +-1.85999192133498,50.6196173815584 +-1.71865231212293,50.6193619100715 +-1.71918689262088,50.5294430120978 +-1.86025769563967,50.5296976731491 + + + + + +SZ17 +#labelStyle + +-1.78951512416335,50.5745560500317 + + + + +SZ18 + +Small Square SZ18 Boundry Box +#Line2 + + +1 + +-1.85999189468705,50.6196263743586 +-1.85972476063636,50.7095446845302 +-1.7181149432583,50.7092883994462 +-1.71865225852308,50.6193709027905 +-1.85999189468705,50.6196263743586 + + + + + +SZ18 +#labelStyle + +-1.78911386942909,50.6644837140177 + + + + +SZ19 + +Small Square SZ19 Boundry Box +#Line2 + + +1 + +-1.85972473385198,50.7095536771906 +-1.8594562309323,50.7994705900494 +-1.71757482100415,50.7992134882658 +-1.71811488938404,50.7092973920251 +-1.85972473385198,50.7095536771906 + + + + + +SZ19 +#labelStyle + +-1.78871056029547,50.7544099788007 + + + + +SZ20 + +Small Square SZ20 Boundry Box +#Line2 + + +1 + +-1.72284033282521,49.8999084301136 +-1.72232436986171,49.9898371613631 +-1.58284083279153,49.9894196037442 +-1.58361621107603,49.8994921920033 +-1.72284033282521,49.8999084301136 + + + + + +SZ20 +#labelStyle + +-1.65289843568105,49.9446899253417 + + + + +SZ21 + +Small Square SZ21 Boundry Box +#Line2 + + +1 + +-1.72232431812997,49.9898461550652 +-1.72180574411099,50.079773479052 +-1.58206145311105,50.0793545968888 +-1.58284075505017,49.9894285973141 +-1.72232431812997,49.9898461550652 + + + + + +SZ21 +#labelStyle + +-1.65225105347236,50.034626351756 + + + + +SZ22 + +Small Square SZ22 Boundry Box +#Line2 + + +1 + +-1.72180569211726,50.0797824726134 +-1.72128448982964,50.169708390146 +-1.58127812351673,50.1692881785004 +-1.582061374976,50.0793635903175 +-1.72180569211726,50.0797824726134 + + + + + +SZ22 +#labelStyle + +-1.65160039274416,50.1245613689558 + + + + +SZ23 + +Small Square SZ23 Boundry Box +#Line2 + + +1 + +-1.72128443757219,50.1697173835668 +-1.72076058964593,50.2596418954676 +-1.58049081790475,50.2592203493668 +-1.58127804498539,50.169297171788 +-1.72128443757219,50.1697173835668 + + + + + +SZ23 +#labelStyle + +-1.65094643185637,50.2144949777413 + + + + +SZ24 + +Small Square SZ24 Boundry Box +#Line2 + + +1 + +-1.72076053712302,50.2596508887479 +-1.72023402602949,50.3495739958525 +-1.57969950993289,50.349151110289 +-1.58049073897449,50.2592293425133 +-1.72076053712302,50.2596508887479 + + + + + +SZ24 +#labelStyle + +-1.65028914897149,50.304427178926 + + + + +SZ25 + +Small Square SZ25 Boundry Box +#Line2 + + +1 + +-1.72023397323935,50.3495829889923 +-1.71970478128948,50.4395046921501 +-1.57890417301789,50.4390804620811 +-1.57969943060108,50.3491601032946 +-1.72023397323935,50.3495829889923 + + + + + +SZ25 +#labelStyle + +-1.64962852205239,50.3943579733366 + + + + +SZ26 + +Small Square SZ26 Boundry Box +#Line2 + + +1 + +-1.71970472823035,50.4395136851495 +-1.71917283757286,50.529433985223 +-1.57810478033266,50.5290084055705 +-1.57890409328184,50.4390894549458 +-1.71970472823035,50.4395136851495 + + + + + +SZ26 +#labelStyle + +-1.64896452886005,50.4842873618132 + + + + +SZ27 + +Small Square SZ27 Boundry Box +#Line2 + + +1 + +-1.71917278424292,50.5294429780822 +-1.71863817686242,50.6193618759477 +-1.57730130480353,50.6189349415975 +-1.57810470018968,50.5290173982944 +-1.71917278424292,50.5294429780822 + + + + + +SZ27 +#labelStyle + +-1.64829714695123,50.5742153452096 + + + + +SZ28 + +Small Square SZ28 Boundry Box +#Line2 + + +1 + +-1.71863812325988,50.6193708686667 +-1.71810078097504,50.7092883652137 +-1.57649371910746,50.7088600710159 +-1.57730122425091,50.6189439341808 +-1.71863812325988,50.6193708686667 + + + + + +SZ28 +#labelStyle + +-1.64762635367621,50.6641419243923 + + + + +SZ29 + +Small Square SZ29 Boundry Box +#Line2 + + +1 + +-1.71810072709807,50.7092973577926 +-1.71756063155969,50.7992134539242 +-1.57568199566916,50.7987837946923 +-1.57649363814244,50.7088690634586 +-1.71810072709807,50.7092973577926 + + + + + +SZ29 +#labelStyle + +-1.64695212617638,50.7540671002415 + + + + +SZ30 + +Small Square SZ30 Boundry Box +#Line2 + + +1 + +-1.58360228744478,49.8994921420164 +-1.58282688321729,49.9894195535989 +-1.44334727211375,49.9888343091701 +-1.44438206602391,49.8989087470801 +-1.58360228744478,49.8994921420164 + + + + + +SZ30 +#labelStyle + +-1.51353261346437,49.9441892573718 + + + + +SZ31 + +Small Square SZ31 Boundry Box +#Line2 + + +1 + +-1.58282680547333,49.9894285471688 +-1.58204747745996,50.0793545465844 +-1.44230713830068,50.0787674456045 +-1.44334716836274,49.9888433025547 +-1.58282680547333,49.9894285471688 + + + + + +SZ31 +#labelStyle + +-1.51262512042864,50.0341240959934 + + + + +SZ32 + +Small Square SZ32 Boundry Box +#Line2 + + +1 + +-1.58204739932229,50.0793635400131 +-1.58126412165665,50.1692881280363 +-1.44126173329417,50.1686991635833 +-1.44230703402429,50.0787764388472 +-1.58204739932229,50.0793635400131 + + + + + +SZ32 +#labelStyle + +-1.51171303180147,50.1240575194904 + + + + +SZ33 + +Small Square SZ33 Boundry Box +#Line2 + + +1 + +-1.58126404312268,50.1692971213239 +-1.58047678970266,50.2592202987425 +-1.44021102226008,50.2586294638459 +-1.44126162848892,50.1687081566842 +-1.58126404312268,50.1692971213239 + + + + + +SZ33 +#labelStyle + +-1.51079631725055,50.2139895286215 + + + + +SZ34 + +Small Square SZ34 Boundry Box +#Line2 + + +1 + +-1.58047671076976,50.259229291889 +-1.5796854552549,50.3491510595038 +-1.4391549700462,50.3485583471444 +-1.44021091692248,50.258638456805 +-1.58047671076976,50.259229291889 + + + + + +SZ34 +#labelStyle + +-1.50987494616689,50.3039201241584 + + + + +SZ35 + +Small Square SZ35 Boundry Box +#Line2 + + +1 + +-1.57968537592043,50.3491600525094 +-1.57889009172921,50.4390804111344 +-1.43809354117865,50.4384858142437 +-1.43915486417272,50.3485673399619 +-1.57968537592043,50.3491600525094 + + + + + +SZ35 +#labelStyle + +-1.50894888766166,50.3938493068861 + + + + +SZ36 + +Small Square SZ36 Boundry Box +#Line2 + + +1 + +-1.57889001199049,50.4390894039992 +-1.57809067229761,50.5290083544617 +-1.43702669985818,50.5284118659214 +-1.43809343476571,50.4384948069196 +-1.57889001199049,50.4390894039992 + + + + + +SZ36 +#labelStyle + +-1.50801811056308,50.4837770776022 + + + + +SZ37 + +Small Square SZ37 Boundry Box +#Line2 + + +1 + +-1.57809059215195,50.5290173471857 +-1.57728716988553,50.6189348903261 +-1.43595440995657,50.6183365029678 +-1.4370265929022,50.5284208584558 +-1.57809059215195,50.5290173471857 + + + + + +SZ37 +#labelStyle + +-1.50708258341317,50.5737034371175 + + + + +SZ38 + +Small Square SZ38 Boundry Box +#Line2 + + +1 + +-1.57728708933021,50.6189438829094 +-1.576479557169,50.7088600195812 +-1.43487663501278,50.7082597261859 +-1.43595430245391,50.6183454953608 +-1.57728708933021,50.6189438829094 + + + + + +SZ38 +#labelStyle + +-1.50614227446449,50.6636283862556 + + + + +SZ39 + +Small Square SZ39 Boundry Box +#Line2 + + +1 + +-1.57647947620127,50.7088690120238 +-1.57566780657182,50.7987837430936 +-1.43379333822923,50.7981815363912 +-1.43487652695978,50.7082687184375 +-1.57647947620127,50.7088690120238 + + + + + +SZ39 +#labelStyle + +-1.50519715167686,50.753551925853 + + + + +SZ40 + +Small Square SZ40 Boundry Box +#Line2 + + +1 + +-1.44436814284793,49.8989086803765 +-1.44333332299777,49.9888342422551 +-1.30385895034558,49.988081324247 +-1.30515312566838,49.8981581417646 +-1.44436814284793,49.8989086803765 + + + + + +SZ40 +#labelStyle + +-1.37417135901827,49.9435211571833 + + + + +SZ41 + +Small Square SZ41 Boundry Box +#Line2 + + +1 + +-1.44333321924417,49.9888432356396 +-1.44229316311088,50.0787673784772 +-1.30255809692744,50.0780120719921 +-1.30385882058837,49.9880903173932 +-1.44333321924417,49.9888432356396 + + + + + +SZ41 +#labelStyle + +-1.37300378522218,50.0334538769763 + + + + +SZ42 + +Small Square SZ42 Boundry Box +#Line2 + + +1 + +-1.44229305883187,50.0787763717198 +-1.44124773189842,50.1686990962429 +-1.30125065135084,50.1679413923755 +-1.30255796651318,50.0780210649955 +-1.44229305883187,50.0787763717198 + + + + + +SZ42 +#labelStyle + +-1.37183029903637,50.1233851737576 + + + + +SZ43 + +Small Square SZ43 Boundry Box +#Line2 + + +1 + +-1.44124762709055,50.1687080893437 +-1.4401969945254,50.2586293962916 +-1.29993657005488,50.2578692860744 +-1.30125052027519,50.1679503852362 +-1.44124762709055,50.1687080893437 + + + + + +SZ43 +#labelStyle + +-1.37065086143939,50.2133150482307 + + + + +SZ44 + +Small Square SZ44 Boundry Box +#Line2 + + +1 + +-1.44019688918516,50.2586383892507 +-1.43914091583873,50.3485582793754 +-1.29861580908096,50.3477957537783 +-1.29993643831347,50.2578782787925 +-1.44019688918516,50.2586383892507 + + + + + +SZ44 +#labelStyle + +-1.36946543305387,50.3032435011119 + + + + +SZ45 + +Small Square SZ45 Boundry Box +#Line2 + + +1 + +-1.43914080996259,50.3485672721929 +-1.43807946036362,50.4384857462593 +-1.2972883240682,50.4377207961885 +-1.29861567666937,50.3478047463538 +-1.43914080996259,50.3485672721929 + + + + + +SZ45 +#labelStyle + +-1.36827397414249,50.39317053313 + + + + +SZ46 + +Small Square SZ46 Boundry Box +#Line2 + + +1 + +-1.43807935394801,50.4384947389351 +-1.43701259229995,50.5284117977207 +-1.29595407024893,50.5276444140186 +-1.29728819098197,50.4377297886215 +-1.43807935394801,50.4384947389351 + + + + + +SZ46 +#labelStyle + +-1.3670764446039,50.483096145026 + + + + +SZ47 + +Small Square SZ47 Boundry Box +#Line2 + + +1 + +-1.43701248534128,50.5284207902551 +-1.43594027551856,50.61833643455 +-1.29461300244408,50.6175666079946 +-1.29595393648357,50.5276534063092 +-1.43701248534128,50.5284207902551 + + + + + +SZ47 +#labelStyle + +-1.36587280396861,50.5730203375537 + + + + +SZ48 + +Small Square SZ48 Boundry Box +#Line2 + + +1 + +-1.43594016801321,50.618345426943 +-1.43486247355754,50.7082596575501 +-1.29326507505846,50.7074873788542 +-1.29461286799505,50.6175756001428 +-1.43594016801321,50.618345426943 + + + + + +SZ48 +#labelStyle + +-1.36466301139479,50.662943111479 + + + + +SZ49 + +Small Square SZ49 Boundry Box +#Line2 + + +1 + +-1.43486236550183,50.7082686498018 +-1.43377914961836,50.7981814675367 +-1.29191024207601,50.7974067273473 +-1.29326493992117,50.7074963708601 +-1.43486236550183,50.7082686498018 + + + + + +SZ49 +#labelStyle + +-1.36344702566403,50.7528644675804 + + + + +SZ50 + +Small Square SZ50 Boundry Box +#Line2 + + +1 + +-1.30513920307808,49.8981580583457 +-1.30384500181913,49.9880812405637 +-1.16437717979203,49.987160665996 +-1.16593069374534,49.8972403929745 +-1.30513920307808,49.8981580583457 + + + + + +SZ50 +#labelStyle + +-1.23481598051823,49.9426856398571 + + + + +SZ51 + +Small Square SZ51 Boundry Box +#Line2 + + +1 + +-1.30384487205932,49.9880902337099 +-1.30254412233104,50.0780119880433 +-1.16281564994417,50.0770884931764 +-1.16437702403291,49.9871696588506 +-1.30384487205932,49.9880902337099 + + + + + +SZ51 +#labelStyle + +-1.23338836463909,50.0326157098776 + + + + +SZ52 + +Small Square SZ52 Boundry Box +#Line2 + + +1 + +-1.30254399191417,50.0780209810466 +-1.30123665055242,50.1679413081602 +-1.16124620736618,50.1670148821068 +-1.16281549339637,50.0770974858872 +-1.30254399191417,50.0780209810466 + + + + + +SZ52 +#labelStyle + +-1.23195351992396,50.1225443470231 + + + + +SZ53 + +Small Square SZ53 Boundry Box +#Line2 + + +1 + +-1.30123651947414,50.1679503010209 +-1.29992254292149,50.2578692015918 +-1.15966879977486,50.2569398333881 +-1.16124605002451,50.1670238746738 +-1.30123651947414,50.1679503010209 + + + + + +SZ53 +#labelStyle + +-1.23051139866622,50.2124715519284 + + + + +SZ54 + +Small Square SZ54 Boundry Box +#Line2 + + +1 + +-1.29992241117744,50.2578781943098 +-1.29860175547876,50.3477956690271 +-1.15808337440968,50.346863347633 +-1.15966864163406,50.2569488258114 +-1.29992241117744,50.2578781943098 + + + + + +SZ54 +#labelStyle + +-1.22906195272414,50.3023973252402 + + + + +SZ55 + +Small Square SZ55 Boundry Box +#Line2 + + +1 + +-1.29860162306451,50.3478046616026 +-1.29727424386247,50.4377207111678 +-1.15648987802736,50.4367854254653 +-1.15808321546445,50.3468723399126 +-1.29860162306451,50.3478046616026 + + + + + +SZ55 +#labelStyle + +-1.22760513351597,50.3923216676172 + + + + +SZ56 + +Small Square SZ56 Boundry Box +#Line2 + + +1 + +-1.29727411077358,50.4377297036008 +-1.29593996330406,50.5276443287275 +-1.1548882568964,50.5267060675205 +-1.15648971827234,50.4367944176013 +-1.29727411077358,50.4377297036008 + + + + + +SZ56 +#labelStyle + +-1.22614089201494,50.4822445797297 + + + + +SZ57 + +Small Square SZ57 Boundry Box +#Line2 + + +1 + +-1.29593982953602,50.5276533210181 +-1.29459886862355,50.617566522432 +-1.15327845679159,50.6166252744456 +-1.15488809632621,50.526715059513 +-1.29593982953602,50.5276533210181 + + + + + +SZ57 +#labelStyle + +-1.22466917874424,50.57216606226 + + + + +SZ58 + +Small Square SZ58 Boundry Box +#Line2 + + +1 + +-1.29459873417183,50.6175755145802 +-1.29325091422483,50.707487293019 +-1.1516604229883,50.7065430468988 +-1.15327829540077,50.6166342662946 +-1.29459873417183,50.6175755145802 + + + + + +SZ58 +#labelStyle + +-1.22318994377188,50.662086115902 + + + + +SZ59 + +Small Square SZ59 Boundry Box +#Line2 + + +1 + +-1.29325077908484,50.7074962850249 +-1.29189605409093,50.7974066412385 +-1.15003410025685,50.7964593855496 +-1.15166026077136,50.7065520386043 +-1.29325077908484,50.7074962850249 + + + + + +SZ59 +#labelStyle + +-1.22170313670553,50.7520047413615 + + + + +SZ60 + +Small Square SZ60 Boundry Box +#Line2 + + +1 + +-1.16591677187106,49.8972402928423 +-1.1643632319863,49.9871605655463 +-1.02490327236922,49.9860723552257 +-1.02671607360615,49.8961555213927 +-1.16591677187106,49.8972402928423 + + + + + +SZ60 +#labelStyle + +-1.09546778579171,49.9416827242514 + + + + +SZ61 + +Small Square SZ61 Boundry Box +#Line2 + + +1 + +-1.16436307622459,49.9871695584009 +-1.16280167607325,50.0770883924081 +-1.02308111791046,50.0759967300936 +-1.02490309061335,49.9860813477357 +-1.16436307622459,49.9871695584009 + + + + + +SZ61 +#labelStyle + +-1.09378017511357,50.0316096136705 + + + + +SZ62 + +Small Square SZ62 Boundry Box +#Line2 + + +1 + +-1.16280151952284,50.0770973851188 +-1.16123220729803,50.1670147810187 +-1.02124973062197,50.1659196538415 +-1.02308093523434,50.0760057224585 +-1.16280151952284,50.0770973851188 + + + + + +SZ62 +#labelStyle + +-1.09208401958348,50.1215350583763 + + + + +SZ63 + +Small Square SZ63 Boundry Box +#Line2 + + +1 + +-1.16123204995373,50.1670237735856 +-1.15965477337658,50.256939731979 +-1.01940904950356,50.2558411269805 +-1.02124954701953,50.1659286460613 +-1.16123204995373,50.1670237735856 + + + + + +SZ63 +#labelStyle + +-1.0903792628145,50.2114590589209 + + + + +SZ64 + +Small Square SZ64 Boundry Box +#Line2 + + +1 + +-1.15965461523313,50.2569487244022 +-1.15806932154747,50.3468632459016 +-1.01755901299818,50.3457611500324 +-1.01940886496867,50.2558501190553 +-1.15965461523313,50.2569487244022 + + + + + +SZ64 +#labelStyle + +-1.08866584790544,50.3013816158677 + + + + +SZ65 + +Small Square SZ65 Boundry Box +#Line2 + + +1 + +-1.15806916259958,50.3468722381811 +-1.15647579856655,50.4367853234104 +-1.0156995589856,50.4356797235295 +-1.01755882752464,50.3457701419622 +-1.15806916259958,50.3468722381811 + + + + + +SZ65 +#labelStyle + +-1.08694371743511,50.391302729791 + + + + +SZ66 + +Small Square SZ66 Boundry Box +#Line2 + + +1 + +-1.15647563880886,50.4367943155463 +-1.15487415070142,50.526705965141 +-1.01383062477607,50.525596848015 +-1.01569937256719,50.4356887153144 +-1.15647563880886,50.4367943155463 + + + + + +SZ66 +#labelStyle + +-1.08521281345638,50.4812224012765 + + + + +SZ67 + +Small Square SZ67 Boundry Box +#Line2 + + +1 + +-1.15487399012855,50.5267149571334 +-1.15326432372596,50.6166251717402 +-1.01195214710382,50.6155125240425 +-1.01383043740648,50.525605839655 +-1.15487399012855,50.5267149571334 + + + + + +SZ67 +#labelStyle + +-1.08347307749023,50.5711406309207 + + + + +SZ68 + +Small Square SZ68 Boundry Box +#Line2 + + +1 + +-1.15326416233245,50.6166341635891 +-1.15164626291464,50.7065429438662 +-1.01006406212053,50.7054267521762 +-1.01195195877671,50.6155215155377 +-1.15326416233245,50.6166341635891 + + + + + +SZ68 +#labelStyle + +-1.08172445051971,50.661057419331 + + + + +SZ69 + +Small Square SZ69 Boundry Box +#Line2 + + +1 + +-1.15164610069499,50.7065519355717 +-1.15001991303685,50.7964592821886 +-1.00816630538864,50.7953395329907 +-1.01006387282947,50.7054357435266 +-1.15164610069499,50.7065519355717 + + + + + +SZ69 +#labelStyle + +-1.07996687298381,50.750972767126 + + + + +SZ70 + +Small Square SZ70 Boundry Box +#Line2 + + +1 + +-1.0267021525782,49.8961554045494 +-1.0248893254154,49.9860722380119 +-0.885438539526661,49.9848164165314 +-0.887510568140712,49.8949035514653 +-1.0267021525782,49.8961554045494 + + + + + +SZ70 +#labelStyle + +-0.956128082240838,49.9405124329997 + + + + +SZ71 + +Small Square SZ71 Boundry Box +#Line2 + + +1 + +-1.02488914365693,49.9860812305219 +-1.02306714489706,50.075996612508 +-0.883355820914036,50.074736807489 +-0.885438331780058,49.9848254086438 +-1.02488914365693,49.9860812305219 + + + + + +SZ71 +#labelStyle + +-0.954180532649684,50.0304356111267 + + + + +SZ72 + +Small Square SZ72 Boundry Box +#Line2 + + +1 + +-1.02306696221832,50.0760056048729 +-1.021235731417,50.1659195358827 +-0.881262549922777,50.1646557324765 +-0.883355612115659,50.0747457994547 +-1.02306696221832,50.0760056048729 + + + + + +SZ72 +#labelStyle + +-0.952223122699166,50.1203573307281 + + + + +SZ73 + +Small Square SZ73 Boundry Box +#Line2 + + +1 + +-1.02123554781193,50.1659285281025 +-1.01939502397417,50.2558410086471 +-0.879158656841912,50.2545731919013 +-0.881262340065687,50.1646647242957 +-1.02123554781193,50.1659285281025 + + + + + +SZ73 +#labelStyle + +-0.950255787327741,50.2102775922597 + + + + +SZ74 + +Small Square SZ74 Boundry Box +#Line2 + + +1 + +-1.01939483943664,50.2558500007219 +-1.01754496101063,50.345761031323 +-0.877044071324164,50.3444891861803 +-0.879158445919106,50.2545821835739 +-1.01939483943664,50.2558500007219 + + + + + +SZ74 +#labelStyle + +-0.9482784608806,50.3001963961875 + + + + +SZ75 + +Small Square SZ75 Boundry Box +#Line2 + + +1 + +-1.01754477553445,50.3457700232527 +-1.01568548040528,50.4356796044427 +-0.874918722378761,50.4344037157404 +-0.877043859328576,50.3444981777065 +-1.01754477553445,50.3457700232527 + + + + + +SZ75 +#labelStyle + +-0.94629107710297,50.3901137429876 + + + + +SZ76 + +Small Square SZ76 Boundry Box +#Line2 + + +1 + +-1.0156852939842,50.4356885962276 +-1.01381651946745,50.5255967285494 +-0.872782538364141,50.524316781018 +-0.874918509303259,50.4344127071201 +-1.0156852939842,50.4356885962276 + + + + + +SZ76 +#labelStyle + +-0.944293569133322,50.4800296331467 + + + + +SZ77 + +Small Square SZ77 Boundry Box +#Line2 + + +1 + +-1.01381633209519,50.5256057201893 +-1.01193801493049,50.6155124041966 +-0.870635446980567,50.6142283824593 +-0.872782324201527,50.5243257722514 +-1.01381633209519,50.5256057201893 + + + + + +SZ77 +#labelStyle + +-0.94228586949649,50.5699440671612 + + + + +SZ78 + +Small Square SZ78 Boundry Box +#Line2 + + +1 + +-1.01193782660068,50.6155213956917 +-1.01004990294515,50.7054266319485 +-0.86847737526263,50.7041385205198 +-0.870635231723579,50.6142373735462 +-1.01193782660068,50.6155213956917 + + + + + +SZ78 +#labelStyle + +-0.940267910096692,50.6598570455378 + + + + +SZ79 + +Small Square SZ79 Boundry Box +#Line2 + + +1 + +-1.01004971365138,50.7054356232989 +-1.00815211907295,50.7953394123799 +-0.86630824957166,50.7940471956647 +-0.868477158903937,50.7041475114604 +-1.01004971365138,50.7054356232989 + + + + + +SZ79 +#labelStyle + +-0.938239622210459,50.7497685687933 + + + + +SZ80 + +Small Square SZ80 Boundry Box +#Line2 + + +1 + +-0.887496648089367,49.8949034179135 +-0.88542459355586,49.9848162825562 +-0.745984292169509,49.9833928782927 +-0.748315479700633,49.8934845114 +-0.887496648089367,49.8949034179135 + + + + + +SZ80 +#labelStyle + +-0.816798176765017,49.9391747925096 + + + + +SZ81 + +Small Square SZ81 Boundry Box +#Line2 + + +1 + +-0.885424385806659,49.9848252746685 +-0.88334184889013,50.0747366730888 +-0.743641078492128,50.0733087539157 +-0.745984058439051,49.9834018699544 +-0.885424385806659,49.9848252746685 + + + + + +SZ81 +#labelStyle + +-0.814590752743135,50.0290937288151 + + + + +SZ82 + +Small Square SZ82 Boundry Box +#Line2 + + +1 + +-0.883341640089142,50.0747456650545 +-0.881248551713842,50.1646555976498 +-0.741285993516462,50.1632231467397 +-0.743640843578437,50.0733177454291 +-0.883341640089142,50.0747456650545 + + + + + +SZ82 +#labelStyle + +-0.812372153441173,50.1190111908101 + + + + +SZ83 + +Small Square SZ83 Boundry Box +#Line2 + + +1 + +-0.881248341854127,50.1646645894689 +-0.879144632315152,50.2545730566464 +-0.738918958827853,50.2531360570546 +-0.741285757411732,50.1632321381049 +-0.881248341854127,50.1646645894689 + + + + + +SZ83 +#labelStyle + +-0.810142305129602,50.2089271788401 + + + + +SZ84 + +Small Square SZ84 Boundry Box +#Line2 + + +1 + +-0.879144421389709,50.254582048319 +-0.877030020345906,50.3444890504957 +-0.736539895295997,50.3430474851588 +-0.738918721524206,50.2531450482716 +-0.879144421389709,50.254582048319 + + + + + +SZ84 +#labelStyle + +-0.807901133406679,50.2988416932601 + + + + +SZ85 + +Small Square SZ85 Boundry Box +#Line2 + + +1 + +-0.877029808347666,50.3444980420218 +-0.874904644814443,50.4344035796244 +-0.734148723066855,50.4329574313592 +-0.736539656785486,50.3430564762275 +-0.877029808347666,50.3444980420218 + + + + + +SZ85 +#labelStyle + +-0.805648563190854,50.388754734434 + + + + +SZ86 + +Small Square SZ86 Boundry Box +#Line2 + + +1 + +-0.874904431736275,50.4344125710041 +-0.872768434078309,50.5243166444691 +-0.731745361554451,50.5228658959716 +-0.734148483341456,50.4329664222797 +-0.874904431736275,50.4344125710041 + + + + + +SZ86 +#labelStyle + +-0.80338451871308,50.4786663027352 + + + + +SZ87 + +Small Square SZ87 Boundry Box +#Line2 + + +1 + +-0.872768219913015,50.5243256357023 +-0.87062131583686,50.6142282454757 +-0.729329729432568,50.6127728793203 +-0.73174512060607,50.522874886744 +-0.872768219913015,50.5243256357023 + + + + + +SZ87 +#labelStyle + +-0.801108923509015,50.568576398546 + + + + +SZ88 + +Small Square SZ88 Boundry Box +#Line2 + + +1 + +-0.870621100577179,50.6142372365626 +-0.868463217123779,50.7041383830999 +-0.726901744626318,50.7026783817378 +-0.729329487253035,50.6127818699446 +-0.870621100577179,50.6142372365626 + + + + + +SZ88 +#labelStyle + +-0.79882170041112,50.658485022258 + + + + +SZ89 + +Small Square SZ89 Boundry Box +#Line2 + + +1 + +-0.86846300076238,50.7041473740405 +-0.866294064299475,50.7940470578068 +-0.724461324303605,50.7925824035653 +-0.726901501207387,50.7026873722141 +-0.86846300076238,50.7041473740405 + + + + + +SZ89 +#labelStyle + +-0.796522771540641,50.7483921742714 + + + + +SZ90 + +Small Square SZ90 Boundry Box +#Line2 + + +1 + +-0.748301560756095,49.8934843611427 +-0.745970347312789,49.9833927275591 +-0.606541840580921,49.9818017726717 +-0.609132110022426,49.891898433164 +-0.748301560756095,49.8934843611427 + + + + + +SZ90 +#labelStyle + +-0.677479375683717,49.937669832961 + + + + +SZ91 + +Small Square SZ91 Boundry Box +#Line2 + + +1 + +-0.745970113579733,49.9834017192208 +-0.743627107589644,50.073308602704 +-0.603938209552978,50.0717126017322 +-0.606541580874344,49.9818107638297 +-0.745970113579733,49.9834017192208 + + + + + +SZ91 +#labelStyle + +-0.675012150303163,50.0275839970995 + + + + +SZ92 + +Small Square SZ92 Boundry Box +#Line2 + + +1 + +-0.743626872673341,50.0733175942173 +-0.741271996436355,50.1632229950482 +-0.601321389014807,50.1616219291879 +-0.603937948531779,50.07172159274 +-0.743626872673341,50.0733175942173 + + + + + +SZ92 +#labelStyle + +-0.672532435386584,50.1174966691716 + + + + +SZ93 + +Small Square SZ93 Boundry Box +#Line2 + + +1 + +-0.741271760329,50.1632319864133 +-0.738904935437396,50.2531359048814 +-0.598691291856046,50.2515297551971 +-0.601321126670314,50.1616309200456 +-0.741271760329,50.1632319864133 + + + + + +SZ93 +#labelStyle + +-0.670040148543953,50.2074078493989 + + + + +SZ94 + +Small Square SZ94 Boundry Box +#Line2 + + +1 + +-0.738904698131112,50.2531448960983 +-0.736525845461585,50.343047332502 +-0.596047830171453,50.3414360799257 +-0.598691028179509,50.2515387459046 +-0.738904698131112,50.2531448960983 + + + + + +SZ94 +#labelStyle + +-0.66753520663418,50.2973175380112 + + + + +SZ95 + +Small Square SZ95 Boundry Box +#Line2 + + +1 + +-0.736525606948422,50.3430563235707 +-0.734134646653995,50.4329572782172 +-0.593390915251919,50.431340903547 +-0.596047565154041,50.3414450704831 +-0.736525606948422,50.3430563235707 + + + + + +SZ95 +#labelStyle + +-0.665017525756632,50.3872257352463 + + + + +SZ96 + +Small Square SZ96 Boundry Box +#Line2 + + +1 + +-0.734134406925932,50.4329662691376 +-0.731731258427759,50.5228657423425 +-0.590720457575366,50.5212442262418 +-0.59339064888472,50.4313498939543 +-0.734134406925932,50.4329662691376 + + + + + +SZ96 +#labelStyle + +-0.662487021242543,50.4771324413503 + + + + +SZ97 + +Small Square SZ97 Boundry Box +#Line2 + + +1 + +-0.731731017476699,50.5228747331148 +-0.729315599455755,50.6127727252021 +-0.58803636679752,50.6111460481981 +-0.590720189849388,50.521253216499 +-0.731731017476699,50.5228747331148 + + + + + +SZ97 +#labelStyle + +-0.6599436076463,50.5670376565771 + + + + +SZ98 + +Small Square SZ98 Boundry Box +#Line2 + + +1 + +-0.729315357273529,50.6127817158264 +-0.726887587662185,50.7026782271289 +-0.585338551742553,50.7010463696112 +-0.588036097703686,50.6111550383053 +-0.729315357273529,50.6127817158264 + + + + + +SZ98 +#labelStyle + +-0.657387198736617,50.6569413811885 + + + + +SZ99 + +Small Square SZ99 Boundry Box +#Line2 + + +1 + +-0.726887344240547,50.702687217605 +-0.724447140214034,50.7925822484636 +-0.582626920393601,50.7909451906835 +-0.585338281271704,50.7010553595683 +-0.726887344240547,50.702687217605 + + + + + +SZ99 +#labelStyle + +-0.654817707487581,50.7468436154542 + + + + + +TA + +Large Square TA Boundry Box +#Line1 + + +1 + +-0.494344335288226,53.4872222307293 +-0.461645301921683,54.3856706614672 +1.07634115735887,54.356260936836 +1.01103659685935,53.4587595114402 +-0.494344335288226,53.4872222307293 + + + + + +TA00 + +Small Square TA00 Boundry Box +#Line2 + + +1 + +-0.494344335288226,53.4872222307293 +-0.491153970263921,53.577065690355 +-0.340205194830135,53.5750663682652 +-0.343714447772667,53.4852294161717 +-0.494344335288226,53.4872222307293 + + + + + +TA00 +#labelStyle + +-0.417346778967806,53.531174268072 + + + + +TA01 + +Small Square TA01 Boundry Box +#Line2 + + +1 + +-0.491153650334132,53.5770746755249 +-0.487946017632433,53.6669166446341 +-0.33667659853931,53.6649107868076 +-0.340204842922377,53.575075352783 +-0.491153650334132,53.5770746755249 + + + + + +TA01 +#labelStyle + +-0.413987552387336,53.6210227837575 + + + + +TA02 + +Small Square TA02 Boundry Box +#Line2 + + +1 + +-0.487945695969421,53.666925629655 +-0.484720669533229,53.7567661086298 +-0.333128870285096,53.7547536873028 +-0.336676244725309,53.6649197711736 +-0.487945695969421,53.666925629655 + + + + + +TA02 +#labelStyle + +-0.41061012816659,53.7108697954653 + + + + +TA03 + +Small Square TA03 Boundry Box +#Line2 + + +1 + +-0.484720346124324,53.7567750935017 +-0.481477798639561,53.8466140827279 +-0.329561870055028,53.8445950699256 +-0.333128514550921,53.7547626715169 +-0.484720346124324,53.7567750935017 + + + + + +TA03 +#labelStyle + +-0.40721437329499,53.8007153034769 + + + + +TA04 + +Small Square TA04 Boundry Box +#Line2 + + +1 + +-0.481477473471967,53.8466230674508 +-0.478217276351986,53.9364605673173 +-0.32597545643744,53.9344349348521 +-0.329561512386607,53.844604053988 +-0.481477473471967,53.8466230674508 + + + + + +TA04 +#labelStyle + +-0.403800153434187,53.8905593080764 + + + + +TA05 + +Small Square TA05 Boundry Box +#Line2 + + +1 + +-0.47821694941278,53.9364695518913 +-0.474938972782535,54.0263055627904 +-0.322369486604071,54.0242732822593 +-0.325975096820563,53.9344439187627 +-0.47821694941278,53.9364695518913 + + + + + +TA05 +#labelStyle + +-0.400367332901565,53.9804018095498 + + + + +TA06 + +Small Square TA06 Boundry Box +#Line2 + + +1 + +-0.474938644058662,54.0263145472155 +-0.471642756738646,54.1161490695424 +-0.318743816292402,54.1141101123256 +-0.322369125024382,54.0242822660182 +-0.474938644058662,54.0263145472155 + + + + + +TA06 +#labelStyle + +-0.396915774653511,54.0702428081854 + + + + +TA07 + +Small Square TA07 Boundry Box +#Line2 + + +1 + +-0.471642426216921,54.1161580538186 +-0.468328495706858,54.2059910879714 +-0.315098299787736,54.2039454252295 +-0.318743452735403,54.1141190959327 +-0.471642426216921,54.1161580538186 + + + + + +TA07 +#labelStyle + +-0.393445340268418,54.1600823042735 + + + + +TA08 + +Small Square TA08 Boundry Box +#Line2 + + +1 + +-0.468328163373964,54.2060000720989 +-0.464996055836259,54.2958316184785 +-0.311432789905005,54.2937792211505 +-0.315097934238783,54.2039544086849 +-0.468328163373964,54.2060000720989 + + + + + +TA08 +#labelStyle + +-0.38995588992945,54.2499202981059 + + + + +TA09 + +Small Square TA09 Boundry Box +#Line2 + + +1 + +-0.464995721678743,54.2958406024572 +-0.461645301921683,54.3856706614672 +-0.3077471379703,54.3836115002685 +-0.311432422349304,54.2937882044543 +-0.464995721678743,54.2958406024572 + + + + + +TA09 +#labelStyle + +-0.38644728240703,54.3397567899762 + + + + +TA10 + +Small Square TA10 Boundry Box +#Line2 + + +1 + +-0.343699384191882,53.4852292073799 +-0.340190099364025,53.5750661587916 +-0.189260317913406,53.5728764462447 +-0.193088353412501,53.4830466213973 +-0.343699384191882,53.4852292073799 + + + + + +TA10 +#labelStyle + +-0.266551815650076,53.5290829372054 + + + + +TA11 + +Small Square TA11 Boundry Box +#Line2 + + +1 + +-0.340189747453069,53.5750751433093 +-0.33666147101235,53.6649105766493 +-0.185411184528124,53.6627137066575 +-0.189259934038274,53.5728854300482 +-0.340189747453069,53.5750751433093 + + + + + +TA11 +#labelStyle + +-0.262872844209491,53.6189246199963 + + + + +TA12 + +Small Square TA12 Boundry Box +#Line2 + + +1 + +-0.336661117195134,53.6649195610152 +-0.333113710523686,53.7547534764569 +-0.181541183892152,53.7525494186221 +-0.18541079857385,53.6627226903061 +-0.336661117195134,53.6649195610152 + + + + + +TA12 +#labelStyle + +-0.259173945425946,53.7087647698348 + + + + +TA13 + +Small Square TA13 Boundry Box +#Line2 + + +1 + +-0.333113354786278,53.7547624606709 +-0.3295466778843,53.8445948583891 +-0.177650163323177,53.8423835820825 +-0.181540795843543,53.7525584021159 +-0.333113354786278,53.7547624606709 + + + + + +TA13 +#labelStyle + +-0.255454973672857,53.7986033867825 + + + + +TA14 + +Small Square TA14 Boundry Box +#Line2 + + +1 + +-0.329546320212629,53.8446038424514 +-0.325960231681247,53.934434722622 +-0.173737968613429,53.9322161969817 +-0.177649773164889,53.8423925654215 +-0.329546320212629,53.8446038424514 + + + + + +TA14 +#labelStyle + +-0.251715781870252,53.8884404709014 + + + + +TA15 + +Small Square TA15 Boundry Box +#Line2 + + +1 + +-0.325959872061101,53.9344437065325 +-0.32235422908497,54.0242730693328 +-0.169804444010716,54.0220472632614 +-0.173737576329966,53.9322251801658 +-0.325959872061101,53.9344437065325 + + + + + +TA15 +#labelStyle + +-0.247956221466723,53.9782760222536 + + + + +TA16 + +Small Square TA16 Boundry Box +#Line2 + + +1 + +-0.322353867501995,54.0242820530916 +-0.318728525831646,54.1141098986995 +-0.165849432199178,54.1118767808619 +-0.169804049586423,54.0220562462906 +-0.322353867501995,54.0242820530916 + + + + + +TA16 +#labelStyle + +-0.244176142421114,54.0681100409008 + + + + +TA17 + +Small Square TA17 Boundry Box +#Line2 + + +1 + +-0.318728162271343,54.1141188823066 +-0.315082976205257,54.2039452109009 +-0.161872774279753,54.2017047497218 +-0.165849035618244,54.1118857637362 +-0.318728162271343,54.1141188823066 + + + + + +TA17 +#labelStyle + +-0.240375393183926,54.1579425269047 + + + + +TA18 + +Small Square TA18 Boundry Box +#Line2 + + +1 + +-0.315082610652983,54.2039541943563 +-0.311417433019404,54.2937790061164 +-0.157874309750351,54.291531169778 +-0.161872375526211,54.2017137324412 +-0.315082610652983,54.2039541943563 + + + + + +TA18 +#labelStyle + +-0.236553820678452,54.2477734803263 + + + + +TA19 + +Small Square TA19 Boundry Box +#Line2 + + +1 + +-0.311417065460363,54.2937879894201 +-0.30773174759883,54.3836112845257 +-0.15385387648572,54.3813560409653 +-0.157873908808068,54.2915401523425 +-0.311417065460363,54.2937879894201 + + + + + +TA19 +#labelStyle + +-0.232711270281617,54.3376029012259 + + + + +TA20 + +Small Square TA20 Boundry Box +#Line2 + + +1 + +-0.193073291803116,53.4830463936291 +-0.189245224433043,53.5728762177329 +-0.0383361595176669,53.5704961708466 +-0.0424828278927831,53.4806740919654 +-0.193073291803116,53.4830463936291 + + + + + +TA20 +#labelStyle + +-0.115776637934781,53.5268015340471 + + + + +TA21 + +Small Square TA21 Boundry Box +#Line2 + + +1 + +-0.189244840554716,53.5728852015363 +-0.185396059001403,53.6627134773988 +-0.0341666402217737,53.6603256517366 +-0.0383357436902062,53.5705051538737 +-0.189244840554716,53.5728852015363 + + + + + +TA21 +#labelStyle + +-0.111778065833472,53.6166357636663 + + + + +TA22 + +Small Square TA22 Boundry Box +#Line2 + + +1 + +-0.185395673043916,53.6627224610474 +-0.181526026145617,53.7525491886134 +-0.0299745198947058,53.7501535511466 +-0.0341662221424212,53.6603346346056 +-0.185395673043916,53.6627224610474 + + + + + +TA22 +#labelStyle + +-0.107757838122169,53.7064684287354 + + + + +TA23 + +Small Square TA23 Boundry Box +#Line2 + + +1 + +-0.181525638093778,53.752558172107 +-0.177634973182107,53.8423833513205 +-0.0257596332029861,53.8399798687698 +-0.02997409954701,53.7501625338574 +-0.181525638093778,53.752558172107 + + + + + +TA23 +#labelStyle + +-0.103715796576062,53.7962995290765 + + + + +TA24 + +Small Square TA24 Boundry Box +#Line2 + + +1 + +-0.177634583020572,53.8423923346594 +-0.173722745901823,53.9322159654633 +-0.0215218131617016,53.9298046042959 +-0.0257592105703315,53.8399888513224 +-0.177634583020572,53.8423923346594 + + + + + +TA24 +#labelStyle + +-0.0996517813916028,53.8861290645096 + + + + +TA25 + +Small Square TA25 Boundry Box +#Line2 + + +1 + +-0.173722353615094,53.9322249486472 +-0.169789188551283,54.0220470309832 +-0.0172608911139754,54.019627757411 +-0.0215213882273068,53.9298135866903 +-0.173722353615094,53.9322249486472 + + + + + +TA25 +#labelStyle + +-0.0955656311669062,53.9759570348524 + + + + +TA26 + +Small Square TA26 Boundry Box +#Line2 + + +1 + +-0.169788794123706,54.0220560140123 +-0.165834143813322,54.1118765478207 +-0.0129766967101416,54.1094493277969 +-0.0172604638608896,54.0196367396471 +-0.169788794123706,54.0220560140123 + + + + + +TA26 +#labelStyle + +-0.0914571828818666,54.0657834399197 + + + + +TA27 + +Small Square TA27 Boundry Box +#Line2 + + +1 + +-0.165833747229087,54.1118855306949 +-0.16185745278756,54.2017045159143 +-0.0086690578866036,54.1992693151316 +-0.012976267121245,54.1094583098748 +-0.165833747229087,54.1118855306949 + + + + + +TA27 +#labelStyle + +-0.0873262718779604,54.155608279524 + + + + +TA28 + +Small Square TA28 Boundry Box +#Line2 + + +1 + +-0.161857054030698,54.2017134986336 +-0.157858954970577,54.2915309352008 +-0.00433780084437495,54.2890877190885 +-0.0086686259446039,54.1992782970512 +-0.161857054030698,54.2017134986336 + + + + + +TA28 +#labelStyle + +-0.0831727318377646,54.2454315534746 + + + + +TA29 + +Small Square TA29 Boundry Box +#Line2 + + +1 + +-0.157858554024955,54.2915399177653 +-0.153838488235776,54.3813558056152 +1.72499727071569E-05,54.3789045393363 +-0.00433736653180357,54.2890967008497 +-0.157858554024955,54.2915399177653 + + + + + +TA29 +#labelStyle + +-0.0789963947641502,54.3352532615774 + + + + +TA30 + +Small Square TA30 Boundry Box +#Line2 + + +1 + +-0.0424677684257587,53.4806738452267 +-0.038321068195253,53.5704959233024 +0.11256555912059,53.5679256030566 +0.108100419952308,53.4781118884558 +-0.0424677684257587,53.4806738452267 + + + + + +TA30 +#labelStyle + +0.0349770384028469,53.5243301169571 + + + + +TA31 + +Small Square TA31 Boundry Box +#Line2 + + +1 + +-0.0383206523645981,53.5705049063295 +-0.0341515168687467,53.6603254033834 +0.117055300616778,53.6577466834405 +0.11256600688409,53.5679345852455 +-0.0383206523645981,53.5705049063295 + + + + + +TA31 +#labelStyle + +0.039295054491331,53.6141562735192 + + + + +TA32 + +Small Square TA32 Boundry Box +#Line2 + + +1 + +-0.0341510987861822,53.6603343862523 +-0.0299593643377668,53.7501533019809 +0.121569375293367,53.7475661466855 +0.117055750804757,53.6577556654677 +-0.0341510987861822,53.6603343862523 + + + + + +TA32 +#labelStyle + +0.0436364528973756,53.7039808313144 + + + + +TA33 + +Small Square TA33 Boundry Box +#Line2 + + +1 + +-0.029958943986842,53.7501622846917 +-0.0257444452675727,53.8399796187882 +0.126107961114781,53.8373839922141 +0.121569827923534,53.7475751285509 +-0.029958943986842,53.7501622846917 + + + + + +TA33 +#labelStyle + +0.0480014044247091,53.7938037899054 + + + + +TA34 + +Small Square TA34 Boundry Box +#Line2 + + +1 + +-0.0257440226316713,53.8399886013408 +-0.0215065926719741,53.929804353495 +0.130671237822556,53.9272002194429 +0.126108416205021,53.8373929739178 +-0.0257440226316713,53.8399886013408 + + + + + +TA34 +#labelStyle + +0.0523900815808571,53.8836251488503 + + + + +TA35 + +Small Square TA35 Boundry Box +#Line2 + + +1 + +-0.0215061677343152,53.9298133358893 +-0.0172456378928051,54.0196275057871 +0.135259386957421,54.0170148277817 +0.130671695390931,53.9272092009847 +-0.0215061677343152,53.9298133358893 + + + + + +TA35 +#labelStyle + +0.0568026585982927,53.9734449077021 + + + + +TA36 + +Small Square TA36 Boundry Box +#Line2 + + +1 + +-0.0172452106364371,54.0196364880232 +-0.0129614105790976,54.1094490753466 +0.139872591881709,54.106827816634 +0.135259847022178,54.0170238091616 +-0.0172452106364371,54.0196364880232 + + + + + +TA36 +#labelStyle + +0.0612393114558838,54.0632630660085 + + + + +TA37 + +Small Square TA37 Boundry Box +#Line2 + + +1 + +-0.012960980986901,54.1094580574244 +-0.00865373866593871,54.1992690618513 +0.144511037802092,54.1966391853959 +0.139873054461275,54.1068367978518 +-0.012960980986901,54.1094580574244 + + + + + +TA37 +#labelStyle + +0.0657002179006862,54.1530796233121 + + + + +TA38 + +Small Square TA38 Boundry Box +#Line2 + + +1 + +-0.00865330672062115,54.1992780437708 +-0.00432244835301385,54.2890874649746 +0.149174911792669,54.2864489334566 +0.14451150291508,54.1966481664517 +-0.00865330672062115,54.1992780437708 + + + + + +TA38 +#labelStyle + +0.070185557470039,54.2428945791496 + + + + +TA39 + +Small Square TA39 Boundry Box +#Line2 + + +1 + +-0.00432201403710684,54.2890964467357 +3.26359171812212E-05,54.3789042843852 +0.153864402818402,54.3762570601977 +0.149175379457883,54.2864579143503 +-0.00432201403710684,54.2890964467357 + + + + + +TA39 +#labelStyle + +0.0746955115140115,54.3327079330519 + + + + +TA40 + +Small Square TA40 Boundry Box +#Line2 + + +1 + +0.108115477106166,53.4781116227529 +0.112580648113011,53.5679253364864 +0.263443118375673,53.565164808718 +0.258659682879763,53.4753600762735 +0.108115477106166,53.4781116227529 + + + + + +TA40 +#labelStyle + +0.185707499127507,53.5216687491396 + + + + +TA41 + +Small Square TA41 Boundry Box +#Line2 + + +1 + +0.112581095879703,53.5679343186752 +0.117070421622814,53.6577464159992 +0.268252905855285,53.6549768680549 +0.263443598057678,53.5651737900067 +0.112581095879703,53.5679343186752 + + + + + +TA41 +#labelStyle + +0.190344790074487,53.6114862131833 + + + + +TA42 + +Small Square TA42 Boundry Box +#Line2 + + +1 + +0.117070871814003,53.6577553980263 +0.12158452848615,53.7475658783694 +0.27308875690913,53.744787271971 +0.268253388134182,53.654985849178 +0.117070871814003,53.6577553980263 + + + + + +TA42 +#labelStyle + +0.195007188363591,53.7013020416282 + + + + +TA43 + +Small Square TA43 Boundry Box +#Line2 + + +1 + +0.121584981119544,53.7475748602347 +0.126123146668702,53.8373837230196 +0.277950862110821,53.8345960195984 +0.273089241803883,53.7447962529285 +0.121584981119544,53.7475748602347 + + + + + +TA43 +#labelStyle + +0.199694877356632,53.7911162337578 + + + + +TA44 + +Small Square TA44 Boundry Box +#Line2 + + +1 + +0.126123601762186,53.8373927047231 +0.130686455913278,53.927199949366 +0.28283941393644,53.9244031100604 +0.277951349640581,53.8346050003903 +0.126123601762186,53.8373927047231 + + + + + +TA44 +#labelStyle + +0.204408042243974,53.8809287888482 + + + + +TA45 + +Small Square TA45 Boundry Box +#Line2 + + +1 + +0.130686913484916,53.9272089309077 +0.135274637761899,54.0170145568189 +0.287754606788167,54.0142085424707 +0.28283990412055,53.9244120906866 +0.130686913484916,53.9272089309077 + + + + + +TA45 +#labelStyle + +0.209146870067216,53.9707397061676 + + + + +TA46 + +Small Square TA46 Boundry Box +#Line2 + + +1 + +0.135275097829937,54.0170235381986 +0.139887875578197,54.1068275447812 +0.292696637018256,54.1040123159334 +0.287755099646166,54.014217522931 +0.135275097829937,54.0170235381986 + + + + + +TA46 +#labelStyle + +0.213911549742212,54.0605489849765 + + + + +TA47 + +Small Square TA47 Boundry Box +#Line2 + + +1 + +0.139888338161061,54.106836525999 +0.144526354570155,54.1966389126494 +0.297665702953373,54.1938144295427 +0.292697132569878,54.1040212962277 +0.139888338161061,54.106836525999 + + + + + +TA47 +#labelStyle + +0.218702272082442,54.1503566245269 + + + + +TA48 + +Small Square TA48 Boundry Box +#Line2 + + +1 + +0.14452681968646,54.1966478937052 +0.149190261813201,54.2864486598126 +0.302662004919297,54.2836148823828 +0.297666201218548,54.1938234096711 +0.14452681968646,54.1966478937052 + + + + + +TA48 +#labelStyle + +0.22351922982272,54.2401626240623 + + + + +TA49 + +Small Square TA49 Boundry Box +#Line2 + + +1 + +0.149190729481749,54.2864576407062 +0.153879786273635,54.3762567856522 +0.307685745266,54.373413673527 +0.30266250591816,54.283623862345 +0.149190729481749,54.2864576407062 + + + + + +TA49 +#labelStyle + +0.228362617643279,54.3299669828174 + + + + +TA50 + +Small Square TA50 Boundry Box +#Line2 + + +1 + +0.258674737549816,53.4753597916132 +0.263458204866222,53.5651645231286 +0.414294800355262,53.5622138585254 +0.409193255358834,53.4724187256428 +0.258674737549816,53.4753597916132 + + + + + +TA50 +#labelStyle + +0.336413031665815,53.5188174986372 + + + + +TA51 + +Small Square TA51 Boundry Box +#Line2 + + +1 + +0.263458684551417,53.5651735044172 +0.268268024341205,53.6549765815323 +0.41942444511631,53.6520162767492 +0.414295311936993,53.562222838852 +0.263458684551417,53.5651735044172 + + + + + +TA51 +#labelStyle + +0.341369415908004,53.6086256511578 + + + + +TA52 + +Small Square TA52 Boundry Box +#Line2 + + +1 + +0.268268506623309,53.6549855626554 +0.273103907563367,53.7447869845114 +0.424581881966197,53.7418169986518 +0.419424959467161,53.6520252569062 +0.268268506623309,53.6549855626554 + + + + + +TA52 +#labelStyle + +0.346352630710646,53.6984321286367 + + + + +TA53 + +Small Square TA53 Boundry Box +#Line2 + + +1 + +0.273104392461345,53.7447959654688 +0.277966045107582,53.8345957311978 +0.429767314064451,53.8316160230552 +0.424582399106382,53.7418259786391 +0.273104392461345,53.7447959654688 + + + + + +TA53 +#labelStyle + +0.351362871971291,53.7882369300585 + + + + +TA54 + +Small Square TA54 Boundry Box +#Line2 + + +1 + +0.277966532640586,53.8346047119896 +0.282854629451206,53.9244028207146 +0.434980946598077,53.9214133487692 +0.429767834014387,53.8316250028727 +0.277966532640586,53.8346047119896 + + + + + +TA54 +#labelStyle + +0.356400337540457,53.8780400543974 + + + + +TA55 + +Small Square TA55 Boundry Box +#Line2 + + +1 + +0.282855119638577,53.9244118013407 +0.287769854997702,54.0142082521758 +0.440222986806724,54.0112089745914 +0.434981469378384,53.9214223284168 +0.282855119638577,53.9244118013407 + + + + + +TA55 +#labelStyle + +0.361465227245851,53.9678415006171 + + + + +TA56 + +Small Square TA56 Boundry Box +#Line2 + + +1 + +0.28777034785898,54.014217232636 +0.292711918100623,54.1040120246853 +0.445493644008234,54.1010028993064 +0.440223512438232,54.011217954069 +0.28777034785898,54.014217232636 + + + + + +TA56 +#labelStyle + +0.366557742916942,54.05764126767 + + + + +TA57 + +Small Square TA57 Boundry Box +#Line2 + + +1 + +0.29271241365554,54.1040210049795 +0.297681017087944,54.1938141373373 +0.450793129624561,54.1907951216857 +0.445494172511978,54.1010118786138 +0.29271241365554,54.1040210049795 + + + + + +TA57 +#labelStyle + +0.37167808840992,54.1474393544975 + + + + +TA58 + +Small Square TA58 Boundry Box +#Line2 + + +1 + +0.297681515356433,54.1938231174655 +0.30267735228677,54.2836145892159 +0.456121657208088,54.2805856404876 +0.450793661021788,54.1908041008228 +0.297681515356433,54.1938231174655 + + + + + +TA58 +#labelStyle + +0.376826469633002,54.2372357600291 + + + + +TA59 + +Small Square TA59 Boundry Box +#Line2 + + +1 + +0.302677853288965,54.283623569178 +0.307701126048409,54.3734133793944 +0.461479442468347,54.3703744544564 +0.456122191520264,54.2805946194543 +0.302677853288965,54.283623569178 + + + + + +TA59 +#labelStyle + +0.382003094572143,54.3270304831824 + + + + +TA60 + +Small Square TA60 Boundry Box +#Line2 + + +1 + +0.409208307374618,53.4724184220323 +0.414309884172241,53.5622135539241 +0.565118889022668,53.5590728280189 +0.559699433691808,53.4692879116011 +0.409208307374618,53.4724184220323 + + + + + +TA60 +#labelStyle + +0.487091925227974,53.5157764383247 + + + + +TA61 + +Small Square TA61 Boundry Box +#Line2 + + +1 + +0.414310395757162,53.5622225342506 +0.419439560909165,53.6520159711528 +0.570568189900976,53.6488649855707 +0.56511943248411,53.5590818073216 +0.414310395757162,53.5622225342506 + + + + + +TA61 +#labelStyle + +0.492367208789496,53.6055746608062 + + + + +TA62 + +Small Square TA62 Boundry Box +#Line2 + + +1 + +0.419440075263222,53.6520249513097 +0.424597029907682,53.7418166920561 +0.576047009380021,53.7386554032872 +0.570568736303564,53.6488739646995 +0.419440075263222,53.6520249513097 + + + + + +TA62 +#labelStyle + +0.497671044200665,53.6953711661967 + + + + +TA63 + +Small Square TA63 Boundry Box +#Line2 + + +1 + +0.42459754705109,53.7418256720433 +0.429782494328577,53.8316157154559 +0.581555563180453,53.8284440796603 +0.576047558745221,53.7386643822419 +0.42459754705109,53.7418256720433 + + + + + +TA63 +#labelStyle + +0.503003639870905,53.7851659531623 + + + + +TA64 + +Small Square TA64 Boundry Box +#Line2 + + +1 + +0.429783014281754,53.8316246952733 +0.434996159360123,53.9214130401621 +0.587094069175029,53.9182310131669 +0.581556115529944,53.8284530584408 +0.429783014281754,53.8316246952733 + + + + + +TA64 +#labelStyle + +0.50836520628667,53.8749590203555 + + + + +TA65 + +Small Square TA65 Boundry Box +#Line2 + + +1 + +0.43499668214369,53.9214220198096 +0.440238232243256,54.0112086649721 +0.592662747415327,54.008016202268 +0.587094624530705,53.918239991773 +0.43499668214369,53.9214220198096 + + + + + +TA65 +#labelStyle + +0.513755956037197,53.9647503664152 + + + + +TA66 + +Small Square TA66 Boundry Box +#Line2 + + +1 + +0.44023875787804,54.0112176444495 +0.445508922297108,54.1010025886705 +0.598261820158848,54.0977996454084 +0.592663305799306,54.0080251806996 +0.44023875787804,54.0112176444495 + + + + + +TA66 +#labelStyle + +0.519176103840627,54.054539989966 + + + + +TA67 + +Small Square TA67 Boundry Box +#Line2 + + +1 + +0.445509450804146,54.1010115679778 +0.450808440944944,54.190794810029 +0.603891511896519,54.1875813410167 +0.598262381593465,54.0978086236653 +0.445509450804146,54.1010115679778 + + + + + +TA67 +#labelStyle + +0.524625866570536,54.1443278896178 + + + + +TA68 + +Small Square TA68 Boundry Box +#Line2 + + +1 + +0.450808972345484,54.1908037891659 +0.456137001740469,54.2805853278055 +0.609552049380617,54.2773612875045 +0.603892076404335,54.1875903190988 +0.450808972345484,54.1908037891659 + + + + + +TA68 +#labelStyle + +0.53010546328284,54.2341140639656 + + + + +TA69 + +Small Square TA69 Boundry Box +#Line2 + + +1 + +0.456137536055974,54.2805943067721 +0.461494820394548,54.3703741407446 +0.615243661653117,54.3671394832661 +0.609552616984423,54.2773702654116 +0.456137536055974,54.2805943067721 + + + + + +TA69 +#labelStyle + +0.535615115243134,54.3238985115893 + + + + +TA70 + +Small Square TA70 Boundry Box +#Line2 + + +1 + +0.559714482883047,53.4692875890482 +0.56513396999457,53.5590725044135 +0.715913670318755,53.555741797577 +0.71017651613445,53.4659677139925 +0.559714482883047,53.4692875890482 + + + + + +TA70 +#labelStyle + +0.637742470929125,53.5125456459028 + + + + +TA71 + +Small Square TA71 Boundry Box +#Line2 + + +1 + +0.565134513459199,53.5590814837161 +0.570583302828015,53.6488646609083 +0.721682413712387,53.6455230754375 +0.715914245638652,53.555750775794 +0.565134513459199,53.5590814837161 + + + + + +TA71 +#labelStyle + +0.643336447445027,53.6023333203504 + + + + +TA72 + +Small Square TA72 Boundry Box +#Line2 + + +1 + +0.570583849233807,53.648873640037 +0.576062154434746,53.7386550775633 +0.727482400092833,53.7353025673397 +0.721682992145247,53.645532053476 +0.570583849233807,53.648873640037 + + + + + +TA72 +#labelStyle + +0.648960695048079,53.6921192330559 + + + + +TA73 + +Small Square TA73 Boundry Box +#Line2 + + +1 + +0.576062703803167,53.7386640565179 +0.581570740536663,53.8284437528704 +0.733313857715546,53.8250802714261 +0.727482981661368,53.7353115451995 +0.576062703803167,53.7386640565179 + + + + + +TA73 +#labelStyle + +0.654615434634211,53.7819033823475 + + + + +TA74 + +Small Square TA74 Boundry Box +#Line2 + + +1 + +0.581571292889393,53.8284527316508 +0.587109279007795,53.9182306853064 +0.739177017112337,53.9148561858204 +0.733314442442695,53.825089249107 +0.581571292889393,53.8284527316508 + + + + + +TA74 +#labelStyle + +0.660300889300071,53.8716857665364 + + + + +TA75 + +Small Square TA75 Boundry Box +#Line2 + + +1 + +0.587109834366727,53.9182396639124 +0.592677989900997,54.0080158733322 +0.745072111119609,54.0046303086273 +0.739177605021267,53.9148651633223 +0.587109834366727,53.9182396639124 + + + + + +TA75 +#labelStyle + +0.666017284370296,53.9614663839168 + + + + +TA76 + +Small Square TA76 Boundry Box +#Line2 + + +1 + +0.59267854828825,54.0080248517638 +0.598277095475064,54.0977993153929 +0.750999374907013,54.0944026379317 +0.745072702233722,54.0046392859499 +0.59267854828825,54.0080248517638 + + + + + +TA76 +#labelStyle + +0.671764847425176,54.0512452327649 + + + + +TA77 + +Small Square TA77 Boundry Box +#Line2 + + +1 + +0.598277656912973,54.0978082936497 +0.603906820222227,54.1875810099168 +0.75695904600653,54.1841731717986 +0.750999969249942,54.0944116150749 +0.598277656912973,54.0978082936497 + + + + + +TA77 +#labelStyle + +0.677543808328757,54.1410223113392 + + + + +TA78 + +Small Square TA78 Boundry Box +#Line2 + + +1 + +0.603907384733354,54.1875899879988 +0.609567390896084,54.2773609553155 +0.762951364341989,54.2739419082724 +0.756959643602146,54.1841821487621 +0.603907384733354,54.1875899879988 + + + + + +TA78 +#labelStyle + +0.683354399257335,54.2307976178796 + + + + +TA79 + +Small Square TA79 Boundry Box +#Line2 + + +1 + +0.609567958503219,54.2773699332225 +0.61525903653994,54.3671391499832 +0.768976572259037,54.3637088453766 +0.762951965214407,54.2739508850561 +0.609567958503219,54.2773699332225 + + + + + +TA79 +#labelStyle + +0.689196854728403,54.3205711506072 + + + + +TA80 + +Small Square TA80 Boundry Box +#Line2 + + +1 + +0.710191562331072,53.4659673725054 +0.715928748274277,53.5557414549758 +0.866677432283492,53.5522208524095 +0.860622803016094,53.4624582174604 +0.710191562331072,53.4659673725054 + + + + + +TA80 +#labelStyle + +0.788362961910352,53.5091252038914 + + + + +TA81 + +Small Square TA81 Boundry Box +#Line2 + + +1 + +0.715929323597359,53.5557504331927 +0.721697523601066,53.6455227317174 +0.872765392178681,53.6419906321312 +0.866678039439355,53.5522298294791 +0.715929323597359,53.5557504331927 + + + + + +TA81 +#labelStyle + +0.794275412651593,53.598901712863 + + + + +TA82 + +Small Square TA82 Boundry Box +#Line2 + + +1 + +0.721698102037127,53.6455317097558 +0.727497542086996,53.7353022224959 +0.878886317198198,53.7317585771681 +0.872766002619099,53.6419996090175 +0.721698102037127,53.6455317097558 + + + + + +TA82 +#labelStyle + +0.800219851543614,53.6886764128453 + + + + +TA83 + +Small Square TA83 Boundry Box +#Line2 + + +1 + +0.72749812365875,53.7353112003557 +0.733329031988775,53.8250799254539 +0.885040448104487,53.8215246852936 +0.878886930947128,53.7317675538708 +0.72749812365875,53.7353112003557 + + + + + +TA83 +#labelStyle + +0.806196511941986,53.7784493018087 + + + + +TA84 + +Small Square TA84 Boundry Box +#Line2 + + +1 + +0.73332961671916,53.8250889031347 +0.739192223839476,53.914855838715 +0.891228028060178,53.9112889542589 +0.885041065186126,53.8215336618125 +0.73332961671916,53.8250889031347 + + + + + +TA84 +#labelStyle + +0.812205629526282,53.8682203777035 + + + + +TA85 + +Small Square TA85 Boundry Box +#Line2 + + +1 + +0.73919281175166,53.9148648162168 +0.745087350476779,54.0046299603838 +0.897449302657843,54.0010513817921 +0.89122864849896,53.9112979305938 +0.73919281175166,53.9148648162168 + + + + + +TA85 +#labelStyle + +0.818247442328865,53.9579896384591 + + + + +TA86 + +Small Square TA86 Boundry Box +#Line2 + + +1 + +0.745087941594163,54.0046389377063 +0.751014647071627,54.0944022885452 +0.903704519950204,54.0908119655981 +0.897449926478453,54.0010603579427 +0.745087941594163,54.0046389377063 + + + + + +TA86 +#labelStyle + +0.82432219076409,54.0477570819836 + + + + +TA87 + +Small Square TA87 Boundry Box +#Line2 + + +1 + +0.751015241417844,54.0944112656883 +0.756974351157301,54.1841728212642 +0.909993930480772,54.1805707033578 +0.903705147177569,54.0908209415642 +0.751015241417844,54.0944112656883 + + + + + +TA87 +#labelStyle + +0.830430117657965,54.1375227061634 + + + + +TA88 + +Small Square TA88 Boundry Box +#Line2 + + +1 + +0.756974948756224,54.1841817982276 +0.762966702658947,54.2739415565851 +0.916317787314966,54.2703275927281 +0.909994561140073,54.1805796791392 +0.756974948756224,54.1841817982276 + + + + + +TA88 +#labelStyle + +0.836571468278226,54.2272865088631 + + + + +TA89 + +Small Square TA89 Boundry Box +#Line2 + + +1 + +0.76296730353469,54.2739505333687 +0.768991943923542,54.3637084925315 +0.922676346071692,54.3600826313409 +0.916318421431637,54.2703365683245 +0.76296730353469,54.2739505333687 + + + + + +TA89 +#labelStyle + +0.842746490364893,54.3170484879243 + + + + +TA90 + +Small Square TA90 Boundry Box +#Line2 + + +1 + +0.860637846048241,53.4624578570478 +0.866692507051548,53.5522204908213 +1.01740846517713,53.5485100825503 +1.01103659685935,53.4587595114402 +0.860637846048241,53.4624578570478 + + + + + +TA90 +#labelStyle + +0.938951693459308,53.5055151996219 + + + + +TA91 + +Small Square TA91 Boundry Box +#Line2 + + +1 + +0.866693114210593,53.5522294678908 +0.872780498856671,53.6419902693622 +1.02381540317568,53.6382677462894 +1.01740910414524,53.5485190584108 +0.866693114210593,53.5522294678908 + + + + + +TA91 +#labelStyle + +0.94518238735923,53.5952799262608 + + + + +TA92 + +Small Square TA92 Boundry Box +#Line2 + + +1 + +0.872781109300289,53.6419992462484 +0.878901455958222,53.7317582132134 +1.03025702606518,53.7280235240195 +1.02381604559969,53.6382767219615 +0.872781109300289,53.6419992462484 + + + + + +TA92 +#labelStyle + +0.9514467841779,53.6850427940721 + + + + +TA93 + +Small Square TA93 Boundry Box +#Line2 + + +1 + +0.878902069710368,53.7317671899159 +0.88505561911989,53.8215243201482 +1.03673358708576,53.8177774131254 +1.03025767197031,53.7280324995029 +0.878902069710368,53.7317671899159 + + + + + +TA93 +#labelStyle + +0.957745129702171,53.7748038006492 + + + + +TA94 + +Small Square TA94 Boundry Box +#Line2 + + +1 + +0.885056236204763,53.821533296667 +0.891243231505567,53.9112885879176 +1.0432453420011,53.9075294109658 +1.03673423649745,53.8177863884198 +0.885056236204763,53.821533296667 + + + + + +TA94 +#labelStyle + +0.964077672165757,53.8645629435616 + + + + +TA95 + +Small Square TA95 Boundry Box +#Line2 + + +1 + +0.891243851947601,53.9112975642524 +0.897464538709102,54.0010510142499 +1.04979254912975,53.9972795148725 +1.04324599494505,53.9075383860709 +0.891243851947601,53.9112975642524 + + + + + +TA95 +#labelStyle + +0.970444662279541,53.9543202203543 + + + + +TA96 + +Small Square TA96 Boundry Box +#Line2 + + +1 + +0.897465162532981,54.0010599904003 +0.903719788784501,54.0908115968497 +1.05637546937686,54.0870277221502 +1.04979320563193,53.9972884897881 +0.897465162532981,54.0010599904003 + + + + + +TA96 +#labelStyle + +0.976846353262292,54.0440756285471 + + + + +TA97 + +Small Square TA97 Boundry Box +#Line2 + + +1 + +0.903720416015153,54.0908205728157 +0.910009232276576,54.1805703333981 +1.06299436626634,54.1767740300758 +1.05637612946348,54.087036696876 +0.903720416015153,54.0908205728157 + + + + + +TA97 +#labelStyle + +0.983283000871891,54.1338291656345 + + + + +TA98 + +Small Square TA98 Boundry Box +#Line2 + + +1 + +0.910009862939182,54.1805793091794 +0.916333122252058,54.2703272215518 +1.06964950597365,54.2665184358978 +1.0629950299639,54.1767830046115 +0.910009862939182,54.1805793091794 + + + + + +TA98 +#labelStyle + +0.98975486343697,54.2235808290848 + + + + +TA99 + +Small Square TA99 Boundry Box +#Line2 + + +1 + +0.916333756372053,54.2703361971482 +0.922691714331179,54.3600822589428 +1.07634115735887,54.356260936836 +1.06965017330888,54.2665274102432 +0.916333756372053,54.2703361971482 + + + + + +TA99 +#labelStyle + +0.996262201889076,54.3133306163398 + + + + + +TF + +Large Square TF Boundry Box +#Line1 + + +1 + +-0.5253282338664,52.5886157148066 +-0.494344653497336,53.4872132454102 +1.01103596132221,53.4587505353915 +0.94915196166031,52.5610610058729 +-0.5253282338664,52.5886157148066 + + + + + +TF00 + +Small Square TF00 Boundry Box +#Line2 + + +1 + +-0.5253282338664,52.5886157148066 +-0.52230387830771,52.6784740997645 +-0.374468735642086,52.6765386529867 +-0.377795405833944,52.5866865110881 +-0.5253282338664,52.5886157148066 + + + + + +TF00 +#labelStyle + +-0.449966519354847,52.6326063324971 + + + + +TF01 + +Small Square TF01 Boundry Box +#Line2 + + +1 + +-0.522303575040074,52.678483086427 +-0.519263146513106,52.7683399772653 +-0.371124054184153,52.7663982612306 +-0.374468402059909,52.6765476390235 +-0.522303575040074,52.678483086427 + + + + + +TF01 +#labelStyle + +-0.446782234387471,52.7224699028172 + + + + +TF02 + +Small Square TF02 Boundry Box +#Line2 + + +1 + +-0.519262841632317,52.7683489637783 +-0.516206225840578,52.8582043608375 +-0.367761567581335,52.856256349782 +-0.371123718827767,52.7664072471155 +-0.519262841632317,52.7683489637783 + + + + + +TF02 +#labelStyle + +-0.443581012317959,52.8123319665067 + + + + +TF03 + +Small Square TF03 Boundry Box +#Line2 + + +1 + +-0.516205919335147,52.8582133472011 +-0.513133000869129,52.9480672508264 +-0.364381148910535,52.9461129187946 +-0.367761230438107,52.8562653355149 +-0.516205919335147,52.8582133472011 + + + + + +TF03 +#labelStyle + +-0.440362732557811,52.9021925238157 + + + + +TF04 + +Small Square TF04 Boundry Box +#Line2 + + +1 + +-0.51313269272746,52.9480762370407 +-0.510043355051173,53.0379286475818 +-0.360982670010049,53.0359679684251 +-0.364380809967713,52.9461219043755 +-0.51313269272746,52.9480762370407 + + + + + +TF04 +#labelStyle + +-0.437127273342983,52.9920515749977 + + + + +TF05 + +Small Square TF05 Boundry Box +#Line2 + + +1 + +-0.510043045261552,53.0379376336468 +-0.506937170698854,53.1277885514582 +-0.357566001464529,53.1258214988327 +-0.360982329254753,53.0359769538541 +-0.510043045261552,53.0379376336468 + + + + + +TF05 +#labelStyle + +-0.433874511719651,53.0819091203101 + + + + +TF06 + +Small Square TF06 Boundry Box +#Line2 + + +1 + +-0.506936859249458,53.127797537374 +-0.50381432897019,53.2176469628142 +-0.35413101258975,53.215673510179 +-0.357565658883755,53.1258304841097 +-0.506936859249458,53.127797537374 + + + + + +TF06 +#labelStyle + +-0.430604323529751,53.1717651600137 + + + + +TF07 + +Small Square TF07 Boundry Box +#Line2 + + +1 + +-0.503814015849075,53.2176559485807 +-0.500674709854992,53.3075038820128 +-0.350677571417137,53.3055240026282 +-0.354130668170366,53.2156824953042 +-0.503814015849075,53.2176559485807 + + + + + +TF07 +#labelStyle + +-0.427316583396323,53.2616196943727 + + + + +TF08 + +Small Square TF08 Boundry Box +#Line2 + + +1 + +-0.500674395050097,53.3075128676302 +-0.497518192160588,53.3973593094211 +-0.347205544678074,53.3953729763465 +-0.350677225145881,53.3055329876015 +-0.500674395050097,53.3075128676302 + + + + + +TF08 +#labelStyle + +-0.424011164708628,53.3514727236545 + + + + +TF09 + +Small Square TF09 Boundry Box +#Line2 + + +1 + +-0.497517875659735,53.3973682948893 +-0.494344653497336,53.4872132454102 +-0.343714797787977,53.4852204315021 +-0.347205196541553,53.3953819611679 +-0.497517875659735,53.3973682948893 + + + + + +TF09 +#labelStyle + +-0.420687939607057,53.4413242481298 + + + + +TF10 + +Small Square TF10 Boundry Box +#Line2 + + +1 + +-0.377780651926985,52.5866863089606 +-0.374453951506676,52.6765384502052 +-0.226636488979082,52.6744186894264 +-0.230265379558669,52.584573385177 +-0.377780651926985,52.5866863089606 + + + + + +TF10 +#labelStyle + +-0.302276559699005,52.6305817838244 + + + + +TF11 + +Small Square TF11 Boundry Box +#Line2 + + +1 + +-0.374453617921468,52.676547436242 +-0.371109239656833,52.7663980577923 +-0.222987953161322,52.7642714313344 +-0.22663612509184,52.6744276747779 +-0.374453617921468,52.676547436242 + + + + + +TF11 +#labelStyle + +-0.298789159585885,52.7204387993663 + + + + +TF12 + +Small Square TF12 Boundry Box +#Line2 + + +1 + +-0.371108904297399,52.7664070436771 +-0.367746722500521,52.8562561456842 +-0.219319996993863,52.8541226253383 +-0.222987587338921,52.7642804165312 +-0.371108904297399,52.7664070436771 + + + + + +TF12 +#labelStyle + +-0.295283212245505,52.8102942813876 + + + + +TF13 + +Small Square TF13 Boundry Box +#Line2 + + +1 + +-0.367746385354229,52.856265131417 +-0.364366273113494,52.9461127140345 +-0.215632482065169,52.9439722713821 +-0.219319629222529,52.8541316103803 +-0.367746385354229,52.856265131417 + + + + + +TF13 +#labelStyle + +-0.291758585648802,52.9001482299385 + + + + +TF14 + +Small Square TF14 Boundry Box +#Line2 + + +1 + +-0.364365934167592,52.9461216996154 +-0.360967763332886,53.035967763 +-0.211925268613275,53.033820369411 +-0.215632112330992,52.9439812562693 +-0.364365934167592,52.9461216996154 + + + + + +TF14 +#labelStyle + +-0.288215146479916,52.9900006450712 + + + + +TF15 + +Small Square TF15 Boundry Box +#Line2 + + +1 + +-0.360967422574494,53.035976748429 +-0.357551063742179,53.1258212927399 +-0.208198215509412,53.1236669193706 +-0.211924896902211,53.0338293541434 +-0.360967422574494,53.035976748429 + + + + + +TF15 +#labelStyle + +-0.284652760120604,53.0798515268397 + + + + +TF16 + +Small Square TF16 Boundry Box +#Line2 + + +1 + +-0.357550721158293,53.1258302780169 +-0.354116043655963,53.2156733034157 +-0.204451180241397,53.2135119212068 +-0.208197841807281,53.1236759039481 +-0.357550721158293,53.1258302780169 + + + + + +TF16 +#labelStyle + +-0.281071290634424,53.1697008752995 + + + + +TF17 + +Small Square TF17 Boundry Box +#Line2 + + +1 + +-0.35411569923345,53.2156822885408 +-0.350662571104469,53.3055237951916 +-0.200684018896765,53.3033553748661 +-0.204450804533876,53.2135209056296 +-0.35411569923345,53.2156822885408 + + + + + +TF17 +#labelStyle + +-0.277470600750693,53.2595486905073 + + + + +TF18 + +Small Square TF18 Boundry Box +#Line2 + + +1 + +-0.350662224830066,53.3055327801648 +-0.347190512817873,53.3953727682338 +-0.196896586145672,53.3931972802948 +-0.200683641169393,53.3033643591341 +-0.350662224830066,53.3055327801648 + + + + + +TF18 +#labelStyle + +-0.273850551848197,53.3493949725214 + + + + +TF19 + +Small Square TF19 Boundry Box +#Line2 + + +1 + +-0.347190164678189,53.3953817530551 +-0.343699734210372,53.4852202227104 +-0.193088735223533,53.483037637439 +-0.196896206383845,53.3932062644079 +-0.347190164678189,53.3953817530551 + + + + + +TF19 +#labelStyle + +-0.270211003938682,53.4392397214007 + + + + +TF20 + +Small Square TF20 Boundry Box +#Line2 + + +1 + +-0.2302506274871,52.5845731646782 +-0.226621706692074,52.6744184682141 +-0.078823527953465,52.6721144459643 +-0.0827545031675496,52.5822765730184 +-0.2302506274871,52.5845731646782 + + + + + +TF20 +#labelStyle + +-0.154605018881406,52.6283732256049 + + + + +TF21 + +Small Square TF21 Boundry Box +#Line2 + + +1 + +-0.226621342801803,52.6744274535657 +-0.222973140495543,52.7642712094058 +-0.0748712748610383,52.7619597253989 +-0.078823133774802,52.6721234305711 +-0.226621342801803,52.6744274535657 + + + + + +TF21 +#labelStyle + +-0.150814634388171,52.7182230912701 + + + + +TF22 + +Small Square TF22 Boundry Box +#Line2 + + +1 + +-0.222972774670097,52.7642801946025 +-0.219305153787859,52.8541224026902 +-0.0708979875484277,52.8518034262755 +-0.0748708785863993,52.7619687098479 +-0.222972774670097,52.7642801946025 + + + + + +TF22 +#labelStyle + +-0.147004093814027,52.8080713940898 + + + + +TF23 + +Small Square TF23 Boundry Box +#Line2 + + +1 + +-0.219304786013462,52.8541313877322 +-0.215617608156335,52.9439720480117 +-0.0669035161317917,52.9416455483107 +-0.0708975891628952,52.8518124105667 +-0.219304786013462,52.8541313877322 + + + + + +TF23 +#labelStyle + +-0.143173253704708,52.8979181338967 + + + + +TF24 + +Small Square TF24 Boundry Box +#Line2 + + +1 + +-0.21561723841908,52.9439810328988 +-0.211910363837848,53.0338201453152 +-0.0628877092652875,53.0314860912198 +-0.0669031156203058,52.941654532444 +-0.21561723841908,52.9439810328988 + + + + + +TF24 +#labelStyle + +-0.139321969208127,52.9877633105233 + + + + +TF25 + +Small Square TF25 Boundry Box +#Line2 + + +1 + +-0.211909992123689,53.0338291300476 +-0.208183279702459,53.1236666945465 +-0.0588504141233379,53.1213250547163 +-0.0628873066126386,53.0314950751951 +-0.211909992123689,53.0338291300476 + + + + + +TF25 +#labelStyle + +-0.135450094057438,53.0776069238018 + + + + +TF26 + +Small Square TF26 Boundry Box +#Line2 + + +1 + +-0.208182905997217,53.123675679124 +-0.204436213236803,53.2135116956514 +-0.0547914763826581,53.2111624385119 +-0.0588500093141706,53.1213340385336 +-0.208182905997217,53.123675679124 + + + + + +TF26 +#labelStyle + +-0.131557480553869,53.1674489735638 + + + + +TF27 + +Small Square TF27 Boundry Box +#Line2 + + +1 + +-0.204435837526154,53.2135206800741 +-0.20066902052722,53.3033551485762 +-0.0507107402040017,53.3009982423165 +-0.0547910694014636,53.2111714221713 +-0.204435837526154,53.2135206800741 + + + + + +TF27 +#labelStyle + +-0.127643979549291,53.2572894596402 + + + + +TF28 + +Small Square TF28 Boundry Box +#Line2 + + +1 + +-0.200668642796704,53.3033641328441 +-0.196881556242663,53.3931970532673 +-0.0466080482136543,53.3908324658376 +-0.0507103310351197,53.3010072258179 +-0.200668642796704,53.3033641328441 + + + + + +TF28 +#labelStyle + +-0.12370944042854,53.3471283818606 + + + + +TF29 + +Small Square TF29 Boundry Box +#Line2 + + +1 + +-0.196881176477674,53.3932060373804 +-0.193073673617327,53.4830374096709 +-0.0424832414846409,53.4806651087801 +-0.0466076368412699,53.3908414491809 +-0.196881176477674,53.3932060373804 + + + + + +TF29 +#labelStyle + +-0.119753711091478,53.4369657400538 + + + + +TF30 + +Small Square TF30 Boundry Box +#Line2 + + +1 + +-0.0827397530905612,52.5822763341537 +-0.0788087476751767,52.6721142063269 +0.068968544941314,52.6696259796884 +0.0647356320977455,52.5797961313294 +-0.0827397530905612,52.5822763341537 + + + + + +TF30 +#labelStyle + +-0.00695349442509377,52.6259807124727 + + + + +TF31 + +Small Square TF31 Boundry Box +#Line2 + + +1 + +-0.078808353493485,52.6721231909337 +-0.0748564642182567,52.7619594849855 +0.0732243668614081,52.759463200886 +0.0689689693966257,52.669634963491 +-0.078808353493485,52.6721231909337 + + + + + +TF31 +#labelStyle + +-0.00286026763264971,52.7158228335203 + + + + +TF32 + +Small Square TF32 Boundry Box +#Line2 + + +1 + +-0.0748560679405727,52.7619684694344 +-0.0708831463798353,52.8518031850829 +0.0775028354275997,52.8492988104331 +0.0732247935733695,52.7594721845275 +-0.0748560679405727,52.7619684694344 + + + + + +TF32 +#labelStyle + +0.0012547227131755,52.8056633599659 + + + + +TF33 + +Small Square TF33 Boundry Box +#Line2 + + +1 + +-0.0708827479912425,52.8518121693739 +-0.0668886442749261,52.9416453063356 +0.0818041119785626,52.9391328078007 +0.0775032644122676,52.8493077939135 +-0.0708827479912425,52.8518121693739 + + + + + +TF33 +#labelStyle + +0.00539163147515857,52.8955022914068 + + + + +TF34 + +Small Square TF34 Boundry Box +#Line2 + + +1 + +-0.0668882437603633,52.9416542904688 +-0.0628728065565279,53.031485848459 +0.0861283594262966,53.028965192456 +0.0818045432521486,52.9391417911198 +-0.0668882437603633,52.9416542904688 + + + + + +TF34 +#labelStyle + +0.00955061502469206,52.9853396274378 + + + + +TF35 + +Small Square TF35 Boundry Box +#Line2 + + +1 + +-0.0628724039007859,53.0314948324342 +-0.0588354803978954,53.1213248111665 +0.0904757422752039,53.1187959638621 +0.0861287930051727,53.0289741756138 +-0.0628724039007859,53.0314948324342 + + + + + +TF35 +#labelStyle + +0.0137318312600475,53.075175367651 + + + + +TF36 + +Small Square TF36 Boundry Box +#Line2 + + +1 + +-0.058835075585618,53.1213337949838 +-0.0547765114745627,53.21116219417 +0.0948464266414244,53.2086251214781 +0.0904761781758988,53.1188049468586 +-0.058835075585618,53.1213337949838 + + + + + +TF36 +#labelStyle + +0.0179354396249045,53.1650095116356 + + + + +TF37 + +Small Square TF37 Boundry Box +#Line2 + + +1 + +-0.0547761044902416,53.2111711778293 +-0.0506957439460926,53.300997997179 +0.0992405802724732,53.2984526647582 +0.0948468648806319,53.2086341043131 +-0.0547761044902416,53.2111711778293 + + + + + +TF37 +#labelStyle + +0.0221616011271518,53.2548420589775 + + + + +TF38 + +Small Square TF38 Boundry Box +#Line2 + + +1 + +-0.0506953347740673,53.3010069806803 +-0.046593020437566,53.3908322199012 +0.10365837256715,53.3882785931524 +0.0992410208670499,53.2984616474318 +-0.0506953347740673,53.3010069806803 + + + + + +TF38 +#labelStyle + +0.0264104783579665,53.3446730092597 + + + + +TF39 + +Small Square TF39 Boundry Box +#Line2 + + +1 + +-0.0465926090620213,53.3908412032445 +-0.0424681820207933,53.4806648620415 +0.108099974595754,53.4781029061053 +0.10365881553412,53.3882875756644 +-0.0465926090620213,53.3908412032445 + + + + + +TF39 +#labelStyle + +0.0306822355111637,53.434502362061 + + + + +TF40 + +Small Square TF40 Boundry Box +#Line2 + + +1 + +0.0647503800210974,52.5797958741048 +0.0689833230507031,52.6696257216317 +0.216738128638641,52.6669533522344 +0.212203436405413,52.5771321213458 +0.0647503800210974,52.5797958741048 + + + + + +TF40 +#labelStyle + +0.14067641751113,52.6234043035977 + + + + +TF41 + +Small Square TF41 Boundry Box +#Line2 + + +1 + +0.0689837475090417,52.6696347054343 +0.0732391753198788,52.7594629419937 +0.221297359594784,52.7567819198352 +0.216738583354699,52.6669623351735 +0.0689837475090417,52.6696347054343 + + + + + +TF41 +#labelStyle + +0.145072333223048,52.7132380856737 + + + + +TF42 + +Small Square TF42 Boundry Box +#Line2 + + +1 + +0.0732396020348832,52.7594719256352 +0.077517674396318,52.8492985507018 +0.225880848068366,52.8466088402579 +0.22129781672801,52.7567909026096 +0.0732396020348832,52.7594719256352 + + + + + +TF42 +#labelStyle + +0.149491618470168,52.8030702389634 + + + + +TF43 + +Small Square TF43 Boundry Box +#Line2 + + +1 + +0.0775181033840455,52.8493075341821 +0.0818189816198402,52.9391325472269 +0.230488766834104,52.93643411271 +0.225881307635957,52.8466178228676 +0.0775181033840455,52.8493075341821 + + + + + +TF43 +#labelStyle + +0.153934439505782,52.8929007628107 + + + + +TF44 + +Small Square TF44 Boundry Box +#Line2 + + +1 + +0.0818194128965018,52.9391415305459 +0.0861432599036008,53.0289649310362 +0.235121290351084,53.0262577363925 +0.230489228853418,52.9364430951549 +0.0818194128965018,52.9391415305459 + + + + + +TF44 +#labelStyle + +0.158400964202319,52.9827296565544 + + + + +TF45 + +Small Square TF45 Boundry Box +#Line2 + + +1 + +0.0861436934855685,53.0289739141939 +0.0904906737531679,53.1187957015929 +0.23977859478319,53.1160797104997 +0.235121754839656,53.0262667186724 +0.0861436934855685,53.0289739141939 + + + + + +TF45 +#labelStyle + +0.162891362070949,53.0725569195283 + + + + +TF46 + +Small Square TF46 Boundry Box +#Line2 + + +1 + +0.0904911096569709,53.1188046845893 +0.0948613892858608,53.2086248583558 +0.244460858019787,53.2059000342192 +0.239779061758718,53.1160886926146 +0.0904911096569709,53.1188046845893 + + + + + +TF46 +#labelStyle + +0.167405804281457,53.1623825510608 + + + + +TF47 + +Small Square TF47 Boundry Box +#Line2 + + +1 + +0.094861827528193,53.2086338411908 +0.0992555742503836,53.2984524007794 +0.249168259696744,53.2957187067315 +0.24446132750015,53.205909016169 +0.094861827528193,53.2086338411908 + + + + + +TF47 +#labelStyle + +0.171944463682417,53.2522065504744 + + + + +TF48 + +Small Square TF48 Boundry Box +#Line2 + + +1 + +0.0992560148481023,53.2984613834529 +0.103673398046738,53.3882783283134 +0.253900981217734,53.3855357272098 +0.249168731699991,53.2957276885162 +0.0992560148481023,53.2984613834529 + + + + + +TF48 +#labelStyle + +0.176507514821661,53.3420289170861 + + + + +TF49 + +Small Square TF49 Boundry Box +#Line2 + + +1 + +0.103673841016867,53.3882873108253 +0.108115031746438,53.4781026404025 +0.258659205775876,53.4753510948194 +0.253901455762097,53.3855447088292 +0.103673841016867,53.3882873108253 + + + + + +TF49 +#labelStyle + +0.181095133967041,53.4318496502064 + + + + +TF50 + +Small Square TF50 Boundry Box +#Line2 + + +1 + +0.21221818201622,52.5771318457677 +0.2167529044191,52.6669530757648 +0.364483623607375,52.6640966297808 +0.359647321440868,52.5742846088167 +0.21221818201622,52.5771318457677 + + + + + +TF50 +#labelStyle + +0.288283122240825,52.6206440626803 + + + + +TF51 + +Small Square TF51 Boundry Box +#Line2 + + +1 + +0.216753359138183,52.6669620587038 +0.221312165707777,52.7567816424705 +0.369346092481848,52.7539159488583 +0.364484108567151,52.664105611797 +0.216753359138183,52.6669620587038 + + + + + +TF51 +#labelStyle + +0.292981562211391,52.7104689118475 + + + + +TF52 + +Small Square TF52 Boundry Box +#Line2 + + +1 + +0.221312622844045,52.7567906252448 +0.225895684674901,52.8466085619945 +0.374234428080807,52.8437335827992 +0.369346580019146,52.753924930706 +0.221312622844045,52.7567906252448 + + + + + +TF52 +#labelStyle + +0.297704976099122,52.80029209562 + + + + +TF53 + +Small Square TF53 Boundry Box +#Line2 + + +1 + +0.225896144245549,52.846617544604 +0.230503634096328,52.9364338335441 +0.379148814594892,52.9335495305292 +0.374234918213958,52.8437425644783 +0.225896144245549,52.846617544604 + + + + + +TF53 +#labelStyle + +0.302453541528508,52.8901136130701 + + + + +TF54 + +Small Square TF54 Boundry Box +#Line2 + + +1 + +0.230504096118717,52.9364428159888 +0.235136188432301,53.0262574563203 +0.384089438009877,53.023363790965 +0.379149307342404,52.9335585120396 +0.230504096118717,52.9364428159888 + + + + + +TF54 +#labelStyle + +0.307227437853423,52.979933463263 + + + + +TF55 + +Small Square TF55 Boundry Box +#Line2 + + +1 + +0.235136652923962,53.0262664386001 +0.239793523847865,53.1160794295175 +0.389056486128419,53.113176363014 +0.384089933390441,53.0233727723066 +0.235136652923962,53.0262664386001 + + + + + +TF55 +#labelStyle + +0.312026846178052,53.0697516452558 + + + + +TF56 + +Small Square TF56 Boundry Box +#Line2 + + +1 + +0.2397939908265,53.1160884116323 +0.244475818233564,53.2058997523233 +0.394050148592104,53.2029872455739 +0.389056984160905,53.1131853441867 +0.2397939908265,53.1160884116323 + + + + + +TF56 +#labelStyle + +0.316851949378116,53.1595681580975 + + + + +TF57 + +Small Square TF57 Boundry Box +#Line2 + + +1 + +0.24447628771705,53.205908734273 +0.249183251226454,53.295718423918 +0.399070616903838,53.2927964375327 +0.394050649295569,53.2029962265777 +0.24447628771705,53.205908734273 + + + + + +TF57 +#labelStyle + +0.321702932122407,53.2493830008288 + + + + +TF58 + +Small Square TF58 Boundry Box +#Line2 + + +1 + +0.249183723232841,53.2957274057026 +0.253916004231407,53.3855354434749 +0.404118084450542,53.3826039377679 +0.399071120297526,53.2928054183673 +0.249183723232841,53.2957274057026 + + + + + +TF58 +#labelStyle + +0.326579980894644,53.3391961724819 + + + + +TF59 + +Small Square TF59 Boundry Box +#Line2 + + +1 + +0.253916478778927,53.3855444250942 +0.258674260442755,53.4753508101592 +0.409192746526206,53.4724097451467 +0.404118590553888,53.3826129184333 +0.253916478778927,53.3855444250942 + + + + + +TF59 +#labelStyle + +0.331483284015642,53.4290076720801 + + + + +TF60 + +Small Square TF60 Boundry Box +#Line2 + + +1 + +0.359662064580377,52.5742843148917 +0.36449839689903,52.6640963349052 +0.512203431960217,52.6610558830434 +0.507065700513829,52.571253663999 +0.359662064580377,52.5742843148917 + + + + + +TF60 +#labelStyle + +0.435865026657772,52.6177000579462 + + + + +TF61 + +Small Square TF61 Boundry Box +#Line2 + + +1 + +0.364498881861829,52.6641053169213 +0.369360896088361,52.7539156530281 +0.517368956329027,52.750865359134 +0.512203947145556,52.6610648640772 +0.364498881861829,52.6641053169213 + + + + + +TF61 +#labelStyle + +0.440865814964107,52.7075153807136 + + + + +TF62 + +Small Square TF62 Boundry Box +#Line2 + + +1 + +0.369361383628698,52.7539246348757 +0.374249262163011,52.8437332860105 +0.522561954855631,52.8406731097026 +0.517369474252065,52.7508743399954 +0.369361383628698,52.7539246348757 + + + + + +TF62 +#labelStyle + +0.445893179860777,52.7973289990576 + + + + +TF63 + +Small Square TF63 Boundry Box +#Line2 + + +1 + +0.374249752299218,52.8437422676895 +0.379163679314763,52.933549232778 +0.527782623125169,52.9304791333752 +0.522562475535834,52.8406820903913 +0.374249752299218,52.8437422676895 + + + + + +TF63 +#labelStyle + +0.450947310322847,52.8871409117616 + + + + +TF64 + +Small Square TF64 Boundry Box +#Line2 + + +1 + +0.379164172065347,52.9335582142883 +0.38410433353054,53.0233634922474 +0.533031158628358,53.0202834287662 +0.527783146582189,52.9304881138912 +0.379164172065347,52.9335582142883 + + + + + +TF64 +#labelStyle + +0.456028397164714,52.9769511175985 + + + + +TF65 + +Small Square TF65 Boundry Box +#Line2 + + +1 + +0.384104828914192,53.0233724735889 +0.389071412614163,53.113176063326 +0.538307760784574,53.1100859944778 +0.533031684882042,53.0202924091093 +0.384104828914192,53.0233724735889 + + + + + +TF65 +#labelStyle + +0.461136633062354,53.0667596153308 + + + + +TF66 + +Small Square TF66 Boundry Box +#Line2 + + +1 + +0.389071910649753,53.1131850444986 +0.394065106208392,53.2029869449115 +0.543612630965245,53.1998868290995 +0.53830828985496,53.1100949746479 +0.389071910649753,53.1131850444986 + + + + + +TF66 +#labelStyle + +0.466272212575883,53.1565664037099 + + + + +TF67 + +Small Square TF67 Boundry Box +#Line2 + + +1 + +0.394065606914978,53.2029959259151 +0.399085605817318,53.2927961358917 +0.548945972517604,53.2896859312078 +0.543613162872567,53.1998958090963 +0.394065606914978,53.2029959259151 + + + + + +TF67 +#labelStyle + +0.471435332172461,53.246371481476 + + + + +TF68 + +Small Square TF68 Boundry Box +#Line2 + + +1 + +0.399086109214144,53.2928051167262 +0.40413310482906,53.3826036351443 +0.554307990788782,53.3794832993663 +0.548946507282299,53.2896949110314 +0.399086109214144,53.2928051167262 + + + + + +TF68 +#labelStyle + +0.476626190249522,53.336174847358 + + + + +TF69 + +Small Square TF69 Boundry Box +#Line2 + + +1 + +0.404133610935561,53.3826126158096 +0.409207798538817,53.4724094415364 +0.559698893150258,53.4692789321246 +0.554308528431485,53.3794922790163 +0.404133610935561,53.3826126158096 + + + + + +TF69 +#labelStyle + +0.481844987158343,53.4259765000727 + + + + +TF70 + +Small Square TF70 Boundry Box +#Line2 + + +1 + +0.507080441023456,52.5712533517344 +0.512218202603366,52.6610555697691 +0.659895957561795,52.6578311872689 +0.654456988665126,52.5680393616514 +0.507080441023456,52.5712533517344 + + + + + +TF70 +#labelStyle + +0.583420539343557,52.6145723621407 + + + + +TF71 + +Small Square TF71 Boundry Box +#Line2 + + +1 + +0.512218717791726,52.6610645508028 +0.517383757268226,52.7508650448457 +0.66536434371579,52.7476302264016 +0.659896502953419,52.6578401672611 +0.512218717791726,52.6610645508028 + + + + + +TF71 +#labelStyle + +0.588723488821055,52.7043775654928 + + + + +TF72 + +Small Square TF72 Boundry Box +#Line2 + + +1 + +0.517384275194302,52.7508740257069 +0.522576786251532,52.8406727943961 +0.670861809578018,52.8374274972042 +0.665364892005103,52.7476392062171 +0.517384275194302,52.7508740257069 + + + + + +TF72 +#labelStyle + +0.594054615744623,52.7941810229771 + + + + +TF73 + +Small Square TF73 Boundry Box +#Line2 + + +1 + +0.522577306934788,52.8406817750847 +0.527797485139561,52.9304788170463 +0.676388562105381,52.9272229979857 +0.670862360785618,52.8374364768428 +0.522577306934788,52.8406817750847 + + + + + +TF73 +#labelStyle + +0.599414120417979,52.88398273307 + + + + +TF74 + +Small Square TF74 Boundry Box +#Line2 + + +1 + +0.527798008599651,52.9304877975622 +0.53304605142418,53.0202831114108 +0.68194481027047,53.0170167270399 +0.676389116252062,52.9272319774472 +0.527798008599651,52.9304877975622 + + + + + +TF74 +#labelStyle + +0.604802205093798,52.9737826942344 + + + + +TF75 + +Small Square TF75 Boundry Box +#Line2 + + +1 + +0.533046577680951,53.0202920917538 +0.538322684525926,53.1100856760915 +0.687530765085975,53.1068086826455 +0.681945367377233,53.0170257063241 +0.533046577680951,53.0202920917538 + + + + + +TF75 +#labelStyle + +0.610219073997278,53.0635809049199 + + + + +TF76 + +Small Square TF76 Boundry Box +#Line2 + + +1 + +0.538323213599414,53.1100946562615 +0.543627585817396,53.1998865096781 +0.693146639629418,53.1965988630653 +0.687531325174023,53.1068176617523 +0.538323213599414,53.1100946562615 + + + + + +TF76 +#labelStyle + +0.615664933350038,53.1533773635622 + + + + +TF77 + +Small Square TF77 Boundry Box +#Line2 + + +1 + +0.543628117727839,53.1998954896748 +0.54896095864701,53.289685610747 +0.69879264906827,53.2863872665464 +0.693147202720164,53.1966078419945 +0.543628117727839,53.1998954896748 + + + + + +TF77 +#labelStyle + +0.621139991394369,53.2431720685824 + + + + +TF78 + +Small Square TF78 Boundry Box +#Line2 + + +1 + +0.548961493414841,53.2896945905704 +0.554323008363092,53.3794829778616 +0.704469010685419,53.3761738913191 +0.698793215183335,53.2863962452978 +0.548961493414841,53.2896945905704 + + + + + +TF78 +#labelStyle + +0.626644458417849,53.3329650183874 + + + + +TF79 + +Small Square TF79 Boundry Box +#Line2 + + +1 + +0.554323546008947,53.3794919575116 +0.559713942338327,53.4692786095719 +0.710175943905026,53.4659587355971 +0.704469579846638,53.3761828698926 +0.554323546008947,53.3794919575116 + + + + + +TF79 +#labelStyle + +0.632178546778298,53.4227562113687 + + + + +TF80 + +Small Square TF80 Boundry Box +#Line2 + + +1 + +0.654471726386465,52.568039031055 +0.659910725396915,52.6578308556035 +0.807559606136437,52.6544226222287 +0.801819602773203,52.5646417810283 +0.654471726386465,52.568039031055 + + + + + +TF80 +#labelStyle + +0.730948070674873,52.6112610525224 + + + + +TF81 + +Small Square TF81 Boundry Box +#Line2 + + +1 + +0.659911270791558,52.6578398355957 +0.665379141827026,52.7476298936629 +0.813330649103719,52.7442106309544 +0.807560181713948,52.6544316011202 +0.659911270791558,52.6578398355957 + + + + + +TF81 +#labelStyle + +0.736552982938804,52.7010555439487 + + + + +TF82 + +Small Square TF82 Boundry Box +#Line2 + + +1 + +0.665379690119375,52.7476388734783 +0.670876638125828,52.8374271633877 +0.819132375337995,52.8339968261242 +0.813331227738711,52.7442196096646 +0.665379690119375,52.7476388734783 + + + + + +TF82 +#labelStyle + +0.742187671578784,52.7908482456514 + + + + +TF83 + +Small Square TF83 Boundry Box +#Line2 + + +1 + +0.67087718933648,52.8374361430262 +0.676403421251357,52.927222663087 +0.824965003143884,52.9237812057121 +0.819132957052195,52.834005804653 +0.67087718933648,52.8374361430262 + + + + + +TF83 +#labelStyle + +0.747852348203956,52.8806391557822 + + + + +TF84 + +Small Square TF84 Boundry Box +#Line2 + + +1 + +0.676403975401106,52.9272316425484 +0.681959700177353,53.0170163910545 +0.830828752951465,53.0135637676736 +0.824965587959228,52.9237901840592 +0.676403975401106,52.9272316425484 + + + + + +TF84 +#labelStyle + +0.753547226481717,52.9704282724764 + + + + +TF85 + +Small Square TF85 Boundry Box +#Line2 + + +1 + +0.681960257287202,53.0170253703386 +0.687545685917665,53.1068083455689 +0.836723847341995,53.1033445099456 +0.830829340890105,53.0135727458388 +0.681960257287202,53.0170253703386 + + + + + +TF85 +#labelStyle + +0.759272522162581,53.0602155938525 + + + + +TF86 + +Small Square TF86 Boundry Box +#Line2 + + +1 + +0.687546246008814,53.1068173246756 +0.693161591550981,53.196598524893 +0.842650511073981,53.1931234304463 +0.836724438426294,53.1033534879288 +0.687546246008814,53.1068173246756 + + + + + +TF86 +#labelStyle + +0.765028453105418,53.150001118012 + + + + +TF87 + +Small Square TF87 Boundry Box +#Line2 + + +1 + +0.693162154644844,53.1966075038221 +0.698807632245955,53.2863869272738 +0.848608971109654,53.2829005270743 +0.842651105326527,53.1931324082472 +0.693162154644844,53.1966075038221 + + + + + +TF87 +#labelStyle + +0.770815239303048,53.2397848430387 + + + + +TF88 + +Small Square TF88 Boundry Box +#Line2 + + +1 + +0.698808198364153,53.2863959060251 +0.704484025286666,53.3761735509416 +0.85459945664181,53.3726757977085 +0.848609568553253,53.2829095046927 +0.698808198364153,53.2863959060251 + + + + + +TF88 +#labelStyle + +0.776633102908221,53.3295667669988 + + + + +TF89 + +Small Square TF89 Boundry Box +#Line2 + + +1 + +0.704484594451036,53.376182529515 +0.71019099009848,53.4659583941101 +0.860622199121065,53.4624492402076 +0.854600057299496,53.3726847751442 +0.704484594451036,53.376182529515 + + + + + +TF89 +#labelStyle + +0.782482268259968,53.41934688794 + + + + +TF90 + +Small Square TF90 Boundry Box +#Line2 + + +1 + +0.801834337548038,52.5646414321081 +0.807574371004197,52.6544222721806 +0.955192785375631,52.6508302722125 +0.94915196166031,52.5610610058729 +0.801834337548038,52.5646414321081 + + + + + +TF90 +#labelStyle + +0.878446032930489,52.6077662108566 + + + + +TF91 + +Small Square TF91 Boundry Box +#Line2 + + +1 + +0.807574946584726,52.654431251072 +0.813345444226535,52.7442102797735 +0.961266268945246,52.7406066576331 +0.955193391117511,52.650839249944 +0.807574946584726,52.654431251072 + + + + + +TF91 +#labelStyle + +0.884352698398895,52.6975493983807 + + + + +TF92 + +Small Square TF92 Boundry Box +#Line2 + + +1 + +0.813346022864562,52.7442192584836 +0.819147200876121,52.8339964738061 +0.967372037240472,52.8303811818596 +0.961266877904191,52.7406156351786 +0.813346022864562,52.7442192584836 + + + + + +TF92 +#labelStyle + +0.89029073713957,52.787330749919 + + + + +TF93 + +Small Square TF93 Boundry Box +#Line2 + + +1 + +0.819147782593371,52.8340054523347 +0.824979859258706,52.9237808522519 +0.973510319888311,52.9201538425127 +0.967372649439337,52.8303901592188 +0.819147782593371,52.8340054523347 + + + + + +TF93 +#labelStyle + +0.896260372042575,52.8771102632809 + + + + +TF94 + +Small Square TF94 Boundry Box +#Line2 + + +1 + +0.824980444077116,52.9237898305989 +0.830843639805513,53.0135634130667 +0.979681348750615,53.0099246371919 +0.973510935350166,52.9201628196855 +0.824980444077116,52.9237898305989 + + + + + +TF94 +#labelStyle + +0.902261828165153,52.9668879362559 + + + + +TF95 + +Small Square TF95 Boundry Box +#Line2 + + +1 + +0.830844227747235,53.0135723912318 +0.836738765098956,53.1033441541872 +0.985885357951128,53.0996935634745 +0.979681967498763,53.009933614178 +0.830844227747235,53.0135723912318 + + + + + +TF95 +#labelStyle + +0.908295332757907,53.0566637666136 + + + + +TF96 + +Small Square TF96 Boundry Box +#Line2 + + +1 + +0.836739356186354,53.1033531321703 +0.842665459898708,53.1931230735317 +0.99212258390288,53.1894606189155 +0.985885980009092,53.0997025402736 +0.836739356186354,53.1033531321703 + + + + + +TF96 +#labelStyle + +0.914361115291356,53.1464377521032 + + + + +TF97 + +Small Square TF97 Boundry Box +#Line2 + + +1 + +0.842666054154369,53.1931320513324 +0.848623951168178,53.2829001689986 +0.998393265336009,53.2792258010468 +0.992123209294417,53.1894695955274 +0.842666054154369,53.1931320513324 + + + + + +TF97 +#labelStyle + +0.920459407482869,53.2362098904529 + + + + +TF98 + +Small Square TF98 Boundry Box +#Line2 + + +1 + +0.848624548614909,53.2829091466169 +0.854614468101351,53.3726754384669 +1.00469764332598,53.3689891073772 +0.99839389408511,53.2792347774712 +0.848624548614909,53.2829091466169 + + + + + +TF98 +#labelStyle + +0.926590443324022,53.3259801793696 + + + + +TF99 + +Small Square TF99 Boundry Box +#Line2 + + +1 + +0.854615068762185,53.3726844159024 +0.860637242150046,53.4624488797951 +1.01103596132221,53.4587505353915 +1.00469827545687,53.3689980836139 +0.854615068762185,53.3726844159024 + + + + + +TF99 +#labelStyle + +0.932754459108308,53.4157486165382 + + + + + +TG + +Large Square TG Boundry Box +#Line1 + + +1 + +0.949166693330623,52.5610606386377 +1.01105100101708,53.4587501560626 +2.51301482845662,53.4113800536898 +2.42046525486346,52.5151991727918 +0.949166693330623,52.5610606386377 + + + + + +TG00 + +Small Square TG00 Boundry Box +#Line2 + + +1 + +0.949166693330623,52.5610606386377 +0.955207547116902,52.6508299037903 +1.10279390504513,52.6470542260205 +1.09645248619834,52.5572971244104 +0.949166693330623,52.5610606386377 + + + + + +TG00 +#labelStyle + +1.02591284039791,52.6040879234087 + + + + +TG01 + +Small Square TG01 Boundry Box +#Line2 + + +1 + +0.955208152861798,52.6508388815217 +0.961281060919392,52.7406062880189 +1.10916960179204,52.7368183958187 +1.10279454092874,52.647063202533 +0.955208152861798,52.6508388815217 + + + + + +TG01 +#labelStyle + +1.03212103831575,52.6938592156176 + + + + +TG02 + +Small Square TG02 Boundry Box +#Line2 + + +1 + +0.961281669881369,52.7406152655643 +0.96738685960753,52.8303808110485 +1.11557918251494,52.8265806543768 +1.10917024105209,52.7368273721402 +0.961281669881369,52.7406152655643 + + + + + +TG02 +#labelStyle + +1.03836220426069,52.7836286231772 + + + + +TG03 + +Small Square TG03 Boundry Box +#Line2 + + +1 + +0.967387471809442,52.8303897884077 +0.973525172809448,52.9201534704999 +1.12202288813657,52.9163409989452 +1.11557982517539,52.826589630507 +0.967387471809442,52.8303897884077 + + + + + +TG03 +#labelStyle + +1.0446365723779,52.8733961435367 + + + + +TG04 + +Small Square TG04 Boundry Box +#Line2 + + +1 + +0.973525788274367,52.9201624476726 +0.979696232388143,53.0099242639724 +1.12850096192354,53.0060994267491 +1.12202353422164,52.9163499748839 +0.973525788274367,52.9201624476726 + + + + + +TG04 +#labelStyle + +1.05094437908829,52.9631617741224 + + + + +TG05 + +Small Square TG05 Boundry Box +#Line2 + + +1 + +0.97969685113937,53.0099332409583 +0.985900272468508,53.0996931890433 +1.13501364951468,53.0958559349883 +1.12850161145767,53.006108402496 +0.97969685113937,53.0099332409583 + + + + + +TG05 +#labelStyle + +1.05728586311599,53.052925512337 + + + + +TG06 + +Small Square TG06 Boundry Box +#Line2 + + +1 + +0.985900894529568,53.0997021658423 +0.992137529464739,53.1894602432675 +1.14156119894972,53.1856105208363 +1.13501430252255,53.0958649105431 +0.985900894529568,53.0997021658423 + + + + + +TG06 +#labelStyle + +1.06366126551624,53.1426873555591 + + + + +TG07 + +Small Square TG07 Boundry Box +#Line2 + + +1 + +0.99213815485939,53.1894692198793 +0.998408242108151,53.279225424177 +1.14814386069848,53.2753631814403 +1.14156185545625,53.1856194961987 +0.99213815485939,53.1894692198793 + + + + + +TG07 +#labelStyle + +1.07007082970362,53.2324473011429 + + + + +TG08 + +Small Square TG08 Boundry Box +#Line2 + + +1 + +0.998408870860382,53.2792344006013 +1.00471265147539,53.3689887292804 +1.15476188769047,53.3651139139201 +1.14814452072886,53.27537215661 +0.998408870860382,53.2792344006013 + + + + + +TG08 +#labelStyle + +1.07651480148078,53.3222053464178 + + + + +TG09 + +Small Square TG09 Boundry Box +#Line2 + + +1 + +1.00471328360943,53.3689977055171 +1.01105100101708,53.4587501560626 +1.16141553534486,53.4548627153681 +1.15476255127011,53.3651228888968 +1.00471328360943,53.3689977055171 + + + + + +TG09 +#labelStyle + +1.08299342906755,53.4119614886874 + + + + +TG10 + +Small Square TG10 Boundry Box +#Line2 + + +1 + +1.09646721460633,52.557296738869 +1.10280866350099,52.6470538392333 +1.25036137709169,52.6430945769565 +1.24371959941435,52.55335022934 +1.09646721460633,52.557296738869 + + + + + +TG10 +#labelStyle + +1.17334690947966,52.6002262809366 + + + + +TG11 + +Small Square TG11 Boundry Box +#Line2 + + +1 + +1.10280929938762,52.6470628157456 +1.10918439045748,52.7368180077803 +1.25703904840303,52.7328459394246 +1.25036204309329,52.6431035521908 +1.10280929938762,52.6470628157456 + + + + + +TG11 +#labelStyle + +1.17985640794427,52.6899850870097 + + + + +TG12 + +Small Square TG12 Boundry Box +#Line2 + + +1 + +1.10918502972055,52.7368269841016 +1.11559400154976,52.8265802650821 +1.26375220062476,52.8225953382047 +1.2570397179402,52.7328549144627 +1.10918502972055,52.7368269841016 + + + + + +TG12 +#labelStyle + +1.18640046694212,52.7797419573739 + + + + +TG13 + +Small Square TG13 Boundry Box +#Line2 + + +1 + +1.11559464421326,52.8265892412122 +1.12203773770171,52.916340608389 +1.27050108594746,52.9123427701591 +1.26375287372259,52.8226043130463 +1.11559464421326,52.8265892412122 + + + + + +TG13 +#labelStyle + +1.19297933184641,52.869496889101 + + + + +TG14 + +Small Square TG14 Boundry Box +#Line2 + + +1 + +1.12203838378984,52.9163495843276 +1.12851584218109,53.0060990349263 +1.27728595901417,53.0020882321211 +1.27050176263129,52.9123517448038 +1.12203838378984,52.9163495843276 + + + + + +TG14 +#labelStyle + +1.19959325041426,52.9592498792361 + + + + +TG15 + +Small Square TG15 Boundry Box +#Line2 + + +1 + +1.12851649171829,53.006108010673 +1.13502856062785,53.0958555418936 +1.28410707695006,53.091831720895 +1.2772866393096,53.0020972065687 +1.12851649171829,53.006108010673 + + + + + +TG15 +#labelStyle + +1.20624247281548,53.049000924797 + + + + +TG16 + +Small Square TG16 Boundry Box +#Line2 + + +1 + +1.13502921363882,53.0958645174482 +1.14157614108291,53.1856101264645 +1.29096469939241,53.1815732332549 +1.28410776088291,53.0918406951451 +1.13502921363882,53.0958645174482 + + + + + +TG16 +#labelStyle + +1.2129272516617,53.1387500227738 + + + + +TG17 + +Small Square TG17 Boundry Box +#Line2 + + +1 + +1.14157679759256,53.1856191018267 +1.14815883401726,53.2753627857859 +1.29785908852117,53.2713127659445 +1.29096538698878,53.1815822073072 +1.14157679759256,53.1856191018267 + + + + + +TG17 +#labelStyle + +1.21964784203604,53.2284971701286 + + + + +TG18 + +Small Square TG18 Boundry Box +#Line2 + + +1 + +1.14815949405076,53.2753717609555 +1.15477689236157,53.3651135169779 +1.30479050908985,53.3610503156768 +1.29785977980741,53.2713217397987 +1.14815949405076,53.2753717609555 + + + + + +TG18 +#labelStyle + +1.22640450152314,53.3182423637946 + + + + +TG19 + +Small Square TG19 Boundry Box +#Line2 + + +1 + +1.15477755594435,53.3651224919545 +1.16143057153623,53.4548623171327 +1.31175922845692,53.4507858791329 +1.30479120409256,53.3610592893325 +1.15477755594435,53.3651224919545 + + + + + +TG19 +#labelStyle + +1.23319749023958,53.4079856006757 + + + + +TG20 + +Small Square TG20 Boundry Box +#Line2 + + +1 + +1.24373432440242,52.5533498255021 +1.25037613210346,52.6430941718137 +1.39789361574945,52.6389514228192 +1.39095172659562,52.5492204178277 +1.24373432440242,52.5533498255021 + + + + + +TG20 +#labelStyle + +1.32074665879925,52.5961813786829 + + + + +TG21 + +Small Square TG21 Boundry Box +#Line2 + + +1 + +1.25037679810807,52.6431031470479 +1.25705383359995,52.7328455329715 +1.40487301185202,52.7286893868884 +1.39789431184419,52.6389603967164 +1.25037679810807,52.6431031470479 + + + + + +TG21 +#labelStyle + +1.32755721478698,52.6859271084212 + + + + +TG22 + +Small Square TG22 Boundry Box +#Line2 + + +1 + +1.25705450314014,52.7328545080095 +1.2637670161664,52.822594930436 +1.4118894833761,52.8184253324255 +1.40487371164122,52.7286983605839 +1.25705450314014,52.7328545080095 + + + + + +TG22 +#labelStyle + +1.33440392145853,52.7756708490007 + + + + +TG23 + +Small Square TG23 Boundry Box +#Line2 + + +1 + +1.26376768926728,52.8226039052774 +1.27051593199453,52.9123423610693 +1.41894329375089,52.9081592558871 +1.41189018688597,52.818434305919 +1.26376768926728,52.8226039052774 + + + + + +TG23 +#labelStyle + +1.34128703538678,52.8654125970981 + + + + +TG24 + +Small Square TG24 Boundry Box +#Line2 + + +1 + +1.27051660868142,52.9123513357139 +1.27730083572851,53.0020878217049 +1.42603470896627,52.9978911536971 +1.41894400100791,52.9081682291782 +1.27051660868142,52.9123513357139 + + + + + +TG24 +#labelStyle + +1.34820681563629,52.9551523493596 + + + + +TG25 + +Small Square TG25 Boundry Box +#Line2 + + +1 + +1.27730151602701,53.0020967961523 +1.28412198449464,53.0918313091467 +1.43316399760367,53.0876210222462 +1.42603541999716,52.9979001267855 +1.27730151602701,53.0020967961523 + + + + + +TG25 +#labelStyle + +1.35516352379333,53.0448901024006 + + + + +TG26 + +Small Square TG26 Boundry Box +#Line2 + + +1 + +1.28412266843058,53.0918402833967 +1.29097963793138,53.1815728201691 +1.44033143086745,53.177348857891 +1.43316471243541,53.0876299951314 +1.28412266843058,53.0918402833967 + + + + + +TG26 +#labelStyle + +1.36215742399637,53.1346258528047 + + + + +TG27 + +Small Square TG27 Boundry Box +#Line2 + + +1 + +1.29098032553085,53.1815817942212 +1.29787405821983,53.2713123515156 +1.44753728261674,53.267074656954 +1.44033214952731,53.1773578305728 +1.29098032553085,53.1815817942212 + + + + + +TG27 +#labelStyle + +1.36918878296702,53.2243595971233 + + + + +TG28 + +Small Square TG28 Boundry Box +#Line2 + + +1 + +1.29787474950919,53.2713213253696 +1.3048055101147,53.3610498998992 +1.45478182939766,53.3567984157224 +1.44753800513222,53.267083629432 +1.29787474950919,53.2713213253696 + + + + + +TG28 +#labelStyle + +1.37625787004138,53.3140913318756 + + + + +TG29 + +Small Square TG29 Boundry Box +#Line2 + + +1 + +1.30480620512054,53.3610588735547 +1.31177426097563,53.4507854620009 +1.46206535047616,53.4465201304478 +1.45478255579657,53.3568073879961 +1.30480620512054,53.3610588735547 + + + + + +TG29 +#labelStyle + +1.38336495720192,53.4038210535469 + + + + +TG30 + +Small Square TG30 Boundry Box +#Line2 + + +1 + +1.39096644800642,52.5492199957032 +1.39790836715866,52.638950999331 +1.54538903764589,52.6346248658948 +1.53814729539444,52.5449077914977 +1.39096644800642,52.5492199957032 + + + + + +TG30 +#labelStyle + +1.46811050930666,52.5919533163674 + + + + +TG31 + +Small Square TG31 Boundry Box +#Line2 + + +1 + +1.39790906325641,52.638959973228 +1.40488779342085,52.7286889620308 +1.55266989763495,52.7243488411641 +1.5453897638078,52.6346338383959 +1.39790906325641,52.638959973228 + + + + + +TG31 +#labelStyle + +1.47522186870086,52.6816853802223 + + + + +TG32 + +Small Square TG32 Boundry Box +#Line2 + + +1 + +1.40488849321307,52.7286979357262 +1.41190429526387,52.8184249061929 +1.55998942502643,52.814070740667 +1.55267062764995,52.7243578134579 +1.40488849321307,52.7286979357262 + + + + + +TG32 +#labelStyle + +1.4823709664674,52.7714153990839 + + + + +TG33 + +Small Square TG33 Boundry Box +#Line2 + + +1 + +1.41190499877678,52.8184338796863 +1.41895813611806,52.9081588282739 +1.56734789445771,52.903790560437 +1.55999015892186,52.814079712753 +1.41190499877678,52.8184338796863 + + + + + +TG33 +#labelStyle + +1.48955807034923,52.8611433692164 + + + + +TG34 + +Small Square TG34 Boundry Box +#Line2 + + +1 + +1.41895884337813,52.9081678015649 +1.42604958197441,52.9978907246976 +1.57474558323456,52.993508296471 +1.56734863226117,52.9037995323149 +1.41895884337813,52.9081678015649 + + + + + +TG34 +#labelStyle + +1.49678345068829,52.9508692868498 + + + + +TG35 + +Small Square TG35 Boundry Box +#Line2 + + +1 + +1.42605029300837,52.9978996977858 +1.43317890141551,53.0876205918546 +1.58218277136334,53.0832239447281 +1.57474632497391,52.9935172681402 +1.42605029300837,52.9978996977858 + + + + + +TG35 +#labelStyle + +1.50404738045684,53.0405931481789 + + + + +TG36 + +Small Square TG36 Boundry Box +#Line2 + + +1 + +1.43317961625034,53.0876295647398 +1.44034636564688,53.1773484261017 +1.58965974158368,53.1729375011299 +1.58218351706672,53.0832329161884 +1.43317961625034,53.0876295647398 + + + + + +TG36 +#labelStyle + +1.51135013528925,53.1303149493631 + + + + +TG37 + +Small Square TG37 Boundry Box +#Line2 + + +1 + +1.44034708430984,53.1773573987833 +1.44755224852879,53.2670742237611 +1.59717677940157,53.2626489615589 +1.5896604912795,53.1729464723808 +1.44034708430984,53.1773573987833 + + + + + +TG37 +#labelStyle + +1.51869199351422,53.2200346865254 + + + + +TG38 + +Small Square TG38 Boundry Box +#Line2 + + +1 + +1.4475529710474,53.2670831962388 +1.45479682660857,53.3567979811199 +1.60473417312305,53.3523583218588 +1.59717753311852,53.2626579326 +1.4475529710474,53.2670831962388 + + + + + +TG38 +#labelStyle + +1.52607323618752,53.309752355752 + + + + +TG39 + +Small Square TG39 Boundry Box +#Line2 + + +1 + +1.45479755301062,53.3568069533935 +1.46208037915334,53.44651969443 +1.61233221388825,53.4420655778329 +1.6047349308901,53.3523672926896 +1.45479755301062,53.3568069533935 + + + + + +TG39 +#labelStyle + +1.53349414712516,53.3994679530918 + + + + +TG40 + +Small Square TG40 Boundry Box +#Line2 + + +1 + +1.53816201307086,52.5449073510969 +1.54540378529433,52.6346244240715 +1.69284606190737,52.6301150129475 +1.68530473593237,52.5404124564237 +1.53816201307086,52.5449073510969 + + + + + +TG40 +#labelStyle + +1.61543688438352,52.5875421981778 + + + + +TG41 + +Small Square TG41 Boundry Box +#Line2 + + +1 + +1.54540451145925,52.6346333965726 +1.55268467541636,52.7243483979125 +1.70042811377664,52.7198244097127 +1.69284681810938,52.6301239839938 +1.54540451145925,52.6346333965726 + + + + + +TG41 +#labelStyle + +1.62284878200371,52.67726000728 + + + + +TG42 + +Small Square TG42 Boundry Box +#Line2 + + +1 + +1.55268540543439,52.7243573702061 +1.56000423309988,52.8140702959812 +1.70805042239257,52.8095316710934 +1.70042887399012,52.7198333805457 +1.55268540543439,52.7243573702061 + + + + + +TG42 +#labelStyle + +1.63030000311664,52.766975713176 + + + + +TG43 + +Small Square TG43 Boundry Box +#Line2 + + +1 + +1.56000496699836,52.814079268067 +1.56736273298339,52.9037901143111 +1.71571327356899,52.8992367926825 +1.70805118664598,52.8095406417126 +1.56000496699836,52.814079268067 + + + + + +TG43 +#labelStyle + +1.63779082660445,52.8566893117002 + + + + +TG44 + +Small Square TG44 Boundry Box +#Line2 + + +1 + +1.5673634707899,52.9037990861888 +1.57476045237378,52.993507848899 +1.72341695589536,52.9889397700321 +1.71571404189103,52.8992457630875 +1.5673634707899,52.9037990861888 + + + + + +TG44 +#labelStyle + +1.64532153405513,52.9464007986487 + + + + +TG45 + +Small Square TG45 Boundry Box +#Line2 + + +1 + +1.5747611941162,52.9935168205681 +1.58219767127857,53.0832234957041 +1.73116176077032,53.0786405986526 +1.72341772831504,52.9889487402225 +1.5747611941162,52.9935168205681 + + + + + +TG45 +#labelStyle + +1.65289240979517,53.0361101697783 + + + + +TG46 + +Small Square TG46 Boundry Box +#Line2 + + +1 + +1.58219841698503,53.0832324671643 +1.58967467243852,53.1729370506478 +1.73894798243561,53.1683392740121 +1.73116253731693,53.0786495686279 +1.58219841698503,53.0832324671643 + + + + + +TG46 +#labelStyle + +1.66050374092256,53.1258174208062 + + + + +TG47 + +Small Square TG47 Boundry Box +#Line2 + + +1 + +1.58967542213744,53.1729460218986 +1.5971917413608,53.2626485096128 +1.74677591801051,53.2580357915356 +1.7389487631387,53.1683482437718 +1.58967542213744,53.1729460218986 + + + + + +TG47 +#labelStyle + +1.66815581734041,53.2155225474088 + + + + +TG48 + +Small Square TG48 Boundry Box +#Line2 + + +1 + +1.59719249508087,53.2626574806538 +1.60474916635261,53.3523578684425 +1.7546458675268,53.3477301466046 +1.74677670289995,53.2580447610794 +1.59719249508087,53.2626574806538 + + + + + +TG48 +#labelStyle + +1.67584893179094,53.3052255452217 + + + + +TG49 + +Small Square TG49 Boundry Box +#Line2 + + +1 + +1.6047499241228,53.3523668392732 +1.61234723855527,53.4420651229402 +1.76255813396423,53.437422334556 +1.75464665663273,53.3477391159318 +1.6047499241228,53.3523668392732 + + + + + +TG49 +#labelStyle + +1.68358337989006,53.3949264098384 + + + + +TG50 + +Small Square TG50 Boundry Box +#Line2 + + +1 + +1.68531944971754,52.5404119977575 +1.69286080563708,52.6301145528002 +1.84026311026423,52.6254219752111 +1.83242248090414,52.5357345231204 +1.68531944971754,52.5404119977575 + + + + + +TG50 +#labelStyle + +1.7627242099478,52.5829481327616 + + + + +TG51 + +Small Square TG51 Boundry Box +#Line2 + + +1 + +1.6928615618421,52.6301235238463 +1.70044288761157,52.7198239480781 +1.84814607093718,52.7151162044935 +1.84026389647817,52.6254309447437 +1.6928615618421,52.6301235238463 + + + + + +TG51 +#labelStyle + +1.7704363695801,52.6726510989499 + + + + +TG52 + +Small Square TG52 Boundry Box +#Line2 + + +1 + +1.70044364782807,52.7198329189109 +1.70806522649152,52.8095312079653 +1.85607087495834,52.804808236396 +1.8481468613207,52.7151251738066 +1.70044364782807,52.7198329189109 + + + + + +TG52 +#labelStyle + +1.7781894351518,52.7623519013469 + + + + +TG53 + +Small Square TG53 Boundry Box +#Line2 + + +1 + +1.70806599074796,52.8095401785844 +1.71572810809187,52.8992363280549 +1.86403781928498,52.8944980660535 +1.856071669541,52.8048172054891 +1.70806599074796,52.8095401785844 + + + + + +TG53 +#labelStyle + +1.78598369665209,52.8520505353401 + + + + +TG54 + +Small Square TG54 Boundry Box +#Line2 + + +1 + +1.71572887641696,52.8992452984598 +1.72343182100321,52.9889393038989 +1.87204720375682,52.9841856885561 +1.86403861809661,52.8945070349262 +1.71572887641696,52.8992452984598 + + + + + +TG54 +#labelStyle + +1.79381944688242,52.9417469962744 + + + + +TG55 + +Small Square TG55 Boundry Box +#Line2 + + +1 + +1.72343259342596,52.9889482740891 +1.73117665662532,53.0786401310075 +1.88009933113079,53.0738710989475 +1.87204800682755,52.9841946572078 +1.72343259342596,52.9889482740891 + + + + + +TG55 +#labelStyle + +1.80169698149041,53.0314412794508 + + + + +TG56 + +Small Square TG56 Boundry Box +#Line2 + + +1 + +1.73117743317501,53.0786491009826 +1.73896290920109,53.1683388048488 +1.88819450711631,53.1635542922246 +1.88010013849106,53.0738800673777 +1.73117743317501,53.0786491009826 + + + + + +TG56 +#labelStyle + +1.80961659900418,53.1211333801265 + + + + +TG57 + +Small Square TG57 Boundry Box +#Line2 + + +1 + +1.73896368990728,53.1683477746083 +1.74679087585096,53.2580353208478 +1.89633304041099,53.2532352633371 +1.88819531879683,53.1635632604329 +1.73896368990728,53.1683477746083 + + + + + +TG57 +#labelStyle + +1.81757860086717,53.2108232935137 + + + + +TG58 + +Small Square TG58 Boundry Box +#Line2 + + +1 + +1.74679166074351,53.2580442903914 +1.75466085660787,53.347729674386 +1.90451524273692,53.3429140071859 +1.89633385644277,53.2532442313229 +1.74679166074351,53.2580442903914 + + + + + +TG58 +#labelStyle + +1.82558329147355,53.3005110147789 + + + + +TG59 + +Small Square TG59 Boundry Box +#Line2 + + +1 + +1.75466164571694,53.347738643713 +1.76257315445277,53.4374218608001 +1.91274142887746,53.4325905186233 +1.90451606315129,53.3429229749487 +1.75466164571694,53.347738643713 + + + + + +TG59 +#labelStyle + +1.83363097820402,53.3901965390424 + + + + +TG60 + +Small Square TG60 Boundry Box +#Line2 + + +1 + +1.83243719064147,52.5357340462 +1.84027784991752,52.6254214967509 +1.98763860715545,52.6205458683786 +1.97949896568107,52.5308741065335 +1.83243719064147,52.5357340462 + + + + + +TG60 +#labelStyle + +1.90997091455809,52.5781712332165 + + + + +TG61 + +Small Square TG61 Boundry Box +#Line2 + + +1 + +1.84027863613446,52.6254304662834 +1.84816084066682,52.7151157244872 +1.99582218251779,52.7102243419541 +1.98763942335205,52.6205548363389 +1.84027863613446,52.6254304662834 + + + + + +TG61 +#labelStyle + +1.91798304898688,52.6678587690662 + + + + +TG62 + +Small Square TG62 Boundry Box +#Line2 + + +1 + +1.84816163105336,52.7151246938002 +1.85608567492287,52.8048077548372 +2.00404918498165,52.7999005537835 +1.99582300304179,52.7102333096884 +1.84816163105336,52.7151246938002 + + + + + +TG62 +#labelStyle + +1.92603766902282,52.7575440781742 + + + + +TG63 + +Small Square TG63 Boundry Box +#Line2 + + +1 + +1.85608646950855,52.8048167239302 +1.86405264964401,52.8944975829359 +2.0123199226135,52.8895744985269 +2.00405000986372,52.7999095212914 +1.85608646950855,52.8048167239302 + + + + + +TG63 +#labelStyle + +1.93413507572876,52.8472271554639 + + + + +TG64 + +Small Square TG64 Boundry Box +#Line2 + + +1 + +1.86405344845869,52.8945065518084 +1.87206206467111,52.9841852038732 +2.02063470646856,52.9792461707946 +2.01232075188459,52.8895834658078 +1.86405344845869,52.8945065518084 + + + + + +TG64 +#labelStyle + +1.94227557308577,52.9369079958112 + + + + +TG65 + +Small Square TG65 Boundry Box +#Line2 + + +1 + +1.87206286774491,52.9841941725248 +1.88011422276224,53.0738706126929 +2.02899385062686,53.0689155651463 +2.02063554015993,52.979255137848 +1.87206286774491,52.9841941725248 + + + + + +TG65 +#labelStyle + +1.95045946802826,53.0265865940444 + + + + +TG66 + +Small Square TG66 Boundry Box +#Line2 + + +1 + +1.88011503012559,53.073879581123 +1.88820942962795,53.1635538043918 +2.03739767222972,53.1585826760902 +2.02899468877006,53.0689245319717 +1.88011503012559,53.073879581123 + + + + + +TG66 +#labelStyle + +1.95868707047959,53.1162629449429 + + + + +TG67 + +Small Square TG67 Boundry Box +#Line2 + + +1 + +1.88821024131156,53.1635627725999 +1.89634799396701,53.2532347739194 +2.04584649151681,53.2482474980822 +2.03739851485663,53.1585916426869 +1.88821024131156,53.1635627725999 + + + + + +TG67 +#labelStyle + +1.96695869338822,53.2059370432365 + + + + +TG68 + +Small Square TG68 Boundry Box +#Line2 + + +1 + +1.8963488100019,53.2532437419051 +1.90453022750267,53.3429135161768 +2.0543406318637,53.3379100255253 +2.0458473386596,53.2482564644498 +1.8963488100019,53.2532437419051 + + + + + +TG68 +#labelStyle + +1.97527465276434,53.2956088836049 + + + + +TG69 + +Small Square TG69 Boundry Box +#Line2 + + +1 + +1.90453104792017,53.3429224839395 +1.91275644501948,53.4325900260162 +2.06288041982008,53.4275702527685 +2.05434148355488,53.3379189916631 +1.90453104792017,53.3429224839395 + + + + + +TG69 +#labelStyle + +1.98363526771713,53.3852784606768 + + + + +TG70 + +Small Square TG70 Boundry Box +#Line2 + + +1 + +1.97951367121423,52.5308736113707 +1.98765334257491,52.6205453716176 +2.1349709798328,52.6154868125936 +2.12653262841402,52.5258313260305 +1.97951367121423,52.5308736113707 + + + + + +TG70 +#labelStyle + +2.05717542951736,52.5732116170809 + + + + +TG71 + +Small Square TG71 Boundry Box +#Line2 + + +1 + +1.98765415877449,52.6205543395777 +1.99583694798363,52.7102238435881 +2.14345486476623,52.7051489430206 +2.13497182598169,52.6154957789228 +1.98765415877449,52.6205543395777 + + + + + +TG71 +#labelStyle + +2.06548724055818,52.6628831359325 + + + + +TG72 + +Small Square TG72 Boundry Box +#Line2 + + +1 + +1.99583776851065,52.7102328113222 +2.00406398065212,52.7999000538059 +2.15198375760118,52.794808744972 +2.14345571540005,52.7051579091173 +1.99583776851065,52.7102328113222 + + + + + +TG72 +#labelStyle + +2.07384311399028,52.7525523627335 + + + + +TG73 + +Small Square TG73 Boundry Box +#Line2 + + +1 + +2.00406480553722,52.7999090213137 +2.01233474864793,52.8895739969312 +2.16055797747783,52.8844662126157 +2.1519846127517,52.7948177108356 +2.00406480553722,52.7999090213137 + + + + + +TG73 +#labelStyle + +2.08224336191557,52.842219291926 + + + + +TG74 + +Small Square TG74 Boundry Box +#Line2 + + +1 + +2.01233557792206,52.889582964212 +2.02064956302742,52.9792456675742 +2.16917784663094,52.9741213400651 +2.16055883717712,52.8844751782456 +2.01233557792206,52.889582964212 + + + + + +TG74 +#labelStyle + +2.09068829945963,52.9318839179 + + + + +TG75 + +Small Square TG75 Boundry Box +#Line2 + + +1 + +2.02065039672184,52.9792546346274 +2.02900873787173,53.0689150602944 +2.17784369042708,53.0637741213783 +2.16917871091136,52.9741303054607 +2.02065039672184,52.9792546346274 + + + + + +TG75 +#labelStyle + +2.09917824480803,53.0215462349932 + + + + +TG76 + +Small Square TG76 Boundry Box +#Line2 + + +1 + +2.02900957601801,53.0689240271196 +2.03741259032333,53.1585821696001 +2.18655583740245,53.1534245505569 +2.17784455932135,53.0637830865389 +2.02900957601801,53.0689240271196 + + + + + +TG76 +#labelStyle + +2.10771351924325,53.1112062374896 + + + + +TG77 + +Small Square TG77 Boundry Box +#Line2 + + +1 + +2.03741343295332,53.1585911361966 +2.04586144062303,53.2482469899471 +2.19531461930118,53.2430726215457 +2.18655671094357,53.153433515482 +2.03741343295332,53.1585911361966 + + + + + +TG77 +#labelStyle + +2.11629444718208,53.2008639196192 + + + + +TG78 + +Small Square TG78 Boundry Box +#Line2 + + +1 + +2.04586228776893,53.2482559563144 +2.0543556121476,53.3379095157383 +2.20412037111424,53.3327183282315 +2.19531549752249,53.2430815862347 +2.04586228776893,53.2482559563144 + + + + + +TG78 +#labelStyle + +2.12492135621358,53.2905192755568 + + + + +TG79 + +Small Square TG79 Boundry Box +#Line2 + + +1 + +2.0543564638419,53.3379184818759 +2.06289543144786,53.4275697413227 +2.21297343111887,53.422361664442 +2.2041212540494,53.3327272926837 +2.0543564638419,53.3379184818759 + + + + + +TG79 +#labelStyle + +2.13359457713761,53.3801722994214 + + + + +TG80 + +Small Square TG80 Boundry Box +#Line2 + + +1 + +2.12654732958698,52.5258308126374 +2.13498571086128,52.6154862975438 +2.28225865846452,52.6102449324388 +2.27352191013587,52.52060630539 +2.12654732958698,52.5258308126374 + + + + + +TG80 +#labelStyle + +2.20433618897632,52.5680694063237 + + + + +TG81 + +Small Square TG81 Boundry Box +#Line2 + + +1 + +2.13498655701316,52.6154952638728 +2.14346962581004,52.7051484263072 +2.29104253688167,52.6998901330874 +2.28225953453424,52.6102538970785 +2.13498655701316,52.6154952638728 + + + + + +TG81 +#labelStyle + +2.21294736750995,52.6577243223113 + + + + +TG82 + +Small Square TG82 Boundry Box +#Line2 + + +1 + +2.14347047644687,52.7051573924037 +2.15199854881826,52.7948082265881 +2.29987300094248,52.7895329361746 +2.29104341759355,52.6998990974877 +2.14347047644687,52.7051573924037 + + + + + +TG82 +#labelStyle + +2.22160418223118,52.7473768785882 + + + + +TG83 + +Small Square TG83 Boundry Box +#Line2 + + +1 + +2.1519994039718,52.7948171924515 +2.16057279902721,52.8844656925545 +2.30875038082412,52.8791733353592 +2.29987388632938,52.7895419003348 +2.1519994039718,52.7948171924515 + + + + + +TG83 +#labelStyle + +2.23030695624515,52.8370270690978 + + + + +TG84 + +Small Square TG84 Boundry Box +#Line2 + + +1 + +2.16057365872953,52.8844746581842 +2.16919269867276,52.9741208183197 +2.31767500990362,52.9688113242403 +2.30875127091922,52.8791822992787 +2.16057365872953,52.8844746581842 + + + + + +TG84 +#labelStyle + +2.23905601578556,52.9266748877273 + + + + +TG85 + +Small Square TG85 Boundry Box +#Line2 + + +1 + +2.16919356295624,52.9741297837151 +2.17785857312262,53.0637735979417 +2.32664722479635,53.0584468963571 +2.31767590474042,52.9688202879184 +2.16919356295624,52.9741297837151 + + + + + +TG85 +#labelStyle + +2.24785169025229,53.0163203283062 + + + + +TG86 + +Small Square TG86 Boundry Box +#Line2 + + +1 + +2.17785944201997,53.0637825631022 +2.18657075091413,53.1534240254222 +2.33566736539503,53.1480800451873 +2.32664812440867,53.0584558597932 +2.17785944201997,53.0637825631022 + + + + + +TG86 +#labelStyle + +2.2566943122495,53.105963384606 + + + + +TG87 + +Small Square TG87 Boundry Box +#Line2 + + +1 + +2.18657162445834,53.1534329903472 +2.19532956379257,53.2430720947059 +2.34473577490939,53.2377107641466 +2.33566826981703,53.1480890083808 +2.18657162445834,53.1534329903472 + + + + + +TG87 +#labelStyle + +2.26558421762436,53.1956040503389 + + + + +TG88 + +Small Square TG88 Boundry Box +#Line2 + + +1 + +2.19533044201698,53.2430810593947 +2.20413534675005,53.3327177996794 +2.35385279990631,53.3273390465878 +2.34473668417555,53.2377197270968 +2.19533044201698,53.2430810593947 + + + + + +TG88 +#labelStyle + +2.27452174550627,53.285242319157 + + + + +TG89 + +Small Square TG89 Boundry Box +#Line2 + + +1 + +2.20413622968833,53.3327267641314 +2.21298843806501,53.4223611341704 +2.36301879035059,53.4169648857993 +2.35385371405146,53.3273480092939 +2.20413622968833,53.3327267641314 + + + + + +TG89 +#labelStyle + +2.28350723834671,53.3748781846517 + + + + +TG90 + +Small Square TG90 Boundry Box +#Line2 + + +1 + +2.27353660679287,52.5206057737793 +2.2822733849452,52.6102443991129 +2.42950007623848,52.604820356926 +2.42046525486346,52.5151991727918 +2.27353660679287,52.5206057737793 + + + + + +TG90 +#labelStyle + +2.3514516300362,52.562744727334 + + + + +TG91 + +Small Square TG91 Boundry Box +#Line2 + + +1 + +2.28227426101791,52.6102533637524 +2.29105729334553,52.6998895980392 +2.4385836211191,52.694448042006 +2.42950098219649,52.6048293198177 +2.28227426101791,52.6102533637524 + + + + + +TG91 +#labelStyle + +2.36036185604399,52.6523824554139 + + + + +TG92 + +Small Square TG92 Boundry Box +#Line2 + + +1 + +2.29105817406041,52.6998985624393 +2.29988778754713,52.7895323993971 +2.44771532622359,52.7840732580902 +2.43858453187618,52.6944570046512 +2.29105817406041,52.6998985624393 + + + + + +TG92 +#labelStyle + +2.36931928894419,52.7420177537787 + + + + +TG93 + +Small Square TG93 Boundry Box +#Line2 + + +1 + +2.29988867293705,52.7895413635572 +2.30876519772828,52.8791727968453 +2.4568955327282,52.8736959983111 +2.4477162418137,52.7840822204881 +2.29988867293705,52.7895413635572 + + + + + +TG93 +#labelStyle + +2.3783242628081,52.8316506158566 + + + + +TG94 + +Small Square TG94 Boundry Box +#Line2 + + +1 + +2.30876608782642,52.8791817607646 +2.31768985726713,52.9688107839829 +2.46612458511376,52.9633162557367 +2.45689645318562,52.873704960461 +2.30876608782642,52.8791817607646 + + + + + +TG94 +#labelStyle + +2.38737711493998,52.9212810350146 + + + + +TG95 + +Small Square TG95 Boundry Box +#Line2 + + +1 + +2.31769075210699,52.9688197476609 +2.32666210278016,53.058446354349 +2.47540283120535,53.0529340233698 +2.4661255104731,52.9633252176381 +2.31769075210699,52.9688197476609 + + + + + +TG95 +#labelStyle + +2.39647818591585,53.0109090045572 + + + + +TG96 + +Small Square TG96 Boundry Box +#Line2 + + +1 + +2.32666300239555,53.058455317785 +2.33568227416124,53.1480795014213 +2.48473062221266,53.1425492941469 +2.47540376150157,53.0529429850219 +2.32666300239555,53.058455317785 + + + + + +TG96 +#labelStyle + +2.40562781962287,53.1005345177254 + + + + +TG97 + +Small Square TG97 Boundry Box +#Line2 + + +1 + +2.33568317858632,53.1480884646146 +2.34475071462122,53.2377102186154 +2.49410831277079,53.2321620609369 +2.48473155748104,53.1425582555489 +2.33568317858632,53.1480884646146 + + + + + +TG97 +#labelStyle + +2.41482636329934,53.1901575676964 + + + + +TG98 + +Small Square TG98 Boundry Box +#Line2 + + +1 + +2.34475162389049,53.2377191815654 +2.35386777072815,53.3273384992839 +2.50353626098177,53.3217723165407 +2.49410925304698,53.2321710220881 +2.34475162389049,53.2377191815654 + + + + + +TG98 +#labelStyle + +2.42407416757518,53.2797781475819 + + + + +TG99 + +Small Square TG99 Boundry Box +#Line2 + + +1 + +2.35386868487642,53.32734746199 +2.363033792448,53.4169643367155 +2.51301482845662,53.4113800536898 +2.50353720630175,53.3217812774405 +2.35386868487642,53.32734746199 + + + + + +TG99 +#labelStyle + +2.43337158651307,53.3693962504276 + + + + + +TL + +Large Square TL Boundry Box +#Line1 + + +1 + +-0.55471509804799,51.6898597425022 +-0.525328535532257,52.5886067279947 +0.949151359112864,52.5610520279557 +0.890452315464495,51.6631768336401 +-0.55471509804799,51.6898597425022 + + + + + +TL00 + +Small Square TL00 Boundry Box +#Line2 + + +1 + +-0.55471509804799,51.6898597425022 +-0.551845421473071,51.7797330862612 +-0.406963333745046,51.7778589558671 +-0.410119880832617,51.68799160949 +-0.55471509804799,51.6898597425022 + + + + + +TL00 +#labelStyle + +-0.480903544882829,51.7338877125923 + + + + +TL01 + +Small Square TL01 Boundry Box +#Line2 + + +1 + +-0.551845133728943,51.7797420744195 +-0.548960468764556,51.8696139209391 +-0.4037899851402,51.8677337687905 +-0.40696301723633,51.7778679434244 +-0.551845133728943,51.7797420744195 + + + + + +TL01 +#labelStyle + +-0.477882247403611,51.8237663620414 + + + + +TL02 + +Small Square TL02 Boundry Box +#Line2 + + +1 + +-0.548960179516261,51.8696229089476 +-0.546060422296081,51.9594932585148 +-0.400600035653121,51.9576070606653 +-0.403789666977125,51.8677427561958 +-0.548960179516261,51.8696229089476 + + + + + +TL02 +#labelStyle + +-0.47484515704414,51.9136435025962 + + + + +TL03 + +Small Square TL03 Boundry Box +#Line2 + + +1 + +-0.546060131533183,51.9595022463737 +-0.543145177202472,52.0493710992812 +-0.397393369966291,52.0474788316102 +-0.40059971582421,51.9576160479185 +-0.546060131533183,51.9595022463737 + + + + + +TL03 +#labelStyle + +-0.47179216423128,52.003519134462 + + + + +TL04 + +Small Square TL04 Boundry Box +#Line2 + + +1 + +-0.543144884914435,52.0493800869905 +-0.540214627618361,52.139247443537 +-0.394169871662517,52.137349081748 +-0.397393048459957,52.0474878187113 +-0.543144884914435,52.0493800869905 + + + + + +TL04 +#labelStyle + +-0.46872315834809,52.0933932578491 + + + + +TL05 + +Small Square TL05 Boundry Box +#Line2 + + +1 + +-0.540214333794547,52.1392564310966 +-0.537268666666344,52.2291222915864 +-0.390929423211914,52.2272178112054 +-0.394169548467063,52.137358068697 +-0.540214333794547,52.1392564310966 + + + + + +TL05 +#labelStyle + +-0.465638027721469,52.1832658729727 + + + + +TL06 + +Small Square TL06 Boundry Box +#Line2 + + +1 + +-0.537268371296015,52.2291312789964 +-0.534307186444967,52.3189956437391 +-0.387671905958697,52.3170850201132 +-0.39092909831553,52.2272267980023 +-0.537268371296015,52.2291312789964 + + + + + +TL06 +#labelStyle + +-0.462536659609644,52.2731369800528 + + + + +TL07 + +Small Square TL07 Boundry Box +#Line2 + + +1 + +-0.534306889517281,52.3190046309995 +-0.531330078016539,52.4088675003102 +-0.384397200107789,52.4069507086055 +-0.387671579349462,52.317094006758 +-0.534306889517281,52.3190046309995 + + + + + +TL07 +#labelStyle + +-0.459418940189464,52.363006579314 + + + + +TL08 + +Small Square TL08 Boundry Box +#Line2 + + +1 + +-0.53132977952055,52.408876487421 +-0.528337231394777,52.4987378616202 +-0.381105184711237,52.4968148768205 +-0.384396871773666,52.4069596950984 +-0.53132977952055,52.408876487421 + + + + + +TL08 +#labelStyle + +-0.456284754543522,52.4528746709853 + + + + +TL09 + +Small Square TL09 Boundry Box +#Line2 + + +1 + +-0.528336931319432,52.4987468485816 +-0.525328535532257,52.5886067279947 +-0.377795737654421,52.5866775248993 +-0.381104854640071,52.4968238631613 +-0.528336931319432,52.4987468485816 + + + + + +TL09 +#labelStyle + +-0.453133986647086,52.5427412553004 + + + + +TL10 + +Small Square TL10 Boundry Box +#Line2 + + +1 + +-0.410105420658825,51.6879914137609 +-0.40694884488682,51.7778587595096 +-0.262083244537717,51.7758061487285 +-0.265526577680271,51.6859453709801 +-0.410105420658825,51.6879914137609 + + + + + +TL10 +#labelStyle + +-0.336158619775748,51.7319272753132 + + + + +TL11 + +Small Square TL11 Boundry Box +#Line2 + + +1 + +-0.406948528375228,51.7778677470669 +-0.40377546744504,51.8677335718022 +-0.258621585427089,51.8656743663346 +-0.262082899272907,51.7758151356276 +-0.406948528375228,51.7778677470669 + + + + + +TL11 +#labelStyle + +-0.332849702723715,51.8217996283173 + + + + +TL12 + +Small Square TL12 Boundry Box +#Line2 + + +1 + +-0.403775149279074,51.8677425592073 +-0.400585488970352,51.9576068630436 +-0.255141819248054,51.9555410366701 +-0.25862123835782,51.865683353079 +-0.403775149279074,51.8677425592073 + + + + + +TL12 +#labelStyle + +-0.329523491235252,51.9116704474316 + + + + +TL13 + +Small Square TL13 Boundry Box +#Line2 + + +1 + +-0.400585169138534,51.9576158502966 +-0.397378794144194,52.0474786333525 +-0.251643820242543,52.0454061596631 +-0.25514147036181,51.9555500232598 +-0.400585169138534,51.9576158502966 + + + + + +TL13 +#labelStyle + +-0.326179865339368,52.00153973268 + + + + +TL14 + +Small Square TL14 Boundry Box +#Line2 + + +1 + +-0.397378472634938,52.0474876204535 +-0.394155266548318,52.1373488828518 +-0.248127461453499,52.1352697352439 +-0.251643469526687,52.045415146098 +-0.397378472634938,52.0474876204535 + + + + + +TL14 +#labelStyle + +-0.322818703922439,52.0914074840895 + + + + +TL15 + +Small Square TL15 Boundry Box +#Line2 + + +1 + +-0.394154943349926,52.1373578698007 +-0.390914788651773,52.2272176116683 +-0.244592614710695,52.225131763345 +-0.248127108895276,52.135278721524 +-0.394154943349926,52.1373578698007 + + + + + +TL15 +#labelStyle + +-0.319439884714699,52.1812737016904 + + + + +TL16 + +Small Square TL16 Boundry Box +#Line2 + + +1 + +-0.390914463752437,52.2272265984651 +-0.387657241797702,52.3170848199324 +-0.241039150616338,52.314992243901 +-0.244592260297228,52.2251407494704 +-0.390914463752437,52.2272265984651 + + + + + +TL16 +#labelStyle + +-0.316043284276539,52.2711383855157 + + + + +TL17 + +Small Square TL17 Boundry Box +#Line2 + + +1 + +-0.387656915185499,52.3170938065772 +-0.384382506189941,52.4069505077785 +-0.237466938530462,52.4048511768483 +-0.241038794334623,52.3150012298717 +-0.387656915185499,52.3170938065772 + + + + + +TL17 +#labelStyle + +-0.312628777984605,52.3610015356017 + + + + +TL18 + +Small Square TL18 Boundry Box +#Line2 + + +1 + +-0.384382177852834,52.4069594942713 +-0.38109046087944,52.4968146753446 +-0.233875846556127,52.494708562125 +-0.237466580367373,52.4048601626642 +-0.384382177852834,52.4069594942713 + + + + + +TL18 +#labelStyle + +-0.309196240017703,52.4508631519871 + + + + +TL19 + +Small Square TL19 Boundry Box +#Line2 + + +1 + +-0.381090130805275,52.4968236616853 +-0.377780983750476,52.5866773227719 +-0.230265741524392,52.5845643996706 +-0.233875486498411,52.4947175477861 +-0.381090130805275,52.4968236616853 + + + + + +TL19 +#labelStyle + +-0.305745543342497,52.5407232347133 + + + + +TL20 + +Small Square TL20 Boundry Box +#Line2 + + +1 + +-0.265512119218364,51.6859451574606 +-0.262068757403204,51.7758059345236 +-0.117221140113698,51.7735748926069 +-0.120951135914147,51.6837212538505 +-0.265512119218364,51.6859451574606 + + + + + +TL20 +#labelStyle + +-0.191430872554285,51.7297886494077 + + + + +TL21 + +Small Square TL21 Boundry Box +#Line2 + + +1 + +-0.262068412135519,51.7758149214227 +-0.258607069467583,51.8656741514415 +-0.113471295077891,51.8634359422213 +-0.117220766105193,51.7735838787907 +-0.262068412135519,51.7758149214227 + + + + + +TL21 +#labelStyle + +-0.187834454778712,51.8196541342611 + + + + +TL22 + +Small Square TL22 Boundry Box +#Line2 + + +1 + +-0.258606722395424,51.8656831381858 +-0.255127274312994,51.9555408210861 +-0.109701837972532,51.9532954160727 +-0.113470919114945,51.8634449282475 +-0.258606722395424,51.8656831381858 + + + + + +TL22 +#labelStyle + +-0.184219242139884,51.9095180579657 + + + + +TL23 + +Small Square TL23 Boundry Box +#Line2 + + +1 + +-0.255126925423844,51.9555498076757 +-0.251629246180324,52.0454059433854 +-0.10591263261299,52.0431533138821 +-0.10970146004159,51.9533044019413 +-0.255126925423844,51.9555498076757 + + + + + +TL23 +#labelStyle + +-0.180585104282272,51.9993804203474 + + + + +TL24 + +Small Square TL24 Boundry Box +#Line2 + + +1 + +-0.251628895461548,52.0454149298203 +-0.248112858111464,52.1352695182698 +-0.10210354151654,52.1330096353709 +-0.10591225270037,52.0431622995931 +-0.251628895461548,52.0454149298203 + + + + + +TL24 +#labelStyle + +-0.176931909609083,52.0892412212334 + + + + +TL25 + +Small Square TL25 Boundry Box +#Line2 + + +1 + +-0.248112505550305,52.1352785045499 +-0.244577981935123,52.2251315456717 +-0.0982744258870082,52.2228643802604 +-0.102103159608428,52.1330186209242 +-0.248112505550305,52.1352785045499 + + + + + +TL25 +#labelStyle + +-0.173259525267588,52.1791004604522 + + + + +TL26 + +Small Square TL26 Boundry Box +#Line2 + + +1 + +-0.244577627518705,52.225140531797 +-0.241024488252434,52.3149920255256 +-0.0944251455991879,52.3127175482723 +-0.0982740419694586,52.2228733656561 +-0.244577627518705,52.225140531797 + + + + + +TL26 +#labelStyle + +-0.169567817134241,52.2689581378334 + + + + +TL27 + +Small Square TL27 Boundry Box +#Line2 + + +1 + +-0.241024131967753,52.3150010114962 +-0.237452246422348,52.404850957768 +-0.0905555591830368,52.4025691391279 +-0.0944247596581205,52.3127265335103 +-0.241024131967753,52.3150010114962 + + + + + +TL27 +#labelStyle + +-0.165856649799582,52.3588142532076 + + + + +TL28 + +Small Square TL28 Boundry Box +#Line2 + + +1 + +-0.237451888256277,52.4048599435838 +-0.233861124546831,52.4947083423369 +-0.0866655238076521,52.4924191525482 +-0.0905551712042367,52.4025781242081 +-0.237451888256277,52.4048599435838 + + + + + +TL28 +#labelStyle + +-0.16212588655293,52.4486688064062 + + + + +TL29 + +Small Square TL29 Boundry Box +#Line2 + + +1 + +-0.233860764486117,52.494717327998 +-0.230250989455836,52.5845641791719 +-0.0827548952650076,52.5822675882537 +-0.0866651337767678,52.4924281374706 +-0.233860764486117,52.494717327998 + + + + + +TL29 +#labelStyle + +-0.158375389366851,52.5385217972612 + + + + +TL30 + +Small Square TL30 Boundry Box +#Line2 + + +1 + +-0.120936679312628,51.6837210225457 +-0.117206654852424,51.7735746605597 +0.0276214848674733,51.7711652410279 +0.0236049600367994,51.6813193112876 +-0.120936679312628,51.6837210225457 + + + + + +TL30 +#labelStyle + +-0.0467217933450692,51.7274718861045 + + + + +TL31 + +Small Square TL31 Boundry Box +#Line2 + + +1 + +-0.117206280841045,51.7735836467434 +-0.113456781004599,51.8634357094287 +0.0316593809194382,51.8610185503184 +0.0276218876062459,51.7711742264391 +-0.117206280841045,51.7735836467434 + + + + + +TL31 +#labelStyle + +-0.0428380039820973,51.8173299314286 + + + + +TL32 + +Small Square TL32 Boundry Box +#Line2 + + +1 + +-0.113456405038764,51.8634446954547 +-0.109687294936784,51.9532951825317 +0.0357183927591201,51.9508702530862 +0.0316597857625067,51.861027535569 +-0.113456405038764,51.8634446954547 + + + + + +TL32 +#labelStyle + +-0.0389339205558787,51.9071863860842 + + + + +TL33 + +Small Square TL33 Boundry Box +#Line2 + + +1 + +-0.109686917002939,51.9533041684002 +-0.105898060463306,52.0431530795898 +0.039798666982562,52.0407203488288 +0.0357187997210743,51.9508792381761 +-0.109686917002939,51.9533041684002 + + + + + +TL33 +#labelStyle + +-0.0350094023408146,51.9970412496828 + + + + +TL34 + +Small Square TL34 Boundry Box +#Line2 + + +1 + +-0.105897680547767,52.0431620653006 +-0.10208894010039,52.1330094003241 +0.0439003515827992,52.1305688370418 +0.0397990760781322,52.040729333758 +-0.105897680547767,52.0431620653006 + + + + + +TL34 +#labelStyle + +-0.0310643072716158,52.0868945218353 + + + + +TL35 + +Small Square TL35 Boundry Box +#Line2 + + +1 + +-0.102088558189343,52.1330183858774 +-0.0982597950507978,52.2228641444563 +0.0480235959663731,52.220415717219 +0.0439007628268544,52.1305778218102 +-0.102088558189343,52.1330183858774 + + + + + +TL35 +#labelStyle + +-0.0270984919274723,52.1767462021517 + + + + +TL36 + +Small Square TL36 Boundry Box +#Line2 + + +1 + +-0.0982594111302986,52.2228731298518 +-0.0944104851882524,52.3127173117077 +0.0521685509700996,52.3102609888519 +0.0480240093739246,52.2204247018265 +-0.0982594111302986,52.2228731298518 + + + + + +TL36 +#labelStyle + +-0.0231118115159932,52.2665962902414 + + + + +TL37 + +Small Square TL37 Boundry Box +#Line2 + + +1 + +-0.0944100992442196,52.3127262969456 +-0.0905408690416288,52.4025689017997 +0.0563353688780706,52.40010465143 +0.0521689665563045,52.3102699732986 +-0.0944100992442196,52.3127262969456 + + + + + +TL37 +#labelStyle + +-0.0191041198569238,52.3564447857124 + + + + +TL38 + +Small Square TL38 Boundry Box +#Line2 + + +1 + +-0.0905404810598482,52.4025778868799 +-0.0866508037789316,52.4924189144534 +0.0605242034388923,52.4899467044399 +0.0563357866582294,52.4001136357158 +-0.0905404810598482,52.4025778868799 + + + + + +TL38 +#labelStyle + +-0.0150752693656266,52.4462916881714 + + + + +TL39 + +Small Square TL39 Boundry Box +#Line2 + + +1 + +-0.0866504137450506,52.4924278993758 +-0.0827401451910317,52.5822673493892 +0.0647352098831834,52.5797871473656 +0.0605246234284543,52.4899556885647 +-0.0866504137450506,52.4924278993758 + + + + + +TL39 +#labelStyle + +-0.0110251110363217,52.5361369972237 + + + + +TL40 + +Small Square TL40 Boundry Box +#Line2 + + +1 + +0.0236194146295495,51.6813190622031 +0.0276359681061036,51.771164991144 +0.172443137013807,51.7685772517821 +0.168140226996437,51.678739600716 +0.0236194146295495,51.6813190622031 + + + + + +TL40 +#labelStyle + +0.0979671289373652,51.7249770408859 + + + + +TL41 + +Small Square TL41 Boundry Box +#Line2 + + +1 + +0.0276363708477486,51.7711739765551 +0.0316738929560805,51.8610182996318 +0.176768938859425,51.8584222487859 +0.172443568468394,51.7685862363637 +0.0276363708477486,51.7711739765551 + + + + + +TL41 +#labelStyle + +0.102138150478992,51.8148270756565 + + + + +TL42 + +Small Square TL42 Boundry Box +#Line2 + + +1 + +0.0316742978020359,51.8610272848823 +0.0357329337440777,51.9508700015938 +0.181117358830197,51.9482656062432 +0.176769372568024,51.8584312332036 +0.0316742978020359,51.8610272848823 + + + + + +TL42 +#labelStyle + +0.106330963959741,51.9046754879812 + + + + +TL43 + +Small Square TL43 Boundry Box +#Line2 + + +1 + +0.0357333407089347,51.9508789866836 +0.0398132370671807,52.0407200965273 +0.185488553917289,52.0381073234116 +0.181117794808435,51.948274590497 +0.0357333407089347,51.9508789866836 + + + + + +TL43 +#labelStyle + +0.110545720459673,51.9945222772408 + + + + +TL44 + +Small Square TL44 Boundry Box +#Line2 + + +1 + +0.0398136461656683,52.0407290814564 +0.0439149509194731,52.1305685839281 +0.189882682607518,52.1279473995444 +0.185488992180939,52.0381163075012 +0.0398136461656683,52.0407290814564 + + + + + +TL44 +#labelStyle + +0.114782572496741,52.0843674428135 + + + + +TL45 + +Small Square TL45 Boundry Box +#Line2 + + +1 + +0.0439153621664611,52.1305775686964 +0.048038224708558,52.2204154632897 +0.194299904901033,52.2177858338911 +0.189883123172504,52.12795638347 +0.0439153621664611,52.1305775686964 + + + + + +TL45 +#labelStyle + +0.11904167404378,52.1742109840743 + + + + +TL46 + +Small Square TL46 Boundry Box +#Line2 + + +1 + +0.0480386381190578,52.2204244478972 +0.0521832092723209,52.3102607341038 +0.198740382329259,52.3076226256965 +0.19430034778343,52.2177948176524 +0.0480386381190578,52.2204244478972 + + + + + +TL46 +#labelStyle + +0.123323180545737,52.2640529003953 + + + + +TL47 + +Small Square TL47 Boundry Box +#Line2 + + +1 + +0.0521836248614893,52.3102697185505 +0.0563500568959344,52.4001043958598 +0.20320427797309,52.3974577742007 +0.198740827545298,52.3076316092935 +0.0521836248614893,52.3102697185505 + + + + + +TL47 +#labelStyle + +0.127627248937144,52.353893191145 + + + + +TL48 + +Small Square TL48 Boundry Box +#Line2 + + +1 + +0.0563504746790726,52.4001133801455 +0.0605389213290951,52.4899464480442 +0.207691756481347,52.4872912786392 +0.203204725539159,52.3974667576334 +0.0563504746790726,52.4001133801455 + + + + + +TL48 +#labelStyle + +0.13195403765984,52.4437318556885 + + + + +TL49 + +Small Square TL49 Boundry Box +#Line2 + + +1 + +0.0605393413216528,52.4899554321689 +0.0647499578035244,52.5797868901412 +0.212202984089497,52.5771231382421 +0.207692206413989,52.4873002619074 +0.0605393413216528,52.4899554321689 + + + + + +TL49 +#labelStyle + +0.136303706680952,52.533568893387 + + + + +TL50 + +Small Square TL50 Boundry Box +#Line2 + + +1 + +0.168154679432166,51.6787393338577 +0.172457618080521,51.7685769840674 +0.317242324297417,51.7658109869204 +0.312653183136901,51.6759821837935 +0.168154679432166,51.6787393338577 + + + + + +TL50 +#labelStyle + +0.242634406686679,51.7223041734837 + + + + +TL51 + +Small Square TL51 Boundry Box +#Line2 + + +1 + +0.172458049537979,51.768585968649 +0.176783448709113,51.8584219802114 +0.32185587641676,51.8556471000714 +0.317242784452339,51.7658199706155 +0.172458049537979,51.768585968649 + + + + + +TL51 +#labelStyle + +0.247092510741003,51.8121456270578 + + + + +TL52 + +Small Square TL52 Boundry Box +#Line2 + + +1 + +0.176783882420599,51.8584309646291 +0.181131897613021,51.9482653368055 +0.326493547520456,51.9454815383914 +0.321856338975265,51.855656083599 +0.176783882420599,51.8584309646291 + + + + + +TL52 +#labelStyle + +0.251573903189149,51.9019854241543 + + + + +TL53 + +Small Square TL53 Boundry Box +#Line2 + + +1 + +0.18113233359416,51.9482743210592 +0.185503121784449,52.0381070531072 +0.331155504977353,52.0353143008817 +0.326494012499203,51.9454905217515 +0.18113233359416,51.9482743210592 + + + + + +TL53 +#labelStyle + +0.256078745448885,51.9918235639072 + + + + +TL54 + +Small Square TL54 Boundry Box +#Line2 + + +1 + +0.185503560051014,52.0381160371968 +0.189897279711262,52.1279471283699 +0.335841917750362,52.1251453865371 +0.331155972393157,52.0353232840741 +0.185503560051014,52.0381160371968 + + + + + +TL54 +#labelStyle + +0.260607200473845,52.0816600454453 + + + + +TL55 + +Small Square TL55 Boundry Box +#Line2 + + +1 + +0.189897720279179,52.1279561122954 +0.194314531394669,52.217785561843 +0.340552956415302,52.2149747943459 +0.335842387620201,52.1251543695618 +0.189897720279179,52.1279561122954 + + + + + +TL55 +#labelStyle + +0.265159432771661,52.1714948678921 + + + + +TL56 + +Small Square TL56 Boundry Box +#Line2 + + +1 + +0.194314974280012,52.2177945456042 +0.198755038367161,52.3076223527712 +0.345288793180008,52.3048025232893 +0.340553428756313,52.2149837772027 +0.194314974280012,52.2177945456042 + + + + + +TL56 +#labelStyle + +0.269735608422362,52.2613280303655 + + + + +TL57 + +Small Square TL57 Boundry Box +#Line2 + + +1 + +0.198755483586163,52.3076313363681 +0.203218963710714,52.3974575003947 +0.350049601903728,52.3946285723416 +0.345289268009496,52.3048115059783 +0.198755483586163,52.3076313363681 + + + + + +TL57 +#labelStyle + +0.274335895097031,52.351159531978 + + + + +TL58 + +Small Square TL58 Boundry Box +#Line2 + + +1 + +0.20321941127976,52.3974664838273 +0.207706472075236,52.487291003949 +0.35483555811677,52.4844529404696 +0.350050079239161,52.3946375548625 +0.20321941127976,52.3974664838273 + + + + + +TL58 +#labelStyle + +0.278960462076731,52.4409893718357 + + + + +TL59 + +Small Square TL59 Boundry Box +#Line2 + + +1 + +0.207706922010871,52.4872999872171 +0.212217729697294,52.5771228626641 +0.359646839040463,52.5742756266323 +0.354836037975787,52.4844619228223 +0.207706922010871,52.4872999872171 + + + + + +TL59 +#labelStyle + +0.2836094802717,52.5308175490386 + + + + +TL60 + +Small Square TL60 Boundry Box +#Line2 + + +1 + +0.312667633267497,51.6759818991678 +0.317256803043084,51.7658107013815 +0.462017556150855,51.7628665127495 +0.457142348073812,51.6730471264068 +0.312667633267497,51.6759818991678 + + + + + +TL60 +#labelStyle + +0.387278553700617,51.7194533478738 + + + + +TL61 + +Small Square TL61 Boundry Box +#Line2 + + +1 + +0.317257263200876,51.7658196850764 +0.321870383929335,51.8556468136155 +0.466918692743768,51.8526931709049 +0.462018044989611,51.7628754955008 +0.317257263200876,51.7658196850764 + + + + + +TL61 +#labelStyle + +0.392023580360982,51.8092856500168 + + + + +TL62 + +Small Square TL62 Boundry Box +#Line2 + + +1 + +0.321870846490724,51.855655797143 +0.326508083949948,51.9454812510149 +0.471845447604722,51.942518116688 +0.466919184135521,51.8527021534851 +0.321870846490724,51.855655797143 + + + + + +TL62 +#labelStyle + +0.396793390351859,51.8991162593999 + + + + +TL63 + +Small Square TL63 Boundry Box +#Line2 + + +1 + +0.326508548931594,51.9454902343748 +0.331170070474806,52.0353140125809 +0.476797998461666,52.0323413488276 +0.471845941567161,51.9425270990969 +0.326508548931594,51.9454902343748 + + + + + +TL63 +#labelStyle + +0.401588155410844,51.9889451748937 + + + + +TL64 + +Small Square TL64 Boundry Box +#Line2 + + +1 + +0.331170537893525,52.0353229957732 +0.33585651246787,52.1251450973084 +0.481776524734764,52.1221628660432 +0.476798495012648,52.032350331065 +0.331170537893525,52.0353229957732 + + + + + +TL64 +#labelStyle + +0.406408048909111,52.0787723953616 + + + + +TL65 + +Small Square TL65 Boundry Box +#Line2 + + +1 + +0.335856982340639,52.125154080333 +0.340567580506013,52.2149745041855 +0.486781207556388,52.2119826670455 +0.481777023892316,52.1221718481091 +0.335856982340639,52.125154080333 + + + + + +TL65 +#labelStyle + +0.411253245870694,52.1685979196588 + + + + +TL66 + +Small Square TL66 Boundry Box +#Line2 + + +1 + +0.340568052849969,52.2149834870422 +0.345303446798139,52.3048022321935 +0.491812229791404,52.3018007505354 +0.48678170933871,52.2119916489397 +0.340568052849969,52.2149834870422 + + + + + +TL66 +#labelStyle + +0.416123922992044,52.2584217466327 + + + + +TL67 + +Small Square TL67 Boundry Box +#Line2 + + +1 + +0.345303921630587,52.3048112148823 +0.35006428520457,52.3946282803066 +0.496869776057743,52.3916171152042 +0.491812734216871,52.3018097322578 +0.345303921630587,52.3048112148823 + + + + + +TL67 +#labelStyle + +0.421020258661873,52.3482438751224 + + + + +TL68 + +Small Square TL68 Boundry Box +#Line2 + + +1 + +0.350064762542979,52.3946372628274 +0.354850271256703,52.4844526474915 +0.501954032747262,52.4814317597331 +0.496870283144903,52.3916260967547 +0.350064762542979,52.3946372628274 + + + + + +TL68 +#labelStyle + +0.42594243298127,52.4380643039584 + + + + +TL69 + +Small Square TL69 Boundry Box +#Line2 + + +1 + +0.354850751118711,52.4844616298442 +0.359661582176964,52.5742753327074 +0.507065188046915,52.5712446827928 +0.501954542514845,52.4814407411115 +0.354850751118711,52.4844616298442 + + + + + +TL69 +#labelStyle + +0.430890627784113,52.5278830319622 + + + + +TL70 + +Small Square TL70 Boundry Box +#Line2 + + +1 + +0.457156795751311,51.6730468240204 +0.462032032426495,51.762866209393 +0.6067673435632,51.7597438998255 +0.601606242961256,51.6699344986655 +0.457156795751311,51.6730468240204 + + + + + +TL70 +#labelStyle + +0.531898085276662,51.7164246322719 + + + + +TL71 + +Small Square TL71 Boundry Box +#Line2 + + +1 + +0.462032521268118,51.7628751921443 +0.466933197769222,51.8526928665744 +0.611955888567616,51.8495605322934 +0.606767861068266,51.7597528815763 +0.462032521268118,51.7628751921443 + + + + + +TL71 +#labelStyle + +0.536929864413344,51.8062472131843 + + + + +TL72 + +Small Square TL72 Boundry Box +#Line2 + + +1 + +0.466933689163857,51.8527018491545 +0.471859981529837,51.9425178113796 +0.61717154945124,51.9393754125947 +0.611956408774926,51.849569513869 +0.466933689163857,51.8527018491545 + + + + + +TL72 +#labelStyle + +0.54198792020264,51.8960680628075 + + + + +TL73 + +Small Square TL73 Boundry Box +#Line2 + + +1 + +0.471860475495172,51.9425267937884 +0.476812561437322,52.0323410425373 +0.622414514281405,52.0291885391693 +0.617172072379513,51.9393843939951 +0.471860475495172,51.9425267937884 + + + + + +TL73 +#labelStyle + +0.547072434682961,51.9858871797329 + + + + +TL74 + +Small Square TL74 Boundry Box +#Line2 + + +1 + +0.476813057991217,52.0323500247747 +0.481791116912887,52.1221625587672 +0.62768497291553,52.1189999104455 +0.622415039949537,52.0291975203942 +0.476813057991217,52.0323500247747 + + + + + +TL74 +#labelStyle + +0.552183591623734,52.0757045625418 + + + + +TL75 + +Small Square TL75 Boundry Box +#Line2 + + +1 + +0.481791616073368,52.1221715408331 +0.486795829089961,52.2119823587798 +0.63298311702226,52.2088095248394 +0.627685501342596,52.1190088914948 +0.481791616073368,52.1221715408331 + + + + + +TL75 +#labelStyle + +0.557321576545836,52.1655202098047 + + + + +TL76 + +Small Square TL76 Boundry Box +#Line2 + + +1 + +0.486796330875226,52.211991340674 +0.491826880834471,52.3018004412761 +0.638309140102918,52.2986173807552 +0.632983648227518,52.2088185057129 +0.486796330875226,52.211991340674 + + + + + +TL76 +#labelStyle + +0.562486576742305,52.2553341200818 + + + + +TL77 + +Small Square TL77 Boundry Box +#Line2 + + +1 + +0.491827385262896,52.3018094229984 +0.496884456765424,52.3916168049473 +0.643663237513254,52.3884234765842 +0.638309674105811,52.2986263614528 +0.491827385262896,52.3018094229984 + + + + + +TL77 +#labelStyle + +0.567678781299359,52.3451462919221 + + + + +TL78 + +Small Square TL78 Boundry Box +#Line2 + + +1 + +0.496884963855559,52.3916257864977 +0.501968743275763,52.4814314484744 +0.649045606485509,52.4782278107049 +0.643663774333412,52.3884324571057 +0.496884963855559,52.3916257864977 + + + + + +TL78 +#labelStyle + +0.572898381117702,52.4349567238634 + + + + +TL79 + +Small Square TL79 Boundry Box +#Line2 + + +1 + +0.501969253046336,52.4814404298527 +0.507079928553536,52.5712443705283 +0.654456446150796,52.5680303814825 +0.649046146142749,52.4782367910501 +0.501969253046336,52.4814404298527 + + + + + +TL79 +#labelStyle + +0.578145568934151,52.5247654144315 + + + + +TL80 + +Small Square TL80 Boundry Box +#Line2 + + +1 + +0.601620688037853,51.6699341785258 +0.606781817219991,51.7597435786588 +0.751490199175885,51.7564432229491 +0.746043390586508,51.666644374897 +0.601620688037853,51.6699341785258 + + + + + +TL80 +#labelStyle + +0.676491518307447,51.713218099127 + + + + +TL81 + +Small Square TL81 Boundry Box +#Line2 + + +1 + +0.606782334727923,51.7597525604095 +0.611970390956103,51.8495602100956 +0.756965966287267,51.8462492595151 +0.751490745328718,51.7564522036424 +0.606782334727923,51.7597525604095 + + + + + +TL81 +#labelStyle + +0.681809869586399,51.8030303894714 + + + + +TL82 + +Small Square TL82 Boundry Box +#Line2 + + +1 + +0.611970911166294,51.8495691916712 +0.617186080721098,51.9393750893618 +0.762470345119767,51.9360535018714 +0.756966515291417,51.846258240029 +0.611970911166294,51.8495691916712 + + + + + +TL82 +#labelStyle + +0.687155989129167,51.8928409077546 + + + + +TL83 + +Small Square TL83 Boundry Box +#Line2 + + +1 + +0.617186603652266,51.939384070762 +0.622429074583339,52.0291882148971 +0.768003534059252,52.025855948153 +0.762470896994978,51.9360624822059 +0.617186603652266,51.939384070762 + + + + + +TL83 +#labelStyle + +0.692530069254832,51.9826496522725 + + + + +TL84 + +Small Square TL84 Boundry Box +#Line2 + + +1 + +0.622429600254381,52.0291971961219 +0.627699562401291,52.1189995851298 +0.77356573337925,52.1156565964804 +0.768004088825456,52.0258649283078 +0.622429600254381,52.0291971961219 + + + + + +TL84 +#labelStyle + +0.697932304110652,52.0724566213079 + + + + +TL85 + +Small Square TL85 Boundry Box +#Line2 + + +1 + +0.627700090831283,52.119008566179 +0.63299773584465,52.2088091984761 +0.779157145263235,52.2054554449588 +0.773566291056571,52.1156655764552 +0.627700090831283,52.119008566179 + + + + + +TL85 +#labelStyle + +0.703362889693625,52.1622618131305 + + + + +TL86 + +Small Square TL86 Boundry Box +#Line2 + + +1 + +0.632998267052849,52.2088181793495 +0.638323788415802,52.29861705334 +0.784777973827233,52.2952524916788 +0.779157705871986,52.2054644247536 +0.632998267052849,52.2088181793495 + + + + + +TL86 +#labelStyle + +0.708822023872365,52.2520652259964 + + + + +TL87 + +Small Square TL87 Boundry Box +#Line2 + + +1 + +0.638324322421652,52.2986260340375 +0.643677915471571,52.3884231481129 +0.790428425142753,52.3850477347151 +0.784778537387925,52.2952614712933 +0.638324322421652,52.2986260340375 + + + + + +TL87 +#labelStyle + +0.71430990640928,52.3418668581479 + + + + +TL88 + +Small Square TL88 Boundry Box +#Line2 + + +1 + +0.6436784522947,52.3884321286343 +0.649060314245278,52.4782274811732 +0.796108707260039,52.4748411721265 +0.79042899167609,52.3850567141491 +0.6436784522947,52.3884321286343 + + + + + +TL88 +#labelStyle + +0.719826738983076,52.4316667078129 + + + + +TL89 + +Small Square TL89 Boundry Box +#Line2 + + +1 + +0.649060853905507,52.4782364615184 +0.654471183869131,52.5680300508862 +0.80181903023166,52.5646328019558 +0.796109276786927,52.4748501513799 +0.649060853905507,52.4782364615184 + + + + + +TL89 +#labelStyle + +0.725372725211576,52.5214647732049 + + + + +TL90 + +Small Square TL90 Boundry Box +#Line2 + + +1 + +0.746057832914569,51.6666440370115 +0.751504670065178,51.7564428839799 +0.896184637378257,51.7529645611593 +0.890452315464495,51.6631768336401 +0.746057832914569,51.6666440370115 + + + + + +TL90 +#labelStyle + +0.821057371375887,51.7098338251163 + + + + +TL91 + +Small Square TL91 Boundry Box +#Line2 + + +1 + +0.751505216220876,51.7564518646731 +0.756980465889114,51.8462489194578 +0.901947430070151,51.8427594321133 +0.896185212159298,51.7529735407382 +0.751505216220876,51.7564518646731 + + + + + +TL91 +#labelStyle + +0.8266621042786,51.7996352560441 + + + + +TL92 + +Small Square TL92 Boundry Box +#Line2 + + +1 + +0.756981014896143,51.8462578999717 +0.762484873583661,51.9360531607217 +0.907740328459371,51.9325524645704 +0.901948007851395,51.8427684115085 +0.756981014896143,51.8462578999717 + + + + + +TL92 +#labelStyle + +0.832296095249395,51.8894348719004 + + + + +TL93 + +Small Square TL93 Boundry Box +#Line2 + + +1 + +0.762485425461765,51.9360621410561 +0.768018091535714,52.0258556059066 +0.91356354122834,52.0223436563443 +0.907740909261586,51.9325614437816 +0.762485425461765,51.9360621410561 + + + + + +TL93 +#labelStyle + +0.837959546866763,51.9792326706691 + + + + +TL94 + +Small Square TL94 Boundry Box +#Line2 + + +1 + +0.768018646304828,52.0258645860613 +0.773580320019846,52.1156562531328 +0.91941727904441,52.1121330052313 +0.913564125072494,52.0223526353714 +0.768018646304828,52.0258645860613 + + + + + +TL94 +#labelStyle + +0.843652663634224,52.0690286503187 + + + + +TL95 + +Small Square TL95 Boundry Box +#Line2 + + +1 + +0.773580877700091,52.1156652331075 +0.779171761220578,52.2054551005057 +0.925301754583275,52.2019205090097 +0.91941786595167,52.112141984074 +0.773580877700091,52.1156652331075 + + + + + +TL95 +#labelStyle + +0.84937565200303,52.1588228088012 + + + + +TL96 + +Small Square TL96 Boundry Box +#Line2 + + +1 + +0.779172321832269,52.2054640803004 +0.784792619254998,52.2952521461157 +0.931217182552739,52.2917061654395 +0.925302344575009,52.2019294876677 +0.779172321832269,52.2054640803004 + + + + + +TL96 +#labelStyle + +0.855128720395184,52.2486151440524 + + + + +TL97 + +Small Square TL97 Boundry Box +#Line2 + + +1 + +0.784793182818644,52.2952611257301 +0.790443100195686,52.3850473880375 +0.937163779716813,52.3814899722621 +0.931217775650521,52.2917151439127 +0.784793182818644,52.2952611257301 + + + + + +TL97 +#labelStyle + +0.860912079226787,52.3384056539909 + + + + +TL98 + +Small Square TL98 Boundry Box +#Line2 + + +1 + +0.790443666731993,52.3850563674715 +0.796123412093963,52.47484082433 +0.943141764920154,52.4712719271999 +0.937164375942424,52.3814989505502 +0.790443666731993,52.3850563674715 + + + + + +TL98 +#labelStyle + +0.866725940931723,52.4281943365183 + + + + +TL99 + +Small Square TL99 Boundry Box +#Line2 + + +1 + +0.796123981623837,52.4748498035833 +0.801833765003493,52.5646324530357 +0.949151359112864,52.5610520279557 +0.943142364295582,52.4712809053027 +0.796123981623837,52.4748498035833 + + + + + +TL99 +#labelStyle + +0.872570519985673,52.5179811895182 + + + + + +TM + +Large Square TM Boundry Box +#Line1 + + +1 + +0.890466754896559,51.6631764780169 +0.949166090780177,52.5610516607205 +2.4204643536709,52.5151902096542 +2.33266612925929,51.6187637352669 +0.890466754896559,51.6631764780169 + + + + + +TM00 + +Small Square TM00 Boundry Box +#Line2 + + +1 + +0.890466754896559,51.6631764780169 +0.896199105351583,51.7529642043957 +1.04084917440284,51.7493079977266 +1.03483154393195,51.6595319576387 +0.890466754896559,51.6631764780169 + + + + + +TM00 +#labelStyle + +0.965594164850052,51.7062718911385 + + + + +TM01 + +Small Square TM01 Boundry Box +#Line2 + + +1 + +0.896199680135485,51.7529731839745 +0.901961926735867,51.8427590742047 +1.04689878594854,51.8390911338899 +1.04084977779152,51.7493169761344 +0.896199680135485,51.7529731839745 + + + + + +TM01 +#labelStyle + +0.971485078694513,51.796061894317 + + + + +TM02 + +Small Square TM02 Boundry Box +#Line2 + + +1 + +0.901962504519987,51.8427680535997 +0.907754853966779,51.9325521055122 +1.05297999520594,51.9288723850294 +1.04689939248611,51.8391001121093 +0.901962504519987,51.8427680535997 + + + + + +TM02 +#labelStyle + +0.977406738508656,51.8858500371793 + + + + +TM03 + +Small Square TM03 Boundry Box +#Line2 + + +1 + +0.907755434771885,51.9325610847233 +0.913578095727769,52.022343296132 +1.05909302113091,52.0186517486217 +1.05298060491419,51.9288813630602 +0.907755434771885,51.9325610847233 + + + + + +TM03 +#labelStyle + +0.983359357107994,51.9756363173821 + + + + +TM04 + +Small Square TM04 Boundry Box +#Line2 + + +1 + +0.91357867957483,52.0223522751589 +0.919431862687228,52.1121326438602 +1.0652380847612,52.1084292221224 +1.05909363403184,52.0186607264635 +0.91357867957483,52.0223522751589 + + + + + +TM04 +#labelStyle + +0.989343149329613,52.0654207325627 + + + + +TM05 + +Small Square TM05 Boundry Box +#Line2 + + +1 + +0.91943244959741,52.1121416227028 +0.925316367521899,52.2019201464752 +1.07141540924097,52.1982048029663 +1.06523870087703,52.1084381997751 +0.91943244959741,52.1121416227028 + + + + + +TM05 +#labelStyle + +0.995358332055998,52.1552032803395 + + + + +TM06 + +Small Square TM06 Boundry Box +#Line2 + + +1 + +0.92531695751657,52.2019291251331 +0.931231824940641,52.2917058017369 +1.0776252198457,52.2879784885667 +1.07141602859411,52.1982137804297 +0.92531695751657,52.2019291251331 + + + + + +TM06 +#labelStyle + +1.0014051242392,52.2449839583112 + + + + +TM07 + +Small Square TM07 Boundry Box +#Line2 + + +1 + +0.931232418041376,52.29171478021 +0.937178451708536,52.3814896073868 +1.08386774400746,52.3777502763148 +1.07762584245879,52.2879874658404 +0.931232418041376,52.29171478021 + + + + + +TM07 +#labelStyle + +1.00748374692532,52.3347627640564 + + + + +TM08 + +Small Square TM08 Boundry Box +#Line2 + + +1 + +0.937179047937114,52.3814985856748 +0.943156466671318,52.471271561147 +1.09014321134054,52.4675201635796 +1.08386836990336,52.3777592533986 +0.937179047937114,52.3814985856748 + + + + + +TM08 +#labelStyle + +1.01359442327941,52.4245396951331 + + + + +TM09 + +Small Square TM09 Boundry Box +#Line2 + + +1 + +0.94315706604973,52.4712805392497 +0.949166090780177,52.5610516607205 +1.09645185366741,52.5572881477072 +1.09014384054231,52.4675291404732 +0.94315706604973,52.4712805392497 + + + + + +TM09 +#labelStyle + +1.01973737861064,52.5143147490786 + + + + +TM10 + +Small Square TM10 Boundry Box +#Line2 + + +1 + +1.03484598032075,51.6595315842864 +1.04086363931192,51.7493076231772 +1.1854823284203,51.7454736201467 +1.17917960424131,51.6557098338355 +1.03484598032075,51.6595315842864 + + + + + +TM10 +#labelStyle + +1.11010042097772,51.7025323823076 + + + + +TM11 + +Small Square TM11 Boundry Box +#Line2 + + +1 + +1.04086424270345,51.7493166015848 +1.04691327952883,51.8390907581385 +1.19181854191562,51.8352444528986 +1.18548296039502,51.7454825973266 +1.04086424270345,51.7493166015848 + + + + + +TM11 +#labelStyle + +1.11627730494049,51.7923103899461 + + + + +TM12 + +Small Square TM12 Boundry Box +#Line2 + + +1 + +1.04691388606927,51.8390997363578 +1.05299451760653,51.9288720080714 +1.19818784307935,51.9250133518652 +1.19181917718772,51.8352534298853 +1.04691388606927,51.8390997363578 + + + + + +TM12 +#labelStyle + +1.12248642077643,51.8820864897948 + + + + +TM13 + +Small Square TM13 Boundry Box +#Line2 + + +1 + +1.05299512731767,51.928880986102 +1.05910757250193,52.0186513704521 +1.2045904611166,52.0147803141696 +1.19818848167164,51.9250223286583 +1.05299512731767,51.928880986102 + + + + + +TM13 +#labelStyle + +1.12872799151461,51.9718606791665 + + + + +TM14 + +Small Square TM14 Boundry Box +#Line2 + + +1 + +1.05910818540577,52.0186603482939 +1.06525266525382,52.1084288427365 +1.21102662741098,52.104545336911 +1.20459110305211,52.0147892907689 +1.05910818540577,52.0186603482939 + + + + + +TM14 +#labelStyle + +1.13500224230184,52.0616329553518 + + + + +TM15 + +Small Square TM15 Boundry Box +#Line2 + + +1 + +1.06525328137257,52.1084378203892 +1.0714300190074,52.1982044223593 +1.21749657555017,52.1943084171641 +1.21102727271295,52.1045543133162 +1.06525328137257,52.1084378203892 + + + + + +TM15 +#labelStyle + +1.14130940042769,52.151403315619 + + + + +TM16 + +Small Square TM16 Boundry Box +#Line2 + + +1 + +1.07143063836348,52.1982133998225 +1.0776398590392,52.2879781067336 +1.22400054135209,52.284069551979 +1.21749722424209,52.1943173933749 +1.07143063836348,52.1982133998225 + + + + + +TM16 +#labelStyle + +1.14764969534972,52.2411717572132 + + + + +TM17 + +Small Square TM17 Boundry Box +#Line2 + + +1 + +1.07764048165524,52.2879870840071 +1.08388241278236,52.3777498932506 +1.23053876289123,52.3738287383801 +1.22400119345764,52.2840785279951 +1.07764048165524,52.2879870840071 + + + + + +TM17 +#labelStyle + +1.15402335871921,52.3309382773562 + + + + +TM18 + +Small Square TM18 Boundry Box +#Line2 + + +1 + +1.08388303868122,52.3777588703343 +1.09015790985224,52.4675197792794 +1.23711148052552,52.4635859733662 +1.23053941843434,52.3738377142012 +1.08388303868122,52.3777588703343 + + + + + +TM18 +#labelStyle + +1.16043062440715,52.4207028732461 + + + + +TM19 + +Small Square TM19 Boundry Box +#Line2 + + +1 + +1.09015853905699,52.4675287561729 +1.0964665820724,52.557287762166 +1.24371893692345,52.5533412539098 +1.23711213953033,52.463594948992 +1.09015853905699,52.4675287561729 + + + + + +TM19 +#labelStyle + +1.16687172853064,52.5104655420566 + + + + +TM20 + +Small Square TM20 Boundry Box +#Line2 + + +1 + +1.17919403743976,51.6557094427629 +1.18549679011705,51.7454732278204 +1.33008261963406,51.7414615201332 +1.32349502665421,51.6517105533645 +1.17919403743976,51.6557094427629 + + + + + +TM20 +#labelStyle + +1.25457466398064,51.6986153879458 + + + + +TM21 + +Small Square TM21 Boundry Box +#Line2 + + +1 + +1.18549742209462,51.7454822050001 +1.19183303226138,51.8352440593135 +1.33670520802121,51.8312194814377 +1.33008328017222,51.7414704960284 +1.18549742209462,51.7454822050001 + + + + + +TM21 +#labelStyle + +1.26103729711999,51.7883808328226 + + + + +TM22 + +Small Square TM22 Boundry Box +#Line2 + + +1 + +1.19183366753634,51.8352530363001 +1.198202362223,51.9250129570164 +1.34336237188034,51.9209754579658 +1.33670587200502,51.8312284571347 +1.19183366753634,51.8352530363001 + + + + + +TM22 +#labelStyle + +1.26753364594282,51.8781443202117 + + + + +TM23 + +Small Square TM23 Boundry Box +#Line2 + + +1 + +1.19820300081818,51.9250219338094 +1.20460500920807,52.014779918052 +1.3500543506405,52.0107294464712 +1.34336303933364,51.9209844334641 +1.19820300081818,51.9250219338094 + + + + + +TM23 +#labelStyle + +1.27406394366713,51.9679058470663 + + + + +TM24 + +Small Square TM24 Boundry Box +#Line2 + + +1 + +1.20460565114648,52.0147888946511 +1.2110412046012,52.1045449395195 +1.35678138600541,52.1004814436805 +1.35005502158733,52.0107384217706 +1.20460565114648,52.0147888946511 + + + + + +TM24 +#labelStyle + +1.28062842572452,52.057665410314 + + + + +TM25 + +Small Square TM25 Boundry Box +#Line2 + + +1 + +1.2110418499061,52.1045539159246 +1.21751118199114,52.1943080184938 +1.3635437219803,52.1902314462921 +1.35678206047007,52.1004904187805 +1.2110418499061,52.1045539159246 + + + + + +TM25 +#labelStyle + +1.28722732978634,52.1474230068567 + + + + +TM26 + +Small Square TM26 Boundry Box +#Line2 + + +1 + +1.21751183068599,52.1943169947044 +1.22401517719685,52.2840691520246 +1.37034160489905,52.2799794509763 +1.3635443999873,52.1902404211925 +1.21751183068599,52.1943169947044 + + + + + +TM26 +#labelStyle + +1.29386089579002,52.2371786335697 + + + + +TM27 + +Small Square TM27 Boundry Box +#Line2 + + +1 + +1.22401582930535,52.2840781280405 +1.23055342829389,52.3738283371365 +1.3771752834518,52.3697254543744 +1.37034228647313,52.2799884256768 +1.22401582930535,52.2840781280405 + + + + + +TM27 +#labelStyle + +1.30052936596596,52.3269322873016 + + + + +TM28 + +Small Square TM28 Boundry Box +#Line2 + + +1 + +1.23055408383996,52.3738373129574 +1.23712617564126,52.4635855708281 +1.38404500871293,52.459469453098 +1.37717596861797,52.3697344288745 +1.23055408383996,52.3738373129574 + + + + + +TM28 +#labelStyle + +1.3072329848647,52.4166839648736 + + + + +TM29 + +Small Square TM29 Boundry Box +#Line2 + + +1 + +1.23712683464905,52.4635945464538 +1.24373366190852,52.553340850072 +1.39095103416937,52.5492114437292 +1.3840456974964,52.4594784273976 +1.23712683464905,52.4635945464538 + + + + + +TM29 +#labelStyle + +1.31397199938449,52.5064336630791 + + + + +TM30 + +Small Square TM30 Boundry Box +#Line2 + + +1 + +1.32350945651545,51.6517101445808 +1.3300970779706,51.7414611100393 +1.47464857037462,51.73727179361 +1.46777634353476,51.6475342115437 +1.32350945651545,51.6517101445808 + + + + + +TM30 +#labelStyle + +1.39901542014845,51.6945210015761 + + + + +TM31 + +Small Square TM31 Boundry Box +#Line2 + + +1 + +1.33009773851161,51.7414700859344 +1.33671969498354,51.8312190700284 +1.48155729646716,51.8270163160425 +1.47464925945262,51.737280768164 +1.33009773851161,51.7414700859344 + + + + + +TM31 +#labelStyle + +1.40576357142863,51.784273317065 + + + + +TM32 + +Small Square TM32 Boundry Box +#Line2 + + +1 + +1.33672035897023,51.8312280457252 +1.34337688761714,51.9209750452357 +1.48850208358701,51.9167588004832 +1.48155798913886,51.8270252903929 +1.33672035897023,51.8312280457252 + + + + + +TM32 +#labelStyle + +1.41254692001465,51.8740236231493 + + + + +TM33 + +Small Square TM33 Boundry Box +#Line2 + + +1 + +1.34337755507332,51.9209840207339 +1.35006889530146,52.0107290324151 +1.49548318136068,52.0064992433006 +1.48850277987725,51.9167677746296 +1.34337755507332,51.9209840207339 + + + + + +TM33 +#labelStyle + +1.41936570928774,51.9637719164066 + + + + +TM34 + +Small Square TM34 Boundry Box +#Line2 + + +1 + +1.35006956625119,52.0107380077143 +1.35679595974125,52.1004810282931 +1.50250084178526,52.0962376408325 +1.49548388129455,52.0065082172427 +1.35006956625119,52.0107380077143 + + + + + +TM34 +#labelStyle + +1.42622018493824,52.0535181933856 + + + + +TM35 + +Small Square TM35 Boundry Box +#Line2 + + +1 + +1.35679663420882,52.100490003393 +1.36355832494277,52.1902310295681 +1.50955531925626,52.185973989385 +1.50250154538808,52.0962466145699 +1.35679663420882,52.100490003393 + + + + + +TM35 +#labelStyle + +1.43311059499282,52.1432624506057 + + + + +TM36 + +Small Square TM36 Boundry Box +#Line2 + + +1 + +1.3635590029527,52.1902400044684 +1.37035623724097,52.2799790329104 +1.51664687059601,52.2757082852322 +1.50955602655359,52.1859829629173 +1.3635590029527,52.1902400044684 + + + + + +TM36 +#labelStyle + +1.44003718984199,52.233004684556 + + + + +TM37 + +Small Square TM37 Boundry Box +#Line2 + + +1 + +1.37035691881801,52.2799880076107 +1.37718994532705,52.3697250349611 +1.52377575508232,52.3654405246155 +1.51664758161365,52.275717258559 +1.37035691881801,52.2799880076107 + + + + + +TM37 +#labelStyle + +1.44700022226808,52.3227448916954 + + + + +TM38 + +Small Square TM38 Boundry Box +#Line2 + + +1 + +1.37719063049618,52.3697340094611 +1.38405970027644,52.4594690323319 +1.53094223447762,52.4551707037431 +1.52377646984631,52.3654494977365 +1.37719063049618,52.3697340094611 + + + + + +TM38 +#labelStyle + +1.4539999474736,52.4124830684516 + + + + +TM39 + +Small Square TM39 Boundry Box +#Line2 + + +1 + +1.3840603890629,52.4594780066313 +1.39096575557718,52.5492110216048 +1.53814657305856,52.5448988187895 +1.53094295301429,52.4551796766579 +1.3840603890629,52.4594780066313 + + + + + +TM39 +#labelStyle + +1.46103662310996,52.5022192112209 + + + + +TM40 + +Small Square TM40 Boundry Box +#Line2 + + +1 + +1.46779076991213,51.6475337850588 +1.47466302520329,51.7372713657584 +1.61917870519346,51.7329045407039 +1.61202208944237,51.6431809078676 +1.46779076991213,51.6475337850588 + + + + + +TM40 +#labelStyle + +1.54342121793225,51.6902493209154 + + + + +TM41 + +Small Square TM41 Boundry Box +#Line2 + + +1 + +1.47466371428414,51.7372803403123 +1.4815717798974,51.8270158868187 +1.62637332170238,51.8226350574775 +1.61917942278668,51.7329135138601 +1.47466371428414,51.7372803403123 + + + + + +TM41 +#labelStyle + +1.55045464624882,51.7799879410118 + + + + +TM42 + +Small Square TM42 Boundry Box +#Line2 + + +1 + +1.48157247257197,51.827024861169 +1.48851659576726,51.9167583698817 +1.63360548245091,51.9123634808252 +1.62637404303712,51.8226440304245 +1.48157247257197,51.827024861169 + + + + + +TM42 +#labelStyle + +1.55752475121124,51.8697244975732 + + + + +TM43 + +Small Square TM43 Boundry Box +#Line2 + + +1 + +1.48851729206039,51.916767344028 +1.49549772244041,52.006498811316 +1.64087544723552,52.0020898067146 +1.63360620755302,51.9123724535627 +1.48851729206039,51.916767344028 + + + + + +TM43 +#labelStyle + +1.56463178633719,51.9594589867858 + + + + +TM44 + +Small Square TM44 Boundry Box +#Line2 + + +1 + +1.49549842237718,52.0065077852579 +1.50251541191494,52.0962372074592 +1.64818347831871,52.0918140310787 +1.64087617613111,52.0020987792422 +1.49549842237718,52.0065077852579 + + + + + +TM44 +#labelStyle + +1.57177600754856,52.0491914048035 + + + + +TM45 + +Small Square TM45 Boundry Box +#Line2 + + +1 + +1.50251611552067,52.0962461811964 +1.50956991858743,52.1859735546175 +1.65552984045799,52.181536149815 +1.64818421103413,52.0918230033959 +1.50251611552067,52.0962461811964 + + + + + +TM45 +#labelStyle + +1.57895767319978,52.1389217477468 + + + + +TM46 + +Small Square TM46 Boundry Box +#Line2 + + +1 + +1.50957062588768,52.1859825281497 +1.51666149928123,52.2757078490649 +1.66291480093539,52.2712561587853 +1.65553057701984,52.1815451219215 +1.50957062588768,52.1859825281497 + + + + + +TM46 +#labelStyle + +1.58617704410649,52.2286500117026 + + + + +TM47 + +Small Square TM47 Boundry Box +#Line2 + + +1 + +1.51666221030181,52.2757168223916 +1.52379041327522,52.3654400870428 +1.67033862958726,52.3609740538145 +1.66291554137053,52.2712651306805 +1.51666221030181,52.2757168223916 + + + + + +TM47 +#labelStyle + +1.59343438357462,52.3183761927236 + + + + +TM48 + +Small Square TM48 Boundry Box +#Line2 + + +1 + +1.52379112804217,52.3654490601636 +1.5309569223329,52.4551702647593 +1.67780159883457,52.4506898306909 +1.67033937392279,52.3609830254982 +1.52379112804217,52.3654490601636 + + + + + +TM48 +#labelStyle + +1.60072995742988,52.4081002868275 + + + + +TM49 + +Small Square TM49 Boundry Box +#Line2 + + +1 + +1.53095764087254,52.4551792376739 +1.53816129073199,52.5448983783889 +1.68530398371367,52.5404034851646 +1.67780234709787,52.4506988021625 +1.53095764087254,52.4551792376739 + + + + + +TM49 +#labelStyle + +1.60806403404768,52.4978222899969 + + + + +TM50 + +Small Square TM50 Boundry Box +#Line2 + + +1 + +1.61203651218943,51.6431804636917 +1.61919315636683,51.7329040951048 +1.76367155095665,51.7283598657361 +1.75623080122424,51.6386507459991 +1.61203651218943,51.6431804636917 + + + + + +TM50 +#labelStyle + +1.68779058803783,51.6858004478655 + + + + +TM51 + +Small Square TM51 Boundry Box +#Line2 + + +1 + +1.61919387396291,51.7329130682609 +1.6263878014521,51.8226346104495 +1.77115180051749,51.8180758107279 +1.76367229703948,51.7283688374379 +1.61919387396291,51.7329130682609 + + + + + +TM51 +#labelStyle + +1.69510904224406,51.7755248072132 + + + + +TM52 + +Small Square TM52 Boundry Box +#Line2 + + +1 + +1.6263885227897,51.8226435833964 +1.63361999092517,51.9123630323627 +1.77867107509285,51.9077896046472 +1.77115255048942,51.8180847822149 +1.6263885227897,51.8226435833964 + + + + + +TM52 +#labelStyle + +1.7024656500598,51.8652470466875 + + + + +TM53 + +Small Square TM53 Boundry Box +#Line2 + + +1 + +1.63362071603016,51.9123720051001 +1.64088998458353,52.0020893568119 +1.78622964462054,51.9975012430446 +1.77867182898073,51.9077985759188 +1.63362071603016,51.9123720051001 + + + + + +TM53 +#labelStyle + +1.70986067511126,51.9549671620678 + + + + +TM54 + +Small Square TM54 Boundry Box +#Line2 + + +1 + +1.64089071348202,52.0020983293393 +1.64819804469072,52.09181357973 +1.79382778159942,52.0872107214323 +1.7862304024515,51.9975102141005 +1.64089071348202,52.0020983293393 + + + + + +TM54 +#labelStyle + +1.71729438352362,52.0446851490968 + + + + +TM55 + +Small Square TM55 Boundry Box +#Line2 + + +1 + +1.64819877740905,52.0918225520471 +1.65554443600528,52.1815356970146 +1.80146576111959,52.1769180352833 +1.79382854340084,52.087219692272 +1.64819877740905,52.0918225520471 + + + + + +TM55 +#labelStyle + +1.7247670439504,52.1344010034805 + + + + +TM56 + +Small Square TM56 Boundry Box +#Line2 + + +1 + +1.65554517257005,52.1815446691209 +1.66292942581028,52.2712557045273 +1.80914386089289,52.2666231800306 +1.8014665269191,52.1769270059063 +1.65554517257005,52.1815446691209 + + + + + +TM56 +#labelStyle + +1.73227892760328,52.2241147208872 + + + + +TM57 + +Small Square TM57 Boundry Box +#Line2 + + +1 + +1.66293016624835,52.2712646764224 +1.67035328394311,52.3609735980931 +1.81686236128393,52.3563261510667 +1.8091446307184,52.2666321504365 +1.66293016624835,52.2712646764224 + + + + + +TM57 +#labelStyle + +1.73983030828226,52.3138262969472 + + + + +TM58 + +Small Square TM58 Boundry Box +#Line2 + + +1 + +1.6703540282816,52.3609825697766 +1.67781628282584,52.4506893735001 +1.82462154534151,52.446026943743 +1.81686313516361,52.356335121255 +1.6703540282816,52.3609825697766 + + + + + +TM58 +#labelStyle + +1.74742146240635,52.4035357272517 + + + + +TM59 + +Small Square TM59 Boundry Box +#Line2 + + +1 + +1.67781703109211,52.4506983449716 +1.68531869749585,52.5404030264985 +1.83242169883052,52.5357255533688 +1.82462232330381,52.4460359137132 +1.67781703109211,52.4506983449716 + + + + + +TM59 +#labelStyle + +1.75505266904464,52.4932430073525 + + + + +TM60 + +Small Square TM60 Boundry Box +#Line2 + + +1 + +1.75624522019481,51.6386502841426 +1.76368599832754,51.7283594024001 +1.908125636938,51.7236378772136 +1.90040101810752,51.6339438337608 +1.75624522019481,51.6386502841426 + + + + + +TM60 +#labelStyle + +1.83212206351849,51.6811744885058 + + + + +TM61 + +Small Square TM61 Boundry Box +#Line2 + + +1 + +1.76368674441322,51.7283683741019 +1.77116627643848,51.8180753459066 +1.91589125213907,51.8133386849916 +1.90812641148383,51.7236468474048 +1.76368674441322,51.7283683741019 + + + + + +TM61 +#labelStyle + +1.83972528245289,51.7708840224229 + + + + +TM62 + +Small Square TM62 Boundry Box +#Line2 + + +1 + +1.77116702641326,51.8180843173934 +1.77868557971189,51.9077891383345 +1.92369737059822,51.9030372818435 +1.91589203072131,51.8133476549619 +1.77116702641326,51.8180843173934 + + + + + +TM62 +#labelStyle + +1.84736812949042,51.8605913779263 + + + + +TM63 + +Small Square TM63 Boundry Box +#Line2 + + +1 + +1.77868633360265,51.907798109606 +1.78624417808659,51.9975007752346 +1.93154427236483,51.9927336628875 +1.92369815324474,51.9030462515924 +1.77868633360265,51.907798109606 + + + + + +TM63 +#labelStyle + +1.8550508783369,51.9502965503727 + + + + +TM64 + +Small Square TM64 Boundry Box +#Line2 + + +1 + +1.78624493592044,51.9975097462903 +1.79384234406248,52.0872102521191 +1.93943224014407,52.0824278231991 +1.93154505910378,51.9927426324146 +1.78624493592044,51.9975097462903 + + + + + +TM64 +#labelStyle + +1.8627738052914,52.0399995350781 + + + + +TM65 + +Small Square TM65 Boundry Box +#Line2 + + +1 + +1.79384310586681,52.0872192229586 +1.80148035273067,52.1769175644609 +1.94736155932801,52.1721197578108 +1.93943303100385,52.082436792504 +1.79384310586681,52.0872192229586 + + + + + +TM65 +#labelStyle + +1.87053718927675,52.1297003273178 + + + + +TM66 + +Small Square TM66 Boundry Box +#Line2 + + +1 + +1.80148111853311,52.1769265350837 +1.80915848180406,52.2666227076929 +1.95533251802733,52.2618094617108 +1.94736235433729,52.1721287268928 +1.80148111853311,52.1769265350837 + + + + + +TM66 +#labelStyle + +1.87834131187045,52.2193989223256 + + + + +TM67 + +Small Square TM67 Boundry Box +#Line2 + + +1 + +1.80915925163251,52.2666316780987 +1.8168770116483,52.3563256772077 +1.96334540710348,52.3514969298425 +1.95533331721506,52.2618184305694 +1.80915925163251,52.2666316780987 + + + + + +TM67 +#labelStyle + +1.88618645733594,52.3090953152928 + + + + +TM68 + +Small Square TM68 Boundry Box +#Line2 + + +1 + +1.81687778553093,52.3563346473958 +1.82463622531325,52.4460264683564 +1.97140052020117,52.4411821571042 +1.96334621049888,52.3515058984774 +1.81687778553093,52.3563346473958 + + + + + +TM68 +#labelStyle + +1.89407291265445,52.3987895013679 + + + + +TM69 + +Small Square TM69 Boundry Box +#Line2 + + +1 + +1.82463700327852,52.4460354383265 +1.83243640856487,52.5357250764486 +1.97949815378152,52.5308651383479 +1.97140132783376,52.4411911255147 +1.82463700327852,52.4460354383265 + + + + + +TM69 +#labelStyle + +1.9020009675572,52.4884814756556 + + + + +TM70 + +Small Square TM70 Boundry Box +#Line2 + + +1 + +1.90041543315564,51.6339433542348 +1.90814008035944,51.7236373961519 +2.05253949491183,51.7187386878209 +2.044531281791,51.6290602831266 +1.90041543315564,51.6339433542348 + + + + + +TM70 +#labelStyle + +1.97641417986752,51.6763715530841 + + + + +TM71 + +Small Square TM71 Boundry Box +#Line2 + + +1 + +1.90814085490812,51.7236463663429 +1.91590572408338,51.8133382023879 +2.06059019832351,51.8084237936696 +2.05254029789304,51.718747656445 +1.90814085490812,51.7236463663429 + + + + + +TM71 +#labelStyle + +1.98430189238233,51.7660656975893 + + + + +TM72 + +Small Square TM72 Boundry Box +#Line2 + + +1 + +1.91590650266848,51.8133471723581 +1.92371187121307,51.9030367976917 +2.06868288061187,51.8981066265382 +2.06059100548819,51.8084327620666 +1.91590650266848,51.8133471723581 + + + + + +TM72 +#labelStyle + +1.99223070493066,51.8557576029448 + + + + +TM73 + +Small Square TM73 Boundry Box +#Line2 + + +1 + +1.92371265386247,51.9030457674405 +1.93155880179895,51.9927331771815 +2.07681783190715,51.9877871810968 +2.06868369198891,51.8981155947077 +1.92371265386247,51.9030457674405 + + + + + +TM73 +#labelStyle + +2.00020090126787,51.9454472640687 + + + + +TM74 + +Small Square TM74 Boundry Box +#Line2 + + +1 + +1.93155958854079,51.9927421467085 +1.93944679854717,52.0824273359328 +2.08499534508952,52.0774654519686 +2.07681864752569,51.9877961490381 +1.93155958854079,51.9927421467085 + + + + + +TM74 +#labelStyle + +2.00821276783648,52.0351346758347 + + + + +TM75 + +Small Square TM75 Boundry Box +#Line2 + + +1 + +1.93944758940985,52.0824363052375 +1.94737614685083,52.1721192689779 +2.09321571582137,52.1671414337292 +2.08499616497898,52.0774744196813 +1.93944758940985,52.0824363052375 + + + + + +TM75 +#labelStyle + +2.01626659379773,52.1248198330717 + + + + +TM76 + +Small Square TM76 Boundry Box +#Line2 + + +1 + +1.94737694186303,52.1721282380597 +1.95534713482168,52.2618089713049 +2.10147924258013,52.2568151209062 +2.09321654001146,52.1671504012128 +1.94737694186303,52.1721282380597 + + + + + +TM76 +#labelStyle + +2.02436267106357,52.2145027305626 + + + + +TM77 + +Small Square TM77 Boundry Box +#Line2 + + +1 + +1.95534793401234,52.2618179401634 +1.96336005332218,52.3514964378575 +2.10978622669148,52.3464865079779 +2.10148007110085,52.25682408816 +1.95534793401234,52.2618179401634 + + + + + +TM77 +#labelStyle + +2.03250129432914,52.3041833630437 + + + + +TM78 + +Small Square TM78 Boundry Box +#Line2 + + +1 + +1.96336085672054,52.3515054064922 +1.97141519599814,52.4411816635336 +2.11813697236305,52.4361555893729 +2.10978705957309,52.3464954750014 +1.96336085672054,52.3515054064922 + + + + + +TM78 +#labelStyle + +2.04068276110563,52.3938617252044 + + + + +TM79 + +Small Square TM79 Boundry Box +#Line2 + + +1 + +1.97141600363369,52.4411906319439 +1.97951285931171,52.5308646431852 +2.12653178671862,52.5258223594692 +2.11813780963612,52.4361645561656 +1.97141600363369,52.4411906319439 + + + + + +TM79 +#labelStyle + +2.04890737175372,52.4835378116859 + + + + +TM80 + +Small Square TM80 Boundry Box +#Line2 + + +1 + +2.04454569277096,51.6290597859426 +2.05255393423715,51.7187381890449 +2.19691165924535,51.7136624144104 +2.1886201365364,51.6240002102125 +2.04454569277096,51.6290597859426 + + + + + +TM80 +#labelStyle + +2.12066547511021,51.6713917560079 + + + + +TM81 + +Small Square TM81 Boundry Box +#Line2 + + +1 + +2.0525547372212,51.7187471576688 +2.06060466614344,51.8084232932952 +2.20524716345041,51.8033312543571 +2.19691249063334,51.713671381411 +2.0525547372212,51.7187471576688 + + + + + +TM81 +#labelStyle + +2.12883740010105,51.7610699478466 + + + + +TM82 + +Small Square TM82 Boundry Box +#Line2 + + +1 + +2.06060547331098,51.808432261692 +2.06869737707384,51.8981061245591 +2.21362611943271,51.8929977570759 +2.20524799916866,51.8033402211243 +2.06060547331098,51.808432261692 + + + + + +TM82 +#labelStyle + +2.13705189439974,51.85074583761 + + + + +TM83 + +Small Square TM83 Boundry Box +#Line2 + + +1 + +2.06869818845375,51.8981150927284 +2.0768323571596,51.9877866775065 +2.22204882737143,51.9826619167731 +2.2136269595111,51.8930067236092 +2.06869818845375,51.8981150927284 + + + + + +TM83 +#labelStyle + +2.14530925178007,51.9404194197624 + + + + +TM84 + +Small Square TM84 Boundry Box +#Line2 + + +1 + +2.07683317278102,51.9877956454477 +2.08500989928189,52.0774649467608 +2.23051559028946,52.0723237276036 +2.22204967184012,51.9826708830717 +2.07683317278102,51.9877956454477 + + + + + +TM84 +#labelStyle + +2.15360976879645,52.0300906887193 + + + + +TM85 + +Small Square TM85 Boundry Box +#Line2 + + +1 + +2.08501071917425,52.0774739144734 +2.09323029910415,52.1671409268976 +2.23902671408675,52.161983183671 +2.23051643917889,52.0723326936671 +2.08501071917425,52.0774739144734 + + + + + +TM85 +#labelStyle + +2.16195374481652,52.1197596388472 + + + + +TM86 + +Small Square TM86 Boundry Box +#Line2 + + +1 + +2.09323112329715,52.1671498943809 +2.10149385510482,52.2568146124441 +2.24758250757422,52.2516402790256 +2.23902756742767,52.1619921494986 +2.09323112329715,52.1671498943809 + + + + + +TM86 +#labelStyle + +2.17034148205428,52.2094262644623 + + + + +TM87 + +Small Square TM87 Boundry Box +#Line2 + + +1 + +2.10149468362846,52.2568235796978 +2.10980086861063,52.3464859978788 +2.25618328250807,52.3412950076645 +2.24758336539764,52.2516492446169 +2.10149468362846,52.2568235796978 + + + + + +TM87 +#labelStyle + +2.17877328560362,52.29909055983 + + + + +TM88 + +Small Square TM88 Boundry Box +#Line2 + + +1 + +2.10980170149519,52.3464949649022 +2.11815164383027,52.4361550776302 +2.26482935362465,52.4309473635306 +2.25618414484533,52.3413039730188 +2.10980170149519,52.3464949649022 + + + + + +TM88 +#labelStyle + +2.18724946347233,52.3887525191641 + + + + +TM89 + +Small Square TM89 Boundry Box +#Line2 + + +1 + +2.11815248110632,52.4361640444227 +2.1265464878886,52.5258218460763 +2.27352103867577,52.5205973405115 +2.26483022050737,52.4309563286473 +2.11815248110632,52.4361640444227 + + + + + +TM89 +#labelStyle + +2.19577032661666,52.478412136626 + + + + +TM90 + +Small Square TM90 Boundry Box +#Line2 + + +1 + +2.18863454330276,51.6239996953821 +2.1969260943281,51.7136618979319 +2.34124066699055,51.7084091779926 +2.33266612925929,51.6187637352669 +2.18863454330276,51.6239996953821 + + + + + +TM90 +#labelStyle + +2.26487448989546,51.6662352158348 + + + + +TM91 + +Small Square TM91 Boundry Box +#Line2 + + +1 + +2.19692692571892,51.7136708649324 +2.20526162699854,51.8033307362239 +2.34986067461558,51.7980611888338 +2.34124152675571,51.7084181433136 +2.19692692571892,51.7136708649324 + + + + + +TM91 +#labelStyle + +2.27333033633199,51.7558968925051 + + + + +TM92 + +Small Square TM92 Boundry Box +#Line2 + + +1 + +2.20526246271964,51.803339702991 +2.21364061159336,51.8929972372814 +2.35852560410765,51.8877107960119 +2.34986153885752,51.7980701539148 +2.20526246271964,51.803339702991 + + + + + +TM92 +#labelStyle + +2.28183021860224,51.8455562019916 + + + + +TM93 + +Small Square TM93 Boundry Box +#Line2 + + +1 + +2.21364145167462,51.8930062038145 +2.22206334829276,51.9826613953107 +2.36723576566195,51.977357993254 +2.35852647285723,51.8877197608523 +2.21364145167462,51.8930062038145 + + + + + +TM93 +#labelStyle + +2.29037444046627,51.9352131382892 + + + + +TM94 + +Small Square TM94 Boundry Box +#Line2 + + +1 + +2.22206419276433,51.9826703616091 +2.23053014012063,52.0723232044668 +2.37599147241069,52.0670027742315 +2.36723663895035,51.977366957853 +2.22206419276433,51.9826703616091 + + + + + +TM94 +#labelStyle + +2.29896330855774,52.0248676953398 + + + + +TM95 + +Small Square TM95 Boundry Box +#Line2 + + +1 + +2.23053098901297,52.07233217053 +2.23904129297796,52.1619826588529 +2.38479304045752,52.1566451325593 +2.37599235026937,52.0670117385885 +2.23053098901297,52.07233217053 + + + + + +TM95 +#labelStyle + +2.30759713241764,52.1145198670317 + + + + +TM96 + +Small Square TM96 Boundry Box +#Line2 + + +1 + +2.23904214632179,52.1619916246804 +2.24759711567668,52.2516397525196 +2.3936407889125,52.2462850617954 +2.38479392291824,52.1566540966738 +2.23904214632179,52.1619916246804 + + + + + +TM96 +#labelStyle + +2.31627622452841,52.2041696471985 + + + + +TM97 + +Small Square TM97 Boundry Box +#Line2 + + +1 + +2.24759797350304,52.2516487181107 +2.25619791997406,52.3412944794639 +2.40253503992753,52.3359225554394 +2.39364167600731,52.2462940256667 +2.24759797350304,52.2516487181107 + + + + + +TM97 +#labelStyle + +2.32500090034869,52.2938170296187 + + + + +TM98 + +Small Square TM98 Boundry Box +#Line2 + + +1 + +2.25619878231426,52.341303444818 +2.26484402060747,52.4309468336284 +2.41147611873233,52.4255576069321 +2.40253593168881,52.3359315190668 +2.25619878231426,52.341303444818 + + + + + +TM98 +#labelStyle + +2.33377147834834,52.3834620080142 + + + + +TM99 + +Small Square TM99 Boundry Box +#Line2 + + +1 + +2.26484488749315,52.430955798745 +2.27353573532979,52.5205968089009 +2.4204643536709,52.5151902096542 +2.41147701519275,52.4255665703149 +2.26484488749315,52.430955798745 + + + + + +TM99 +#labelStyle + +2.34258828004421,52.4731045760503 + + + + + +TR + +Large Square TR Boundry Box +#Line1 + + +1 + +0.834737834760297,50.7651088858566 +0.890466183092299,51.6631674982546 +2.33266527394032,51.6187547697064 +2.24930036314578,50.7220891257195 +0.834737834760297,50.7651088858566 + + + + + +TR00 + +Small Square TR00 Boundry Box +#Line2 + + +1 + +0.834737834760297,50.7651088858566 +0.840182176643934,50.854914857939 +0.982044203835824,50.8513735010038 +0.976328857992937,50.7615787710899 +0.834737834760297,50.7651088858566 + + + + + +TR00 +#labelStyle + +0.908330634680848,50.8082700448278 + + + + +TR01 + +Small Square TR01 Boundry Box +#Line2 + + +1 + +0.840182722526195,50.8549238393436 +0.845654996577226,50.9447279961038 +0.987789439719193,50.9411753528673 +0.982044776890286,50.851382481282 +0.840182722526195,50.8549238393436 + + + + + +TR01 +#labelStyle + +0.913925365321064,50.8980785261497 + + + + +TR02 + +Small Square TR02 Boundry Box +#Line2 + + +1 + +0.845655545262369,50.9447369773268 +0.851155939767427,51.0345393167477 +0.99356419309283,51.0309753438941 +0.987790015715494,50.9411843329595 +0.845655545262369,50.9447369773268 + + + + + +TR02 +#labelStyle + +0.919548819951754,50.9878851696367 + + + + +TR03 + +Small Square TR03 Boundry Box +#Line2 + + +1 + +0.851156491274371,51.0345482977888 +0.856685196267647,51.1243488178396 +0.99936866337199,51.1207734717455 +0.993564772050821,51.0309843238 +0.851156491274371,51.0345482977888 + + + + + +TR03 +#labelStyle + +0.925201192412515,51.0776899731134 + + + + +TR04 + +Small Square TR04 Boundry Box +#Line2 + + +1 + +0.856685750615483,51.1243577986986 +0.862242957898831,51.2141564973343 +1.00520305182619,51.210569734066 +0.999369245311706,51.120782451465 +0.856685750615483,51.1243577986986 + + + + + +TR04 +#labelStyle + +0.930882678343705,51.167492934389 + + + + +TR05 + +Small Square TR05 Boundry Box +#Line2 + + +1 + +0.862243515106833,51.2141654780111 +0.867829418270136,51.3039623531726 +1.01106756160056,51.3003641284831 +1.00520363676785,51.2105787135989 +0.862243515106833,51.2141654780111 + + + + + +TR05 +#labelStyle + +0.936593475207169,51.2572940512573 + + + + +TR06 + +Small Square TR06 Boundry Box +#Line2 + + +1 + +0.867829978357752,51.3039713336669 +0.873444772799591,51.3937663832805 +1.0169623977375,51.3901566526066 +1.01106814956457,51.3003731078291 +0.867829978357752,51.3039713336669 + + + + + +TR06 +#labelStyle + +0.942333782307251,51.3470933214962 + + + + +TR07 + +Small Square TR07 Boundry Box +#Line2 + + +1 + +0.873445335786458,51.3937753635921 +0.879089218735055,51.4835685855689 +1.02288776719869,51.4799473040283 +1.01696298874447,51.3901656317654 +0.873445335786458,51.3937753635921 + + + + + +TR07 +#labelStyle + +0.948103800812116,51.4368907428672 + + + + +TR08 + +Small Square TR08 Boundry Box +#Line2 + + +1 + +0.879089784640986,51.4835775656977 +0.884762955175449,51.5733689579336 +1.02884387888729,51.5697360803221 +1.0228883612694,51.4799562829997 +0.879089784640986,51.4835775656977 + + + + + +TR08 +#labelStyle + +0.953903733775341,51.5266863131155 + + + + +TR09 + +Small Square TR09 Boundry Box +#Line2 + + +1 + +0.884763524020449,51.5733779378793 +0.890466183092299,51.6631674982546 +1.03483094367059,51.6595229790428 +1.02884447604274,51.5697450591058 +0.884763524020449,51.5733779378793 + + + + + +TR09 +#labelStyle + +0.959733786157835,51.616480029969 + + + + +TR10 + +Small Square TR10 Boundry Box +#Line2 + + +1 + +0.97634301707791,50.7615784094566 +0.982058390014269,50.8513731382189 +1.12389109802576,50.8476595510898 +1.11790491686699,50.7578766094438 +0.97634301707791,50.7615784094566 + + + + + +TR10 +#labelStyle + +1.05005673395763,50.804647953734 + + + + +TR11 + +Small Square TR11 Boundry Box +#Line2 + + +1 + +0.982058963071447,50.851382118497 +0.987803653132231,50.9411749889263 +1.12990857952525,50.9374495684261 +1.12389169823548,50.8476685301868 +0.982058963071447,50.851382118497 + + + + + +TR11 +#labelStyle + +1.05592311703213,50.8944448960298 + + + + +TR12 + +Small Square TR12 Boundry Box +#Line2 + + +1 + +0.987804229131263,50.9411839690183 +0.99357843387981,51.0309749787925 +1.13595697105469,51.0272376795236 +1.12990918281559,50.9374585473325 +0.987804229131263,50.9411839690183 + + + + + +TR12 +#labelStyle + +1.06181961292051,50.9842399562855 + + + + +TR13 + +Small Square TR13 Boundry Box +#Line2 + + +1 + +0.993579012840546,51.0309839586984 +0.999382931673195,51.1207731054789 +1.14203648137135,51.1170238817215 +1.13595757744644,51.0272466582393 +0.993579012840546,51.0309839586984 + + + + + +TR13 +#labelStyle + +1.06774642477227,51.0740331320119 + + + + +TR14 + +Small Square TR14 Boundry Box +#Line2 + + +1 + +0.999383513615669,51.1207820851984 +1.00521734778284,51.21056936663 +1.1481473211729,51.2068081723389 +1.14203709088549,51.1170328602461 +0.999383513615669,51.1207820851984 + + + + + +TR14 +#labelStyle + +1.07370375762348,51.1638244207019 + + + + +TR15 + +Small Square TR15 Boundry Box +#Line2 + + +1 + +1.00521793272728,51.2105783461627 +1.01108188535484,51.300363759873 +1.15428970311973,51.2965905486751 +1.14814793383058,51.2068171506723 +1.00521793272728,51.2105783461627 + + + + + +TR15 +#labelStyle + +1.07969181841843,51.25361381983 + + + + +TR16 + +Small Square TR16 Boundry Box +#Line2 + + +1 + +1.01108247332164,51.3003727392189 +1.01697674943255,51.3901562828179 +1.16046384185763,51.3863710080086 +1.15429031894232,51.2965995268169 +1.01108247332164,51.3003727392189 + + + + + +TR16 +#labelStyle + +1.08571081603171,51.3434013268517 + + + + +TR17 + +Small Square TR17 Boundry Box +#Line2 + + +1 + +1.01697734044232,51.3901652619765 +1.02290214697862,51.4799469330564 +1.16666995404077,51.4761495475971 +1.1604644608667,51.3863799859586 +1.01697734044232,51.3901652619765 + + + + + +TR17 +#labelStyle + +1.0917609612905,51.4331869392036 + + + + +TR18 + +Small Square TR18 Boundry Box +#Line2 + + +1 + +1.02290274105215,51.4799559120277 +1.0288582868972,51.5697357081623 +1.17290825835498,51.565926164677 +1.16667057625809,51.476158525355 +1.02290274105215,51.4799559120277 + + + + + +TR18 +#labelStyle + +1.09784246699718,51.5229706543024 + + + + +TR19 + +Small Square TR19 Boundry Box +#Line2 + + +1 + +1.02885888405547,51.569744686946 +1.03484538005654,51.6595226056906 +1.17917897554137,51.6557008564627 +1.17290888380252,51.5659351422425 +1.02885888405547,51.569744686946 + + + + + +TR19 +#labelStyle + +1.10395554795227,51.6127524695449 + + + + +TR20 + +Small Square TR20 Boundry Box +#Line2 + + +1 + +1.11791907297059,50.7578762306445 +1.1239052812028,50.8476591710845 +1.26570728689441,50.8437734398896 +1.25945047534728,50.7540028309822 +1.11791907297059,50.7578762306445 + + + + + +TR20 +#labelStyle + +1.19175291957513,50.8008539303989 + + + + +TR21 + +Small Square TR21 Boundry Box +#Line2 + + +1 + +1.12390588141523,50.8476681501813 +1.12992278991666,50.9374491872099 +1.27199680716545,50.9335510761105 +1.26570791423878,50.8437824177508 +1.12390588141523,50.8476681501813 + + + + + +TR21 +#labelStyle + +1.19789075379385,50.8906387878437 + + + + +TR22 + +Small Square TR22 Boundry Box +#Line2 + + +1 + +1.12992339320973,50.9374581661162 +1.13597120879963,51.027237297092 +1.27831862808778,51.0233267586133 +1.27199743772906,50.9335600537765 +1.12992339320973,50.9374581661162 + + + + + +TR22 +#labelStyle + +1.20406008778472,50.9804217169704 + + + + +TR23 + +Small Square TR23 Boundry Box +#Line2 + + +1 + +1.13597181519413,51.0272462758076 +1.14205074660992,51.1170234980697 +1.28467296773862,51.1131004844 +1.27831926189232,51.0233357360838 +1.13597181519413,51.0272462758076 + + + + + +TR23 +#labelStyle + +1.21026113398571,51.0702027149619 + + + + +TR24 + +Small Square TR24 Boundry Box +#Line2 + + +1 + +1.14205135612681,51.1170324765943 +1.14816161404613,51.2068077874624 +1.29106004622143,51.2028722504499 +1.284673604806,51.1131094616747 +1.14205135612681,51.1170324765943 + + + + + +TR24 +#labelStyle + +1.21649410680686,51.15998177898 + + + + +TR25 + +Small Square TR25 Boundry Box +#Line2 + + +1 + +1.14816222670658,51.2068167657956 +1.1543040237696,51.296590162569 +1.29748008568922,51.2926420537191 +1.29106068657377,51.2028812275284 +1.14816222670658,51.2068167657956 + + + + + +TR25 +#labelStyle + +1.22275922265296,51.2497589061647 + + + + +TR26 + +Small Square TR26 Boundry Box +#Line2 + + +1 + +1.15430463959498,51.2965991407107 +1.16047819042708,51.3863706206681 +1.3039333103682,51.3824098911398 +1.29748072934884,51.2926510306012 +1.15430463959498,51.2965991407107 + + + + + +TR26 +#labelStyle + +1.2290566999465,51.3395340936347 + + + + +TR27 + +Small Square TR27 Boundry Box +#Line2 + + +1 + +1.16047880943896,51.386379598618 +1.16668433067372,51.4761491590175 +1.31041994658174,51.4721757596205 +1.30393395735762,51.3824188678252 +1.16047880943896,51.386379598618 + + + + + +TR27 +#labelStyle + +1.23538675915104,51.429307338486 + + + + +TR28 + +Small Square TR28 Boundry Box +#Line2 + + +1 + +1.16668495289386,51.4761581367753 +1.17292266319632,51.5659257748534 +1.3169402227747,51.5619396560447 +1.3104205969237,51.4721847361088 +1.16668495289386,51.4761581367753 + + + + + +TR28 +#labelStyle + +1.24174962279482,51.5190786377921 + + + + +TR29 + +Small Square TR29 Boundry Box +#Line2 + + +1 + +1.17292328864669,51.5659347524187 +1.17919340873698,51.6557004653902 +1.3234943695381,51.6517015772712 +1.31694087649216,51.5619486323357 +1.17292328864669,51.5659347524187 + + + + + +TR29 +#labelStyle + +1.24814551549474,51.6088479886031 + + + + +TR30 + +Small Square TR30 Boundry Box +#Line2 + + +1 + +1.25946462833219,50.7540024350256 +1.2657214669318,50.8437730426725 +1.40749138905943,50.8397152574964 +1.40096416120162,50.7499575252422 +1.25946462833219,50.7540024350256 + + + + + +TR30 +#labelStyle + +1.33341781378339,50.7968880626662 + + + + +TR31 + +Small Square TR31 Boundry Box +#Line2 + + +1 + +1.26572209427889,50.8437820205336 +1.27201101439608,50.9335506776281 +1.41405273202252,50.9294799665749 +1.40749204351696,50.8397242340674 +1.26572209427889,50.8437820205336 + + + + + +TR31 +#labelStyle + +1.33982688865248,50.8866602899814 + + + + +TR32 + +Small Square TR32 Boundry Box +#Line2 + + +1 + +1.27201164496241,50.9335596552939 +1.27833286265059,51.0233263588606 +1.42064776425497,51.019242672383 +1.41405338983767,50.9294889429457 +1.27201164496241,50.9335596552939 + + + + + +TR32 +#labelStyle + +1.34626884830227,50.9764305406327 + + + + +TR33 + +Small Square TR33 Boundry Box +#Line2 + + +1 + +1.27833349645787,51.0233353363309 +1.28468722977352,51.1131000833721 +1.427276713131,51.1090033715714 +1.42064842545039,51.0192516485533 +1.27833349645787,51.0233353363309 + + + + + +TR33 +#labelStyle + +1.35274391443685,51.0661988114603 + + + + +TR34 + +Small Square TR34 Boundry Box +#Line2 + + +1 + +1.28468786684365,51.1131090606466 +1.29107433586925,51.2028718481419 +1.43393980813652,51.1987620607647 +1.42727737772952,51.1090123475409 +1.28468786684365,51.1131090606466 + + + + + +TR34 +#labelStyle + +1.35925231081758,51.1559650992803 + + + + +TR35 + +Small Square TR35 Boundry Box +#Line2 + + +1 + +1.29107497622436,51.2028808252203 +1.29749440309174,51.292641650126 +1.44063728089351,51.288518736561 +1.4339404761612,51.198771036533 +1.29107497622436,51.2028808252203 + + + + + +TR35 +#labelStyle + +1.36579426328668,51.245729400884 + + + + +TR36 + +Small Square TR36 Boundry Box +#Line2 + + +1 + +1.29749504675414,51.292650627008 +1.30394765566815,51.3824094862567 +1.44736936518461,51.3782733955316 +1.44063795236762,51.2885277121278 +1.29749504675414,51.292650627008 + + + + + +TR36 +#labelStyle + +1.37236999979129,51.3354917130377 + + + + +TR37 + +Small Square TR37 Boundry Box +#Line2 + + +1 + +1.30394830266037,51.382418462942 +1.31043431992283,51.4721753534424 +1.45413629697809,51.4680260342202 +1.44737004013163,51.3782823708965 +1.30394830266037,51.382418462942 + + + + + +TR37 +#labelStyle + +1.37897975040769,51.4252520324823 + + + + +TR38 + +Small Square TR38 Boundry Box +#Line2 + + +1 + +1.3104349702676,51.4721843299305 +1.31695462430161,51.5619392485665 +1.4609383144532,51.5577766491426 +1.45413697542174,51.4680350093829 +1.3104349702676,51.4721843299305 + + + + + +TR38 +#labelStyle + +1.38562374736603,51.5150103559325 + + + + +TR39 + +Small Square TR39 Boundry Box +#Line2 + + +1 + +1.3169552780219,51.5619482248573 +1.32350879939649,51.6517011684877 +1.46777565802585,51.6475252367864 +1.46093899641741,51.5577856241028 +1.3169552780219,51.5619482248573 + + + + + +TR39 +#labelStyle + +1.39230222507524,51.6047666800766 + + + + +TR40 + +Small Square TR40 Boundry Box +#Line2 + + +1 + +1.40097831093071,50.7499571121375 +1.40750556581915,50.8397148430768 +1.54924202511793,50.8354850979532 +1.54244460415488,50.7457407856865 +1.40097831093071,50.7499571121375 + + + + + +TR40 +#labelStyle + +1.47505004075903,50.7927504423208 + + + + +TR41 + +Small Square TR41 Boundry Box +#Line2 + + +1 + +1.40750622027939,50.8397238196477 +1.41406693595339,50.9294795508353 +1.55607496548125,50.9252363344473 +1.54924270666619,50.8354940731794 +1.40750622027939,50.8397238196477 + + + + + +TR41 +#labelStyle + +1.48173013660287,50.8825094947982 + + + + +TR42 + +Small Square TR42 Boundry Box +#Line2 + + +1 + +1.41406759377127,50.929488527206 +1.42066199549576,51.0192422553184 +1.56294298164424,51.0149855160511 +1.55607565052532,50.9252453094682 +1.41406759377127,50.929488527206 + + + + + +TR42 +#labelStyle + +1.48844450020204,50.972266520203 + + + + +TR43 + +Small Square TR43 Boundry Box +#Line2 + + +1 + +1.42066265669392,51.0192512314886 +1.42729097182139,51.1090029531767 +1.56984631025411,51.1047326390493 +1.5629436702077,51.0149944908664 +1.42066265669392,51.0192512314886 + + + + + +TR43 +#labelStyle + +1.4951933625034,51.0620215150183 + + + + +TR44 + +Small Square TR44 Boundry Box +#Line2 + + +1 + +1.42729163642266,51.109011929146 +1.43395409441714,51.1987616410347 +1.57678519015496,51.1944776996972 +1.56984700236071,51.1047416136585 +1.42729163642266,51.109011929146 + + + + + +TR44 +#labelStyle + +1.50197695659597,51.1517744756996 + + + + +TR45 + +Small Square TR45 Boundry Box +#Line2 + + +1 + +1.43395476244459,51.1987706168028 +1.44065159490593,51.2885183154905 +1.58375986241308,51.2842206942205 +1.57678588582871,51.1944866741001 +1.43395476244459,51.1987706168028 + + + + + +TR45 +#labelStyle + +1.50879551773548,51.2415253986749 + + + + +TR46 + +Small Square TR46 Boundry Box +#Line2 + + +1 + +1.44065226638282,51.2885272910572 +1.44738370707134,51.3782729731155 +1.59077057034257,51.3739616188141 +1.58376056167819,51.2842296684165 +1.44065226638282,51.2885272910572 + + + + + +TR46 +#labelStyle + +1.51564928336935,51.3312742803433 + + + + +TR47 + +Small Square TR47 Boundry Box +#Line2 + + +1 + +1.44738438202117,51.3782819484803 +1.45415066688264,51.4680256104531 +1.59781755953129,51.4637004696424 +1.5907712732235,51.3739705928029 +1.44738438202117,51.3782819484803 + + + + + +TR47 +#labelStyle + +1.52253849316198,51.4210211170755 + + + + +TR48 + +Small Square TR48 Boundry Box +#Line2 + + +1 + +1.45415134532909,51.4680345856157 +1.46095271252002,51.5577762240194 +1.6049010778672,51.5534372428383 +1.5978182660527,51.4637094434237 +1.45415134532909,51.4680345856157 + + + + + +TR48 +#labelStyle + +1.52946338902039,51.5107659052125 + + + + +TR49 + +Small Square TR49 Boundry Box +#Line2 + + +1 + +1.46095339448705,51.5577851989795 +1.46779008440038,51.6475248103017 +1.61202137556504,51.6431719345026 +1.60490178805399,51.5534462164116 +1.46095339448705,51.5577851989795 + + + + + +TR49 +#labelStyle + +1.53642421512025,51.6005086410656 + + + + +TR50 + +Small Square TR50 Boundry Box +#Line2 + + +1 + +1.54245875049124,50.7457403554432 +1.54925619846213,50.8354846663407 +1.69095781772994,50.8310830592453 +1.68389043597156,50.7413527096964 +1.54245875049124,50.7457403554432 + + + + + +TR50 +#labelStyle + +1.61664822668842,50.7884411650814 + + + + +TR51 + +Small Square TR51 Boundry Box +#Line2 + + +1 + +1.54925688001309,50.8354936415669 +1.55608916597361,50.9252359014603 +1.69806212101303,50.9208202783224 +1.69095852634558,50.8310920330725 +1.54925688001309,50.8354936415669 + + + + + +TR51 +#labelStyle + +1.62359911467266,50.8781864986078 + + + + +TR52 + +Small Square TR52 Boundry Box +#Line2 + + +1 + +1.55608985102041,50.9252448764811 +1.56295720942332,51.0149850816843 +1.70520288445409,51.0105553888269 +1.69806283326246,50.920829251939 +1.55608985102041,50.9252448764811 + + + + + +TR52 +#labelStyle + +1.63058565126898,50.9679297525949 + + + + +TR53 + +Small Square TR53 Boundry Box +#Line2 + + +1 + +1.56295789798951,51.0149940564995 +1.56986056545937,51.1047322032975 +1.7123803539484,51.100288386663 +1.7052036003618,51.0105643622324 +1.56295789798951,51.0149940564995 + + + + + +TR53 +#labelStyle + +1.63760807664277,51.0576709231543 + + + + +TR54 + +Small Square TR54 Boundry Box +#Line2 + + +1 + +1.56986125756873,51.1047411779066 +1.57679947292681,51.194477262555 +1.71959477767297,51.1900192677021 +1.71238107353909,51.100297359857 +1.56986125756873,51.1047411779066 + + + + + +TR54 +#labelStyle + +1.6446666331861,51.1474100063666 + + + + +TR55 + +Small Square TR55 Boundry Box +#Line2 + + +1 + +1.57680016860333,51.1944862369577 +1.58377417289288,51.2842202556824 +1.72684640611283,51.2797480277826 +1.71959550097157,51.1900282406842 +1.57680016860333,51.1944862369577 + + + + + +TR55 +#labelStyle + +1.65176156554324,51.2371469982814 + + + + +TR56 + +Small Square TR56 Boundry Box +#Line2 + + +1 + +1.58377487216077,51.2842292298783 +1.59078490867261,51.3739611788749 +1.73413549208753,51.3694746627087 +1.7268471331445,51.2797570005524 +1.58377487216077,51.2842292298783 + + + + + +TR56 +#labelStyle + +1.6588931206366,51.3268818949163 + + + + +TR57 + +Small Square TR57 Boundry Box +#Line2 + + +1 + +1.59078561155633,51.3739701528635 +1.59783192585484,51.4637000282965 +1.7414622907782,51.4591991682501 +1.73413622287768,51.3694836352657 +1.59078561155633,51.3739701528635 + + + + + +TR57 +#labelStyle + +1.66606154769303,51.4166146922567 + + + + +TR58 + +Small Square TR58 Boundry Box +#Line2 + + +1 + +1.59783263237905,51.4637090020776 +1.60491547232848,51.5534368000802 +1.74882705975481,51.5489215401417 +1.74146302535246,51.459208140594 +1.59783263237905,51.4637090020776 + + + + + +TR58 +#labelStyle + +1.67326709827045,51.5063453862548 + + + + +TR59 + +Small Square TR59 Boundry Box +#Line2 + + +1 + +1.6049161825181,51.5534457736534 +1.61203579830927,51.6431714903269 +1.75623005900388,51.6386417740827 +1.74882779813906,51.5489305122721 +1.6049161825181,51.5534457736534 + + + + + +TR59 +#labelStyle + +1.68051002628488,51.5960739728294 + + + + +TR60 + +Small Square TR60 Boundry Box +#Line2 + + +1 + +1.68390457877845,50.7413522623244 +1.69097198752099,50.83108261045 +1.8326373917016,50.8265092432928 +1.82530029053801,50.7367933985634 +1.68390457877845,50.7413522623244 + + + + + +TR60 +#labelStyle + +1.7582109998506,50.7839603305932 + + + + +TR61 + +Small Square TR61 Boundry Box +#Line2 + + +1 + +1.69097269613934,50.831091584277 +1.69807631792834,50.9208198280982 +1.84001281425992,50.9162319007541 +1.83263812736038,50.8265182156666 +1.69097269613934,50.831091584277 + + + + + +TR61 +#labelStyle + +1.76543244200605,50.8736914016745 + + + + +TR62 + +Small Square TR62 Boundry Box +#Line2 + + +1 + +1.6980770301805,50.9208288017145 +1.70521710863199,51.0105549371682 +1.84742607907861,51.0059523939033 +1.84001355369024,50.9162408729118 +1.6980770301805,50.9208288017145 + + + + + +TR62 +#labelStyle + +1.7726909114289,50.9634203386969 + + + + +TR63 + +Small Square TR63 Boundry Box +#Line2 + + +1 + +1.70521782454243,51.0105639105735 +1.71239460552813,51.1002879335643 +1.85487744127515,51.0956707182497 +1.84742682230588,51.0059613658442 +1.70521782454243,51.0105639105735 + + + + + +TR63 +#labelStyle + +1.77998665747786,51.0531471373863 + + + + +TR64 + +Small Square TR64 Boundry Box +#Line2 + + +1 + +1.71239532512156,51.1002969067581 +1.71960905679472,51.190018813158 +1.86236715833326,51.1853868692667 +1.85487818832499,51.0956796899736 +1.71239532512156,51.1002969067581 + + + + + +TR64 +#labelStyle + +1.78731993182243,51.1428717934341 + + + + +TR65 + +Small Square TR65 Boundry Box +#Line2 + + +1 + +1.71960978009608,51.1900277861399 +1.7268607129177,51.2797475717874 +1.86989549013006,51.2751008423904 +1.86236790923154,51.185395840773 +1.71960978009608,51.1900277861399 + + + + + +TR65 +#labelStyle + +1.79469098846952,51.2325943024969 + + + + +TR66 + +Small Square TR66 Boundry Box +#Line2 + + +1 + +1.72686143995215,51.279756544557 +1.73414982671761,51.3694742052567 +1.87746269896367,51.3648126330195 +1.86989624490289,51.2751098136787 +1.72686143995215,51.279756544557 + + + + + +TR66 +#labelStyle + +1.80210008379027,51.322314660196 + + + + +TR67 + +Small Square TR67 Boundry Box +#Line2 + + +1 + +1.73415055751055,51.3694831778136 +1.74147665337652,51.4591987093358 +1.8850690495811,51.4545222365145 +1.8774634576374,51.3648216040893 +1.73415055751055,51.3694831778136 + + + + + +TR67 +#labelStyle + +1.80954747654731,51.4120328621165 + + + + +TR68 + +Small Square TR68 Boundry Box +#Line2 + + +1 + +1.74147738795358,51.4592076816796 +1.74884145046534,51.5489210797593 +1.89271480920664,51.5442296481969 +1.88506981218234,51.4545312073653 +1.74147738795358,51.4592076816796 + + + + + +TR68 +#labelStyle + +1.81703342792246,51.501748903807 + + + + +TR69 + +Small Square TR69 Boundry Box +#Line2 + + +1 + +1.74884218885241,51.5489300518895 +1.75624447797162,51.6386413122264 +1.9004002475705,51.6339348633492 +1.89271557576222,51.5442386188284 +1.74884218885241,51.5489300518895 + + + + + +TR69 +#labelStyle + +1.82455820154466,51.5914627807789 + + + + +TR70 + +Small Square TR70 Boundry Box +#Line2 + + +1 + +1.82531442967893,50.7367929340732 +1.8326515578021,50.826508777325 +1.97427937406802,50.8217637559425 +1.96667280394441,50.7320629574824 +1.82531442967893,50.7367929340732 + + + + + +TR70 +#labelStyle + +1.89973699069979,50.7793080424205 + + + + +TR71 + +Small Square TR71 Boundry Box +#Line2 + + +1 + +1.83265229346357,50.8265177496986 +1.84002700745985,50.916231433303 +1.98192566311845,50.9114713082469 +1.97428013674477,50.8217727268086 +1.83265229346357,50.8265177496986 + + + + + +TR71 +#labelStyle + +1.90722873994733,50.8690243082052 + + + + +TR72 + +Small Square TR72 Boundry Box +#Line2 + + +1 + +1.84002774689289,50.9162404054604 +1.84744029951608,51.0059519249631 +1.98961117419222,51.0011766384481 +1.98192642970427,50.9114802788911 +1.84002774689289,50.9162404054604 + + + + + +TR72 +#labelStyle + +1.91475889283292,50.9587383833644 + + + + +TR73 + +Small Square TR73 Boundry Box +#Line2 + + +1 + +1.84744104274608,51.0059608969039 +1.85489168908917,51.0956702478148 +1.9973361716022,51.0908797416466 +1.98961194471341,51.0011856088699 +1.84744104274608,51.0059608969039 + + + + + +TR73 +#labelStyle + +1.92232770788236,51.0484502632239 + + + + +TR74 + +Small Square TR74 Boundry Box +#Line2 + + +1 + +1.85489243614175,51.0956792195385 +1.86238143366377,51.1853863973313 +2.0051009221116,51.1805806129027 +1.99733694608532,51.0908887118454 +1.85489243614175,51.0956792195385 + + + + + +TR74 +#labelStyle + +1.92993544601616,51.1381599430713 + + + + +TR75 + +Small Square TR75 Boundry Box +#Line2 + + +1 + +1.86238218456481,51.1853953688374 +1.86990979311795,51.2751003689487 +2.01290569496215,51.2702792472362 +2.00510170058346,51.180589582878 +1.86238218456481,51.1853953688374 + + + + + +TR75 +#labelStyle + +1.93758237057692,51.2278674181559 + + + + +TR76 + +Small Square TR76 Boundry Box +#Line2 + + +1 + +1.86991054789355,51.2751093402368 +1.87747702975076,51.3648121580656 +2.02075076190252,51.3599756396253 +2.01290647744979,51.2702882169876 +1.86991054789355,51.2751093402368 + + + + + +TR76 +#labelStyle + +1.94526874735725,51.3175726836877 + + + + +TR77 + +Small Square TR77 Boundry Box +#Line2 + + +1 + +1.87747778842728,51.3648211291352 +1.88508340831019,51.4545217600425 +2.02863639721735,51.4496697850065 +2.02075154843325,51.3599846091523 +1.87747778842728,51.3648211291352 + + + + + +TR77 +#labelStyle + +1.95299484462796,51.4072757348371 + + + + +TR78 + +Small Square TR78 Boundry Box +#Line2 + + +1 + +1.88508417091422,51.4545307308932 +1.89272919602146,51.5442291702011 +2.03656287775646,51.5393616782733 +2.02863718781871,51.4496787543085 +1.88508417091422,51.4545307308932 + + + + + +TR78 +#labelStyle + +1.96076093316669,51.496976566734 + + + + +TR79 + +Small Square TR79 Boundry Box +#Line2 + + +1 + +1.89272996257986,51.5442381408323 +1.90041466261578,51.6339343838235 +2.04453048296466,51.629051314276 +2.03656367245627,51.5393706473498 +1.89272996257986,51.5442381408323 + + + + + +TR79 +#labelStyle + +1.96856728628694,51.5866751744673 + + + + +TR80 + +Small Square TR80 Boundry Box +#Line2 + + +1 + +1.96668693928309,50.7320624758845 +1.97429353634077,50.8217632728129 +2.11588239417574,50.8168467069596 +2.1080066145663,50.7271614955426 +1.96668693928309,50.7320624758845 + + + + + +TR80 +#labelStyle + +2.04122483194762,50.7744844080379 + + + + +TR81 + +Small Square TR81 Boundry Box +#Line2 + + +1 + +1.97429429902022,50.821772243679 +1.98193985246491,50.9114708235797 +2.12379928782302,50.9065386112479 +2.11588318384439,50.816855676264 +1.97429429902022,50.821772243679 + + + + + +TR81 +#labelStyle + +2.04898663212398,50.8641853263417 + + + + +TR82 + +Small Square TR82 Boundry Box +#Line2 + + +1 + +1.98194061905344,50.9114797942238 +1.98962539075024,51.0011761522374 +2.131756780834,50.9962282335961 +2.12380008153802,50.9065475803243 +1.98194061905344,50.9114797942238 + + + + + +TR82 +#labelStyle + +2.05678820994145,50.9538839954119 + + + + +TR83 + +Small Square TR83 Boundry Box +#Line2 + + +1 + +1.98962616127416,51.001185122659 +1.99735041551055,51.0908792538863 +2.13975514668919,51.0859155686816 +2.13175757862257,50.996237202444 +1.98962616127416,51.001185122659 + + + + + +TR83 +#labelStyle + +2.06462983306587,51.0435804101598 + + + + +TR84 + +Small Square TR84 Boundry Box +#Line2 + + +1 + +1.99735118999642,51.090888224085 +2.00511519351,51.180580123587 +2.14779466140319,51.1756006111375 +2.1397559485788,51.0859245373005 +1.99735118999642,51.090888224085 + + + + + +TR84 +#labelStyle + +2.07251177164122,51.1332745654551 + + + + +TR85 + +Small Square TR85 Boundry Box +#Line2 + + +1 + +2.00511597198461,51.1805890935622 +2.01291999399121,51.270278756359 +2.15587560355376,51.2652833555527 +2.14779546742158,51.175609579527 +2.00511597198461,51.1805890935622 + + + + + +TR85 +#labelStyle + +2.08043429831801,51.2229664561251 + + + + +TR86 + +Small Square TR86 Boundry Box +#Line2 + + +1 + +2.01292077648162,51.2702877261103 +2.02076508870384,51.3599751471807 +2.16399825431126,51.3549637964705 +2.1558764137289,51.265292323712 +2.01292077648162,51.2702877261103 + + + + + +TR86 +#labelStyle + +2.08839768828205,51.3126560769543 + + + + +TR87 + +Small Square TR87 Boundry Box +#Line2 + + +1 + +2.02076587523735,51.3599841167075 +2.02865075193345,51.4496692909883 +2.17216289746861,51.4446419283882 +2.16399906867142,51.3549727643992 +2.02076587523735,51.3599841167075 + + + + + +TR87 +#labelStyle + +2.0964022192837,51.4023434226834 + + + + +TR88 + +Small Square TR88 Boundry Box +#Line2 + + +1 + +2.02865154253761,51.4496782602901 +2.03657726053085,51.5393611826753 +2.18036981947147,51.5343177457566 +2.17216371604228,51.4446508960857 +2.02865154253761,51.4496782602901 + + + + + +TR88 +#labelStyle + +2.10444817166744,51.4920284880087 + + + + +TR89 + +Small Square TR89 Boundry Box +#Line2 + + +1 + +2.03657805523347,51.5393701517517 +2.04454489394179,51.6290508170922 +2.18861930944909,51.6239912429789 +2.18037064228744,51.5343267132224 +2.03657805523347,51.5393701517517 + + + + + +TR89 +#labelStyle + +2.11253582840188,51.5817112675816 + + + + +TR90 + +Small Square TR90 Boundry Box +#Line2 + + +1 + +2.10802074596669,50.7271609968482 +2.11589655248381,50.8168462066795 +2.25744508376485,50.8117582100194 +2.24930036314578,50.7220891257195 +2.10802074596669,50.7271609968482 + + + + + +TR90 +#labelStyle + +2.18267315864497,50.7694895388226 + + + + +TR91 + +Small Square TR91 Boundry Box +#Line2 + + +1 + +2.11589734215515,50.8168551759837 +2.12381347317815,50.9065381093759 +2.26563231102895,50.9014339241379 +2.25744590039843,50.8117671777079 +2.11589734215515,50.8168551759837 + + + + + +TR91 +#labelStyle + +2.19070474452945,50.859174568152 + + + + +TR92 + +Small Square TR92 Boundry Box +#Line2 + + +1 + +2.12381426689586,50.9065470784521 +2.1317709933738,50.9962277301261 +2.27386151249168,50.9911072944398 +2.2656331318459,50.9014428915922 +2.12381426689586,50.9065470784521 + + + + + +TR92 +#labelStyle + +2.19877747960798,50.9488572876039 + + + + +TR93 + +Small Square TR93 Boundry Box +#Line2 + + +1 + +2.13177179116509,50.9962366989739 +2.13976938655218,51.0859150636074 +2.28213297077254,51.0807783151651 +2.27386233752015,50.9911162616595 +2.13177179116509,50.9962366989739 + + + + + +TR93 +#labelStyle + +2.20689164065843,51.0385376916613 + + + + +TR94 + +Small Square TR94 Boundry Box +#Line2 + + +1 + +2.13977018844453,51.0859240322262 +2.14780892872883,51.1756001044531 +2.29044697110844,51.1704469805056 +2.28213380004091,51.0807872821495 +2.13977018844453,51.0859240322262 + + + + + +TR94 +#labelStyle + +2.21504750701987,51.1282157747614 + + + + +TR95 + +Small Square TR95 Boundry Box +#Line2 + + +1 + +2.14780973474997,51.1756090728423 +2.15588989848242,51.2652828472517 +2.29880380138371,51.2601132846045 +2.29044780464537,51.1704559472541 +2.14780973474997,51.1756090728423 + + + + + +TR95 +#labelStyle + +2.22324536062187,51.2178915312953 + + + + +TR96 + +Small Square TR96 Boundry Box +#Line2 + + +1 + +2.15589070866033,51.2652918154109 +2.16401257698428,51.3549632865467 +2.30720375216051,51.3497772215558 +2.29880463921811,51.2601222511166 +2.15589070866033,51.2652918154109 + + + + + +TR96 +#labelStyle + +2.2314854860143,51.3075649556073 + + + + +TR97 + +Small Square TR97 Boundry Box +#Line2 + + +1 + +2.16401339134722,51.3549722544753 +2.17217724802824,51.4446414168353 +2.31564711670971,51.4394387854031 +2.30720459432158,51.3497861878309 +2.16401339134722,51.3549722544753 + + + + + +TR97 +#labelStyle + +2.23976817039743,51.3972360419939 + + + + +TR98 + +Small Square TR98 Boundry Box +#Line2 + + +1 + +2.17217806660471,51.4446503845327 +2.18038419806096,51.5343172325683 +2.32413419104215,51.5290979701396 +2.31564796322692,51.4394477514407 +2.17217806660471,51.4446503845327 + + + + + +TR98 +#labelStyle + +2.24809370365257,51.4869047847029 + + + + +TR99 + +Small Square TR99 Boundry Box +#Line2 + + +1 + +2.18038502087974,51.5343262000339 +2.18863371621262,51.6239907281488 +2.33266527394032,51.6187547697064 +2.32413504194523,51.5291069359389 +2.18038502087974,51.5343262000339 + + + + + +TR99 +#labelStyle + +2.256462378373,51.5765711779336 + + + + + +TQ + +Large Square TQ Boundry Box +#Line1 + + +1 + +-0.582612465765863,50.7909540081486 +-0.55471538429829,51.6898507541942 +0.890451743663082,51.6631678538776 +0.834723672831454,50.7651092303155 +-0.582612465765863,50.7909540081486 + + + + + +TQ00 + +Small Square TQ00 Boundry Box +#Line2 + + +1 + +-0.582612465765863,50.7909540081486 +-0.579887169859665,50.880842338733 +-0.437808380027976,50.8790271460082 +-0.440806128838166,50.7891445842361 +-0.582612465765863,50.7909540081486 + + + + + +TQ00 +#labelStyle + +-0.510271294892313,50.8350181875231 + + + + +TQ01 + +Small Square TQ01 Boundry Box +#Line2 + + +1 + +-0.579886896604236,50.88085132839 +-0.577147599064338,50.9707381592075 +-0.434794930758089,50.9689171749611 +-0.43780807945477,50.8790361350872 +-0.579886896604236,50.88085132839 + + + + + +TQ01 +#labelStyle + +-0.507402120843094,50.924911936034 + + + + +TQ02 + +Small Square TQ02 Boundry Box +#Line2 + + +1 + +-0.57714732440389,50.9707471487145 +-0.574393930640578,51.0606324799883 +-0.431765976036531,51.0588056819296 +-0.434794628639555,50.9689261638879 +-0.57714732440389,50.9707471487145 + + + + + +TQ02 +#labelStyle + +-0.504518194831077,51.0148041738953 + + + + +TQ03 + +Small Square TQ03 Boundry Box +#Line2 + + +1 + +-0.574393654565609,51.0606414693454 +-0.571626069108957,51.1505253013056 +-0.428721410865205,51.1486926669849 +-0.431765672362216,51.0588146707042 +-0.574393654565609,51.0606414693454 + + + + + +TQ03 +#labelStyle + +-0.50161941707898,51.1046949012567 + + + + +TQ04 + +Small Square TQ04 Boundry Box +#Line2 + + +1 + +-0.571625791609872,51.1505342905127 +-0.56884391809958,51.2404166233961 +-0.42566112926696,51.2385781302036 +-0.428721105624562,51.1487016556073 +-0.571625791609872,51.1505342905127 + + + + + +TQ04 +#labelStyle + +-0.49870568688009,51.1945841182737 + + + + +TQ05 + +Small Square TQ05 Boundry Box +#Line2 + + +1 + +-0.568843639166699,51.2404256124534 +-0.566047380341799,51.3303064465034 +-0.422585024274275,51.3284620716673 +-0.425660822449343,51.2385871186738 +-0.568843639166699,51.2404256124534 + + + + + +TQ05 +#labelStyle + +-0.495776902587525,51.2844718251078 + + + + +TQ06 + +Small Square TQ06 Boundry Box +#Line2 + + +1 + +-0.566047099965349,51.3303154354107 +-0.563236357653766,51.4201947708773 +-0.419492987917776,51.4183444914629 +-0.422584715868936,51.3284710599853 +-0.566047099965349,51.3303154354107 + + + + + +TQ06 +#labelStyle + +-0.492832961603355,51.3743580219264 + + + + +TQ07 + +Small Square TQ07 Boundry Box +#Line2 + + +1 + +-0.563236075823882,51.4202037596348 +-0.560410750931844,51.5100815967742 +-0.4163849112146,51.5082253896818 +-0.419492677913868,51.4183534796288 +-0.563236075823882,51.4202037596348 + + + + + +TQ07 +#labelStyle + +-0.489873760367561,51.4642427089027 + + + + +TQ08 + +Small Square TQ08 Boundry Box +#Line2 + + +1 + +-0.56041046763857,51.5100905853819 +-0.557570460139875,51.5999669244569 +-0.413260684156592,51.5981047664207 +-0.416384599601174,51.5082343776956 +-0.56041046763857,51.5100905853819 + + + + + +TQ08 +#labelStyle + +-0.486899194346846,51.5541258862153 + + + + +TQ09 + +Small Square TQ09 Boundry Box +#Line2 + + +1 + +-0.55757017537316,51.5999759129147 +-0.55471538429829,51.6898507541942 +-0.410120195698343,51.6879826217805 +-0.413260370922595,51.5981137542823 +-0.55757017537316,51.5999759129147 + + + + + +TQ09 +#labelStyle + +-0.483909158023287,51.6440075540486 + + + + +TQ10 + +Small Square TQ10 Boundry Box +#Line2 + + +1 + +-0.440791947528156,50.7891443946578 +-0.437794171474949,50.8790269558256 +-0.295730783820863,50.8770388905423 +-0.299000909717563,50.7871626471074 +-0.440791947528156,50.7891443946578 + + + + + +TQ10 +#labelStyle + +-0.368322199048347,50.8331193787169 + + + + +TQ11 + +Small Square TQ11 Boundry Box +#Line2 + + +1 + +-0.437793870899011,50.8790359449045 +-0.434780694819521,50.9689169841717 +-0.292443532718456,50.9669225762902 +-0.295730455937501,50.8770478789882 +-0.437793870899011,50.8790359449045 + + + + + +TQ11 +#labelStyle + +-0.36517987004519,50.9230070711106 + + + + +TQ12 + +Small Square TQ12 Boundry Box +#Line2 + + +1 + +-0.43478039269824,50.9689259730984 +-0.431751712571671,51.058805490531 +-0.289139369168223,51.0568047156444 +-0.292443203149539,50.9669315645815 +-0.43478039269824,50.9689259730984 + + + + + +TQ12 +#labelStyle + +-0.362021386311529,51.0128932295857 + + + + +TQ13 + +Small Square TQ13 Boundry Box +#Line2 + + +1 + +-0.431751408894597,51.0588144793056 +-0.428707119732353,51.1486924749749 +-0.285818178663616,51.1466853085022 +-0.289139037902352,51.056813703781 +-0.431751408894597,51.0588144793056 + + + + + +TQ13 +#labelStyle + +-0.358846638599799,51.1027778541262 + + + + +TQ14 + +Small Square TQ14 Boundry Box +#Line2 + + +1 + +-0.428706814488936,51.1487014635972 +-0.425646810323455,51.2385779375797 +-0.282479845630585,51.2365643547647 +-0.285817845689289,51.1466942964842 +-0.428706814488936,51.1487014635972 + + + + + +TQ14 +#labelStyle + +-0.355655516644981,51.1926609447206 + + + + +TQ15 + +Small Square TQ15 Boundry Box +#Line2 + + +1 + +-0.425646503503049,51.2385869260499 +-0.422570677376486,51.3284618784273 +-0.279124253415241,51.3264418543367 +-0.282479510936189,51.236573342592 +-0.425646503503049,51.2385869260499 + + + + + +TQ15 +#labelStyle + +-0.352447909152854,51.2825425013617 + + + + +TQ16 + +Small Square TQ16 Boundry Box +#Line2 + + +1 + +-0.422570368968345,51.3284708667453 +-0.419478612921095,51.4183442976042 +-0.275751284271346,51.4163178071259 +-0.279123916989058,51.3264508420093 +-0.422570368968345,51.3284708667453 + + + + + +TQ16 +#labelStyle + +-0.349223703788085,51.3724225240468 + + + + +TQ17 + +Small Square TQ17 Boundry Box +#Line2 + + +1 + +-0.41947830291437,51.41835328577 +-0.416370507973431,51.5082251952022 +-0.272360819347622,51.5061922130438 +-0.275750946101545,51.4163267946438 +-0.41947830291437,51.41835328577 + + + + + +TQ17 +#labelStyle + +-0.345982787162146,51.4623010127771 + + + + +TQ18 + +Small Square TQ18 Boundry Box +#Line2 + + +1 + +-0.416370196357172,51.5082341832158 +-0.413246252524342,51.5981045713175 +-0.268952738674888,51.5960650720048 +-0.272360479422263,51.506201200407 +-0.416370196357172,51.5082341832158 + + + + + +TQ18 +#labelStyle + +-0.34272504482107,51.5521779675581 + + + + +TQ19 + +Small Square TQ19 Boundry Box +#Line2 + + +1 + +-0.413245939287497,51.5981135591791 +-0.410105735527412,51.6879824260515 +-0.26552692115302,51.6859363839262 +-0.268952396981918,51.5960740592133 +-0.413245939287497,51.5981135591791 + + + + + +TQ19 +#labelStyle + +-0.339450361233031,51.6420533883991 + + + + +TQ20 + +Small Square TQ20 Boundry Box +#Line2 + + +1 + +-0.298986730007046,50.7871624402973 +-0.295716576878103,50.8770386830729 +-0.15366998882522,50.874877791479 +-0.157212379404621,50.7850084150705 +-0.298986730007046,50.7871624402973 + + + + + +TQ20 +#labelStyle + +-0.226389151910264,50.8310479773421 + + + + +TQ21 + +Small Square TQ21 Boundry Box +#Line2 + + +1 + +-0.29571624899201,50.8770476715187 +-0.292429298401029,50.966922368159 +-0.150109049348656,50.9647545831792 +-0.153669633642996,50.8748867792368 +-0.29571624899201,50.8770476715187 + + + + + +TQ21 +#labelStyle + +-0.222973776202076,50.92092906368 + + + + +TQ22 + +Small Square TQ22 Boundry Box +#Line2 + + +1 + +-0.292428968829367,50.9669313564502 +-0.289125107335481,51.0568045068487 +-0.146529791483478,51.0546298019622 +-0.150108692340755,50.9647635707797 +-0.292428968829367,50.9669313564502 + + + + + +TQ22 +#labelStyle + +-0.219540844001581,51.0108085907226 + + + + +TQ23 + +Small Square TQ23 Boundry Box +#Line2 + + +1 + +-0.289124776066852,51.0568134949853 +-0.28580388917396,51.1466850990396 +-0.142932091226856,51.1445034475368 +-0.146529432637556,51.0546387894055 +-0.289124776066852,51.0568134949853 + + + + + +TQ23 +#labelStyle + +-0.216090236602519,51.1006865582732 + + + + +TQ24 + +Small Square TQ24 Boundry Box +#Line2 + + +1 + +-0.28580355619686,51.1466940870214 +-0.282465528341457,51.2365641446325 +-0.139315823420182,51.2343755196134 +-0.142931730530456,51.1445124348227 +-0.28580355619686,51.1466940870214 + + + + + +TQ24 +#labelStyle + +-0.212621834193313,51.1905629661382 + + + + +TQ25 + +Small Square TQ25 Boundry Box +#Line2 + + +1 + +-0.282465193644275,51.2365731324597 +-0.279109908183117,51.3264416435322 +-0.135680861735713,51.3242460179043 +-0.139315460860729,51.2343845067419 +-0.282465193644275,51.2365731324597 + + + + + +TQ25 +#labelStyle + +-0.209135515844317,51.2804378141265 + + + + +TQ26 + +Small Square TQ26 Boundry Box +#Line2 + + +1 + +-0.279109571754133,51.3264506312048 +-0.275736910951723,51.4163175956467 +-0.132027078663031,51.4141149421233 +-0.135680497300517,51.3242550048754 +-0.279109571754133,51.3264506312048 + + + + + +TQ26 +#labelStyle + +-0.205631159494873,51.3703111020498 + + + + +TQ27 + +Small Square TQ27 Boundry Box +#Line2 + + +1 + +-0.275736572779106,51.4163265831646 +-0.27234641779501,51.5061920008872 +-0.128354345495306,51.5039822919858 +-0.132026712339279,51.414123928937 +-0.275736572779106,51.4163265831646 + + + + + +TQ27 +#labelStyle + +-0.202108641940193,51.4601828297221 + + + + +TQ28 + +Small Square TQ28 Boundry Box +#Line2 + + +1 + +-0.272346077866821,51.5062009882504 +-0.268938308742804,51.5960648591681 +-0.124662532315379,51.5938480672085 +-0.128353977270069,51.503991278642 +-0.272346077866821,51.5062009882504 + + + + + +TQ28 +#labelStyle + +-0.198567838818059,51.5500529969598 + + + + +TQ29 + +Small Square TQ29 Boundry Box +#Line2 + + +1 + +-0.268937967046988,51.5960738463765 +-0.265512462693973,51.6859361704068 +-0.120951507981637,51.6837122675092 +-0.124662162175603,51.5938570537073 +-0.268937967046988,51.5960738463765 + + + + + +TQ29 +#labelStyle + +-0.195008624595334,51.6399216035815 + + + + +TQ30 + +Small Square TQ30 Boundry Box +#Line2 + + +1 + +-0.157198201432369,50.7850081910333 +-0.153655783632432,50.8748775667277 +-0.011627391561534,50.8725438990804 +-0.0154419250981894,50.782681938076 +-0.157198201432369,50.7850081910333 + + + + + +TQ30 +#labelStyle + +-0.0844735458565941,50.8288040315071 + + + + +TQ31 + +Small Square TQ31 Boundry Box +#Line2 + + +1 + +-0.153655428447479,50.8748865544855 +-0.150094816793017,50.9647543577109 +-0.0077928865780218,50.9624132462037 +-0.0116270090926785,50.8725528860952 +-0.153655428447479,50.8748865544855 + + + + + +TQ31 +#labelStyle + +-0.0807852410639549,50.9186779621507 + + + + +TQ32 + +Small Square TQ32 Boundry Box +#Line2 + + +1 + +-0.150094459782373,50.9647633453114 +-0.146515531424451,51.0546295757743 +-0.00393865840774709,51.0522809917755 +-0.00779250214348001,50.9624222330584 +-0.150094459782373,50.9647633453114 + + + + + +TQ32 +#labelStyle + +-0.0770779791099682,51.0085503060171 + + + + +TQ33 + +Small Square TQ33 Boundry Box +#Line2 + + +1 + +-0.146515172575771,51.0546385632174 +-0.142917803522953,51.1445032206264 +-6.45735647723655E-05,51.1421471353005 +-0.00393827199423235,51.05228997847 +-0.146515172575771,51.0546385632174 + + + + + +TQ33 +#labelStyle + +-0.0733516318422641,51.0984210627141 + + + + +TQ34 + +Small Square TQ34 Boundry Box +#Line2 + + +1 + +-0.142917442823782,51.1445122079122 +-0.139301507928958,51.2343752919777 +0.00382950268071468,51.2320116762833 +-6.41851588744126E-05,51.1421561218347 +-0.142917442823782,51.1445122079122 + + + + + +TQ34 +#labelStyle + +-0.0696060699154721,51.1882902318508 + + + + +TQ35 + +Small Square TQ35 Boundry Box +#Line2 + + +1 + +-0.13930114536672,51.2343842791062 +-0.135666518313756,51.3242457895405 +0.00774370631676654,51.3218746142288 +0.00382989309253211,51.2320206626573 +-0.13930114536672,51.2343842791062 + + + + + +TQ35 +#labelStyle + +-0.0658411627774551,51.2781578130371 + + + + +TQ36 + +Small Square TQ36 Boundry Box +#Line2 + + +1 + +-0.135666153875759,51.3242547765115 +-0.132012707165953,51.4141147130286 +0.0116781746042501,51.4117359486412 +0.00774409874816531,51.3218836004424 +-0.135666153875759,51.3242547765115 + + + + + +TQ36 +#labelStyle + +-0.0620567786553499,51.3680238058836 + + + + +TQ37 + +Small Square TQ37 Boundry Box +#Line2 + + +1 + +-0.132012340839386,51.4141236998422 +-0.128339945777735,51.5039820621573 +0.0156330460916211,51.5015956790245 +0.0116785690690213,51.4117449346945 +-0.132012340839386,51.4141236998422 + + + + + +TQ37 +#labelStyle + +-0.0582527845414085,51.4578882100017 + + + + +TQ38 + +Small Square TQ38 Boundry Box +#Line2 + + +1 + +-0.128339577549669,51.5039910488135 +-0.124648104230948,51.5938478366433 +0.0196084606299008,51.5914538048818 +0.0156334426036828,51.5016046649173 +-0.128339577549669,51.5039910488135 + + + + + +TQ38 +#labelStyle + +-0.0544290461786526,51.5477510250032 + + + + +TQ39 + +Small Square TQ39 Boundry Box +#Line2 + + +1 + +-0.124647734088328,51.593856823142 +-0.120937051382976,51.6837120362045 +0.02360455938787,51.6813103257158 +0.0196088592033051,51.5914627906142 +-0.124647734088328,51.593856823142 + + + + + +TQ39 +#labelStyle + +-0.0505854280463113,51.6376122505001 + + + + +TQ40 + +Small Square TQ40 Boundry Box +#Line2 + + +1 + +-0.0154277490028689,50.7826816968169 +-0.0116131882583152,50.8725436570524 +0.130395612578865,50.8700372676143 +0.126309067119222,50.780183270056 +-0.0154277490028689,50.7826816968169 + + + + + +TQ40 +#labelStyle + +0.0574232278140184,50.8263875933155 + + + + +TQ41 + +Small Square TQ41 Boundry Box +#Line2 + + +1 + +-0.0116128057867315,50.8725526440671 +-0.00777865592470936,50.9624130034038 +0.134503550806261,50.9598986199706 +0.130396022321187,50.8700462538311 +-0.0116128057867315,50.8725526440671 + + + + + +TQ41 +#labelStyle + +0.06138433471127,50.9162538189513 + + + + +TQ42 + +Small Square TQ42 Boundry Box +#Line2 + + +1 + +-0.00777827148742593,50.9624219902583 +-0.00392440026392133,51.0522807482006 +0.138632615788838,51.0497583400325 +0.134503962654156,50.9599076060242 +-0.00777827148742593,50.9624219902583 + + + + + +TQ42 +#labelStyle + +0.065365798259457,51.0061184282256 + + + + +TQ43 + +Small Square TQ43 Boundry Box +#Line2 + + +1 + +-0.00392401384765073,51.052289734895 +-5.02877890661989E-05,51.1421468909476 +0.142782950481466,51.1396164270861 +0.138633029756535,51.0497673259229 +-0.00392401384765073,51.052289734895 + + + + + +TQ43 +#labelStyle + +0.0693677560434784,51.0959814205358 + + + + +TQ44 + +Small Square TQ44 Boundry Box +#Line2 + + +1 + +-4.98993803981639E-05,51.1421558774817 +0.00384381623062474,51.2320114311496 +0.14695469917079,51.2294728804151 +0.142783366583326,51.1396254128131 +-4.98993803981639E-05,51.1421558774817 + + + + + +TQ44 +#labelStyle + +0.0733903469287326,51.1858427952787 + + + + +TQ45 + +Small Square TQ45 Boundry Box +#Line2 + + +1 + +0.00384420664522687,51.2320204175234 +0.00775804778417056,51.321874368311 +0.151148007490604,51.3193276993014 +0.146955117421309,51.2294818659787 +0.00384420664522687,51.2320204175234 + + + + + +TQ45 +#labelStyle + +0.077433711075885,51.27570255185 + + + + +TQ46 + +Small Square TQ46 Boundry Box +#Line2 + + +1 + +0.00775844021836786,51.3218833545246 +0.011692544133411,51.4117357019364 +0.155363022437447,51.4091808830246 +0.151148427904414,51.3193366847016 +0.00775844021836786,51.3218833545246 + + + + + +TQ46 +#labelStyle + +0.0814979899558502,51.365560689644 + + + + +TQ47 + +Small Square TQ47 Boundry Box +#Line2 + + +1 + +0.0116929386009957,51.4117446879896 +0.0156474438277854,51.5015954315295 +0.159599892386422,51.4990324308615 +0.155363445029317,51.4091898682612 +0.0116929386009957,51.4117446879896 + + + + + +TQ47 +#labelStyle + +0.0855833263649812,51.455417208054 + + + + +TQ48 + +Small Square TQ48 Boundry Box +#Line2 + + +1 + +0.0156478403426753,51.5016044174223 +0.0196228867193084,51.5914535565937 +0.163858767107219,51.5888823420863 +0.159600317171257,51.4990414159344 +0.0156478403426753,51.5016044174223 + + + + + +TQ48 +#labelStyle + +0.0896898644404664,51.5452721064714 + + + + +TQ49 + +Small Square TQ49 Boundry Box +#Line2 + + +1 + +0.0196232852955555,51.591462542326 +0.0236190139777624,51.6813100766314 +0.168139797780386,51.6787306159705 +0.163859194100068,51.5888913269956 +0.0196232852955555,51.591462542326 + + + + + +TQ49 +#labelStyle + +0.0938177496759505,51.6351253842861 + + + + +TQ50 + +Small Square TQ50 Boundry Box +#Line2 + + +1 + +0.126323241199062,50.7801830115806 +0.130409813853034,50.8700370083152 +0.272397629419859,50.8673579553501 +0.268039212366532,50.7775124689192 +0.126323241199062,50.7801830115806 + + + + + +TQ50 +#labelStyle + +0.199299778968474,50.8237987188626 + + + + +TQ51 + +Small Square TQ51 Boundry Box +#Line2 + + +1 + +0.130410223598083,50.870045994532 +0.134517779416829,50.9598983598446 +0.276778859246201,50.9572107631128 +0.272398066421548,50.8673669407141 +0.130410223598083,50.870045994532 + + + + + +TQ51 +#labelStyle + +0.203533551644631,50.9136566905268 + + + + +TQ52 + +Small Square TQ52 Boundry Box +#Line2 + + +1 + +0.134518191267464,50.9599073458981 +0.138646871876096,51.0497580790764 +0.28118261807951,51.0470619057333 +0.276779298493218,50.9572197483104 +0.134518191267464,50.9599073458981 + + + + + +TQ52 +#labelStyle + +0.207789079195357,51.0035130141458 + + + + +TQ53 + +Small Square TQ53 Boundry Box +#Line2 + + +1 + +0.138647285846547,51.0497670649666 +0.142797234186652,51.1396161652965 +0.285609058328422,51.1369113822635 +0.281183059587026,51.0470708907643 +0.138647285846547,51.0497670649666 + + + + + +TQ53 +#labelStyle + +0.212066508623508,51.0933676888918 + + + + +TQ54 + +Small Square TQ54 Boundry Box +#Line2 + + +1 + +0.142797650291281,51.1396251510235 +0.146969010636099,51.229472617789 +0.290058333821032,51.2267591917517 +0.285609502111747,51.1369203671278 +0.142797650291281,51.1396251510235 + + + + + +TQ54 +#labelStyle + +0.216365988299734,51.1832207139342 + + + + +TQ55 + +Small Square TQ55 Boundry Box +#Line2 + + +1 + +0.146969428889402,51.2294816033525 +0.151162346859192,51.3193274358355 +0.294530599821279,51.3166053332416 +0.290058779895621,51.2267681764493 +0.146969428889402,51.2294816033525 + + + + + +TQ55 +#labelStyle + +0.220687667978253,51.2730720884394 + + + + +TQ56 + +Small Square TQ56 Boundry Box +#Line2 + + +1 + +0.1511627672758,51.3193364212355 +0.155377389853445,51.4091806187155 +0.299026013045564,51.4064498057725 +0.294531048202731,51.3166143177723 +0.1511627672758,51.3193364212355 + + + + + +TQ56 +#labelStyle + +0.225031698812839,51.3629218115703 + + + + +TQ57 + +Small Square TQ57 Boundry Box +#Line2 + + +1 + +0.155377812448127,51.409189603952 +0.159614287994941,51.499032165706 +0.3035447316796,51.4962926083788 +0.299026463749625,51.4064587901362 +0.155377812448127,51.409189603952 + + + + + +TQ57 +#labelStyle + +0.229398233373052,51.4527698824864 + + + + +TQ58 + +Small Square TQ58 Boundry Box +#Line2 + + +1 + +0.159614712782603,51.4990411507789 +0.163873191054364,51.5888820760812 +0.308086915395492,51.5861337400903 +0.303545184722161,51.4963015925756 +0.159614712782603,51.4990411507789 + + + + + +TQ58 +#labelStyle + +0.233787425660673,51.5426163003434 + + + + +TQ59 + +Small Square TQ59 Boundry Box +#Line2 + + +1 + +0.163873618050054,51.5888910609903 +0.168154250213259,51.6787303491123 +0.312652725369062,51.6759731999312 +0.308087370792595,51.5861427241199 +0.163873618050054,51.5888910609903 + + + + + +TQ59 +#labelStyle + +0.238199431126385,51.6324610642933 + + + + +TQ60 + +Small Square TQ60 Boundry Box +#Line2 + + +1 + +0.268053384292466,50.7775121932337 +0.272411828525626,50.867357678786 +0.414377266086412,50.8645060245542 +0.409747127048983,50.7746695965471 +0.268053384292466,50.7775121932337 + + + + + +TQ60 +#labelStyle + +0.341154718724692,50.8210374682304 + + + + +TQ61 + +Small Square TQ61 Boundry Box +#Line2 + + +1 + +0.27241226553004,50.8673666641499 +0.276793085673733,50.9572104856668 +0.419031636499845,50.9543497382856 +0.414377730332437,50.8645150090106 +0.27241226553004,50.8673666641499 + + + + + +TQ61 +#labelStyle + +0.345661011522553,50.9108866373337 + + + + +TQ62 + +Small Square TQ62 Boundry Box +#Line2 + + +1 + +0.276793524923489,50.9572194708642 +0.281196871968963,51.0470616274019 +0.423709936768711,51.0441917519247 +0.419032103130814,50.9543587225719 +0.276793524923489,50.9572194708642 + + + + + +TQ62 +#labelStyle + +0.350190456066356,51.0007341246119 + + + + +TQ63 + +Small Square TQ63 Boundry Box +#Line2 + + +1 + +0.281197313479231,51.0470706124328 +0.285623339820896,51.1369111030434 +0.428412328739246,51.1340320642751 +0.423710405800734,51.044200736041 +0.281197313479231,51.0470706124328 + + + + + +TQ63 +#labelStyle + +0.354743208761355,51.0905799289973 + + + + +TQ64 + +Small Square TQ64 Boundry Box +#Line2 + + +1 + +0.285623783606988,51.1369200879077 +0.290072643058582,51.2267589116394 +0.433138975764607,51.223870674134 +0.428412800188581,51.1340410482212 +0.285623783606988,51.1369200879077 + + + + + +TQ64 +#labelStyle + +0.359319427467678,51.1804240494169 + + + + +TQ65 + +Small Square TQ65 Boundry Box +#Line2 + + +1 + +0.290073089135953,51.2267678963369 +0.294544936946922,51.3166050522337 +0.437890042722264,51.3137075802922 +0.433139449647668,51.2238796579099 +0.290073089135953,51.2267678963369 + + + + + +TQ65 +#labelStyle + +0.363919271517094,51.2702664847926 + + + + +TQ66 + +Small Square TQ66 Boundry Box +#Line2 + + +1 + +0.294545385331171,51.3166140367643 +0.299040378203288,51.4064495238654 +0.442665696031628,51.4035427815333 +0.437890519055613,51.3137165638976 +0.294545385331171,51.3166140367643 + + + + + +TQ66 +#labelStyle + +0.368542901730024,51.3601072340405 + + + + +TQ67 + +Small Square TQ67 Boundry Box +#Line2 + + +1 + +0.29904082891016,51.4064585082291 +0.303559125014373,51.4962923255691 +0.447466103671942,51.4933762766341 +0.442666174831987,51.4035517649682 +0.29904082891016,51.4064585082291 + + + + + +TQ67 +#labelStyle + +0.373190480432788,51.4499462960713 + + + + +TQ68 + +Small Square TQ68 Boundry Box +#Line2 + + +1 + +0.303559578059759,51.4963013097657 +0.308101337053271,51.5861334563744 +0.452291435200398,51.5832080643639 +0.447466584956185,51.4933852598982 +0.303559578059759,51.4963013097657 + + + + + +TQ68 +#labelStyle + +0.377862171475085,51.5397836697895 + + + + +TQ69 + +Small Square TQ69 Boundry Box +#Line2 + + +1 + +0.308101792453214,51.5861424404039 +0.312667175496803,51.6759729153055 +0.457141861770532,51.6730381434844 +0.452291918985563,51.5832170474572 +0.308101792453214,51.5861424404039 + + + + + +TQ69 +#labelStyle + +0.382558140247726,51.6296193540931 + + + + +TQ70 + +Small Square TQ70 Boundry Box +#Line2 + + +1 + +0.409761296682719,50.7746693036576 +0.414391462884556,50.8645057307315 +0.556333131090223,50.8614815414856 +0.551431428942832,50.7716547187886 +0.409761296682719,50.7746693036576 + + + + + +TQ70 +#labelStyle + +0.482986659536892,50.8181039054834 + + + + +TQ71 + +Small Square TQ71 Boundry Box +#Line2 + + +1 + +0.414391927133305,50.8645147151878 +0.419045860604185,50.954349443526 +0.56126048172792,50.9513156121608 +0.556333622564621,50.8614905249795 +0.414391927133305,50.8645147151878 + + + + + +TQ71 +#labelStyle + +0.487765317483105,50.9079437238358 + + + + +TQ72 + +Small Square TQ72 Boundry Box +#Line2 + + +1 + +0.419046327237891,50.9543584278123 +0.423724188319259,51.0441914562246 +0.566213161579723,51.0411479456956 +0.561260975726729,50.9513245954811 +0.419046327237891,50.9543584278123 + + + + + +TQ72 +#labelStyle + +0.492568522608282,50.9977818244906 + + + + +TQ73 + +Small Square TQ73 Boundry Box +#Line2 + + +1 + +0.423724657354032,51.0442004403408 +0.428426607876955,51.134031767631 +0.571191341912315,51.1309785406301 +0.566213658119992,51.0411569288421 +0.423724657354032,51.0442004403408 + + + + + +TQ73 +#labelStyle + +0.497396440703529,51.0876182061249 + + + + +TQ74 + +Small Square TQ74 Boundry Box +#Line2 + + +1 + +0.428427079329056,51.134040751577 +0.433153282631385,51.2238703765422 +0.576195195586526,51.2208073954956 +0.571191841011249,51.1309875236026 +0.428427079329056,51.134040751577 + + + + + +TQ74 +#labelStyle + +0.502249239101678,51.1774528674089 + + + + +TQ75 + +Small Square TQ75 Boundry Box +#Line2 + + +1 + +0.433153756517225,51.2238793603179 +0.437904377460976,51.3137072817489 +0.581224897075717,51.3106345088145 +0.576195697261492,51.220816378294 +0.433153756517225,51.2238793603179 + + + + + +TQ75 +#labelStyle + +0.507127086695043,51.2672858070047 + + + + +TQ76 + +Small Square TQ76 Boundry Box +#Line2 + + +1 + +0.437904853797119,51.3137162653542 +0.442680058786112,51.4035424820349 +0.586280622484436,51.4004598790999 +0.581225401344243,51.3106434914387 +0.437904853797119,51.3137162653542 + + + + + +TQ76 +#labelStyle + +0.512030153953445,51.3571170235668 + + + + +TQ77 + +Small Square TQ77 Boundry Box +#Line2 + + +1 + +0.44268053758928,51.4035514654697 +0.447480494587012,51.4933759761769 +0.591362549567321,51.4902835048552 +0.586281129364215,51.4004688615497 +0.44268053758928,51.4035514654697 + + + + + +TQ77 +#labelStyle + +0.516958612942479,51.4469465157412 + + + + +TQ78 + +Small Square TQ78 Boundry Box +#Line2 + + +1 + +0.447480975874078,51.4933849594409 +0.452305854421857,51.583207762944 +0.596470857748273,51.580105384574 +0.591363059076211,51.4902924871305 +0.447480975874078,51.4933849594409 + + + + + +TQ78 +#labelStyle + +0.52191263734203,51.5367742821657 + + + + +TQ79 + +Small Square TQ79 Boundry Box +#Line2 + + +1 + +0.452306338209859,51.5832167460373 +0.457156309445178,51.6730378410981 +0.601605728139893,51.6699255167397 +0.596471369904302,51.5801143666746 +0.452306338209859,51.5832167460373 + + + + + +TQ79 +#labelStyle + +0.526892402465064,51.6266003214693 + + + + +TQ80 + +Small Square TQ80 Boundry Box +#Line2 + + +1 + +0.551445596146219,50.771654408702 +0.556347325441668,50.8614812304111 +0.698263834415168,50.85828457639 +0.693090737279827,50.7684679054551 +0.551445596146219,50.771654408702 + + + + + +TQ80 +#labelStyle + +0.624794215280657,50.8149980986635 + + + + +TQ81 + +Small Square TQ81 Boundry Box +#Line2 + + +1 + +0.556347816918788,50.8614902139049 +0.561274703369057,50.9513153000946 +0.703463995580243,50.9481084554226 +0.698264353101048,50.8582935588666 +0.556347816918788,50.8614902139049 + + + + + +TQ81 +#labelStyle + +0.629845074102037,50.904828018499 + + + + +TQ82 + +Small Square TQ82 Boundry Box +#Line2 + + +1 + +0.561275197370602,50.9513242834148 +0.566227410650411,51.0411476326338 +0.708690883742072,51.037930558172 +0.703464516929846,50.9481174377217 +0.561275197370602,50.9513242834148 + + + + + +TQ82 +#labelStyle + +0.634921874011185,50.994656182675 + + + + +TQ83 + +Small Square TQ83 Boundry Box +#Line2 + + +1 + +0.56622790719343,51.0411566157802 +0.571205618553354,51.1309782265689 +0.713944679569641,51.1277508828999 +0.70869140777338,51.0379395402933 +0.56622790719343,51.0411566157802 + + + + + +TQ83 +#labelStyle + +0.640024790167537,51.0844825895993 + + + + +TQ84 + +Small Square TQ84 Boundry Box +#Line2 + + +1 + +0.571206117655051,51.1309872095413 +0.576209499939664,51.2208070804311 +0.719225565413061,51.2175694278571 +0.713945206300806,51.1277598648434 +0.571206117655051,51.1309872095413 + + + + + +TQ84 +#labelStyle + +0.645153999358852,51.1743072376697 + + + + +TQ85 + +Small Square TQ85 Boundry Box +#Line2 + + +1 + +0.576210001617407,51.2208160632295 +0.581239229283663,51.3106341927429 +0.72453372532294,51.3073861912826 +0.719226094862403,51.2175784096226 +0.576210001617407,51.2208160632295 + + + + + +TQ85 +#labelStyle + +0.650309680019978,51.2641301252741 + + + + +TQ86 + +Small Square TQ86 Boundry Box +#Line2 + + +1 + +0.581239733554981,51.310643175367 +0.586294982690865,51.4004595620172 +0.729869345070052,51.3972011714035 +0.724534257508949,51.3073951728698 +0.581239733554981,51.310643175367 + + + + + +TQ86 +#labelStyle + +0.655492012251866,51.3539512507896 + + + + +TQ87 + +Small Square TQ87 Boundry Box +#Line2 + + +1 + +0.586295489573452,51.4004685444669 +0.591376937916887,51.4902831867575 +0.735232612165262,51.4870143664347 +0.729869880011393,51.3972101528123 +0.586295489573452,51.4004685444669 + + + + + +TQ87 +#labelStyle + +0.660701177840865,51.4437706125829 + + + + +TQ88 + +Small Square TQ88 Boundry Box +#Line2 + + +1 + +0.591377447428599,51.4902921690327 +0.596485274386612,51.5801050654573 +0.740623715879735,51.5768257745786 +0.735233149880771,51.4870233476649 +0.591377447428599,51.4902921690327 + + + + + +TQ88 +#labelStyle + +0.665937360278268,51.5335882090093 + + + + +TQ89 + +Small Square TQ89 Boundry Box +#Line2 + + +1 + +0.596485786545477,51.5801140475578 +0.60162017321364,51.6699251966001 +0.746042847265432,51.6666353940246 +0.740624256388431,51.57683475563 +0.596485786545477,51.5801140475578 + + + + + +TQ89 +#labelStyle + +0.671200744780145,51.6234040384132 + + + + +TQ90 + +Small Square TQ90 Boundry Box +#Line2 + + +1 + +0.693104901914863,50.7684675781786 +0.698278026180988,50.858284248071 +0.840167987602503,50.8549152034949 +0.834723672831454,50.7651092303155 +0.693104901914863,50.7684675781786 + + + + + +TQ90 +#labelStyle + +0.766576001337776,50.8117201197848 + + + + +TQ91 + +Small Square TQ91 Boundry Box +#Line2 + + +1 + +0.698278544869588,50.8582932305475 +0.70347821461832,50.948108126057 +0.845640780281905,50.9447283427612 +0.840168533482046,50.8549241848997 +0.698278544869588,50.8582932305475 + + + + + +TQ91 +#labelStyle + +0.77189888747859,50.9015395937857 + + + + +TQ92 + +Small Square TQ92 Boundry Box +#Line2 + + +1 + +0.703478735970656,50.948117108356 +0.708705130192101,51.0379302277557 +0.85114169607869,51.0345396645107 +0.845641328964316,50.9447373239842 +0.703478735970656,50.948117108356 + + + + + +TQ92 +#labelStyle + +0.777249107006134,50.9913572720801 + + + + +TQ93 + +Small Square TQ93 Boundry Box +#Line2 + + +1 + +0.708705654226158,51.037939209877 +0.71395895357226,51.1277505514291 +0.856670925045031,51.1243491667124 +0.851142247582888,51.0345486455519 +0.708705654226158,51.037939209877 + + + + + +TQ93 +#labelStyle + +0.782626844429664,51.0811731527914 + + + + +TQ94 + +Small Square TQ94 Boundry Box +#Line2 + + +1 + +0.713959480306187,51.1277595333725 +0.719239867109851,51.2175690953275 +0.862228659000927,51.2141568473213 +0.856671479390107,51.1243581475715 +0.713959480306187,51.1277595333725 + + + + + +TQ94 +#labelStyle + +0.788032285973113,51.1709872340306 + + + + +TQ95 + +Small Square TQ95 Boundry Box +#Line2 + + +1 + +0.71924039656197,51.2175780770929 +0.724548054856445,51.3073858576902 +0.867815091554578,51.303962704278 +0.862229216206153,51.2141658279982 +0.71924039656197,51.2175780770929 + + + + + +TQ95 +#labelStyle + +0.793465619594836,51.260799513896 + + + + +TQ96 + +Small Square TQ96 Boundry Box +#Line2 + + +1 + +0.724548587045244,51.3073948392773 +0.729883702583776,51.3972008367441 +0.873430418123053,51.3937667355087 +0.867815651639406,51.3039716847725 +0.724548587045244,51.3073948392773 + + + + + +TQ96 +#labelStyle + +0.798927035007632,51.3506099904726 + + + + +TQ97 + +Small Square TQ97 Boundry Box +#Line2 + + +1 + +0.729884237527922,51.3972098181528 +0.735246997803686,51.4870140307042 +0.879074835953237,51.4835689389243 +0.873430981107117,51.3937757158205 +0.729884237527922,51.3972098181528 + + + + + +TQ97 +#labelStyle + +0.804416723699048,51.440418661832 + + + + +TQ98 + +Small Square TQ98 Boundry Box +#Line2 + + +1 + +0.735247535522015,51.4870230119343 +0.740638129788325,51.5768254377727 +0.884748544143067,51.5733693124206 +0.879075401856349,51.4835779190532 +0.735247535522015,51.4870230119343 + + + + + +TQ98 +#labelStyle + +0.809934878951954,51.5302255260323 + + + + +TQ99 + +Small Square TQ99 Boundry Box +#Line2 + + +1 + +0.740638670299855,51.576834418824 +0.746057289590644,51.6666350561392 +0.890451743663082,51.6631678538776 +0.884749112985235,51.5733782923664 +0.740638670299855,51.576834418824 + + + + + +TQ99 +#labelStyle + +0.815481695865424,51.6200305811172 + + + + + +TV + +Large Square TV Boundry Box +#Line1 + + +1 + +-0.609118192314835,49.8918982662046 +-0.582612737625689,50.7909450183415 +0.834723129736035,50.7651002487293 +0.781771265779315,49.8668602666895 +-0.609118192314835,49.8918982662046 + + + + + +TV00 + +Small Square TV00 Boundry Box +#Line2 + + +1 + +-0.609118192314835,49.8918982662046 +-0.606527896969274,49.9818016051831 +-0.467112494344517,49.9800431356106 +-0.469961760150837,49.8901453524817 +-0.609118192314835,49.8918982662046 + + + + + +TV00 +#labelStyle + +-0.538172984659304,49.9359975883031 + + + + +TV01 + +Small Square TV01 Boundry Box +#Line2 + + +1 + +-0.606527637260101,49.9818105963411 +-0.603924239903771,50.0717124337124 +-0.464248532297415,50.0699483871002 +-0.467112208670416,49.9800521262119 +-0.606527637260101,49.9818105963411 + + + + + +TV01 +#labelStyle + +-0.53544603957452,50.0259064501365 + + + + +TV02 + +Small Square TV02 Boundry Box +#Line2 + + +1 + +-0.603923978879961,50.0717214247202 +-0.601307393196254,50.1616217606349 +-0.461370063314203,50.1598521162039 +-0.464248245177381,50.0699573775493 +-0.603923978879961,50.0717214247202 + + + + + +TV02 +#labelStyle + +-0.532705291440504,50.1158138001782 + + + + +TV03 + +Small Square TV03 Boundry Box +#Line2 + + +1 + +-0.601307130849138,50.1616307514925 +-0.598677269735497,50.2515295861089 +-0.458476991597678,50.2497543229348 +-0.461369774738699,50.1598611065007 +-0.601307130849138,50.1616307514925 + + + + + +TV03 +#labelStyle + +-0.529950649215097,50.2057196385121 + + + + +TV04 + +Small Square TV04 Boundry Box +#Line2 + + +1 + +-0.598677006056323,50.2515385768164 +-0.596033781615377,50.3414359103003 +-0.455569220476638,50.3396550073124 +-0.458476701557081,50.2497633130794 +-0.598677006056323,50.2515385768164 + + + + + +TV04 +#labelStyle + +-0.527182021026342,50.2956239652291 + + + + +TV05 + +Small Square TV05 Boundry Box +#Line2 + + +1 + +-0.596033516595315,50.3414449008577 +-0.593376840125902,50.4313407333824 +-0.452646652396011,50.4295541693621 +-0.455568928961237,50.3396639973046 +-0.596033516595315,50.3414449008577 + + + + + +TV05 +#labelStyle + +-0.524399314163115,50.3855267804271 + + + + +TV06 + +Small Square TV06 Boundry Box +#Line2 + + +1 + +-0.59337657375604,50.4313497237897 +-0.590706355744101,50.5212440555359 +-0.449709188906846,50.5194518091157 +-0.452646359396007,50.4295631592022 +-0.59337657375604,50.4313497237897 + + + + + +TV06 +#labelStyle + +-0.521602435065642,50.4754280842105 + + + + +TV07 + +Small Square TV07 Boundry Box +#Line2 + + +1 + +-0.590706088015445,50.5212530457931 +-0.588022238124797,50.6111458769489 +-0.446756730656168,50.6093479266107 +-0.449708894412348,50.5194607988035 +-0.590706088015445,50.5212530457931 + + + + + +TV07 +#labelStyle + +-0.518791289315868,50.5653278766906 + + + + +TV08 + +Small Square TV08 Boundry Box +#Line2 + + +1 + +-0.588021969028272,50.6111548670561 +-0.585324396091253,50.7010461978167 +-0.443789177376691,50.6992425218907 +-0.446756434657195,50.6093569161464 +-0.588021969028272,50.6111548670561 + + + + + +TV08 +#labelStyle + +-0.515965781627712,50.6552261579854 + + + + +TV09 + +Small Square TV09 Boundry Box +#Line2 + + +1 + +-0.5853241256177,50.7010551877737 +-0.582612737625689,50.7909450183415 +-0.440806427876399,50.7891355950049 +-0.44378887986317,50.6992515112741 +-0.5853241256177,50.7010551877737 + + + + + +TV09 +#labelStyle + +-0.513125815837173,50.7451229282193 + + + + +TV10 + +Small Square TV10 Boundry Box +#Line2 + + +1 + +-0.469947843810261,49.890145168824 +-0.467098552108867,49.9800429513708 +-0.327697562266948,49.9781170068287 +-0.330805730362263,49.8882253088321 +-0.469947843810261,49.890145168824 + + + + + +TV10 +#labelStyle + +-0.398880308619976,49.9341580962526 + + + + +TV11 + +Small Square TV11 Boundry Box +#Line2 + + +1 + +-0.467098266432169,49.980051941972 +-0.464234564033267,50.0699482022761 +-0.324573364140555,50.0680161499817 +-0.327697250634773,49.9781259968203 +-0.467098266432169,49.980051941972 + + + + + +TV11 +#labelStyle + +-0.395893734059535,50.0240611258729 + + + + +TV12 + +Small Square TV12 Boundry Box +#Line2 + + +1 + +-0.464234276910623,50.0699571927251 +-0.461356068889857,50.1598519307933 +-0.321433342516465,50.1579137479944 +-0.324573050931222,50.0680251398188 +-0.464234276910623,50.0699571927251 + + + + + +TV12 +#labelStyle + +-0.392892043757255,50.1139626220087 + + + + +TV13 + +Small Square TV13 Boundry Box +#Line2 + + +1 + +-0.46135578031173,50.15986092109 +-0.458462970880564,50.2497541369356 +-0.318277392920372,50.247809800721 +-0.321433027719573,50.1579227376769 +-0.46135578031173,50.15986092109 + + + + + +TV13 +#labelStyle + +-0.389875138028081,50.2038625845925 + + + + +TV14 + +Small Square TV14 Boundry Box +#Line2 + + +1 + +-0.458462680837331,50.24976312708 +-0.455555173333311,50.3396548207222 +-0.315105409924992,50.3377043080207 +-0.318277076525428,50.247818790249 +-0.458462680837331,50.24976312708 + + + + + +TV14 +#labelStyle + +-0.386842916278554,50.2937610135627 + + + + +TV15 + +Small Square TV15 Boundry Box +#Line2 + + +1 + +-0.455554881815261,50.3396638107144 +-0.452632578692143,50.4295539821788 +-0.311917287139298,50.4275972697571 +-0.315105091921404,50.3377132973941 +-0.455554881815261,50.3396638107144 + + + + + +TV15 +#labelStyle + +-0.383795276996553,50.3836579088629 + + + + +TV16 + +Small Square TV16 Boundry Box +#Line2 + + +1 + +-0.452632285689476,50.4295629720188 +-0.449695088507216,50.5194516213371 +-0.308712917197608,50.5174886857989 +-0.311916967516378,50.427606258976 +-0.452632285689476,50.4295629720188 + + + + + +TV16 +#labelStyle + +-0.380732117740916,50.4735532704423 + + + + +TV17 + +Small Square TV17 Boundry Box +#Line2 + + +1 + +-0.449694794010041,50.5194606110249 +-0.446742603424652,50.6093477382345 +-0.305492191748531,50.6073785560189 +-0.308712595944571,50.5174976748632 +-0.449694794010041,50.5194606110249 + + + + + +TV17 +#labelStyle + +-0.377653335130901,50.5634470982552 + + + + +TV18 + +Small Square TV18 Boundry Box +#Line2 + + +1 + +-0.446742307422989,50.6093567277701 +-0.443775023176261,50.6992423329147 +-0.30225500144375,50.6972668802944 +-0.305491868854492,50.6073875449286 +-0.446742307422989,50.6093567277701 + + + + + +TV18 +#labelStyle + +-0.374558824835517,50.6533393922613 + + + + +TV19 + +Small Square TV19 Boundry Box +#Line2 + + +1 + +-0.443774725660036,50.699251322298 +-0.440792246569107,50.7891354054267 +-0.299001235926663,50.7871536585069 +-0.302254676897723,50.6972758690495 +-0.443774725660036,50.699251322298 + + + + + +TV19 +#labelStyle + +-0.3714484815627,50.7432301524253 + + + + +TV20 + +Small Square TV20 Boundry Box +#Line2 + + +1 + +-0.330791815518688,49.8882251084802 +-0.327683621538133,49.9781168058418 +-0.188298352300565,49.9760234298199 +-0.191665320088284,49.8861383454455 +-0.330791815518688,49.8882251084802 + + + + + +TV20 +#labelStyle + +-0.259602651682817,49.9321513982909 + + + + +TV21 + +Small Square TV21 Boundry Box +#Line2 + + +1 + +-0.327683309903362,49.9781257958333 +-0.324559397393166,50.0680159483575 +-0.184914021633607,50.0659159341361 +-0.188298014720624,49.9760324191488 +-0.327683309903362,49.9781257958333 + + + + + +TV21 +#labelStyle + +-0.256356546440312,50.0220480660429 + + + + +TV22 + +Small Square TV22 Boundry Box +#Line2 + + +1 + +-0.324559084181225,50.0680249381945 +-0.321419349618892,50.1579135457304 +-0.18151255184976,50.1558068685866 +-0.184913682345376,50.065924923308 +-0.324559084181225,50.0680249381945 + + + + + +TV22 +#labelStyle + +-0.25309401366169,50.1119431766523 + + + + +TV23 + +Small Square TV23 Boundry Box +#Line2 + + +1 + +-0.321419034819379,50.1579225354129 +-0.318263373740137,50.2478095978149 +-0.178093829808237,50.245696232853 +-0.181512210841976,50.1558158576015 +-0.321419034819379,50.1579225354129 + + + + + +TV23 +#labelStyle + +-0.249814945029117,50.2018367298868 + + + + +TV24 + +Small Square TV24 Boundry Box +#Line2 + + +1 + +-0.318263057342558,50.2478185873428 +-0.315091364328744,50.33770410447 +-0.174657741336433,50.3355840266202 +-0.178093487069536,50.2457052217109 +-0.318263057342558,50.2478185873428 + + + + + +TV24 +#labelStyle + +-0.246519231237879,50.2917287255179 + + + + +TV25 + +Small Square TV25 Boundry Box +#Line2 + + +1 + +-0.315091046322507,50.3377130938434 +-0.3119032149928,50.4275970655595 +-0.171204171218276,50.4254702495763 +-0.174657396855345,50.335593015321 +-0.315091046322507,50.3377130938434 + + + + + +TV25 +#labelStyle + +-0.243206761985249,50.3816191633215 + + + + +TV26 + +Small Square TV26 Boundry Box +#Line2 + + +1 + +-0.311902895367218,50.4276060547783 +-0.308698818365733,50.5174884809519 +-0.167733003182415,50.5153549014125 +-0.171203824983227,50.4254792381201 +-0.311902895367218,50.4276060547783 + + + + + +TV26 +#labelStyle + +-0.239877425959205,50.4715080430772 + + + + +TV27 + +Small Square TV27 Boundry Box +#Line2 + + +1 + +-0.308698497110021,50.5174974700161 +-0.305478066095253,50.60737835052 +-0.164244119890251,50.6052379818228 +-0.167732655181725,50.5153638897991 +-0.308698497110021,50.5174974700161 + + + + + +TV27 +#labelStyle + +-0.236531110826995,50.5613953645683 + + + + +TV28 + +Small Square TV28 Boundry Box +#Line2 + + +1 + +-0.305477743198525,50.6073873394297 +-0.302240848832135,50.6972666741411 +-0.1607374029238,50.695119490504 +-0.164243770112132,50.6052469700523 +-0.305477743198525,50.6073873394297 + + + + + +TV28 +#labelStyle + +-0.233167703223538,50.6512811275818 + + + + +TV29 + +Small Square TV29 Boundry Box +#Line2 + + +1 + +-0.302240524283406,50.6972756628962 +-0.298987056218862,50.7871534516969 +-0.157212732773396,50.7849994271554 +-0.160737051356355,50.6951284785762 +-0.302240524283406,50.6972756628962 + + + + + +TV29 +#labelStyle + +-0.229787088739678,50.7411653319084 + + + + +TV30 + +Small Square TV30 Boundry Box +#Line2 + + +1 + +-0.191651406871609,49.8861381284039 +-0.188284413209335,49.9760232120904 +-0.0489161714662353,49.973762451849 +-0.0525418278393301,49.8838845093009 +-0.191651406871609,49.8861381284039 + + + + + +TV30 +#labelStyle + +-0.120341317076965,49.9299775396603 + + + + +TV31 + +Small Square TV31 Boundry Box +#Line2 + + +1 + +-0.188284075626799,49.9760322014193 +-0.184900056534587,50.0659157157163 +-0.0452718203858165,50.0636477871168 +-0.048915807949689,49.9737714404624 +-0.188284075626799,49.9760322014193 + + + + + +TV31 +#labelStyle + +-0.116835788501027,50.0198673161649 + + + + +TV32 + +Small Square TV32 Boundry Box +#Line2 + + +1 + +-0.184899717243748,50.0659247048881 +-0.181498560611437,50.1558066494738 +-0.0416090155896735,50.1535315258248 +-0.0452714550299508,50.0636567755705 +-0.184899717243748,50.0659247048881 + + + + + +TV32 +#labelStyle + +-0.113312521570628,50.1097555099058 + + + + +TV33 + +Small Square TV33 Boundry Box +#Line2 + + +1 + +-0.181498219601033,50.1558156384886 +-0.178079812298233,50.2456960130446 +-0.0379276352820328,50.2434136674684 +-0.0416086483823644,50.1535405141188 +-0.181498219601033,50.1558156384886 + + + + + +TV33 +#labelStyle + +-0.109771399346134,50.199642120472 + + + + +TV34 + +Small Square TV34 Boundry Box +#Line2 + + +1 + +-0.178079469556898,50.2457050019024 +-0.174643697421496,50.3355838061137 +-0.0342275565566212,50.3332942115446 +-0.0379272662110457,50.2434226556027 +-0.178079469556898,50.2457050019024 + + + + + +TV34 +#labelStyle + +-0.10621230382271,50.2895271474549 + + + + +TV35 + +Small Square TV35 Boundry Box +#Line2 + + +1 + +-0.174643352937761,50.3355927948144 +-0.171190100764273,50.425470028369 +-0.03050865538413,50.4231731575516 +-0.0342271856096091,50.333303199519 +-0.174643352937761,50.3355927948144 + + + + + +TV35 +#labelStyle + +-0.102635115918303,50.3794105904482 + + + + +TV36 + +Small Square TV36 Boundry Box +#Line2 + + +1 + +-0.171189754526563,50.4254790169127 +-0.16771890605432,50.5153546795018 +-0.0267708065995082,50.5130505049894 +-0.0305082825486328,50.4231821453663 +-0.171189754526563,50.4254790169127 + + + + + +TV36 +#labelStyle + +-0.0990397154614751,50.4692924490482 + + + + +TV37 + +Small Square TV37 Boundry Box +#Line2 + + +1 + +-0.167718558050956,50.5153636678883 +-0.164229995952143,50.605237759206 +-0.0230138838890848,50.6029262533588 +-0.0267704318629527,50.5130594926442 +-0.167718558050956,50.5153636678883 + + + + + +TV37 +#labelStyle + +-0.0954259811790516,50.5591727228529 + + + + +TV38 + +Small Square TV38 Boundry Box +#Line2 + + +1 + +-0.164229646171336,50.6052467474353 +-0.160723252038849,50.6951192671783 +-0.0192377597775104,50.6928004021618 +-0.0230135072387823,50.6029352408536 +-0.164229646171336,50.6052467474353 + + + + + +TV38 +#labelStyle + +-0.0917937906836191,50.6490514114627 + + + + +TV39 + +Small Square TV39 Boundry Box +#Line2 + + +1 + +-0.160722900468703,50.6951282552505 +-0.15719855480386,50.7849992031183 +-0.0154423056145235,50.7826729509011 +-0.0192373812006535,50.6928093894966 +-0.160722900468703,50.6951282552505 + + + + + +TV39 +#labelStyle + +-0.088143020460839,50.7389285144795 + + + + +TV40 + +Small Square TV40 Boundry Box +#Line2 + + +1 + +-0.0525279163793566,49.8838842755745 +-0.0489022341432425,49.973762217382 +0.0904476742237165,49.9713341239489 +0.0865634488715219,49.8814638511219 +-0.0525279163793566,49.8838842755745 + + + + + +TV40 +#labelStyle + +0.018902392933086,49.9276365693615 + + + + +TV41 + +Small Square TV41 Boundry Box +#Line2 + + +1 + +-0.0489018706241031,49.9737712059953 +-0.0452578570666753,50.0636475519064 +0.0943519250134505,50.061211760268 +0.0904480636648509,49.9713431117937 +-0.0489018706241031,49.9737712059953 + + + + + +TV41 +#labelStyle + +0.0226672289496161,50.0175189255383 + + + + +TV42 + +Small Square TV42 Boundry Box +#Line2 + + +1 + +-0.0452574917082039,50.06365654036 +-0.041595026142978,50.1535312898682 +0.0982759430195802,50.1510877713674 +0.0943523164248252,50.0612207479504 +-0.0452574917082039,50.06365654036 + + + + + +TV42 +#labelStyle + +0.0264511130855698,50.1073996713698 + + + + +TV43 + +Small Square TV43 Boundry Box +#Line2 + + +1 + +-0.0415946589330494,50.1535402781622 +-0.0379136195755114,50.2434134307629 +0.102219858680498,50.2409621565423 +0.0982763364141794,50.1510967588872 +-0.0415946589330494,50.1535402781622 + + + + + +TV43 +#labelStyle + +0.0302541708905274,50.1972788062527 + + + + +TV44 + +Small Square TV44 Boundry Box +#Line2 + + +1 + +-0.0379132505018913,50.2434224188971 +-0.0342135144571301,50.3332939740872 +0.106183803623611,50.330834915088 +0.102220254071425,50.2409711438995 +-0.0379132505018913,50.2434224188971 + + + + + +TV44 +#labelStyle + +0.0340765290574333,50.2871563295843 + + + + +TV45 + +Small Square TV45 Boundry Box +#Line2 + + +1 + +-0.0342131435074716,50.3333029620617 +-0.0304945867576445,50.4231729193397 +0.110167910678756,50.4207060462993 +0.106184201024088,50.3308439022825 +-0.0342131435074716,50.3333029620617 + + + + + +TV45 +#labelStyle + +0.0379183154354882,50.3770322407626 + + + + +TV46 + +Small Square TV46 Boundry Box +#Line2 + + +1 + +-0.0304942139194878,50.4231819071543 +-0.0267567113111149,50.51305026602 +0.114172313891805,50.5105755494705 +0.110168310102127,50.420715033331 +-0.0304942139194878,50.4231819071543 + + + + + +TV46 +#labelStyle + +0.0417796590432091,50.4669065391864 + + + + +TV47 + +Small Square TV47 Boundry Box +#Line2 + + +1 + +-0.0267563365718864,50.5130592536747 +-0.0229997618029737,50.6029260136291 +0.118197148538443,50.6004434238953 +0.114172715351535,50.5105845363394 +-0.0267563365718864,50.5130592536747 + + + + + +TV47 +#labelStyle + +0.0456606900816779,50.5567792242544 + + + + +TV48 + +Small Square TV48 Boundry Box +#Line2 + + +1 + +-0.0229993851499845,50.6029350011239 +-0.0192236107569658,50.6928001616689 +0.122242551138153,50.6903096688666 +0.118197552048122,50.6004524106013 +-0.0229993851499845,50.6029350011239 + + + + + +TV48 +#labelStyle + +0.0495615399479619,50.6466502953659 + + + + +TV49 + +Small Square TV49 Boundry Box +#Line2 + + +1 + +-0.0192232321774088,50.6928091490037 +-0.015428129521917,50.7826727096422 +0.126308659468374,50.780174283676 +0.122242956711497,50.6903186554096 +-0.0192232321774088,50.6928091490037 + + + + + +TV49 +#labelStyle + +0.0534823412487249,50.7365197519199 + + + + +TV50 + +Small Square TV50 Boundry Box +#Line2 + + +1 + +0.0865773584450946,49.881463600716 +0.0904616096479229,49.9713338727495 +0.2297918798424,49.9687385009158 +0.225649213604594,49.8788764253735 +0.0865773584450946,49.881463600716 + + + + + +TV50 +#labelStyle + +0.158127177124029,49.9251285401494 + + + + +TV51 + +Small Square TV51 Boundry Box +#Line2 + + +1 + +0.0904619990916495,49.9713428605943 +0.0943658864213067,50.0612115082723 +0.233955901072465,50.0586079087205 +0.229792295195255,49.9687474879393 +0.0904619990916495,49.9713428605943 + + + + + +TV51 +#labelStyle + +0.162151196155798,50.0150029472397 + + + + +TV52 + +Small Square TV52 Boundry Box +#Line2 + + +1 + +0.0943662778352862,50.0612204959546 +0.0982899305423781,50.1510875185723 +0.238141001843793,50.1484756606821 +0.233956318526364,50.0586168955785 +0.0943662778352862,50.0612204959546 + + + + + +TV52 +#labelStyle + +0.166195571941275,50.1048757144452 + + + + +TV53 + +Small Square TV53 Boundry Box +#Line2 + + +1 + +0.0982903239395956,50.151096506092 +0.102233872450394,50.2409619029449 +0.242347321224156,50.2383417558826 +0.238141421412578,50.1484846473745 +0.0982903239395956,50.151096506092 + + + + + +TV53 +#labelStyle + +0.170260438627271,50.1947468409566 + + + + +TV54 + +Small Square TV54 Boundry Box +#Line2 + + +1 + +0.102234267843952,50.240970890302 +0.106197843773633,50.3308346606853 +0.246574999548677,50.3282061934013 +0.242347742921799,50.2383507424092 +0.102234267843952,50.240970890302 + + + + + +TV54 +#labelStyle + +0.174345931581949,50.2846163259637 + + + + +TV55 + +Small Square TV55 Boundry Box +#Line2 + + +1 + +0.106198241176754,50.3308436478797 +0.110181977342811,50.4207057910882 +0.250824178434121,50.4180689723158 +0.246575423389273,50.3282151797622 +0.106198241176754,50.3308436478797 + + + + + +TV55 +#labelStyle + +0.178452187408591,50.3744841686548 + + + + +TV56 + +Small Square TV56 Boundry Box +#Line2 + + +1 + +0.11018237676884,50.4207147781199 +0.114186407204687,50.510575293448 +0.255095000793392,50.507930091701 +0.250824604431899,50.4180779585108 +0.11018237676884,50.4207147781199 + + + + + +TV56 +#labelStyle + +0.18257934395955,50.4643503682171 + + + + +TV57 + +Small Square TV57 Boundry Box +#Line2 + + +1 + +0.114186808667089,50.5105842803168 +0.118211268635843,50.6004431670584 +0.25938761085022,50.5977895506291 +0.255095428962707,50.5079390777299 +0.114186808667089,50.5105842803168 + + + + + +TV57 +#labelStyle + +0.186727540350392,50.5542149238363 + + + + +TV58 + +Small Square TV58 Boundry Box +#Line2 + + +1 + +0.118211672148207,50.6004521537642 +0.122256698156664,50.690309411212 +0.26370215415405,50.6876473481696 +0.25938804120556,50.597798536492 +0.118211672148207,50.6004521537642 + + + + + +TV58 +#labelStyle + +0.190896916974229,50.6440778346959 + + + + +TV59 + +Small Square TV59 Boundry Box +#Line2 + + +1 + +0.122257103732706,50.6903183977549 +0.126322833545501,50.7801740252008 +0.26803877759514,50.7775034833889 +0.263702586710039,50.6876563338663 +0.122257103732706,50.6903183977549 + + + + + +TV59 +#labelStyle + +0.195087615516255,50.7339390999781 + + + + +TV60 + +Small Square TV60 Boundry Box +#Line2 + + +1 + +0.225663121162178,49.8788761582937 +0.229805813237385,49.9687382329898 +0.3691151416251,49.9659756413061 +0.364714171069497,49.8761222902577 +0.225663121162178,49.8788761582937 + + + + + +TV60 +#labelStyle + +0.297331735390141,49.9224535085296 + + + + +TV61 + +Small Square TV61 Boundry Box +#Line2 + + +1 + +0.22980622859283,49.9687472200133 +0.233969860437745,50.0586076399452 +0.373538795474733,50.0558362913877 +0.369115582875954,49.9659846274555 +0.22980622859283,49.9687472200133 + + + + + +TV61 +#labelStyle + +0.301614804491827,50.0123194381188 + + + + +TV62 + +Small Square TV62 Boundry Box +#Line2 + + +1 + +0.233970277894247,50.0586166268031 +0.238154987310538,50.1484753910544 +0.377984839937225,50.1456952530429 +0.37353923895731,50.0558452773683 +0.233970277894247,50.0586166268031 + + + + + +TV62 +#labelStyle + +0.305919537773705,50.1021836963289 + + + + +TV63 + +Small Square TV63 Boundry Box +#Line2 + + +1 + +0.23815540688194,50.1484843777466 +0.242361332924401,50.2383414853991 +0.382453422695626,50.2355525251261 +0.377985285666226,50.1457042388545 +0.23815540688194,50.1484843777466 + + + + + +TV63 +#labelStyle + +0.310246077966235,50.192046282131 + + + + +TV64 + +Small Square TV64 Boundry Box +#Line2 + + +1 + +0.242361754624673,50.2383504719257 +0.246589037615324,50.328205922059 +0.386944692778473,50.3254081064877 +0.382453870685886,50.2355615107687 +0.242361754624673,50.2383504719257 + + + + + +TV64 +#labelStyle + +0.314594569099032,50.2819071944933 + + + + +TV65 + +Small Square TV65 Boundry Box +#Line2 + + +1 + +0.246589461458564,50.3282149084198 +0.250838243000952,50.4180687001114 +0.391458800574971,50.4152619959737 +0.386945143044964,50.3254170919612 +0.246589461458564,50.3282149084198 + + + + + +TV65 +#labelStyle + +0.31896515651551,50.371766432381 + + + + +TV66 + +Small Square TV66 Boundry Box +#Line2 + + +1 + +0.250838669001386,50.4180776863063 +0.255109091995075,50.5079298186313 +0.395995897850366,50.5051141924258 +0.391459253132799,50.415270981278 +0.250838669001386,50.4180776863063 + + + + + +TV66 +#labelStyle + +0.323357986887714,50.4616239947558 + + + + +TV67 + +Small Square TV67 Boundry Box +#Line2 + + +1 + +0.25510952016706,50.5079388046601 +0.259401728822315,50.5977892766908 +0.400556137761538,50.5949646946807 +0.395996352714777,50.5051231775607 +0.25510952016706,50.5079388046601 + + + + + +TV67 +#labelStyle + +0.327773208231357,50.5514798805758 + + + + +TV68 + +Small Square TV68 Boundry Box +#Line2 + + +1 + +0.259402159180339,50.5977982625535 +0.263716299033022,50.6876470733593 +0.405139674872805,50.6848135015702 +0.400556594947917,50.5949736796461 +0.259402159180339,50.5977982625535 + + + + + +TV68 +#labelStyle + +0.332210969921068,50.6413340887953 + + + + +TV69 + +Small Square TV69 Boundry Box +#Line2 + + +1 + +0.263716731591708,50.6876560590559 +0.268052949518363,50.7775032077034 +0.40974666517194,50.774660611921 +0.405140134396682,50.6848224863661 +0.263716731591708,50.6876560590559 + + + + + +TV69 +#labelStyle + +0.33667142270584,50.7311866183648 + + + + +TV70 + +Small Square TV70 Boundry Box +#Line2 + + +1 + +0.364728076481624,49.8761220065099 +0.369129072860547,49.9659753566595 +0.508416157045829,49.9630456074313 +0.503757027200845,49.8732015077092 +0.364728076481624,49.8761220065099 + + + + + +TV70 +#labelStyle + +0.436514768819507,49.9196115347537 + + + + +TV71 + +Small Square TV71 Boundry Box +#Line2 + + +1 + +0.369129514113991,49.9659843428088 +0.373552752666265,50.0558360058389 +0.513099297156403,50.0528969709613 +0.508416624180114,49.9630545926538 +0.369129514113991,49.9659843428088 + + + + + +TV71 +#labelStyle + +0.441056746539218,50.0094684587947 + + + + +TV72 + +Small Square TV72 Boundry Box +#Line2 + + +1 + +0.373553196151445,50.0558449918194 +0.377998823215885,50.1456949665885 +0.517806137620888,50.1427466115243 +0.513099766652957,50.0529059560116 +0.373553196151445,50.0558449918194 + + + + + +TV72 +#labelStyle + +0.445621694580862,50.09932367801 + + + + +TV73 + +Small Square TV73 Boundry Box +#Line2 + + +1 + +0.377999268947502,50.1457039524001 +0.382467432193316,50.2355522377627 +0.522536834722638,50.2325945277341 +0.517806609495269,50.1427555964022 +0.377999268947502,50.1457039524001 + + + + + +TV73 +#labelStyle + +0.450209764244104,50.189177191138 + + + + +TV74 + +Small Square TV74 Boundry Box +#Line2 + + +1 + +0.382467880186204,50.2355612234053 +0.386958728627965,50.3254078182119 +0.527291546168435,50.3224407181978 +0.522537308990545,50.2326035124394 +0.382467880186204,50.2355612234053 + + + + + +TV74 +#labelStyle + +0.454821108205377,50.2790289969119 + + + + +TV75 + +Small Square TV75 Boundry Box +#Line2 + + +1 + +0.386959178897097,50.3254168036854 +0.391472862909912,50.4152617067822 +0.532070431104538,50.4122851815167 +0.52729202284571,50.3224497027306 +0.386959178897097,50.3254168036854 + + + + + +TV75 +#labelStyle + +0.459455880533388,50.3688790940595 + + + + +TV76 + +Small Square TV76 Boundry Box +#Line2 + + +1 + +0.391473315470395,50.4152706920865 +0.396009986805288,50.5051139023151 +0.536873650132949,50.5021279162849 +0.532070910207169,50.4122941658767 +0.391473315470395,50.4152706920865 + + + + + +TV76 +#labelStyle + +0.464114236704837,50.4587274813032 + + + + +TV77 + +Small Square TV77 Boundry Box +#Line2 + + +1 + +0.396010441672368,50.5051228874499 +0.400570253471866,50.5949644036472 +0.541701365327895,50.5919689210896 +0.536874131677069,50.5021369004719 +0.396010441672368,50.5051228874499 + + + + + +TV77 +#labelStyle + +0.468796333620343,50.5485741573599 + + + + +TV78 + +Small Square TV78 Boundry Box +#Line2 + + +1 + +0.400570710660928,50.5949733886126 +0.405153817474865,50.6848132096105 +0.546553740252547,50.6818081945108 +0.541701849329785,50.5919779051035 +0.400570710660928,50.5949733886126 + + + + + +TV78 +#labelStyle + +0.473502329620597,50.6384191209402 + + + + +TV79 + +Small Square TV79 Boundry Box +#Line2 + + +1 + +0.405154277001437,50.6848221944063 +0.409760834802967,50.7746603190316 +0.551430939975955,50.7716457351212 +0.54655422672864,50.6818171783515 +0.405154277001437,50.6848221944063 + + + + + +TV79 +#labelStyle + +0.478232384502727,50.7282623707486 + + + + +TV80 + +Small Square TV80 Boundry Box +#Line2 + + +1 + +0.50377093033817,49.8732012072999 +0.50843008599155,49.9630453060706 +0.647693624893706,49.959948465354 +0.64277648923378,49.870114143391 +0.50377093033817,49.8732012072999 + + + + + +TV80 +#labelStyle + +0.57567497977006,49.9166026828153 + + + + +TV81 + +Small Square TV81 Boundry Box +#Line2 + + +1 + +0.508430553128423,49.9630542912929 +0.513113252043147,50.0528966686455 +0.652636096383497,50.0497900139066 +0.647694117896002,49.9599574495968 +0.508430553128423,49.9630542912929 + + + + + +TV81 +#labelStyle + +0.580475716163582,50.0064500736505 + + + + +TV82 + +Small Square TV82 Boundry Box +#Line2 + + +1 + +0.513113721542302,50.0529056536956 +0.51782011857956,50.1427463082499 +0.657603576560632,50.139629802998 +0.65263659187847,50.0497989979735 +0.513113721542302,50.0529056536956 + + + + + +TV82 +#labelStyle + +0.585300727659284,50.096295724265 + + + + +TV83 + +Small Square TV83 Boundry Box +#Line2 + + +1 + +0.517820590456555,50.1427552931276 +0.522550841885003,50.2325942234973 +0.662596230292936,50.2294678309874 +0.657604074564694,50.1396387868888 +0.517820590456555,50.1427552931276 + + + + + +TV83 +#labelStyle + +0.590150174110736,50.1861396331505 + + + + +TV84 + +Small Square TV84 Boundry Box +#Line2 + + +1 + +0.522551316155537,50.2326032082026 +0.527305579667124,50.3224404129953 +0.667614223949385,50.3193040962258 +0.662596730822646,50.2294768147021 +0.522551316155537,50.2326032082026 + + + + + +TV84 +#labelStyle + +0.595024216825682,50.2759817987917 + + + + +TV85 + +Small Square TV85 Boundry Box +#Line2 + + +1 + +0.527306056347039,50.3224493975279 +0.532084491073057,50.4122848753448 +0.672657725417031,50.4091385970552 +0.667614727021458,50.3193130797641 +0.527306056347039,50.3224493975279 + + + + + +TV85 +#labelStyle + +0.59992301858241,50.3658222196655 + + + + +TV86 + +Small Square TV86 Boundry Box +#Line2 + + +1 + +0.532084970178341,50.4122938597046 +0.536887736705686,50.5021276091398 +0.677726904118141,50.4989713318085 +0.672658231048331,50.409147580417 +0.532084970178341,50.4122938597046 + + + + + +TV86 +#labelStyle + +0.60484674364634,50.4556608942412 + + + + +TV87 + +Small Square TV87 Boundry Box +#Line2 + + +1 + +0.536888218252474,50.5021365933267 +0.541715478640131,50.5919686129677 +0.682821931027582,50.5888022988095 +0.677727412325689,50.4989803149936 +0.536888218252474,50.5021365933267 + + + + + +TV87 +#labelStyle + +0.60979555778685,50.5454978209801 + + + + +TV88 + +Small Square TV88 Boundry Box +#Line2 + + +1 + +0.541715962644702,50.5919775969816 +0.546567880440461,50.6818078854085 +0.687942978690433,50.6786314963723 +0.682822441828551,50.5888112818178 +0.541715962644702,50.5919775969816 + + + + + +TV88 +#labelStyle + +0.614769628294324,50.6353329983353 + + + + +TV89 + +Small Square TV89 Boundry Box +#Line2 + + +1 + +0.546568366919249,50.6818168692492 +0.551445107176633,50.7716454250347 +0.693090221239851,50.7684589228011 +0.68794349210216,50.6786404792035 +0.546568366919249,50.6818168692492 + + + + + +TV89 +#labelStyle + +0.619769123997434,50.7251664247511 + + + + +TV90 + +Small Square TV90 Boundry Box +#Line2 + + +1 + +0.642790389967097,49.8701138263269 +0.647707551419648,49.9599481472858 +0.786946245349119,49.9566842848824 +0.781771265779315,49.8668602666895 +0.642790389967097,49.8701138263269 + + + + + +TV90 +#labelStyle + +0.714811071945438,49.913427020445 + + + + +TV91 + +Small Square TV91 Boundry Box +#Line2 + + +1 + +0.647708044424531,49.9599571315285 +0.652650048834549,50.0497896948305 +0.79214788482893,50.0465154904573 +0.786946764203162,49.9566932680927 +0.647708044424531,49.9599571315285 + + + + + +TV91 +#labelStyle + +0.719870408591326,50.0032643508293 + + + + +TV92 + +Small Square TV92 Boundry Box +#Line2 + + +1 + +0.652650544332121,50.0497986788973 +0.657617555067554,50.1396294829102 +0.797375839845031,50.1363448981265 +0.792148406305909,50.046524473488 +0.652650544332121,50.0497986788973 + + + + + +TV92 +#labelStyle + +0.724955323681598,50.0930999036526 + + + + +TV93 + +Small Square TV93 Boundry Box +#Line2 + + +1 + +0.657618053074228,50.139638466801 +0.662610234987345,50.2294675098843 +0.802630283833027,50.2261725059816 +0.797376363962211,50.1363538809773 +0.657618053074228,50.139638466801 + + + + + +TV93 +#labelStyle + +0.730065985607581,50.1829336771467 + + + + +TV94 + +Small Square TV94 Boundry Box +#Line2 + + +1 + +0.662610735519681,50.2294764935989 +0.667628254963766,50.3193037741034 +0.807911391807174,50.3159983121032 +0.802630810607828,50.2261814886523 +0.662610735519681,50.2294764935989 + + + + + +TV94 +#labelStyle + +0.735202564291957,50.2727656695339 + + + + +TV95 + +Small Square TV95 Boundry Box +#Line2 + + +1 + +0.667628758038477,50.3193127576416 +0.672671782884739,50.4091382739097 +0.813219340378169,50.4058223145606 +0.807911921257179,50.3160072945936 +0.667628758038477,50.3193127576416 + + + + + +TV95 +#labelStyle + +0.740365231205996,50.3625958790266 + + + + +TV96 + +Small Square TV96 Boundry Box +#Line2 + + +1 + +0.672672288518691,50.4091472572714 +0.677740988173415,50.4989710076362 +0.818554307771166,50.4956445114119 +0.813219872521118,50.4058312968706 +0.672672288518691,50.4091472572714 + + + + + +TV96 +#labelStyle + +0.745554159387023,50.4524243038272 + + + + +TV97 + +Small Square TV97 Boundry Box +#Line2 + + +1 + +0.677741496383628,50.4989799908212 +0.682836041805548,50.5888019736064 +0.823916473844049,50.5854649007031 +0.818554842624964,50.4956534935412 +0.677741496383628,50.4989799908212 + + + + + +TV97 +#labelStyle + +0.750769523456125,50.5422509421275 + + + + +TV98 + +Small Square TV98 Boundry Box +#Line2 + + +1 + +0.682836552609196,50.5888109566146 +0.687957116327117,50.6786311701345 +0.829306020105953,50.6752834804684 +0.823917011426763,50.5854738826516 +0.682836552609196,50.5888109566146 + + + + + +TV98 +#labelStyle + +0.756011499636098,50.6320757921089 + + + + +TV99 + +Small Square TV99 Boundry Box +#Line2 + + +1 + +0.687957629741536,50.6786401529656 +0.693104385872181,50.7684585955247 +0.834723129736035,50.7651002487293 +0.829306560435819,50.6752924622358 +0.687957629741536,50.6786401529656 + + + + + +TV99 +#labelStyle + +0.761280265769636,50.7218988519417 + + + + + +WA + +Large Square WA Boundry Box +#Line1 + + +1 + +-3.00120435768874,49.6506715122516 +-3.00123212800596,50.5499236322392 +-1.59016759967704,50.5413897321959 +-1.61629947762704,49.6424037284609 +-3.00120435768874,49.6506715122516 + + + + + +WA00 + +Small Square WA00 Boundry Box +#Line2 + + +1 + +-3.00120435768874,49.6506715122516 +-3.00120707268857,49.7405949274282 +-2.86245218592938,49.7405133689641 +-2.86270526111388,49.6505902108797 +-3.00120435768874,49.6506715122516 + + + + + +WA00 +#labelStyle + +-2.93188528077592,49.6956179132001 + + + + +WA01 + +Small Square WA01 Boundry Box +#Line2 + + +1 + +-3.00120707296077,49.740603920599 +-3.00120980145015,49.8305259343628 +-2.86219781005146,49.8304441178356 +-2.8624521605557,49.7405223621091 +-3.00120707296077,49.740603920599 + + + + + +WA01 +#labelStyle + +-2.93175975981844,49.7855495575504 + + + + +WA02 + +Small Square WA02 Boundry Box +#Line2 + + +1 + +-3.0012098017237,49.8305349273934 +-3.00121254379112,49.9204555405397 +-2.86194215037723,49.9203734649974 +-2.86219778454982,49.8304531108403 +-3.0012098017237,49.8305349273934 + + + + + +WA02 +#labelStyle + +-2.93163360575266,49.8754798005117 + + + + +WA03 + +Small Square WA03 Boundry Box +#Line2 + + +1 + +-3.00121254406603,49.9204645334303 +-3.00121529980079,50.0103837467677 +-2.86168519848163,50.0103014112518 +-2.86194212474679,49.920382457862 +-3.00121254406603,49.9204645334303 + + + + + +WA03 +#labelStyle + +-2.93150681442898,49.9654086428845 + + + + +WA04 + +Small Square WA04 Boundry Box +#Line2 + + +1 + +-3.00121530007708,50.0103927395184 +-3.00121806956928,50.1003105538696 +-2.86142694586312,50.1002279574149 +-2.86168517272154,50.0103104039764 +-3.00121530007708,50.0103927395184 + + + + + +WA04 +#labelStyle + +-2.93137938166016,50.055336085483 + + + + +WA05 + +Small Square WA05 Boundry Box +#Line2 + + +1 + +-3.00121806984695,50.1003195464804 +-3.00122085318753,50.1902359626817 +-2.86116738394283,50.1901531043163 +-2.86142691997253,50.1002369499996 +-3.00121806984695,50.1003195464804 + + + + + +WA05 +#labelStyle + +-2.93125130322093,50.145262129135 + + + + +WA06 + +Small Square WA06 Boundry Box +#Line2 + + +1 + +-3.00122085346659,50.1902449551527 +-3.00122365074729,50.2801599740541 +-2.86090650406365,50.2800768527991 +-2.86116735792087,50.190162096761 +-3.00122085346659,50.1902449551527 + + + + + +WA06 +#labelStyle + +-2.93112257484754,50.2351867746822 + + + + +WA07 + +Small Square WA07 Boundry Box +#Line2 + + +1 + +-3.00122365102775,50.2801689663854 +-3.00122646234118,50.3700825888505 +-2.86064429748942,50.3699992037204 +-2.86090647790947,50.2800858451041 +-3.00122365102775,50.2801689663854 + + + + + +WA07 +#labelStyle + +-2.93099319223731,50.3251100229797 + + + + +WA08 + +Small Square WA08 Boundry Box +#Line2 + + +1 + +-3.00122646262304,50.3700915810422 +-3.00122928806263,50.4600038079485 +-2.86038075540398,50.4599201579508 +-2.86064427120213,50.3700081958857 +-3.00122646262304,50.3700915810422 + + + + + +WA08 +#labelStyle + +-2.93086315104823,50.4150318748965 + + + + +WA09 + +Small Square WA09 Boundry Box +#Line2 + + +1 + +-3.00122928834592,50.4600128000007 +-3.00123212800596,50.5499236322392 +-2.86011586891025,50.5498397163743 +-2.86038072898269,50.4599291499764 +-3.00122928834592,50.4600128000007 + + + + + +WA09 +#labelStyle + +-2.93073244689847,50.5049523313153 + + + + +WA10 + +Small Square WA10 Boundry Box +#Line2 + + +1 + +-2.86269140986122,49.650590194464 +-2.86243830909543,49.7405133524965 +-2.72368469996145,49.7402655924957 +-2.72419358263006,49.6503432160662 +-2.86269140986122,49.650590194464 + + + + + +WA10 +#labelStyle + +-2.79324504907867,49.6954534886538 + + + + +WA11 + +Small Square WA11 Boundry Box +#Line2 + + +1 + +-2.86243828371918,49.7405223456415 +-2.86218390750474,49.8304441013158 +-2.72317320208845,49.8301955567562 +-2.72368464894015,49.7402745855624 +-2.86243828371918,49.7405223456415 + + + + + +WA11 +#labelStyle + +-2.79286304633386,49.7853846125692 + + + + +WA12 + +Small Square WA12 Boundry Box +#Line2 + + +1 + +-2.86218388200052,49.8304530943206 +-2.86192822198801,49.9203734484253 +-2.72265912298939,49.920124116409 +-2.72317315080987,49.8302045496823 +-2.86218388200052,49.8304530943206 + + + + + +WA12 +#labelStyle + +-2.79247911723149,49.8753143331772 + + + + +WA13 + +Small Square WA13 Boundry Box +#Line2 + + +1 + +-2.86192819635497,49.9203824412899 +-2.8616712441193,50.0103013946272 +-2.72214244572481,50.0100512722363 +-2.72265907145184,49.9201331091947 +-2.86192819635497,49.9203824412899 + + + + + +WA13 +#labelStyle + +-2.79209324914536,49.9652426512647 + + + + +WA14 + +Small Square WA14 Boundry Box +#Line2 + + +1 + +-2.86167121835661,50.0103103873518 +-2.86141296539623,50.1002279407376 +-2.72162315320153,50.0999770250336 +-2.7221423939266,50.0100602648817 +-2.86167121835661,50.0103103873518 + + + + + +WA14 +#labelStyle + +-2.79170542933479,50.0551695676327 + + + + +WA15 + +Small Square WA15 Boundry Box +#Line2 + + +1 + +-2.86141293950302,50.1002369333222 +-2.86115337723904,50.190153087586 +-2.72110122817085,50.1899013756102 +-2.72162310114093,50.0999860175388 +-2.86141293950302,50.1002369333222 + + + + + +WA15 +#labelStyle + +-2.79131564494334,50.1450950830953 + + + + +WA16 + +Small Square WA16 Boundry Box +#Line2 + + +1 + +-2.86115335121446,50.1901620800307 +-2.86089247098978,50.2800768360158 +-2.72057665322685,50.2798243247886 +-2.72110117584613,50.1899103679752 +-2.86115335121446,50.1901620800307 + + + + + +WA16 +#labelStyle + +-2.79092388299747,50.2350191984804 + + + + +WA17 + +Small Square WA17 Boundry Box +#Line2 + + +1 + +-2.86089244483295,50.2800858283207 +-2.86063023791138,50.3699991868838 +-2.72004941080457,50.3697458734049 +-2.72057660063626,50.2798333170135 +-2.86089244483295,50.2800858283207 + + + + + +WA17 +#labelStyle + +-2.79053013040526,50.3249419146295 + + + + +WA18 + +Small Square WA18 Boundry Box +#Line2 + + +1 + +-2.86063021162143,50.370008179049 +-2.86036666918678,50.4599201410606 +-2.71951948317826,50.4596660223084 +-2.72004935794635,50.3697548654897 +-2.86063021162143,50.370008179049 + + + + + +WA18 +#labelStyle + +-2.79013437395505,50.4148632323975 + + + + +WA19 + +Small Square WA19 Boundry Box +#Line2 + + +1 + +-2.86036664276282,50.4599291330862 +-2.86010175591803,50.5498396994304 +-2.71898685245951,50.5495847723622 +-2.71951943005063,50.4596750142534 +-2.86036664276282,50.4599291330862 + + + + + +WA19 +#labelStyle + +-2.78973660031408,50.5047831526532 + + + + +WA20 + +Small Square WA20 Boundry Box +#Line2 + + +1 + +-2.72417973156838,49.6503431830813 +-2.72367082331972,49.7402655594064 +-2.58491978066245,49.7398516034257 +-2.58568445417185,49.6499305331809 +-2.72417973156838,49.6503431830813 + + + + + +WA20 +#labelStyle + +-2.65460673345794,49.6951231107514 + + + + +WA21 + +Small Square WA21 Boundry Box +#Line2 + + +1 + +-2.72367077229585,49.7402745524731 +-2.72315929973522,49.8301955235621 +-2.5841511775898,49.8297802565606 +-2.58491970399521,49.7398605963615 +-2.72367077229585,49.7402745524731 + + + + + +WA21 +#labelStyle + +-2.65396826144685,49.7850531886654 + + + + +WA22 + +Small Square WA22 Boundry Box +#Line2 + + +1 + +-2.72315924845406,49.8302045164883 +-2.72264519479492,49.9201240831098 +-2.58337869601342,49.9197075002439 +-2.58415110053597,49.8297892493554 +-2.72315924845406,49.8302045164883 + + + + + +WA22 +#labelStyle + +-2.6533265699422,49.8749818594141 + + + + +WA23 + +Small Square WA23 Boundry Box +#Line2 + + +1 + +-2.72264514325478,49.9201330758955 +-2.72212849155852,50.0100512388315 +-2.58260231048121,50.0096333352242 +-2.58337861857047,49.9197164928979 +-2.72264514325478,49.9201330758955 + + + + + +WA23 +#labelStyle + +-2.65268163784248,49.9649091237579 + + + + +WA24 + +Small Square WA24 Boundry Box +#Line2 + + +1 + +-2.7221284397577,50.0100602314769 +-2.72160917293196,50.0999769915229 +-2.58182199531004,50.0995577622631 +-2.58260223264659,50.0096423277373 +-2.7221284397577,50.0100602314769 + + + + + +WA24 +#labelStyle + +-2.65203344385486,50.0548349824703 + + + + +WA25 + +Small Square WA25 Boundry Box +#Line2 + + +1 + +-2.72160912086874,50.099985984028 +-2.7210872216657,50.1899013419931 +-2.58103772458316,50.1894807821353 +-2.58182191708116,50.0995667546354 +-2.72160912086874,50.099985984028 + + + + + +WA25 +#labelStyle + +-2.651381966493,50.1447594363385 + + + + +WA26 + +Small Square WA26 Boundry Box +#Line2 + + +1 + +-2.72108716933835,50.1899103343581 +-2.72056262035292,50.2798242910648 +-2.58024947214758,50.2794023956289 +-2.58103764595742,50.1894897743669 +-2.72108716933835,50.1899103343581 + + + + + +WA26 +#labelStyle + +-2.65072718407494,50.2346824861627 + + + + +WA27 + +Small Square WA27 Boundry Box +#Line2 + + +1 + +-2.72056256775969,50.2798332832896 +-2.7200353514278,50.3697458395739 +-2.57945721161138,50.369322603545 +-2.58024939312235,50.2794113877199 +-2.72056256775969,50.2798332832896 + + + + + +WA27 +#labelStyle + +-2.65006907472082,50.3246041327566 + + + + +WA28 + +Small Square WA28 Boundry Box +#Line2 + + +1 + +-2.72003529856692,50.3697548316587 +-2.71950539716368,50.4596659883699 +-2.57866091634103,50.4592414066979 +-2.57945713218402,50.3693315954956 +-2.72003529856692,50.3697548316587 + + + + + +WA28 +#labelStyle + +-2.6494076163507,50.4145243769473 + + + + +WA29 + +Small Square WA29 Boundry Box +#Line2 + + +1 + +-2.71950534403337,50.4596749803148 +-2.71897273967126,50.5495847383157 +-2.57786055945863,50.549158805915 +-2.57866083650885,50.459250398508 +-2.71950534403337,50.4596749803148 + + + + + +WA29 +#labelStyle + +-2.64874278668226,50.504443219575 + + + + +WA30 + +Small Square WA30 Boundry Box +#Line2 + + +1 + +-2.5856706034292,49.6499304836276 +-2.58490590434184,49.7398515537156 +-2.44615871686239,49.7392714110372 +-2.4471791562095,49.649352171451 +-2.5856706034292,49.6499304836276 + + + + + +WA30 +#labelStyle + +-2.51597161863907,49.6946267868908 + + + + +WA31 + +Small Square WA31 Boundry Box +#Line2 + + +1 + +-2.58490582767203,49.7398605466514 +-2.58413727555979,49.8297802066931 +-2.44513303382162,49.8291982265883 +-2.44615861455171,49.7392804037895 +-2.58490582767203,49.7398605466514 + + + + + +WA31 +#labelStyle + +-2.51507669828192,49.7845552932818 + + + + +WA32 + +Small Square WA32 Boundry Box +#Line2 + + +1 + +-2.58413719850338,49.8297891994879 +-2.58336476814429,49.9197074502184 +-2.44410217522798,49.9191236258985 +-2.44513293099508,49.829207219199 +-2.58413719850338,49.8297891994879 + + + + + +WA32 +#labelStyle + +-2.51417726548449,49.8744823867108 + + + + +WA33 + +Small Square WA33 Boundry Box +#Line2 + + +1 + +-2.58336469069875,49.9197164428723 +-2.5825883566424,50.0096332850401 +-2.44306610711926,50.0090476096693 +-2.44410207188219,49.9191326183677 +-2.58336469069875,49.9197164428723 + + + + + +WA33 +#labelStyle + +-2.51327329067207,49.9644080678978 + + + + +WA34 + +Small Square WA34 Boundry Box +#Line2 + + +1 + +-2.58258827880517,50.0096422775531 +-2.58180801537011,50.0995577119197 +-2.442024795225,50.0989701786145 +-2.44306600325081,50.0090566019969 +-2.58258827880517,50.0096422775531 + + + + + +WA34 +#labelStyle + +-2.51236474400181,50.0543323375758 + + + + +WA35 + +Small Square WA35 Boundry Box +#Line2 + + +1 + +-2.58180793713861,50.099566704292 +-2.58102371840982,50.1894807316321 +-2.44097820496303,50.188891333461 +-2.44202469083045,50.0989791708007 +-2.58180793713861,50.099566704292 + + + + + +WA35 +#labelStyle + +-2.51145159535969,50.144255196491 + + + + +WA36 + +Small Square WA36 Boundry Box +#Line2 + + +1 + +-2.58102363978145,50.1894897238638 +-2.58023543960767,50.2794023449654 +-2.43992630143595,50.2788110749483 +-2.4409781000389,50.1889003255058 +-2.58102363978145,50.1894897238638 + + + + + +WA36 +#labelStyle + +-2.51053381435748,50.2341766454022 + + + + +WA37 + +Small Square WA37 Boundry Box +#Line2 + + +1 + +-2.5802353605798,50.2794113370564 +-2.57944315257084,50.3693225527205 +-2.43886904942758,50.3687294038285 +-2.43992619597874,50.2788200668518 +-2.5802353605798,50.2794113370564 + + + + + +WA37 +#labelStyle + +-2.50961137032966,50.3240966850814 + + + + +WA38 + +Small Square WA38 Boundry Box +#Line2 + + +1 + +-2.57944307314082,50.369331544671 +-2.57864683066492,50.4592413557118 +-2.43780641339935,50.4586463208667 +-2.43886894343375,50.3687383955908 +-2.57944307314082,50.369331544671 + + + + + +WA38 +#labelStyle + +-2.50868423233026,50.4140153163135 + + + + +WA39 + +Small Square WA39 Boundry Box +#Line2 + + +1 + +-2.57864675083007,50.4592503475219 +-2.57784644701111,50.5491587547666 +-2.43673835748666,50.5485618268402 +-2.43780630686533,50.4586553124878 +-2.57864675083007,50.4592503475219 + + + + + +WA39 +#labelStyle + +-2.50775236912971,50.5039325398964 + + + + +WA40 + +Small Square WA40 Boundry Box +#Line2 + + +1 + +-2.44716530591393,49.6493521053304 +-2.44614484099176,49.7392713447073 +-2.3074027971653,49.7385250283383 +-2.30867896898982,49.6486081438063 +-2.44716530591393,49.6493521053304 + + + + + +WA40 +#labelStyle + +-2.3773409891602,49.6939645281846 + + + + +WA41 + +Small Square WA41 Boundry Box +#Line2 + + +1 + +-2.44614473867852,49.7392803374597 +-2.44511913224454,49.8291981600483 +-2.30612006782156,49.8284494799263 +-2.30740266921454,49.7385340208547 +-2.44614473867852,49.7392803374597 + + + + + +WA41 +#labelStyle + +-2.37618964977433,49.7838909375984 + + + + +WA42 + +Small Square WA42 Boundry Box +#Line2 + + +1 + +-2.44511902941542,49.829207152659 +-2.44408824781476,49.9191235591478 +-2.30483086618068,49.9183725065396 +-2.30611993922568,49.8284584723002 +-2.44511902941542,49.829207152659 + + + + + +WA42 +#labelStyle + +-2.37503250526668,49.873815926315 + + + + +WA43 + +Small Square WA43 Boundry Box +#Line2 + + +1 + +-2.44408814446638,49.9191325516169 +-2.44305215373935,50.0090475427069 +-2.30353514977378,50.0082941088187 +-2.30483073693546,49.9183814987711 +-2.44408814446638,49.9191325516169 + + + + + +WA43 +#labelStyle + +-2.37386951759233,49.9637394950008 + + + + +WA44 + +Small Square WA44 Boundry Box +#Line2 + + +1 + +-2.4430520498683,50.0090565350345 +-2.44201081574701,50.0989701114397 +-2.30223287574652,50.0982142874163 +-2.30353501987494,50.0083031009077 +-2.4430520498683,50.0090565350345 + + + + + +WA44 +#labelStyle + +-2.37270064836141,50.0536616443346 + + + + +WA45 + +Small Square WA45 Boundry Box +#Line2 + + +1 + +-2.44201071134984,50.0989791036259 +-2.44096419925468,50.188891266073 +-2.30092400085482,50.1881330429973 +-2.30223274518977,50.098223279363 +-2.44201071134984,50.0989791036259 + + + + + +WA45 +#labelStyle + +-2.37152585883526,50.1435823750078 + + + + +WA46 + +Small Square WA46 Boundry Box +#Line2 + + +1 + +-2.44096409432792,50.1889002581178 +-2.43991226936411,50.2788110073462 +-2.29960848146043,50.278050376239 +-2.3009238696358,50.1881420348018 +-2.44096409432792,50.1889002581178 + + + + + +WA46 +#labelStyle + +-2.3703451099225,50.2335016877241 + + + + +WA47 + +Small Square WA47 Boundry Box +#Line2 + + +1 + +-2.43991216390425,50.2788199992497 +-2.43885499085822,50.3687293360116 +-2.29828627352653,50.3679662878307 +-2.29960834957477,50.2780593679013 +-2.43991216390425,50.2788199992497 + + + + + +WA47 +#labelStyle + +-2.36915836217506,50.3234195831999 + + + + +WA48 + +Small Square WA48 Boundry Box +#Line2 + + +1 + +-2.43885488486173,50.3687383277739 +-2.43779232819756,50.4586462528341 +-2.29695733261316,50.4578807784736 +-2.2982861409698,50.3679752793508 +-2.43885488486173,50.3687383277739 + + + + + +WA48 +#labelStyle + +-2.36796557578413,50.4133360621639 + + + + +WA49 + +Small Square WA49 Boundry Box +#Line2 + + +1 + +-2.43779222166087,50.4586552444553 +-2.43672424551662,50.5485617585913 +-2.29562161387271,50.5477938488814 +-2.29695719938089,50.4578897698517 +-2.43779222166087,50.4586552444553 + + + + + +WA49 +#labelStyle + +-2.36676671057609,50.5032511253572 + + + + +WA50 + +Small Square WA50 Boundry Box +#Line2 + + +1 + +-2.30866511926934,49.6486080611199 +-2.30738892187351,49.7385249453902 +-2.16865330987383,49.7376124720616 +-2.17018517246154,49.6476984668785 +-2.30866511926934,49.6486080611199 + + + + + +WA50 +#labelStyle + +-2.23871612929729,49.6931363494588 + + + + +WA51 + +Small Square WA51 Boundry Box +#Line2 + + +1 + +-2.30738879392019,49.7385339379066 +-2.30610616682711,49.8284493967155 +-2.16711357632247,49.827534033409 +-2.16865315628718,49.7376214642896 +-2.30738879392019,49.7385339379066 + + + + + +WA51 +#labelStyle + +-2.23730840859419,49.783060136531 + + + + +WA52 + +Small Square WA52 Boundry Box +#Line2 + + +1 + +-2.30610603822865,49.8284583890894 +-2.30481693935391,49.9183724230651 +-2.16556607411094,49.9174541591038 +-2.16711342196149,49.8275430254933 +-2.30610603822865,49.8284583890894 + + + + + +WA52 +#labelStyle + +-2.23589359042898,49.8729824932333 + + + + +WA53 + +Small Square WA53 Boundry Box +#Line2 + + +1 + +-2.3048168101061,49.9183814152965 +-2.30352119698418,50.0082940250795 +-2.1640107522679,50.0073728497123 +-2.16556591897055,49.9174631510446 +-2.3048168101061,49.9183814152965 + + + + + +WA53 +#labelStyle + +-2.23447162829033,49.962903420165 + + + + +WA54 + +Small Square WA54 Boundry Box +#Line2 + + +1 + +-2.30352106708274,50.0083030171685 +-2.30221889686272,50.0982142034115 +-2.1624475593595,50.0972901058123 +-2.16401059634299,50.0073818415096 +-2.30352106708274,50.0083030171685 + + + + + +WA54 +#labelStyle + +-2.23304247524523,50.052822917937 + + + + +WA55 + +Small Square WA55 Boundry Box +#Line2 + + +1 + +-2.30221876630335,50.0982231953581 +-2.30090999574459,50.1881329587259 +-2.16087644348413,50.1872059279933 +-2.16244740264489,50.0972990974662 +-2.30221876630335,50.0982231953581 + + + + + +WA55 +#labelStyle + +-2.23160608393429,50.1427409871723 + + + + +WA56 + +Small Square WA56 Boundry Box +#Line2 + + +1 + +-2.30090986452295,50.1881419505303 +-2.29959444999068,50.2780502917 +-2.15929735226714,50.2771203168561 +-2.16087628597461,50.1872149195038 +-2.30090986452295,50.1881419505303 + + + + + +WA56 +#labelStyle + +-2.23016240656698,50.2326576285057 + + + + +WA57 + +Small Square WA57 Boundry Box +#Line2 + + +1 + +-2.29959431810237,50.2780592833622 +-2.29827221556325,50.367966203023 +-2.15771023285557,50.3670332730133 +-2.15929719395746,50.2771293082234 +-2.29959431810237,50.2780592833622 + + + + + +WA57 +#labelStyle + +-2.22871139491669,50.3225728425839 + + + + +WA58 + +Small Square WA58 Boundry Box +#Line2 + + +1 + +-2.29827208300386,50.367975194543 +-2.29694324802149,50.4578806933963 +-2.15611503191266,50.4569447970884 +-2.1577100737404,50.3670422642372 +-2.29827208300386,50.367975194543 + + + + + +WA58 +#labelStyle + +-2.22725300031586,50.4124866300653 + + + + +WA59 + +Small Square WA59 Boundry Box +#Line2 + + +1 + +-2.29694311478656,50.4578896847743 +-2.29560750251687,50.5477937635334 +-2.15451169561241,50.5468548897168 +-2.15611487198665,50.4569537881692 +-2.29694311478656,50.4578896847743 + + + + + +WA59 +#labelStyle + +-2.22578717365099,50.5023989916203 + + + + +WA60 + +Small Square WA60 Boundry Box +#Line2 + + +1 + +-2.17017132344411,49.6476983676282 +-2.16863943528969,49.7376123724971 +-2.02991154291374,49.7365337626627 +-2.03169904620065,49.6466231610001 +-2.17017132344411,49.6476983676282 + + + + + +WA60 +#labelStyle + +-2.10009832298898,49.6921422692519 + + + + +WA61 + +Small Square WA61 Boundry Box +#Line2 + + +1 + +-2.16863928170048,49.737621364725 +-2.1670996760403,49.8275339335292 +-2.02811485567615,49.826451907616 +-2.02991136369623,49.7365427545496 +-2.16863928170048,49.737621364725 + + + + + +WA61 +#labelStyle + +-2.09843426707056,49.7820629087307 + + + + +WA62 + +Small Square WA62 Boundry Box +#Line2 + + +1 + +-2.16709952167675,49.8275429256135 +-2.16555214800112,49.9174540589074 +-2.0263091038728,49.916368604296 +-2.02811467555514,49.8264608993581 +-2.16709952167675,49.8275429256135 + + + + + +WA62 +#labelStyle + +-2.09676182176673,49.8719821062302 + + + + +WA63 + +Small Square WA63 Boundry Box +#Line2 + + +1 + +-2.16555199285814,49.9174630508482 +-2.16399680019997,50.0073727491983 +-2.02449422803508,50.0062838531813 +-2.02630892284237,49.9163775958933 +-2.16555199285814,49.9174630508482 + + + + + +WA63 +#labelStyle + +-2.09508093210439,49.961899862269 + + + + +WA64 + +Small Square WA64 Boundry Box +#Line2 + + +1 + +-2.16399664427245,50.0073817409955 +-2.16243358120213,50.0972900049794 +-2.02267016815479,50.0961976547613 +-2.02449404608926,50.0062928446339 +-2.16399664427245,50.0073817409955 + + + + + +WA64 +#labelStyle + +-2.09339154261217,50.0518161773768 + + + + +WA65 + +Small Square WA65 Boundry Box +#Line2 + + +1 + +-2.16243342448491,50.0972989966333 +-2.16086243910513,50.1872058268404 +-2.02083686367805,50.186110009536 +-2.02266998528754,50.0962066460691 +-2.16243342448491,50.0972989966333 + + + + + +WA65 +#labelStyle + +-2.09169359731473,50.1417310520945 + + + + +WA66 + +Small Square WA66 Boundry Box +#Line2 + + +1 + +-2.16086228159298,50.1872148183509 +-2.15928332153346,50.277120215382 +-2.01899425349918,50.2760209180162 +-2.02083667988329,50.1861190006991 +-2.16086228159298,50.1872148183509 + + + + + +WA66 +#labelStyle + +-2.08998703972723,50.2316444869742 + + + + +WA67 + +Small Square WA67 Boundry Box +#Line2 + + +1 + +-2.15928316322113,50.2771292067492 +-2.15769617563326,50.3670331712167 +-2.01714227595446,50.3659303807235 +-2.01899406877078,50.2760299090348 +-2.15928316322113,50.2771292067492 + + + + + +WA67 +#labelStyle + +-2.08827181284947,50.3215564825788 + + + + +WA68 + +Small Square WA68 Boundry Box +#Line2 + + +1 + +-2.15769601651544,50.3670421624406 +-2.15610094806688,50.4569446949682 +-2.01528086881582,50.4558383981898 +-2.01714209028622,50.3659393715974 +-2.15769601651544,50.3670421624406 + + + + + +WA68 +#labelStyle + +-2.08654785916014,50.4114670394826 + + + + +WA69 + +Small Square WA69 Boundry Box +#Line2 + + +1 + +-2.15610078813822,50.4569536860489 +-2.15449758500745,50.5468547872717 +-2.01340996928444,50.5457449709579 +-2.01528068220149,50.4558473889193 +-2.15610078813822,50.4569536860489 + + + + + +WA69 +#labelStyle + +-2.08481512061088,50.5013761582709 + + + + +WA70 + +Small Square WA70 Boundry Box +#Line2 + + +1 + +-2.03168519801422,49.6466230451881 +-2.02989766916602,49.736533646484 +-1.89117878375856,49.7352889243185 +-1.89322186933594,49.6453822502026 +-2.03168519801422,49.6466230451881 + + + + + +WA70 +#labelStyle + +-1.96148885376167,49.6909823098134 + + + + +WA71 + +Small Square WA71 Boundry Box +#Line2 + + +1 + +-2.02989748994595,49.7365426383709 +-2.02810095623588,49.8264517910694 +-1.88912520177708,49.8252031268712 +-1.89117857891606,49.7352979158119 +-2.02989748994595,49.7365426383709 + + + + + +WA71 +#labelStyle + +-1.95956851711562,49.7808992765818 + + + + +WA72 + +Small Square WA72 Boundry Box +#Line2 + + +1 + +-2.02810077611229,49.8264607828114 +-2.0262951786104,49.9163684873801 +-1.88706125985791,49.9151158665883 +-1.88912499590196,49.8252121182183 +-2.02810077611229,49.8264607828114 + + + + + +WA72 +#labelStyle + +-1.9576384996537,49.8708147878261 + + + + +WA73 + +Small Square WA73 Boundry Box +#Line2 + + +1 + +-2.02629499757738,49.9163774789774 +-2.02448027682014,50.0062837358948 +-1.88498689004116,50.0050271438471 +-1.88706105294341,49.9151248577891 +-2.02629499757738,49.9163774789774 + + + + + +WA73 +#labelStyle + +-1.95569873794658,49.9607288439707 + + + + +WA74 + +Small Square WA74 Boundry Box +#Line2 + + +1 + +-2.02448009487171,50.0062927273472 +-2.02265619085603,50.0961975371027 +-1.88290202375034,50.0949369590349 +-1.88498668208045,50.0050361349017 +-2.02448009487171,50.0062927273472 + + + + + +WA74 +#labelStyle + +-1.95374916799007,50.0506414454504 + + + + +WA75 + +Small Square WA75 Boundry Box +#Line2 + + +1 + +-2.02265600798617,50.0962065284104 +-2.02082286016334,50.1861098915039 +-1.88080659178545,50.1848453125488 +-1.88290181473653,50.0949459499434 +-2.02265600798617,50.0962065284104 + + + + + +WA75 +#labelStyle + +-1.95178972519859,50.1405525927103 + + + + +WA76 + +Small Square WA76 Boundry Box +#Line2 + + +1 + +-2.02082267636596,50.186118882667 +-2.01898022363551,50.2760207996093 +-1.87870052431599,50.2747522047957 +-1.88080638171159,50.1848543033111 +-2.02082267636596,50.186118882667 + + + + + +WA76 +#labelStyle + +-1.94982034439871,50.2304622862059 + + + + +WA77 + +Small Square WA77 Boundry Box +#Line2 + + +1 + +-2.01898003890447,50.2760297906278 +-2.01712821960794,50.3659302619403 +-1.87658375087382,50.364657636192 +-1.87870031317507,50.2747611954118 +-2.01898003890447,50.2760297906278 + + + + + +WA77 +#labelStyle + +-1.94784095982248,50.3203705264029 + + + + +WA78 + +Small Square WA78 Boundry Box +#Line2 + + +1 + +-2.01712803393705,50.3659392528143 +-2.01526678585167,50.455838279029 +-1.87445620034594,50.4545616071642 +-1.87658353865875,50.3646666266621 +-2.01712803393705,50.3659392528143 + + + + + +WA78 +#labelStyle + +-1.94585150510072,50.410277313777 + + + + +WA79 + +Small Square WA79 Boundry Box +#Line2 + + +1 + +-2.01526659923467,50.4558472697585 +-2.013395859567,50.545744851418 +-1.87231780096721,50.5444641181481 +-1.87445598704959,50.4545705974883 +-2.01526659923467,50.4558472697585 + + + + + +WA79 +#labelStyle + +-1.94385191325622,50.5001826488144 + + + + +WA80 + +Small Square WA80 Boundry Box +#Line2 + + +1 + +-1.8932080221084,49.6453821178313 +-1.89116491097599,49.7352887915283 +-1.75245631935429,49.7338779849261 +-1.75475492047443,49.6439757622147 +-1.8932080221084,49.6453821178313 + + + + + +WA80 +#labelStyle + +-1.82288900465455,49.6896564971023 + + + + +WA81 + +Small Square WA81 Boundry Box +#Line2 + + +1 + +-1.89116470613093,49.7352977830217 +-1.88911130330826,49.8252029936605 +-1.75014590998629,49.8237877192409 +-1.7524560888935,49.7338869759735 +-1.89116470613093,49.7352977830217 + + + + + +WA81 +#labelStyle + +-1.82071245014893,49.7795692662011 + + + + +WA82 + +Small Square WA82 Boundry Box +#Line2 + + +1 + +-1.88911109743057,49.8252119850075 +-1.88704733557334,49.9151157329554 +-1.74782384591848,49.9136959742176 +-1.75014567836382,49.8237967101404 +-1.88911109743057,49.8252119850075 + + + + + +WA82 +#labelStyle + +-1.81852492396553,49.8694805642964 + + + + +WA83 + +Small Square WA83 Boundry Box +#Line2 + + +1 + +-1.88704712865625,49.9151247241563 +-1.88497293981048,50.0050270097907 +-1.74549005070648,50.0036027501189 +-1.74782361312674,49.9137049649692 +-1.88704712865625,49.9151247241563 + + + + + +WA83 +#labelStyle + +-1.8163263542252,49.9593903917054 + + + + +WA84 + +Small Square WA84 Boundry Box +#Line2 + + +1 + +-1.88497273184717,50.0050360008452 +-1.88288804744233,50.0949368245532 +-1.74314444721246,50.0935080472161 +-1.74548981673778,50.0036117407225 +-1.88497273184717,50.0050360008452 + + + + + +WA84 +#labelStyle + +-1.81411666839735,50.0492987487544 + + + + +WA85 + +Small Square WA85 Boundry Box +#Line2 + + +1 + +-1.88288783842591,50.0949458154616 +-1.88079258926804,50.1848451776403 +-1.74078695759733,50.1834118657898 +-1.74314421205905,50.0935170376719 +-1.88288783842591,50.0949458154616 + + + + + +WA85 +#labelStyle + +-1.8118957932927,50.1392056357791 + + + + +WA86 + +Small Square WA86 Boundry Box +#Line2 + + +1 + +-1.88079237919156,50.1848541684025 +-1.87868649545623,50.2747520694587 +-1.73841750331286,50.2733142061291 +-1.74078672125139,50.1834208560978 +-1.88079237919156,50.1848541684025 + + + + + +WA86 +#labelStyle + +-1.80966365505588,50.2291110531246 + + + + +WA87 + +Small Square WA87 Boundry Box +#Line2 + + +1 + +-1.87868628431267,50.2747610600748 +-1.87656969553787,50.3646575004251 +-1.7360360050937,50.3632150685316 +-1.7384172657665,50.2733231962892 +-1.87868628431267,50.2747610600748 + + + + + +WA87 +#labelStyle + +-1.80742017915788,50.3190150011453 + + + + +WA88 + +Small Square WA88 Boundry Box +#Line2 + + +1 + +-1.87656948332016,50.3646664908951 +-1.87444211839909,50.4545614709656 +-1.73364238294925,50.4531144533038 +-1.73603576633896,50.3632240585439 +-1.87656948332016,50.3646664908951 + + + + + +WA88 +#labelStyle + +-1.80516529038848,50.4089174802045 + + + + +WA89 + +Small Square WA89 Boundry Box +#Line2 + + +1 + +-1.87444190510008,50.4545704612896 +-1.87230369227385,50.5444639815162 +-1.73123655615544,50.5430123607605 +-1.7336421429781,50.4531234431683 +-1.87444190510008,50.4545704612896 + + + + + +WA89 +#labelStyle + +-1.80289891284851,50.4988184906751 + + + + +WA90 + +Small Square WA90 Boundry Box +#Line2 + + +1 + +-1.75474107433361,49.6439756132873 +-1.75244244766553,49.7338778355273 +-1.61374543604411,49.7323009761 +-1.61629947762704,49.6424037284609 +-1.75474107433361,49.6439756132873 + + + + + +WA90 +#labelStyle + +-1.68430005814476,49.6881648607854 + + + + +WA91 + +Small Square WA91 Boundry Box +#Line2 + + +1 + +-1.75244221720217,49.7338868265746 +-1.75013201261843,49.823787569369 +-1.61117827505528,49.8222057165317 +-1.61374517997257,49.7323099666489 +-1.75244221720217,49.7338868265746 + + + + + +WA91 +#labelStyle + +-1.68186735702168,49.7780729074349 + + + + +WA92 + +Small Square WA92 Boundry Box +#Line2 + + +1 + +-1.7501317809934,49.8237965602684 +-1.74780992274209,49.9136958238709 +-1.60859816529034,49.9121089591841 +-1.61117801769309,49.8222147069308 +-1.7501317809934,49.8237965602684 + + + + + +WA92 +#labelStyle + +-1.67942239400316,49.867979465669 + + + + +WA93 + +Small Square WA93 Boundry Box +#Line2 + + +1 + +-1.74780968994776,49.9137048146223 +-1.74547610159127,50.0036025992955 +-1.60600502182811,50.0020107041917 +-1.60859790662903,49.9121179494334 +-1.74780968994776,49.9137048146223 + + + + + +WA93 +#labelStyle + +-1.67696508876739,49.9578845356839 + + + + +WA94 + +Small Square WA94 Boundry Box +#Line2 + + +1 + +-1.74547586761997,50.003611589899 +-1.74313047202728,50.0935078959144 +-1.60339875897718,50.0919109516968 +-1.60600476185916,50.0020196942913 +-1.74547586761997,50.003611589899 + + + + + +WA94 +#labelStyle + +-1.67449536026474,50.047788117684 + + + + +WA95 + +Small Square WA95 Boundry Box +#Line2 + + +1 + +-1.74313023687126,50.0935168863701 +-1.74077295621017,50.1834117140079 +-1.60077929026727,50.1818097018493 +-1.60339849769198,50.0919199416466 +-1.74313023687126,50.0935168863701 + + + + + +WA95 +#labelStyle + +-1.67201312670961,50.1376902118821 + + + + +WA96 + +Small Square WA96 Boundry Box +#Line2 + + +1 + +-1.7407727198616,50.1834207043158 +-1.73840347559083,50.2733140538652 +-1.59814652844044,50.2717069548068 +-1.60077902765714,50.1818186916494 +-1.7407727198616,50.1834207043158 + + + + + +WA96 +#labelStyle + +-1.6695183055722,50.227590818499 + + + + +WA97 + +Small Square WA97 Boundry Box +#Line2 + + +1 + +-1.73840323804184,50.2733230440252 +-1.73602195090305,50.3632149157839 +-1.59550038544224,50.3616027107342 +-1.59814626449661,50.2717159444572 +-1.73840323804184,50.2733230440252 + + + + + +WA97 +#labelStyle + +-1.66701081357004,50.3174899377638 + + + + +WA98 + +Small Square WA98 Boundry Box +#Line2 + + +1 + +-1.73602171214566,50.3632239057962 +-1.73362830215533,50.4531143000704 +-1.59284077241265,50.451496969804 +-1.59550012015586,50.3616117002349 +-1.73602171214566,50.3632239057962 + + + + + +WA98 +#labelStyle + +-1.66449056665958,50.4073875699137 + + + + +WA99 + +Small Square WA99 Boundry Box +#Line2 + + +1 + +-1.7336280621815,50.453123289935 +-1.7312224486227,50.5430122070397 +-1.59016759967704,50.5413897321959 +-1.5928405057748,50.4515059591551 +-1.7336280621815,50.453123289935 + + + + + +WA99 +#labelStyle + +-1.66195748002752,50.4972837151938 + + + + + +WV + +Large Square WV Boundry Box +#Line1 + + +1 + +-3.0011779280519,48.7512701782748 +-3.00120435741788,49.6506625189407 +-1.6162997324163,49.6423947377621 +-1.6411528868025,48.7432589395935 +-3.0011779280519,48.7512701782748 + + + + + +WV00 + +Small Square WV00 Boundry Box +#Line2 + + +1 + +-3.0011779280519,48.7512701782748 +-3.00118051285359,48.8412076482802 +-2.86492713640833,48.8411286195089 +-2.86516790151575,48.7511913974918 +-3.0011779280519,48.7512701782748 + + + + + +WV00 +#labelStyle + +-2.93310655621939,48.7962242270388 + + + + +WV01 + +Small Square WV01 Boundry Box +#Line2 + + +1 + +-3.00118051311272,48.8412166428562 +-3.00118311056115,48.9311527042555 +-2.86468515134806,48.9310734265883 +-2.86492711226975,48.8411376140601 +-3.00118051311272,48.8412166428562 + + + + + +WV01 +#labelStyle + +-2.93298714610424,48.8861699262773 + + + + +WV02 + +Small Square WV02 Boundry Box +#Line2 + + +1 + +-3.00118311082155,48.9311616986907 +-3.00118572099767,49.021096352141 +-2.86444196271694,49.0210168246892 +-2.8646851270895,48.9310824209986 +-3.00118311082155,48.9311616986907 + + + + + +WV02 +#labelStyle + +-2.93286714239625,48.9761142168792 + + + + +WV03 + +Small Square WV03 Boundry Box +#Line2 + + +1 + +-3.00118572125935,49.0211053464354 +-3.00118834424483,49.1110385926079 +-2.86419756280984,49.1109588144767 +-2.86444193833763,49.0210258189586 +-3.00118572125935,49.0211053464354 + + + + + +WV03 +#labelStyle + +-2.93274654130004,49.0660570995071 + + + + +WV04 + +Small Square WV04 Boundry Box +#Line2 + + +1 + +-3.0011883445078,49.1110475867616 +-3.00119098038505,49.2009794263411 +-2.86395194385316,49.2008993966294 +-2.86419753830902,49.1109678086052 +-3.0011883445078,49.1110475867616 + + + + + +WV04 +#labelStyle + +-2.93262533898657,49.1559985748376 + + + + +WV05 + +Small Square WV05 Boundry Box +#Line2 + + +1 + +-3.00119098064931,49.2009884203541 +-3.00119362950145,49.2909188540393 +-2.86370509800407,49.2908385718401 +-2.86395191923005,49.2009083906173 +-3.00119098064931,49.2009884203541 + + + + + +WV05 +#labelStyle + +-2.93250353159272,49.2459386435612 + + + + +WV06 + +Small Square WV06 Boundry Box +#Line2 + + +1 + +-3.00119362976702,49.2909278479118 +-3.00119629167793,49.3808568764151 +-2.86345701734973,49.380776340815 +-2.86370507325788,49.2908475656873 +-3.00119362976702,49.2909278479118 + + + + + +WV06 +#labelStyle + +-2.93238111522092,49.3358773063818 + + + + +WV07 + +Small Square WV07 Boundry Box +#Line2 + + +1 + +-3.0011962919448,49.3808658701471 +-3.0011989669991,49.4707934941949 +-2.86320769390651,49.4707127042742 +-2.86345699247965,49.3807853345216 +-3.0011962919448,49.3808658701471 + + + + + +WV07 +#labelStyle + +-2.93225808593878,49.4258145640174 + + + + +WV08 + +Small Square WV08 Boundry Box +#Line2 + + +1 + +-3.00119896726729,49.4708024877865 +-3.00120165555037,49.5607287081188 +-2.86295711961925,49.5606476629515 +-2.86320766891175,49.4707216978403 +-3.00119896726729,49.4708024877865 + + + + + +WV08 +#labelStyle + +-2.93213443977869,49.5157504171997 + + + + +WV09 + +Small Square WV09 Boundry Box +#Line2 + + +1 + +-3.00120165581989,49.5607377015701 +-3.00120435741788,49.6506625189407 +-2.86270528636044,49.6505812175944 +-2.86295709449901,49.5606566563771 +-3.00120165581989,49.5607377015701 + + + + + +WV09 +#labelStyle + +-2.93201017273747,49.6056848666742 + + + + +WV10 + +Small Square WV10 Boundry Box +#Line2 + + +1 + +-2.86515429919237,48.7511913815854 +-2.86491350974778,48.8411286035523 +-2.72866133133956,48.8408885340685 +-2.72914546311642,48.7509520659897 +-2.86515429919237,48.7511913815854 + + + + + +WV10 +#labelStyle + +-2.79696182525013,48.7960649041724 + + + + +WV11 + +Small Square WV11 Boundry Box +#Line2 + + +1 + +-2.86491348560676,48.8411375981035 +-2.86467150022705,48.9310734105815 +-2.72817474669562,48.9308325844468 +-2.72866128280156,48.8408975285442 +-2.86491348560676,48.8411375981035 + + + + + +WV11 +#labelStyle + +-2.79659841594311,48.8860101014533 + + + + +WV12 + +Small Square WV12 Boundry Box +#Line2 + + +1 + +-2.86467147596603,48.9310824049917 +-2.86442828701381,49.0210168086319 +-2.72768574212716,49.0207752231406 +-2.7281746979164,48.9308415787813 +-2.86467147596603,48.9310824049917 + + + + + +WV12 +#labelStyle + +-2.79623320051428,48.9759538883061 + + + + +WV13 + +Small Square WV13 Boundry Box +#Line2 + + +1 + +-2.86442826263204,49.0210258029013 +-2.86418386240218,49.1109587983687 +-2.72719430214222,49.1107164507966 +-2.72768569310518,49.0207842173339 +-2.86442826263204,49.0210258029013 + + + + + +WV13 +#labelStyle + +-2.7958661674153,49.0658962653813 + + + + +WV14 + +Small Square WV14 Boundry Box +#Line2 + + +1 + +-2.86418383789889,49.1109677924973 +-2.86393821861778,49.2008993804706 +-2.72670041111117,49.2006562680749 +-2.72719425287592,49.1107254448488 +-2.86418383789889,49.1109677924973 + + + + + +WV14 +#labelStyle + +-2.7954973049953,49.1558372333432 + + + + +WV15 + +Small Square WV15 Boundry Box +#Line2 + + +1 + +-2.86393819399217,49.2009083744585 +-2.86369134781696,49.2908385556303 +-2.72620405326515,49.2905946756493 +-2.72670036159898,49.2006652619861 +-2.86393819399217,49.2009083744585 + + + + + +WV15 +#labelStyle + +-2.79512660149975,49.2457767928696 + + + + +WV16 + +Small Square WV16 Boundry Box +#Line2 + + +1 + +-2.86369132306826,49.2908475494775 +-2.86344324208609,49.380776324554 +-2.72570521269458,49.3805316742071 +-2.72620400350549,49.2906036694196 +-2.86369132306826,49.2908475494775 + + + + + +WV16 +#labelStyle + +-2.79475404506931,49.3357149446521 + + + + +WV17 + +Small Square WV17 Boundry Box +#Line2 + + +1 + +-2.86344321721349,49.3807853182606 +-2.86319389344074,49.4707126879618 +-2.72520387334756,49.4704672644494 +-2.72570516268584,49.3805406678366 +-2.86344321721349,49.3807853182606 + + + + + +WV17 +#labelStyle + +-2.79437962373869,49.425651689396 + + + + +WV18 + +Small Square WV18 Boundry Box +#Line2 + + +1 + +-2.86319386844346,49.4707216815279 +-2.86294329382493,49.5606476465876 +-2.72470001902836,49.5604014470907 +-2.72520382308814,49.4704762579381 +-2.86319386844346,49.4707216815279 + + + + + +WV18 +#labelStyle + +-2.79400332543545,49.5155870278203 + + + + +WV19 + +Small Square WV19 Boundry Box +#Line2 + + +1 + +-2.86294326870215,49.5606566400132 +-2.86269143511033,49.6505812011787 +-2.72419363339575,49.6503342228589 +-2.72469996851662,49.5604104404386 +-2.86294326870215,49.5606566400132 + + + + + +WV19 +#labelStyle + +-2.79362513797886,49.6055209606575 + + + + +WV20 + +Small Square WV20 Boundry Box +#Line2 + + +1 + +-2.72913186097215,48.7509520340284 +-2.72864770485925,48.8408885020065 +-2.59239793299232,48.8404873970442 +-2.59312541621166,48.7505521888233 +-2.72913186097215,48.7509520340284 + + + + + +WV20 +#labelStyle + +-2.66081889110986,48.7957447798349 + + + + +WV21 + +Small Square WV21 Boundry Box +#Line2 + + +1 + +-2.72864765631882,48.8408974964821 +-2.728161095756,48.9308325522837 +-2.59166676412798,48.9304301829466 +-2.59239786005645,48.8404963913936 +-2.72864765631882,48.8408974964821 + + + + + +WV21 +#labelStyle + +-2.66021149406542,48.8856889682691 + + + + +WV22 + +Small Square WV22 Boundry Box +#Line2 + + +1 + +-2.72816104697433,48.9308415466181 +-2.72767206660659,49.0207751908761 +-2.59093195912171,49.0203715526418 +-2.59166669082966,48.9304391771544 +-2.72816104697433,48.9308415466181 + + + + + +WV22 +#labelStyle + +-2.65960107847169,48.9756317426729 + + + + +WV23 + +Small Square WV23 Boundry Box +#Line2 + + +1 + +-2.72767201758214,49.0207841850694 +-2.7271806019183,49.1107164184303 +-2.5901934946962,49.1103115067454 +-2.59093188545861,49.0203805467079 +-2.72767201758214,49.0207841850694 + + + + + +WV23 +#labelStyle + +-2.65898762502846,49.0655731036721 + + + + +WV24 + +Small Square WV24 Boundry Box +#Line2 + + +1 + +-2.72718055264952,49.1107254124825 +-2.7266866860607,49.2006562356064 +-2.5894513473673,49.2002500458865 +-2.59019342066599,49.11032050067 +-2.72718055264952,49.1107254124825 + + + + + +WV24 +#labelStyle + +-2.65837111426417,49.1555130519063 + + + + +WV25 + +Small Square WV25 Boundry Box +#Line2 + + +1 + +-2.72668663654602,49.2006652295176 +-2.72619030326414,49.2905946430783 +-2.58870549344166,49.2901871707075 +-2.58945127296761,49.2002590396697 +-2.72668663654602,49.2006652295176 + + + + + +WV25 +#labelStyle + +-2.65775152653402,49.2454515880284 + + + + +WV26 + +Small Square WV26 Boundry Box +#Line2 + + +1 + +-2.72619025350197,49.2906036368486 +-2.72569143761824,49.3805316415333 +-2.58795590901451,49.3801228818642 +-2.58870541867012,49.2901961643493 +-2.72619025350197,49.2906036368486 + + + + + +WV26 +#labelStyle + +-2.65712884201804,49.3353887127048 + + + + +WV27 + +Small Square WV27 Boundry Box +#Line2 + + +1 + +-2.72569138760699,49.3805406351627 +-2.72519007307031,49.4704672316723 +-2.58720256996727,49.4700571800254 +-2.58795583386872,49.3801318753646 +-2.72569138760699,49.3805406351627 + + + + + +WV27 +#labelStyle + +-2.65650304071923,49.4253244266152 + + + + +WV28 + +Small Square WV28 Boundry Box +#Line2 + + +1 + +-2.72519002280836,49.4704762251609 +-2.72468619342378,49.5604014142099 +-2.5864454519652,49.5599900658735 +-2.5872024944448,49.4700661733846 +-2.72519002280836,49.4704762251609 + + + + + +WV28 +#labelStyle + +-2.65587410246149,49.5152587304531 + + + + +WV29 + +Small Square WV29 Boundry Box +#Line2 + + +1 + +-2.72468614290951,49.5604104075578 +-2.72417978233662,49.6503341898741 +-2.58568453045502,49.649921540104 +-2.58644537606361,49.5599990590915 +-2.72468614290951,49.5604104075578 + + + + + +WV29 +#labelStyle + +-2.65524200688777,49.6051916249251 + + + + +WV30 + +Small Square WV30 Boundry Box +#Line2 + + +1 + +-2.59311181436659,48.7505521408077 +-2.59238430681312,48.8404873488774 +-2.456138149857,48.8399252171798 +-2.45710896164352,48.7499917746849 +-2.59311181436659,48.7505521408077 + + + + + +WV30 +#labelStyle + +-2.52467895853217,48.7952638609953 + + + + +WV31 + +Small Square WV31 Boundry Box +#Line2 + + +1 + +-2.59238423387482,48.8404963432268 +-2.59165311349139,48.9304301346279 +-2.45516241985231,48.9298662308836 +-2.45613805252555,48.8399342113523 +-2.59238423387482,48.8404963432268 + + + + + +WV31 +#labelStyle + +-2.52382759288844,48.885206533735 + + + + +WV32 + +Small Square WV32 Boundry Box +#Line2 + + +1 + +-2.59165304019061,48.9304391288357 +-2.5909182839061,49.0203715041707 +-2.45418183769296,49.0198058220409 +-2.45516232203719,48.9298752249138 +-2.59165304019061,48.9304391288357 + + + + + +WV32 +#labelStyle + +-2.5229719964375,48.9751477870314 + + + + +WV33 + +Small Square WV33 Boundry Box +#Line2 + + +1 + +-2.59091821024054,49.0203804982369 +-2.5901797947792,49.1103114581214 +-2.45319637231855,49.109743991224 +-2.45418173939108,49.0198148159289 +-2.59091821024054,49.0203804982369 + + + + + +WV33 +#labelStyle + +-2.52211214212912,49.0650876214734 + + + + +WV34 + +Small Square WV34 Boundry Box +#Line2 + + +1 + +-2.59017972074651,49.110320452046 +-2.58943762262572,49.200249997109 +-2.45220599239267,49.1996807390186 +-2.45319627352679,49.1097529849699 +-2.59017972074651,49.110320452046 + + + + + +WV34 +#labelStyle + +-2.52124800267293,49.1550260376635 + + + + +WV35 + +Small Square WV35 Boundry Box +#Line2 + + +1 + +-2.58943754822354,49.2002589908922 +-2.58869174375154,49.2901871217761 +-2.4512106662998,49.2896160660229 +-2.45220589310787,49.1996897326223 +-2.58943754822354,49.2002589908922 + + + + + +WV35 +#labelStyle + +-2.52037955053575,49.2449630362168 + + + + +WV36 + +Small Square WV36 Boundry Box +#Line2 + + +1 + +-2.5886916689775,49.2901961154178 +-2.58794213425107,49.3801228327781 +-2.45021036214229,49.3795499728482 +-2.45121056651879,49.2896250594845 +-2.5886916689775,49.2901961154178 + + + + + +WV36 +#labelStyle + +-2.51950675793896,49.3348986177621 + + + + +WV37 + +Small Square WV37 Boundry Box +#Line2 + + +1 + +-2.58794205910277,49.3801318262785 +-2.58718877000494,49.4700571307842 +-2.44920504773725,49.4694824601187 +-2.45021026186188,49.3795589661679 +-2.58794205910277,49.3801318262785 + + + + + +WV37 +#labelStyle + +-2.51862959685575,49.4248327829408 + + + + +WV38 + +Small Square WV38 Boundry Box +#Line2 + + +1 + +-2.58718869447995,49.4700661241434 +-2.58643162667759,49.5599900164766 +-2.44819469061335,49.5594135284716 +-2.4492049469542,49.4694914532965 +-2.58718869447995,49.4700661241434 + + + + + +WV38 +#labelStyle + +-2.51774803900839,49.5147655324077 + + + + +WV39 + +Small Square WV39 Boundry Box +#Line2 + + +1 + +-2.58643155077347,49.5599990096946 +-2.58567067971493,49.6499214905508 +-2.44717925800766,49.6493431785568 +-2.44819458932439,49.5594225215076 +-2.58643155077347,49.5599990096946 + + + + + +WV39 +#labelStyle + +-2.51686205586546,49.6046968668308 + + + + +WV40 + +Small Square WV40 Boundry Box +#Line2 + + +1 + +-2.45709536021772,48.7499917106162 +-2.45612452409975,48.8399251529093 +-2.31988319022153,48.8392020067282 +-2.32109730005379,48.749270835755 +-2.45709536021772,48.7499917106162 + + + + + +WV40 +#labelStyle + +-2.38854323208295,48.7946221581214 + + + + +WV41 + +Small Square WV41 Boundry Box +#Line2 + + +1 + +-2.45612442676586,48.8399341470818 +-2.45514876964036,48.9298661664104 +-2.31866292987112,48.9291407405834 +-2.31988306849758,48.8392110006731 +-2.45612442676586,48.8399341470818 + + + + + +WV41 +#labelStyle + +-2.38744792465992,48.8845628083809 + + + + +WV42 + +Small Square WV42 Boundry Box +#Line2 + + +1 + +-2.45514867182279,48.9298751604407 +-2.45416816290471,49.0198057573644 +-2.3174366016264,49.0190780437369 +-2.3186628075423,48.9291497343852 +-2.45514867182279,48.9298751604407 + + + + + +WV42 +#labelStyle + +-2.38634717440934,48.9745020319742 + + + + +WV43 + +Small Square WV43 Boundry Box +#Line2 + + +1 + +-2.45416806460037,49.0198147512523 +-2.45318267283165,49.1097439263435 +-2.3162041666469,49.1090139167056 +-2.31743647868886,49.0190870373957 +-2.45416806460037,49.0198147512523 + + + + + +WV43 +#labelStyle + +-2.3852409465336,49.064439829441 + + + + +WV44 + +Small Square WV44 Boundry Box +#Line2 + + +1 + +-2.45318257403741,49.1097529200893 +-2.45219226808395,49.1996806739332 +-2.31496558574696,49.1989483600187 +-2.31620404309673,49.1090229102214 +-2.45318257403741,49.1097529200893 + + + + + +WV44 +#labelStyle + +-2.38412920592614,49.154376201334 + + + + +WV45 + +Small Square WV45 Boundry Box +#Line2 + + +1 + +-2.45219216879667,49.1996896675369 +-2.45119691704533,49.289616000732 +-2.31372081939197,49.288881374218 +-2.31496546158023,49.1989573533916 +-2.45219216879667,49.1996896675369 + + + + + +WV45 +#labelStyle + +-2.38301191716809,49.2443111482184 + + + + +WV46 + +Small Square WV46 Boundry Box +#Line2 + + +1 + +-2.45119681726182,49.2896249941936 +-2.45019658781733,49.379549907351 +-2.31246982769455,49.3788129598578 +-2.31372069460471,49.288890367448 +-2.45119681726182,49.2896249941936 + + + + + +WV46 +#labelStyle + +-2.38188904452485,49.3342446706722 + + + + +WV47 + +Small Square WV47 Boundry Box +#Line2 + + +1 + +-2.4501964875344,49.3795589006707 +-2.44919124821624,49.4694823944145 +-2.3112125704106,49.4687431175045 +-2.31246970228274,49.3788219529449 +-2.4501964875344,49.3795589006707 + + + + + +WV47 +#labelStyle + +-2.38076055194256,49.4241767692861 + + + + +WV48 + +Small Square WV48 Boundry Box +#Line2 + + +1 + +-2.44919114743066,49.4694913875923 +-2.44818086576993,49.5594134625597 +-2.30994900693541,49.5586718477372 +-2.31121244437021,49.4687521104489 +-2.44919114743066,49.4694913875923 + + + + + +WV48 +#labelStyle + +-2.37962640304463,49.5141074446634 + + + + +WV49 + +Small Square WV49 Boundry Box +#Line2 + + +1 + +-2.44818076447843,49.5594224555956 +-2.44716540771464,49.6493431124363 +-2.30867909629965,49.6485991511472 +-2.30994888026236,49.5586808405389 +-2.44818076447843,49.5594224555956 + + + + + +WV49 +#labelStyle + +-2.37848656112814,49.6040366974201 + + + + +WV50 + +Small Square WV50 Boundry Box +#Line2 + + +1 + +-2.32108369916732,48.7492707556345 +-2.31986956500704,48.8392019263553 +-2.18363426210382,48.8383177814499 +-2.18509163181715,48.7483893877014 +-2.32108369916732,48.7492707556345 + + + + + +WV50 +#labelStyle + +-2.25241291609315,48.7938196851789 + + + + +WV51 + +Small Square WV51 Boundry Box +#Line2 + + +1 + +-2.31986944328065,48.8392109203002 +-2.31864928020539,48.9291406599571 +-2.18216950991391,48.9282537279003 +-2.18363411599119,48.8383267751166 +-2.31986944328065,48.8392109203002 + + + + + +WV51 +#labelStyle + +-2.25107370139005,48.8837578062556 + + + + +WV52 + +Small Square WV52 Boundry Box +#Line2 + + +1 + +-2.31864915787413,48.9291496537589 +-2.31742292738788,49.0190779628564 +-2.18069747443154,49.0181882336788 +-2.18216936307527,48.9282627214229 +-2.31864915787413,48.9291496537589 + + + + + +WV52 +#labelStyle + +-2.24972783214472,48.9736944916337 + + + + +WV53 + +Small Square WV53 Boundry Box +#Line2 + + +1 + +-2.31742280444788,49.0190869565152 +-2.31619046771325,49.1090138355699 +-2.17921810903985,49.108121299234 +-2.18069732686224,49.0181972270573 +-2.31742280444788,49.0190869565152 + + + + + +WV53 +#labelStyle + +-2.24837526581545,49.0636297417915 + + + + +WV54 + +Small Square WV54 Boundry Box +#Line2 + + +1 + +-2.31619034416061,49.1090228290856 +-2.31495186199506,49.1989482786269 +-2.17773136670775,49.1980529250269 +-2.17921796073521,49.1081302924686 +-2.31619034416061,49.1090228290856 + + + + + +WV54 +#labelStyle + +-2.24701595948293,49.1535635572195 + + + + +WV55 + +Small Square WV55 Boundry Box +#Line2 + + +1 + +-2.31495173782583,49.1989572719997 +-2.3137070706979,49.2888812925692 +-2.17623719998539,49.2879831115298 +-2.17773121766305,49.1980619181175 +-2.31495173782583,49.1989572719997 + + + + + +WV55 +#labelStyle + +-2.24564986984601,49.2434959384204 + + + + +WV56 + +Small Square WV56 Boundry Box +#Line2 + + +1 + +-2.31370694590814,49.2888902857991 +-2.3124560539336,49.3788128779509 +-2.17473556099951,49.3779118592272 +-2.17623705019587,49.2879921044765 +-2.31370694590814,49.2888902857991 + + + + + +WV56 +#labelStyle + +-2.24427695321758,49.3334268859088 + + + + +WV57 + +Small Square WV57 Boundry Box +#Line2 + + +1 + +-2.31245592851928,49.3788218710381 +-2.31119877145726,49.4687430353388 +-2.1732264014488,49.4678391686153 +-2.17473541046035,49.37792085203 +-2.31245592851928,49.3788218710381 + + + + + +WV57 +#labelStyle + +-2.24289716552031,49.4233564002118 + + + + +WV58 + +Small Square WV58 Boundry Box +#Line2 + + +1 + +-2.31119864541434,49.4687520282831 +-2.30993518266335,49.5586717653117 +-2.17170967259916,49.557765040202 +-2.17322625015516,49.4678481612743 +-2.31119864541434,49.4687520282831 + + + + + +WV58 +#labelStyle + +-2.24151046228227,49.5132844818684 + + + + +WV59 + +Small Square WV59 Boundry Box +#Line2 + + +1 + +-2.30993505598776,49.5586807581133 +-2.30866524658172,49.6485990684609 +-2.17018532527888,49.6476894745069 +-2.17170952054613,49.5577740327173 +-2.30993505598776,49.5586807581133 + + + + + +WV59 +#labelStyle + +-2.24011679863265,49.6032111314297 + + + + +WV60 + +Small Square WV60 Boundry Box +#Line2 + + +1 + +-2.18507803159004,48.7483892915309 +-2.18362063755288,48.8383176849764 +-2.04739257318412,48.8372725606126 +-2.04909315697429,48.7473474496781 +-2.18507803159004,48.7483892915309 + + + + + +WV60 +#labelStyle + +-2.11628921459149,48.7928564596309 + + + + +WV61 + +Small Square WV61 Boundry Box +#Line2 + + +1 + +-2.18362049143781,48.8383266786431 +-2.18215586091597,48.9282536311227 +-2.04568337536888,48.9272052122165 +-2.04739240268741,48.8372815539504 +-2.18362049143781,48.8383266786431 + + + + + +WV61 +#labelStyle + +-2.11470613478354,48.8827915449256 + + + + +WV62 + +Small Square WV62 Boundry Box +#Line2 + + +1 + +-2.18215571407488,48.9282626246453 +-2.18068380086508,49.018188136596 +-2.04396567927278,49.0171364113639 +-2.04568320402504,48.9272142054091 +-2.18215571407488,48.9282626246453 + + + + + +WV62 +#labelStyle + +-2.11311518909226,48.9727251836811 + + + + +WV63 + +Small Square WV63 Boundry Box +#Line2 + + +1 + +-2.18068365329331,49.0181971299745 +-2.17920441078256,49.108121201845 +-2.04223943050711,49.1070661584234 +-2.04396550707641,49.0171454044113 +-2.18068365329331,49.0181971299745 + + + + + +WV63 +#labelStyle + +-2.11151632723599,49.0626573763014 + + + + +WV64 + +Small Square WV64 Boundry Box +#Line2 + + +1 + +-2.17920426247545,49.1081301950795 +-2.17771764363656,49.1980528273304 +-2.0405045741999,49.1969944537743 +-2.04223925745273,49.1070751513255 +-2.17920426247545,49.1081301950795 + + + + + +WV64 +#labelStyle + +-2.10990949848674,49.1525881232027 + + + + +WV65 + +Small Square WV65 Boundry Box +#Line2 + + +1 + +-2.17771749458938,49.198061820421 +-2.17622345197643,49.2879830135248 +-2.03876105499063,49.2869212978077 +-2.04050440028201,49.1970034465313 +-2.17771749458938,49.198061820421 + + + + + +WV65 +#labelStyle + +-2.10829465166532,49.2425174248124 + + + + +WV66 + +Small Square WV66 Boundry Box +#Line2 + + +1 + +-2.1762233021844,49.2879920064715 +-2.1747217879281,49.3779117609126 +-2.03700881702488,49.3768466909253 +-2.03876088020367,49.2869302904195 +-2.1762233021844,49.2879920064715 + + + + + +WV66 +#labelStyle + +-2.10667173513637,49.3324452815695 + + + + +WV67 + +Small Square WV67 Boundry Box +#Line2 + + +1 + +-2.17472163738643,49.3779207537154 +-2.17321260318947,49.4678390699899 +-2.03524780394883,49.4667706335401 +-2.03700864136323,49.3768556833921 +-2.17472163738643,49.3779207537154 + + + + + +WV67 +#labelStyle + +-2.10504069680335,49.4223716939245 + + + + +WV68 + +Small Square WV68 Boundry Box +#Line2 + + +1 + +-2.1732124518933,49.4678480626489 +-2.17169584902561,49.5577649412647 +-2.03347795890378,49.5566931260761 +-2.03524762740683,49.4667796258618 +-2.1732124518933,49.4678480626489 + + + + + +WV68 +#labelStyle + +-2.10340148410342,49.5122966623391 + + + + +WV69 + +Small Square WV69 Boundry Box +#Line2 + + +1 + +-2.17169569697005,49.5577739337799 +-2.17017147626401,49.6476893752567 +-2.03169922452053,49.6466141689683 +-2.03347778147572,49.5567021182529 +-2.17169569697005,49.5577739337799 + + + + + +WV69 +#labelStyle + +-2.10175404400228,49.6022201872867 + + + + +WV70 + +Small Square WV70 Boundry Box +#Line2 + + +1 + +-2.0490795575265,48.7473473374598 +-2.04737894941748,48.8372724480407 +-1.91115933073751,48.8360663669895 +-1.91310307516506,48.7461450443241 +-2.0490795575265,48.7473473374598 + + + + + +WV70 +#labelStyle + +-1.98017333123726,48.791732502436 + + + + +WV71 + +Small Square WV71 Boundry Box +#Line2 + + +1 + +-2.04737877891833,48.8372814413784 +-2.04566972716024,48.9272050992897 +-1.90920574121458,48.9259952164404 +-1.91115913586209,48.8360753599477 +-2.04737877891833,48.8372814413784 + + + + + +WV71 +#labelStyle + +-1.97834643617162,48.8816640454743 + + + + +WV72 + +Small Square WV72 Boundry Box +#Line2 + + +1 + +-2.04566955581396,48.9272140924822 +-2.04395200650067,49.017136298081 +-1.90724243890045,49.0159225998373 +-1.90920554537097,48.9260042092521 +-2.04566955581396,48.9272140924822 + + + + + +WV72 +#labelStyle + +-1.97651046432308,48.9715941293249 + + + + +WV73 + +Small Square WV73 Boundry Box +#Line2 + + +1 + +-2.04395183430183,49.0171452911283 +-2.04222573304928,49.107066044783 +-1.90526936163978,49.1058485174559 +-1.90724224208246,49.0159315925024 +-2.04395183430183,49.0171452911283 + + + + + +WV73 +#labelStyle + +-1.97466535767483,49.0615227543058 + + + + +WV74 + +Small Square WV74 Boundry Box +#Line2 + + +1 + +-2.04222555999243,49.1070750376851 +-2.0404908519333,49.1969943397753 +-1.90328644672501,49.1957729695821 +-1.90526916384117,49.1058575099743 +-2.04222555999243,49.1070750376851 + + + + + +WV74 +#labelStyle + +-1.97281105769514,49.1514499207462 + + + + +WV75 + +Small Square WV75 Boundry Box +#Line2 + + +1 + +-2.04049067801293,49.1970033325323 +-2.03874730779145,49.2869211834487 +-1.90129363089038,49.2856959565125 +-1.90328624793948,49.1957819619541 +-2.04049067801293,49.1970033325323 + + + + + +WV75 +#labelStyle + +-1.9709475053317,49.2413756289858 + + + + +WV76 + +Small Square WV76 Boundry Box +#Line2 + + +1 + +-2.03874713300199,49.2869301760605 +-2.03699504476849,49.376846576205 +-1.89929085030569,49.3756174785538 +-1.90129343111157,49.285704948738 +-2.03874713300199,49.2869301760605 + + + + + +WV76 +#labelStyle + +-1.96907464100597,49.3312998793751 + + + + +WV77 + +Small Square WV77 Boundry Box +#Line2 + + +1 + +-2.03699486910432,49.3768555686717 +-2.03523400650979,49.4667705184572 +-1.89727804057018,49.4655375360228 +-1.89929064952721,49.3756264706327 +-2.03699486910432,49.3768555686717 + + + + + +WV77 +#labelStyle + +-1.96719240460727,49.4212226722754 + + + + +WV78 + +Small Square WV78 Boundry Box +#Line2 + + +1 + +-2.03523382996527,49.4667795107789 +-2.03346413615585,49.5566930106293 +-1.89525513670613,49.5554561292467 +-1.89727783878554,49.4655465279553 +-2.03523382996527,49.4667795107789 + + + + + +WV78 +#labelStyle + +-1.96530073548699,49.5111440080584 + + + + +WV79 + +Small Square WV79 Boundry Box +#Line2 + + +1 + +-2.03346395872526,49.556702002806 +-2.03168537633665,49.6466140531563 +-1.89322207315253,49.6453732585628 +-1.89525493390881,49.5554651210328 +-2.03346395872526,49.556702002806 + + + + + +WV79 +#labelStyle + +-1.96339957245261,49.6010638871068 + + + + +WV80 + +Small Square WV80 Boundry Box +#Line2 + + +1 + +-1.91308947661655,48.7461449160602 +-1.91114570787587,48.8360662383215 +-1.77493574156641,48.8346992268575 +-1.77712258556178,48.7447821977614 +-1.91308947661655,48.7461449160602 + + + + + +WV80 +#labelStyle + +-1.84406646925323,48.7904478380476 + + + + +WV81 + +Small Square WV81 Boundry Box +#Line2 + + +1 + +-1.91114551299801,48.8360752312797 +-1.90919209391672,48.9259950873669 +-1.77273782195174,48.9246237670053 +-1.77493552231841,48.8347082193856 +-1.91114551299801,48.8360752312797 + + + + + +WV81 +#labelStyle + +-1.84199581644422,48.8803753325 + + + + +WV82 + +Small Square WV82 Boundry Box +#Line2 + + +1 + +-1.90919189807066,48.9260040801785 +-1.90722876704495,49.0159224703568 +-1.77052897558179,49.0145468256896 +-1.77273760161455,48.9246327593852 +-1.90919189807066,48.9260040801785 + + + + + +WV82 +#labelStyle + +-1.83991487646212,48.9703013533099 + + + + +WV83 + +Small Square WV83 Boundry Box +#Line2 + + +1 + +-1.9072285702245,49.0159314630218 +-1.90525566510443,49.1058483875668 +-1.76830913254054,49.1044684030809 +-1.77052875414844,49.0145558179214 +-1.9072285702245,49.0159314630218 + + + + + +WV83 +#labelStyle + +-1.83782358356054,49.0602259006969 + + + + +WV84 + +Small Square WV84 Boundry Box +#Line2 + + +1 + +-1.90525546730335,49.1058573800853 +-1.90327272538684,49.1957728392831 +-1.76607822229094,49.1943884993595 +-1.768308910004,49.1044773951646 +-1.90525546730335,49.1058573800853 + + + + + +WV84 +#labelStyle + +-1.83572187140966,49.1501489748909 + + + + +WV85 + +Small Square WV85 Boundry Box +#Line2 + + +1 + +-1.90327252659882,49.195781831655 +-1.9012798846256,49.2856958258021 +-1.76383617366808,49.2843071147148 +-1.76607799864413,49.1943974912951 +-1.90327252659882,49.195781831655 + + + + + +WV85 +#labelStyle + +-1.83360967308981,49.2400705761312 + + + + +WV86 + +Small Square WV86 Boundry Box +#Line2 + + +1 + +-1.9012796848443,49.2857048180275 +-1.89927707898974,49.3756173474304 +-1.76158291487227,49.3742242493457 +-1.76383594890385,49.2843161065023 +-1.9012796848443,49.2857048180275 + + + + + +WV86 +#labelStyle + +-1.83148692108499,49.3299907046675 + + + + +WV87 + +Small Square WV87 Boundry Box +#Line2 + + +1 + +-1.89927687820874,49.3756263395093 +-1.89726424407768,49.4655374044849 +-1.75931837346205,49.4641399034603 +-1.76158268898341,49.3742332409851 +-1.89927687820874,49.3756263395093 + + + + + +WV87 +#labelStyle + +-1.82935354727632,49.4199093607589 + + + + +WV88 + +Small Square WV88 Boundry Box +#Line2 + + +1 + +-1.89726404229051,49.4655463964175 +-1.89524131491089,49.555455997293 +-1.75704247634711,49.554054077276 +-1.75931814644129,49.4641488949517 +-1.89726404229051,49.4655463964175 + + + + + +WV88 +#labelStyle + +-1.82720948293536,49.5098265446744 + + + + +WV89 + +Small Square WV89 Boundry Box +#Line2 + + +1 + +-1.89524111211103,49.555464989079 +-1.89320822592754,49.6453731261916 +-1.75475514978109,49.6439667710194 +-1.75704224818711,49.5540630686194 +-1.89524111211103,49.555464989079 + + + + + +WV89 +#labelStyle + +-1.82505465871739,49.5997422566928 + + + + +WV90 + +Small Square WV90 Boundry Box +#Line2 + + +1 + +-1.77710898803244,48.7447820534548 +-1.77492211973042,48.8346990820963 +-1.63872301193313,48.8331711699958 +-1.6411528868025,48.7432589395935 +-1.77710898803244,48.7447820534548 + + + + + +WV90 +#labelStyle + +-1.70796983135849,48.7890024944116 + + + + +WV91 + +Small Square WV91 Boundry Box +#Line2 + + +1 + +-1.77492190047999,48.8347080746244 +-1.77272417568609,48.9246236217878 +-1.63628083153513,48.923090893867 +-1.63872276831947,48.8331801620431 +-1.77492190047999,48.8347080746244 + + + + + +WV91 +#labelStyle + +-1.7056554859821,48.8789254341145 + + + + +WV92 + +Small Square WV92 Boundry Box +#Line2 + + +1 + +-1.77272395534644,48.9246326141677 +-1.7705153047651,49.0145466800142 +-1.63382651103209,49.013009119055 +-1.63628058671131,48.9230998857645 +-1.77272395534644,48.9246326141677 + + + + + +WV92 +#labelStyle + +-1.70332964361959,48.9688468839151 + + + + +WV93 + +Small Square WV93 Boundry Box +#Line2 + + +1 + +-1.77051508332928,49.0145556722459 +-1.76829543705067,49.104468256946 +-1.63135997275409,49.1029258456127 +-1.63382626499039,49.0130181108026 +-1.77051508332928,49.0145556722459 + + + + + +WV93 +#labelStyle + +-1.70099223080133,49.0587668439224 + + + + +WV94 + +Small Square WV94 Boundry Box +#Line2 + + +1 + +-1.76829521451165,49.1044772490296 +-1.76606450200496,49.1943883527634 +-1.62888113834137,49.192841073602 +-1.6313597254867,49.1029348372105 +-1.76829521451165,49.1044772490296 + + + + + +WV94 +#labelStyle + +-1.69864317340578,49.1486853142542 + + + + +WV95 + +Small Square WV95 Boundry Box +#Line2 + + +1 + +-1.76606427835567,49.1943973446989 +-1.76382242846228,49.2843069676558 +-1.62638992873681,49.2827548030929 +-1.62888088984043,49.1928500650499 +-1.76606427835567,49.1943973446989 + + + + + +WV95 +#labelStyle + +-1.69628239665238,49.2386022950376 + + + + +WV96 + +Small Square WV96 Boundry Box +#Line2 + + +1 + +-1.76382220369555,49.2843159594433 +-1.76156914462213,49.3742241018221 +-1.6238862641782,49.3726670341636 +-1.62638967899437,49.2827637943909 +-1.76382220369555,49.2843159594433 + + + + + +WV96 +#labelStyle + +-1.69390982509429,49.3285177864082 + + + + +WV97 + +Small Square WV97 Boundry Box +#Line2 + + +1 + +-1.76156891873077,49.3742330934615 +-1.75930457804227,49.4641397554705 +-1.62137006419052,49.4625777669009 +-1.62388601318626,49.3726760253118 +-1.76156891873077,49.3742330934615 + + + + + +WV97 +#labelStyle + +-1.69152538261105,49.4184317885106 + + + + +WV98 + +Small Square WV98 Boundry Box +#Line2 + + +1 + +-1.75930435101898,49.4641487469618 +-1.75702865563156,49.5540539288182 +-1.61884124757803,49.5524870013994 +-1.62136981194099,49.4625867578992 +-1.75930435101898,49.4641487469618 + + + + + +WV98 +#labelStyle + +-1.68912899240115,49.5083443014982 + + + + +WV99 + +Small Square WV99 Boundry Box +#Line2 + + +1 + +-1.75702842746902,49.5540629201616 +-1.75474130364282,49.6439666220919 +-1.6162997324163,49.6423947377621 +-1.61884099406275,49.552495992248 +-1.75702842746902,49.5540629201616 + + + + + +WV99 +#labelStyle + +-1.68672057697449,49.5982553255329 + + + + + +