diff --git a/application/controllers/Adif.php b/application/controllers/Adif.php index fa9277253..7ead333e8 100644 --- a/application/controllers/Adif.php +++ b/application/controllers/Adif.php @@ -184,7 +184,7 @@ class adif extends CI_Controller { $this->load->view('adif/import', $data); $this->load->view('interface_assets/footer'); } else { - if ($this->stations->check_station_is_accessible($this->input->post('station_profile'))) { + if ($this->stations->check_station_is_accessible($this->input->post('station_profile', TRUE))) { $contest=$this->security->xss_clean($this->input->post('contest')) ?? ''; $stopnow=false; $fdata = array('upload_data' => $this->upload->data()); @@ -236,7 +236,7 @@ class adif extends CI_Controller { }; $record=''; // free memory try { - $custom_errors = $this->logbook_model->import_bulk($alladif, $this->input->post('station_profile'), $this->input->post('skipDuplicate'), $this->input->post('markClublog'),$this->input->post('markLotw'), $this->input->post('dxccAdif'), $this->input->post('markQrz'), $this->input->post('markEqsl'), $this->input->post('markHrd'), true, $this->input->post('operatorName'), false, $this->input->post('skipStationCheck')); + $custom_errors = $this->logbook_model->import_bulk($alladif, $this->input->post('station_profile', TRUE), $this->input->post('skipDuplicate'), $this->input->post('markClublog'),$this->input->post('markLotw'), $this->input->post('dxccAdif'), $this->input->post('markQrz'), $this->input->post('markEqsl'), $this->input->post('markHrd'), true, $this->input->post('operatorName'), false, $this->input->post('skipStationCheck')); } catch (Exception $e) { log_message('error', 'Import error: '.$e->getMessage()); $data['page_title'] = __("ADIF Import failed!"); @@ -256,6 +256,12 @@ class adif extends CI_Controller { $custom_errors=__("Station Profile not valid for User"); } + // Lets clean up static maps cache for this station + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image($this->input->post('station_profile', TRUE)); + log_message("Error","ADIF End"); $data['adif_errors'] = $custom_errors; $data['skip_dupes'] = $this->input->post('skipDuplicate'); diff --git a/application/controllers/Staticmap.php b/application/controllers/Staticmap.php new file mode 100644 index 000000000..ecdf44b8e --- /dev/null +++ b/application/controllers/Staticmap.php @@ -0,0 +1,165 @@ +load->model('staticmap_model'); + $this->load->model('stationsetup_model'); + $this->load->model('visitor_model'); + + $slug = $this->security->xss_clean($slug); + if ($slug == '') { + show_404(__("Unknown Public Page.")); + } + // check if the public slug exists + $logbook_id = $this->stationsetup_model->public_slug_exists_logbook_id($slug); + if ($logbook_id == false) { + show_404(__("Unknown Public Page.")); + } + + // Optional override-parameters + $band = $this->input->get('band', TRUE) ?? 'nbf'; + $continent = $this->input->get('continent', TRUE) ?? 'nC'; + $thememode = $this->input->get('theme', TRUE) ?? null; + $hide_home = $this->input->get('hide_home', TRUE) == 1 ? true : false; + + /** + * Based on Export Settings -> Overlays and QSO Count + */ + // qsocount + $qsocount = $this->input->get('qsocount', TRUE) ?? ''; + // if the qso count is not a number, set it to the user option or 250 per default (same as used in stationsetup) + $uid = $this->stationsetup_model->getContainer($logbook_id, false)->row()->user_id; + if ($qsocount == 0 || !is_numeric($qsocount)) { + $qsocount = $this->user_options_model->get_options('ExportMapOptions', array('option_name' => 'qsocount', 'option_key' => $slug), $uid)->row()->option_value ?? 250; + } + + // Night shadow + $night_shadow = $this->input->get('ns', TRUE) ?? ''; + if ($night_shadow == '' || ($night_shadow != 1 && $night_shadow != 0)) { + $r = $this->user_options_model->get_options('ExportMapOptions', array('option_name' => 'nightshadow_layer', 'option_key' => $slug), $uid)->row()->option_value ?? ''; + $night_shadow = $r == 'true' ? true : false; + } + + // Pathlines + $pathlines = $this->input->get('pl', TRUE) ?? ''; + if ($pathlines == '' || ($pathlines != 1 && $pathlines != 0)) { + $r = $this->user_options_model->get_options('ExportMapOptions', array('option_name' => 'path_lines', 'option_key' => $slug), $uid)->row()->option_value ?? ''; + $pathlines = $r == 'true' ? true : false; + } + + // CQ Zones + $cqzones = $this->input->get('cqz', TRUE) ?? ''; + if ($cqzones == '' || ($cqzones != 1 && $cqzones != 0)) { + $r = $this->user_options_model->get_options('ExportMapOptions', array('option_name' => 'cqzones_layer', 'option_key' => $slug), $uid)->row()->option_value ?? ''; + $cqzones = $r == 'true' ? true : false; + } + + // ITU Zones + $ituzones = $this->input->get('ituz', TRUE) ?? ''; + if ($ituzones == '' || ($ituzones != 1 && $ituzones != 0)) { + $r = $this->user_options_model->get_options('ExportMapOptions', array('option_name' => 'ituzones_layer', 'option_key' => $slug), $uid)->row()->option_value ?? ''; + $ituzones = $r == 'true' ? true : false; + } + + // handling the theme mode + $this->load->model('themes_model'); + if ($thememode == null || $thememode == '' || ($thememode != 'dark' && $thememode != 'light')) { + $r = $this->themes_model->get_theme_mode($this->optionslib->get_option('option_theme')); + $thememode = $r; + } + + // prepare the cache directory + $cachepath = $this->config->item('cache_path') == '' ? APPPATH . 'cache/' : $this->config->item('cache_path'); + $cacheDir = $cachepath . "staticmap_images/"; + if (!is_dir($cacheDir)) { + mkdir($cacheDir, 0755, true); + } + + // we need the realpath later for validation + $cacheDir = realpath($cachepath . "staticmap_images/"); + + // create a unique filename for the cache + $filenameRaw = $uid . $logbook_id . $qsocount . $band . $thememode . $continent . $hide_home . ($night_shadow == false ? 0 : 1) . ($pathlines == false ? 0 : 1) . ($cqzones == false ? 0 : 1) . ($ituzones == false ? 0 : 1); + $filename = crc32('staticmap_' . $slug) . '_' . substr(md5($filenameRaw), 0, 12) . '.png'; + $filepath = $cacheDir . '/' . $filename; + + // Set the cache time to 7 days + $maxAge = 3600 * 24 * 7; + + // remove the cached image for debugging purposes + if ($debugging) { + if (is_file($filepath)) { + unlink($filepath); + } + } + + if ($this->staticmap_model->validate_cached_image($filepath, $cacheDir, $maxAge, $slug)) { + log_message('debug', 'Static map image found in cache: ' . $filename); + header('Content-Type: image/png'); + readfile($filepath); + return; + } else { + if (in_array('gd', get_loaded_extensions())) { + + if ($logbook_id != false) { + // Get associated station locations for mysql queries + $logbooks_locations_array = $this->stationsetup_model->get_container_relations($logbook_id); + + if (!$logbooks_locations_array) { + show_404(__("Empty Logbook")); + } + } else { + log_message('error', $slug . ' has no associated station locations'); + show_404(__("Unknown Public Page.")); + } + + // we need to get an array of all coordinates of the stations + if (!$this->load->is_loaded('logbook_model')) { + $this->load->model('logbook_model'); + } + $grids = []; + foreach ($logbooks_locations_array as $location) { + $station_info = $this->logbook_model->check_station($location); + if ($station_info) { + $grids[] = $station_info['station_gridsquare']; + } + } + if (!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + $coordinates = []; + foreach ($grids as $grid) { + $coordinates[] = $this->qra->qra2latlong($grid); + } + $centerMap = $this->qra->getCenterLatLng($coordinates); + + $qsos = $this->visitor_model->get_qsos($qsocount, $logbooks_locations_array, $band == 'nbf' ? '' : $band, $continent == 'nC' ? '' : $continent); // TODO: Allow 'all' option + + $image = $this->staticmap_model->render_static_map($qsos, $uid, $centerMap, $coordinates, $filepath, $continent, $thememode, $hide_home, $night_shadow, $pathlines, $cqzones, $ituzones); + + header('Content-Type: image/png'); + + if ($image == false) { + $msg = "Can't create static map image. Something went wrong."; + log_message('error', $msg); + show_404($msg); + } else { + readfile($filepath); + } + } else { + $msg = "Can't create static map image. Extention 'php-gd' is not installed. Install it and restart the webserver."; + log_message('error', $msg); + echo $msg; + } + } + } +} diff --git a/application/controllers/Station.php b/application/controllers/Station.php index d2d597945..8c509b90c 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -44,8 +44,8 @@ class Station extends CI_Controller } } - public function edit($id) - { + public function edit($id) { + $id = $this->security->xss_clean($id); $this->load->model('stations'); if ($this->stations->check_station_is_accessible($id)) { $data = $this->load_station_for_editing($id); @@ -60,6 +60,11 @@ class Station extends CI_Controller if ($this->stations->edit()) { $data['notice'] = __("Station Location") . $this->security->xss_clean($this->input->post('station_profile_name', true)) . " Updated"; } + // Also clean up static map images first + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image($id); redirect('stationsetup'); } } else { @@ -67,8 +72,8 @@ class Station extends CI_Controller } } - public function copy($id) - { + public function copy($id) { + $id = $this->security->xss_clean($id); $this->load->model('stations'); if ($this->stations->check_station_is_accessible($id)) { $data = $this->load_station_for_editing($id); @@ -93,16 +98,16 @@ class Station extends CI_Controller } } - public function edit_favourite($id) - { + public function edit_favourite($id) { + $id = $this->security->xss_clean($id); $this->load->model('stations'); $this->stations->edit_favourite($id); redirect('stationsetup'); } - function load_station_for_editing($id): array - { + function load_station_for_editing($id): array { + $id = $this->security->xss_clean($id); $this->load->library('form_validation'); $this->load->model('stations'); @@ -123,8 +128,8 @@ class Station extends CI_Controller } - function reassign_profile($id) - { + function reassign_profile($id) { + $id = $this->security->xss_clean($id); // $id is the profile that needs reassigned to QSOs // ONLY Admin can do that! $this->load->model('stations'); if ($this->user_model->authorize(99)) { @@ -135,8 +140,9 @@ class Station extends CI_Controller redirect('stationsetup'); } - function set_active($current, $new, $is_ajax = null) - { + function set_active($current, $new, $is_ajax = null) { + $current = $this->security->xss_clean($current); + $new = $this->security->xss_clean($new); $this->load->model('stations'); $this->stations->set_active($current, $new); @@ -147,8 +153,8 @@ class Station extends CI_Controller redirect('stationsetup'); } - public function delete($id) - { + public function delete($id) { + $id = $this->security->xss_clean($id); $this->load->model('stations'); if ($this->stations->check_station_is_accessible($id)) { $this->stations->delete($id); @@ -156,8 +162,8 @@ class Station extends CI_Controller redirect('stationsetup'); } - public function deletelog($id) - { + public function deletelog($id) { + $id = $this->security->xss_clean($id); $this->load->model('stations'); if ($this->stations->check_station_is_accessible($id)) { $this->stations->deletelog($id); diff --git a/application/controllers/Visitor.php b/application/controllers/Visitor.php index 5856285be..d386ea25a 100644 --- a/application/controllers/Visitor.php +++ b/application/controllers/Visitor.php @@ -459,8 +459,7 @@ class Visitor extends CI_Controller { $this->load->model('stationsetup_model'); $logbook_id = $this->stationsetup_model->public_slug_exists_logbook_id($slug); - if ($logbook_id != false) - { + if ($logbook_id != false) { // Get associated station locations for mysql queries $logbooks_locations_array = $this->stationsetup_model->get_container_relations($logbook_id); @@ -474,7 +473,7 @@ class Visitor extends CI_Controller { $qsos = $this->visitor_model->get_qsos($qsocount, $logbooks_locations_array, $band); $userid = $this->stationsetup_model->public_slug_exists_userid($slug); - $user_default_confirmation = $this->get_user_default_confirmation($userid); + $user_default_confirmation = $this->visitor_model->get_user_default_confirmation($userid); $mappedcoordinates = array(); foreach ($qsos->result('array') as $qso) { @@ -498,6 +497,7 @@ class Visitor extends CI_Controller { $this->load->library('Qra'); } $this->load->model('logbook_model'); + $this->load->model('visitor_model'); $latlng1 = $this->qra->qra2latlong($locator1); $latlng2 = $this->qra->qra2latlong($locator2); @@ -508,7 +508,7 @@ class Visitor extends CI_Controller { $data['latlng1'] = $latlng1; $data['latlng2'] = $latlng2; - $data['confirmed'] = ($this->qso_is_confirmed($qso, $user_default_confirmation)==true) ? true : false; + $data['confirmed'] = ($this->visitor_model->qso_is_confirmed($qso, $user_default_confirmation)==true) ? true : false; return $data; } @@ -518,6 +518,7 @@ class Visitor extends CI_Controller { $this->load->library('Qra'); } $this->load->model('logbook_model'); + $this->load->model('visitor_model'); $latlng1 = $this->qra->qra2latlong($mygrid); $latlng2[0] = $lat; @@ -529,39 +530,8 @@ class Visitor extends CI_Controller { $data['latlng1'] = $latlng1; $data['latlng2'] = $latlng2; - $data['confirmed'] = ($this->qso_is_confirmed($qso, $user_default_confirmation)==true) ? true : false; + $data['confirmed'] = ($this->visitor_model->qso_is_confirmed($qso, $user_default_confirmation)==true) ? true : false; return $data; } - - function qso_is_confirmed($qso, $user_default_confirmation) { - $confirmed = false; - $qso = (array) $qso; - if (strpos($user_default_confirmation, 'Q') !== false) { // QSL - if ($qso['COL_QSL_RCVD']=='Y') { $confirmed = true; } - } - if (strpos($user_default_confirmation, 'L') !== false) { // LoTW - if ($qso['COL_LOTW_QSL_RCVD']=='Y') { $confirmed = true; } - } - if (strpos($user_default_confirmation, 'E') !== false) { // eQsl - if ($qso['COL_EQSL_QSL_RCVD']=='Y') { $confirmed = true; } - } - if (strpos($user_default_confirmation, 'Z') !== false) { // QRZ - if ($qso['COL_QRZCOM_QSO_DOWNLOAD_STATUS']=='Y') { $confirmed = true; } - } - return $confirmed; - } - - function get_user_default_confirmation($userid) { - $this->db->where('user_id', $userid); - $query = $this->db->get('users'); - - if ($query->num_rows() > 0){ - foreach ($query->result() as $row) { - return $row->user_default_confirmation; - } - } else { - return ''; - } - } } diff --git a/application/libraries/Genfunctions.php b/application/libraries/Genfunctions.php index ee82b2ead..e6ace37fa 100644 --- a/application/libraries/Genfunctions.php +++ b/application/libraries/Genfunctions.php @@ -134,4 +134,125 @@ class Genfunctions return $flag; } + /** + * Function to convert a FontAwesome icon to a PNG image and returns filename if successful (or already exists) + * Source: https://github.com/sperelson/Awesome2PNG + * Modified by HB9HIL + * + * @param string $unicode Unicode of the FontAwesome icon (e.g. f0c8) - required + * @param string $color Hexadecimal color of the icon (default: ffffff) + * @param string $dest_file Destination file path (optional) + * @param int $pixelshigh Height of the icon in pixels (default: 32) + * @param int $alpha Alpha channel of the icon (default: 0) + * @param array $padding Padding of the icon (default: array(3, 3, 3, 3)) + * + * @return bool + */ + function fas2png($unicode, $color='ffffff', $dest_file = null, $pixelshigh=32, $alpha=0, $padding=array(3, 3, 3, 3)) { + try { + // Set the target path + if ($dest_file != null) { + $icon = $dest_file; + } else { + $CI = &get_instance(); + $cachepath = $CI->config->item('cache_path') == '' ? APPPATH . 'cache/' : $CI->config->item('cache_path'); + $cacheDir = $cachepath . "fas_icons_cache/"; + if (!is_dir($cacheDir)) { + mkdir($cacheDir, 0755, true); + } + $icon = $cacheDir . 'icon_' . $unicode . '_' . $color . '_' . $pixelshigh . '_a' . $alpha . '_p' . implode('-', $padding) . '.png'; + } + + // Check if the icon already exists + if (file_exists($icon)) { + return $icon; + } + + // Check if the font file exists + $font = realpath(APPPATH . '../') . '/assets/fontawesome/webfonts/fa-solid-900.ttf'; + if (!file_exists($font)) { + throw new Exception('Font file not found: ' . $font); + } + + // Variables for brute-forcing the correct point height + $ratio = 96 / 72; + $ratioadd = 0.0001; + $heightalright = false; + $count = 0; + $maxcount = 20000; + + $text = json_decode('"&#x'.$unicode.';"'); + if ($text === null) { + throw new Exception('Failed to decode unicode: &#x'.$unicode.';'); + } + + // Brute-force point height + while (!$heightalright && $count < $maxcount) { + $x = $pixelshigh / $ratio; + $count++; + $bounds = imagettfbbox($x, 0, $font, $text); + + if ($bounds === false) { + throw new Exception('Failed to calculate bounding box with imagettfbbox.'); + } + + $height = abs($bounds[7] - abs($bounds[1])); + + if ($height == $pixelshigh) { + $heightalright = true; + } else { + if ($height < $pixelshigh) { + $ratio -= $ratioadd; + } else { + $ratio += $ratioadd; + } + } + } + + if (!$heightalright) { + throw new Exception('Could not calculate the correct height for the icon.'); + } + + $width = abs($bounds[4]) + abs($bounds[0]); + + // Create the image + $im = imagecreatetruecolor($width + $padding[2] + $padding[3], $pixelshigh + $padding[0] + $padding[1]); + if ($im === false) { + throw new Exception('Failed to create image resource.'); + } + + imagesavealpha($im, true); + $trans = imagecolorallocatealpha($im, 0, 0, 0, 127); + imagefill($im, 0, 0, $trans); + imagealphablending($im, true); + + // Prepare font color + $fontcolor = $alpha << 24 | hexdec($color); + + // Add the icon + if (imagettftext($im, $x, 0, 1 + $padding[2], $height - abs($bounds[1]) - 1 + $padding[0], $fontcolor, $font, $text) === false) { + throw new Exception('Failed to render icon with imagettftext.'); + } + + imagesavealpha($im, true); + + // Save the image + if (imagepng($im, $icon) === false) { + throw new Exception('Failed to save PNG image.'); + } + + // Sleep to make sure the file is available in the next run. + usleep(100000); // 100ms + + // Clean up + imagedestroy($im); + + return $icon; + + } catch (Exception $e) { + log_message('error', $e->getMessage()); + return false; + } + } } + diff --git a/application/libraries/Qra.php b/application/libraries/Qra.php index b5654ec73..6e7cc9bf4 100644 --- a/application/libraries/Qra.php +++ b/application/libraries/Qra.php @@ -166,6 +166,39 @@ class Qra { //return findings return $result; } + + /** + * Function to calculate the center of a bunch of coordinates + * Source: https://www.phpsnippet.com/snippet/center-point-of-multiple-gps-coordinates-with-php + * + * @param array $coordinates Array of coordinates [latitude, longitude] + * Example: + * $coordinates = [ + * [37.7797, -122.41924], + * [37.77323, -122.41114], + * [37.79203, -122.40864], + * [37.7952, -122.4222] + * ]; + * + * @return array [latitude, longitude] Center of the coordinates + */ + + function getCenterLatLng($coordinates) { + $x = $y = $z = 0; + $n = count($coordinates); + foreach ($coordinates as $point) + { + $lt = $point[0] * pi() / 180; + $lg = $point[1] * pi() / 180; + $x += cos($lt) * cos($lg); + $y += cos($lt) * sin($lg); + $z += sin($lt); + } + $x /= $n; + $y /= $n; + + return [atan2(($z / $n), sqrt($x * $x + $y * $y)) * 180 / pi(), atan2($y, $x) * 180 / pi()]; + } } diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 3b1072264..a91d55018 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -382,6 +382,12 @@ class Logbook_model extends CI_Model { $data['COL_MY_CNTY'] = strtoupper(trim($station['station_cnty'])); $data['COL_MY_CQ_ZONE'] = strtoupper(trim($station['station_cq'])); $data['COL_MY_ITU_ZONE'] = strtoupper(trim($station['station_itu'])); + + // if there are any static map images for this station, remove them so they can be regenerated + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image($station_id); } // Decide whether its single gridsquare or a multi which makes it vucc_grids diff --git a/application/models/Logbooks_model.php b/application/models/Logbooks_model.php index 2fa6894f6..df69861ec 100644 --- a/application/models/Logbooks_model.php +++ b/application/models/Logbooks_model.php @@ -64,6 +64,12 @@ class Logbooks_model extends CI_Model { return; } + // Also clean up static map images first + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image(null, $clean_id); + // Delete logbook $this->db->where('user_id', $this->session->userdata('user_id')); $this->db->where('logbook_id', $clean_id); diff --git a/application/models/Staticmap_model.php b/application/models/Staticmap_model.php new file mode 100644 index 000000000..b4fb2e5cb --- /dev/null +++ b/application/models/Staticmap_model.php @@ -0,0 +1,765 @@ +load->model('Stations'); + $this->load->model('user_model'); + $this->load->model('stationsetup_model'); + + if (!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + if (!$this->load->is_loaded('genfunctions')) { + $this->load->library('genfunctions'); + } + + $requiredClasses = [ + './src/StaticMap/src/OpenStreetMap.php', + './src/StaticMap/src/LatLng.php', + './src/StaticMap/src/TileLayer.php', + './src/StaticMap/src/Markers.php', + './src/StaticMap/src/MapData.php', + './src/StaticMap/src/XY.php', + './src/StaticMap/src/Image.php', + './src/StaticMap/src/Utils/Terminator.php', + './src/StaticMap/src/Line.php', + './src/StaticMap/src/Polygon.php' + ]; + + foreach ($requiredClasses as $class) { + require_once($class); + } + + $fontPath = 'src/StaticMap/src/resources/font.ttf'; + + //=============================================================================================================================== + //===================================================== CONFIGURE GRAPHICS ====================================================== + //=============================================================================================================================== + + // Map data and default values + $centerMapLat = 25; // Needs to be a fix value as we can't wrap Latitude. Latitude of 25 is a good value to display all necessary places from north to south + $centerMapLng = $centerMap[1]; + $centerMap = $centerMapLat . $centerMapLng; // used for cached tiles + $zoom = 3; + $width = 2048; + $height = round(($width * 3.3) / 4); + $line_pxsize = 1; + $fontSize = 20; + $fontPosX = $height - 20; + $fontPosY = 300; + $contFontPosX = $width - ($width - 50); + $contFontPosY = $height - ($height - 30); + $watermark_size_mutiplier = 1.5; + $watermarkPosX = DantSu\PHPImageEditor\Image::ALIGN_CENTER; + $watermarkPosY = DantSu\PHPImageEditor\Image::ALIGN_MIDDLE; + $continentEnabled = false; + $cqz_color = '195619'; // Green + $ituz_color = '2c3e5f'; // Blue + + // Continent Option + if ($continent != 'nC' || $continent != null || $continent != '') { + if ($continent == 'AF') { + $continentEnabled = true; + $continentText = 'Africa'; + $centerMapLat = 2; + $centerMapLng = 20; + $zoom = 5; + $height = round(($width * 4) / 4); + $fontPosX = $height - 20; + } elseif ($continent == 'AS') { + $continentEnabled = true; + $continentText = 'Asia'; + $centerMapLat = 45; + $centerMapLng = 100; + $zoom = 4; + $contFontPosX = $width - ($width - 50); + } elseif ($continent == 'EU') { + $continentEnabled = true; + $continentText = 'Europe'; + $centerMapLat = 65; + $centerMapLng = 15; + $height = round(($width * 5) / 4); + $zoom = 5; + $fontPosX = $height - 20; + $contFontPosX = $width - ($width - 50); + } elseif ($continent == 'NA') { + $continentEnabled = true; + $continentText = 'North America'; + $centerMapLat = 55; + $centerMapLng = -100; + $zoom = 4; + $contFontPosX = $width - ($width - 110); + } elseif ($continent == 'OC') { + $continentEnabled = true; + $continentText = 'Oceania'; + $centerMapLat = -25; + $centerMapLng = 140; + $zoom = 5; + $contFontPosX = $width - ($width - 70); + } elseif ($continent == 'SA') { + $continentEnabled = true; + $continentText = 'South America'; + $centerMapLat = -26; + $centerMapLng = -60; + $zoom = 5; + $width = 1570; + $height = round(($width * 5) / 4); + $fontPosX = $height - 20; + $contFontPosX = $width - ($width - 110); + } elseif ($continent == 'AN') { + $continentEnabled = true; + $continentText = 'Antarctica'; + $centerMapLat = -73; + $centerMapLng = 0; + $zoom = 3; + $watermark_size_mutiplier = 1; + $height = round(($width * 1.5) / 4); + $fontPosX = $height - 20; + $contFontPosX = $width - ($width - 90); + } else { + // we don't want to change the default values in this case + } + } + + if ($zoom == 3) { + $marker_size = 18; + } elseif ($zoom == 4) { + $marker_size = 24; + } elseif ($zoom == 5) { + $marker_size = 28; + } else { + $marker_size = 20; + } + + //=============================================================================================================================== + //================================================ CREATE AN INSTANCE OF THE MAP ================================================ + //=============================================================================================================================== + + // Set the tile layer + if ($thememode != null) { + $attribution = $this->optionslib->get_option('option_map_tile_server_copyright') ?? 'Map data © OpenStreetMap'; + if ($thememode == 'light') { + $server_url = $this->optionslib->get_option('option_map_tile_server') ?? ''; + if ($server_url == '') { + $server_url = 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'; + $this->optionslib->update('map_tile_server', $server_url, 'yes'); + } + $tileLayer = new \Wavelog\StaticMapImage\TileLayer($server_url, $attribution, $thememode); + } elseif ($thememode == 'dark') { + $server_url = $this->optionslib->get_option('option_map_tile_server_dark') ?? ''; + if ($server_url == '') { + $server_url = 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png'; + $this->optionslib->update('map_tile_server_dark', $server_url, 'yes'); + } + $tileLayer = new \Wavelog\StaticMapImage\TileLayer($server_url, $attribution, $thememode); + } else { + $tileLayer = \Wavelog\StaticMapImage\TileLayer::defaultTileLayer(); + } + } else { + $tileLayer = \Wavelog\StaticMapImage\TileLayer::defaultTileLayer(); + } + + // Create the map + $map = new \Wavelog\StaticMapImage\OpenStreetMap(new \Wavelog\StaticMapImage\LatLng($centerMapLat, $centerMapLng), $zoom, $width, $height, $tileLayer); + + //=============================================================================================================================== + //====================================================== RENDER THE ICONS ======================================================= + //=============================================================================================================================== + + // Get user defined markers + $options_object = $this->user_options_model->get_options('map_custom', null, $uid)->result(); + $user_icondata = array(); + if (count($options_object) > 0) { + foreach ($options_object as $row) { + if ($row->option_name == 'icon') { + $option_value = json_decode($row->option_value, true); + foreach ($option_value as $ktype => $vtype) { + if ($this->input->post('user_map_' . $row->option_key . '_icon')) { + $user_icondata['user_map_' . $row->option_key . '_' . $ktype] = $this->input->post('user_map_' . $row->option_key . '_' . $ktype, true); + } else { + $user_icondata['user_map_' . $row->option_key . '_' . $ktype] = $vtype; + } + } + } else { + $user_icondata['user_map_' . $row->option_name . '_' . $row->option_key] = $row->option_value; + } + } + } else { + // Default values + $user_icondata['user_map_qso_icon'] = "fas fa-dot-circle"; + $user_icondata['user_map_qso_color'] = "#FF0000"; + $user_icondata['user_map_station_icon'] = "fas fa-home"; + $user_icondata['user_map_station_color'] = "#0000FF"; + $user_icondata['user_map_qsoconfirm_icon'] = "fas fa-check-circle"; + $user_icondata['user_map_qsoconfirm_color'] = "#00AA00"; + $user_icondata['user_map_gridsquare_show'] = "0"; + } + + // Map all available icons to the unicode + $unicode_map = array( + '0' => 'f192', // dot-circle is default + 'fas fa-home' => 'f015', + 'fas fa-broadcast-tower' => 'f519', + 'fas fa-user' => 'f007', + 'fas fa-dot-circle' => 'f192', + 'fas fa-check-circle' => 'f058', + ); + + // Home Icon + if (!$home_icon = $this->genfunctions->fas2png($unicode_map[$user_icondata['user_map_station_icon']], substr($user_icondata['user_map_station_color'], 1))) { + log_message('error', "Failed to generate map icon. Exiting..."); + return false; + } + // QSO Icon + if (!$qso_icon = $this->genfunctions->fas2png($unicode_map[$user_icondata['user_map_qso_icon']], substr($user_icondata['user_map_qso_color'], 1))) { + log_message('error', "Failed to generate map icon. Exiting..."); + return false; + } + // QSO Confirm Icon + if (!$qso_cfnm_icon = $this->genfunctions->fas2png($unicode_map[$user_icondata['user_map_qsoconfirm_icon']], substr($user_icondata['user_map_qsoconfirm_color'], 1))) { + log_message('error', "Failed to generate map icon. Exiting..."); + return false; + } + + //=============================================================================================================================== + //========================================= PROCESS THE QSOs AND PREPARE THE PATHLINES ========================================== + //=============================================================================================================================== + + // Get all QSOs with gridsquares and set markers for confirmed and unconfirmed QSOs + // We also prepare the PATHLINES here ($paths and $paths_cnfd) + + $markerQsos = []; + $markerQsosConfirmed = []; + $paths = []; + $paths_cnfd = []; + $user_default_confirmation = $this->visitor_model->get_user_default_confirmation($uid); + foreach ($qsos->result('array') as $qso) { + if (!empty($qso['COL_GRIDSQUARE'])) { + $latlng = $this->qra->qra2latlong($qso['COL_GRIDSQUARE']); + $lat = $latlng[0]; + $lng = $latlng[1]; + } else if (!empty($qso['COL_VUCC_GRIDS'])) { + $latlng = $this->qra->qra2latlong($qso['COL_VUCC_GRIDS']); + $lat = $latlng[0]; + $lng = $latlng[1]; + } else { + continue; + } + + // Check for continents + if ($continentEnabled) { + if ($qso['COL_CONT'] != $continent) { + continue; + } + } + + if ($this->visitor_model->qso_is_confirmed($qso, $user_default_confirmation) == true) { + if ($pathlines) { + $station_grid = $this->stations->profile($qso['station_id'])->row()->station_gridsquare; + $station_latlng = $this->qra->qra2latlong($station_grid); + $paths_cnfd[] = $this->draw_pathline($station_latlng, $latlng, $continentEnabled, '04A902', $line_pxsize); // Green + } + $markerQsosConfirmed[] = new \Wavelog\StaticMapImage\LatLng($lat, $lng); + continue; + } else { + if ($pathlines) { + $station_grid = $this->stations->profile($qso['station_id'])->row()->station_gridsquare; + $station_latlng = $this->qra->qra2latlong($station_grid); + $paths[] = $this->draw_pathline($station_latlng, $latlng, $continentEnabled, 'ff0000', $line_pxsize); // Red + } + $markerQsos[] = new \Wavelog\StaticMapImage\LatLng($lat, $lng); + continue; + } + } + + //=============================================================================================================================== + //==================================================== PREPARE THE MARKERS ====================================================== + //=============================================================================================================================== + + // Set the markers for the station + if (!$hide_home) { + $wrapping = !$continentEnabled; + $markersStation = new \Wavelog\StaticMapImage\Markers($home_icon, $wrapping); + $markersStation->resizeMarker($marker_size, $marker_size); + $markersStation->setAnchor(\Wavelog\StaticMapImage\Markers::ANCHOR_CENTER, \Wavelog\StaticMapImage\Markers::ANCHOR_BOTTOM); + foreach ($station_coordinates as $station) { + $markersStation->addMarker(new \Wavelog\StaticMapImage\LatLng($station[0], $station[1])); + } + } + + // Set the markers for unconfirmed QSOs + $markers = new \Wavelog\StaticMapImage\Markers($qso_icon, true); + $markers->resizeMarker($marker_size, $marker_size); + $markers->setAnchor(\Wavelog\StaticMapImage\Markers::ANCHOR_CENTER, \Wavelog\StaticMapImage\Markers::ANCHOR_BOTTOM); + + foreach ($markerQsos as $position) { + $markers->addMarker($position); + } + + // Set the markers for confirmed QSOs + $markersConfirmed = new \Wavelog\StaticMapImage\Markers($qso_cfnm_icon, true); + $markersConfirmed->resizeMarker($marker_size, $marker_size); + $markersConfirmed->setAnchor(\Wavelog\StaticMapImage\Markers::ANCHOR_CENTER, \Wavelog\StaticMapImage\Markers::ANCHOR_BOTTOM); + + foreach ($markerQsosConfirmed as $position) { + $markersConfirmed->addMarker($position); + } + + //=============================================================================================================================== + //================================================== PREPARE THE NIGHTSHADOW ==================================================== + //=============================================================================================================================== + + if ($night_shadow) { + $terminator = new Terminator(); + $terminatorLine = $terminator->getTerminatorCoordinates(); + + $lcolor = '000000'; // 000000 = black but we set lweight to 0, so the line won't be drawn anyway + $lweight = 0; + $pcolor = '000000AA'; // 000000 = black, AA = 66% opacity as hex + + $night_shadow_polygon = new Wavelog\StaticMapImage\Polygon($lcolor, $lweight, $pcolor); + + foreach ($terminatorLine as $coordinate) { + $night_shadow_polygon->addPoint(new Wavelog\StaticMapImage\LatLng($coordinate[0], $coordinate[1])); + } + } + + + //=============================================================================================================================== + //============================================ PREPARE THE CQ ZONES OVERLAY ===================================================== + //=============================================================================================================================== + + /** + * Due to the long rendering times we cache the CQ Zones overlay and just paste it on the map + */ + + if ($cqzones) { + + $cqz_cachedir = dirname($filepath) . '/cqz_overlays'; + if (!is_dir($cqz_cachedir)) { + mkdir($cqz_cachedir, 0777, true); + } + $cqz_filename = crc32($centerMap . $continent . $zoom . $width . $height . $cqz_color) . '.png'; + + if (!file_exists($cqz_cachedir . '/' . $cqz_filename)) { + + log_message('info', "No cached CQ Zone Overlay found. Creating new CQ Zones overlay..."); + + $geojsonFile = 'assets/json/geojson/cqzones.geojson'; + $geojsonData = file_get_contents($geojsonFile); + + $data = json_decode($geojsonData, true); + + if (json_last_error() !== JSON_ERROR_NONE) { + log_message("error", "Failed to read geojson data for cqzones" . json_last_error_msg()); + } + + $lcolor = $cqz_color; + $lweight = 1; + $pcolor = $cqz_color . 'FF'; // FF = 100% opacity as hex + + if (isset($data['features'])) { + $cqzones_polygon_array = []; + foreach ($data['features'] as $feature) { + $one_cqzpolygon = new Wavelog\StaticMapImage\Polygon($lcolor, $lweight, $pcolor, !$continentEnabled); + $coordinates = $feature['geometry']['coordinates']; + + foreach ($coordinates as $zone) { + foreach ($zone as $point) { + $one_cqzpolygon->addPoint(new Wavelog\StaticMapImage\LatLng($point[1], $point[0])); + } + } + + $zone_number = $feature['properties']['cq_zone_number']; + $zone_name_loc = $feature['properties']['cq_zone_name_loc']; + $cqzones_polygon_array[$zone_number]['polygon'] = $one_cqzpolygon; + $cqzones_polygon_array[$zone_number]['number'] = $zone_number; + $cqzones_polygon_array[$zone_number]['name_loc'] = $zone_name_loc; + } + } else { + log_message("error", "Failed to read geojson data for cqzones. No features found."); + } + + $cqz_tl = \Wavelog\StaticMapImage\TileLayer::defaultTileLayer(); + $cqz_tl = $cqz_tl->setOpacity(0); + $cqz_map = new \Wavelog\StaticMapImage\OpenStreetMap(new \Wavelog\StaticMapImage\LatLng($centerMapLat, $centerMapLng), $zoom, $width, $height, $cqz_tl); + $cqz_image = $cqz_map->getImage($centerMap); + + foreach ($cqzones_polygon_array as $cqzones_polygon) { + $polygon = $cqzones_polygon['polygon']; + $polygon->draw($cqz_image, $cqz_map->getMapData()); + + $zone_number = $cqzones_polygon['number']; + $cqz_fontsize = 33; + $position = new \Wavelog\StaticMapImage\LatLng($cqzones_polygon['name_loc'][0], $cqzones_polygon['name_loc'][1]); + $positionXY = $cqz_map->getMapData()->convertLatLngToPxPosition($position); + $cqz_image->writeText($zone_number, $fontPath, $cqz_fontsize, $lcolor, $positionXY->getX(), $positionXY->getY(), $cqz_image::ALIGN_CENTER, $cqz_image::ALIGN_MIDDLE, 0, 0, !$continentEnabled); + } + + $cqz_image->savePNG($cqz_cachedir . '/' . $cqz_filename); + } else { + log_message('info', "Found cached CQ Zone Overlay. Using cached overlay..."); + } + } + + + //=============================================================================================================================== + //============================================ PREPARE THE ITU ZONES OVERLAY ==================================================== + //=============================================================================================================================== + + if ($ituzones) { + + $ituz_cachedir = dirname($filepath) . '/ituz_overlays'; + if (!is_dir($ituz_cachedir)) { + mkdir($ituz_cachedir, 0777, true); + } + $ituz_filename = crc32($centerMap . $continent . $zoom . $width . $height . $ituz_color) . '.png'; + + if (!file_exists($ituz_cachedir . '/' . $ituz_filename)) { + + log_message('info', "No cached ITU Zone Overlay found. Creating new ITU Zones overlay..."); + + $geojsonFile = 'assets/json/geojson/ituzones.geojson'; + $geojsonData = file_get_contents($geojsonFile); + + $data = json_decode($geojsonData, true); + + if (json_last_error() !== JSON_ERROR_NONE) { + log_message("error", "Failed to read geojson data for ituzones" . json_last_error_msg()); + } + + $lcolor = $ituz_color; + $lweight = 1; + $pcolor = $ituz_color . 'FF'; // FF = 100% opacity as hex + + if (isset($data['features'])) { + $ituzones_polygon_array = []; + foreach ($data['features'] as $feature) { // one zone + $one_ituzpolygon = new Wavelog\StaticMapImage\Polygon($lcolor, $lweight, $pcolor, !$continentEnabled); + $coordinates = $feature['geometry']['coordinates']; + + foreach ($coordinates as $zone) { + $ituz_points = []; + foreach ($zone as $point) { + $ituz_points[] = [$point[1], $point[0]]; + $one_ituzpolygon->addPoint(new Wavelog\StaticMapImage\LatLng($point[1], $point[0])); + } + } + + $zone_number = $feature['properties']['itu_zone_number']; + $zone_name_loc = $feature['properties']['itu_zone_name_loc']; + $ituzones_polygon_array[$zone_number]['polygon'] = $one_ituzpolygon; + $ituzones_polygon_array[$zone_number]['number'] = $zone_number; + $ituzones_polygon_array[$zone_number]['name_loc'] = $zone_name_loc; + } + } else { + log_message("error", "Failed to read geojson data for ituzones. No features found."); + } + + $ituz_tl = \Wavelog\StaticMapImage\TileLayer::defaultTileLayer(); + $ituz_tl = $ituz_tl->setOpacity(0); + $ituz_map = new \Wavelog\StaticMapImage\OpenStreetMap(new \Wavelog\StaticMapImage\LatLng($centerMapLat, $centerMapLng), $zoom, $width, $height, $ituz_tl); + $ituz_image = $ituz_map->getImage($centerMap); + + foreach ($ituzones_polygon_array as $ituzones_polygon) { + $polygon = $ituzones_polygon['polygon']; + $polygon->draw($ituz_image, $ituz_map->getMapData()); + + $zone_number = $ituzones_polygon['number']; + $ituz_fontsize = 33; + $position = new \Wavelog\StaticMapImage\LatLng($ituzones_polygon['name_loc'][0], $ituzones_polygon['name_loc'][1]); + $positionXY = $ituz_map->getMapData()->convertLatLngToPxPosition($position); + $ituz_image->writeText($zone_number, $fontPath, $ituz_fontsize, $ituz_color, $positionXY->getX(), $positionXY->getY(), $ituz_image::ALIGN_CENTER, $ituz_image::ALIGN_MIDDLE, 0, 0, !$continentEnabled); + } + + $ituz_image->savePNG($ituz_cachedir . '/' . $ituz_filename); + } else { + log_message('info', "Found cached ITU Zone Overlay. Using cached overlay..."); + } + } + + + //=============================================================================================================================== + //==================================================== CREATE THE IMAGE ========================================================= + //=============================================================================================================================== + + /** + * Finally we can create the image and add the elements + */ + + $image = $map->getImage($centerMap); + + // Add night shadow + if ($night_shadow) { + $night_shadow_polygon->draw($image, $map->getMapData()); + } + + // Pathlines + if ($pathlines) { + foreach ($paths as $path) { + $path->draw($image, $map->getMapData()); + } + foreach ($paths_cnfd as $path) { + $path->draw($image, $map->getMapData()); + } + } + + // CQ Zones + if ($cqzones) { + $cqz_image = DantSu\PHPImageEditor\Image::fromPath($cqz_cachedir . '/' . $cqz_filename); + $image->pasteOn($cqz_image, 0, 0); + } + + // ITU Zones + if ($ituzones) { + $ituz_image = DantSu\PHPImageEditor\Image::fromPath($ituz_cachedir . '/' . $ituz_filename); + $image->pasteOn($ituz_image, 0, 0); + } + + // Add markers + if (!$hide_home) { + $markersStation->draw($image, $map->getMapData()); + } + $markers->draw($image, $map->getMapData()); + $markersConfirmed->draw($image, $map->getMapData()); + + // Add Wavelog watermark + $watermark = DantSu\PHPImageEditor\Image::fromPath('src/StaticMap/src/resources/watermark_static_map.png'); + $watermark->resize(round($width * $watermark_size_mutiplier), round((($width * 3) / 4) * $watermark_size_mutiplier)); + $image->pasteOn($watermark, $watermarkPosX, $watermarkPosY); + + // Add "Created with Wavelog" text + $user = $this->user_model->get_by_id($uid)->row(); + $custom_date_format = $user->user_date_format; + $dateTime = date($custom_date_format . ' - H:i'); + $text = "Created with Wavelog on " . $dateTime . " UTC"; + $color = 'ff0000'; // Red + $image->writeText($text, $fontPath, $fontSize, $color, $fontPosY, $fontPosX); + + // Add continent text + if ($continentEnabled) { + $fontPath = 'src/StaticMap/src/resources/font.ttf'; + $color = 'ff0000'; // Red + $image->writeText($continentText, $fontPath, $fontSize, $color, $contFontPosX, $contFontPosY); + } + + // Save the image + if ($image->savePNG($filepath)) { + return true; + } else { + return false; + } + } + + /** + * Create a geodesic pathline between two points + * + * @param $start Start point + * @param $end End point + * @param $continent If continent view is enabled (affects wrapping) + * @param $color Color of the pathline + * @param $weight Weight of the pathline (px) + * + * @return Line An instance of Wavelog\StaticMapImage\Line + */ + + function draw_pathline($start, $end, $continent, $color = 'ffffff', $weight = 1) { + // Start in Berlin + $start = new \Wavelog\StaticMapImage\LatLng($start[0], $start[1]); + + // End in honkong + $end = new \Wavelog\StaticMapImage\LatLng($end[0], $end[1]); + + $path = new \Wavelog\StaticMapImage\Line($color, $weight, !$continent); + $points = $path->geodesicPoints($start, $end); + + foreach ($points as $point) { + $path->addPoint($point); + } + + return $path; + } + + /** + * Remove outdated static map images from the cache directory + * Based on station_id because is handled and used during qso creation + * + * @param int $station_id The station ID to remove the static map image for + * @param int $logbook_id The logbook ID to remove the static map image for + * + * @return bool True if the image was removed successfully, false if not + */ + + function remove_static_map_image($station_id = null, $logbook_id = null) { + + $this->load->model('stationsetup_model'); + + if ($station_id == null && $logbook_id == null) { + log_message('error', "Can't remove static map image cache. Neither a station ID nor a logbook ID was provided. Exiting..."); + return false; + } + $cachepath = $this->config->item('cache_path') == '' ? APPPATH . 'cache/' : $this->config->item('cache_path'); + $cacheDir = $cachepath . "staticmap_images/"; + + if (!is_dir($cacheDir)) { + log_message('debug', "Cache directory '" . $cacheDir . "' does not exist. Therefore no static map images to remove..."); + return true; + } + + if ($station_id != null) { + if (!is_numeric($station_id) || $station_id == '' || $station_id == null) { + log_message('error', "Station ID is not valid. Exiting..."); + return false; + } + + $linked_logbooks = $this->stationsetup_model->get_container_relations($station_id, true); // true means we do a reverse search + + if (!$linked_logbooks) { + log_message('error', "No linked logbooks found for station ID " . $station_id . ". Exiting..."); + return false; + } + foreach ($linked_logbooks as $logbook_id) { + $slug = $this->stationsetup_model->get_slug($logbook_id); + if ($slug == false) { + log_message('debug', "No slug found for logbook ID " . $logbook_id . ". Continue..."); + continue; + } + + $prefix = crc32('staticmap_' . $slug); + $files = glob($cacheDir . $prefix . '*'); + + if (!empty($files)) { + foreach ($files as $file) { + log_message('debug', "Found a outdated static map image: " . basename($file) . ". Deleting..."); + unlink($file); + } + } else { + log_message('info', "Found no files with the prefix '" . $prefix . "' in the cache directory."); + } + } + + return true; // Success + } + if ($logbook_id != null) { + + if (!is_numeric($logbook_id) || $logbook_id == '' || $logbook_id == null) { + log_message('error', "Logbook ID is not valid. Exiting..."); + return false; + } + + $slug = $this->stationsetup_model->get_slug($logbook_id); + if ($slug == false) { + log_message('debug', "No slug found for logbook ID " . $logbook_id . ". Exiting..."); + return false; + } + + $prefix = crc32('staticmap_' . $slug); + $files = glob($cacheDir . $prefix . '*'); + + if (!empty($files)) { + foreach ($files as $file) { + log_message('debug', "Found a outdated static map image: " . basename($file) . ". Deleting..."); + unlink($file); + } + } else { + log_message('info', "Found no files with the prefix '" . $prefix . "' in the cache directory."); + } + + return true; // Success + } + } + + /** + * Validate a cached static map image + * + * @param $file File to validate (realpath) + * @param $cacheDir Cache directory itself + * @param $maxAge Maximum age of the file in seconds + * + * @return bool True if the file is valid, false if not + */ + + function validate_cached_image($file, $cacheDir, $maxAge, $slug) { + + $realPath = realpath($file); + $filename = basename($file); + + // get the slug + $parts = explode('_', $filename); + $validation_hash = $parts[0]; + + if (!file_exists($file)) { + log_message('debug', "Cached static map image file does not exist. Creating a new one..."); + return false; + } + + if ($validation_hash !== (string) crc32('staticmap_' . $slug)) { + log_message('error', "Static_map: Invalid validation hash. Deleting the file and exiting..."); + if (!unlink($file)) { + log_message('error', "Failed to delete invalid cached static map image file: " . $file); + } + return false; + } + + if ($realPath === false || strpos($realPath, $cacheDir) !== 0) { + log_message('error', "Invalid Filepath. Possible traversal attack detected. Deleting the file and exiting..."); + if (file_exists($file)) { + if (!unlink($file)) { + log_message('error', "Failed to delete invalid cached static map image file: " . $file); + } + } + return false; + } + + if (filesize($file) < 1024) { // 1 kB + log_message('error', "Cached static map image file is unusually small, possible corruption detected. Deleting the file and exiting..."); + if (!unlink($file)) { + log_message('error', "Failed to delete invalid cached static map image file: " . $file); + } + return false; + } + + if (mime_content_type($file) !== 'image/png') { + log_message('error', "Cached static map image file is no PNG. Deleting the file and exiting..."); + if (!unlink($file)) { + log_message('error', "Failed to delete invalid cached static map image file: " . $file); + } + return false; + } + + if (time() - filemtime($file) > $maxAge) { + log_message('debug', "Cached static map image has expired. Deleting old cache file..."); + if (!unlink($file)) { + log_message('error', "Failed to delete invalid cached static map image file: " . $file); + } + return false; + } + + return true; + } +} diff --git a/application/models/Stations.php b/application/models/Stations.php index 3ea13a3ef..1232580fa 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -262,6 +262,12 @@ class Stations extends CI_Model { } // Delete QSOs $this->db->query("DELETE FROM ".$this->config->item('table_name')." WHERE station_id = ?",$clean_id); + + // Also clean up static map images + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image($clean_id); } function set_active($current, $new) { diff --git a/application/models/Stationsetup_model.php b/application/models/Stationsetup_model.php index 46c1f074b..b488e3246 100644 --- a/application/models/Stationsetup_model.php +++ b/application/models/Stationsetup_model.php @@ -2,11 +2,13 @@ class Stationsetup_model extends CI_Model { - function getContainer($id) { + function getContainer($id, $session = true) { // Clean ID $clean_id = $this->security->xss_clean($id); - $this->db->where('user_id', $this->session->userdata('user_id')); + if ($session) { + $this->db->where('user_id', $this->session->userdata('user_id')); + } $this->db->where('logbook_id', $clean_id); return $this->db->get('station_logbooks'); } @@ -22,6 +24,12 @@ class Stationsetup_model extends CI_Model { } function remove_public_slug($logbook_id) { + // Also clean up static map images first + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image(null, $logbook_id); + $this->db->set('public_slug', null); $this->db->where('user_id', $this->session->userdata('user_id')); $this->db->where('logbook_id', xss_clean($logbook_id)); @@ -126,13 +134,15 @@ class Stationsetup_model extends CI_Model { $this->db->where('public_slug', $this->security->xss_clean($slug)); $query = $this->db->get('station_logbooks'); - if ($query->num_rows() > 0){ - foreach ($query->result() as $row) { - return $row->logbook_id; - } + if ($query->num_rows() == 1){ + return $query->row()->logbook_id; + } elseif ($query->num_rows() > 1) { + log_message('error', 'Multiple logbooks with same public_slug found!'); + return false; } else { return false; } + } function is_public_slug_available($slug) { @@ -148,6 +158,19 @@ class Stationsetup_model extends CI_Model { } } + // Get public slug for a logbook + function get_slug($logbook_id) { + $this->db->where('logbook_id', $logbook_id); + $this->db->where('public_slug !=', null); + $query = $this->db->get('station_logbooks'); + + if ($query->num_rows() == 1){ + return $query->row()->public_slug; + } else { + return false; + } + } + function locationInfo($id) { $userid = $this->session->userdata('user_id'); // Fallback to session-uid, if userid is omitted $this->db->select('station_profile.station_profile_name, station_profile.station_callsign, dxcc_entities.name as station_country, dxcc_entities.end as dxcc_end'); @@ -157,16 +180,26 @@ class Stationsetup_model extends CI_Model { return $this->db->get('station_profile'); } - function get_container_relations($logbook_id) { + function get_container_relations($id, $reverse = false) { + + if ($reverse == false) { + $searchIn = 'station_logbook_id'; + } else { + $searchIn = 'station_location_id'; + } $relationships_array = array(); - $this->db->where('station_logbook_id', $logbook_id); + $this->db->where($searchIn, $id); $query = $this->db->get('station_logbooks_relationship'); if ($query->num_rows() > 0){ foreach ($query->result() as $row) { - array_push($relationships_array, $row->station_location_id); + if ($reverse == false) { + array_push($relationships_array, $row->station_location_id); + } else { + array_push($relationships_array, $row->station_logbook_id); + } } return $relationships_array; diff --git a/application/models/Themes_model.php b/application/models/Themes_model.php index a2ddf52d9..e5767d48c 100644 --- a/application/models/Themes_model.php +++ b/application/models/Themes_model.php @@ -34,9 +34,9 @@ class Themes_model extends CI_Model { // Clean ID $clean_id = $this->security->xss_clean($id); - $sql = "SELECT * FROM themes where id =" . $clean_id; + $sql = "SELECT * FROM themes where id = ?"; - $data = $this->db->query($sql); + $data = $this->db->query($sql, $clean_id); return ($data->row()); } @@ -58,9 +58,9 @@ class Themes_model extends CI_Model { $clean_theme = $this->security->xss_clean($theme); $clean_location = $this->security->xss_clean($logo_location); - $sql = "SELECT " . $clean_location . " FROM themes WHERE foldername = '" . $clean_theme . "'"; + $sql = "SELECT " . $clean_location . " FROM themes WHERE foldername = ?"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $clean_theme); if ($query) { $result = $query->row(); @@ -73,4 +73,22 @@ class Themes_model extends CI_Model { } } + function get_theme_mode($theme) { + $clean_theme = $this->security->xss_clean($theme); + + $sql = "SELECT theme_mode FROM themes WHERE foldername = ?"; + + $query = $this->db->query($sql, $clean_theme); + + if ($query) { + $result = $query->row(); + $value = isset($result->theme_mode) ? $result->theme_mode : null; + + return ($value !== null) ? (string) $value : null; + } else { + log_message('error', 'get_theme_mode failed'); + return null; + } + } + } diff --git a/application/models/User_model.php b/application/models/User_model.php index abc84878f..fcd20a176 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -358,6 +358,16 @@ class User_Model extends CI_Model { // Update the user $this->db->where('user_id', $fields['id']); $this->db->update($this->config->item('auth_table'), $data); + + // Remove static map images in cache to make sure they are updated + $this->load->model('Stations'); + $this->load->model('staticmap_model'); + $stations = $this->Stations->all_station_ids_of_user($fields['id']); + $station_ids = explode(',', $stations); + foreach ($station_ids as $station_id) { + $this->staticmap_model->remove_static_map_image(trim($station_id)); + } + return OK; } else { return ENOSUCHUSER; diff --git a/application/models/Visitor_model.php b/application/models/Visitor_model.php index 6a833a327..50fdaa5db 100644 --- a/application/models/Visitor_model.php +++ b/application/models/Visitor_model.php @@ -2,7 +2,7 @@ class Visitor_model extends CI_Model { - function get_qsos($num, $StationLocationsArray, $band = '') { + function get_qsos($num, $StationLocationsArray, $band = '', $continent = '') { $this->db->select($this->config->item('table_name').'.*, station_profile.*'); $this->db->from($this->config->item('table_name')); @@ -17,6 +17,15 @@ class Visitor_model extends CI_Model { } } + if ($continent != '') { + $this->db->where($this->config->item('table_name').'.COL_CONT', $continent); + } + + $this->db->group_start(); + $this->db->where("(" . $this->config->item('table_name') . ".COL_GRIDSQUARE != '' AND " . $this->config->item('table_name') . ".COL_GRIDSQUARE IS NOT NULL)"); + $this->db->or_where("(" . $this->config->item('table_name') . ".COL_VUCC_GRIDS != '' AND " . $this->config->item('table_name') . ".COL_VUCC_GRIDS IS NOT NULL)"); + $this->db->group_end(); + $this->db->where_in($this->config->item('table_name').'.station_id', $StationLocationsArray); $this->db->order_by(''.$this->config->item('table_name').'.COL_TIME_ON', "desc"); @@ -45,4 +54,30 @@ class Visitor_model extends CI_Model { return $this->db->query($sql); } + + function qso_is_confirmed($qso, $user_default_confirmation) { + $confirmed = false; + $qso = (array) $qso; + if (strpos($user_default_confirmation, 'Q') !== false) { // QSL + if ($qso['COL_QSL_RCVD']=='Y') { $confirmed = true; } + } + if (strpos($user_default_confirmation, 'L') !== false) { // LoTW + if ($qso['COL_LOTW_QSL_RCVD']=='Y') { $confirmed = true; } + } + if (strpos($user_default_confirmation, 'E') !== false) { // eQsl + if ($qso['COL_EQSL_QSL_RCVD']=='Y') { $confirmed = true; } + } + if (strpos($user_default_confirmation, 'Z') !== false) { // QRZ + if ($qso['COL_QRZCOM_QSO_DOWNLOAD_STATUS']=='Y') { $confirmed = true; } + } + if (strpos($user_default_confirmation, 'C') !== false) { // Clublog + if ($qso['COL_CLUBLOG_QSO_DOWNLOAD_STATUS']=='Y') { $confirmed = true; } + } + return $confirmed; + } + + function get_user_default_confirmation($userid) { + $this->load->model('user_model'); + return $this->user_model->get_by_id($userid)->row()->user_default_confirmation ?? ''; + } } diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 3aa91fe04..4b9f95ac6 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -291,6 +291,17 @@ + + + php-gd + + + + + + + +
diff --git a/application/views/stationsetup/exportmapoptions.php b/application/views/stationsetup/exportmapoptions.php index 23c43a7ef..f9d2c027e 100644 --- a/application/views/stationsetup/exportmapoptions.php +++ b/application/views/stationsetup/exportmapoptions.php @@ -9,19 +9,19 @@ -
option_value ?? "true") == "true") { echo 'checked'; } ?>>
+
option_value ?? "false") == "true") { echo 'checked'; } ?>>
-
option_value ?? "true") == "true") { echo 'checked'; } ?>>
+
option_value ?? "false") == "true") { echo 'checked'; } ?>>
-
option_value ?? "true") == "true") { echo 'checked'; } ?>>
+
option_value ?? "false") == "true") { echo 'checked'; } ?>>
-
option_value ?? "true") == "true") { echo 'checked'; } ?>>
+
option_value ?? "false") == "true") { echo 'checked'; } ?>>
diff --git a/assets/json/geojson/cqzones.geojson b/assets/json/geojson/cqzones.geojson new file mode 100644 index 000000000..bd1f38087 --- /dev/null +++ b/assets/json/geojson/cqzones.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"cq_zone_name":"Northwestern Zone of North America","cq_zone_number":1,"cq_zone_name_loc":[75,-140]},"geometry":{"type":"Polygon","coordinates":[[[-109,85],[-109,77.5],[-103.25879,75.28244],[-103.44947,72.38268],[-99.28956,70.61134],[-102,68],[-102,60],[-138.36133,60],[-139.05689,60.00007],[-139.05691,59.99675],[-139.05367,59.9948],[-138.79794,59.92444],[-138.70738,59.90607],[-138.67923,59.84509],[-138.66858,59.80908],[-138.62601,59.76859],[-137.93404,59.41461],[-137.77839,59.33269],[-137.60625,59.2436],[-137.54216,59.10595],[-137.50072,58.98346],[-137.52658,58.90592],[-137.45116,58.9081],[-137.28098,59.001],[-137.17561,59.03207],[-136.95813,59.10478],[-136.87523,59.13658],[-136.82722,59.1604],[-136.58426,59.16596],[-136.48966,59.25955],[-136.49557,59.27535],[-136.46955,59.28397],[-136.47708,59.37776],[-136.47706,59.46561],[-136.3681,59.44904],[-136.30548,59.4644],[-136.23874,59.52418],[-136.23929,59.55923],[-136.35377,59.59978],[-136.1933,59.64006],[-135.95292,59.66216],[-135.71713,59.73],[-135.47928,59.79802],[-135.36011,59.7376],[-135.25323,59.69832],[-135.23355,59.6962],[-135.21984,59.66268],[-135.15754,59.6257],[-135.1179,59.62309],[-135.02885,59.56367],[-135.02748,59.47482],[-135.07727,59.45191],[-135.10096,59.42761],[-134.98968,59.38715],[-135.03053,59.34657],[-134.95962,59.28078],[-134.70074,59.24892],[-134.67926,59.1925],[-134.56587,59.13122],[-134.48308,59.1316],[-134.44718,59.08949],[-134.38209,59.03855],[-134.40719,58.9796],[-134.31384,58.96204],[-134.33653,58.92347],[-134.25794,58.86118],[-133.97071,58.76669],[-133.84038,58.7293],[-133.70679,58.61169],[-133.56892,58.53004],[-133.5587,58.52349],[-133.37716,58.43029],[-133.462,58.38787],[-133.346,58.27685],[-133.26904,58.22661],[-133.17216,58.15358],[-133.07013,58.00024],[-132.86888,57.83932],[-132.75116,57.69619],[-132.66023,57.61614],[-132.55419,57.49707],[-132.37002,57.34997],[-132.24867,57.21155],[-132.36876,57.09173],[-132.04492,57.04503],[-132.12367,56.87386],[-131.87352,56.80603],[-131.90093,56.75367],[-131.8604,56.70303],[-131.83532,56.59938],[-131.58149,56.61231],[-131.4716,56.55232],[-131.17255,56.44938],[-131.08842,56.40622],[-130.78247,56.36706],[-130.62418,56.26715],[-130.54058,56.2475],[-130.4683,56.24314],[-130.42641,56.14147],[-130.35087,56.1285],[-130.24684,56.0966],[-130.10401,56.12289],[-130.00375,56.00813],[-130.01781,55.91194],[-130.00391,55.91195],[-130.00408,55.90735],[-130.08371,55.82175],[-130.12482,55.80574],[-130.15237,55.76638],[-130.14807,55.71516],[-130.11176,55.68293],[-130.12806,55.58088],[-130.09001,55.49796],[-130.04132,55.45174],[-130.02112,55.33792],[-129.97668,55.30031],[-129.9742,55.28195],[-130.10287,55.19262],[-130.14616,55.14285],[-130.15246,55.12465],[-130.18089,55.09135],[-130.18758,55.06286],[-130.2733,54.97397],[-130.34604,54.91772],[-130.4227,54.87339],[-130.45406,54.85146],[-130.47993,54.83684],[-130.5682,54.79218],[-130.62889,54.78273],[-130.65911,54.76306],[-130.62574,54.73814],[-130.62868,54.7248],[-130.61557,54.70742],[-134.5376,54.29444],[-140,50],[-140,40],[-190,40],[-190,53],[-167.68708,66.66712],[-180,75],[-180,85],[-109,85]]]}},{"type":"Feature","properties":{"cq_zone_name":"Northeastern Zone of North America","cq_zone_number":2,"cq_zone_name_loc":[70,-82.5]},"geometry":{"type":"Polygon","coordinates":[[[-109,85],[-109,77.5],[-103.25879,75.28244],[-103.44947,72.38268],[-99.28956,70.61134],[-102,68],[-102,60],[-85,60],[-80.87246,54.51586],[-79.77715,51.85142],[-79.71847,51.72978],[-79.65225,51.61789],[-79.58293,51.526],[-79.52149,51.46785],[-79.51567,51.46059],[-79.51786,51.20775],[-79.51902,51.08059],[-79.51744,50.95428],[-79.51796,50.72333],[-79.51764,50],[-60,50],[-55.95459,51.74554],[-55.40406,51.76497],[-49,53],[-52.24366,59.58379],[-57.80762,67.13942],[-67.85401,74.22686],[-74.03321,75.49723],[-74.86176,77.41913],[-73.58094,78.5637],[-69.88312,79.50134],[-68.29468,80.43897],[-60.00733,82.26684],[-60,85],[-109,85]]]}},{"type":"Feature","properties":{"cq_zone_name":"Western Zone of North America","cq_zone_number":3,"cq_zone_name_loc":[45,-125]},"geometry":{"type":"Polygon","coordinates":[[[-120,60],[-138.36133,60],[-139.05689,60.00007],[-139.05691,59.99675],[-139.05367,59.9948],[-138.79794,59.92444],[-138.70738,59.90607],[-138.67923,59.84509],[-138.66858,59.80908],[-138.62601,59.76859],[-137.93404,59.41461],[-137.77839,59.33269],[-137.60625,59.2436],[-137.54216,59.10595],[-137.50072,58.98346],[-137.52658,58.90592],[-137.45116,58.9081],[-137.28098,59.001],[-137.17561,59.03207],[-136.95813,59.10478],[-136.87523,59.13658],[-136.82722,59.1604],[-136.58426,59.16596],[-136.48966,59.25955],[-136.49557,59.27535],[-136.46955,59.28397],[-136.47708,59.37776],[-136.47706,59.46561],[-136.3681,59.44904],[-136.30548,59.4644],[-136.23874,59.52418],[-136.23929,59.55923],[-136.35377,59.59978],[-136.1933,59.64006],[-135.95292,59.66216],[-135.71713,59.73],[-135.47928,59.79802],[-135.36011,59.7376],[-135.25323,59.69832],[-135.23355,59.6962],[-135.21984,59.66268],[-135.15754,59.6257],[-135.1179,59.62309],[-135.02885,59.56367],[-135.02748,59.47482],[-135.07727,59.45191],[-135.10096,59.42761],[-134.98968,59.38715],[-135.03053,59.34657],[-134.95962,59.28078],[-134.70074,59.24892],[-134.67926,59.1925],[-134.56587,59.13122],[-134.48308,59.1316],[-134.44718,59.08949],[-134.38209,59.03855],[-134.40719,58.9796],[-134.31384,58.96204],[-134.33653,58.92347],[-134.25794,58.86118],[-133.97071,58.76669],[-133.84038,58.7293],[-133.70679,58.61169],[-133.56892,58.53004],[-133.5587,58.52349],[-133.37716,58.43029],[-133.462,58.38787],[-133.346,58.27685],[-133.26904,58.22661],[-133.17216,58.15358],[-133.07013,58.00024],[-132.86888,57.83932],[-132.75116,57.69619],[-132.66023,57.61614],[-132.55419,57.49707],[-132.37002,57.34997],[-132.24867,57.21155],[-132.36876,57.09173],[-132.04492,57.04503],[-132.12367,56.87386],[-131.87352,56.80603],[-131.90093,56.75367],[-131.8604,56.70303],[-131.83532,56.59938],[-131.58149,56.61231],[-131.4716,56.55232],[-131.17255,56.44938],[-131.08842,56.40622],[-130.78247,56.36706],[-130.62418,56.26715],[-130.54058,56.2475],[-130.4683,56.24314],[-130.42641,56.14147],[-130.35087,56.1285],[-130.24684,56.0966],[-130.10401,56.12289],[-130.00375,56.00813],[-130.01781,55.91194],[-130.00391,55.91195],[-130.00408,55.90735],[-130.08371,55.82175],[-130.12482,55.80574],[-130.15237,55.76638],[-130.14807,55.71516],[-130.11176,55.68293],[-130.12806,55.58088],[-130.09001,55.49796],[-130.04132,55.45174],[-130.02112,55.33792],[-129.97668,55.30031],[-129.9742,55.28195],[-130.10287,55.19262],[-130.14616,55.14285],[-130.15246,55.12465],[-130.18089,55.09135],[-130.18758,55.06286],[-130.2733,54.97397],[-130.34604,54.91772],[-130.4227,54.87339],[-130.45406,54.85146],[-130.47993,54.83684],[-130.5682,54.79218],[-130.62889,54.78273],[-130.65911,54.76306],[-130.62574,54.73814],[-130.62868,54.7248],[-130.61557,54.70742],[-134.5376,54.29444],[-140,50],[-140,40],[-130,40],[-130,32.5],[-120,32.5],[-117.12486,32.53404],[-116.86076,32.55709],[-116.53348,32.5839],[-116.23943,32.60782],[-115.94434,32.63116],[-115.33271,32.67639],[-114.7197,32.71873],[-114.72209,32.71428],[-114.72273,32.71298],[-114.72356,32.71201],[-114.72431,32.71161],[-114.72529,32.71043],[-114.7269,32.70795],[-114.72826,32.70686],[-114.7301,32.70433],[-114.72973,32.70308],[-114.7298,32.70038],[-114.73018,32.69957],[-114.73047,32.69876],[-114.73682,32.68965],[-114.73756,32.68896],[-114.73812,32.68784],[-114.73907,32.68694],[-114.74006,32.68501],[-114.74062,32.68416],[-114.74271,32.68134],[-114.74441,32.67888],[-114.74485,32.67767],[-114.74503,32.67417],[-114.74539,32.67205],[-114.74637,32.66985],[-114.74781,32.66775],[-114.74821,32.66506],[-114.74789,32.66454],[-114.74799,32.66414],[-114.7495,32.6617],[-114.75109,32.65976],[-114.7532,32.65828],[-114.75823,32.65528],[-114.76133,32.65279],[-114.76494,32.64936],[-114.76496,32.64816],[-114.76342,32.64593],[-114.76334,32.64457],[-114.76429,32.6427],[-114.76619,32.64143],[-114.76809,32.63995],[-114.77197,32.63792],[-114.77518,32.63553],[-114.77925,32.63356],[-114.7812,32.63154],[-114.78175,32.6307],[-114.7823,32.63016],[-114.78256,32.62859],[-114.78174,32.62589],[-114.78195,32.62463],[-114.78298,32.62413],[-114.78409,32.62414],[-114.78508,32.62404],[-114.78547,32.62393],[-114.78778,32.62357],[-114.79062,32.62188],[-114.79268,32.62189],[-114.79413,32.62248],[-114.79559,32.6235],[-114.79757,32.62452],[-114.79923,32.62509],[-114.80005,32.6247],[-114.80086,32.6246],[-114.80197,32.62382],[-114.8065,32.6219],[-114.80742,32.62131],[-114.80872,32.61909],[-114.80942,32.61729],[-114.80962,32.61616],[-114.80921,32.61368],[-114.80897,32.613],[-114.80894,32.61157],[-114.80908,32.60862],[-114.80798,32.60603],[-114.80782,32.60495],[-114.80808,32.60358],[-114.80796,32.60277],[-114.80734,32.60226],[-114.8069,32.60138],[-114.80572,32.60058],[-114.80395,32.59999],[-114.80238,32.59937],[-114.80152,32.59866],[-114.8013,32.59766],[-114.80125,32.59622],[-114.80076,32.59542],[-114.79975,32.59404],[-114.79972,32.59237],[-114.80015,32.5902],[-114.80049,32.58802],[-114.80076,32.58766],[-114.80265,32.58533],[-114.80395,32.58278],[-114.8041,32.58145],[-114.80379,32.58072],[-114.80185,32.57919],[-114.80142,32.57825],[-114.80142,32.57725],[-114.80184,32.57606],[-114.80261,32.57459],[-114.80344,32.57363],[-114.80444,32.57296],[-114.80558,32.57234],[-114.80684,32.57197],[-114.8117,32.56969],[-114.81304,32.56874],[-114.81384,32.56706],[-114.81429,32.56369],[-114.81374,32.56131],[-114.81297,32.56],[-114.81031,32.55854],[-114.80885,32.5585],[-114.80678,32.55883],[-114.80497,32.55983],[-114.80368,32.56068],[-114.80136,32.56288],[-114.79765,32.56442],[-114.79533,32.56653],[-114.79481,32.56856],[-114.79399,32.56924],[-114.79318,32.56957],[-114.79241,32.56922],[-114.79207,32.56843],[-114.79229,32.56561],[-114.79294,32.56367],[-114.79298,32.5622],[-114.79153,32.55867],[-114.79158,32.55585],[-114.79374,32.5523],[-114.79557,32.551],[-114.80022,32.5493],[-114.80436,32.54782],[-114.80568,32.54667],[-114.80597,32.54541],[-114.80534,32.54358],[-114.80472,32.54147],[-114.80353,32.54084],[-114.802,32.53978],[-114.80193,32.53829],[-114.80212,32.53658],[-114.80258,32.53539],[-114.80496,32.53361],[-114.80639,32.53121],[-114.8077,32.53013],[-114.80875,32.52891],[-114.81041,32.52776],[-114.81084,32.52744],[-114.81102,32.52699],[-114.81153,32.52619],[-114.81265,32.52534],[-114.81327,32.52444],[-114.81341,32.52401],[-114.8128,32.52354],[-114.81081,32.52235],[-114.81005,32.52047],[-114.80999,32.51957],[-114.81044,32.51837],[-114.80964,32.51758],[-114.80778,32.51693],[-114.80396,32.5165],[-114.80241,32.51553],[-114.80193,32.51456],[-114.80226,32.513],[-114.80286,32.5118],[-114.80404,32.51035],[-114.8051,32.51008],[-114.80659,32.50923],[-114.80846,32.50846],[-114.81014,32.50838],[-114.81134,32.50878],[-114.8128,32.5091],[-114.81422,32.50909],[-114.81572,32.50864],[-114.81647,32.50781],[-114.81662,32.50706],[-114.81515,32.50604],[-114.81369,32.50422],[-114.81343,32.50178],[-114.81231,32.50007],[-114.81334,32.49865],[-114.81394,32.49725],[-114.81405,32.49677],[-114.81381,32.49608],[-114.81396,32.49527],[-114.81351,32.49425],[-114.78783,32.48672],[-114.75049,32.4755],[-114.68747,32.45645],[-114.56152,32.41814],[-114.30936,32.34167],[-113.80658,32.18735],[-113.31796,32.03325],[-112.44756,31.7662],[-111.76118,31.55213],[-111.0748,31.33221],[-110.56908,31.33301],[-110.06337,31.33338],[-109.55671,31.33411],[-109.28655,31.33389],[-109.1253,31.33268],[-109.05005,31.3325],[-109.05381,35.59184],[-109.0417,38.16582],[-109.06006,38.27589],[-109.05007,41.00066],[-109.2327,41.00213],[-109.36797,40.99975],[-109.71746,40.99738],[-110.05116,40.99781],[-110.37386,40.99409],[-111.04672,40.99789],[-111.04898,44.47404],[-111.05067,44.47469],[-111.05162,44.47538],[-111.05244,44.47588],[-111.05427,44.47589],[-111.05617,44.47505],[-111.05933,44.47548],[-111.06267,44.47604],[-111.06566,44.47711],[-111.06933,44.47959],[-111.07215,44.48085],[-111.07371,44.48111],[-111.07618,44.48121],[-111.07818,44.48106],[-111.07931,44.48134],[-111.08413,44.48293],[-111.08833,44.4836],[-111.09089,44.48416],[-111.09334,44.48504],[-111.09639,44.48622],[-111.09814,44.48679],[-111.09952,44.48746],[-111.10003,44.48753],[-111.10201,44.48702],[-111.10343,44.48654],[-111.10483,44.48623],[-111.10658,44.48634],[-111.10784,44.48707],[-111.11416,44.49276],[-111.11444,44.49334],[-111.11558,44.49384],[-111.11824,44.49395],[-111.12085,44.49397],[-111.122,44.49362],[-111.12268,44.49365],[-111.12364,44.49518],[-111.12422,44.49547],[-111.12548,44.49603],[-111.12574,44.49684],[-111.12623,44.49708],[-111.12733,44.49899],[-111.12775,44.49911],[-111.12887,44.49906],[-111.1314,44.49993],[-111.13846,44.51572],[-111.13943,44.51709],[-111.13909,44.5186],[-111.13783,44.52064],[-111.13172,44.53257],[-111.14137,44.53562],[-111.142,44.53555],[-111.14229,44.53563],[-111.1466,44.53524],[-111.15133,44.53492],[-111.15607,44.54245],[-111.15679,44.54282],[-111.15902,44.54588],[-111.15962,44.54638],[-111.16102,44.5464],[-111.16424,44.54658],[-111.16704,44.54726],[-111.17354,44.54914],[-111.17535,44.55016],[-111.17701,44.55092],[-111.17935,44.55286],[-111.18066,44.55416],[-111.18101,44.55495],[-111.18076,44.55613],[-111.1803,44.55743],[-111.18037,44.55984],[-111.18067,44.56302],[-111.18065,44.56449],[-111.18025,44.56556],[-111.17989,44.56673],[-111.18078,44.56904],[-111.19549,44.57342],[-111.20151,44.57572],[-111.20753,44.57498],[-111.21037,44.57498],[-111.21266,44.5752],[-111.21418,44.57559],[-111.21568,44.57549],[-111.21683,44.57513],[-111.21856,44.57516],[-111.21943,44.57536],[-111.22038,44.57626],[-111.22134,44.57694],[-111.22277,44.57696],[-111.22405,44.57682],[-111.22486,44.57649],[-111.22584,44.57634],[-111.22721,44.57642],[-111.22801,44.57667],[-111.22785,44.57735],[-111.22764,44.57782],[-111.22803,44.57848],[-111.22953,44.57919],[-111.23035,44.5797],[-111.23057,44.58065],[-111.23052,44.58161],[-111.22995,44.58266],[-111.2298,44.58332],[-111.23034,44.5841],[-111.23102,44.58516],[-111.23101,44.5859],[-111.23148,44.58756],[-111.23151,44.58861],[-111.23249,44.58961],[-111.23365,44.59058],[-111.23429,44.59099],[-111.23415,44.59157],[-111.2329,44.59202],[-111.23205,44.5928],[-111.23165,44.59427],[-111.23151,44.59518],[-111.23203,44.59735],[-111.23332,44.60005],[-111.23555,44.60077],[-111.23587,44.60142],[-111.23551,44.60233],[-111.23485,44.60296],[-111.23454,44.60363],[-111.23442,44.60437],[-111.23532,44.60528],[-111.23652,44.6062],[-111.23746,44.60742],[-111.23759,44.60879],[-111.23733,44.60994],[-111.23788,44.61054],[-111.24114,44.6116],[-111.24193,44.61213],[-111.24247,44.61235],[-111.24229,44.61343],[-111.24151,44.61424],[-111.24047,44.61447],[-111.23964,44.61451],[-111.23877,44.61539],[-111.23707,44.61538],[-111.23642,44.61616],[-111.23504,44.61652],[-111.23312,44.61681],[-111.23062,44.6175],[-111.22943,44.61745],[-111.22867,44.61795],[-111.22781,44.6182],[-111.22693,44.6181],[-111.22597,44.61816],[-111.22224,44.62023],[-111.22035,44.62168],[-111.21923,44.62211],[-111.21902,44.62226],[-111.21925,44.62261],[-111.22198,44.62346],[-111.22308,44.62389],[-111.22472,44.62483],[-111.22653,44.62614],[-111.22707,44.62728],[-111.22671,44.62851],[-111.22845,44.6301],[-111.23012,44.63129],[-111.23178,44.63232],[-111.23321,44.63442],[-111.23485,44.63561],[-111.23612,44.63674],[-111.23774,44.638],[-111.23867,44.63918],[-111.24058,44.64027],[-111.24154,44.64135],[-111.24229,44.64259],[-111.24323,44.64361],[-111.24475,44.64392],[-111.24656,44.64386],[-111.24819,44.64368],[-111.24958,44.64409],[-111.25078,44.6462],[-111.25117,44.64651],[-111.25142,44.64744],[-111.25128,44.64812],[-111.2514,44.64861],[-111.25318,44.64961],[-111.25326,44.65019],[-111.25265,44.65113],[-111.25501,44.65102],[-111.25721,44.65041],[-111.25803,44.65008],[-111.26049,44.64967],[-111.26175,44.64984],[-111.2629,44.64965],[-111.26371,44.64902],[-111.26566,44.64867],[-111.26636,44.64796],[-111.26777,44.64767],[-111.26971,44.64697],[-111.27028,44.64684],[-111.27111,44.6471],[-111.27183,44.64781],[-111.2725,44.6483],[-111.27374,44.64875],[-111.27505,44.64896],[-111.27669,44.64959],[-111.27737,44.6505],[-111.27837,44.65129],[-111.27989,44.65354],[-111.28069,44.65518],[-111.27787,44.65518],[-111.27689,44.65567],[-111.27609,44.65641],[-111.27552,44.65715],[-111.27543,44.65754],[-111.27547,44.65835],[-111.27503,44.65886],[-111.27403,44.65951],[-111.27313,44.66063],[-111.27253,44.66206],[-111.27146,44.66275],[-111.269,44.66325],[-111.26735,44.66435],[-111.26638,44.66669],[-111.26731,44.66779],[-111.2688,44.66833],[-111.27004,44.66935],[-111.27115,44.67043],[-111.27292,44.67159],[-111.27473,44.6733],[-111.27542,44.67415],[-111.27645,44.6751],[-111.27668,44.67685],[-111.27643,44.67855],[-111.27722,44.67986],[-111.27818,44.68117],[-111.27968,44.68231],[-111.28143,44.68353],[-111.28284,44.68369],[-111.28367,44.68397],[-111.28445,44.68409],[-111.28509,44.68455],[-111.28608,44.68489],[-111.28824,44.68606],[-111.29128,44.68611],[-111.29169,44.68624],[-111.29256,44.68705],[-111.29325,44.68792],[-111.29333,44.68836],[-111.2945,44.6892],[-111.29524,44.68964],[-111.29602,44.69034],[-111.29646,44.69096],[-111.29697,44.6914],[-111.29682,44.69241],[-111.29701,44.69314],[-111.29744,44.69353],[-111.29728,44.69408],[-111.29657,44.69513],[-111.29637,44.69623],[-111.29613,44.69687],[-111.29526,44.69767],[-111.29485,44.69886],[-111.29482,44.70005],[-111.2953,44.70113],[-111.29593,44.70172],[-111.2963,44.70223],[-111.29738,44.70254],[-111.3003,44.70384],[-111.30113,44.70572],[-111.3017,44.70607],[-111.30335,44.70639],[-111.30502,44.70712],[-111.30584,44.70723],[-111.30794,44.70816],[-111.30881,44.70905],[-111.3105,44.71021],[-111.31272,44.71136],[-111.31498,44.71263],[-111.31655,44.71362],[-111.31742,44.71402],[-111.31804,44.71457],[-111.31821,44.71506],[-111.31833,44.71567],[-111.31895,44.71614],[-111.32138,44.71777],[-111.32253,44.71869],[-111.32312,44.72122],[-111.32304,44.72192],[-111.32315,44.72248],[-111.32361,44.72355],[-111.32369,44.72444],[-111.32342,44.72495],[-111.32344,44.72563],[-111.32281,44.72664],[-111.3228,44.72772],[-111.32321,44.72864],[-111.32383,44.72921],[-111.32483,44.72977],[-111.32598,44.7302],[-111.32713,44.73042],[-111.32844,44.73117],[-111.3292,44.73131],[-111.33026,44.73124],[-111.3315,44.73119],[-111.33246,44.73125],[-111.33424,44.73195],[-111.3352,44.73247],[-111.33707,44.73318],[-111.3377,44.73269],[-111.33988,44.73041],[-111.34135,44.7293],[-111.34283,44.72842],[-111.34483,44.72762],[-111.34613,44.72686],[-111.34821,44.72545],[-111.35054,44.72572],[-111.35295,44.72617],[-111.35379,44.72668],[-111.35518,44.72712],[-111.35568,44.72751],[-111.35705,44.72894],[-111.35748,44.72928],[-111.35871,44.73037],[-111.35963,44.73152],[-111.36094,44.73352],[-111.36192,44.73474],[-111.36401,44.73629],[-111.36499,44.73688],[-111.36606,44.73762],[-111.36672,44.73833],[-111.36648,44.73903],[-111.36641,44.74037],[-111.36671,44.74103],[-111.36668,44.74155],[-111.36627,44.74222],[-111.36675,44.7427],[-111.36883,44.74352],[-111.3698,44.74421],[-111.37111,44.74579],[-111.37222,44.74658],[-111.37436,44.74762],[-111.37487,44.74804],[-111.37509,44.74845],[-111.37504,44.74889],[-111.37466,44.74931],[-111.37454,44.74976],[-111.37477,44.75028],[-111.38229,44.75403],[-111.38501,44.75513],[-111.38594,44.75515],[-111.38749,44.75451],[-111.3902,44.75363],[-111.39244,44.75313],[-111.39387,44.75257],[-111.39531,44.75067],[-111.39484,44.74995],[-111.39442,44.74975],[-111.39545,44.74936],[-111.39586,44.74893],[-111.39593,44.74824],[-111.39675,44.74812],[-111.39711,44.74736],[-111.39782,44.74669],[-111.39639,44.74641],[-111.3954,44.74598],[-111.39443,44.7446],[-111.39538,44.7426],[-111.39564,44.74067],[-111.39534,44.73972],[-111.39534,44.73941],[-111.39655,44.73915],[-111.39731,44.73789],[-111.39811,44.73697],[-111.39919,44.73505],[-111.39921,44.73368],[-111.39813,44.73048],[-111.39714,44.72875],[-111.39834,44.7264],[-111.39774,44.72478],[-111.39861,44.72333],[-111.40057,44.72209],[-111.40227,44.72182],[-111.40418,44.72161],[-111.40484,44.7204],[-111.406,44.71943],[-111.40697,44.71838],[-111.40701,44.71769],[-111.40838,44.71599],[-111.41004,44.715],[-111.41167,44.71406],[-111.41264,44.71294],[-111.41426,44.71075],[-111.41492,44.71059],[-111.41577,44.71086],[-111.41739,44.71212],[-111.41876,44.71273],[-111.423,44.71376],[-111.42419,44.71399],[-111.4252,44.71483],[-111.42581,44.71611],[-111.42613,44.71653],[-111.42622,44.71772],[-111.42737,44.71844],[-111.42963,44.72016],[-111.43172,44.7207],[-111.43557,44.7207],[-111.43904,44.72052],[-111.44272,44.72022],[-111.44527,44.71852],[-111.44679,44.71727],[-111.44849,44.71737],[-111.45228,44.71682],[-111.45529,44.71615],[-111.4586,44.71574],[-111.46541,44.71383],[-111.46772,44.7124],[-111.46963,44.71079],[-111.47271,44.70926],[-111.47418,44.70883],[-111.4757,44.70856],[-111.47635,44.70796],[-111.4776,44.70781],[-111.4787,44.70715],[-111.48005,44.70667],[-111.48102,44.70686],[-111.48191,44.70717],[-111.48295,44.70699],[-111.48425,44.70715],[-111.48602,44.70762],[-111.48653,44.70695],[-111.48833,44.70611],[-111.48899,44.70555],[-111.48931,44.705],[-111.4894,44.7043],[-111.48932,44.70373],[-111.48932,44.70309],[-111.49012,44.70151],[-111.49024,44.70018],[-111.48998,44.69951],[-111.4878,44.69822],[-111.48746,44.69753],[-111.48735,44.69702],[-111.48741,44.69637],[-111.48725,44.69584],[-111.48607,44.69529],[-111.48554,44.69522],[-111.4842,44.69453],[-111.48373,44.69363],[-111.48326,44.69301],[-111.48301,44.69225],[-111.48343,44.69144],[-111.48334,44.69104],[-111.48299,44.69122],[-111.4829,44.69105],[-111.48372,44.68999],[-111.48388,44.68931],[-111.48474,44.68813],[-111.48492,44.68762],[-111.48313,44.68628],[-111.48234,44.68559],[-111.48059,44.68477],[-111.47995,44.68395],[-111.4785,44.68384],[-111.47824,44.6834],[-111.47876,44.68297],[-111.47807,44.68274],[-111.47795,44.68234],[-111.47745,44.68152],[-111.47615,44.68133],[-111.47509,44.68128],[-111.47391,44.68147],[-111.47329,44.681],[-111.47281,44.68052],[-111.47198,44.67998],[-111.47054,44.67993],[-111.46949,44.6797],[-111.46883,44.67929],[-111.46865,44.67872],[-111.46931,44.67815],[-111.4704,44.67733],[-111.47085,44.67672],[-111.47121,44.67583],[-111.47172,44.675],[-111.47268,44.67473],[-111.47341,44.67465],[-111.47429,44.67441],[-111.47457,44.67407],[-111.47498,44.67379],[-111.47605,44.67402],[-111.47682,44.67383],[-111.47684,44.67324],[-111.47655,44.66991],[-111.47595,44.6689],[-111.47466,44.66872],[-111.47363,44.66836],[-111.47289,44.6676],[-111.47264,44.66687],[-111.47314,44.66556],[-111.4736,44.66498],[-111.4761,44.66352],[-111.47861,44.66216],[-111.47889,44.66138],[-111.47836,44.66082],[-111.47795,44.66023],[-111.47836,44.65971],[-111.47894,44.65926],[-111.47922,44.65877],[-111.47972,44.65843],[-111.48058,44.65827],[-111.4806,44.65783],[-111.4808,44.6574],[-111.48128,44.65717],[-111.48256,44.65592],[-111.48341,44.65532],[-111.48445,44.655],[-111.48575,44.65475],[-111.48704,44.65441],[-111.48771,44.65398],[-111.48808,44.65333],[-111.48798,44.65233],[-111.48852,44.65078],[-111.48884,44.65039],[-111.48946,44.65002],[-111.49067,44.64978],[-111.491,44.64943],[-111.49115,44.64871],[-111.49146,44.64835],[-111.49184,44.64771],[-111.49198,44.64642],[-111.49192,44.6455],[-111.49208,44.64455],[-111.49191,44.6439],[-111.4913,44.64331],[-111.49036,44.64263],[-111.49032,44.64234],[-111.49058,44.64227],[-111.49101,44.6423],[-111.49159,44.64264],[-111.49229,44.64299],[-111.49374,44.64407],[-111.49435,44.64422],[-111.49561,44.64417],[-111.49656,44.64514],[-111.49799,44.64635],[-111.49866,44.64647],[-111.49895,44.64675],[-111.49923,44.64771],[-111.49949,44.64805],[-111.49989,44.64823],[-111.50073,44.64857],[-111.50248,44.64772],[-111.5083,44.64513],[-111.51661,44.64369],[-111.51703,44.64117],[-111.51513,44.64021],[-111.51401,44.63907],[-111.51228,44.6385],[-111.51056,44.6358],[-111.50892,44.63427],[-111.50789,44.63287],[-111.50647,44.63192],[-111.50523,44.63133],[-111.50445,44.6302],[-111.50292,44.62653],[-111.50664,44.62569],[-111.50825,44.62495],[-111.50925,44.62395],[-111.51046,44.62311],[-111.51318,44.62213],[-111.51559,44.62147],[-111.5161,44.62097],[-111.52171,44.61336],[-111.52127,44.61284],[-111.52013,44.61245],[-111.52034,44.61134],[-111.52577,44.60489],[-111.52227,44.60331],[-111.51912,44.60237],[-111.52013,44.60152],[-111.52247,44.60005],[-111.52462,44.59789],[-111.52424,44.59558],[-111.52309,44.59331],[-111.52139,44.59153],[-111.51986,44.58975],[-111.51932,44.58638],[-111.51916,44.58292],[-111.51521,44.58067],[-111.50667,44.57625],[-111.5028,44.57405],[-111.50122,44.57215],[-111.5011,44.57117],[-111.50299,44.56911],[-111.50402,44.56866],[-111.50568,44.56899],[-111.50731,44.56871],[-111.50833,44.56818],[-111.50932,44.56717],[-111.51002,44.56606],[-111.50998,44.56443],[-111.50915,44.56318],[-111.50738,44.56245],[-111.50487,44.56197],[-111.50204,44.56165],[-111.5008,44.56156],[-111.49932,44.56092],[-111.49632,44.56114],[-111.49564,44.56108],[-111.49496,44.56118],[-111.49343,44.56096],[-111.49202,44.5608],[-111.49104,44.56021],[-111.48933,44.55974],[-111.4878,44.55884],[-111.48653,44.5582],[-111.48609,44.55752],[-111.48534,44.55749],[-111.48471,44.55714],[-111.48365,44.55692],[-111.4831,44.55643],[-111.48062,44.55574],[-111.48041,44.55549],[-111.48058,44.55526],[-111.48049,44.5547],[-111.47864,44.55341],[-111.4762,44.55443],[-111.47596,44.55464],[-111.47553,44.55577],[-111.47509,44.55681],[-111.4733,44.55697],[-111.47233,44.5572],[-111.46931,44.55753],[-111.46946,44.55707],[-111.46899,44.5565],[-111.46853,44.5562],[-111.46811,44.55505],[-111.46892,44.55338],[-111.46922,44.55207],[-111.46802,44.5513],[-111.46784,44.55078],[-111.46807,44.5497],[-111.46761,44.54772],[-111.46689,44.547],[-111.46722,44.54654],[-111.46716,44.54603],[-111.4676,44.54523],[-111.46774,44.5445],[-111.46611,44.54354],[-111.46504,44.5425],[-111.46377,44.54174],[-111.46345,44.54141],[-111.46389,44.54106],[-111.46686,44.54044],[-111.46744,44.54052],[-111.46802,44.53986],[-111.46783,44.53899],[-111.46791,44.53886],[-111.46896,44.53915],[-111.46936,44.54002],[-111.47004,44.54036],[-111.47102,44.5405],[-111.47168,44.54081],[-111.47397,44.54079],[-111.47494,44.54096],[-111.47562,44.54088],[-111.47617,44.54108],[-111.47684,44.54152],[-111.47789,44.54176],[-111.47906,44.54171],[-111.47965,44.54215],[-111.48046,44.54164],[-111.48136,44.54135],[-111.4829,44.54136],[-111.4838,44.54087],[-111.48436,44.54099],[-111.48559,44.54164],[-111.48588,44.54161],[-111.48677,44.54121],[-111.49058,44.54064],[-111.49322,44.54058],[-111.49446,44.54087],[-111.49539,44.54089],[-111.49645,44.54112],[-111.49749,44.54204],[-111.49821,44.54195],[-111.49957,44.54204],[-111.49996,44.54192],[-111.50023,44.54107],[-111.50079,44.54006],[-111.50392,44.5382],[-111.50547,44.53695],[-111.50802,44.53599],[-111.51058,44.5358],[-111.51421,44.53647],[-111.51526,44.53698],[-111.51645,44.53859],[-111.51712,44.54001],[-111.51757,44.54207],[-111.51807,44.54416],[-111.51928,44.54521],[-111.52159,44.54668],[-111.52389,44.54831],[-111.52573,44.54916],[-111.52903,44.55001],[-111.53353,44.55017],[-111.537,44.5507],[-111.53811,44.55159],[-111.53947,44.55252],[-111.54071,44.55318],[-111.5425,44.55381],[-111.54404,44.55416],[-111.5451,44.55497],[-111.54513,44.55636],[-111.5466,44.55709],[-111.54794,44.55734],[-111.55067,44.55678],[-111.55346,44.55562],[-111.55663,44.55446],[-111.56026,44.55509],[-111.56281,44.55522],[-111.56492,44.55835],[-111.56682,44.5583],[-111.56889,44.55813],[-111.57165,44.5586],[-111.57513,44.55946],[-111.57642,44.55932],[-111.57835,44.55949],[-111.58136,44.56014],[-111.58277,44.56104],[-111.58406,44.56231],[-111.58579,44.56283],[-111.58745,44.56288],[-111.58908,44.56266],[-111.59173,44.5615],[-111.59941,44.55555],[-111.60169,44.55389],[-111.60369,44.5533],[-111.60504,44.55326],[-111.60612,44.55225],[-111.60741,44.55118],[-111.60913,44.55034],[-111.61107,44.54966],[-111.61292,44.54906],[-111.61445,44.54898],[-111.61633,44.54976],[-111.61697,44.55064],[-111.61764,44.55097],[-111.62001,44.55075],[-111.62207,44.55084],[-111.62377,44.55126],[-111.62484,44.55195],[-111.62586,44.55185],[-111.62811,44.55188],[-111.63152,44.55203],[-111.63444,44.55259],[-111.64028,44.55303],[-111.64219,44.55348],[-111.64427,44.55424],[-111.64625,44.55523],[-111.64908,44.55563],[-111.65213,44.55529],[-111.65436,44.55436],[-111.65692,44.55322],[-111.65862,44.55295],[-111.6605,44.55351],[-111.66212,44.55464],[-111.66412,44.55538],[-111.66638,44.55578],[-111.66928,44.55612],[-111.67195,44.55652],[-111.67473,44.55738],[-111.67722,44.55799],[-111.68005,44.55897],[-111.68164,44.55991],[-111.6831,44.56174],[-111.69021,44.55616],[-111.70419,44.56021],[-111.70734,44.55392],[-111.70809,44.55167],[-111.71147,44.54839],[-111.71382,44.54721],[-111.71445,44.54602],[-111.7155,44.54354],[-111.71758,44.54321],[-111.71999,44.54355],[-111.72306,44.5436],[-111.72494,44.54381],[-111.72682,44.54393],[-111.73203,44.54255],[-111.73359,44.54237],[-111.73569,44.54311],[-111.73715,44.54305],[-111.73935,44.54236],[-111.74077,44.54158],[-111.74188,44.54147],[-111.74419,44.54102],[-111.7465,44.54073],[-111.74783,44.54008],[-111.7495,44.53939],[-111.75079,44.53872],[-111.75179,44.53748],[-111.75527,44.53563],[-111.75897,44.53377],[-111.75954,44.53296],[-111.76075,44.53198],[-111.76193,44.52982],[-111.76174,44.52875],[-111.76125,44.52779],[-111.76125,44.52726],[-111.76143,44.52682],[-111.76253,44.52679],[-111.76589,44.52777],[-111.76788,44.52826],[-111.76924,44.52917],[-111.7704,44.52968],[-111.77141,44.52981],[-111.77314,44.52937],[-111.77533,44.52819],[-111.77714,44.52623],[-111.77928,44.52488],[-111.78474,44.52368],[-111.78665,44.52388],[-111.79049,44.52462],[-111.79388,44.52599],[-111.79688,44.52623],[-111.80095,44.52594],[-111.80393,44.52522],[-111.80608,44.52365],[-111.80741,44.52139],[-111.80892,44.51952],[-111.80862,44.51861],[-111.80675,44.51681],[-111.80647,44.51621],[-111.80655,44.51544],[-111.80719,44.51501],[-111.8083,44.51469],[-111.80871,44.51424],[-111.80829,44.51322],[-111.80774,44.51225],[-111.80789,44.51172],[-111.81451,44.51061],[-111.82146,44.50928],[-111.82291,44.50968],[-111.82398,44.51049],[-111.82406,44.51168],[-111.82469,44.51214],[-111.8278,44.51214],[-111.82811,44.51397],[-111.8299,44.51604],[-111.83074,44.51675],[-111.83127,44.51746],[-111.83104,44.51907],[-111.83065,44.51968],[-111.83079,44.52017],[-111.832,44.52033],[-111.8338,44.52155],[-111.83809,44.5239],[-111.84039,44.52494],[-111.84251,44.52606],[-111.84348,44.52869],[-111.84502,44.53205],[-111.84924,44.53978],[-111.85181,44.54274],[-111.85483,44.54454],[-111.85623,44.54582],[-111.85631,44.54774],[-111.85725,44.54905],[-111.86359,44.55132],[-111.86459,44.5529],[-111.86489,44.55638],[-111.8652,44.55797],[-111.86736,44.5595],[-111.86686,44.56141],[-111.86614,44.56283],[-111.86923,44.56532],[-111.87052,44.56401],[-111.87318,44.56308],[-111.87397,44.56297],[-111.87498,44.56273],[-111.87576,44.56236],[-111.87976,44.56115],[-111.88103,44.56088],[-111.88258,44.56164],[-111.8832,44.56218],[-111.88474,44.56235],[-111.88791,44.56341],[-111.88902,44.56422],[-111.88983,44.56512],[-111.8911,44.56482],[-111.89267,44.56415],[-111.89426,44.56311],[-111.89456,44.56278],[-111.89488,44.56113],[-111.89538,44.55964],[-111.89602,44.55931],[-111.8982,44.55891],[-111.89919,44.55865],[-111.90021,44.55834],[-111.90069,44.55785],[-111.90131,44.55758],[-111.9037,44.55722],[-111.9053,44.55715],[-111.91222,44.55664],[-111.91417,44.55605],[-111.91547,44.55603],[-111.91673,44.55626],[-111.91692,44.55655],[-111.9193,44.55725],[-111.92048,44.55779],[-111.92198,44.55775],[-111.92392,44.55757],[-111.92576,44.55746],[-111.9273,44.55755],[-111.92857,44.55782],[-111.93014,44.55774],[-111.93124,44.55757],[-111.93249,44.55763],[-111.93387,44.55803],[-111.93499,44.55803],[-111.93787,44.55742],[-111.94075,44.55668],[-111.94802,44.55681],[-111.94878,44.55595],[-111.9493,44.55517],[-111.94892,44.55415],[-111.94939,44.55317],[-111.94991,44.55231],[-111.95056,44.5509],[-111.95148,44.55008],[-111.95407,44.54905],[-111.96161,44.54986],[-111.9632,44.54468],[-111.96729,44.54517],[-111.9674,44.54437],[-111.96774,44.54384],[-111.96881,44.54338],[-111.9694,44.54274],[-111.96984,44.541],[-111.96981,44.54027],[-111.97026,44.53946],[-111.97122,44.53867],[-111.97308,44.53742],[-111.97623,44.53648],[-111.97865,44.53588],[-111.97924,44.5359],[-111.98073,44.53668],[-111.9827,44.53686],[-111.98362,44.5368],[-111.98506,44.53729],[-111.98813,44.53734],[-111.99128,44.53723],[-111.99446,44.53572],[-111.99519,44.53543],[-112.00082,44.53795],[-112.00137,44.53806],[-112.00276,44.5378],[-112.00466,44.53775],[-112.00643,44.53902],[-112.00778,44.54032],[-112.00786,44.54117],[-112.00811,44.54184],[-112.00977,44.54251],[-112.01143,44.54346],[-112.01201,44.54309],[-112.01376,44.54235],[-112.01553,44.54198],[-112.01667,44.54198],[-112.0185,44.54238],[-112.02019,44.54334],[-112.02091,44.54406],[-112.02175,44.54422],[-112.0231,44.54491],[-112.0242,44.54517],[-112.02517,44.54528],[-112.02588,44.54559],[-112.02804,44.54601],[-112.02937,44.54617],[-112.03202,44.54667],[-112.03273,44.54663],[-112.03291,44.54618],[-112.03412,44.54473],[-112.03427,44.5439],[-112.03503,44.54263],[-112.03462,44.53947],[-112.03411,44.53766],[-112.03298,44.53499],[-112.03275,44.53428],[-112.03272,44.53219],[-112.03245,44.53121],[-112.03235,44.52962],[-112.03242,44.52909],[-112.03278,44.5284],[-112.03355,44.52829],[-112.03468,44.52847],[-112.0355,44.52886],[-112.03553,44.52918],[-112.03695,44.53034],[-112.03744,44.53144],[-112.03785,44.53266],[-112.03872,44.5328],[-112.04222,44.53242],[-112.04393,44.53232],[-112.0452,44.53317],[-112.04614,44.53397],[-112.04844,44.53424],[-112.05082,44.53436],[-112.05351,44.53511],[-112.05512,44.53653],[-112.05582,44.53662],[-112.06506,44.53598],[-112.06684,44.53622],[-112.06782,44.53656],[-112.06849,44.53691],[-112.06907,44.53708],[-112.07329,44.53496],[-112.07459,44.53412],[-112.07597,44.5334],[-112.07794,44.53369],[-112.07863,44.5335],[-112.07901,44.53372],[-112.08008,44.53386],[-112.08081,44.53379],[-112.08565,44.53207],[-112.09331,44.52999],[-112.09462,44.52866],[-112.09506,44.52648],[-112.09573,44.52516],[-112.09623,44.52398],[-112.09633,44.52319],[-112.09815,44.52227],[-112.10159,44.52086],[-112.10271,44.52088],[-112.10466,44.52086],[-112.10579,44.52071],[-112.1068,44.52083],[-112.10761,44.52281],[-112.11003,44.52443],[-112.11217,44.5248],[-112.11556,44.52523],[-112.11761,44.52573],[-112.11894,44.52645],[-112.12106,44.52707],[-112.12504,44.52846],[-112.12582,44.52891],[-112.12656,44.52896],[-112.12704,44.5291],[-112.12678,44.5306],[-112.12747,44.53247],[-112.12852,44.53358],[-112.12928,44.53433],[-112.1294,44.53475],[-112.12939,44.53542],[-112.12903,44.5358],[-112.12913,44.53629],[-112.12952,44.53647],[-112.13003,44.53658],[-112.13035,44.53737],[-112.13091,44.53778],[-112.13258,44.53796],[-112.13407,44.53735],[-112.13453,44.53724],[-112.13599,44.53775],[-112.1361,44.53936],[-112.13646,44.5399],[-112.13879,44.53936],[-112.14034,44.53933],[-112.14315,44.5398],[-112.14466,44.53944],[-112.14552,44.53918],[-112.1472,44.53804],[-112.14823,44.53691],[-112.14847,44.53681],[-112.14883,44.5368],[-112.15108,44.53809],[-112.15199,44.53853],[-112.15438,44.53877],[-112.1582,44.53951],[-112.16148,44.54043],[-112.16367,44.5414],[-112.16458,44.54168],[-112.16959,44.53859],[-112.17354,44.53685],[-112.17628,44.53587],[-112.1779,44.53502],[-112.17968,44.53303],[-112.18017,44.53283],[-112.18148,44.53313],[-112.18394,44.5331],[-112.18885,44.5351],[-112.19149,44.53569],[-112.19442,44.53709],[-112.19649,44.5379],[-112.20717,44.54007],[-112.21017,44.54049],[-112.21348,44.54128],[-112.21663,44.5429],[-112.22067,44.54327],[-112.22167,44.5435],[-112.22291,44.54469],[-112.22862,44.54844],[-112.22948,44.54946],[-112.22952,44.55015],[-112.22923,44.55118],[-112.22927,44.55162],[-112.22893,44.55313],[-112.22828,44.55387],[-112.22741,44.55448],[-112.22684,44.55523],[-112.22719,44.55729],[-112.22814,44.55781],[-112.23038,44.55833],[-112.23101,44.55999],[-112.23023,44.56169],[-112.23016,44.56272],[-112.22889,44.564],[-112.23046,44.56448],[-112.23298,44.56456],[-112.23573,44.56518],[-112.23925,44.56635],[-112.24053,44.56668],[-112.24181,44.56772],[-112.24277,44.56807],[-112.24732,44.56854],[-112.24868,44.56849],[-112.25028,44.56802],[-112.25085,44.56771],[-112.25152,44.5677],[-112.25264,44.56829],[-112.2534,44.56883],[-112.25423,44.56976],[-112.25601,44.57076],[-112.25645,44.57123],[-112.25675,44.57163],[-112.25701,44.57128],[-112.25806,44.57048],[-112.2587,44.56955],[-112.25878,44.56881],[-112.25912,44.56843],[-112.26476,44.5672],[-112.26559,44.56676],[-112.26631,44.56583],[-112.26789,44.56542],[-112.26921,44.56551],[-112.27229,44.5661],[-112.2739,44.5661],[-112.27551,44.56573],[-112.27665,44.56609],[-112.27736,44.56645],[-112.28237,44.56729],[-112.2841,44.56795],[-112.28617,44.56849],[-112.28888,44.56772],[-112.28926,44.56702],[-112.29022,44.5664],[-112.29092,44.56577],[-112.29203,44.56422],[-112.29241,44.56298],[-112.29236,44.56199],[-112.29295,44.56164],[-112.29731,44.56067],[-112.29818,44.559],[-112.2988,44.5589],[-112.30036,44.55919],[-112.30191,44.55911],[-112.30283,44.55929],[-112.30436,44.55922],[-112.30517,44.55856],[-112.30762,44.55766],[-112.30847,44.55652],[-112.31002,44.55507],[-112.3107,44.55502],[-112.3113,44.55474],[-112.31173,44.55428],[-112.31285,44.5535],[-112.31465,44.55132],[-112.31499,44.55002],[-112.31482,44.5492],[-112.31558,44.54667],[-112.31468,44.54352],[-112.31498,44.5419],[-112.31558,44.54104],[-112.31734,44.54015],[-112.3191,44.53912],[-112.32051,44.53875],[-112.32373,44.53915],[-112.3257,44.53882],[-112.32758,44.53807],[-112.32937,44.53828],[-112.33219,44.53879],[-112.33587,44.53857],[-112.33748,44.53789],[-112.34174,44.53751],[-112.34411,44.53873],[-112.3485,44.53869],[-112.35168,44.53786],[-112.35246,44.53801],[-112.3529,44.53682],[-112.35403,44.53575],[-112.35478,44.53432],[-112.35647,44.53227],[-112.35685,44.53042],[-112.3574,44.52991],[-112.35825,44.52995],[-112.35886,44.52892],[-112.35844,44.52607],[-112.35763,44.52575],[-112.35673,44.52477],[-112.35706,44.52353],[-112.35712,44.52222],[-112.3582,44.52078],[-112.3583,44.51814],[-112.35798,44.51593],[-112.358,44.51075],[-112.3581,44.50956],[-112.35838,44.50918],[-112.35832,44.50743],[-112.35762,44.50595],[-112.35674,44.50547],[-112.35664,44.50488],[-112.35707,44.50422],[-112.35683,44.49978],[-112.35788,44.49669],[-112.35771,44.49535],[-112.35652,44.49304],[-112.35888,44.48626],[-112.35961,44.48542],[-112.36203,44.48475],[-112.36292,44.48319],[-112.36295,44.4817],[-112.36464,44.48103],[-112.36499,44.4789],[-112.36436,44.47781],[-112.36434,44.47616],[-112.36501,44.47506],[-112.36481,44.47291],[-112.36521,44.47236],[-112.36585,44.47156],[-112.36634,44.46958],[-112.3664,44.46736],[-112.36848,44.46731],[-112.36939,44.46637],[-112.37038,44.46592],[-112.37142,44.46463],[-112.37194,44.46322],[-112.37591,44.45948],[-112.37696,44.45862],[-112.37788,44.45646],[-112.38017,44.45534],[-112.38086,44.45475],[-112.3812,44.4538],[-112.38284,44.45268],[-112.38394,44.45116],[-112.38512,44.45007],[-112.3868,44.44752],[-112.38711,44.44763],[-112.38738,44.44804],[-112.38877,44.44929],[-112.39065,44.45073],[-112.39391,44.45183],[-112.39474,44.45242],[-112.39654,44.45236],[-112.3991,44.45346],[-112.39965,44.45431],[-112.40149,44.45572],[-112.40265,44.45632],[-112.40507,44.45654],[-112.40722,44.45744],[-112.40818,44.45742],[-112.41114,44.45641],[-112.41204,44.45546],[-112.41586,44.45322],[-112.41926,44.45379],[-112.42191,44.45398],[-112.42274,44.45426],[-112.42306,44.45478],[-112.42344,44.45491],[-112.42871,44.45379],[-112.43037,44.45384],[-112.43121,44.45449],[-112.43376,44.45469],[-112.43455,44.45588],[-112.43465,44.45725],[-112.43391,44.4603],[-112.43523,44.4609],[-112.43526,44.46223],[-112.43706,44.46273],[-112.43912,44.4642],[-112.44221,44.46551],[-112.44217,44.46669],[-112.44717,44.46825],[-112.44788,44.46811],[-112.44962,44.46754],[-112.45179,44.46704],[-112.45286,44.46719],[-112.45428,44.46661],[-112.45552,44.46682],[-112.45549,44.46855],[-112.45606,44.4696],[-112.45536,44.47029],[-112.45531,44.47106],[-112.45569,44.47184],[-112.45652,44.47255],[-112.45723,44.47269],[-112.45795,44.4735],[-112.45933,44.47418],[-112.46037,44.47577],[-112.46194,44.47545],[-112.46412,44.47538],[-112.4652,44.47572],[-112.46677,44.47709],[-112.46888,44.47791],[-112.46933,44.47871],[-112.46996,44.47908],[-112.47111,44.47932],[-112.47312,44.48006],[-112.47565,44.47814],[-112.47661,44.47681],[-112.47792,44.47611],[-112.48112,44.47486],[-112.48181,44.47472],[-112.4825,44.47495],[-112.48319,44.47473],[-112.4844,44.47327],[-112.48476,44.4718],[-112.48547,44.47143],[-112.48894,44.47123],[-112.49055,44.47091],[-112.49182,44.47053],[-112.49293,44.46969],[-112.49388,44.46801],[-112.49495,44.46782],[-112.49679,44.46794],[-112.49696,44.46761],[-112.49671,44.46618],[-112.50031,44.46306],[-112.50237,44.46413],[-112.50635,44.46508],[-112.50757,44.46517],[-112.51162,44.46633],[-112.51176,44.46689],[-112.51139,44.46886],[-112.51199,44.46938],[-112.51209,44.47042],[-112.51141,44.47176],[-112.51234,44.47264],[-112.51241,44.47389],[-112.51356,44.47444],[-112.51384,44.47494],[-112.51524,44.4755],[-112.51581,44.47556],[-112.51681,44.47636],[-112.51844,44.47571],[-112.52135,44.47629],[-112.52305,44.47627],[-112.52533,44.47747],[-112.52804,44.4767],[-112.52929,44.47691],[-112.5323,44.47812],[-112.53573,44.47815],[-112.53677,44.47872],[-112.5366,44.47981],[-112.53863,44.48124],[-112.53955,44.48261],[-112.54189,44.48399],[-112.54308,44.484],[-112.54418,44.48369],[-112.54561,44.48382],[-112.5474,44.4834],[-112.54865,44.4837],[-112.54955,44.48488],[-112.55063,44.48495],[-112.55209,44.48424],[-112.5545,44.48439],[-112.55511,44.48391],[-112.5571,44.48365],[-112.55857,44.48314],[-112.56046,44.48256],[-112.56323,44.48258],[-112.56463,44.48285],[-112.56617,44.4828],[-112.56754,44.48261],[-112.56968,44.48265],[-112.57251,44.48149],[-112.57354,44.48094],[-112.57603,44.48098],[-112.57678,44.48073],[-112.57736,44.4803],[-112.57774,44.48004],[-112.57877,44.48095],[-112.58254,44.48224],[-112.58313,44.48213],[-112.5842,44.4813],[-112.58617,44.48215],[-112.59328,44.48625],[-112.59362,44.48689],[-112.59507,44.48777],[-112.59704,44.48838],[-112.59762,44.48917],[-112.59821,44.48959],[-112.59946,44.48988],[-112.6002,44.49012],[-112.60103,44.49078],[-112.60183,44.491],[-112.60266,44.49102],[-112.60938,44.48946],[-112.61712,44.48747],[-112.61956,44.48703],[-112.62058,44.48573],[-112.62137,44.48522],[-112.62347,44.48444],[-112.62407,44.4837],[-112.62415,44.48338],[-112.62474,44.48309],[-112.62514,44.48311],[-112.62578,44.48335],[-112.62765,44.48334],[-112.62891,44.48295],[-112.62918,44.48357],[-112.62858,44.48519],[-112.62893,44.48571],[-112.62949,44.48592],[-112.62989,44.48656],[-112.63002,44.48731],[-112.62936,44.48906],[-112.63215,44.49121],[-112.63258,44.49121],[-112.63309,44.49097],[-112.63533,44.49054],[-112.6385,44.49042],[-112.64048,44.4908],[-112.64186,44.49001],[-112.64341,44.49008],[-112.64797,44.48862],[-112.64891,44.48808],[-112.65029,44.48815],[-112.65111,44.4877],[-112.65313,44.48769],[-112.6553,44.48704],[-112.65661,44.48695],[-112.65786,44.48706],[-112.65838,44.4866],[-112.65933,44.48596],[-112.66081,44.48572],[-112.66198,44.48615],[-112.66221,44.48646],[-112.66379,44.48612],[-112.66457,44.48651],[-112.66511,44.48713],[-112.66577,44.48729],[-112.66653,44.48866],[-112.66703,44.48923],[-112.6681,44.4896],[-112.66883,44.49022],[-112.67123,44.49133],[-112.67508,44.49211],[-112.67639,44.49206],[-112.67795,44.49181],[-112.679,44.49145],[-112.6798,44.49139],[-112.68102,44.49224],[-112.68246,44.49245],[-112.68606,44.49308],[-112.68631,44.49508],[-112.68708,44.49562],[-112.68711,44.49715],[-112.68736,44.49827],[-112.68836,44.49886],[-112.69199,44.49943],[-112.6929,44.50033],[-112.69523,44.49945],[-112.69774,44.49944],[-112.69836,44.49995],[-112.7004,44.50031],[-112.70537,44.50212],[-112.70639,44.50263],[-112.70798,44.5031],[-112.70983,44.50338],[-112.71464,44.50333],[-112.71782,44.5042],[-112.71902,44.50439],[-112.72021,44.50411],[-112.72285,44.50297],[-112.72582,44.50241],[-112.73134,44.50079],[-112.73512,44.49912],[-112.73606,44.49646],[-112.73722,44.49543],[-112.73858,44.49369],[-112.74016,44.49228],[-112.74099,44.491],[-112.74145,44.48904],[-112.74195,44.48825],[-112.74251,44.48814],[-112.7441,44.48823],[-112.74543,44.48794],[-112.74613,44.48811],[-112.74837,44.49089],[-112.74906,44.49121],[-112.74958,44.49111],[-112.75075,44.49048],[-112.75261,44.48985],[-112.75529,44.48877],[-112.76257,44.48862],[-112.76522,44.48789],[-112.76898,44.48486],[-112.77025,44.48422],[-112.77173,44.48417],[-112.7813,44.48487],[-112.79419,44.46933],[-112.79485,44.46882],[-112.7984,44.46736],[-112.79855,44.46691],[-112.79746,44.46575],[-112.79712,44.46419],[-112.79789,44.4633],[-112.79808,44.46184],[-112.79923,44.46096],[-112.8003,44.46039],[-112.80166,44.45866],[-112.80695,44.45588],[-112.80816,44.45396],[-112.80852,44.45351],[-112.80917,44.45359],[-112.81185,44.45548],[-112.81517,44.45335],[-112.81671,44.45088],[-112.81756,44.44903],[-112.8185,44.44762],[-112.8195,44.44679],[-112.8219,44.44601],[-112.82557,44.44443],[-112.82823,44.44241],[-112.82866,44.44137],[-112.82863,44.44022],[-112.82817,44.43908],[-112.82809,44.43617],[-112.82775,44.43303],[-112.82716,44.43243],[-112.8279,44.43196],[-112.82942,44.43162],[-112.83032,44.43076],[-112.83159,44.43006],[-112.83294,44.42989],[-112.83379,44.42925],[-112.8343,44.42861],[-112.8353,44.42815],[-112.8357,44.42768],[-112.83642,44.42618],[-112.83968,44.42545],[-112.84031,44.42543],[-112.84059,44.42525],[-112.83789,44.42271],[-112.83753,44.42266],[-112.83618,44.42283],[-112.83243,44.41825],[-112.83159,44.41666],[-112.831,44.41602],[-112.82985,44.41532],[-112.82887,44.41463],[-112.8273,44.413],[-112.82628,44.41168],[-112.82189,44.40741],[-112.82176,44.40705],[-112.82218,44.40558],[-112.82188,44.40457],[-112.82188,44.40359],[-112.82157,44.40326],[-112.82164,44.40197],[-112.8208,44.40026],[-112.81817,44.39954],[-112.81724,44.39964],[-112.81646,44.40006],[-112.81611,44.4],[-112.81521,44.39963],[-112.81327,44.39814],[-112.81339,44.39778],[-112.81479,44.39647],[-112.815,44.39581],[-112.8147,44.3947],[-112.81365,44.39303],[-112.81311,44.3925],[-112.81264,44.39224],[-112.8125,44.39204],[-112.81263,44.39113],[-112.81262,44.39045],[-112.81222,44.38931],[-112.81222,44.38818],[-112.81242,44.38744],[-112.81303,44.38669],[-112.81374,44.38547],[-112.81445,44.38354],[-112.81429,44.38294],[-112.81318,44.38164],[-112.81377,44.3798],[-112.8137,44.37887],[-112.81325,44.37812],[-112.81286,44.37783],[-112.81265,44.37739],[-112.81274,44.37716],[-112.81579,44.37623],[-112.81676,44.37479],[-112.81807,44.37316],[-112.82042,44.37101],[-112.82135,44.37043],[-112.82199,44.37042],[-112.82244,44.37007],[-112.82305,44.36941],[-112.82393,44.36877],[-112.82464,44.36859],[-112.82496,44.36832],[-112.82584,44.36793],[-112.82785,44.36725],[-112.82872,44.36664],[-112.82942,44.36582],[-112.83144,44.36491],[-112.83637,44.36327],[-112.8368,44.36291],[-112.83687,44.36223],[-112.83711,44.36211],[-112.83736,44.36206],[-112.84091,44.36192],[-112.84123,44.36178],[-112.84238,44.36062],[-112.84233,44.36024],[-112.84263,44.35995],[-112.84327,44.35967],[-112.84431,44.35903],[-112.84455,44.35848],[-112.84483,44.35821],[-112.84734,44.35826],[-112.85006,44.35889],[-112.85064,44.35915],[-112.85312,44.35943],[-112.85538,44.35999],[-112.85606,44.36096],[-112.85674,44.36158],[-112.85775,44.36296],[-112.85848,44.36342],[-112.85904,44.36358],[-112.85938,44.36382],[-112.85971,44.36412],[-112.85986,44.3645],[-112.86073,44.36518],[-112.86085,44.36639],[-112.86103,44.3669],[-112.8616,44.36718],[-112.86196,44.36816],[-112.86328,44.36902],[-112.86361,44.36927],[-112.86366,44.36957],[-112.86436,44.36991],[-112.86523,44.37015],[-112.86576,44.36998],[-112.86664,44.37],[-112.86754,44.37018],[-112.86831,44.3706],[-112.8693,44.3707],[-112.87084,44.37107],[-112.87178,44.37168],[-112.87223,44.37183],[-112.87272,44.37177],[-112.87357,44.37196],[-112.87384,44.37262],[-112.87386,44.37349],[-112.87315,44.3749],[-112.87332,44.37539],[-112.8738,44.37589],[-112.87582,44.37702],[-112.87941,44.37822],[-112.88101,44.37951],[-112.88179,44.38031],[-112.88174,44.38208],[-112.88191,44.38394],[-112.8842,44.3905],[-112.88425,44.3915],[-112.88395,44.39235],[-112.8842,44.39369],[-112.88608,44.39588],[-112.88574,44.39754],[-112.88512,44.39904],[-112.88433,44.40048],[-112.88428,44.40115],[-112.88465,44.40209],[-112.88513,44.40233],[-112.8865,44.40285],[-112.88829,44.40377],[-112.88967,44.40475],[-112.89033,44.40515],[-112.89198,44.40503],[-112.89329,44.40457],[-112.89658,44.40108],[-112.89773,44.40071],[-112.89945,44.39981],[-112.90051,44.39906],[-112.90122,44.39867],[-112.90374,44.39929],[-112.90666,44.40046],[-112.91083,44.40192],[-112.91382,44.40224],[-112.91557,44.40268],[-112.91649,44.40379],[-112.91768,44.4049],[-112.91833,44.40605],[-112.91854,44.40754],[-112.91904,44.40814],[-112.91901,44.40871],[-112.91966,44.40959],[-112.9204,44.4099],[-112.92483,44.41094],[-112.92612,44.41115],[-112.92703,44.41115],[-112.92755,44.4113],[-112.92846,44.41261],[-112.9305,44.4133],[-112.93179,44.41333],[-112.93281,44.41297],[-112.93714,44.41261],[-112.94139,44.41321],[-112.94286,44.41404],[-112.94678,44.41572],[-112.95112,44.41666],[-112.95187,44.41765],[-112.95297,44.41937],[-112.95346,44.42079],[-112.9537,44.42227],[-112.9534,44.42324],[-112.95302,44.42416],[-112.9544,44.42394],[-112.95875,44.42402],[-112.95951,44.42422],[-112.96065,44.42419],[-112.96213,44.42367],[-112.96363,44.42355],[-112.96517,44.42432],[-112.96653,44.42515],[-112.96698,44.42559],[-112.96834,44.42599],[-112.9704,44.42697],[-112.97224,44.42806],[-112.97365,44.42906],[-112.97521,44.43057],[-112.97601,44.43108],[-112.97717,44.43233],[-112.9785,44.43329],[-112.97945,44.43354],[-112.98065,44.43379],[-112.98173,44.43429],[-112.98257,44.43512],[-112.98607,44.44025],[-112.98693,44.44103],[-112.98754,44.44126],[-112.98901,44.44341],[-112.98974,44.44413],[-112.99195,44.44523],[-112.99372,44.44649],[-112.9972,44.44779],[-113.00072,44.44927],[-113.00089,44.4494],[-113.00166,44.44955],[-113.00217,44.45017],[-113.00285,44.45022],[-113.00319,44.45053],[-113.00348,44.45076],[-113.00454,44.4524],[-113.00477,44.45317],[-113.00519,44.45374],[-113.00572,44.45429],[-113.00634,44.45528],[-113.00653,44.4558],[-113.00667,44.45641],[-113.00643,44.45813],[-113.0065,44.45877],[-113.00682,44.45947],[-113.00735,44.46004],[-113.0079,44.46113],[-113.00814,44.46184],[-113.00859,44.46306],[-113.00888,44.4644],[-113.00894,44.46665],[-113.00866,44.46779],[-113.00825,44.46852],[-113.00757,44.46929],[-113.00706,44.47004],[-113.00657,44.47131],[-113.00715,44.47221],[-113.00749,44.4724],[-113.00787,44.47244],[-113.00857,44.47344],[-113.00952,44.47415],[-113.01031,44.47455],[-113.01268,44.47719],[-113.01374,44.47872],[-113.01393,44.47943],[-113.01426,44.47967],[-113.01432,44.47991],[-113.01466,44.4802],[-113.01524,44.48042],[-113.0156,44.4806],[-113.01614,44.48064],[-113.01654,44.48079],[-113.01772,44.48161],[-113.01834,44.48214],[-113.01885,44.48243],[-113.02017,44.48443],[-113.02067,44.48529],[-113.0221,44.48703],[-113.02309,44.48873],[-113.02355,44.48918],[-113.02482,44.49029],[-113.02512,44.49071],[-113.02524,44.49193],[-113.02514,44.4923],[-113.02553,44.49358],[-113.02715,44.49566],[-113.02716,44.49599],[-113.0268,44.49668],[-113.0262,44.49699],[-113.02555,44.49714],[-113.02461,44.49833],[-113.02383,44.4998],[-113.02229,44.49991],[-113.01816,44.50333],[-113.01463,44.50724],[-113.0156,44.51566],[-113.00544,44.51928],[-113.00704,44.52587],[-113.01022,44.52778],[-113.01265,44.52748],[-113.01743,44.52946],[-113.02048,44.53229],[-113.02281,44.53592],[-113.03274,44.53714],[-113.04558,44.54395],[-113.04714,44.54638],[-113.04694,44.54884],[-113.04557,44.55537],[-113.0359,44.56091],[-113.03675,44.56402],[-113.03984,44.56681],[-113.054,44.57286],[-113.06046,44.57579],[-113.06734,44.57918],[-113.0634,44.5863],[-113.06926,44.59065],[-113.07783,44.59551],[-113.08791,44.59922],[-113.07788,44.60788],[-113.07375,44.61391],[-113.06545,44.61741],[-113.05675,44.61866],[-113.05355,44.62117],[-113.05233,44.62492],[-113.05073,44.62703],[-113.04934,44.62939],[-113.05146,44.63693],[-113.0623,44.64583],[-113.06563,44.64936],[-113.06502,44.65054],[-113.06373,44.65225],[-113.06829,44.65635],[-113.06821,44.65792],[-113.06866,44.66039],[-113.07041,44.66786],[-113.06826,44.67212],[-113.06778,44.67278],[-113.06777,44.67945],[-113.07803,44.68112],[-113.08264,44.68322],[-113.08003,44.68841],[-113.08189,44.69133],[-113.08548,44.69234],[-113.09508,44.69588],[-113.09647,44.69673],[-113.09752,44.69704],[-113.09808,44.69743],[-113.09799,44.69816],[-113.09838,44.69967],[-113.09872,44.70195],[-113.10118,44.70859],[-113.10128,44.71018],[-113.10086,44.71407],[-113.10115,44.71705],[-113.1011,44.71878],[-113.10171,44.72083],[-113.10207,44.72248],[-113.1032,44.72585],[-113.10213,44.72901],[-113.11212,44.73295],[-113.11661,44.73198],[-113.1178,44.73326],[-113.11686,44.73808],[-113.121,44.74659],[-113.12459,44.7492],[-113.13038,44.74993],[-113.13145,44.75027],[-113.13274,44.7509],[-113.1348,44.75274],[-113.13503,44.75324],[-113.13492,44.75448],[-113.13531,44.75648],[-113.13584,44.7571],[-113.13675,44.75782],[-113.13715,44.75837],[-113.13731,44.75914],[-113.13766,44.75959],[-113.13774,44.76013],[-113.13701,44.76077],[-113.13573,44.76253],[-113.13495,44.76303],[-113.13253,44.76396],[-113.13198,44.7644],[-113.13135,44.76472],[-113.13131,44.76497],[-113.13239,44.76831],[-113.13252,44.76894],[-113.13177,44.77109],[-113.13115,44.77238],[-113.13137,44.77281],[-113.13386,44.77406],[-113.13699,44.77482],[-113.13763,44.77522],[-113.13849,44.77604],[-113.14061,44.77667],[-113.14222,44.77685],[-113.14248,44.77663],[-113.14531,44.77644],[-113.14624,44.77657],[-113.14723,44.77696],[-113.14881,44.77787],[-113.14977,44.77858],[-113.15019,44.77927],[-113.15463,44.77955],[-113.15722,44.78057],[-113.15788,44.78098],[-113.1584,44.78083],[-113.1596,44.78086],[-113.16041,44.78071],[-113.16118,44.7803],[-113.16163,44.77934],[-113.16346,44.77882],[-113.16375,44.77889],[-113.16432,44.77944],[-113.16547,44.77984],[-113.16692,44.78058],[-113.16833,44.78169],[-113.17017,44.78269],[-113.17278,44.78466],[-113.17391,44.78473],[-113.17508,44.78511],[-113.17931,44.78707],[-113.18107,44.78977],[-113.18125,44.79021],[-113.18328,44.79349],[-113.18399,44.79394],[-113.18478,44.79411],[-113.18661,44.79602],[-113.18754,44.7969],[-113.18785,44.79797],[-113.18911,44.7993],[-113.18948,44.79953],[-113.19044,44.79975],[-113.19162,44.80076],[-113.19317,44.8017],[-113.19447,44.80215],[-113.19555,44.80222],[-113.19706,44.8022],[-113.20251,44.80356],[-113.20357,44.80406],[-113.20489,44.80519],[-113.20604,44.80642],[-113.20685,44.80718],[-113.20882,44.8088],[-113.2096,44.80906],[-113.21108,44.80913],[-113.21333,44.80949],[-113.21556,44.81013],[-113.21835,44.8105],[-113.221,44.81046],[-113.22229,44.81066],[-113.2236,44.811],[-113.22727,44.81292],[-113.22885,44.81327],[-113.23168,44.81426],[-113.23224,44.81435],[-113.23451,44.81404],[-113.23773,44.81385],[-113.23871,44.81412],[-113.23935,44.81457],[-113.23986,44.81535],[-113.24016,44.81613],[-113.24008,44.81708],[-113.24043,44.81744],[-113.24165,44.81816],[-113.24303,44.81946],[-113.24422,44.82032],[-113.24661,44.82285],[-113.24686,44.823],[-113.25105,44.82194],[-113.252,44.82183],[-113.25235,44.8217],[-113.25387,44.82053],[-113.2546,44.82019],[-113.25564,44.81994],[-113.25693,44.81983],[-113.25729,44.81999],[-113.2577,44.82007],[-113.25831,44.81998],[-113.25857,44.81979],[-113.25953,44.81857],[-113.25993,44.81833],[-113.26106,44.81805],[-113.26176,44.81777],[-113.26276,44.81695],[-113.26322,44.8164],[-113.26346,44.81621],[-113.26597,44.81552],[-113.26792,44.81496],[-113.26977,44.81438],[-113.27069,44.81423],[-113.272,44.81437],[-113.27289,44.81438],[-113.27387,44.81424],[-113.27501,44.81403],[-113.27666,44.81309],[-113.27715,44.81288],[-113.27856,44.81268],[-113.27949,44.81234],[-113.28036,44.81178],[-113.28145,44.81078],[-113.28421,44.80877],[-113.28596,44.808],[-113.28977,44.80704],[-113.29022,44.80684],[-113.29134,44.80579],[-113.29476,44.80465],[-113.29538,44.80424],[-113.29621,44.80356],[-113.29766,44.80317],[-113.2983,44.80317],[-113.29889,44.80303],[-113.29912,44.80291],[-113.29991,44.80179],[-113.2999,44.80141],[-113.29977,44.8009],[-113.29985,44.80042],[-113.30023,44.79992],[-113.30107,44.79923],[-113.30209,44.79876],[-113.30295,44.79889],[-113.30395,44.79888],[-113.30473,44.79866],[-113.3058,44.79805],[-113.30729,44.79745],[-113.30872,44.79698],[-113.31046,44.79664],[-113.3149,44.79599],[-113.31865,44.79492],[-113.32005,44.79398],[-113.32158,44.79273],[-113.32625,44.79036],[-113.32727,44.78978],[-113.32803,44.78899],[-113.32917,44.78876],[-113.33472,44.78663],[-113.34048,44.78466],[-113.34086,44.78459],[-113.34123,44.78464],[-113.3418,44.78491],[-113.34237,44.78538],[-113.34294,44.78598],[-113.34479,44.7869],[-113.34554,44.7879],[-113.34603,44.78833],[-113.34978,44.7899],[-113.35122,44.79029],[-113.35267,44.7908],[-113.35385,44.7915],[-113.35467,44.79327],[-113.35476,44.79547],[-113.35368,44.79588],[-113.35336,44.79619],[-113.35279,44.79642],[-113.35179,44.79669],[-113.34672,44.79888],[-113.34615,44.79925],[-113.34622,44.801],[-113.34844,44.80422],[-113.34891,44.80542],[-113.35108,44.80952],[-113.35218,44.81209],[-113.35407,44.8151],[-113.35446,44.81586],[-113.35445,44.81649],[-113.35576,44.81847],[-113.35607,44.81984],[-113.35728,44.82069],[-113.36327,44.82301],[-113.36535,44.82375],[-113.36785,44.82519],[-113.36896,44.82604],[-113.37026,44.82672],[-113.37421,44.82957],[-113.37522,44.83012],[-113.37615,44.83026],[-113.37679,44.83049],[-113.377,44.83075],[-113.37711,44.8314],[-113.37716,44.83237],[-113.37694,44.83331],[-113.37689,44.83419],[-113.37717,44.83485],[-113.37799,44.83537],[-113.37971,44.83619],[-113.38221,44.83665],[-113.38408,44.83742],[-113.3866,44.83763],[-113.38845,44.83763],[-113.3903,44.8377],[-113.39146,44.83753],[-113.39206,44.83728],[-113.39291,44.83679],[-113.39418,44.83692],[-113.39737,44.83805],[-113.39899,44.83843],[-113.401,44.83871],[-113.40375,44.83926],[-113.40698,44.83977],[-113.40799,44.84017],[-113.40934,44.84075],[-113.40998,44.84074],[-113.41044,44.84055],[-113.41168,44.84035],[-113.41277,44.84037],[-113.41315,44.84048],[-113.41982,44.83805],[-113.42109,44.83769],[-113.42189,44.8376],[-113.42225,44.83778],[-113.4221,44.8391],[-113.42213,44.83998],[-113.42235,44.84054],[-113.42283,44.8411],[-113.42227,44.84193],[-113.42235,44.84256],[-113.42426,44.84576],[-113.42462,44.84616],[-113.42556,44.84702],[-113.42596,44.84781],[-113.42591,44.84927],[-113.42608,44.84975],[-113.4276,44.85187],[-113.42835,44.8526],[-113.42871,44.85414],[-113.42898,44.85483],[-113.43035,44.85529],[-113.43124,44.85532],[-113.43328,44.8551],[-113.43716,44.85524],[-113.43872,44.85541],[-113.43954,44.85569],[-113.44029,44.85617],[-113.44119,44.85736],[-113.4428,44.86062],[-113.44329,44.86132],[-113.44376,44.8617],[-113.44436,44.86199],[-113.44765,44.86262],[-113.45213,44.86357],[-113.45469,44.86502],[-113.45511,44.86542],[-113.45575,44.86762],[-113.45566,44.86866],[-113.4554,44.86958],[-113.45583,44.87135],[-113.45721,44.87425],[-113.45703,44.87489],[-113.45721,44.87562],[-113.45781,44.87632],[-113.45845,44.87666],[-113.45931,44.87733],[-113.46017,44.87821],[-113.46172,44.88075],[-113.46219,44.88141],[-113.4624,44.88288],[-113.46195,44.88477],[-113.46142,44.88648],[-113.46103,44.88671],[-113.46195,44.88715],[-113.46295,44.88793],[-113.46399,44.8886],[-113.46497,44.88939],[-113.46548,44.89005],[-113.46608,44.89049],[-113.46691,44.89074],[-113.46795,44.89086],[-113.47248,44.892],[-113.47317,44.89255],[-113.47365,44.89329],[-113.47438,44.8935],[-113.47499,44.89393],[-113.4755,44.89444],[-113.47585,44.89465],[-113.47823,44.89526],[-113.47847,44.89545],[-113.47851,44.89563],[-113.47772,44.89653],[-113.4769,44.89711],[-113.47607,44.89756],[-113.47559,44.89878],[-113.47563,44.90114],[-113.47447,44.90329],[-113.47442,44.90389],[-113.47502,44.90483],[-113.47497,44.90521],[-113.47447,44.90558],[-113.47405,44.90607],[-113.47371,44.90668],[-113.47325,44.90844],[-113.47219,44.90922],[-113.47169,44.90969],[-113.47177,44.90987],[-113.47391,44.91035],[-113.47514,44.9113],[-113.4761,44.91165],[-113.47744,44.91198],[-113.47802,44.91233],[-113.47838,44.91296],[-113.47858,44.91372],[-113.47931,44.91488],[-113.48017,44.91589],[-113.48143,44.9171],[-113.48281,44.91822],[-113.48343,44.91899],[-113.48352,44.91954],[-113.48378,44.91991],[-113.48435,44.92],[-113.48651,44.92003],[-113.48774,44.9203],[-113.48883,44.92093],[-113.48988,44.92193],[-113.49058,44.9232],[-113.49166,44.92442],[-113.49158,44.92541],[-113.4911,44.92676],[-113.49114,44.92752],[-113.49166,44.9282],[-113.49187,44.9288],[-113.492,44.93035],[-113.49259,44.93062],[-113.4934,44.93068],[-113.49462,44.93098],[-113.49515,44.93156],[-113.49549,44.93382],[-113.49521,44.935],[-113.49546,44.93559],[-113.49553,44.93686],[-113.49563,44.93713],[-113.49643,44.93783],[-113.49663,44.93826],[-113.49686,44.93935],[-113.49728,44.94071],[-113.4977,44.94118],[-113.4983,44.94165],[-113.4988,44.94229],[-113.49803,44.94348],[-113.49785,44.94517],[-113.49733,44.94562],[-113.49667,44.94606],[-113.49635,44.94641],[-113.49638,44.94736],[-113.49623,44.94775],[-113.4951,44.94837],[-113.4944,44.9486],[-113.49199,44.94825],[-113.48898,44.94747],[-113.48743,44.9469],[-113.48638,44.94689],[-113.48448,44.94736],[-113.48348,44.94783],[-113.48248,44.94913],[-113.48197,44.94969],[-113.48136,44.95012],[-113.48083,44.95028],[-113.47899,44.94969],[-113.47548,44.9492],[-113.47483,44.94879],[-113.47272,44.94811],[-113.47088,44.94814],[-113.46998,44.94801],[-113.46758,44.94809],[-113.4661,44.9477],[-113.46487,44.94817],[-113.46422,44.94849],[-113.46365,44.94904],[-113.46322,44.94996],[-113.46271,44.95044],[-113.46186,44.95096],[-113.46123,44.95146],[-113.46107,44.9521],[-113.4599,44.95233],[-113.45675,44.95231],[-113.45423,44.95208],[-113.45311,44.95217],[-113.4522,44.95252],[-113.45065,44.95318],[-113.44893,44.95355],[-113.44843,44.95404],[-113.44815,44.9546],[-113.44646,44.95565],[-113.44564,44.9578],[-113.44447,44.95867],[-113.44385,44.95925],[-113.44378,44.96],[-113.44748,44.96785],[-113.44837,44.96906],[-113.44969,44.97053],[-113.44963,44.97075],[-113.44724,44.97193],[-113.44633,44.97195],[-113.44533,44.97233],[-113.44498,44.97305],[-113.4448,44.97388],[-113.44487,44.97611],[-113.44562,44.97777],[-113.44579,44.97864],[-113.44612,44.9825],[-113.44704,44.98467],[-113.44699,44.98565],[-113.44673,44.98727],[-113.4457,44.99067],[-113.44515,44.99133],[-113.44502,44.99184],[-113.44538,44.99302],[-113.44553,44.99361],[-113.44548,44.99511],[-113.44565,44.99642],[-113.44596,44.99715],[-113.44638,44.99775],[-113.44667,44.99804],[-113.44689,44.9986],[-113.44612,44.99955],[-113.44324,45.00113],[-113.44276,45.00215],[-113.44247,45.00258],[-113.44188,45.00305],[-113.44025,45.00388],[-113.43816,45.00597],[-113.43774,45.00669],[-113.43775,45.00765],[-113.43812,45.00863],[-113.43875,45.00951],[-113.44147,45.01217],[-113.44209,45.01419],[-113.44225,45.01447],[-113.44401,45.01553],[-113.44446,45.01598],[-113.44494,45.0167],[-113.44552,45.01805],[-113.44576,45.01835],[-113.44854,45.01987],[-113.44876,45.02047],[-113.44827,45.02218],[-113.44842,45.02364],[-113.44759,45.02502],[-113.44752,45.02608],[-113.44783,45.02786],[-113.44772,45.02819],[-113.4471,45.02884],[-113.44619,45.03025],[-113.44602,45.03087],[-113.44623,45.03389],[-113.44668,45.03437],[-113.44904,45.0348],[-113.44986,45.03514],[-113.45068,45.03591],[-113.45236,45.03703],[-113.45498,45.03849],[-113.45571,45.03965],[-113.45584,45.04017],[-113.4554,45.04075],[-113.45237,45.04362],[-113.44938,45.0457],[-113.44917,45.04605],[-113.44917,45.04648],[-113.45121,45.04861],[-113.4512,45.04955],[-113.45055,45.0535],[-113.45063,45.05461],[-113.45192,45.05921],[-113.45424,45.06065],[-113.45567,45.06237],[-113.4596,45.06456],[-113.46053,45.06491],[-113.46133,45.06481],[-113.46304,45.0639],[-113.46393,45.0632],[-113.46513,45.06274],[-113.47376,45.06171],[-113.47597,45.06183],[-113.48171,45.06301],[-113.48286,45.06331],[-113.48483,45.06334],[-113.48551,45.06366],[-113.48619,45.0645],[-113.48621,45.06514],[-113.4861,45.06893],[-113.48679,45.0699],[-113.4883,45.07078],[-113.48886,45.07127],[-113.4888,45.07181],[-113.48845,45.07241],[-113.48681,45.07406],[-113.48702,45.07458],[-113.48944,45.07653],[-113.49106,45.07758],[-113.49238,45.07896],[-113.49311,45.07939],[-113.49634,45.08106],[-113.5009,45.0812],[-113.50595,45.084],[-113.51211,45.08694],[-113.52014,45.09305],[-113.51083,45.09989],[-113.51031,45.10345],[-113.50667,45.1073],[-113.51334,45.1152],[-113.51565,45.11532],[-113.52192,45.11392],[-113.52767,45.11358],[-113.53321,45.11456],[-113.53806,45.11504],[-113.54259,45.1143],[-113.54647,45.11228],[-113.55472,45.1129],[-113.55568,45.11397],[-113.55631,45.11522],[-113.56893,45.12417],[-113.57168,45.12391],[-113.57194,45.12613],[-113.57297,45.12748],[-113.5747,45.12842],[-113.57638,45.1302],[-113.57708,45.13141],[-113.57702,45.13261],[-113.57638,45.13375],[-113.57489,45.13518],[-113.57151,45.13798],[-113.56617,45.14314],[-113.56556,45.1458],[-113.56598,45.14931],[-113.57013,45.14799],[-113.57577,45.14782],[-113.57975,45.14855],[-113.58249,45.14998],[-113.58336,45.1518],[-113.58551,45.15342],[-113.58821,45.15433],[-113.58966,45.15528],[-113.59071,45.15827],[-113.59045,45.16149],[-113.59114,45.16216],[-113.59311,45.16366],[-113.59465,45.16604],[-113.59368,45.1689],[-113.59194,45.1713],[-113.58992,45.1756],[-113.58987,45.17696],[-113.5917,45.17927],[-113.59232,45.18115],[-113.59253,45.18468],[-113.59365,45.18517],[-113.59596,45.18576],[-113.59732,45.18665],[-113.5995,45.1911],[-113.60183,45.19179],[-113.60375,45.19167],[-113.60576,45.19207],[-113.60758,45.19418],[-113.60997,45.19671],[-113.61122,45.19738],[-113.6137,45.19729],[-113.61566,45.19882],[-113.61677,45.20046],[-113.618,45.20183],[-113.61958,45.20288],[-113.62146,45.20369],[-113.62386,45.20613],[-113.62578,45.20685],[-113.63059,45.20913],[-113.63237,45.21146],[-113.63579,45.21236],[-113.6369,45.21292],[-113.63708,45.21497],[-113.63696,45.21704],[-113.63857,45.21854],[-113.64027,45.22005],[-113.64217,45.22024],[-113.64666,45.22527],[-113.64738,45.22829],[-113.65005,45.23473],[-113.65289,45.23649],[-113.65399,45.23882],[-113.65699,45.24139],[-113.6618,45.24378],[-113.66379,45.24417],[-113.6656,45.24622],[-113.66669,45.24695],[-113.66831,45.24721],[-113.6719,45.24832],[-113.6744,45.24942],[-113.67614,45.24954],[-113.67871,45.24925],[-113.67954,45.25],[-113.67956,45.25061],[-113.67999,45.25115],[-113.68055,45.25156],[-113.68122,45.25156],[-113.68187,45.25174],[-113.68214,45.2521],[-113.68394,45.25291],[-113.68493,45.25365],[-113.68493,45.2553],[-113.68536,45.25552],[-113.68596,45.25635],[-113.686,45.25698],[-113.6864,45.25728],[-113.68967,45.26061],[-113.69063,45.26128],[-113.69194,45.26288],[-113.69277,45.26437],[-113.6924,45.26458],[-113.69086,45.26747],[-113.69059,45.26874],[-113.6908,45.26956],[-113.6914,45.27074],[-113.69152,45.27205],[-113.69193,45.27255],[-113.68979,45.27341],[-113.68859,45.27341],[-113.68717,45.27316],[-113.68655,45.27325],[-113.68606,45.27307],[-113.68379,45.27306],[-113.68236,45.27354],[-113.68012,45.27474],[-113.67886,45.27611],[-113.67927,45.27621],[-113.68006,45.2772],[-113.68016,45.27791],[-113.68021,45.27896],[-113.68031,45.2792],[-113.68089,45.27936],[-113.68143,45.27984],[-113.68301,45.28204],[-113.68404,45.28296],[-113.68537,45.28373],[-113.68623,45.2846],[-113.68679,45.28584],[-113.68725,45.28617],[-113.69063,45.28802],[-113.69263,45.28855],[-113.69527,45.28978],[-113.69707,45.29113],[-113.69802,45.29138],[-113.69974,45.29197],[-113.70064,45.29281],[-113.70179,45.29457],[-113.70253,45.29481],[-113.70292,45.29521],[-113.70293,45.2973],[-113.70377,45.29927],[-113.70436,45.29936],[-113.70642,45.29996],[-113.70761,45.30012],[-113.70924,45.30059],[-113.7103,45.3015],[-113.71102,45.30284],[-113.71161,45.30314],[-113.71306,45.30446],[-113.71365,45.30545],[-113.71308,45.30677],[-113.71476,45.30852],[-113.71575,45.31144],[-113.71676,45.31193],[-113.71811,45.31285],[-113.7187,45.31558],[-113.71857,45.31692],[-113.71899,45.31699],[-113.71963,45.31685],[-113.72106,45.31704],[-113.72266,45.31766],[-113.7239,45.31971],[-113.72451,45.31979],[-113.72815,45.31979],[-113.72852,45.32004],[-113.73146,45.32363],[-113.7327,45.32393],[-113.73378,45.32465],[-113.73507,45.32495],[-113.73562,45.32524],[-113.73726,45.32747],[-113.73876,45.32981],[-113.73837,45.33121],[-113.73947,45.33362],[-113.73983,45.33571],[-113.73979,45.33669],[-113.73926,45.33756],[-113.73868,45.33877],[-113.73877,45.33905],[-113.74019,45.34062],[-113.74012,45.34105],[-113.73937,45.34233],[-113.73989,45.34353],[-113.74016,45.34464],[-113.74021,45.34559],[-113.73971,45.34596],[-113.73851,45.34634],[-113.73764,45.3469],[-113.73591,45.34757],[-113.7344,45.3485],[-113.73473,45.35118],[-113.73463,45.35251],[-113.73429,45.3532],[-113.73369,45.35375],[-113.73079,45.35501],[-113.72886,45.35616],[-113.73072,45.35709],[-113.73137,45.35819],[-113.73254,45.36155],[-113.73332,45.363],[-113.7334,45.36431],[-113.73439,45.36446],[-113.73547,45.36469],[-113.73746,45.36595],[-113.73835,45.36712],[-113.73891,45.36819],[-113.73881,45.36859],[-113.73858,45.36888],[-113.73792,45.36929],[-113.73574,45.37045],[-113.73492,45.3714],[-113.73404,45.37207],[-113.73289,45.37323],[-113.73329,45.37351],[-113.73374,45.37409],[-113.73441,45.37675],[-113.73404,45.37767],[-113.73422,45.37854],[-113.73408,45.37928],[-113.73432,45.37985],[-113.73369,45.38153],[-113.73385,45.38219],[-113.73384,45.38274],[-113.73347,45.38328],[-113.73277,45.3837],[-113.73258,45.3841],[-113.73238,45.38501],[-113.73275,45.38569],[-113.73238,45.38691],[-113.73273,45.38791],[-113.73263,45.38841],[-113.73313,45.39023],[-113.73353,45.39072],[-113.73437,45.39232],[-113.73763,45.39385],[-113.73833,45.39411],[-113.73881,45.39446],[-113.73982,45.39455],[-113.74341,45.39626],[-113.74387,45.39661],[-113.74785,45.40048],[-113.7484,45.40149],[-113.74924,45.40297],[-113.75051,45.40271],[-113.75087,45.40291],[-113.75186,45.40268],[-113.7526,45.40273],[-113.75535,45.40393],[-113.75743,45.40522],[-113.76089,45.40649],[-113.76172,45.40653],[-113.76734,45.40627],[-113.77055,45.40677],[-113.77311,45.40646],[-113.774,45.40662],[-113.77506,45.40728],[-113.77589,45.40801],[-113.77602,45.4085],[-113.7759,45.4089],[-113.77538,45.4099],[-113.77551,45.41017],[-113.77534,45.41081],[-113.77541,45.41167],[-113.77654,45.41472],[-113.77663,45.41512],[-113.77701,45.4157],[-113.77723,45.41636],[-113.7768,45.41672],[-113.7761,45.41708],[-113.77459,45.41844],[-113.77274,45.41976],[-113.77049,45.42042],[-113.76829,45.42123],[-113.7663,45.42125],[-113.76439,45.42211],[-113.76173,45.42363],[-113.76131,45.42407],[-113.76041,45.42577],[-113.75951,45.42717],[-113.76003,45.42751],[-113.76062,45.42777],[-113.76084,45.42808],[-113.76315,45.42975],[-113.76416,45.43084],[-113.76537,45.43129],[-113.76666,45.43154],[-113.76843,45.43135],[-113.76927,45.43156],[-113.77183,45.43155],[-113.77348,45.43172],[-113.77393,45.43197],[-113.77477,45.43287],[-113.77603,45.43404],[-113.77632,45.43443],[-113.77676,45.43602],[-113.77564,45.43787],[-113.77442,45.44196],[-113.77448,45.44425],[-113.77432,45.44646],[-113.77468,45.44738],[-113.7753,45.44797],[-113.77701,45.44874],[-113.77907,45.45002],[-113.78269,45.45151],[-113.78327,45.45185],[-113.7836,45.45236],[-113.78354,45.45372],[-113.78414,45.45498],[-113.78219,45.45664],[-113.78182,45.4568],[-113.78127,45.45739],[-113.77887,45.4594],[-113.77634,45.46078],[-113.77429,45.46345],[-113.77439,45.46393],[-113.77416,45.46538],[-113.77536,45.46752],[-113.77639,45.47039],[-113.77622,45.47078],[-113.77583,45.47102],[-113.76838,45.47347],[-113.76772,45.47384],[-113.76471,45.47719],[-113.76355,45.47806],[-113.75982,45.48026],[-113.76052,45.48306],[-113.76012,45.48617],[-113.76182,45.48856],[-113.76323,45.49102],[-113.76355,45.49358],[-113.76403,45.4956],[-113.76428,45.49747],[-113.76468,45.49908],[-113.76559,45.50077],[-113.76619,45.50144],[-113.76742,45.50186],[-113.76865,45.5027],[-113.76925,45.50413],[-113.7696,45.50517],[-113.7701,45.50551],[-113.77051,45.50612],[-113.77099,45.50782],[-113.77046,45.50893],[-113.76947,45.51013],[-113.76951,45.51079],[-113.77006,45.51202],[-113.77051,45.5122],[-113.77148,45.51203],[-113.77247,45.51237],[-113.77281,45.5133],[-113.77286,45.51441],[-113.7716,45.51581],[-113.76961,45.51778],[-113.76602,45.52061],[-113.76608,45.52073],[-113.76833,45.52144],[-113.77053,45.52196],[-113.7745,45.52263],[-113.77642,45.52319],[-113.77832,45.52342],[-113.77959,45.52299],[-113.78104,45.52226],[-113.78197,45.5219],[-113.78337,45.52215],[-113.78541,45.52237],[-113.78794,45.52248],[-113.79,45.5225],[-113.7927,45.52202],[-113.79452,45.52273],[-113.79655,45.52345],[-113.79964,45.52329],[-113.80286,45.52316],[-113.80519,45.5222],[-113.80751,45.52057],[-113.80913,45.5199],[-113.81053,45.51993],[-113.81224,45.52043],[-113.81437,45.52089],[-113.81598,45.52095],[-113.81691,45.5212],[-113.81845,45.52209],[-113.81945,45.52304],[-113.8201,45.5231],[-113.821,45.52294],[-113.82242,45.52214],[-113.82388,45.52142],[-113.82504,45.52127],[-113.82749,45.5213],[-113.83173,45.5207],[-113.83381,45.52052],[-113.8346,45.52074],[-113.83405,45.52139],[-113.83412,45.52203],[-113.83428,45.52255],[-113.83421,45.52309],[-113.83139,45.52557],[-113.83133,45.52614],[-113.83057,45.52733],[-113.83041,45.52804],[-113.83041,45.52988],[-113.82943,45.53158],[-113.82792,45.53243],[-113.82735,45.53334],[-113.82729,45.53385],[-113.82758,45.53476],[-113.829,45.53643],[-113.82929,45.53705],[-113.82925,45.53772],[-113.82791,45.53969],[-113.827,45.54031],[-113.82652,45.5408],[-113.82632,45.54125],[-113.82642,45.54238],[-113.82591,45.54355],[-113.82523,45.54402],[-113.82391,45.54601],[-113.82254,45.54666],[-113.82141,45.54726],[-113.82118,45.54746],[-113.82119,45.548],[-113.82087,45.54893],[-113.82032,45.54965],[-113.81974,45.55061],[-113.8194,45.5521],[-113.81884,45.55575],[-113.81834,45.55645],[-113.81745,45.55669],[-113.8174,45.55836],[-113.81721,45.55988],[-113.81788,45.56186],[-113.81868,45.56342],[-113.81976,45.5645],[-113.8208,45.56535],[-113.82142,45.56597],[-113.82057,45.56609],[-113.81984,45.56636],[-113.81906,45.56689],[-113.81705,45.56784],[-113.81675,45.56865],[-113.81583,45.56928],[-113.81503,45.56964],[-113.81148,45.57438],[-113.81042,45.57494],[-113.80982,45.57623],[-113.8084,45.57659],[-113.80781,45.57696],[-113.80693,45.57817],[-113.80581,45.57834],[-113.80521,45.57853],[-113.80473,45.57914],[-113.80404,45.5796],[-113.80226,45.58029],[-113.79987,45.581],[-113.79885,45.58144],[-113.7977,45.58163],[-113.79678,45.58153],[-113.79668,45.58164],[-113.79747,45.58261],[-113.79813,45.58364],[-113.79865,45.58523],[-113.79821,45.58666],[-113.80295,45.59157],[-113.80435,45.59386],[-113.80537,45.596],[-113.80596,45.59982],[-113.80668,45.60211],[-113.80853,45.60404],[-113.81051,45.60555],[-113.81336,45.60675],[-113.81836,45.60795],[-113.82069,45.61003],[-113.82305,45.61247],[-113.82582,45.61319],[-113.82893,45.6126],[-113.83123,45.61138],[-113.83354,45.61029],[-113.83487,45.61008],[-113.83873,45.61068],[-113.84109,45.61176],[-113.84276,45.61235],[-113.84344,45.61282],[-113.84496,45.6145],[-113.84687,45.61627],[-113.84811,45.61804],[-113.84855,45.62005],[-113.85007,45.62025],[-113.85214,45.62085],[-113.85379,45.62163],[-113.8542,45.62219],[-113.85456,45.62221],[-113.85632,45.62189],[-113.85727,45.62154],[-113.85847,45.62159],[-113.86012,45.62256],[-113.86137,45.62364],[-113.86217,45.6238],[-113.86359,45.62301],[-113.86527,45.6223],[-113.87,45.62223],[-113.87355,45.62011],[-113.8754,45.62001],[-113.87835,45.61859],[-113.87916,45.61825],[-113.88289,45.61873],[-113.88358,45.61837],[-113.88428,45.6177],[-113.88505,45.61722],[-113.88602,45.61698],[-113.887,45.61709],[-113.88872,45.61743],[-113.89172,45.61896],[-113.89291,45.6203],[-113.89333,45.62045],[-113.89718,45.62158],[-113.89777,45.62187],[-113.89869,45.62183],[-113.90056,45.62202],[-113.902,45.62162],[-113.90344,45.62157],[-113.90476,45.62196],[-113.90519,45.62262],[-113.90458,45.62424],[-113.90466,45.62454],[-113.90174,45.62725],[-113.89997,45.62836],[-113.89949,45.62857],[-113.9006,45.62925],[-113.90136,45.63006],[-113.9015,45.63065],[-113.90143,45.63179],[-113.90093,45.63238],[-113.90102,45.63262],[-113.90174,45.63336],[-113.90203,45.63428],[-113.90206,45.63526],[-113.90255,45.63697],[-113.90221,45.63761],[-113.90097,45.63895],[-113.89975,45.63973],[-113.89887,45.64052],[-113.89698,45.64122],[-113.89566,45.64219],[-113.89517,45.64313],[-113.89527,45.64419],[-113.89687,45.64606],[-113.89753,45.64661],[-113.89911,45.6472],[-113.90043,45.64756],[-113.90109,45.6479],[-113.90174,45.64968],[-113.90248,45.65042],[-113.9034,45.65111],[-113.90481,45.65158],[-113.90737,45.65308],[-113.90788,45.65307],[-113.90992,45.65295],[-113.91159,45.65322],[-113.91216,45.65372],[-113.91291,45.65379],[-113.91373,45.65499],[-113.91426,45.65656],[-113.91502,45.65683],[-113.916,45.65691],[-113.91698,45.65728],[-113.91789,45.65789],[-113.91947,45.65781],[-113.91984,45.65821],[-113.91973,45.65877],[-113.92099,45.66077],[-113.92071,45.66241],[-113.92077,45.66357],[-113.92046,45.66409],[-113.92263,45.66511],[-113.92324,45.66546],[-113.92355,45.66671],[-113.92351,45.66748],[-113.92406,45.66779],[-113.92495,45.66809],[-113.92561,45.66815],[-113.92823,45.66912],[-113.92892,45.67031],[-113.92918,45.67119],[-113.93038,45.67189],[-113.93115,45.67199],[-113.9315,45.67297],[-113.9306,45.67412],[-113.93039,45.67516],[-113.9313,45.67689],[-113.93117,45.67755],[-113.93084,45.6782],[-113.93094,45.67838],[-113.93281,45.67934],[-113.93425,45.6822],[-113.93396,45.68498],[-113.93301,45.68632],[-113.93271,45.68713],[-113.93313,45.68824],[-113.93403,45.68859],[-113.93512,45.68881],[-113.93553,45.68921],[-113.93538,45.68946],[-113.93446,45.68973],[-113.93412,45.69028],[-113.93387,45.69168],[-113.93392,45.69304],[-113.93501,45.69432],[-113.93639,45.69517],[-113.93798,45.69578],[-113.93887,45.69568],[-113.94014,45.69546],[-113.94497,45.69373],[-113.94699,45.6937],[-113.94854,45.69342],[-113.95105,45.6922],[-113.95202,45.69142],[-113.95403,45.69078],[-113.95647,45.6902],[-113.95807,45.69009],[-113.95946,45.69037],[-113.96115,45.68973],[-113.96367,45.68982],[-113.96473,45.69006],[-113.96564,45.6906],[-113.96656,45.69093],[-113.96735,45.69101],[-113.96798,45.69129],[-113.96933,45.69311],[-113.96917,45.69395],[-113.96873,45.69479],[-113.96885,45.69524],[-113.96965,45.69678],[-113.96961,45.69716],[-113.97069,45.69883],[-113.97159,45.70069],[-113.97126,45.70218],[-113.97093,45.70235],[-113.97066,45.70277],[-113.97087,45.70294],[-113.97194,45.70248],[-113.97357,45.70278],[-113.97518,45.70281],[-113.97567,45.70294],[-113.97601,45.70276],[-113.97759,45.70274],[-113.97899,45.7026],[-113.97975,45.70238],[-113.98059,45.70247],[-113.98269,45.70352],[-113.98513,45.70404],[-113.98668,45.70458],[-113.98715,45.70499],[-113.9878,45.70529],[-113.98785,45.70565],[-113.98814,45.70588],[-113.9886,45.70588],[-113.98927,45.70541],[-113.99114,45.70486],[-113.99143,45.70425],[-113.9922,45.7039],[-113.9928,45.70382],[-113.99356,45.70345],[-113.99386,45.70269],[-113.99335,45.70165],[-113.99322,45.70127],[-113.99352,45.70052],[-113.99442,45.69965],[-113.99553,45.69938],[-113.9958,45.69921],[-113.99581,45.6987],[-113.99659,45.6978],[-113.99656,45.69764],[-113.9962,45.69748],[-113.99609,45.69708],[-113.99656,45.6969],[-113.99728,45.69669],[-113.99889,45.69654],[-114.00018,45.6966],[-114.001,45.69636],[-114.00199,45.69651],[-114.00341,45.6952],[-114.00505,45.69458],[-114.00747,45.69411],[-114.00884,45.69418],[-114.01012,45.69435],[-114.01226,45.69444],[-114.01396,45.69542],[-114.01558,45.69613],[-114.01667,45.69503],[-114.01815,45.69395],[-114.01934,45.69294],[-114.01921,45.69223],[-114.01834,45.69068],[-114.01714,45.68918],[-114.0167,45.68748],[-114.01566,45.68529],[-114.01484,45.68441],[-114.01466,45.68404],[-114.01502,45.68368],[-114.01951,45.68196],[-114.02057,45.6812],[-114.0224,45.67975],[-114.02452,45.67759],[-114.02593,45.67654],[-114.02824,45.67538],[-114.02734,45.67513],[-114.02592,45.67405],[-114.02507,45.67306],[-114.02464,45.67185],[-114.02366,45.6706],[-114.02183,45.6707],[-114.02079,45.67056],[-114.02009,45.67037],[-114.01715,45.66609],[-114.01626,45.66447],[-114.01607,45.66371],[-114.01604,45.66019],[-114.01381,45.65825],[-114.01487,45.65664],[-114.015,45.65397],[-114.01646,45.65241],[-114.01669,45.65177],[-114.01756,45.65064],[-114.01872,45.64861],[-114.01988,45.64862],[-114.02079,45.64842],[-114.02191,45.64801],[-114.02347,45.64826],[-114.02556,45.64825],[-114.02752,45.64809],[-114.03227,45.64892],[-114.03344,45.64865],[-114.03499,45.64793],[-114.03608,45.64712],[-114.03757,45.64496],[-114.03878,45.6444],[-114.03986,45.64366],[-114.04086,45.64264],[-114.04243,45.6417],[-114.04369,45.64034],[-114.04459,45.63914],[-114.04505,45.6376],[-114.04555,45.6367],[-114.04749,45.63568],[-114.05094,45.63413],[-114.05297,45.63272],[-114.05775,45.63198],[-114.05923,45.6315],[-114.0608,45.63084],[-114.06269,45.63026],[-114.06461,45.6293],[-114.06643,45.62849],[-114.06762,45.62771],[-114.06829,45.62657],[-114.06964,45.62492],[-114.07279,45.62132],[-114.0723,45.61853],[-114.07304,45.6174],[-114.0742,45.61502],[-114.07688,45.61336],[-114.07859,45.61268],[-114.0799,45.61206],[-114.08088,45.61196],[-114.08179,45.61138],[-114.08236,45.60975],[-114.08252,45.60791],[-114.08268,45.60706],[-114.0826,45.60542],[-114.08313,45.60401],[-114.08308,45.60066],[-114.08317,45.59977],[-114.08307,45.59849],[-114.08212,45.59693],[-114.08557,45.5928],[-114.08596,45.59256],[-114.08617,45.59185],[-114.08659,45.59118],[-114.08813,45.59099],[-114.08916,45.59104],[-114.08988,45.59127],[-114.09299,45.59016],[-114.09434,45.58935],[-114.09546,45.58812],[-114.09776,45.58699],[-114.10028,45.58635],[-114.10209,45.58612],[-114.10507,45.58546],[-114.10673,45.58532],[-114.10733,45.58537],[-114.10874,45.58584],[-114.11151,45.58564],[-114.11814,45.58444],[-114.12018,45.58444],[-114.12084,45.58488],[-114.12234,45.58426],[-114.12531,45.58118],[-114.12591,45.58033],[-114.12629,45.57915],[-114.12914,45.57743],[-114.13043,45.57602],[-114.13149,45.57441],[-114.13237,45.57255],[-114.13099,45.57125],[-114.12944,45.57019],[-114.12862,45.56903],[-114.129,45.56768],[-114.12909,45.56553],[-114.13064,45.56429],[-114.13275,45.56288],[-114.13404,45.5608],[-114.13471,45.55913],[-114.1352,45.55747],[-114.14343,45.55749],[-114.14412,45.55791],[-114.14717,45.55821],[-114.15031,45.55804],[-114.15179,45.55548],[-114.15266,45.55451],[-114.15314,45.55367],[-114.15483,45.55293],[-114.1599,45.55318],[-114.16319,45.55281],[-114.16786,45.55162],[-114.16848,45.55113],[-114.17107,45.55079],[-114.17344,45.55045],[-114.17557,45.5506],[-114.17702,45.55096],[-114.17862,45.55083],[-114.18,45.55144],[-114.18077,45.5503],[-114.18478,45.5473],[-114.18647,45.54555],[-114.18706,45.54376],[-114.18787,45.54214],[-114.18891,45.54122],[-114.18939,45.54141],[-114.19,45.54091],[-114.1906,45.5396],[-114.19049,45.53878],[-114.19161,45.53776],[-114.19274,45.53659],[-114.19851,45.53626],[-114.20076,45.53644],[-114.20175,45.53566],[-114.20368,45.53554],[-114.20604,45.53666],[-114.20714,45.53813],[-114.20776,45.53931],[-114.20927,45.53973],[-114.21159,45.53953],[-114.2126,45.53998],[-114.21636,45.54127],[-114.21796,45.54196],[-114.22026,45.54229],[-114.22177,45.54289],[-114.2231,45.54391],[-114.22467,45.54456],[-114.22662,45.54581],[-114.22783,45.5464],[-114.23092,45.54662],[-114.23448,45.54653],[-114.23705,45.54666],[-114.2409,45.5465],[-114.2426,45.54591],[-114.24439,45.54579],[-114.24625,45.5454],[-114.24786,45.54547],[-114.24813,45.54591],[-114.24849,45.54546],[-114.24874,45.5447],[-114.24927,45.54369],[-114.24985,45.54295],[-114.25008,45.54198],[-114.25,45.54071],[-114.25036,45.53986],[-114.25089,45.53922],[-114.2516,45.53845],[-114.25183,45.53779],[-114.25154,45.53685],[-114.25092,45.5366],[-114.25018,45.53617],[-114.24895,45.53483],[-114.24819,45.53321],[-114.2483,45.53175],[-114.24918,45.53035],[-114.24914,45.52879],[-114.24819,45.5271],[-114.24753,45.52571],[-114.24783,45.52429],[-114.24857,45.52383],[-114.24899,45.52309],[-114.24897,45.52064],[-114.24977,45.51933],[-114.25092,45.51883],[-114.25181,45.51765],[-114.25201,45.5167],[-114.25307,45.51577],[-114.25423,45.5149],[-114.25525,45.51346],[-114.25798,45.51173],[-114.25843,45.51056],[-114.25852,45.50927],[-114.25924,45.50812],[-114.25939,45.50545],[-114.2604,45.50349],[-114.26018,45.50207],[-114.2603,45.49993],[-114.26071,45.49992],[-114.26088,45.49811],[-114.2617,45.4958],[-114.26428,45.49303],[-114.26682,45.49156],[-114.2713,45.49124],[-114.27146,45.48779],[-114.2707,45.48608],[-114.27028,45.48554],[-114.27065,45.48476],[-114.2712,45.48434],[-114.27282,45.48452],[-114.27409,45.48413],[-114.27564,45.48331],[-114.27642,45.48234],[-114.27745,45.48161],[-114.27927,45.48062],[-114.28126,45.48035],[-114.28308,45.48063],[-114.28568,45.48028],[-114.28768,45.47932],[-114.28945,45.47989],[-114.29371,45.48015],[-114.29719,45.47849],[-114.29999,45.47671],[-114.30057,45.47568],[-114.30091,45.47421],[-114.30133,45.47339],[-114.30232,45.4723],[-114.30337,45.47163],[-114.30516,45.47127],[-114.30952,45.46941],[-114.31073,45.46968],[-114.31349,45.46969],[-114.31444,45.46959],[-114.31583,45.46863],[-114.31738,45.46664],[-114.31833,45.46598],[-114.3206,45.466],[-114.32218,45.46621],[-114.32372,45.46607],[-114.32513,45.46564],[-114.32802,45.46371],[-114.33014,45.46165],[-114.3309,45.4603],[-114.33311,45.45925],[-114.3363,45.46012],[-114.33704,45.46082],[-114.3376,45.46106],[-114.33867,45.46052],[-114.33973,45.45979],[-114.34104,45.45976],[-114.34174,45.45991],[-114.34229,45.45973],[-114.34492,45.45985],[-114.34727,45.46226],[-114.34962,45.46478],[-114.35063,45.46628],[-114.35092,45.46944],[-114.35113,45.47043],[-114.35195,45.47101],[-114.35295,45.47136],[-114.35527,45.47143],[-114.35811,45.47205],[-114.35925,45.47259],[-114.36064,45.47403],[-114.36106,45.47501],[-114.36105,45.476],[-114.36061,45.47705],[-114.36041,45.47797],[-114.36062,45.47932],[-114.36112,45.4802],[-114.36306,45.48234],[-114.36372,45.48264],[-114.36524,45.48466],[-114.36549,45.48564],[-114.36532,45.48809],[-114.36559,45.49029],[-114.36594,45.49095],[-114.36673,45.49172],[-114.36856,45.49273],[-114.36937,45.49298],[-114.37204,45.49324],[-114.37336,45.49328],[-114.3745,45.49351],[-114.37533,45.49402],[-114.37599,45.49497],[-114.3776,45.49548],[-114.37899,45.49706],[-114.38188,45.49795],[-114.38514,45.49997],[-114.38862,45.5029],[-114.39246,45.50256],[-114.39294,45.50309],[-114.39572,45.50379],[-114.39628,45.5038],[-114.39872,45.50467],[-114.40172,45.50537],[-114.40348,45.50631],[-114.40661,45.50648],[-114.40833,45.50758],[-114.41396,45.50936],[-114.41579,45.50977],[-114.41811,45.50989],[-114.41931,45.5094],[-114.42385,45.50952],[-114.42656,45.51163],[-114.42684,45.51368],[-114.42669,45.51434],[-114.42901,45.51655],[-114.42944,45.51798],[-114.42875,45.52007],[-114.42898,45.52149],[-114.42989,45.52251],[-114.43063,45.5236],[-114.4309,45.52625],[-114.43049,45.52752],[-114.42988,45.52849],[-114.43014,45.52928],[-114.43212,45.52985],[-114.43462,45.53023],[-114.43635,45.53081],[-114.4375,45.5309],[-114.43917,45.53275],[-114.4392,45.53399],[-114.4388,45.53521],[-114.439,45.53612],[-114.44043,45.53702],[-114.44383,45.53883],[-114.4466,45.53908],[-114.44925,45.53961],[-114.45034,45.54211],[-114.45091,45.5425],[-114.45248,45.54278],[-114.45465,45.5436],[-114.45677,45.54398],[-114.45876,45.54364],[-114.46049,45.54342],[-114.46259,45.54394],[-114.46394,45.54541],[-114.46434,45.5463],[-114.46411,45.54736],[-114.4618,45.54843],[-114.46139,45.55038],[-114.46201,45.55197],[-114.46283,45.55304],[-114.46176,45.55366],[-114.46155,45.55464],[-114.45901,45.5586],[-114.45897,45.55919],[-114.45601,45.56052],[-114.45615,45.56215],[-114.45818,45.56165],[-114.4609,45.56121],[-114.46326,45.56099],[-114.46505,45.56049],[-114.46581,45.56063],[-114.47178,45.56519],[-114.47253,45.56474],[-114.4738,45.56328],[-114.4751,45.56283],[-114.47613,45.5628],[-114.47821,45.56184],[-114.47912,45.56183],[-114.48002,45.56169],[-114.48055,45.56101],[-114.4831,45.56088],[-114.48495,45.56166],[-114.49138,45.55715],[-114.49722,45.55537],[-114.4982,45.55546],[-114.49893,45.55639],[-114.50021,45.55641],[-114.50166,45.5574],[-114.5023,45.5585],[-114.5043,45.55912],[-114.50621,45.55918],[-114.51017,45.56204],[-114.51413,45.56471],[-114.51574,45.567],[-114.51761,45.56809],[-114.52153,45.56849],[-114.52606,45.57081],[-114.52881,45.57004],[-114.53018,45.56801],[-114.53288,45.56594],[-114.53531,45.56499],[-114.53833,45.56416],[-114.54072,45.564],[-114.5426,45.56347],[-114.54489,45.56236],[-114.54681,45.56176],[-114.54953,45.56056],[-114.55129,45.55907],[-114.55249,45.55719],[-114.55384,45.55699],[-114.55559,45.55751],[-114.55743,45.55791],[-114.55917,45.55895],[-114.56073,45.55933],[-114.56485,45.55772],[-114.56532,45.56007],[-114.56544,45.56248],[-114.56467,45.56362],[-114.56329,45.56459],[-114.56169,45.56513],[-114.56038,45.56523],[-114.55898,45.56568],[-114.55785,45.56732],[-114.55728,45.56856],[-114.55697,45.56967],[-114.55734,45.57053],[-114.55745,45.57138],[-114.5567,45.57299],[-114.5551,45.57418],[-114.55338,45.57613],[-114.55304,45.57688],[-114.55363,45.57944],[-114.55457,45.5815],[-114.55534,45.58229],[-114.55767,45.58359],[-114.55854,45.58428],[-114.55827,45.58511],[-114.55706,45.58588],[-114.55636,45.58712],[-114.55463,45.58808],[-114.55368,45.58885],[-114.55403,45.59128],[-114.55306,45.59272],[-114.55127,45.59388],[-114.55012,45.59482],[-114.54903,45.59605],[-114.54824,45.59827],[-114.54737,45.59965],[-114.54613,45.60048],[-114.54437,45.60142],[-114.54258,45.60184],[-114.54087,45.60366],[-114.53942,45.60492],[-114.53856,45.60583],[-114.53806,45.60682],[-114.54038,45.6092],[-114.5421,45.61196],[-114.5439,45.61526],[-114.54485,45.61671],[-114.54731,45.6175],[-114.55002,45.6183],[-114.55192,45.61864],[-114.55376,45.61916],[-114.55488,45.62046],[-114.5549,45.6217],[-114.55579,45.62294],[-114.55795,45.62481],[-114.55827,45.62542],[-114.55815,45.62669],[-114.55871,45.62779],[-114.56125,45.63019],[-114.56337,45.63162],[-114.56385,45.63392],[-114.56373,45.63748],[-114.56259,45.63872],[-114.5611,45.6399],[-114.55787,45.64097],[-114.55569,45.64118],[-114.55384,45.64179],[-114.55077,45.64265],[-114.54718,45.64262],[-114.54556,45.64297],[-114.54363,45.64253],[-114.54239,45.64191],[-114.54179,45.64127],[-114.54166,45.64243],[-114.54061,45.64499],[-114.53966,45.64634],[-114.53999,45.64749],[-114.54099,45.64786],[-114.54123,45.64905],[-114.54058,45.65007],[-114.53872,45.65062],[-114.53712,45.65039],[-114.5358,45.65066],[-114.53407,45.65109],[-114.53252,45.65137],[-114.5296,45.65231],[-114.52817,45.65216],[-114.52697,45.65101],[-114.52461,45.6499],[-114.52226,45.64933],[-114.51891,45.65126],[-114.5154,45.65289],[-114.5124,45.65594],[-114.50978,45.65644],[-114.50776,45.65769],[-114.50763,45.65896],[-114.50675,45.66049],[-114.50613,45.66203],[-114.50346,45.66468],[-114.50089,45.66679],[-114.50049,45.66797],[-114.4999,45.6686],[-114.49966,45.6691],[-114.50024,45.67034],[-114.50028,45.67167],[-114.50054,45.67188],[-114.50093,45.67187],[-114.50123,45.67248],[-114.50186,45.6731],[-114.50221,45.67438],[-114.50217,45.67526],[-114.50171,45.67693],[-114.50147,45.67737],[-114.50094,45.67732],[-114.5001,45.67806],[-114.49925,45.67853],[-114.49905,45.67928],[-114.49936,45.68005],[-114.49991,45.68061],[-114.5002,45.68134],[-114.50036,45.68206],[-114.50078,45.68244],[-114.50096,45.68225],[-114.50154,45.68239],[-114.50375,45.68237],[-114.50533,45.68254],[-114.50729,45.68341],[-114.5089,45.68347],[-114.51051,45.68324],[-114.51385,45.68404],[-114.51523,45.68494],[-114.51413,45.68558],[-114.51252,45.68634],[-114.51138,45.68767],[-114.50981,45.68881],[-114.50585,45.69078],[-114.50379,45.69203],[-114.5013,45.69364],[-114.50133,45.6952],[-114.50089,45.69564],[-114.5007,45.69613],[-114.49889,45.69753],[-114.49794,45.69846],[-114.49703,45.69899],[-114.49638,45.6997],[-114.49644,45.70064],[-114.49564,45.70212],[-114.49541,45.70322],[-114.49599,45.70435],[-114.4961,45.70554],[-114.49639,45.70697],[-114.49722,45.70816],[-114.49753,45.70945],[-114.49758,45.71074],[-114.49823,45.71176],[-114.49931,45.71295],[-114.50027,45.71466],[-114.50097,45.7147],[-114.50288,45.7169],[-114.50325,45.71809],[-114.50313,45.71867],[-114.50416,45.72075],[-114.50425,45.72175],[-114.50701,45.7236],[-114.5084,45.72399],[-114.51186,45.72529],[-114.51411,45.72664],[-114.51474,45.72716],[-114.51543,45.72723],[-114.51817,45.72673],[-114.52049,45.72652],[-114.52274,45.72712],[-114.52447,45.72724],[-114.52619,45.72754],[-114.52709,45.72838],[-114.52863,45.73167],[-114.52956,45.73263],[-114.53046,45.73308],[-114.53264,45.73557],[-114.53384,45.73627],[-114.5347,45.73823],[-114.53581,45.73916],[-114.54316,45.74149],[-114.54721,45.74319],[-114.54785,45.74336],[-114.54792,45.74357],[-114.54726,45.74498],[-114.54599,45.74614],[-114.54583,45.74714],[-114.54634,45.74826],[-114.54643,45.74923],[-114.54617,45.75021],[-114.54738,45.75157],[-114.54721,45.75239],[-114.54598,45.75392],[-114.5458,45.75443],[-114.54613,45.75631],[-114.54441,45.75738],[-114.54406,45.7581],[-114.54469,45.7593],[-114.54575,45.76051],[-114.54767,45.76162],[-114.54899,45.76232],[-114.55031,45.76333],[-114.55181,45.76405],[-114.55354,45.76373],[-114.55754,45.76415],[-114.55851,45.76495],[-114.55947,45.76604],[-114.55997,45.76711],[-114.56107,45.76865],[-114.56249,45.76985],[-114.56365,45.77039],[-114.56517,45.77166],[-114.56614,45.77284],[-114.56618,45.77395],[-114.56501,45.77506],[-114.56383,45.77572],[-114.56316,45.77658],[-114.56343,45.77783],[-114.56256,45.7798],[-114.56195,45.7804],[-114.56027,45.78117],[-114.55902,45.78237],[-114.55711,45.78331],[-114.55623,45.78431],[-114.55542,45.78631],[-114.55569,45.7866],[-114.55452,45.78687],[-114.55233,45.78773],[-114.55074,45.78806],[-114.54923,45.78844],[-114.54705,45.78979],[-114.54575,45.79004],[-114.54471,45.79005],[-114.54388,45.79028],[-114.54478,45.79159],[-114.54526,45.79464],[-114.54496,45.79631],[-114.54509,45.79786],[-114.54407,45.79873],[-114.54095,45.79976],[-114.53901,45.80175],[-114.5375,45.80284],[-114.53749,45.80338],[-114.53775,45.80427],[-114.53748,45.80479],[-114.5365,45.80552],[-114.53244,45.80823],[-114.53091,45.80957],[-114.53063,45.81075],[-114.53069,45.81188],[-114.53013,45.81348],[-114.53055,45.81373],[-114.53141,45.81399],[-114.53217,45.81479],[-114.53259,45.81577],[-114.53164,45.8172],[-114.53087,45.81898],[-114.528,45.81961],[-114.52739,45.82005],[-114.52643,45.82026],[-114.52512,45.82198],[-114.52294,45.82273],[-114.52152,45.82414],[-114.5192,45.82498],[-114.51607,45.82597],[-114.51459,45.82692],[-114.51403,45.82754],[-114.51355,45.82834],[-114.5129,45.82888],[-114.51148,45.82953],[-114.51271,45.82957],[-114.51362,45.83058],[-114.51504,45.83093],[-114.51621,45.83173],[-114.51713,45.8332],[-114.5172,45.83606],[-114.5165,45.83746],[-114.5159,45.83833],[-114.51459,45.84079],[-114.51199,45.84176],[-114.5112,45.84326],[-114.51016,45.84477],[-114.50927,45.84562],[-114.50834,45.84578],[-114.50712,45.84568],[-114.5059,45.84583],[-114.50451,45.84564],[-114.50329,45.84612],[-114.50284,45.84751],[-114.50222,45.84818],[-114.5015,45.84858],[-114.50014,45.85],[-114.49885,45.85068],[-114.49534,45.84987],[-114.49462,45.84977],[-114.494,45.84954],[-114.49359,45.84982],[-114.49309,45.84997],[-114.49266,45.84982],[-114.4921,45.84978],[-114.49163,45.84995],[-114.49077,45.84986],[-114.48849,45.85077],[-114.4872,45.85164],[-114.48466,45.85145],[-114.48262,45.85063],[-114.48135,45.84904],[-114.48008,45.84828],[-114.47554,45.84638],[-114.47184,45.84754],[-114.47089,45.84929],[-114.47071,45.85047],[-114.4702,45.85134],[-114.46923,45.85163],[-114.46836,45.85174],[-114.46772,45.85189],[-114.46631,45.85193],[-114.46524,45.85203],[-114.46337,45.85327],[-114.46227,45.85451],[-114.46137,45.8551],[-114.45855,45.85468],[-114.45684,45.85462],[-114.45509,45.85517],[-114.45342,45.85589],[-114.45222,45.85661],[-114.45119,45.85751],[-114.44862,45.85895],[-114.448,45.86028],[-114.44714,45.86101],[-114.44593,45.86156],[-114.44384,45.86182],[-114.43995,45.86197],[-114.43833,45.86238],[-114.43766,45.86268],[-114.43717,45.86183],[-114.43635,45.86117],[-114.43485,45.86103],[-114.43319,45.86053],[-114.43205,45.8598],[-114.43093,45.85943],[-114.43023,45.85954],[-114.42808,45.85799],[-114.42662,45.85779],[-114.42611,45.85776],[-114.42518,45.85716],[-114.42442,45.85654],[-114.42396,45.85592],[-114.42299,45.85537],[-114.42168,45.85518],[-114.42047,45.85515],[-114.41977,45.85471],[-114.41827,45.85352],[-114.41596,45.85285],[-114.41459,45.85264],[-114.41377,45.85262],[-114.4132,45.85246],[-114.41291,45.85245],[-114.41284,45.8521],[-114.41263,45.85217],[-114.41242,45.85209],[-114.41212,45.85189],[-114.41085,45.85185],[-114.40966,45.85154],[-114.40951,45.85163],[-114.40962,45.85187],[-114.40912,45.85282],[-114.40848,45.85463],[-114.40843,45.85592],[-114.40807,45.85639],[-114.40693,45.85959],[-114.40608,45.86052],[-114.40609,45.86094],[-114.40667,45.86231],[-114.40657,45.86352],[-114.40679,45.86397],[-114.40589,45.86498],[-114.40501,45.86612],[-114.40495,45.86688],[-114.40584,45.86816],[-114.4063,45.86915],[-114.40572,45.87046],[-114.4052,45.87102],[-114.40414,45.87188],[-114.4032,45.87203],[-114.40214,45.8718],[-114.40112,45.87133],[-114.39934,45.87092],[-114.39764,45.87099],[-114.39654,45.87112],[-114.39558,45.87225],[-114.39558,45.87372],[-114.39523,45.87429],[-114.39376,45.87489],[-114.39397,45.87535],[-114.39392,45.87599],[-114.39261,45.87705],[-114.3928,45.8777],[-114.39281,45.87853],[-114.39258,45.879],[-114.38971,45.88017],[-114.38904,45.8814],[-114.38838,45.88227],[-114.38828,45.8829],[-114.38767,45.88455],[-114.38757,45.88621],[-114.38719,45.88737],[-114.38716,45.88919],[-114.3882,45.89175],[-114.38874,45.89215],[-114.38987,45.89221],[-114.39099,45.89198],[-114.39273,45.89216],[-114.39349,45.893],[-114.39373,45.89402],[-114.39335,45.89506],[-114.39366,45.89574],[-114.39435,45.8967],[-114.3947,45.89767],[-114.39462,45.89882],[-114.39489,45.89989],[-114.39498,45.90144],[-114.39685,45.90134],[-114.39892,45.9022],[-114.40104,45.90216],[-114.40426,45.90345],[-114.40486,45.90443],[-114.40666,45.90534],[-114.40881,45.90734],[-114.40959,45.90855],[-114.41292,45.91127],[-114.4135,45.91185],[-114.41379,45.91296],[-114.4154,45.91639],[-114.41573,45.91749],[-114.4163,45.9185],[-114.41486,45.92169],[-114.41513,45.92244],[-114.41725,45.92426],[-114.41851,45.92585],[-114.42069,45.92689],[-114.42107,45.92728],[-114.42246,45.92773],[-114.42317,45.92866],[-114.4246,45.93003],[-114.4256,45.93141],[-114.42662,45.93238],[-114.42936,45.9339],[-114.43022,45.93488],[-114.43124,45.93569],[-114.43137,45.93694],[-114.43133,45.93801],[-114.43004,45.93838],[-114.4296,45.9389],[-114.42711,45.93984],[-114.42548,45.94096],[-114.42475,45.94196],[-114.42471,45.94367],[-114.42404,45.94404],[-114.42217,45.94444],[-114.4208,45.94465],[-114.42072,45.94621],[-114.41909,45.94703],[-114.4178,45.94761],[-114.41591,45.94791],[-114.41445,45.94841],[-114.41347,45.94947],[-114.41291,45.95125],[-114.41128,45.95295],[-114.41035,45.95324],[-114.4092,45.95314],[-114.4066,45.95432],[-114.40555,45.95532],[-114.40342,45.95665],[-114.40232,45.95775],[-114.40212,45.95949],[-114.40234,45.96045],[-114.40228,45.96151],[-114.40158,45.96317],[-114.40133,45.96345],[-114.40173,45.9636],[-114.4041,45.96637],[-114.40369,45.96703],[-114.40412,45.96721],[-114.40464,45.96768],[-114.40473,45.9685],[-114.40594,45.9694],[-114.4068,45.97001],[-114.408,45.97051],[-114.40843,45.97102],[-114.4093,45.97124],[-114.41119,45.97354],[-114.4114,45.97444],[-114.41133,45.97516],[-114.41161,45.97743],[-114.41204,45.97804],[-114.41392,45.97919],[-114.41587,45.97987],[-114.4174,45.98055],[-114.41948,45.98105],[-114.42164,45.98137],[-114.4241,45.98431],[-114.42706,45.98545],[-114.42831,45.98615],[-114.42939,45.98661],[-114.43172,45.98665],[-114.43284,45.98676],[-114.4341,45.98738],[-114.43552,45.9877],[-114.43676,45.9874],[-114.43867,45.98781],[-114.4398,45.98781],[-114.44227,45.98726],[-114.44822,45.98734],[-114.45005,45.98957],[-114.45277,45.99022],[-114.45531,45.99296],[-114.45541,45.99367],[-114.45645,45.99537],[-114.45714,45.99724],[-114.45785,45.99754],[-114.45959,45.9973],[-114.46401,45.99735],[-114.46495,45.99684],[-114.46529,45.99609],[-114.4664,45.99558],[-114.46794,45.99523],[-114.47115,45.99321],[-114.47238,45.99268],[-114.47534,45.99182],[-114.4768,45.99218],[-114.47839,45.99242],[-114.48033,45.99284],[-114.48068,45.99391],[-114.48264,45.99493],[-114.48335,45.99559],[-114.48452,45.99595],[-114.48491,45.99642],[-114.48581,45.99851],[-114.48685,45.99983],[-114.48655,46.00045],[-114.48771,46.00156],[-114.48771,46.00281],[-114.48797,46.00361],[-114.48772,46.00436],[-114.48497,46.0081],[-114.48421,46.00821],[-114.4832,46.00802],[-114.48068,46.00896],[-114.48024,46.00952],[-114.47955,46.0098],[-114.47825,46.0105],[-114.47644,46.01107],[-114.47502,46.01217],[-114.4736,46.01284],[-114.47308,46.01437],[-114.47345,46.015],[-114.47411,46.0164],[-114.4739,46.01706],[-114.47455,46.0185],[-114.4761,46.02098],[-114.47591,46.02187],[-114.47704,46.02423],[-114.47877,46.02658],[-114.47907,46.02733],[-114.4792,46.02785],[-114.48021,46.02977],[-114.48036,46.0305],[-114.48177,46.03027],[-114.48376,46.03027],[-114.48584,46.03004],[-114.48715,46.02932],[-114.488,46.02851],[-114.48926,46.02779],[-114.49112,46.02772],[-114.49213,46.02795],[-114.49274,46.02788],[-114.49379,46.02793],[-114.49443,46.02794],[-114.49515,46.02807],[-114.49606,46.02782],[-114.49759,46.02792],[-114.50255,46.02916],[-114.50463,46.02948],[-114.50603,46.03051],[-114.50727,46.03116],[-114.50766,46.03163],[-114.50564,46.0343],[-114.50646,46.03545],[-114.50655,46.03614],[-114.50638,46.03678],[-114.50676,46.03746],[-114.50674,46.03852],[-114.50647,46.03881],[-114.50507,46.03964],[-114.50433,46.04121],[-114.50351,46.04194],[-114.50222,46.0421],[-114.50084,46.04155],[-114.49796,46.04209],[-114.49742,46.04232],[-114.49722,46.04271],[-114.49777,46.04329],[-114.4978,46.04352],[-114.49757,46.04378],[-114.49631,46.04393],[-114.49608,46.04411],[-114.49663,46.04477],[-114.49513,46.04566],[-114.49465,46.04619],[-114.4947,46.04667],[-114.49433,46.0478],[-114.49367,46.04829],[-114.49361,46.04907],[-114.49295,46.04986],[-114.49289,46.05017],[-114.49344,46.05135],[-114.49365,46.05236],[-114.4919,46.05275],[-114.49053,46.05331],[-114.48916,46.05364],[-114.48343,46.05518],[-114.48139,46.05517],[-114.48011,46.05543],[-114.47875,46.05582],[-114.47721,46.05697],[-114.47556,46.05771],[-114.47477,46.05822],[-114.47425,46.05915],[-114.47417,46.06004],[-114.47396,46.06049],[-114.47332,46.06076],[-114.47093,46.06118],[-114.46871,46.06224],[-114.46762,46.06377],[-114.46768,46.06448],[-114.46679,46.06568],[-114.47011,46.06812],[-114.47218,46.06901],[-114.47215,46.07005],[-114.47194,46.0705],[-114.47212,46.07128],[-114.47196,46.07181],[-114.47132,46.07263],[-114.47078,46.07399],[-114.47089,46.07497],[-114.47223,46.07667],[-114.47072,46.07731],[-114.46984,46.07693],[-114.46901,46.0771],[-114.46784,46.07703],[-114.46627,46.07747],[-114.46478,46.07773],[-114.46291,46.07832],[-114.4619,46.07855],[-114.46247,46.0799],[-114.46224,46.08153],[-114.4621,46.08297],[-114.46134,46.08481],[-114.46032,46.08623],[-114.46016,46.0868],[-114.46016,46.08746],[-114.46076,46.09039],[-114.46041,46.09143],[-114.45972,46.09272],[-114.45972,46.09356],[-114.45946,46.09392],[-114.46017,46.09591],[-114.46011,46.09719],[-114.46116,46.09868],[-114.46366,46.10079],[-114.46479,46.1016],[-114.4654,46.10267],[-114.46704,46.10363],[-114.46715,46.10406],[-114.46678,46.10449],[-114.4687,46.1053],[-114.47066,46.10555],[-114.4711,46.10632],[-114.47221,46.10756],[-114.4729,46.10875],[-114.47291,46.10969],[-114.4743,46.11193],[-114.47432,46.1123],[-114.47446,46.11321],[-114.47988,46.11302],[-114.48123,46.11316],[-114.48275,46.11364],[-114.48408,46.11373],[-114.48604,46.11354],[-114.48757,46.11305],[-114.48887,46.1132],[-114.49,46.11366],[-114.49105,46.11432],[-114.49206,46.11544],[-114.49333,46.1162],[-114.495,46.11748],[-114.49703,46.11814],[-114.49769,46.11815],[-114.49848,46.11889],[-114.5009,46.11906],[-114.50144,46.11888],[-114.50262,46.11902],[-114.50379,46.11833],[-114.50494,46.11826],[-114.50569,46.11853],[-114.50796,46.11998],[-114.50867,46.12002],[-114.50971,46.12028],[-114.51049,46.12036],[-114.51164,46.12093],[-114.51247,46.12224],[-114.5143,46.12286],[-114.51537,46.12277],[-114.51688,46.12315],[-114.51809,46.12332],[-114.51981,46.12465],[-114.52071,46.1249],[-114.52127,46.12521],[-114.52126,46.1265],[-114.52091,46.12714],[-114.52022,46.12767],[-114.51987,46.12893],[-114.51922,46.13024],[-114.51857,46.13125],[-114.5181,46.13218],[-114.51827,46.13255],[-114.51784,46.1341],[-114.51805,46.1345],[-114.51749,46.13548],[-114.51762,46.13568],[-114.51837,46.13565],[-114.52006,46.13579],[-114.52132,46.13632],[-114.52163,46.13697],[-114.52144,46.13766],[-114.52304,46.13961],[-114.52396,46.14043],[-114.52475,46.14195],[-114.52721,46.14517],[-114.52713,46.14614],[-114.52623,46.14754],[-114.52439,46.14877],[-114.52371,46.14876],[-114.52292,46.14926],[-114.52228,46.15019],[-114.52148,46.15089],[-114.51991,46.15154],[-114.51925,46.15199],[-114.51685,46.15267],[-114.51553,46.15332],[-114.51456,46.15356],[-114.51416,46.1542],[-114.51534,46.15573],[-114.51543,46.15832],[-114.51521,46.15875],[-114.51486,46.15909],[-114.51468,46.15953],[-114.51454,46.16017],[-114.51462,46.16058],[-114.51504,46.16092],[-114.51529,46.16124],[-114.51549,46.16218],[-114.51521,46.16349],[-114.51534,46.16482],[-114.51574,46.16573],[-114.51555,46.16681],[-114.51476,46.1677],[-114.5143,46.16769],[-114.51359,46.16737],[-114.51182,46.16699],[-114.51044,46.16603],[-114.5095,46.16573],[-114.50781,46.1646],[-114.50621,46.16456],[-114.50178,46.16523],[-114.50098,46.16588],[-114.49893,46.16714],[-114.49682,46.16769],[-114.49456,46.16796],[-114.49325,46.16798],[-114.49172,46.16753],[-114.48933,46.16776],[-114.48888,46.16749],[-114.4884,46.16686],[-114.48713,46.16616],[-114.48534,46.16558],[-114.48473,46.16456],[-114.4837,46.1637],[-114.48224,46.16283],[-114.48155,46.16259],[-114.48098,46.16214],[-114.48017,46.16193],[-114.47945,46.16136],[-114.47826,46.16084],[-114.47697,46.16056],[-114.47551,46.16053],[-114.47457,46.16086],[-114.47113,46.16323],[-114.4704,46.16346],[-114.47,46.16386],[-114.46818,46.16544],[-114.46675,46.16538],[-114.46548,46.16547],[-114.46481,46.16575],[-114.46438,46.16556],[-114.4641,46.16593],[-114.46399,46.16666],[-114.46327,46.16756],[-114.46282,46.16805],[-114.46147,46.16836],[-114.45912,46.16941],[-114.45737,46.17028],[-114.45621,46.17031],[-114.45576,46.17014],[-114.45514,46.16973],[-114.4537,46.16917],[-114.45261,46.16856],[-114.45188,46.16865],[-114.45132,46.16851],[-114.44935,46.16861],[-114.44774,46.16832],[-114.4463,46.16785],[-114.44514,46.16787],[-114.44488,46.16853],[-114.44402,46.16919],[-114.44419,46.17051],[-114.44564,46.1731],[-114.44598,46.17379],[-114.44539,46.17605],[-114.44525,46.17728],[-114.44537,46.17773],[-114.44535,46.17923],[-114.44514,46.17965],[-114.44511,46.18006],[-114.44478,46.18118],[-114.44522,46.18361],[-114.44557,46.18396],[-114.44532,46.18448],[-114.44533,46.18493],[-114.44465,46.18703],[-114.44485,46.18912],[-114.44513,46.19055],[-114.44422,46.19172],[-114.4439,46.19247],[-114.44403,46.19429],[-114.44459,46.19599],[-114.44432,46.19739],[-114.44448,46.1979],[-114.44446,46.19916],[-114.4442,46.19971],[-114.44376,46.20031],[-114.44324,46.20146],[-114.44339,46.20221],[-114.44322,46.20302],[-114.44369,46.20361],[-114.4445,46.20414],[-114.44535,46.20527],[-114.44817,46.20781],[-114.44865,46.20868],[-114.44919,46.20923],[-114.44924,46.2101],[-114.45023,46.21083],[-114.45079,46.21169],[-114.45089,46.21263],[-114.45169,46.21386],[-114.45176,46.21497],[-114.45141,46.21547],[-114.45024,46.21581],[-114.44925,46.21632],[-114.44758,46.21828],[-114.44606,46.21923],[-114.44548,46.21985],[-114.44558,46.22065],[-114.44629,46.22189],[-114.44743,46.22479],[-114.44723,46.22596],[-114.44737,46.22706],[-114.44774,46.22768],[-114.44753,46.22811],[-114.44775,46.2315],[-114.44947,46.23534],[-114.44981,46.23717],[-114.45086,46.23816],[-114.45183,46.2398],[-114.45178,46.2413],[-114.45423,46.24138],[-114.45625,46.24298],[-114.4572,46.24333],[-114.45893,46.24434],[-114.46194,46.24522],[-114.4628,46.24581],[-114.46384,46.24622],[-114.46427,46.24614],[-114.46663,46.24716],[-114.46753,46.24777],[-114.46838,46.24909],[-114.46692,46.24993],[-114.46569,46.25131],[-114.46515,46.25234],[-114.46539,46.25311],[-114.46816,46.25664],[-114.46847,46.25763],[-114.46842,46.25835],[-114.4688,46.25925],[-114.46896,46.2607],[-114.47077,46.26444],[-114.47081,46.26553],[-114.47043,46.26663],[-114.47043,46.26737],[-114.46932,46.26902],[-114.46794,46.26977],[-114.46665,46.27225],[-114.46488,46.2731],[-114.4637,46.27317],[-114.46217,46.27306],[-114.46034,46.27249],[-114.45716,46.2718],[-114.45483,46.27105],[-114.45318,46.27091],[-114.44561,46.27245],[-114.44131,46.27378],[-114.4395,46.27462],[-114.43967,46.27505],[-114.43538,46.27658],[-114.43367,46.27814],[-114.43204,46.27931],[-114.42942,46.28191],[-114.42732,46.28356],[-114.42714,46.2842],[-114.42756,46.2852],[-114.42745,46.28606],[-114.42703,46.28673],[-114.42618,46.2873],[-114.42559,46.28788],[-114.42601,46.28878],[-114.42806,46.29081],[-114.42873,46.29244],[-114.42879,46.2935],[-114.43036,46.29811],[-114.43039,46.29881],[-114.42998,46.29929],[-114.43016,46.29959],[-114.43207,46.30131],[-114.43261,46.30291],[-114.4329,46.30469],[-114.43349,46.30552],[-114.43284,46.3062],[-114.43185,46.30699],[-114.43138,46.30793],[-114.43165,46.30935],[-114.43167,46.31077],[-114.42934,46.31406],[-114.4274,46.31592],[-114.42531,46.31969],[-114.425,46.3209],[-114.42348,46.32311],[-114.42279,46.32404],[-114.42201,46.32592],[-114.42158,46.32861],[-114.42199,46.33008],[-114.42146,46.33069],[-114.41881,46.3316],[-114.41711,46.33239],[-114.41588,46.33354],[-114.41493,46.33521],[-114.41371,46.33593],[-114.41392,46.3369],[-114.41387,46.33799],[-114.41446,46.33892],[-114.41431,46.34264],[-114.41331,46.34613],[-114.41356,46.34635],[-114.41347,46.34806],[-114.41295,46.35072],[-114.41199,46.35135],[-114.41209,46.35216],[-114.41149,46.35468],[-114.41176,46.35646],[-114.41214,46.35767],[-114.41194,46.35895],[-114.41143,46.35945],[-114.41067,46.36067],[-114.41008,46.36092],[-114.41114,46.3622],[-114.41107,46.36424],[-114.41014,46.36562],[-114.41159,46.36667],[-114.41265,46.36805],[-114.41595,46.37316],[-114.41647,46.37487],[-114.41802,46.377],[-114.4194,46.37923],[-114.41975,46.38002],[-114.41956,46.38082],[-114.41971,46.38168],[-114.42009,46.38239],[-114.42009,46.38298],[-114.42034,46.38387],[-114.42127,46.38423],[-114.42262,46.38655],[-114.42252,46.38708],[-114.42011,46.38895],[-114.41822,46.39089],[-114.41675,46.39177],[-114.41521,46.39371],[-114.40972,46.39659],[-114.40999,46.39899],[-114.40955,46.39993],[-114.40885,46.40052],[-114.40799,46.40093],[-114.40645,46.40114],[-114.40544,46.40148],[-114.40394,46.40152],[-114.40112,46.40153],[-114.40115,46.4021],[-114.40039,46.40242],[-114.39959,46.40308],[-114.39957,46.40391],[-114.39982,46.40437],[-114.39965,46.40483],[-114.39818,46.40546],[-114.39529,46.40777],[-114.39351,46.40902],[-114.39276,46.40946],[-114.38841,46.40984],[-114.3871,46.41004],[-114.38581,46.4107],[-114.38477,46.41174],[-114.38438,46.41448],[-114.38459,46.41687],[-114.38401,46.41815],[-114.38367,46.4199],[-114.38411,46.42312],[-114.38438,46.42606],[-114.38495,46.42741],[-114.3843,46.42987],[-114.38335,46.43113],[-114.38248,46.43292],[-114.38174,46.43367],[-114.37954,46.43502],[-114.37742,46.43551],[-114.37383,46.43588],[-114.37118,46.43606],[-114.36929,46.43637],[-114.36844,46.43682],[-114.36844,46.4378],[-114.36901,46.4385],[-114.37002,46.43884],[-114.3707,46.43953],[-114.3724,46.44282],[-114.37306,46.44325],[-114.37388,46.44329],[-114.37572,46.44286],[-114.37645,46.44299],[-114.37709,46.44325],[-114.37829,46.44437],[-114.38,46.44489],[-114.38137,46.44517],[-114.38313,46.44592],[-114.38405,46.44662],[-114.38438,46.44704],[-114.38454,46.44786],[-114.38168,46.45295],[-114.38127,46.45505],[-114.38112,46.45762],[-114.38062,46.45881],[-114.37927,46.46011],[-114.37982,46.46095],[-114.38166,46.46263],[-114.38234,46.46384],[-114.38259,46.46538],[-114.38301,46.46639],[-114.38983,46.4686],[-114.39058,46.46881],[-114.39254,46.46896],[-114.39447,46.46955],[-114.39508,46.47062],[-114.39545,46.47317],[-114.39625,46.47365],[-114.39706,46.47467],[-114.39845,46.47559],[-114.40001,46.47698],[-114.40072,46.47836],[-114.4012,46.48133],[-114.40142,46.48359],[-114.40126,46.48682],[-114.40067,46.48846],[-114.40229,46.49079],[-114.4031,46.49297],[-114.40333,46.49586],[-114.4031,46.49833],[-114.40261,46.5001],[-114.40143,46.50125],[-114.40016,46.5022],[-114.39855,46.50233],[-114.39637,46.50203],[-114.396,46.50215],[-114.39513,46.50328],[-114.39449,46.50358],[-114.39155,46.50353],[-114.38879,46.50368],[-114.38638,46.50413],[-114.3838,46.50518],[-114.38272,46.50467],[-114.37761,46.50238],[-114.37584,46.50185],[-114.37485,46.50191],[-114.37401,46.50233],[-114.373,46.50256],[-114.37122,46.50333],[-114.36944,46.50392],[-114.36823,46.50514],[-114.36705,46.50537],[-114.36389,46.5056],[-114.36117,46.50547],[-114.36032,46.50506],[-114.35947,46.50505],[-114.35642,46.50618],[-114.35502,46.50695],[-114.35225,46.50772],[-114.35149,46.50823],[-114.35055,46.50945],[-114.34989,46.50982],[-114.3483,46.51045],[-114.34797,46.51128],[-114.34773,46.5127],[-114.34706,46.51498],[-114.34665,46.51555],[-114.34285,46.51819],[-114.34261,46.51898],[-114.34211,46.5196],[-114.3422,46.52067],[-114.34264,46.52205],[-114.34352,46.52331],[-114.34617,46.52501],[-114.34737,46.52607],[-114.34786,46.52672],[-114.34853,46.52826],[-114.3492,46.52957],[-114.34909,46.53055],[-114.34863,46.53123],[-114.34868,46.53189],[-114.34891,46.53313],[-114.34873,46.5339],[-114.348,46.53452],[-114.34726,46.53496],[-114.34619,46.53619],[-114.34551,46.53722],[-114.34539,46.53902],[-114.34382,46.54147],[-114.34507,46.54329],[-114.34517,46.54496],[-114.34547,46.54626],[-114.34537,46.54715],[-114.34535,46.54845],[-114.34601,46.54951],[-114.34762,46.55128],[-114.34787,46.55169],[-114.3475,46.55191],[-114.34736,46.5524],[-114.34627,46.55277],[-114.34496,46.55384],[-114.34261,46.5552],[-114.34234,46.55593],[-114.34189,46.55742],[-114.34143,46.55816],[-114.34111,46.55903],[-114.33949,46.56154],[-114.3394,46.56206],[-114.33974,46.56335],[-114.33953,46.56409],[-114.33846,46.56588],[-114.337,46.56682],[-114.33571,46.56741],[-114.33528,46.56794],[-114.33453,46.56934],[-114.33291,46.5711],[-114.33169,46.57189],[-114.33086,46.57332],[-114.33066,46.57413],[-114.33038,46.57475],[-114.32973,46.57575],[-114.32982,46.57699],[-114.32999,46.57752],[-114.3305,46.5778],[-114.33192,46.57822],[-114.33334,46.57876],[-114.33407,46.57917],[-114.33468,46.58059],[-114.33576,46.58204],[-114.33726,46.58329],[-114.33774,46.58395],[-114.33794,46.58464],[-114.33827,46.58527],[-114.33922,46.58608],[-114.33949,46.58657],[-114.33946,46.58715],[-114.34046,46.58754],[-114.34305,46.58914],[-114.34426,46.59007],[-114.34299,46.59119],[-114.34142,46.59231],[-114.34087,46.59252],[-114.33825,46.59273],[-114.33721,46.5934],[-114.33641,46.5936],[-114.33587,46.59383],[-114.33471,46.5948],[-114.33218,46.59714],[-114.33058,46.59903],[-114.33023,46.59959],[-114.33032,46.60052],[-114.33017,46.60115],[-114.32993,46.60169],[-114.32964,46.60304],[-114.32993,46.60404],[-114.3298,46.60436],[-114.32946,46.6046],[-114.32842,46.60462],[-114.32766,46.60574],[-114.3264,46.60664],[-114.32507,46.60853],[-114.32261,46.61084],[-114.32246,46.61103],[-114.32277,46.61204],[-114.32325,46.61284],[-114.3241,46.61341],[-114.32534,46.61404],[-114.32568,46.61441],[-114.32598,46.61549],[-114.32636,46.61636],[-114.32702,46.61695],[-114.32717,46.61743],[-114.32746,46.6187],[-114.32816,46.61945],[-114.32814,46.61993],[-114.32772,46.62034],[-114.32627,46.62111],[-114.32546,46.62138],[-114.32482,46.62174],[-114.32436,46.62213],[-114.32419,46.62312],[-114.32362,46.62407],[-114.32294,46.62494],[-114.32237,46.62531],[-114.32201,46.62591],[-114.32279,46.62828],[-114.32263,46.62873],[-114.32223,46.62914],[-114.3217,46.62961],[-114.32149,46.63014],[-114.32152,46.63076],[-114.32206,46.63139],[-114.32254,46.63234],[-114.32209,46.63485],[-114.32122,46.63713],[-114.32025,46.63828],[-114.32034,46.63851],[-114.32057,46.63885],[-114.32204,46.64016],[-114.32264,46.64124],[-114.3229,46.6424],[-114.32282,46.64354],[-114.32196,46.64577],[-114.32068,46.64697],[-114.32121,46.64773],[-114.32173,46.64919],[-114.32243,46.64974],[-114.32339,46.65082],[-114.32468,46.65371],[-114.32696,46.65437],[-114.32795,46.65509],[-114.32985,46.65766],[-114.32999,46.65845],[-114.3303,46.65883],[-114.33187,46.65986],[-114.33278,46.66064],[-114.33352,46.66113],[-114.3353,46.66161],[-114.33716,46.66241],[-114.3388,46.66238],[-114.34241,46.662],[-114.34423,46.662],[-114.34975,46.66273],[-114.3515,46.66305],[-114.35334,46.66374],[-114.35451,46.66469],[-114.35568,46.66624],[-114.35801,46.66879],[-114.35805,46.66955],[-114.35792,46.67034],[-114.35809,46.67103],[-114.35859,46.67068],[-114.35914,46.67004],[-114.35979,46.66958],[-114.36067,46.66906],[-114.3616,46.66869],[-114.36244,46.66849],[-114.36312,46.66848],[-114.36411,46.66864],[-114.36559,46.66875],[-114.36907,46.66846],[-114.37091,46.66821],[-114.37169,46.66808],[-114.37259,46.66768],[-114.37299,46.66736],[-114.37352,46.66714],[-114.37424,46.66713],[-114.37601,46.66749],[-114.37738,46.6673],[-114.3783,46.66692],[-114.37897,46.66643],[-114.37955,46.66593],[-114.37996,46.66552],[-114.38048,46.66524],[-114.38182,46.66398],[-114.38244,46.66306],[-114.38343,46.66238],[-114.3844,46.66244],[-114.38515,46.6627],[-114.38589,46.66347],[-114.38676,46.66399],[-114.38952,46.66476],[-114.39091,46.66499],[-114.39449,46.66486],[-114.39867,46.66317],[-114.40097,46.66124],[-114.40392,46.65939],[-114.4052,46.65953],[-114.40843,46.66056],[-114.40939,46.66192],[-114.40975,46.66192],[-114.41016,46.65966],[-114.41073,46.65763],[-114.41128,46.65706],[-114.41254,46.65668],[-114.41396,46.65674],[-114.4167,46.65757],[-114.41696,46.65824],[-114.4245,46.66063],[-114.4283,46.65908],[-114.43098,46.65734],[-114.43391,46.65672],[-114.43885,46.65498],[-114.43915,46.65445],[-114.43937,46.65368],[-114.44006,46.65321],[-114.44162,46.65285],[-114.44242,46.65254],[-114.44387,46.65164],[-114.44531,46.65122],[-114.44906,46.64942],[-114.45005,46.64927],[-114.45321,46.64931],[-114.45362,46.64887],[-114.45374,46.64599],[-114.45447,46.64511],[-114.45462,46.64435],[-114.45433,46.64395],[-114.45355,46.64334],[-114.45241,46.64167],[-114.45444,46.64093],[-114.4599,46.63605],[-114.46103,46.63549],[-114.4632,46.6346],[-114.46453,46.63377],[-114.46685,46.63169],[-114.46874,46.63183],[-114.47004,46.63216],[-114.4712,46.63225],[-114.47302,46.63219],[-114.47416,46.63166],[-114.47586,46.63149],[-114.47765,46.63161],[-114.47921,46.63216],[-114.48001,46.63225],[-114.48119,46.63184],[-114.48455,46.63268],[-114.48698,46.63286],[-114.48928,46.63389],[-114.49156,46.63577],[-114.49321,46.63634],[-114.49797,46.63755],[-114.49857,46.63833],[-114.49882,46.63899],[-114.50058,46.64109],[-114.50099,46.64135],[-114.50139,46.64137],[-114.50799,46.63947],[-114.50953,46.63916],[-114.51587,46.63946],[-114.52276,46.64034],[-114.52806,46.64206],[-114.53095,46.64421],[-114.53307,46.64619],[-114.53406,46.64649],[-114.53582,46.64678],[-114.53805,46.64742],[-114.54003,46.64863],[-114.54174,46.64996],[-114.54217,46.64983],[-114.54267,46.64914],[-114.54354,46.64809],[-114.54511,46.64641],[-114.54637,46.64491],[-114.54685,46.64464],[-114.54736,46.64449],[-114.54796,46.64436],[-114.54978,46.64439],[-114.55267,46.64473],[-114.55409,46.64478],[-114.55504,46.64445],[-114.55754,46.644],[-114.55998,46.6428],[-114.5614,46.64221],[-114.5628,46.641],[-114.56358,46.64078],[-114.56986,46.64335],[-114.57037,46.64336],[-114.57061,46.64322],[-114.57098,46.64294],[-114.57129,46.64252],[-114.5723,46.64154],[-114.57464,46.6397],[-114.57675,46.63779],[-114.5775,46.63727],[-114.57829,46.63685],[-114.57903,46.63621],[-114.58025,46.63541],[-114.58069,46.63438],[-114.58188,46.63373],[-114.58337,46.63322],[-114.58413,46.63327],[-114.5847,46.63345],[-114.58868,46.63511],[-114.5892,46.63511],[-114.59048,46.63383],[-114.5911,46.63334],[-114.59177,46.63294],[-114.59276,46.6328],[-114.59326,46.63284],[-114.59388,46.63301],[-114.59455,46.63339],[-114.59518,46.63385],[-114.59837,46.63533],[-114.59951,46.63607],[-114.60005,46.63635],[-114.60058,46.63639],[-114.60234,46.6357],[-114.60327,46.63557],[-114.60566,46.63584],[-114.60869,46.63693],[-114.61155,46.63791],[-114.61435,46.63915],[-114.61506,46.63964],[-114.61543,46.64177],[-114.61648,46.64356],[-114.61207,46.64704],[-114.61169,46.64767],[-114.61216,46.64877],[-114.61217,46.65079],[-114.61321,46.6516],[-114.61538,46.65246],[-114.61461,46.65399],[-114.61444,46.65487],[-114.61488,46.65543],[-114.6163,46.65577],[-114.61711,46.65581],[-114.61806,46.65613],[-114.62074,46.65795],[-114.62237,46.65834],[-114.62529,46.65862],[-114.63069,46.65943],[-114.63468,46.65919],[-114.63579,46.65929],[-114.63759,46.66192],[-114.63771,46.66284],[-114.63818,46.6637],[-114.63863,46.66424],[-114.63969,46.66512],[-114.64,46.66554],[-114.63984,46.66626],[-114.63869,46.66735],[-114.63657,46.66849],[-114.63393,46.66945],[-114.63327,46.66985],[-114.63304,46.67048],[-114.63326,46.67164],[-114.63358,46.67229],[-114.63423,46.67295],[-114.63502,46.67298],[-114.63903,46.67222],[-114.64037,46.67227],[-114.64171,46.67251],[-114.64253,46.67281],[-114.6427,46.6732],[-114.64213,46.67381],[-114.64121,46.67441],[-114.64077,46.6749],[-114.64025,46.67563],[-114.64036,46.67628],[-114.641,46.67746],[-114.64184,46.67885],[-114.64174,46.67941],[-114.63804,46.68094],[-114.63537,46.68262],[-114.63182,46.68396],[-114.63001,46.68573],[-114.62734,46.68728],[-114.62648,46.68796],[-114.62509,46.68946],[-114.62332,46.69127],[-114.62296,46.69258],[-114.6229,46.6946],[-114.62339,46.6951],[-114.62458,46.69574],[-114.62473,46.69602],[-114.62391,46.69725],[-114.62327,46.69878],[-114.62317,46.70218],[-114.62136,46.70517],[-114.62076,46.70631],[-114.62084,46.70722],[-114.62143,46.70789],[-114.62305,46.70874],[-114.62415,46.70962],[-114.62473,46.71193],[-114.62506,46.71237],[-114.62627,46.71274],[-114.63014,46.71417],[-114.6307,46.71519],[-114.63143,46.7158],[-114.63255,46.71544],[-114.6336,46.71565],[-114.63492,46.71713],[-114.63775,46.7195],[-114.63886,46.72125],[-114.63937,46.72183],[-114.64116,46.72242],[-114.64447,46.72278],[-114.64513,46.7232],[-114.64582,46.72564],[-114.64649,46.72645],[-114.64613,46.72745],[-114.6457,46.72793],[-114.64576,46.72846],[-114.64689,46.73109],[-114.6478,46.73193],[-114.64941,46.7329],[-114.65097,46.73348],[-114.6533,46.73407],[-114.65901,46.73455],[-114.6604,46.73518],[-114.66171,46.73628],[-114.66314,46.73814],[-114.66372,46.73865],[-114.66512,46.7392],[-114.66609,46.73935],[-114.66848,46.73852],[-114.67096,46.73687],[-114.67217,46.73659],[-114.67356,46.73661],[-114.67654,46.73716],[-114.67751,46.73779],[-114.68168,46.73893],[-114.68218,46.7388],[-114.68367,46.7377],[-114.68534,46.73684],[-114.68763,46.7363],[-114.68856,46.7364],[-114.69019,46.73681],[-114.69299,46.73839],[-114.69536,46.7399],[-114.69657,46.74052],[-114.69759,46.74065],[-114.699,46.74027],[-114.69953,46.73967],[-114.69973,46.73914],[-114.70087,46.73725],[-114.70093,46.73562],[-114.70133,46.73457],[-114.70027,46.73429],[-114.69995,46.73392],[-114.69998,46.73366],[-114.70143,46.73176],[-114.7033,46.72992],[-114.70729,46.72802],[-114.7078,46.72757],[-114.70891,46.727],[-114.70897,46.72615],[-114.70825,46.72512],[-114.70767,46.72424],[-114.70786,46.72313],[-114.70972,46.72114],[-114.71002,46.72047],[-114.71024,46.71794],[-114.71088,46.71723],[-114.71191,46.71653],[-114.71344,46.71507],[-114.71443,46.71503],[-114.71522,46.71444],[-114.71566,46.71433],[-114.71761,46.71397],[-114.71921,46.71412],[-114.72183,46.71404],[-114.72314,46.71377],[-114.72532,46.71441],[-114.72659,46.7146],[-114.72812,46.71453],[-114.72881,46.71399],[-114.73087,46.71327],[-114.73217,46.71326],[-114.73638,46.71241],[-114.73982,46.71197],[-114.74126,46.71117],[-114.74209,46.71044],[-114.74165,46.70867],[-114.7419,46.70819],[-114.74358,46.70747],[-114.74646,46.70423],[-114.74731,46.7035],[-114.74808,46.70212],[-114.7485,46.70054],[-114.74793,46.69911],[-114.74814,46.69868],[-114.75046,46.69781],[-114.75111,46.69732],[-114.75225,46.69716],[-114.75351,46.69738],[-114.75408,46.69725],[-114.75466,46.69697],[-114.75626,46.69704],[-114.75789,46.69697],[-114.75943,46.69666],[-114.7607,46.6967],[-114.76203,46.69717],[-114.76299,46.69728],[-114.76413,46.69763],[-114.76672,46.69678],[-114.76831,46.698],[-114.76845,46.69869],[-114.7691,46.69927],[-114.76963,46.70035],[-114.76925,46.70267],[-114.76851,46.70439],[-114.76854,46.70494],[-114.77117,46.70548],[-114.77475,46.70591],[-114.77749,46.70663],[-114.78005,46.70669],[-114.78158,46.70676],[-114.78216,46.70695],[-114.78225,46.70818],[-114.78326,46.7087],[-114.78401,46.70953],[-114.78695,46.7112],[-114.78745,46.71166],[-114.78812,46.71201],[-114.78858,46.71297],[-114.78869,46.71399],[-114.78761,46.71457],[-114.78719,46.71574],[-114.7866,46.71603],[-114.78557,46.71705],[-114.78476,46.71798],[-114.78363,46.71874],[-114.78234,46.71933],[-114.78212,46.71969],[-114.78216,46.72053],[-114.78284,46.72079],[-114.78335,46.72232],[-114.78331,46.72306],[-114.78292,46.72361],[-114.78329,46.72425],[-114.78296,46.72583],[-114.78203,46.72709],[-114.78075,46.72776],[-114.7795,46.72882],[-114.77998,46.72971],[-114.77968,46.73043],[-114.77899,46.73112],[-114.77805,46.73151],[-114.77575,46.73126],[-114.77371,46.73188],[-114.77335,46.73277],[-114.77274,46.73343],[-114.77066,46.73435],[-114.76995,46.73506],[-114.76961,46.73573],[-114.76942,46.7367],[-114.76924,46.73715],[-114.76928,46.73739],[-114.76862,46.73776],[-114.76784,46.73837],[-114.76717,46.73874],[-114.76713,46.73898],[-114.76751,46.73948],[-114.76738,46.73977],[-114.76712,46.74001],[-114.76708,46.74014],[-114.76721,46.74032],[-114.76776,46.74055],[-114.76795,46.7408],[-114.76793,46.74116],[-114.76745,46.74146],[-114.76667,46.74166],[-114.76614,46.7417],[-114.7661,46.74188],[-114.76614,46.74207],[-114.76602,46.74229],[-114.76598,46.74251],[-114.76643,46.7431],[-114.76637,46.74332],[-114.76619,46.74346],[-114.76606,46.74368],[-114.7661,46.74406],[-114.76593,46.74452],[-114.76519,46.74517],[-114.76518,46.74546],[-114.76705,46.74634],[-114.76804,46.74725],[-114.76831,46.74817],[-114.76815,46.7489],[-114.76777,46.74923],[-114.76637,46.74978],[-114.76584,46.75133],[-114.76615,46.75186],[-114.76714,46.75263],[-114.76741,46.75341],[-114.7665,46.75608],[-114.76502,46.7581],[-114.76689,46.75898],[-114.76808,46.76019],[-114.76982,46.76069],[-114.77063,46.76119],[-114.77175,46.76115],[-114.77279,46.76146],[-114.77366,46.76202],[-114.77382,46.76432],[-114.77364,46.76533],[-114.77535,46.76603],[-114.77766,46.76621],[-114.77876,46.76674],[-114.77919,46.76797],[-114.7797,46.76859],[-114.78227,46.76885],[-114.7833,46.76815],[-114.78446,46.77027],[-114.78628,46.77682],[-114.7863,46.77828],[-114.78578,46.77895],[-114.78467,46.77997],[-114.78656,46.78082],[-114.78734,46.78261],[-114.78784,46.78172],[-114.78791,46.78091],[-114.78816,46.78035],[-114.78896,46.77942],[-114.78994,46.77873],[-114.79177,46.77809],[-114.79319,46.77726],[-114.79547,46.77706],[-114.7963,46.77721],[-114.79691,46.7769],[-114.79727,46.77631],[-114.79782,46.77588],[-114.79849,46.77568],[-114.80102,46.77645],[-114.80223,46.7774],[-114.80344,46.77794],[-114.80414,46.77861],[-114.80701,46.78073],[-114.80751,46.78183],[-114.80816,46.78235],[-114.80938,46.78238],[-114.81243,46.78161],[-114.8135,46.78172],[-114.81483,46.78113],[-114.81891,46.78113],[-114.81986,46.78159],[-114.82239,46.78241],[-114.82381,46.78251],[-114.82452,46.78236],[-114.82506,46.78203],[-114.82588,46.78196],[-114.82846,46.78239],[-114.82906,46.78241],[-114.83052,46.7837],[-114.83185,46.78576],[-114.83209,46.78714],[-114.83414,46.78842],[-114.83446,46.78901],[-114.83598,46.79108],[-114.83608,46.79197],[-114.83635,46.7924],[-114.83767,46.79289],[-114.84151,46.7931],[-114.84361,46.79379],[-114.84528,46.7946],[-114.84733,46.79563],[-114.84831,46.79696],[-114.84936,46.79748],[-114.84981,46.79801],[-114.85014,46.79909],[-114.85135,46.79859],[-114.85359,46.79994],[-114.85488,46.80049],[-114.85531,46.80099],[-114.85691,46.8016],[-114.85731,46.80215],[-114.85761,46.8033],[-114.85788,46.80366],[-114.86004,46.80496],[-114.86065,46.80622],[-114.86066,46.8069],[-114.86112,46.80897],[-114.86107,46.81131],[-114.86135,46.81192],[-114.862,46.81236],[-114.86308,46.81254],[-114.86436,46.81381],[-114.86537,46.81443],[-114.86699,46.81432],[-114.86904,46.81368],[-114.87065,46.81286],[-114.87244,46.81217],[-114.87393,46.81208],[-114.87459,46.81177],[-114.87542,46.81164],[-114.87596,46.81185],[-114.87772,46.81186],[-114.88059,46.81177],[-114.8841,46.80974],[-114.88815,46.80855],[-114.89117,46.80301],[-114.89389,46.80219],[-114.89609,46.80265],[-114.89687,46.80723],[-114.89752,46.80805],[-114.89946,46.80882],[-114.89803,46.81029],[-114.8979,46.81312],[-114.89575,46.81562],[-114.89488,46.8173],[-114.89565,46.81844],[-114.89728,46.81998],[-114.89821,46.82171],[-114.8989,46.82331],[-114.90447,46.82286],[-114.91535,46.82647],[-114.91782,46.82802],[-114.92051,46.82771],[-114.92284,46.83114],[-114.92483,46.83445],[-114.92722,46.83462],[-114.92782,46.83589],[-114.92799,46.83734],[-114.92709,46.83861],[-114.92575,46.84],[-114.92744,46.84124],[-114.92843,46.84324],[-114.92561,46.84523],[-114.92348,46.84752],[-114.92603,46.85035],[-114.92757,46.85259],[-114.92868,46.85483],[-114.93706,46.85656],[-114.94041,46.85602],[-114.94486,46.85781],[-114.94746,46.85928],[-114.94749,46.86128],[-114.94536,46.86486],[-114.94322,46.86798],[-114.94061,46.86837],[-114.93879,46.86897],[-114.93724,46.87051],[-114.93393,46.87491],[-114.93305,46.87535],[-114.93209,46.87616],[-114.93165,46.87691],[-114.93184,46.87897],[-114.93146,46.87944],[-114.93117,46.88055],[-114.93144,46.88159],[-114.93112,46.8821],[-114.93176,46.88341],[-114.93255,46.88767],[-114.93355,46.88817],[-114.9344,46.88922],[-114.93465,46.89008],[-114.93546,46.89109],[-114.93598,46.89282],[-114.9352,46.89502],[-114.9361,46.89647],[-114.93683,46.89722],[-114.93566,46.90073],[-114.93504,46.90175],[-114.93354,46.90357],[-114.93298,46.90356],[-114.93159,46.90378],[-114.93109,46.90403],[-114.93072,46.9044],[-114.93048,46.90601],[-114.93035,46.90619],[-114.92989,46.90649],[-114.92975,46.9071],[-114.9299,46.90729],[-114.92993,46.90785],[-114.9295,46.90988],[-114.92795,46.90995],[-114.92484,46.91102],[-114.92377,46.91181],[-114.92319,46.91191],[-114.92184,46.91283],[-114.92323,46.91452],[-114.92409,46.91733],[-114.92504,46.91872],[-114.92574,46.91892],[-114.92677,46.91964],[-114.92699,46.91958],[-114.93002,46.91989],[-114.93295,46.91947],[-114.93457,46.91967],[-114.93529,46.9197],[-114.93581,46.91983],[-114.93605,46.92],[-114.93729,46.92132],[-114.93846,46.92183],[-114.94175,46.92396],[-114.94559,46.92484],[-114.9466,46.92532],[-114.94732,46.92591],[-114.94903,46.9263],[-114.95271,46.92663],[-114.95721,46.92875],[-114.95976,46.92954],[-114.96055,46.92991],[-114.961,46.93034],[-114.96095,46.93091],[-114.95871,46.93368],[-114.96254,46.93558],[-114.96396,46.93677],[-114.96467,46.93798],[-114.96627,46.93811],[-114.96819,46.93864],[-114.96916,46.93875],[-114.97013,46.93869],[-114.97129,46.93908],[-114.97183,46.94005],[-114.97483,46.94145],[-114.97578,46.94284],[-114.97685,46.94336],[-114.97835,46.94464],[-114.97938,46.9463],[-114.98042,46.94744],[-114.98214,46.94819],[-114.983,46.94934],[-114.98483,46.94914],[-114.98622,46.9497],[-114.98658,46.95047],[-114.98659,46.95207],[-114.986,46.9534],[-114.98559,46.95398],[-114.98748,46.95473],[-114.98998,46.95635],[-114.99125,46.95832],[-114.99231,46.95905],[-114.99312,46.95918],[-114.99357,46.95998],[-114.99386,46.9623],[-114.99945,46.96603],[-115.00006,46.96712],[-115.00085,46.96768],[-115.0013,46.97187],[-115.00429,46.97223],[-115.00943,46.9734],[-115.01131,46.97417],[-115.01574,46.97377],[-115.01762,46.97392],[-115.01886,46.97425],[-115.01987,46.97462],[-115.0283,46.97561],[-115.02943,46.97519],[-115.02901,46.97317],[-115.02963,46.97231],[-115.03159,46.97154],[-115.03501,46.97159],[-115.03713,46.97045],[-115.042,46.97049],[-115.04785,46.96953],[-115.04953,46.97077],[-115.05052,46.97337],[-115.0518,46.97486],[-115.05051,46.97547],[-115.05038,46.97815],[-115.04969,46.98065],[-115.05011,46.98131],[-115.05133,46.98181],[-115.05278,46.98303],[-115.05298,46.98336],[-115.05662,46.98482],[-115.05713,46.98678],[-115.06094,46.99193],[-115.06763,46.99524],[-115.06617,46.99639],[-115.06574,46.99959],[-115.06523,46.99989],[-115.06862,47.00427],[-115.06912,47.00713],[-115.07095,47.00923],[-115.07297,47.01374],[-115.06936,47.01487],[-115.07019,47.01859],[-115.07124,47.02205],[-115.07243,47.02359],[-115.07147,47.02616],[-115.07344,47.02527],[-115.07531,47.02517],[-115.07587,47.02541],[-115.07843,47.02734],[-115.08009,47.02827],[-115.08123,47.02937],[-115.08087,47.03218],[-115.08044,47.03418],[-115.08129,47.03487],[-115.08103,47.036],[-115.08152,47.0367],[-115.08222,47.03732],[-115.08312,47.03887],[-115.08854,47.04046],[-115.08866,47.04153],[-115.08831,47.04209],[-115.08859,47.04306],[-115.08862,47.04406],[-115.08782,47.0455],[-115.09183,47.04674],[-115.09584,47.04786],[-115.09814,47.04889],[-115.09917,47.04814],[-115.10078,47.04744],[-115.1027,47.04722],[-115.10512,47.04814],[-115.1072,47.04907],[-115.10859,47.05029],[-115.10752,47.0522],[-115.10889,47.05217],[-115.113,47.0542],[-115.11539,47.05697],[-115.11817,47.05895],[-115.12086,47.06115],[-115.12383,47.06576],[-115.12592,47.06665],[-115.12624,47.06686],[-115.12702,47.06768],[-115.12793,47.06871],[-115.12868,47.0702],[-115.12962,47.07135],[-115.13064,47.07312],[-115.13179,47.07447],[-115.13264,47.07565],[-115.1346,47.07661],[-115.13665,47.07827],[-115.13789,47.08308],[-115.13952,47.08457],[-115.13973,47.08538],[-115.13922,47.08661],[-115.13966,47.08766],[-115.14032,47.08828],[-115.14046,47.09066],[-115.1404,47.09298],[-115.13969,47.09364],[-115.1394,47.09557],[-115.13877,47.0957],[-115.13787,47.09601],[-115.13828,47.09709],[-115.14032,47.09914],[-115.14265,47.10183],[-115.14566,47.10295],[-115.14661,47.10226],[-115.14791,47.10163],[-115.1499,47.10145],[-115.15215,47.10183],[-115.15556,47.10274],[-115.15735,47.10238],[-115.15923,47.10193],[-115.16162,47.10283],[-115.164,47.10381],[-115.16788,47.10568],[-115.16939,47.10591],[-115.17043,47.10625],[-115.17171,47.10764],[-115.17246,47.10945],[-115.17245,47.11153],[-115.17171,47.11261],[-115.17294,47.11285],[-115.17433,47.11419],[-115.17769,47.11713],[-115.17843,47.11822],[-115.17866,47.12057],[-115.17907,47.12074],[-115.18287,47.12181],[-115.18503,47.12343],[-115.18636,47.12492],[-115.18686,47.12611],[-115.1856,47.12983],[-115.18682,47.12996],[-115.18934,47.131],[-115.19182,47.13206],[-115.19322,47.13301],[-115.19343,47.13444],[-115.19476,47.13442],[-115.19661,47.13549],[-115.19835,47.13683],[-115.19888,47.13968],[-115.20052,47.13915],[-115.20403,47.13943],[-115.20772,47.1406],[-115.2127,47.1415],[-115.21481,47.14246],[-115.21544,47.14413],[-115.2168,47.14604],[-115.22006,47.14744],[-115.22328,47.14898],[-115.22418,47.14833],[-115.22734,47.14861],[-115.23165,47.15007],[-115.235,47.15022],[-115.23755,47.15073],[-115.24101,47.15072],[-115.2437,47.15033],[-115.2458,47.1519],[-115.2466,47.15337],[-115.24779,47.15531],[-115.24806,47.15655],[-115.24851,47.15755],[-115.24863,47.15866],[-115.25102,47.15957],[-115.25262,47.16054],[-115.25405,47.16154],[-115.25518,47.16289],[-115.25555,47.16434],[-115.25532,47.16562],[-115.25585,47.16668],[-115.25634,47.16804],[-115.25609,47.16932],[-115.25641,47.16998],[-115.2564,47.17119],[-115.25616,47.17235],[-115.2558,47.17344],[-115.25576,47.17471],[-115.25676,47.17563],[-115.25763,47.17622],[-115.2579,47.17661],[-115.25799,47.17796],[-115.2586,47.17939],[-115.25923,47.17978],[-115.26093,47.17986],[-115.26122,47.18081],[-115.26189,47.18177],[-115.26667,47.18109],[-115.26848,47.18132],[-115.27236,47.18253],[-115.27362,47.1827],[-115.27613,47.1822],[-115.27796,47.18216],[-115.27984,47.18243],[-115.28351,47.1834],[-115.28637,47.18332],[-115.28725,47.18348],[-115.28816,47.18471],[-115.28941,47.18594],[-115.29097,47.18713],[-115.29329,47.18666],[-115.29516,47.18676],[-115.29756,47.18733],[-115.29994,47.18759],[-115.30063,47.18821],[-115.30072,47.18997],[-115.30055,47.19081],[-115.30091,47.1918],[-115.30083,47.1939],[-115.2996,47.19489],[-115.29871,47.19657],[-115.2982,47.19957],[-115.29725,47.20281],[-115.29605,47.20566],[-115.29265,47.20883],[-115.29209,47.20979],[-115.29221,47.21048],[-115.29413,47.21455],[-115.29505,47.21763],[-115.29468,47.21927],[-115.29474,47.22091],[-115.29622,47.22159],[-115.29753,47.22244],[-115.29829,47.22397],[-115.29878,47.2252],[-115.30185,47.22553],[-115.30378,47.22733],[-115.30588,47.22866],[-115.30724,47.22988],[-115.31184,47.22965],[-115.31272,47.23055],[-115.31411,47.23162],[-115.31476,47.23301],[-115.31712,47.23323],[-115.3174,47.23424],[-115.31733,47.23531],[-115.31799,47.23583],[-115.319,47.23735],[-115.31983,47.24131],[-115.32032,47.24235],[-115.32205,47.24289],[-115.32422,47.24377],[-115.32485,47.24473],[-115.32433,47.24574],[-115.32076,47.24896],[-115.31822,47.25165],[-115.31852,47.25294],[-115.32002,47.25418],[-115.32019,47.25556],[-115.32001,47.25676],[-115.32159,47.25638],[-115.32334,47.25645],[-115.32617,47.25726],[-115.32882,47.25818],[-115.33128,47.25937],[-115.33394,47.25972],[-115.33919,47.26158],[-115.34074,47.26279],[-115.34369,47.26103],[-115.34791,47.26009],[-115.3515,47.26071],[-115.35431,47.26198],[-115.35712,47.26036],[-115.35942,47.25945],[-115.3615,47.25985],[-115.36616,47.26143],[-115.36701,47.26236],[-115.36808,47.26309],[-115.36863,47.26329],[-115.37085,47.26454],[-115.37187,47.26521],[-115.37399,47.26471],[-115.37607,47.26481],[-115.37816,47.26473],[-115.37993,47.26547],[-115.38127,47.26633],[-115.3832,47.26663],[-115.38445,47.26722],[-115.38594,47.26643],[-115.38803,47.26563],[-115.39428,47.2651],[-115.3971,47.26514],[-115.39868,47.2648],[-115.40125,47.26493],[-115.40548,47.2646],[-115.40732,47.26418],[-115.40933,47.26395],[-115.41065,47.26423],[-115.41197,47.26469],[-115.41367,47.26641],[-115.41425,47.26725],[-115.4167,47.26939],[-115.41873,47.26974],[-115.42161,47.27165],[-115.42172,47.27317],[-115.42037,47.2765],[-115.42107,47.27752],[-115.42409,47.27848],[-115.42556,47.27962],[-115.42669,47.28018],[-115.42929,47.27964],[-115.43149,47.27963],[-115.43421,47.2798],[-115.43658,47.28047],[-115.43858,47.27936],[-115.44101,47.27814],[-115.44372,47.27726],[-115.44685,47.27776],[-115.44877,47.2785],[-115.44939,47.2786],[-115.45265,47.27758],[-115.45565,47.27755],[-115.45718,47.27778],[-115.4576,47.27914],[-115.45738,47.28078],[-115.4575,47.28243],[-115.45902,47.28369],[-115.46088,47.28472],[-115.464,47.28591],[-115.46579,47.28696],[-115.46664,47.28782],[-115.46794,47.28721],[-115.47095,47.28484],[-115.47192,47.28448],[-115.47533,47.28453],[-115.4766,47.28417],[-115.4793,47.28205],[-115.48063,47.28162],[-115.48247,47.28162],[-115.48452,47.28333],[-115.48606,47.28537],[-115.48712,47.28632],[-115.48683,47.28644],[-115.4872,47.28681],[-115.48792,47.28723],[-115.48884,47.28798],[-115.49007,47.28836],[-115.49156,47.28943],[-115.49316,47.28978],[-115.49617,47.28967],[-115.49807,47.29014],[-115.50104,47.29036],[-115.5053,47.29103],[-115.51085,47.29435],[-115.51185,47.29514],[-115.51354,47.2959],[-115.5159,47.29689],[-115.51901,47.29759],[-115.52007,47.29821],[-115.52407,47.29899],[-115.5261,47.29924],[-115.52933,47.29931],[-115.52829,47.30066],[-115.52881,47.30218],[-115.52777,47.30382],[-115.52769,47.30443],[-115.52837,47.30622],[-115.5285,47.30735],[-115.52751,47.30892],[-115.52985,47.30992],[-115.53089,47.31149],[-115.53192,47.31416],[-115.53494,47.31633],[-115.53838,47.3207],[-115.54071,47.3246],[-115.5412,47.32657],[-115.54031,47.32912],[-115.54384,47.33053],[-115.54573,47.33235],[-115.55128,47.33387],[-115.54906,47.33881],[-115.54903,47.33994],[-115.54985,47.34636],[-115.55108,47.3499],[-115.55185,47.35067],[-115.55425,47.35114],[-115.55553,47.35226],[-115.55621,47.35303],[-115.55895,47.35224],[-115.56024,47.3522],[-115.56152,47.35186],[-115.56478,47.35168],[-115.56787,47.3529],[-115.56846,47.35379],[-115.56931,47.35445],[-115.5698,47.35529],[-115.57111,47.35567],[-115.57542,47.35564],[-115.57809,47.36076],[-115.57779,47.36158],[-115.57605,47.36373],[-115.57604,47.36533],[-115.57689,47.36682],[-115.57936,47.36735],[-115.58165,47.36776],[-115.58443,47.36858],[-115.58596,47.36988],[-115.59352,47.37043],[-115.59808,47.3718],[-115.59773,47.37235],[-115.59814,47.37377],[-115.59928,47.37508],[-115.60111,47.37743],[-115.60254,47.37767],[-115.60474,47.37785],[-115.60768,47.37915],[-115.60934,47.38079],[-115.61378,47.38101],[-115.61575,47.38214],[-115.61728,47.38257],[-115.62279,47.38154],[-115.6259,47.38062],[-115.62843,47.37954],[-115.63077,47.37927],[-115.63187,47.37947],[-115.63538,47.37978],[-115.63745,47.37925],[-115.64022,47.37843],[-115.64385,47.37752],[-115.6456,47.38078],[-115.64769,47.38232],[-115.64815,47.38383],[-115.64751,47.38545],[-115.64719,47.38715],[-115.6473,47.38805],[-115.64851,47.39027],[-115.64972,47.39144],[-115.65049,47.39249],[-115.65276,47.39304],[-115.6551,47.39376],[-115.65688,47.39561],[-115.65733,47.39693],[-115.65761,47.40064],[-115.65886,47.40132],[-115.66226,47.40258],[-115.66441,47.40233],[-115.66614,47.40144],[-115.66857,47.40119],[-115.67429,47.40202],[-115.67624,47.40216],[-115.6775,47.40189],[-115.67761,47.40322],[-115.67719,47.40467],[-115.6766,47.40629],[-115.67661,47.40849],[-115.679,47.40984],[-115.68319,47.41089],[-115.68581,47.41103],[-115.68713,47.41166],[-115.68895,47.41316],[-115.69055,47.41501],[-115.69345,47.4152],[-115.69643,47.41515],[-115.69859,47.41612],[-115.69981,47.41691],[-115.70045,47.41652],[-115.70306,47.41567],[-115.70597,47.41545],[-115.70949,47.41507],[-115.71195,47.41537],[-115.71282,47.41621],[-115.71446,47.41733],[-115.71601,47.41857],[-115.71697,47.42015],[-115.71946,47.42038],[-115.72091,47.42107],[-115.72104,47.42215],[-115.72097,47.42437],[-115.72065,47.42554],[-115.72315,47.42521],[-115.72634,47.42507],[-115.72944,47.42487],[-115.73239,47.42501],[-115.73449,47.42557],[-115.73676,47.4259],[-115.73837,47.42668],[-115.74096,47.42473],[-115.74364,47.42353],[-115.74653,47.4233],[-115.74993,47.4223],[-115.75109,47.42233],[-115.75636,47.42183],[-115.75935,47.42223],[-115.75962,47.42304],[-115.7578,47.42615],[-115.7547,47.42996],[-115.7531,47.43089],[-115.75257,47.43211],[-115.75145,47.43652],[-115.75102,47.43696],[-115.75102,47.43776],[-115.74968,47.43858],[-115.74962,47.44041],[-115.74835,47.44171],[-115.74678,47.44237],[-115.74175,47.44242],[-115.7393,47.44304],[-115.7379,47.44393],[-115.736,47.44427],[-115.73427,47.44425],[-115.73166,47.44579],[-115.72733,47.44768],[-115.7245,47.44855],[-115.72022,47.45128],[-115.71851,47.45308],[-115.70755,47.45345],[-115.70611,47.45276],[-115.70204,47.45416],[-115.7012,47.4541],[-115.69478,47.45622],[-115.69282,47.45729],[-115.6894,47.4572],[-115.68478,47.4578],[-115.68172,47.45727],[-115.67816,47.45431],[-115.67529,47.45333],[-115.67092,47.4545],[-115.66792,47.45451],[-115.66526,47.45393],[-115.66397,47.45408],[-115.66217,47.45377],[-115.65977,47.45453],[-115.65678,47.45474],[-115.65298,47.45529],[-115.65227,47.45566],[-115.6464,47.45669],[-115.64478,47.45848],[-115.64208,47.45896],[-115.64021,47.46013],[-115.63852,47.46177],[-115.63785,47.46423],[-115.63651,47.46496],[-115.63584,47.46714],[-115.63484,47.46909],[-115.63219,47.4727],[-115.63172,47.47479],[-115.63108,47.47654],[-115.6286,47.4798],[-115.63213,47.48068],[-115.6348,47.4818],[-115.63895,47.47997],[-115.64551,47.47951],[-115.64655,47.47845],[-115.64816,47.47796],[-115.64967,47.47774],[-115.65233,47.47784],[-115.65332,47.47824],[-115.65682,47.47823],[-115.65757,47.47805],[-115.66057,47.47821],[-115.661,47.47868],[-115.66083,47.48144],[-115.66112,47.48256],[-115.66185,47.48372],[-115.66315,47.48481],[-115.66441,47.48563],[-115.66707,47.4876],[-115.66721,47.48833],[-115.66829,47.48888],[-115.66915,47.48825],[-115.67028,47.48779],[-115.6713,47.48727],[-115.67216,47.48659],[-115.6731,47.48641],[-115.67476,47.48655],[-115.67942,47.48621],[-115.68006,47.48598],[-115.68096,47.48552],[-115.68148,47.48478],[-115.68269,47.4843],[-115.68398,47.484],[-115.68674,47.48556],[-115.68729,47.49075],[-115.68809,47.49118],[-115.68906,47.49716],[-115.68899,47.49851],[-115.68977,47.5],[-115.69141,47.50148],[-115.69534,47.50218],[-115.69953,47.50311],[-115.70044,47.50358],[-115.70103,47.50503],[-115.70223,47.50723],[-115.70366,47.50894],[-115.70733,47.5125],[-115.708,47.51376],[-115.70833,47.5149],[-115.70865,47.51551],[-115.70997,47.51596],[-115.71104,47.51658],[-115.7106,47.52309],[-115.71002,47.52374],[-115.70759,47.52432],[-115.70363,47.52595],[-115.69684,47.52827],[-115.69673,47.52883],[-115.69749,47.53039],[-115.69745,47.53134],[-115.69819,47.53149],[-115.70133,47.53297],[-115.70155,47.53398],[-115.70194,47.53423],[-115.7034,47.53411],[-115.70548,47.53501],[-115.70638,47.53501],[-115.70803,47.53425],[-115.71191,47.53298],[-115.71328,47.53368],[-115.71371,47.53422],[-115.71517,47.53454],[-115.71637,47.53427],[-115.71825,47.53343],[-115.72055,47.53343],[-115.7287,47.53569],[-115.73032,47.53586],[-115.73069,47.53653],[-115.73175,47.53801],[-115.73327,47.53928],[-115.73519,47.53961],[-115.73679,47.53942],[-115.73968,47.53837],[-115.74152,47.53867],[-115.74377,47.53948],[-115.7449,47.53995],[-115.7491,47.5412],[-115.75098,47.54158],[-115.75179,47.54196],[-115.75229,47.54268],[-115.75239,47.54336],[-115.75229,47.54391],[-115.75306,47.54469],[-115.75306,47.5451],[-115.75344,47.54537],[-115.75391,47.54554],[-115.7541,47.54586],[-115.7543,47.5465],[-115.75487,47.54736],[-115.75529,47.54775],[-115.75584,47.54809],[-115.7559,47.54839],[-115.75572,47.54903],[-115.75547,47.5497],[-115.75549,47.55031],[-115.75536,47.55132],[-115.75452,47.55251],[-115.75345,47.55294],[-115.75215,47.55333],[-115.75153,47.55383],[-115.74929,47.55515],[-115.74461,47.5585],[-115.74414,47.55901],[-115.74403,47.55999],[-115.74375,47.56085],[-115.74289,47.56178],[-115.74176,47.56211],[-115.73982,47.56283],[-115.73826,47.56402],[-115.73647,47.56612],[-115.73466,47.5674],[-115.73128,47.56925],[-115.7303,47.56944],[-115.72867,47.56916],[-115.72737,47.56914],[-115.72535,47.5694],[-115.7226,47.57074],[-115.7221,47.5721],[-115.72228,47.57503],[-115.7217,47.57604],[-115.72094,47.57642],[-115.71967,47.57675],[-115.71617,47.57706],[-115.71181,47.57689],[-115.70752,47.57701],[-115.7065,47.57731],[-115.70494,47.57935],[-115.70433,47.58132],[-115.7045,47.58202],[-115.70558,47.58367],[-115.70473,47.58483],[-115.70191,47.58732],[-115.69788,47.58981],[-115.68913,47.59386],[-115.68759,47.59467],[-115.68801,47.59535],[-115.68934,47.59539],[-115.69213,47.59642],[-115.69272,47.60118],[-115.69422,47.60197],[-115.69597,47.60241],[-115.69746,47.60445],[-115.69799,47.60571],[-115.69764,47.60736],[-115.69716,47.60837],[-115.69709,47.60887],[-115.69788,47.6101],[-115.69819,47.61145],[-115.69825,47.61229],[-115.69782,47.61296],[-115.69679,47.61345],[-115.69404,47.61543],[-115.69274,47.61702],[-115.69316,47.6177],[-115.69367,47.61815],[-115.69421,47.62091],[-115.69443,47.62148],[-115.69423,47.6235],[-115.69515,47.62422],[-115.69642,47.62494],[-115.69777,47.62647],[-115.69861,47.628],[-115.69982,47.629],[-115.70102,47.62942],[-115.70175,47.62937],[-115.70248,47.62961],[-115.70319,47.63063],[-115.70509,47.63274],[-115.70839,47.63534],[-115.71358,47.6358],[-115.71549,47.63641],[-115.72083,47.63898],[-115.72298,47.63928],[-115.73003,47.64247],[-115.7315,47.6441],[-115.73136,47.64601],[-115.73213,47.64668],[-115.7329,47.64709],[-115.7335,47.64803],[-115.73367,47.64926],[-115.73631,47.65474],[-115.73581,47.65565],[-115.73333,47.65807],[-115.73133,47.66153],[-115.73096,47.66251],[-115.7309,47.6664],[-115.73113,47.66759],[-115.7305,47.67017],[-115.72945,47.67062],[-115.72747,47.67171],[-115.7266,47.67211],[-115.72638,47.67308],[-115.72624,47.67446],[-115.72754,47.68085],[-115.72794,47.68224],[-115.72726,47.68367],[-115.72653,47.685],[-115.72591,47.68559],[-115.72497,47.68716],[-115.72512,47.68748],[-115.72509,47.68864],[-115.72446,47.6902],[-115.72408,47.6921],[-115.72369,47.69276],[-115.72304,47.69447],[-115.72264,47.69487],[-115.72261,47.69515],[-115.72353,47.69626],[-115.72501,47.69878],[-115.72677,47.7007],[-115.72911,47.70309],[-115.73055,47.7041],[-115.73078,47.70442],[-115.7307,47.70465],[-115.73104,47.70497],[-115.73341,47.70568],[-115.73814,47.70853],[-115.73999,47.70949],[-115.7409,47.7101],[-115.74088,47.71108],[-115.74138,47.71137],[-115.74282,47.71158],[-115.7434,47.71195],[-115.74482,47.71237],[-115.74724,47.71336],[-115.75095,47.71547],[-115.75229,47.71668],[-115.75719,47.71818],[-115.75857,47.71899],[-115.75996,47.71883],[-115.76341,47.71729],[-115.76666,47.71724],[-115.76957,47.71783],[-115.77178,47.71739],[-115.77404,47.71841],[-115.7763,47.71983],[-115.77748,47.72152],[-115.77906,47.72248],[-115.7836,47.72942],[-115.78368,47.731],[-115.78221,47.73475],[-115.78315,47.73637],[-115.78272,47.738],[-115.7815,47.73898],[-115.78021,47.74239],[-115.78051,47.74344],[-115.78577,47.74833],[-115.78983,47.74992],[-115.7899,47.75004],[-115.79239,47.75108],[-115.7937,47.75191],[-115.79403,47.75282],[-115.79414,47.75341],[-115.79439,47.75365],[-115.79481,47.75387],[-115.79731,47.75751],[-115.79853,47.75751],[-115.80042,47.7577],[-115.80384,47.75848],[-115.80612,47.75758],[-115.80763,47.75721],[-115.81023,47.75617],[-115.81464,47.75635],[-115.81709,47.75518],[-115.81926,47.75446],[-115.82077,47.75369],[-115.82354,47.7527],[-115.82469,47.75211],[-115.82579,47.75261],[-115.82788,47.75385],[-115.83029,47.75495],[-115.83178,47.75576],[-115.83281,47.75716],[-115.83285,47.75789],[-115.83358,47.75936],[-115.83449,47.75997],[-115.83539,47.76087],[-115.83551,47.76417],[-115.83503,47.767],[-115.8355,47.76878],[-115.83514,47.76932],[-115.83503,47.77004],[-115.83588,47.77105],[-115.83648,47.77207],[-115.83653,47.77279],[-115.83682,47.77386],[-115.83755,47.77499],[-115.84007,47.77715],[-115.84049,47.77836],[-115.8406,47.77929],[-115.84038,47.78015],[-115.84236,47.78129],[-115.84692,47.78428],[-115.84756,47.7854],[-115.84726,47.78773],[-115.84588,47.79323],[-115.84579,47.79406],[-115.84717,47.79724],[-115.84897,47.8002],[-115.84866,47.80094],[-115.84788,47.80183],[-115.84756,47.80259],[-115.84732,47.80344],[-115.84757,47.80497],[-115.84809,47.80713],[-115.84853,47.80932],[-115.84875,47.80944],[-115.84919,47.81127],[-115.84852,47.8118],[-115.84749,47.81226],[-115.84637,47.81336],[-115.84624,47.81395],[-115.84548,47.81467],[-115.84548,47.81497],[-115.84594,47.81598],[-115.84605,47.81656],[-115.84646,47.8167],[-115.84641,47.81694],[-115.84666,47.81731],[-115.8469,47.81786],[-115.84773,47.81861],[-115.85004,47.82],[-115.85089,47.82167],[-115.85059,47.82276],[-115.85045,47.82431],[-115.85064,47.82533],[-115.85119,47.82654],[-115.85177,47.82693],[-115.8523,47.82799],[-115.85294,47.82813],[-115.855,47.82801],[-115.85613,47.82849],[-115.85859,47.83019],[-115.85957,47.83107],[-115.86312,47.83291],[-115.86449,47.83329],[-115.86602,47.83333],[-115.86688,47.83342],[-115.86773,47.83386],[-115.8709,47.83496],[-115.87151,47.83575],[-115.87173,47.83649],[-115.87204,47.83712],[-115.87308,47.83797],[-115.87387,47.83893],[-115.87444,47.84193],[-115.87592,47.84424],[-115.87839,47.84573],[-115.88155,47.84965],[-115.88276,47.84886],[-115.88397,47.84876],[-115.88597,47.84832],[-115.88775,47.84763],[-115.88873,47.84702],[-115.8905,47.84634],[-115.89228,47.84601],[-115.89331,47.84536],[-115.89509,47.84524],[-115.8973,47.84529],[-115.89867,47.84384],[-115.90097,47.84307],[-115.90156,47.84318],[-115.9041,47.84469],[-115.9057,47.84603],[-115.90648,47.84624],[-115.90692,47.84678],[-115.90709,47.84732],[-115.90643,47.8489],[-115.90645,47.85048],[-115.90731,47.85132],[-115.90877,47.85234],[-115.91006,47.85298],[-115.91349,47.85359],[-115.91474,47.85338],[-115.91631,47.8536],[-115.9189,47.8537],[-115.9189,47.85559],[-115.91925,47.85737],[-115.92071,47.85965],[-115.92453,47.86385],[-115.925,47.86487],[-115.92522,47.86694],[-115.92604,47.86739],[-115.92695,47.86769],[-115.9288,47.86845],[-115.93132,47.872],[-115.93265,47.87304],[-115.93424,47.87362],[-115.93574,47.87449],[-115.9352,47.87606],[-115.93594,47.87747],[-115.93613,47.8785],[-115.93666,47.87953],[-115.93754,47.88047],[-115.93817,47.88152],[-115.93934,47.88203],[-115.94003,47.88311],[-115.94117,47.88373],[-115.943,47.88556],[-115.94482,47.88573],[-115.94585,47.8861],[-115.94714,47.88698],[-115.94743,47.88852],[-115.94939,47.889],[-115.95012,47.88947],[-115.95067,47.89051],[-115.95237,47.89164],[-115.9532,47.89402],[-115.95406,47.8945],[-115.95519,47.89475],[-115.95901,47.89725],[-115.95992,47.89813],[-115.96083,47.89834],[-115.96429,47.89831],[-115.96715,47.89844],[-115.96785,47.89895],[-115.96855,47.89962],[-115.96848,47.90099],[-115.96695,47.90397],[-115.96638,47.9059],[-115.9664,47.90682],[-115.96515,47.91074],[-115.96683,47.91264],[-115.96861,47.91397],[-115.96962,47.91438],[-115.97153,47.91408],[-115.97343,47.91407],[-115.97581,47.91466],[-115.97934,47.91463],[-115.98133,47.91539],[-115.98239,47.91568],[-115.9832,47.91649],[-115.98285,47.91958],[-115.98345,47.92133],[-115.98507,47.92301],[-115.98557,47.92325],[-115.98827,47.9236],[-115.99134,47.92484],[-115.99191,47.92533],[-115.99371,47.92614],[-115.99395,47.92703],[-115.99384,47.92787],[-115.9932,47.92879],[-115.99407,47.93032],[-115.99488,47.9316],[-115.9951,47.93386],[-115.99551,47.9345],[-115.99666,47.93533],[-115.99807,47.93617],[-115.99838,47.93684],[-115.99801,47.93813],[-115.99821,47.93883],[-115.99944,47.93923],[-116.00092,47.93986],[-116.00158,47.93991],[-116.00301,47.94043],[-116.005,47.94263],[-116.00596,47.9427],[-116.00692,47.94382],[-116.00694,47.94442],[-116.00743,47.9452],[-116.00766,47.94563],[-116.00706,47.94702],[-116.00722,47.95014],[-116.0083,47.9513],[-116.00998,47.95292],[-116.01154,47.95375],[-116.01176,47.95422],[-116.01327,47.95596],[-116.01456,47.95776],[-116.01578,47.9582],[-116.01793,47.96082],[-116.01873,47.96306],[-116.02086,47.96357],[-116.0241,47.96525],[-116.02519,47.96733],[-116.02729,47.96839],[-116.02836,47.96928],[-116.0287,47.97094],[-116.03054,47.97231],[-116.03075,47.97334],[-116.03292,47.97287],[-116.03835,47.9713],[-116.03966,47.97167],[-116.04044,47.97228],[-116.04114,47.97261],[-116.04171,47.9737],[-116.04244,47.97421],[-116.04469,47.97472],[-116.04883,47.97688],[-116.04919,49.00083],[-115.81069,49.00094],[-115.57218,49.00059],[-115.33213,48.99991],[-115.21383,48.99963],[-115.09517,48.99968],[-114.58553,49.0009],[-114.45939,49.00107],[-114.33288,49.0009],[-114.20096,49],[-114.06913,48.99887],[-114.06931,49.00008],[-114.07047,49.00086],[-114.07196,49.00242],[-114.07209,49.00335],[-114.0719,49.00418],[-114.07238,49.00501],[-114.07176,49.00598],[-114.06889,49.00784],[-114.06522,49.01197],[-114.05875,49.01886],[-114.05509,49.02443],[-114.05417,49.02669],[-114.05703,49.02799],[-114.06239,49.03762],[-114.0634,49.04035],[-114.06406,49.04291],[-114.06396,49.04549],[-114.0647,49.04602],[-114.06593,49.04626],[-114.0669,49.04683],[-114.06799,49.04815],[-114.06994,49.04987],[-114.07651,49.05362],[-114.08028,49.05773],[-114.08139,49.05982],[-114.08288,49.05981],[-114.08651,49.05885],[-114.08948,49.0585],[-114.09328,49.05881],[-114.09714,49.05999],[-114.10084,49.06156],[-114.10719,49.06505],[-114.10809,49.0662],[-114.11123,49.06826],[-114.11406,49.07068],[-114.11501,49.07281],[-114.11604,49.07388],[-114.11811,49.07412],[-114.12979,49.07817],[-114.13083,49.07915],[-114.13291,49.0826],[-114.13524,49.0839],[-114.13989,49.0871],[-114.14233,49.0897],[-114.14781,49.09417],[-114.15338,49.09949],[-114.15372,49.10132],[-114.15345,49.10314],[-114.15182,49.10499],[-114.14915,49.10741],[-114.14974,49.11106],[-114.1494,49.11547],[-114.14982,49.11808],[-114.15323,49.11992],[-114.15652,49.12297],[-114.15784,49.12378],[-114.15869,49.12635],[-114.16081,49.12753],[-114.16224,49.13146],[-114.16605,49.13556],[-114.16556,49.13709],[-114.16244,49.13829],[-114.15658,49.14012],[-114.15288,49.14145],[-114.14903,49.14367],[-114.15125,49.14535],[-114.15579,49.14762],[-114.15974,49.15],[-114.16195,49.15178],[-114.16208,49.15308],[-114.16131,49.15478],[-114.16608,49.15668],[-114.17139,49.16005],[-114.17258,49.16246],[-114.17496,49.16358],[-114.18032,49.16427],[-114.19521,49.16905],[-114.19922,49.16925],[-114.204,49.16981],[-114.20908,49.17206],[-114.2127,49.17346],[-114.21578,49.17841],[-114.21714,49.18413],[-114.21925,49.18488],[-114.22153,49.18908],[-114.23048,49.18926],[-114.23468,49.18537],[-114.24051,49.18462],[-114.24536,49.18564],[-114.24668,49.18728],[-114.25111,49.18278],[-114.25234,49.18051],[-114.25432,49.17928],[-114.25708,49.177],[-114.26095,49.1777],[-114.26327,49.17958],[-114.26756,49.1797],[-114.26937,49.18099],[-114.27721,49.17973],[-114.28001,49.17806],[-114.28727,49.17801],[-114.28861,49.17873],[-114.28936,49.1804],[-114.28849,49.18308],[-114.29011,49.186],[-114.29477,49.18827],[-114.29864,49.18938],[-114.30097,49.19078],[-114.30562,49.19127],[-114.31054,49.19203],[-114.3132,49.19361],[-114.31685,49.19903],[-114.31852,49.19996],[-114.32298,49.19981],[-114.32829,49.19899],[-114.33532,49.19969],[-114.33696,49.1994],[-114.33962,49.19597],[-114.34276,49.19436],[-114.34564,49.19359],[-114.35002,49.19453],[-114.35564,49.19654],[-114.35895,49.19844],[-114.36075,49.20057],[-114.36088,49.20203],[-114.36624,49.20365],[-114.37718,49.20283],[-114.38675,49.20493],[-114.38973,49.20711],[-114.39115,49.20675],[-114.39902,49.21038],[-114.40208,49.21328],[-114.39957,49.21429],[-114.39784,49.21529],[-114.39628,49.21727],[-114.39395,49.21942],[-114.39586,49.22143],[-114.39975,49.22234],[-114.40493,49.2242],[-114.40584,49.22523],[-114.40435,49.22645],[-114.40115,49.22778],[-114.40157,49.23022],[-114.40293,49.23278],[-114.40256,49.2347],[-114.40343,49.23727],[-114.40268,49.24163],[-114.40048,49.24233],[-114.39582,49.2431],[-114.39107,49.24471],[-114.38372,49.24618],[-114.37989,49.24825],[-114.38137,49.25073],[-114.38774,49.25163],[-114.39353,49.2572],[-114.39632,49.25716],[-114.40005,49.25775],[-114.40313,49.25919],[-114.40497,49.2588],[-114.40784,49.25982],[-114.40934,49.25971],[-114.41444,49.26218],[-114.42113,49.2618],[-114.42498,49.26222],[-114.42969,49.26131],[-114.43501,49.26211],[-114.43864,49.2633],[-114.4397,49.26463],[-114.44796,49.26434],[-114.44813,49.26533],[-114.4489,49.26596],[-114.44933,49.26732],[-114.44907,49.27658],[-114.44971,49.27857],[-114.45097,49.27948],[-114.4512,49.28039],[-114.44905,49.28233],[-114.44939,49.28516],[-114.44681,49.28847],[-114.44856,49.28995],[-114.45117,49.29249],[-114.45408,49.29813],[-114.46114,49.3041],[-114.46278,49.30376],[-114.46673,49.30436],[-114.4713,49.30669],[-114.47291,49.30844],[-114.4776,49.31231],[-114.47998,49.31277],[-114.48156,49.31182],[-114.48494,49.31065],[-114.48986,49.31208],[-114.49204,49.31374],[-114.4913,49.3154],[-114.49176,49.31683],[-114.49114,49.3195],[-114.49207,49.32075],[-114.49214,49.32217],[-114.4893,49.32384],[-114.48317,49.32495],[-114.48041,49.32586],[-114.47885,49.32672],[-114.48161,49.32911],[-114.48205,49.33003],[-114.48257,49.33749],[-114.48396,49.33928],[-114.48432,49.34265],[-114.48753,49.3473],[-114.49584,49.35253],[-114.50094,49.35277],[-114.50698,49.35667],[-114.51348,49.35542],[-114.51662,49.35454],[-114.52288,49.35624],[-114.52474,49.35742],[-114.52527,49.35987],[-114.52417,49.36208],[-114.53156,49.37055],[-114.53185,49.37169],[-114.5263,49.3751],[-114.5366,49.37961],[-114.54409,49.37762],[-114.54762,49.37724],[-114.55166,49.37803],[-114.55647,49.37678],[-114.56256,49.37728],[-114.56696,49.37686],[-114.5681,49.38001],[-114.57153,49.38191],[-114.57612,49.38675],[-114.57341,49.38951],[-114.57576,49.38997],[-114.57828,49.39138],[-114.58033,49.39134],[-114.58641,49.39235],[-114.58737,49.39387],[-114.58966,49.3953],[-114.59057,49.39611],[-114.5919,49.40015],[-114.592,49.40483],[-114.59837,49.41256],[-114.5965,49.41686],[-114.59661,49.42002],[-114.59723,49.42145],[-114.60077,49.42466],[-114.6002,49.42655],[-114.60075,49.42799],[-114.5992,49.42953],[-114.59857,49.43378],[-114.60164,49.43622],[-114.60257,49.43726],[-114.60502,49.43896],[-114.60286,49.44358],[-114.60066,49.44414],[-114.59838,49.44537],[-114.59892,49.44977],[-114.60298,49.45155],[-114.60341,49.45278],[-114.59838,49.45479],[-114.59782,49.45907],[-114.59928,49.46187],[-114.60005,49.464],[-114.59945,49.46664],[-114.59391,49.46938],[-114.59344,49.47139],[-114.59546,49.47811],[-114.5955,49.48009],[-114.59457,49.48077],[-114.59365,49.48409],[-114.59421,49.48639],[-114.59575,49.4878],[-114.59713,49.49072],[-114.59607,49.49173],[-114.59425,49.49213],[-114.59286,49.49323],[-114.5949,49.49666],[-114.5948,49.50002],[-114.59651,49.50182],[-114.59465,49.50268],[-114.59314,49.50554],[-114.59097,49.50673],[-114.58494,49.51238],[-114.58265,49.51803],[-114.5831,49.52022],[-114.5774,49.52126],[-114.5754,49.52367],[-114.57275,49.52469],[-114.57241,49.52671],[-114.57347,49.52784],[-114.57323,49.5326],[-114.56975,49.53698],[-114.57087,49.53868],[-114.57207,49.54394],[-114.57417,49.54641],[-114.57215,49.54828],[-114.57403,49.55056],[-114.573,49.55707],[-114.57607,49.55685],[-114.57901,49.55809],[-114.58823,49.56535],[-114.59329,49.56112],[-114.59877,49.56014],[-114.60198,49.56099],[-114.60478,49.55869],[-114.60724,49.55924],[-114.60881,49.55498],[-114.61243,49.55401],[-114.61393,49.55048],[-114.61576,49.54906],[-114.61601,49.54837],[-114.6196,49.54642],[-114.62089,49.54722],[-114.62635,49.54941],[-114.63041,49.54914],[-114.63785,49.54358],[-114.64794,49.54297],[-114.65451,49.54521],[-114.66255,49.55198],[-114.67629,49.55329],[-114.67891,49.55528],[-114.68329,49.55654],[-114.69041,49.55377],[-114.69158,49.55094],[-114.69583,49.54662],[-114.70088,49.55219],[-114.7043,49.55343],[-114.71026,49.55852],[-114.71038,49.56283],[-114.71405,49.56615],[-114.71971,49.56741],[-114.72249,49.56999],[-114.72459,49.57162],[-114.72449,49.57589],[-114.7302,49.577],[-114.7326,49.57653],[-114.73458,49.5802],[-114.73719,49.59586],[-114.74544,49.60056],[-114.74712,49.60237],[-114.74648,49.60423],[-114.74704,49.60715],[-114.75313,49.60955],[-114.74826,49.61388],[-114.74739,49.61944],[-114.729,49.62378],[-114.72343,49.62393],[-114.71991,49.62602],[-114.7162,49.63062],[-114.71223,49.63039],[-114.70875,49.63126],[-114.70649,49.63367],[-114.70826,49.63583],[-114.7057,49.63658],[-114.70545,49.63752],[-114.7032,49.63861],[-114.70164,49.63751],[-114.70017,49.63685],[-114.69773,49.63107],[-114.69094,49.63268],[-114.69068,49.63478],[-114.68767,49.63582],[-114.68715,49.63786],[-114.6814,49.63898],[-114.67976,49.63965],[-114.67983,49.64132],[-114.67465,49.64349],[-114.66766,49.63766],[-114.66479,49.64156],[-114.66209,49.64336],[-114.66137,49.64782],[-114.65702,49.66075],[-114.65749,49.66361],[-114.66266,49.66539],[-114.66688,49.66951],[-114.66874,49.67015],[-114.66983,49.67285],[-114.66814,49.67563],[-114.66463,49.67653],[-114.66841,49.6806],[-114.6685,49.68297],[-114.67005,49.68406],[-114.67029,49.68684],[-114.66899,49.691],[-114.67208,49.69322],[-114.67584,49.69419],[-114.67668,49.69616],[-114.67313,49.69957],[-114.66838,49.70376],[-114.66078,49.70628],[-114.64759,49.71295],[-114.64654,49.71429],[-114.64617,49.71551],[-114.64303,49.71723],[-114.63894,49.71784],[-114.63632,49.72173],[-114.6383,49.72435],[-114.63362,49.73037],[-114.63315,49.73402],[-114.63712,49.73808],[-114.64152,49.73926],[-114.6429,49.73909],[-114.64634,49.74336],[-114.64333,49.74494],[-114.64212,49.74631],[-114.64421,49.74961],[-114.6482,49.75392],[-114.65105,49.7551],[-114.65142,49.75866],[-114.65419,49.75934],[-114.65731,49.7608],[-114.65916,49.76504],[-114.65334,49.76714],[-114.64443,49.77302],[-114.64095,49.78136],[-114.63604,49.78481],[-114.63595,49.7856],[-114.63772,49.78634],[-114.63847,49.79114],[-114.64159,49.79464],[-114.64222,49.79576],[-114.64208,49.79854],[-114.64151,49.80126],[-114.64197,49.80323],[-114.64302,49.80452],[-114.64372,49.80564],[-114.64187,49.80804],[-114.64336,49.81037],[-114.64562,49.81486],[-114.64749,49.81731],[-114.64744,49.81922],[-114.64589,49.82073],[-114.64289,49.82234],[-114.63997,49.82774],[-114.64274,49.83153],[-114.64698,49.83378],[-114.65065,49.83849],[-114.65212,49.84252],[-114.6548,49.8466],[-114.66111,49.8517],[-114.6613,49.85353],[-114.66269,49.85487],[-114.66197,49.85939],[-114.66124,49.86066],[-114.66151,49.86228],[-114.66238,49.8633],[-114.67146,49.86453],[-114.67055,49.86844],[-114.67079,49.87092],[-114.67219,49.87264],[-114.67303,49.87397],[-114.67274,49.87835],[-114.67546,49.88112],[-114.6824,49.88587],[-114.68521,49.88709],[-114.68495,49.88784],[-114.69173,49.8963],[-114.69112,49.8987],[-114.68871,49.90185],[-114.68979,49.90644],[-114.68726,49.917],[-114.6902,49.92163],[-114.69134,49.93312],[-114.68968,49.93608],[-114.69042,49.93793],[-114.69279,49.94045],[-114.69319,49.94104],[-114.69487,49.94183],[-114.69371,49.94255],[-114.68526,49.95519],[-114.68358,49.96069],[-114.68337,49.96707],[-114.68157,49.96752],[-114.6706,49.96786],[-114.66358,49.9665],[-114.65841,49.96816],[-114.65735,49.96839],[-114.65597,49.96803],[-114.65578,49.97011],[-114.65147,49.97552],[-114.65202,49.97865],[-114.65361,49.981],[-114.65361,49.9839],[-114.65429,49.9857],[-114.65339,49.98963],[-114.65251,49.99126],[-114.65197,49.99272],[-114.6548,49.99682],[-114.65563,49.99744],[-114.66342,50],[-114.66501,50],[-114.66606,50.00154],[-114.66659,50.00331],[-114.6652,50.00529],[-114.66337,50.0076],[-114.6617,50.01136],[-114.66122,50.015],[-114.6577,50.0191],[-114.65964,50.02683],[-114.65767,50.02971],[-114.66149,50.03315],[-114.66205,50.03394],[-114.66635,50.03536],[-114.6665,50.03588],[-114.66296,50.03966],[-114.66514,50.04148],[-114.66813,50.0422],[-114.67113,50.04314],[-114.67231,50.04436],[-114.67383,50.04505],[-114.67519,50.04662],[-114.67612,50.04812],[-114.66642,50.05091],[-114.6664,50.05143],[-114.66536,50.05429],[-114.66509,50.05577],[-114.66598,50.05881],[-114.66555,50.06098],[-114.66456,50.0625],[-114.66234,50.06499],[-114.66511,50.06379],[-114.67157,50.0645],[-114.67701,50.06345],[-114.67984,50.06409],[-114.68069,50.06457],[-114.68171,50.06724],[-114.68448,50.06875],[-114.68866,50.07024],[-114.69121,50.07136],[-114.6912,50.07507],[-114.69204,50.07785],[-114.69392,50.08002],[-114.69511,50.0812],[-114.69468,50.08141],[-114.69735,50.08696],[-114.69899,50.0888],[-114.70054,50.08925],[-114.70416,50.08969],[-114.70281,50.09106],[-114.7037,50.0948],[-114.70574,50.09578],[-114.70652,50.09673],[-114.70746,50.09729],[-114.70773,50.09858],[-114.71075,50.10221],[-114.71939,50.10572],[-114.72012,50.10653],[-114.72047,50.11067],[-114.7222,50.11179],[-114.72776,50.11316],[-114.72964,50.11432],[-114.73332,50.11858],[-114.73498,50.11948],[-114.73588,50.12032],[-114.73346,50.12135],[-114.7315,50.12604],[-114.73101,50.12793],[-114.72692,50.13527],[-114.72757,50.13698],[-114.7272,50.13806],[-114.72494,50.1408],[-114.72479,50.14337],[-114.72729,50.14831],[-114.72726,50.15781],[-114.72634,50.1608],[-114.72533,50.16136],[-114.73264,50.16929],[-114.7307,50.17123],[-114.73043,50.17422],[-114.73094,50.176],[-114.72779,50.17865],[-114.72387,50.18387],[-114.72552,50.18611],[-114.72474,50.18703],[-114.7247,50.19019],[-114.728,50.19208],[-114.72888,50.19291],[-114.73096,50.19408],[-114.73177,50.19584],[-114.73643,50.2007],[-114.73885,50.20271],[-114.73758,50.2089],[-114.73957,50.21164],[-114.74114,50.21243],[-114.74349,50.21267],[-114.74904,50.21491],[-114.74473,50.2183],[-114.74533,50.22231],[-114.74738,50.22472],[-114.75186,50.22715],[-114.75575,50.23178],[-114.76151,50.23365],[-114.76289,50.2347],[-114.76197,50.24097],[-114.76279,50.24085],[-114.76799,50.24299],[-114.76861,50.24403],[-114.76772,50.24523],[-114.76702,50.24552],[-114.76709,50.24697],[-114.76891,50.24867],[-114.76964,50.25006],[-114.77021,50.25009],[-114.76968,50.25191],[-114.76655,50.25404],[-114.76616,50.2554],[-114.76705,50.25676],[-114.76647,50.2575],[-114.76684,50.25818],[-114.76414,50.26519],[-114.7581,50.27176],[-114.75213,50.27316],[-114.7517,50.27526],[-114.75295,50.27886],[-114.75421,50.28071],[-114.75505,50.28141],[-114.75245,50.28586],[-114.7536,50.28739],[-114.75286,50.29381],[-114.75522,50.2993],[-114.76219,50.29926],[-114.76933,50.30257],[-114.7724,50.30163],[-114.77616,50.29976],[-114.78041,50.29981],[-114.78162,50.30166],[-114.78102,50.30736],[-114.78232,50.30997],[-114.78276,50.31138],[-114.78039,50.31526],[-114.78446,50.31883],[-114.78802,50.31927],[-114.7904,50.32062],[-114.79224,50.32234],[-114.79759,50.32615],[-114.79866,50.32656],[-114.79995,50.3298],[-114.79928,50.3303],[-114.79835,50.33042],[-114.79655,50.33093],[-114.7954,50.33087],[-114.79431,50.33168],[-114.79218,50.33584],[-114.77593,50.34364],[-114.77485,50.34379],[-114.77384,50.34474],[-114.7718,50.3476],[-114.76943,50.34907],[-114.76757,50.3498],[-114.7663,50.35075],[-114.76863,50.35245],[-114.76864,50.35881],[-114.77332,50.36214],[-114.7749,50.36255],[-114.78168,50.36249],[-114.78191,50.36204],[-114.78445,50.36274],[-114.78483,50.36225],[-114.78683,50.36104],[-114.78912,50.35802],[-114.79138,50.35855],[-114.79587,50.36154],[-114.79894,50.36176],[-114.79954,50.36275],[-114.80388,50.36485],[-114.80883,50.3707],[-114.81481,50.36893],[-114.81921,50.36902],[-114.81735,50.37482],[-114.8131,50.37673],[-114.81245,50.3782],[-114.81434,50.38041],[-114.81391,50.38192],[-114.81549,50.38238],[-114.81777,50.38246],[-114.8203,50.38448],[-114.8248,50.39329],[-114.82592,50.39329],[-114.83124,50.39033],[-114.83829,50.39355],[-114.84842,50.39256],[-114.85187,50.39315],[-114.8548,50.39227],[-114.8569,50.39252],[-114.85945,50.39368],[-114.8623,50.39447],[-114.86555,50.39893],[-114.86636,50.3993],[-114.86573,50.40102],[-114.86519,50.40548],[-114.86011,50.40765],[-114.86158,50.40899],[-114.86236,50.40913],[-114.86409,50.41143],[-114.86364,50.41728],[-114.86215,50.41996],[-114.85955,50.42097],[-114.85979,50.42374],[-114.86264,50.42552],[-114.86841,50.42582],[-114.87001,50.42764],[-114.87299,50.43023],[-114.87391,50.43732],[-114.87474,50.43961],[-114.88073,50.43798],[-114.88397,50.43745],[-114.88537,50.43641],[-114.88652,50.4358],[-114.88778,50.43563],[-114.89552,50.43945],[-114.89746,50.44123],[-114.89945,50.44421],[-114.90545,50.44847],[-114.91111,50.45044],[-114.91222,50.45137],[-114.91243,50.45484],[-114.9133,50.4559],[-114.91618,50.45802],[-114.9174,50.46145],[-114.92378,50.46668],[-114.92699,50.46846],[-114.92833,50.47187],[-114.93228,50.47346],[-114.93278,50.47529],[-114.93172,50.47853],[-114.93565,50.48078],[-114.93713,50.48626],[-114.93808,50.487],[-114.94367,50.48846],[-114.94574,50.48962],[-114.95134,50.49751],[-114.95327,50.49799],[-114.9558,50.50146],[-114.95902,50.50439],[-114.96243,50.51219],[-114.96366,50.5138],[-114.96582,50.5152],[-114.96764,50.51606],[-114.96862,50.51773],[-114.97742,50.52956],[-114.97746,50.53212],[-114.97827,50.5349],[-114.98308,50.5397],[-114.9914,50.54438],[-114.99118,50.54576],[-114.9926,50.54782],[-114.99552,50.54944],[-115.00418,50.55965],[-115.00594,50.56084],[-115.00598,50.56241],[-115.01119,50.56731],[-115.01371,50.57085],[-115.0134,50.57406],[-115.01507,50.58238],[-115.01913,50.58389],[-115.02054,50.58469],[-115.02717,50.58303],[-115.03347,50.57931],[-115.04956,50.57517],[-115.05209,50.57141],[-115.06126,50.57971],[-115.06339,50.58319],[-115.07363,50.58843],[-115.08525,50.58971],[-115.10088,50.57793],[-115.11584,50.57178],[-115.11758,50.56977],[-115.13161,50.57177],[-115.1362,50.57438],[-115.14511,50.57152],[-115.14847,50.57076],[-115.15461,50.57327],[-115.17359,50.56756],[-115.17494,50.56136],[-115.17766,50.55824],[-115.18335,50.55602],[-115.18704,50.55576],[-115.18982,50.55506],[-115.19098,50.55405],[-115.18981,50.54894],[-115.18372,50.54398],[-115.18616,50.5398],[-115.18912,50.53831],[-115.19083,50.53511],[-115.20211,50.5331],[-115.20607,50.52804],[-115.20823,50.52783],[-115.21322,50.53239],[-115.21684,50.53651],[-115.22093,50.53698],[-115.22254,50.53968],[-115.23102,50.54495],[-115.2319,50.55069],[-115.2296,50.5514],[-115.22846,50.55404],[-115.22974,50.55502],[-115.22981,50.55921],[-115.23148,50.5609],[-115.23418,50.5648],[-115.23374,50.56613],[-115.23493,50.56758],[-115.24188,50.57127],[-115.23929,50.57489],[-115.23507,50.57475],[-115.23185,50.57708],[-115.23017,50.5775],[-115.2361,50.58562],[-115.23958,50.58921],[-115.2437,50.58917],[-115.2474,50.58812],[-115.25149,50.58994],[-115.26004,50.59628],[-115.26425,50.5967],[-115.26581,50.59767],[-115.26855,50.59744],[-115.2718,50.59786],[-115.27797,50.60104],[-115.28036,50.60547],[-115.28469,50.60888],[-115.28581,50.6082],[-115.28749,50.60816],[-115.28939,50.60941],[-115.29044,50.60941],[-115.29363,50.61105],[-115.29538,50.61302],[-115.29518,50.61434],[-115.29748,50.61774],[-115.29823,50.62011],[-115.298,50.62477],[-115.29683,50.62622],[-115.30031,50.62551],[-115.3052,50.62593],[-115.31011,50.62722],[-115.31153,50.62858],[-115.31176,50.63039],[-115.30954,50.63146],[-115.3102,50.63528],[-115.31305,50.63764],[-115.31189,50.63823],[-115.30291,50.63818],[-115.2996,50.63928],[-115.29492,50.63902],[-115.28839,50.63768],[-115.28546,50.63882],[-115.28206,50.64698],[-115.2774,50.64834],[-115.27532,50.64796],[-115.27408,50.64889],[-115.2779,50.65058],[-115.28145,50.65384],[-115.28245,50.65621],[-115.28165,50.65711],[-115.28595,50.66032],[-115.28492,50.66174],[-115.28226,50.66321],[-115.28377,50.66557],[-115.28793,50.66887],[-115.29277,50.67538],[-115.29847,50.68342],[-115.30085,50.69075],[-115.29772,50.69466],[-115.29364,50.69835],[-115.29676,50.69993],[-115.30169,50.70058],[-115.30614,50.70471],[-115.30887,50.70781],[-115.31104,50.71206],[-115.31423,50.71529],[-115.31475,50.7163],[-115.31366,50.71685],[-115.31067,50.72153],[-115.31226,50.72393],[-115.31347,50.7243],[-115.31511,50.72578],[-115.31825,50.72646],[-115.31976,50.72622],[-115.32071,50.72421],[-115.32415,50.72335],[-115.32647,50.72207],[-115.32776,50.72192],[-115.33296,50.72417],[-115.33506,50.72424],[-115.33587,50.72347],[-115.33921,50.72202],[-115.34013,50.72222],[-115.34625,50.72207],[-115.34988,50.72127],[-115.35452,50.72271],[-115.35735,50.72149],[-115.35899,50.72104],[-115.36338,50.7179],[-115.36792,50.71759],[-115.37013,50.71724],[-115.36988,50.71435],[-115.37763,50.71091],[-115.37563,50.70786],[-115.37893,50.70534],[-115.38641,50.70802],[-115.39123,50.70646],[-115.39464,50.7076],[-115.40071,50.71089],[-115.4037,50.71233],[-115.40537,50.71244],[-115.41381,50.71125],[-115.41634,50.71269],[-115.41671,50.7137],[-115.41605,50.71485],[-115.41644,50.71883],[-115.41692,50.71992],[-115.41583,50.72216],[-115.41138,50.72326],[-115.41201,50.72602],[-115.41069,50.72726],[-115.41088,50.72831],[-115.41335,50.73075],[-115.41359,50.73188],[-115.4124,50.73354],[-115.41302,50.73449],[-115.41466,50.73569],[-115.4163,50.73628],[-115.41796,50.73637],[-115.41962,50.73664],[-115.42555,50.74376],[-115.43633,50.75577],[-115.44438,50.75431],[-115.4471,50.7532],[-115.44872,50.75371],[-115.45043,50.75466],[-115.4523,50.75633],[-115.45351,50.75577],[-115.45497,50.75573],[-115.45648,50.7565],[-115.45765,50.75726],[-115.45895,50.75719],[-115.46042,50.7569],[-115.46233,50.75541],[-115.46398,50.75366],[-115.4668,50.75259],[-115.47031,50.75201],[-115.47126,50.7529],[-115.47496,50.75487],[-115.47773,50.75556],[-115.48122,50.7552],[-115.48471,50.76068],[-115.48425,50.7646],[-115.48262,50.76809],[-115.48186,50.76853],[-115.48834,50.77361],[-115.49449,50.7788],[-115.49539,50.77896],[-115.49467,50.77973],[-115.49757,50.7823],[-115.50108,50.78427],[-115.50385,50.78524],[-115.50961,50.78626],[-115.51212,50.78642],[-115.51584,50.7845],[-115.51577,50.78159],[-115.51691,50.7802],[-115.52776,50.78509],[-115.52919,50.78688],[-115.53243,50.78819],[-115.53311,50.79292],[-115.53553,50.79554],[-115.53868,50.79654],[-115.5429,50.79566],[-115.54468,50.7949],[-115.54798,50.7964],[-115.55085,50.79708],[-115.55157,50.79964],[-115.55281,50.80257],[-115.55566,50.80361],[-115.5579,50.80366],[-115.5605,50.8047],[-115.56122,50.80863],[-115.56064,50.81018],[-115.56152,50.81158],[-115.56557,50.81331],[-115.56646,50.81478],[-115.56187,50.82163],[-115.56235,50.82485],[-115.56084,50.82656],[-115.56419,50.82896],[-115.56488,50.83212],[-115.56651,50.83264],[-115.57218,50.83646],[-115.57314,50.83775],[-115.57797,50.8405],[-115.58568,50.84153],[-115.59064,50.84315],[-115.59595,50.84392],[-115.60152,50.8442],[-115.60655,50.84558],[-115.60744,50.84399],[-115.61794,50.83572],[-115.62151,50.8352],[-115.62345,50.83413],[-115.62691,50.8334],[-115.63138,50.83672],[-115.63507,50.83705],[-115.63937,50.83793],[-115.64139,50.83974],[-115.64298,50.84215],[-115.64264,50.84593],[-115.64539,50.85438],[-115.64433,50.85589],[-115.64386,50.85729],[-115.64483,50.85847],[-115.6494,50.86268],[-115.64841,50.864],[-115.64904,50.86505],[-115.65109,50.8659],[-115.65065,50.86841],[-115.65091,50.87233],[-115.64891,50.8742],[-115.64169,50.87544],[-115.63601,50.877],[-115.63419,50.87874],[-115.63004,50.87913],[-115.62903,50.87978],[-115.61686,50.87938],[-115.61274,50.88534],[-115.60437,50.88725],[-115.59978,50.88602],[-115.59987,50.8904],[-115.59267,50.89262],[-115.59028,50.89246],[-115.58239,50.88927],[-115.57784,50.88829],[-115.5713,50.89068],[-115.56639,50.89314],[-115.56209,50.89425],[-115.56638,50.89818],[-115.56792,50.89921],[-115.56852,50.90208],[-115.57226,50.9059],[-115.57213,50.90742],[-115.57513,50.90788],[-115.57822,50.90986],[-115.57839,50.91333],[-115.58314,50.91381],[-115.58428,50.91576],[-115.58965,50.91564],[-115.59601,50.91649],[-115.59989,50.91784],[-115.60186,50.91971],[-115.6058,50.92213],[-115.60983,50.92626],[-115.60549,50.92961],[-115.60553,50.93337],[-115.59771,50.93703],[-115.59709,50.93982],[-115.60445,50.94389],[-115.61086,50.94683],[-115.61458,50.95113],[-115.61152,50.95706],[-115.61172,50.95893],[-115.61782,50.96305],[-115.62195,50.96544],[-115.62603,50.97048],[-115.62547,50.97368],[-115.6281,50.97771],[-115.62827,50.98091],[-115.63193,50.98053],[-115.6362,50.98197],[-115.64007,50.98529],[-115.64153,50.98737],[-115.64232,50.99062],[-115.64829,50.996],[-115.64878,50.99748],[-115.65192,50.99863],[-115.6542,50.99878],[-115.65747,51.00133],[-115.65998,51.00109],[-115.66352,50.99967],[-115.6694,50.99926],[-115.67054,50.99994],[-115.67151,51.00132],[-115.6761,51.00414],[-115.67773,51.00719],[-115.68254,51.00943],[-115.68997,51.01396],[-115.69057,51.01655],[-115.69225,51.01979],[-115.6923,51.02146],[-115.69087,51.02393],[-115.69047,51.02537],[-115.69233,51.02858],[-115.69464,51.02722],[-115.69807,51.02575],[-115.70127,51.02358],[-115.70265,51.02215],[-115.70369,51.02136],[-115.70682,51.02016],[-115.71138,51.02022],[-115.71359,51.01984],[-115.71714,51.01736],[-115.72666,51.0187],[-115.7306,51.0201],[-115.73395,51.02226],[-115.73731,51.0233],[-115.73924,51.02333],[-115.73998,51.02487],[-115.73887,51.0265],[-115.73638,51.02837],[-115.73526,51.02965],[-115.74312,51.03393],[-115.74815,51.0306],[-115.75146,51.0315],[-115.76026,51.0359],[-115.76173,51.03734],[-115.76492,51.03878],[-115.76706,51.0394],[-115.76929,51.04165],[-115.7722,51.04609],[-115.77048,51.04668],[-115.76914,51.04784],[-115.76986,51.04925],[-115.77156,51.05101],[-115.77161,51.0524],[-115.77261,51.05398],[-115.77343,51.05609],[-115.77371,51.05768],[-115.76889,51.05922],[-115.76631,51.05959],[-115.76133,51.06077],[-115.75942,51.06373],[-115.7615,51.06691],[-115.75889,51.06915],[-115.7591,51.07119],[-115.75329,51.0744],[-115.75543,51.07496],[-115.75761,51.07512],[-115.76194,51.07201],[-115.77235,51.06699],[-115.77619,51.06651],[-115.77972,51.0685],[-115.78068,51.0699],[-115.78364,51.0693],[-115.78431,51.0706],[-115.78927,51.07239],[-115.79396,51.07073],[-115.80286,51.06957],[-115.80385,51.07166],[-115.80372,51.07349],[-115.80394,51.0757],[-115.80801,51.08055],[-115.8101,51.0825],[-115.81226,51.08332],[-115.81237,51.08574],[-115.81283,51.08644],[-115.81651,51.08477],[-115.82543,51.08268],[-115.82573,51.08141],[-115.82947,51.07939],[-115.83336,51.07588],[-115.839,51.07739],[-115.84242,51.07649],[-115.84282,51.07796],[-115.84377,51.07961],[-115.84618,51.08126],[-115.84752,51.0818],[-115.85138,51.08084],[-115.85778,51.07912],[-115.8602,51.08043],[-115.86176,51.08211],[-115.86383,51.08643],[-115.86682,51.08782],[-115.86791,51.08927],[-115.86906,51.08934],[-115.87042,51.08835],[-115.87234,51.08769],[-115.87478,51.0872],[-115.87613,51.08753],[-115.87886,51.08682],[-115.88296,51.08596],[-115.88473,51.08595],[-115.88848,51.08648],[-115.89464,51.08603],[-115.89636,51.08763],[-115.89833,51.09037],[-115.89979,51.09367],[-115.90081,51.09377],[-115.90443,51.09104],[-115.90488,51.08912],[-115.90314,51.08527],[-115.90317,51.08356],[-115.90388,51.08288],[-115.90714,51.08405],[-115.91211,51.08345],[-115.91786,51.08412],[-115.92041,51.08357],[-115.92194,51.08297],[-115.92352,51.08306],[-115.9239,51.08419],[-115.92488,51.08635],[-115.92658,51.08861],[-115.93024,51.09077],[-115.93144,51.09446],[-115.93247,51.09669],[-115.93417,51.09759],[-115.94161,51.09693],[-115.94524,51.09784],[-115.94845,51.09918],[-115.95051,51.10212],[-115.94958,51.10302],[-115.95044,51.10553],[-115.95036,51.10691],[-115.95275,51.10939],[-115.95343,51.11058],[-115.95719,51.11511],[-115.95995,51.11569],[-115.96382,51.11552],[-115.96761,51.116],[-115.96652,51.11868],[-115.96698,51.12079],[-115.96823,51.12211],[-115.97168,51.12247],[-115.97994,51.12481],[-115.98223,51.12498],[-115.98477,51.12602],[-115.98714,51.12632],[-115.99105,51.1263],[-115.99577,51.12455],[-115.99851,51.12433],[-115.99846,51.12496],[-116.00442,51.12463],[-116.00489,51.12533],[-116.00749,51.12655],[-116.00863,51.12599],[-116.01122,51.12768],[-116.01268,51.13002],[-116.01265,51.13318],[-116.01356,51.13563],[-116.01558,51.13803],[-116.00988,51.14382],[-116.01043,51.14769],[-116.01011,51.15059],[-116.00963,51.1529],[-116.00974,51.15433],[-116.00943,51.1551],[-116.00737,51.15631],[-116.0176,51.15612],[-116.02004,51.15727],[-116.02085,51.15945],[-116.02573,51.16295],[-116.02948,51.16272],[-116.03052,51.16322],[-116.03354,51.16608],[-116.03684,51.17004],[-116.03439,51.17079],[-116.02391,51.17615],[-116.02062,51.18263],[-116.02161,51.18427],[-116.02171,51.18647],[-116.02129,51.18701],[-116.01871,51.18743],[-116.01682,51.18882],[-116.01278,51.18962],[-116.006,51.1902],[-116.00418,51.19091],[-116.00182,51.1928],[-115.99996,51.19398],[-115.99994,51.19519],[-116.00122,51.19824],[-116.00396,51.20302],[-116.00438,51.20403],[-116.00406,51.20786],[-116.00631,51.20873],[-116.00656,51.2107],[-116.00488,51.21297],[-116.00209,51.2154],[-116.0049,51.21807],[-116.00753,51.22197],[-116.01102,51.2223],[-116.01657,51.22356],[-116.02121,51.22244],[-116.02508,51.22106],[-116.02664,51.2198],[-116.04923,51.22741],[-116.05969,51.2392],[-116.06518,51.24791],[-116.07408,51.24903],[-116.08118,51.25179],[-116.08929,51.25188],[-116.09181,51.25084],[-116.1006,51.25163],[-116.1117,51.25327],[-116.11458,51.25532],[-116.11454,51.25637],[-116.11938,51.25533],[-116.12238,51.25781],[-116.12513,51.25933],[-116.13448,51.26055],[-116.14408,51.26464],[-116.14867,51.26472],[-116.15326,51.26336],[-116.15406,51.268],[-116.15734,51.27271],[-116.15916,51.27575],[-116.15557,51.28075],[-116.15284,51.28339],[-116.15158,51.2871],[-116.15529,51.2882],[-116.15792,51.2901],[-116.15976,51.29212],[-116.16019,51.29603],[-116.16421,51.29778],[-116.16803,51.29715],[-116.17416,51.29738],[-116.17946,51.29537],[-116.18213,51.29544],[-116.18257,51.29636],[-116.18636,51.29837],[-116.18845,51.30146],[-116.19778,51.29966],[-116.20091,51.29623],[-116.20343,51.29522],[-116.20676,51.2962],[-116.21006,51.29479],[-116.2191,51.29161],[-116.2191,51.29447],[-116.22051,51.29499],[-116.22317,51.29812],[-116.22669,51.29973],[-116.22703,51.3015],[-116.22832,51.30187],[-116.23261,51.30176],[-116.23595,51.30275],[-116.24338,51.30141],[-116.24559,51.30251],[-116.24897,51.30498],[-116.25668,51.30809],[-116.25984,51.3097],[-116.26798,51.31195],[-116.2701,51.31533],[-116.27458,51.31939],[-116.27481,51.32814],[-116.27879,51.3292],[-116.28123,51.33007],[-116.28254,51.33145],[-116.2824,51.33219],[-116.28495,51.33325],[-116.28672,51.33454],[-116.28721,51.33802],[-116.28769,51.34204],[-116.28998,51.34308],[-116.28348,51.34891],[-116.28231,51.35093],[-116.27731,51.35465],[-116.27991,51.35964],[-116.2778,51.36169],[-116.28909,51.36414],[-116.29059,51.36358],[-116.29341,51.3648],[-116.29864,51.36919],[-116.30033,51.37093],[-116.3027,51.37137],[-116.30579,51.3772],[-116.3115,51.38499],[-116.30817,51.38598],[-116.29845,51.39188],[-116.29191,51.39716],[-116.29319,51.39951],[-116.29369,51.40159],[-116.29265,51.40357],[-116.28632,51.40556],[-116.28427,51.40681],[-116.28255,51.40683],[-116.28497,51.4118],[-116.28799,51.4188],[-116.29327,51.42547],[-116.29421,51.42999],[-116.28554,51.43531],[-116.28803,51.44854],[-116.28449,51.44937],[-116.28396,51.4564],[-116.29044,51.46116],[-116.29248,51.46181],[-116.30868,51.46279],[-116.31506,51.46555],[-116.31698,51.46505],[-116.31839,51.46318],[-116.32237,51.46244],[-116.33808,51.46433],[-116.34657,51.46952],[-116.36056,51.47085],[-116.362,51.47364],[-116.36799,51.47865],[-116.36901,51.48301],[-116.37991,51.48843],[-116.38442,51.49273],[-116.38824,51.49992],[-116.38957,51.50006],[-116.39247,51.50443],[-116.3939,51.50559],[-116.39638,51.51256],[-116.39472,51.51489],[-116.39349,51.51796],[-116.39353,51.52227],[-116.39536,51.52556],[-116.38789,51.5274],[-116.38332,51.52959],[-116.38218,51.53103],[-116.38294,51.53266],[-116.39058,51.54362],[-116.39099,51.54562],[-116.40142,51.54651],[-116.40742,51.54899],[-116.4153,51.55323],[-116.42206,51.55506],[-116.42875,51.55422],[-116.42969,51.55462],[-116.42899,51.55647],[-116.4374,51.55836],[-116.44057,51.55705],[-116.45292,51.56059],[-116.45532,51.56248],[-116.46071,51.56378],[-116.46474,51.56582],[-116.46495,51.56816],[-116.46879,51.56997],[-116.46869,51.57317],[-116.47054,51.57602],[-116.47333,51.58266],[-116.47114,51.58688],[-116.46904,51.58801],[-116.46612,51.59411],[-116.46639,51.59678],[-116.46907,51.60175],[-116.47158,51.60474],[-116.4762,51.60762],[-116.48417,51.61029],[-116.49103,51.61238],[-116.48926,51.61435],[-116.48894,51.61663],[-116.49545,51.6198],[-116.49956,51.62335],[-116.50025,51.6254],[-116.4999,51.62765],[-116.50583,51.62812],[-116.51356,51.62757],[-116.52083,51.6288],[-116.5298,51.63157],[-116.53645,51.63865],[-116.54185,51.63878],[-116.54597,51.63822],[-116.57009,51.64702],[-116.57051,51.65287],[-116.57484,51.65375],[-116.5776,51.65317],[-116.58045,51.65308],[-116.59503,51.66187],[-116.59697,51.66462],[-116.59608,51.66652],[-116.59009,51.66814],[-116.58864,51.67013],[-116.58754,51.67298],[-116.58901,51.67563],[-116.59142,51.67765],[-116.59009,51.67921],[-116.58704,51.68248],[-116.58675,51.68544],[-116.58141,51.68748],[-116.58354,51.69239],[-116.5896,51.69413],[-116.58121,51.69729],[-116.58135,51.69881],[-116.58476,51.70128],[-116.58476,51.70373],[-116.58527,51.70565],[-116.5876,51.70923],[-116.58605,51.71057],[-116.58546,51.71276],[-116.58808,51.71587],[-116.59453,51.71749],[-116.5985,51.72384],[-116.60652,51.72553],[-116.6105,51.72395],[-116.61714,51.72517],[-116.62033,51.72691],[-116.623,51.7275],[-116.62427,51.72728],[-116.63121,51.7314],[-116.63372,51.73411],[-116.63361,51.73544],[-116.62941,51.73719],[-116.62834,51.74142],[-116.62909,51.74353],[-116.62815,51.74486],[-116.63678,51.74838],[-116.64032,51.75114],[-116.64657,51.75221],[-116.65034,51.75369],[-116.65118,51.75615],[-116.65051,51.76013],[-116.64963,51.76278],[-116.65117,51.76498],[-116.65099,51.76675],[-116.64823,51.77164],[-116.64694,51.77664],[-116.64442,51.77843],[-116.64575,51.78273],[-116.64317,51.7867],[-116.64621,51.78898],[-116.64823,51.79088],[-116.64982,51.79211],[-116.65155,51.79232],[-116.65379,51.79294],[-116.65523,51.79453],[-116.65598,51.79688],[-116.65436,51.80132],[-116.65567,51.8018],[-116.65788,51.80331],[-116.65913,51.80517],[-116.6642,51.8053],[-116.6671,51.80442],[-116.66669,51.80601],[-116.67743,51.81139],[-116.67967,51.81305],[-116.68214,51.81208],[-116.68856,51.80776],[-116.69239,51.80633],[-116.69452,51.80363],[-116.7035,51.80156],[-116.70682,51.80234],[-116.71049,51.80106],[-116.71552,51.79865],[-116.71689,51.79881],[-116.7207,51.8013],[-116.72301,51.80396],[-116.72505,51.80475],[-116.73228,51.80598],[-116.74422,51.80661],[-116.7489,51.80509],[-116.75453,51.79987],[-116.75964,51.78756],[-116.76534,51.7846],[-116.77294,51.77479],[-116.77814,51.77242],[-116.78217,51.76896],[-116.78518,51.76401],[-116.78711,51.76334],[-116.79161,51.76395],[-116.79467,51.76113],[-116.79619,51.75804],[-116.80169,51.7544],[-116.80264,51.75305],[-116.80428,51.75225],[-116.80643,51.75043],[-116.80684,51.74712],[-116.80996,51.74513],[-116.81106,51.74247],[-116.8112,51.74054],[-116.8135,51.73962],[-116.81742,51.73972],[-116.81926,51.73862],[-116.81999,51.73742],[-116.8184,51.73543],[-116.81516,51.73316],[-116.8078,51.72775],[-116.80493,51.72591],[-116.7981,51.72357],[-116.79986,51.72127],[-116.80016,51.71689],[-116.80376,51.71537],[-116.80691,51.71308],[-116.80893,51.71036],[-116.80882,51.70722],[-116.80973,51.70536],[-116.81297,51.70539],[-116.81926,51.70686],[-116.82046,51.7048],[-116.82601,51.70407],[-116.82813,51.70429],[-116.83161,51.70401],[-116.83406,51.7034],[-116.83656,51.7033],[-116.83863,51.7048],[-116.84913,51.70538],[-116.85358,51.70831],[-116.86077,51.70785],[-116.86295,51.70631],[-116.86521,51.70519],[-116.87034,51.7044],[-116.87439,51.70465],[-116.87647,51.70569],[-116.87795,51.70548],[-116.87824,51.70422],[-116.88727,51.70295],[-116.89597,51.70269],[-116.90259,51.70376],[-116.90742,51.70665],[-116.9098,51.70712],[-116.91195,51.70638],[-116.91608,51.70747],[-116.92063,51.70979],[-116.9181,51.71181],[-116.91695,51.71362],[-116.92264,51.71709],[-116.9261,51.71752],[-116.9278,51.71945],[-116.93002,51.72142],[-116.92643,51.72378],[-116.92624,51.72478],[-116.92682,51.72679],[-116.92652,51.72906],[-116.93248,51.72951],[-116.94368,51.73393],[-116.94313,51.73482],[-116.94461,51.74169],[-116.94627,51.74273],[-116.94935,51.74219],[-116.95428,51.74319],[-116.95562,51.74592],[-116.95718,51.7471],[-116.95899,51.74786],[-116.96065,51.75204],[-116.96872,51.756],[-116.9762,51.76007],[-116.97507,51.76086],[-116.97275,51.76133],[-116.97204,51.76302],[-116.97176,51.76498],[-116.9732,51.76698],[-116.97295,51.76814],[-116.97373,51.76942],[-116.9686,51.77083],[-116.96801,51.77139],[-116.96709,51.77338],[-116.96324,51.77426],[-116.96285,51.7753],[-116.96373,51.77632],[-116.9646,51.77824],[-116.96434,51.78005],[-116.96476,51.78164],[-116.96602,51.78299],[-116.96608,51.78422],[-116.96499,51.7859],[-116.96604,51.78773],[-116.96364,51.79024],[-116.96116,51.7909],[-116.96399,51.7949],[-116.96844,51.79831],[-116.97569,51.80288],[-116.98603,51.80851],[-116.98897,51.81108],[-116.98763,51.81362],[-116.98526,51.81611],[-116.98504,51.81834],[-116.98431,51.8203],[-116.98807,51.8229],[-116.98634,51.82453],[-116.98633,51.82671],[-116.98111,51.82845],[-116.97987,51.83096],[-116.97889,51.83362],[-116.97974,51.83554],[-116.98111,51.83672],[-116.98439,51.83598],[-116.99073,51.83652],[-116.99509,51.8368],[-116.99978,51.83656],[-117.00015,51.83548],[-117.00567,51.83605],[-117.01932,51.84294],[-117.02746,51.85064],[-117.03208,51.85428],[-117.03343,51.85627],[-117.03431,51.8598],[-117.03306,51.86073],[-117.03061,51.86451],[-117.03084,51.86888],[-117.02696,51.87442],[-117.02335,51.87996],[-117.01881,51.88335],[-117.01453,51.88487],[-117.01329,51.88712],[-117.01077,51.88963],[-117.0116,51.8905],[-117.01947,51.89137],[-117.0232,51.89438],[-117.03139,51.89889],[-117.03289,51.90155],[-117.03774,51.90486],[-117.04224,51.90823],[-117.0467,51.9102],[-117.04854,51.9126],[-117.05235,51.91558],[-117.05937,51.91732],[-117.06647,51.92228],[-117.07358,51.92698],[-117.0778,51.92921],[-117.07972,51.93075],[-117.0815,51.93344],[-117.08611,51.93687],[-117.08891,51.93803],[-117.09249,51.93833],[-117.09771,51.93974],[-117.09684,51.94324],[-117.10086,51.94766],[-117.10213,51.95009],[-117.10091,51.95306],[-117.10167,51.95486],[-117.10321,51.95652],[-117.11024,51.95574],[-117.11728,51.95517],[-117.12017,51.95568],[-117.13053,51.96513],[-117.1316,51.96692],[-117.13328,51.96823],[-117.1357,51.96837],[-117.13812,51.96909],[-117.14485,51.97267],[-117.14844,51.97346],[-117.15434,51.97195],[-117.16366,51.97262],[-117.16774,51.97374],[-117.1727,51.9739],[-117.17723,51.97432],[-117.18629,51.97695],[-117.18865,51.97657],[-117.19142,51.97732],[-117.19599,51.97907],[-117.19724,51.98015],[-117.19749,51.98541],[-117.19644,51.98635],[-117.19692,51.9877],[-117.19937,51.98905],[-117.19959,51.9908],[-117.2017,51.99286],[-117.2051,51.99453],[-117.21088,51.99587],[-117.21649,51.99732],[-117.21721,51.99903],[-117.21849,52.0004],[-117.21951,52.0022],[-117.22212,52.00516],[-117.22425,52.0069],[-117.22617,52.00869],[-117.22914,52.00931],[-117.23238,52.01035],[-117.2336,52.01174],[-117.23198,52.01642],[-117.22725,52.01652],[-117.22279,52.01741],[-117.21676,52.02225],[-117.21538,52.02535],[-117.21468,52.02846],[-117.22067,52.03212],[-117.22366,52.03489],[-117.22594,52.03548],[-117.22702,52.03612],[-117.22791,52.03826],[-117.23207,52.04105],[-117.23618,52.0377],[-117.24051,52.03624],[-117.24439,52.03533],[-117.2481,52.03481],[-117.25033,52.03508],[-117.25203,52.03855],[-117.25692,52.04089],[-117.27055,52.04886],[-117.26848,52.05579],[-117.282,52.05962],[-117.28891,52.06367],[-117.29206,52.06426],[-117.29453,52.06518],[-117.29697,52.06864],[-117.30238,52.07173],[-117.30487,52.0743],[-117.30496,52.0755],[-117.30196,52.07755],[-117.29878,52.07775],[-117.29595,52.07929],[-117.29342,52.0823],[-117.29192,52.08531],[-117.29571,52.09095],[-117.29847,52.09427],[-117.31756,52.1941],[-117.32697,52.18985],[-117.33432,52.14854],[-117.3813,52.13772],[-117.5002,52.14425],[-117.50993,52.15779],[-117.52318,52.15821],[-117.61123,52.14424],[-117.62932,52.17475],[-117.66351,52.19785],[-117.74318,52.19399],[-117.74156,52.20311],[-117.81822,52.22611],[-117.82219,52.24634],[-117.83955,52.27413],[-117.79591,52.29265],[-117.77793,52.31889],[-117.75296,52.31644],[-117.723,52.35558],[-117.7049,52.3575],[-117.70585,52.36529],[-117.72966,52.38219],[-117.75875,52.41082],[-117.76657,52.41768],[-117.83995,52.42111],[-117.88699,52.4261],[-117.96691,52.46976],[-117.98785,52.50018],[-118.00335,52.49252],[-118.0132,52.48395],[-118.02185,52.47246],[-118.02055,52.46531],[-118.01856,52.45931],[-118.02127,52.45558],[-118.04207,52.45894],[-118.05068,52.45717],[-118.05285,52.4496],[-118.03659,52.44151],[-118.03045,52.43802],[-118.04068,52.41853],[-118.04421,52.39845],[-118.138,52.40751],[-118.14209,52.40237],[-118.15633,52.39618],[-118.16386,52.39376],[-118.17754,52.38592],[-118.18228,52.3828],[-118.17881,52.3795],[-118.17832,52.37516],[-118.18023,52.3727],[-118.20045,52.37265],[-118.21277,52.3703],[-118.2194,52.37418],[-118.22602,52.38032],[-118.2203,52.38504],[-118.21981,52.3918],[-118.22087,52.39757],[-118.2261,52.39946],[-118.23391,52.40292],[-118.24073,52.40293],[-118.2445,52.40806],[-118.24321,52.4125],[-118.23995,52.41767],[-118.23977,52.427],[-118.24277,52.43253],[-118.25135,52.43986],[-118.25375,52.44437],[-118.25538,52.4495],[-118.19344,52.47784],[-118.23553,52.49021],[-118.2737,52.52348],[-118.28921,52.53847],[-118.27281,52.56595],[-118.33267,52.58022],[-118.33409,52.59299],[-118.33363,52.60618],[-118.35245,52.61061],[-118.35454,52.63366],[-118.301,52.65409],[-118.29393,52.66828],[-118.29012,52.67769],[-118.34334,52.70892],[-118.34287,52.73856],[-118.39114,52.76041],[-118.42241,52.77577],[-118.41302,52.80596],[-118.39965,52.82442],[-118.40108,52.8405],[-118.40152,52.84048],[-118.40232,52.84258],[-118.39833,52.84444],[-118.39146,52.84547],[-118.387,52.84712],[-118.3889,52.8488],[-118.39573,52.8492],[-118.40308,52.85074],[-118.4208,52.85141],[-118.43131,52.85119],[-118.44443,52.85224],[-118.45255,52.85539],[-118.45838,52.85956],[-118.46103,52.8666],[-118.46119,52.86928],[-118.45596,52.87224],[-118.44935,52.87908],[-118.44857,52.88027],[-118.44827,52.88525],[-118.46231,52.89294],[-118.46577,52.89404],[-118.46931,52.8956],[-118.47052,52.89738],[-118.47667,52.90077],[-118.48569,52.90243],[-118.50033,52.90626],[-118.51085,52.90518],[-118.52223,52.89809],[-118.52928,52.90017],[-118.53538,52.90302],[-118.54371,52.90846],[-118.5533,52.90541],[-118.56194,52.90112],[-118.56501,52.89549],[-118.56955,52.88894],[-118.57536,52.88524],[-118.58633,52.88239],[-118.60812,52.87953],[-118.61392,52.88386],[-118.61426,52.90007],[-118.6067,52.90405],[-118.6203,52.91357],[-118.62094,52.91616],[-118.61346,52.93602],[-118.63844,52.95186],[-118.65136,52.95553],[-118.66019,52.96385],[-118.66105,52.97254],[-118.6712,52.97831],[-118.66984,52.98343],[-118.66166,52.98734],[-118.64928,52.99151],[-118.64902,53.0003],[-118.64085,52.99933],[-118.64714,53.01102],[-118.65266,53.01832],[-118.64977,53.02509],[-118.65528,53.0347],[-118.66876,53.04252],[-118.67969,53.04128],[-118.68569,53.03497],[-118.6959,53.03279],[-118.70055,53.04436],[-118.71054,53.05234],[-118.72631,53.0602],[-118.74614,53.05233],[-118.7564,53.04383],[-118.75901,53.03801],[-118.77626,53.04528],[-118.759,53.0658],[-118.76998,53.07438],[-118.75445,53.08279],[-118.7487,53.08826],[-118.74871,53.09724],[-118.73679,53.10633],[-118.7295,53.11542],[-118.73236,53.11924],[-118.7723,53.13295],[-118.77937,53.1387],[-118.78395,53.14486],[-118.7806,53.14771],[-118.77922,53.15098],[-118.78626,53.15906],[-118.7955,53.16306],[-118.80604,53.16536],[-118.81701,53.17163],[-118.82352,53.17301],[-118.8314,53.18304],[-118.84761,53.18577],[-118.86211,53.19098],[-118.87908,53.2057],[-118.90876,53.20948],[-118.91578,53.21182],[-118.92357,53.2252],[-118.93931,53.23354],[-118.94716,53.23879],[-118.95586,53.23634],[-118.96525,53.23677],[-118.97476,53.24173],[-118.98421,53.23885],[-119.02405,53.23187],[-119.02647,53.22642],[-119.01841,53.21944],[-118.99921,53.21276],[-118.99949,53.19292],[-119.00812,53.18646],[-119.01985,53.17013],[-119.02888,53.16422],[-118.9999,53.14855],[-119.02483,53.13459],[-119.02479,53.12669],[-119.048,53.12699],[-119.0469,53.14483],[-119.06866,53.15752],[-119.08871,53.16567],[-119.11954,53.16165],[-119.13136,53.17145],[-119.14113,53.18125],[-119.14624,53.19097],[-119.175,53.18469],[-119.19621,53.18541],[-119.21913,53.19415],[-119.23313,53.19363],[-119.23297,53.1818],[-119.24319,53.17835],[-119.25684,53.17675],[-119.25319,53.18481],[-119.25159,53.19905],[-119.26362,53.21382],[-119.28802,53.2401],[-119.29183,53.24992],[-119.3013,53.24983],[-119.30082,53.25631],[-119.32522,53.26976],[-119.33415,53.27885],[-119.34068,53.28712],[-119.32973,53.29637],[-119.35589,53.31237],[-119.34703,53.32632],[-119.35569,53.33997],[-119.39057,53.36062],[-119.40554,53.36796],[-119.41074,53.36525],[-119.4232,53.36268],[-119.43669,53.35765],[-119.44987,53.35657],[-119.45928,53.35712],[-119.4728,53.36024],[-119.48152,53.36316],[-119.4881,53.36373],[-119.50017,53.36266],[-119.50011,53.36625],[-119.51756,53.37006],[-119.52348,53.369],[-119.53351,53.3659],[-119.54895,53.36735],[-119.55839,53.36966],[-119.56611,53.37258],[-119.57812,53.37515],[-119.59022,53.38121],[-119.59854,53.38359],[-119.60453,53.38363],[-119.59753,53.36787],[-119.59872,53.36575],[-119.60404,53.36485],[-119.61159,53.36511],[-119.61912,53.36378],[-119.6239,53.35948],[-119.62541,53.36369],[-119.63149,53.36753],[-119.63756,53.36912],[-119.64513,53.36872],[-119.66404,53.36832],[-119.66888,53.36772],[-119.67668,53.37123],[-119.68041,53.37791],[-119.67968,53.38171],[-119.68327,53.38444],[-119.69544,53.39044],[-119.7009,53.38893],[-119.70876,53.38845],[-119.71711,53.38846],[-119.72547,53.38869],[-119.72569,53.39138],[-119.73103,53.40214],[-119.73614,53.40852],[-119.73936,53.41182],[-119.7516,53.42058],[-119.75835,53.42626],[-119.75999,53.43129],[-119.75845,53.43485],[-119.75674,53.4375],[-119.75813,53.44012],[-119.76268,53.4414],[-119.77153,53.44574],[-119.77329,53.44921],[-119.77368,53.45228],[-119.77553,53.4557],[-119.77961,53.46107],[-119.78099,53.46664],[-119.78374,53.47026],[-119.78778,53.47215],[-119.79079,53.47537],[-119.79059,53.4793],[-119.78781,53.48247],[-119.78218,53.48512],[-119.77928,53.48875],[-119.78037,53.49161],[-119.80033,53.50011],[-119.81274,53.50014],[-119.82996,53.51477],[-119.8331,53.51939],[-119.84054,53.5155],[-119.84661,53.51171],[-119.85019,53.50766],[-119.85385,53.49994],[-119.87022,53.49994],[-119.87554,53.50633],[-119.88336,53.51004],[-119.88982,53.51251],[-119.89947,53.519],[-119.90031,53.53301],[-119.89132,53.53571],[-119.88113,53.54127],[-119.87137,53.54418],[-119.86212,53.54852],[-119.86105,53.55657],[-119.86335,53.56162],[-119.86819,53.56716],[-119.8732,53.57146],[-119.88664,53.57636],[-119.89149,53.57779],[-119.89637,53.58152],[-119.89885,53.58576],[-119.90278,53.58996],[-119.90586,53.5968],[-119.91065,53.60121],[-119.91676,53.60339],[-119.92323,53.60537],[-119.93031,53.61046],[-119.92582,53.61457],[-119.91712,53.6167],[-119.90986,53.6177],[-119.90268,53.62017],[-119.89378,53.61953],[-119.88499,53.6176],[-119.87929,53.6168],[-119.86975,53.61386],[-119.86042,53.60964],[-119.85402,53.60772],[-119.84602,53.60789],[-119.83625,53.6091],[-119.82939,53.60903],[-119.81665,53.60408],[-119.80148,53.60425],[-119.79304,53.60235],[-119.78743,53.59882],[-119.7841,53.594],[-119.77626,53.59113],[-119.75921,53.59098],[-119.74863,53.59338],[-119.74349,53.59763],[-119.73954,53.60209],[-119.73408,53.60462],[-119.72262,53.60842],[-119.71487,53.61168],[-119.71336,53.61468],[-119.71681,53.61883],[-119.72164,53.62257],[-119.72639,53.62841],[-119.73255,53.632],[-119.73733,53.63701],[-119.73687,53.64402],[-119.73573,53.65031],[-119.73553,53.65661],[-119.73464,53.6632],[-119.7475,53.66436],[-119.75564,53.66496],[-119.7577,53.66834],[-119.76079,53.67158],[-119.76834,53.67499],[-119.77356,53.6797],[-119.77548,53.68287],[-119.77311,53.68558],[-119.77668,53.69023],[-119.77962,53.69287],[-119.78385,53.69529],[-119.78681,53.69921],[-119.78673,53.70135],[-119.78897,53.70346],[-119.79271,53.70598],[-119.79728,53.70776],[-119.80541,53.7065],[-119.81354,53.70463],[-119.82182,53.7006],[-119.8344,53.69708],[-119.83953,53.69737],[-119.84502,53.70234],[-119.84192,53.70796],[-119.84432,53.7147],[-119.85427,53.71351],[-119.86079,53.71537],[-119.87045,53.71477],[-119.88039,53.71267],[-119.88956,53.71052],[-119.9034,53.70983],[-119.90808,53.71064],[-119.91567,53.71727],[-119.91329,53.72036],[-119.90078,53.72306],[-119.89897,53.72602],[-119.8975,53.73059],[-119.90211,53.73843],[-119.8957,53.74488],[-119.88743,53.75003],[-119.89262,53.75743],[-119.88884,53.76209],[-119.88577,53.76841],[-119.88544,53.77524],[-119.8882,53.77943],[-119.94234,53.77584],[-119.95919,53.78107],[-119.97195,53.78891],[-119.98309,53.79705],[-119.97119,53.80172],[-119.97748,53.80538],[-120.00004,53.80621],[-120,60]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central Zone of North America","cq_zone_number":4,"cq_zone_name_loc":[45,-100]},"geometry":{"type":"Polygon","coordinates":[[[-109.05004,31.33249],[-109.05381,35.59184],[-109.0417,38.16582],[-109.06006,38.27589],[-109.05007,41.00066],[-109.2327,41.00213],[-109.36797,40.99975],[-109.71746,40.99738],[-110.05116,40.99781],[-110.37386,40.99409],[-111.04672,40.99789],[-111.04898,44.47404],[-111.05067,44.47469],[-111.05162,44.47538],[-111.05244,44.47588],[-111.05427,44.47589],[-111.05617,44.47505],[-111.05933,44.47548],[-111.06267,44.47604],[-111.06566,44.47711],[-111.06933,44.47959],[-111.07215,44.48085],[-111.07371,44.48111],[-111.07618,44.48121],[-111.07818,44.48106],[-111.07931,44.48134],[-111.08413,44.48293],[-111.08833,44.4836],[-111.09089,44.48416],[-111.09334,44.48504],[-111.09639,44.48622],[-111.09814,44.48679],[-111.09952,44.48746],[-111.10003,44.48753],[-111.10201,44.48702],[-111.10343,44.48654],[-111.10483,44.48623],[-111.10658,44.48634],[-111.10784,44.48707],[-111.11416,44.49276],[-111.11444,44.49334],[-111.11558,44.49384],[-111.11824,44.49395],[-111.12085,44.49397],[-111.122,44.49362],[-111.12268,44.49365],[-111.12364,44.49518],[-111.12422,44.49547],[-111.12548,44.49603],[-111.12574,44.49684],[-111.12623,44.49708],[-111.12733,44.49899],[-111.12775,44.49911],[-111.12887,44.49906],[-111.1314,44.49993],[-111.13846,44.51572],[-111.13943,44.51709],[-111.13909,44.5186],[-111.13783,44.52064],[-111.13172,44.53257],[-111.14137,44.53562],[-111.142,44.53555],[-111.14229,44.53563],[-111.1466,44.53524],[-111.15133,44.53492],[-111.15607,44.54245],[-111.15679,44.54282],[-111.15902,44.54588],[-111.15962,44.54638],[-111.16102,44.5464],[-111.16424,44.54658],[-111.16704,44.54726],[-111.17354,44.54914],[-111.17535,44.55016],[-111.17701,44.55092],[-111.17935,44.55286],[-111.18066,44.55416],[-111.18101,44.55495],[-111.18076,44.55613],[-111.1803,44.55743],[-111.18037,44.55984],[-111.18067,44.56302],[-111.18065,44.56449],[-111.18025,44.56556],[-111.17989,44.56673],[-111.18078,44.56904],[-111.19549,44.57342],[-111.20151,44.57572],[-111.20753,44.57498],[-111.21037,44.57498],[-111.21266,44.5752],[-111.21418,44.57559],[-111.21568,44.57549],[-111.21683,44.57513],[-111.21856,44.57516],[-111.21943,44.57536],[-111.22038,44.57626],[-111.22134,44.57694],[-111.22277,44.57696],[-111.22405,44.57682],[-111.22486,44.57649],[-111.22584,44.57634],[-111.22721,44.57642],[-111.22801,44.57667],[-111.22785,44.57735],[-111.22764,44.57782],[-111.22803,44.57848],[-111.22953,44.57919],[-111.23035,44.5797],[-111.23057,44.58065],[-111.23052,44.58161],[-111.22995,44.58266],[-111.2298,44.58332],[-111.23034,44.5841],[-111.23102,44.58516],[-111.23101,44.5859],[-111.23148,44.58756],[-111.23151,44.58861],[-111.23249,44.58961],[-111.23365,44.59058],[-111.23429,44.59099],[-111.23415,44.59157],[-111.2329,44.59202],[-111.23205,44.5928],[-111.23165,44.59427],[-111.23151,44.59518],[-111.23203,44.59735],[-111.23332,44.60005],[-111.23555,44.60077],[-111.23587,44.60142],[-111.23551,44.60233],[-111.23485,44.60296],[-111.23454,44.60363],[-111.23442,44.60437],[-111.23532,44.60528],[-111.23652,44.6062],[-111.23746,44.60742],[-111.23759,44.60879],[-111.23733,44.60994],[-111.23788,44.61054],[-111.24114,44.6116],[-111.24193,44.61213],[-111.24247,44.61235],[-111.24229,44.61343],[-111.24151,44.61424],[-111.24047,44.61447],[-111.23964,44.61451],[-111.23877,44.61539],[-111.23707,44.61538],[-111.23642,44.61616],[-111.23504,44.61652],[-111.23312,44.61681],[-111.23062,44.6175],[-111.22943,44.61745],[-111.22867,44.61795],[-111.22781,44.6182],[-111.22693,44.6181],[-111.22597,44.61816],[-111.22224,44.62023],[-111.22035,44.62168],[-111.21923,44.62211],[-111.21902,44.62226],[-111.21925,44.62261],[-111.22198,44.62346],[-111.22308,44.62389],[-111.22472,44.62483],[-111.22653,44.62614],[-111.22707,44.62728],[-111.22671,44.62851],[-111.22845,44.6301],[-111.23012,44.63129],[-111.23178,44.63232],[-111.23321,44.63442],[-111.23485,44.63561],[-111.23612,44.63674],[-111.23774,44.638],[-111.23867,44.63918],[-111.24058,44.64027],[-111.24154,44.64135],[-111.24229,44.64259],[-111.24323,44.64361],[-111.24475,44.64392],[-111.24656,44.64386],[-111.24819,44.64368],[-111.24958,44.64409],[-111.25078,44.6462],[-111.25117,44.64651],[-111.25142,44.64744],[-111.25128,44.64812],[-111.2514,44.64861],[-111.25318,44.64961],[-111.25326,44.65019],[-111.25265,44.65113],[-111.25501,44.65102],[-111.25721,44.65041],[-111.25803,44.65008],[-111.26049,44.64967],[-111.26175,44.64984],[-111.2629,44.64965],[-111.26371,44.64902],[-111.26566,44.64867],[-111.26636,44.64796],[-111.26777,44.64767],[-111.26971,44.64697],[-111.27028,44.64684],[-111.27111,44.6471],[-111.27183,44.64781],[-111.2725,44.6483],[-111.27374,44.64875],[-111.27505,44.64896],[-111.27669,44.64959],[-111.27737,44.6505],[-111.27837,44.65129],[-111.27989,44.65354],[-111.28069,44.65518],[-111.27787,44.65518],[-111.27689,44.65567],[-111.27609,44.65641],[-111.27552,44.65715],[-111.27543,44.65754],[-111.27547,44.65835],[-111.27503,44.65886],[-111.27403,44.65951],[-111.27313,44.66063],[-111.27253,44.66206],[-111.27146,44.66275],[-111.269,44.66325],[-111.26735,44.66435],[-111.26638,44.66669],[-111.26731,44.66779],[-111.2688,44.66833],[-111.27004,44.66935],[-111.27115,44.67043],[-111.27292,44.67159],[-111.27473,44.6733],[-111.27542,44.67415],[-111.27645,44.6751],[-111.27668,44.67685],[-111.27643,44.67855],[-111.27722,44.67986],[-111.27818,44.68117],[-111.27968,44.68231],[-111.28143,44.68353],[-111.28284,44.68369],[-111.28367,44.68397],[-111.28445,44.68409],[-111.28509,44.68455],[-111.28608,44.68489],[-111.28824,44.68606],[-111.29128,44.68611],[-111.29169,44.68624],[-111.29256,44.68705],[-111.29325,44.68792],[-111.29333,44.68836],[-111.2945,44.6892],[-111.29524,44.68964],[-111.29602,44.69034],[-111.29646,44.69096],[-111.29697,44.6914],[-111.29682,44.69241],[-111.29701,44.69314],[-111.29744,44.69353],[-111.29728,44.69408],[-111.29657,44.69513],[-111.29637,44.69623],[-111.29613,44.69687],[-111.29526,44.69767],[-111.29485,44.69886],[-111.29482,44.70005],[-111.2953,44.70113],[-111.29593,44.70172],[-111.2963,44.70223],[-111.29738,44.70254],[-111.3003,44.70384],[-111.30113,44.70572],[-111.3017,44.70607],[-111.30335,44.70639],[-111.30502,44.70712],[-111.30584,44.70723],[-111.30794,44.70816],[-111.30881,44.70905],[-111.3105,44.71021],[-111.31272,44.71136],[-111.31498,44.71263],[-111.31655,44.71362],[-111.31742,44.71402],[-111.31804,44.71457],[-111.31821,44.71506],[-111.31833,44.71567],[-111.31895,44.71614],[-111.32138,44.71777],[-111.32253,44.71869],[-111.32312,44.72122],[-111.32304,44.72192],[-111.32315,44.72248],[-111.32361,44.72355],[-111.32369,44.72444],[-111.32342,44.72495],[-111.32344,44.72563],[-111.32281,44.72664],[-111.3228,44.72772],[-111.32321,44.72864],[-111.32383,44.72921],[-111.32483,44.72977],[-111.32598,44.7302],[-111.32713,44.73042],[-111.32844,44.73117],[-111.3292,44.73131],[-111.33026,44.73124],[-111.3315,44.73119],[-111.33246,44.73125],[-111.33424,44.73195],[-111.3352,44.73247],[-111.33707,44.73318],[-111.3377,44.73269],[-111.33988,44.73041],[-111.34135,44.7293],[-111.34283,44.72842],[-111.34483,44.72762],[-111.34613,44.72686],[-111.34821,44.72545],[-111.35054,44.72572],[-111.35295,44.72617],[-111.35379,44.72668],[-111.35518,44.72712],[-111.35568,44.72751],[-111.35705,44.72894],[-111.35748,44.72928],[-111.35871,44.73037],[-111.35963,44.73152],[-111.36094,44.73352],[-111.36192,44.73474],[-111.36401,44.73629],[-111.36499,44.73688],[-111.36606,44.73762],[-111.36672,44.73833],[-111.36648,44.73903],[-111.36641,44.74037],[-111.36671,44.74103],[-111.36668,44.74155],[-111.36627,44.74222],[-111.36675,44.7427],[-111.36883,44.74352],[-111.3698,44.74421],[-111.37111,44.74579],[-111.37222,44.74658],[-111.37436,44.74762],[-111.37487,44.74804],[-111.37509,44.74845],[-111.37504,44.74889],[-111.37466,44.74931],[-111.37454,44.74976],[-111.37477,44.75028],[-111.38229,44.75403],[-111.38501,44.75513],[-111.38594,44.75515],[-111.38749,44.75451],[-111.3902,44.75363],[-111.39244,44.75313],[-111.39387,44.75257],[-111.39531,44.75067],[-111.39484,44.74995],[-111.39442,44.74975],[-111.39545,44.74936],[-111.39586,44.74893],[-111.39593,44.74824],[-111.39675,44.74812],[-111.39711,44.74736],[-111.39782,44.74669],[-111.39639,44.74641],[-111.3954,44.74598],[-111.39443,44.7446],[-111.39538,44.7426],[-111.39564,44.74067],[-111.39534,44.73972],[-111.39534,44.73941],[-111.39655,44.73915],[-111.39731,44.73789],[-111.39811,44.73697],[-111.39919,44.73505],[-111.39921,44.73368],[-111.39813,44.73048],[-111.39714,44.72875],[-111.39834,44.7264],[-111.39774,44.72478],[-111.39861,44.72333],[-111.40057,44.72209],[-111.40227,44.72182],[-111.40418,44.72161],[-111.40484,44.7204],[-111.406,44.71943],[-111.40697,44.71838],[-111.40701,44.71769],[-111.40838,44.71599],[-111.41004,44.715],[-111.41167,44.71406],[-111.41264,44.71294],[-111.41426,44.71075],[-111.41492,44.71059],[-111.41577,44.71086],[-111.41739,44.71212],[-111.41876,44.71273],[-111.423,44.71376],[-111.42419,44.71399],[-111.4252,44.71483],[-111.42581,44.71611],[-111.42613,44.71653],[-111.42622,44.71772],[-111.42737,44.71844],[-111.42963,44.72016],[-111.43172,44.7207],[-111.43557,44.7207],[-111.43904,44.72052],[-111.44272,44.72022],[-111.44527,44.71852],[-111.44679,44.71727],[-111.44849,44.71737],[-111.45228,44.71682],[-111.45529,44.71615],[-111.4586,44.71574],[-111.46541,44.71383],[-111.46772,44.7124],[-111.46963,44.71079],[-111.47271,44.70926],[-111.47418,44.70883],[-111.4757,44.70856],[-111.47635,44.70796],[-111.4776,44.70781],[-111.4787,44.70715],[-111.48005,44.70667],[-111.48102,44.70686],[-111.48191,44.70717],[-111.48295,44.70699],[-111.48425,44.70715],[-111.48602,44.70762],[-111.48653,44.70695],[-111.48833,44.70611],[-111.48899,44.70555],[-111.48931,44.705],[-111.4894,44.7043],[-111.48932,44.70373],[-111.48932,44.70309],[-111.49012,44.70151],[-111.49024,44.70018],[-111.48998,44.69951],[-111.4878,44.69822],[-111.48746,44.69753],[-111.48735,44.69702],[-111.48741,44.69637],[-111.48725,44.69584],[-111.48607,44.69529],[-111.48554,44.69522],[-111.4842,44.69453],[-111.48373,44.69363],[-111.48326,44.69301],[-111.48301,44.69225],[-111.48343,44.69144],[-111.48334,44.69104],[-111.48299,44.69122],[-111.4829,44.69105],[-111.48372,44.68999],[-111.48388,44.68931],[-111.48474,44.68813],[-111.48492,44.68762],[-111.48313,44.68628],[-111.48234,44.68559],[-111.48059,44.68477],[-111.47995,44.68395],[-111.4785,44.68384],[-111.47824,44.6834],[-111.47876,44.68297],[-111.47807,44.68274],[-111.47795,44.68234],[-111.47745,44.68152],[-111.47615,44.68133],[-111.47509,44.68128],[-111.47391,44.68147],[-111.47329,44.681],[-111.47281,44.68052],[-111.47198,44.67998],[-111.47054,44.67993],[-111.46949,44.6797],[-111.46883,44.67929],[-111.46865,44.67872],[-111.46931,44.67815],[-111.4704,44.67733],[-111.47085,44.67672],[-111.47121,44.67583],[-111.47172,44.675],[-111.47268,44.67473],[-111.47341,44.67465],[-111.47429,44.67441],[-111.47457,44.67407],[-111.47498,44.67379],[-111.47605,44.67402],[-111.47682,44.67383],[-111.47684,44.67324],[-111.47655,44.66991],[-111.47595,44.6689],[-111.47466,44.66872],[-111.47363,44.66836],[-111.47289,44.6676],[-111.47264,44.66687],[-111.47314,44.66556],[-111.4736,44.66498],[-111.4761,44.66352],[-111.47861,44.66216],[-111.47889,44.66138],[-111.47836,44.66082],[-111.47795,44.66023],[-111.47836,44.65971],[-111.47894,44.65926],[-111.47922,44.65877],[-111.47972,44.65843],[-111.48058,44.65827],[-111.4806,44.65783],[-111.4808,44.6574],[-111.48128,44.65717],[-111.48256,44.65592],[-111.48341,44.65532],[-111.48445,44.655],[-111.48575,44.65475],[-111.48704,44.65441],[-111.48771,44.65398],[-111.48808,44.65333],[-111.48798,44.65233],[-111.48852,44.65078],[-111.48884,44.65039],[-111.48946,44.65002],[-111.49067,44.64978],[-111.491,44.64943],[-111.49115,44.64871],[-111.49146,44.64835],[-111.49184,44.64771],[-111.49198,44.64642],[-111.49192,44.6455],[-111.49208,44.64455],[-111.49191,44.6439],[-111.4913,44.64331],[-111.49036,44.64263],[-111.49032,44.64234],[-111.49058,44.64227],[-111.49101,44.6423],[-111.49159,44.64264],[-111.49229,44.64299],[-111.49374,44.64407],[-111.49435,44.64422],[-111.49561,44.64417],[-111.49656,44.64514],[-111.49799,44.64635],[-111.49866,44.64647],[-111.49895,44.64675],[-111.49923,44.64771],[-111.49949,44.64805],[-111.49989,44.64823],[-111.50073,44.64857],[-111.50248,44.64772],[-111.5083,44.64513],[-111.51661,44.64369],[-111.51703,44.64117],[-111.51513,44.64021],[-111.51401,44.63907],[-111.51228,44.6385],[-111.51056,44.6358],[-111.50892,44.63427],[-111.50789,44.63287],[-111.50647,44.63192],[-111.50523,44.63133],[-111.50445,44.6302],[-111.50292,44.62653],[-111.50664,44.62569],[-111.50825,44.62495],[-111.50925,44.62395],[-111.51046,44.62311],[-111.51318,44.62213],[-111.51559,44.62147],[-111.5161,44.62097],[-111.52171,44.61336],[-111.52127,44.61284],[-111.52013,44.61245],[-111.52034,44.61134],[-111.52577,44.60489],[-111.52227,44.60331],[-111.51912,44.60237],[-111.52013,44.60152],[-111.52247,44.60005],[-111.52462,44.59789],[-111.52424,44.59558],[-111.52309,44.59331],[-111.52139,44.59153],[-111.51986,44.58975],[-111.51932,44.58638],[-111.51916,44.58292],[-111.51521,44.58067],[-111.50667,44.57625],[-111.5028,44.57405],[-111.50122,44.57215],[-111.5011,44.57117],[-111.50299,44.56911],[-111.50402,44.56866],[-111.50568,44.56899],[-111.50731,44.56871],[-111.50833,44.56818],[-111.50932,44.56717],[-111.51002,44.56606],[-111.50998,44.56443],[-111.50915,44.56318],[-111.50738,44.56245],[-111.50487,44.56197],[-111.50204,44.56165],[-111.5008,44.56156],[-111.49932,44.56092],[-111.49632,44.56114],[-111.49564,44.56108],[-111.49496,44.56118],[-111.49343,44.56096],[-111.49202,44.5608],[-111.49104,44.56021],[-111.48933,44.55974],[-111.4878,44.55884],[-111.48653,44.5582],[-111.48609,44.55752],[-111.48534,44.55749],[-111.48471,44.55714],[-111.48365,44.55692],[-111.4831,44.55643],[-111.48062,44.55574],[-111.48041,44.55549],[-111.48058,44.55526],[-111.48049,44.5547],[-111.47864,44.55341],[-111.4762,44.55443],[-111.47596,44.55464],[-111.47553,44.55577],[-111.47509,44.55681],[-111.4733,44.55697],[-111.47233,44.5572],[-111.46931,44.55753],[-111.46946,44.55707],[-111.46899,44.5565],[-111.46853,44.5562],[-111.46811,44.55505],[-111.46892,44.55338],[-111.46922,44.55207],[-111.46802,44.5513],[-111.46784,44.55078],[-111.46807,44.5497],[-111.46761,44.54772],[-111.46689,44.547],[-111.46722,44.54654],[-111.46716,44.54603],[-111.4676,44.54523],[-111.46774,44.5445],[-111.46611,44.54354],[-111.46504,44.5425],[-111.46377,44.54174],[-111.46345,44.54141],[-111.46389,44.54106],[-111.46686,44.54044],[-111.46744,44.54052],[-111.46802,44.53986],[-111.46783,44.53899],[-111.46791,44.53886],[-111.46896,44.53915],[-111.46936,44.54002],[-111.47004,44.54036],[-111.47102,44.5405],[-111.47168,44.54081],[-111.47397,44.54079],[-111.47494,44.54096],[-111.47562,44.54088],[-111.47617,44.54108],[-111.47684,44.54152],[-111.47789,44.54176],[-111.47906,44.54171],[-111.47965,44.54215],[-111.48046,44.54164],[-111.48136,44.54135],[-111.4829,44.54136],[-111.4838,44.54087],[-111.48436,44.54099],[-111.48559,44.54164],[-111.48588,44.54161],[-111.48677,44.54121],[-111.49058,44.54064],[-111.49322,44.54058],[-111.49446,44.54087],[-111.49539,44.54089],[-111.49645,44.54112],[-111.49749,44.54204],[-111.49821,44.54195],[-111.49957,44.54204],[-111.49996,44.54192],[-111.50023,44.54107],[-111.50079,44.54006],[-111.50392,44.5382],[-111.50547,44.53695],[-111.50802,44.53599],[-111.51058,44.5358],[-111.51421,44.53647],[-111.51526,44.53698],[-111.51645,44.53859],[-111.51712,44.54001],[-111.51757,44.54207],[-111.51807,44.54416],[-111.51928,44.54521],[-111.52159,44.54668],[-111.52389,44.54831],[-111.52573,44.54916],[-111.52903,44.55001],[-111.53353,44.55017],[-111.537,44.5507],[-111.53811,44.55159],[-111.53947,44.55252],[-111.54071,44.55318],[-111.5425,44.55381],[-111.54404,44.55416],[-111.5451,44.55497],[-111.54513,44.55636],[-111.5466,44.55709],[-111.54794,44.55734],[-111.55067,44.55678],[-111.55346,44.55562],[-111.55663,44.55446],[-111.56026,44.55509],[-111.56281,44.55522],[-111.56492,44.55835],[-111.56682,44.5583],[-111.56889,44.55813],[-111.57165,44.5586],[-111.57513,44.55946],[-111.57642,44.55932],[-111.57835,44.55949],[-111.58136,44.56014],[-111.58277,44.56104],[-111.58406,44.56231],[-111.58579,44.56283],[-111.58745,44.56288],[-111.58908,44.56266],[-111.59173,44.5615],[-111.59941,44.55555],[-111.60169,44.55389],[-111.60369,44.5533],[-111.60504,44.55326],[-111.60612,44.55225],[-111.60741,44.55118],[-111.60913,44.55034],[-111.61107,44.54966],[-111.61292,44.54906],[-111.61445,44.54898],[-111.61633,44.54976],[-111.61697,44.55064],[-111.61764,44.55097],[-111.62001,44.55075],[-111.62207,44.55084],[-111.62377,44.55126],[-111.62484,44.55195],[-111.62586,44.55185],[-111.62811,44.55188],[-111.63152,44.55203],[-111.63444,44.55259],[-111.64028,44.55303],[-111.64219,44.55348],[-111.64427,44.55424],[-111.64625,44.55523],[-111.64908,44.55563],[-111.65213,44.55529],[-111.65436,44.55436],[-111.65692,44.55322],[-111.65862,44.55295],[-111.6605,44.55351],[-111.66212,44.55464],[-111.66412,44.55538],[-111.66638,44.55578],[-111.66928,44.55612],[-111.67195,44.55652],[-111.67473,44.55738],[-111.67722,44.55799],[-111.68005,44.55897],[-111.68164,44.55991],[-111.6831,44.56174],[-111.69021,44.55616],[-111.70419,44.56021],[-111.70734,44.55392],[-111.70809,44.55167],[-111.71147,44.54839],[-111.71382,44.54721],[-111.71445,44.54602],[-111.7155,44.54354],[-111.71758,44.54321],[-111.71999,44.54355],[-111.72306,44.5436],[-111.72494,44.54381],[-111.72682,44.54393],[-111.73203,44.54255],[-111.73359,44.54237],[-111.73569,44.54311],[-111.73715,44.54305],[-111.73935,44.54236],[-111.74077,44.54158],[-111.74188,44.54147],[-111.74419,44.54102],[-111.7465,44.54073],[-111.74783,44.54008],[-111.7495,44.53939],[-111.75079,44.53872],[-111.75179,44.53748],[-111.75527,44.53563],[-111.75897,44.53377],[-111.75954,44.53296],[-111.76075,44.53198],[-111.76193,44.52982],[-111.76174,44.52875],[-111.76125,44.52779],[-111.76125,44.52726],[-111.76143,44.52682],[-111.76253,44.52679],[-111.76589,44.52777],[-111.76788,44.52826],[-111.76924,44.52917],[-111.7704,44.52968],[-111.77141,44.52981],[-111.77314,44.52937],[-111.77533,44.52819],[-111.77714,44.52623],[-111.77928,44.52488],[-111.78474,44.52368],[-111.78665,44.52388],[-111.79049,44.52462],[-111.79388,44.52599],[-111.79688,44.52623],[-111.80095,44.52594],[-111.80393,44.52522],[-111.80608,44.52365],[-111.80741,44.52139],[-111.80892,44.51952],[-111.80862,44.51861],[-111.80675,44.51681],[-111.80647,44.51621],[-111.80655,44.51544],[-111.80719,44.51501],[-111.8083,44.51469],[-111.80871,44.51424],[-111.80829,44.51322],[-111.80774,44.51225],[-111.80789,44.51172],[-111.81451,44.51061],[-111.82146,44.50928],[-111.82291,44.50968],[-111.82398,44.51049],[-111.82406,44.51168],[-111.82469,44.51214],[-111.8278,44.51214],[-111.82811,44.51397],[-111.8299,44.51604],[-111.83074,44.51675],[-111.83127,44.51746],[-111.83104,44.51907],[-111.83065,44.51968],[-111.83079,44.52017],[-111.832,44.52033],[-111.8338,44.52155],[-111.83809,44.5239],[-111.84039,44.52494],[-111.84251,44.52606],[-111.84348,44.52869],[-111.84502,44.53205],[-111.84924,44.53978],[-111.85181,44.54274],[-111.85483,44.54454],[-111.85623,44.54582],[-111.85631,44.54774],[-111.85725,44.54905],[-111.86359,44.55132],[-111.86459,44.5529],[-111.86489,44.55638],[-111.8652,44.55797],[-111.86736,44.5595],[-111.86686,44.56141],[-111.86614,44.56283],[-111.86923,44.56532],[-111.87052,44.56401],[-111.87318,44.56308],[-111.87397,44.56297],[-111.87498,44.56273],[-111.87576,44.56236],[-111.87976,44.56115],[-111.88103,44.56088],[-111.88258,44.56164],[-111.8832,44.56218],[-111.88474,44.56235],[-111.88791,44.56341],[-111.88902,44.56422],[-111.88983,44.56512],[-111.8911,44.56482],[-111.89267,44.56415],[-111.89426,44.56311],[-111.89456,44.56278],[-111.89488,44.56113],[-111.89538,44.55964],[-111.89602,44.55931],[-111.8982,44.55891],[-111.89919,44.55865],[-111.90021,44.55834],[-111.90069,44.55785],[-111.90131,44.55758],[-111.9037,44.55722],[-111.9053,44.55715],[-111.91222,44.55664],[-111.91417,44.55605],[-111.91547,44.55603],[-111.91673,44.55626],[-111.91692,44.55655],[-111.9193,44.55725],[-111.92048,44.55779],[-111.92198,44.55775],[-111.92392,44.55757],[-111.92576,44.55746],[-111.9273,44.55755],[-111.92857,44.55782],[-111.93014,44.55774],[-111.93124,44.55757],[-111.93249,44.55763],[-111.93387,44.55803],[-111.93499,44.55803],[-111.93787,44.55742],[-111.94075,44.55668],[-111.94802,44.55681],[-111.94878,44.55595],[-111.9493,44.55517],[-111.94892,44.55415],[-111.94939,44.55317],[-111.94991,44.55231],[-111.95056,44.5509],[-111.95148,44.55008],[-111.95407,44.54905],[-111.96161,44.54986],[-111.9632,44.54468],[-111.96729,44.54517],[-111.9674,44.54437],[-111.96774,44.54384],[-111.96881,44.54338],[-111.9694,44.54274],[-111.96984,44.541],[-111.96981,44.54027],[-111.97026,44.53946],[-111.97122,44.53867],[-111.97308,44.53742],[-111.97623,44.53648],[-111.97865,44.53588],[-111.97924,44.5359],[-111.98073,44.53668],[-111.9827,44.53686],[-111.98362,44.5368],[-111.98506,44.53729],[-111.98813,44.53734],[-111.99128,44.53723],[-111.99446,44.53572],[-111.99519,44.53543],[-112.00082,44.53795],[-112.00137,44.53806],[-112.00276,44.5378],[-112.00466,44.53775],[-112.00643,44.53902],[-112.00778,44.54032],[-112.00786,44.54117],[-112.00811,44.54184],[-112.00977,44.54251],[-112.01143,44.54346],[-112.01201,44.54309],[-112.01376,44.54235],[-112.01553,44.54198],[-112.01667,44.54198],[-112.0185,44.54238],[-112.02019,44.54334],[-112.02091,44.54406],[-112.02175,44.54422],[-112.0231,44.54491],[-112.0242,44.54517],[-112.02517,44.54528],[-112.02588,44.54559],[-112.02804,44.54601],[-112.02937,44.54617],[-112.03202,44.54667],[-112.03273,44.54663],[-112.03291,44.54618],[-112.03412,44.54473],[-112.03427,44.5439],[-112.03503,44.54263],[-112.03462,44.53947],[-112.03411,44.53766],[-112.03298,44.53499],[-112.03275,44.53428],[-112.03272,44.53219],[-112.03245,44.53121],[-112.03235,44.52962],[-112.03242,44.52909],[-112.03278,44.5284],[-112.03355,44.52829],[-112.03468,44.52847],[-112.0355,44.52886],[-112.03553,44.52918],[-112.03695,44.53034],[-112.03744,44.53144],[-112.03785,44.53266],[-112.03872,44.5328],[-112.04222,44.53242],[-112.04393,44.53232],[-112.0452,44.53317],[-112.04614,44.53397],[-112.04844,44.53424],[-112.05082,44.53436],[-112.05351,44.53511],[-112.05512,44.53653],[-112.05582,44.53662],[-112.06506,44.53598],[-112.06684,44.53622],[-112.06782,44.53656],[-112.06849,44.53691],[-112.06907,44.53708],[-112.07329,44.53496],[-112.07459,44.53412],[-112.07597,44.5334],[-112.07794,44.53369],[-112.07863,44.5335],[-112.07901,44.53372],[-112.08008,44.53386],[-112.08081,44.53379],[-112.08565,44.53207],[-112.09331,44.52999],[-112.09462,44.52866],[-112.09506,44.52648],[-112.09573,44.52516],[-112.09623,44.52398],[-112.09633,44.52319],[-112.09815,44.52227],[-112.10159,44.52086],[-112.10271,44.52088],[-112.10466,44.52086],[-112.10579,44.52071],[-112.1068,44.52083],[-112.10761,44.52281],[-112.11003,44.52443],[-112.11217,44.5248],[-112.11556,44.52523],[-112.11761,44.52573],[-112.11894,44.52645],[-112.12106,44.52707],[-112.12504,44.52846],[-112.12582,44.52891],[-112.12656,44.52896],[-112.12704,44.5291],[-112.12678,44.5306],[-112.12747,44.53247],[-112.12852,44.53358],[-112.12928,44.53433],[-112.1294,44.53475],[-112.12939,44.53542],[-112.12903,44.5358],[-112.12913,44.53629],[-112.12952,44.53647],[-112.13003,44.53658],[-112.13035,44.53737],[-112.13091,44.53778],[-112.13258,44.53796],[-112.13407,44.53735],[-112.13453,44.53724],[-112.13599,44.53775],[-112.1361,44.53936],[-112.13646,44.5399],[-112.13879,44.53936],[-112.14034,44.53933],[-112.14315,44.5398],[-112.14466,44.53944],[-112.14552,44.53918],[-112.1472,44.53804],[-112.14823,44.53691],[-112.14847,44.53681],[-112.14883,44.5368],[-112.15108,44.53809],[-112.15199,44.53853],[-112.15438,44.53877],[-112.1582,44.53951],[-112.16148,44.54043],[-112.16367,44.5414],[-112.16458,44.54168],[-112.16959,44.53859],[-112.17354,44.53685],[-112.17628,44.53587],[-112.1779,44.53502],[-112.17968,44.53303],[-112.18017,44.53283],[-112.18148,44.53313],[-112.18394,44.5331],[-112.18885,44.5351],[-112.19149,44.53569],[-112.19442,44.53709],[-112.19649,44.5379],[-112.20717,44.54007],[-112.21017,44.54049],[-112.21348,44.54128],[-112.21663,44.5429],[-112.22067,44.54327],[-112.22167,44.5435],[-112.22291,44.54469],[-112.22862,44.54844],[-112.22948,44.54946],[-112.22952,44.55015],[-112.22923,44.55118],[-112.22927,44.55162],[-112.22893,44.55313],[-112.22828,44.55387],[-112.22741,44.55448],[-112.22684,44.55523],[-112.22719,44.55729],[-112.22814,44.55781],[-112.23038,44.55833],[-112.23101,44.55999],[-112.23023,44.56169],[-112.23016,44.56272],[-112.22889,44.564],[-112.23046,44.56448],[-112.23298,44.56456],[-112.23573,44.56518],[-112.23925,44.56635],[-112.24053,44.56668],[-112.24181,44.56772],[-112.24277,44.56807],[-112.24732,44.56854],[-112.24868,44.56849],[-112.25028,44.56802],[-112.25085,44.56771],[-112.25152,44.5677],[-112.25264,44.56829],[-112.2534,44.56883],[-112.25423,44.56976],[-112.25601,44.57076],[-112.25645,44.57123],[-112.25675,44.57163],[-112.25701,44.57128],[-112.25806,44.57048],[-112.2587,44.56955],[-112.25878,44.56881],[-112.25912,44.56843],[-112.26476,44.5672],[-112.26559,44.56676],[-112.26631,44.56583],[-112.26789,44.56542],[-112.26921,44.56551],[-112.27229,44.5661],[-112.2739,44.5661],[-112.27551,44.56573],[-112.27665,44.56609],[-112.27736,44.56645],[-112.28237,44.56729],[-112.2841,44.56795],[-112.28617,44.56849],[-112.28888,44.56772],[-112.28926,44.56702],[-112.29022,44.5664],[-112.29092,44.56577],[-112.29203,44.56422],[-112.29241,44.56298],[-112.29236,44.56199],[-112.29295,44.56164],[-112.29731,44.56067],[-112.29818,44.559],[-112.2988,44.5589],[-112.30036,44.55919],[-112.30191,44.55911],[-112.30283,44.55929],[-112.30436,44.55922],[-112.30517,44.55856],[-112.30762,44.55766],[-112.30847,44.55652],[-112.31002,44.55507],[-112.3107,44.55502],[-112.3113,44.55474],[-112.31173,44.55428],[-112.31285,44.5535],[-112.31465,44.55132],[-112.31499,44.55002],[-112.31482,44.5492],[-112.31558,44.54667],[-112.31468,44.54352],[-112.31498,44.5419],[-112.31558,44.54104],[-112.31734,44.54015],[-112.3191,44.53912],[-112.32051,44.53875],[-112.32373,44.53915],[-112.3257,44.53882],[-112.32758,44.53807],[-112.32937,44.53828],[-112.33219,44.53879],[-112.33587,44.53857],[-112.33748,44.53789],[-112.34174,44.53751],[-112.34411,44.53873],[-112.3485,44.53869],[-112.35168,44.53786],[-112.35246,44.53801],[-112.3529,44.53682],[-112.35403,44.53575],[-112.35478,44.53432],[-112.35647,44.53227],[-112.35685,44.53042],[-112.3574,44.52991],[-112.35825,44.52995],[-112.35886,44.52892],[-112.35844,44.52607],[-112.35763,44.52575],[-112.35673,44.52477],[-112.35706,44.52353],[-112.35712,44.52222],[-112.3582,44.52078],[-112.3583,44.51814],[-112.35798,44.51593],[-112.358,44.51075],[-112.3581,44.50956],[-112.35838,44.50918],[-112.35832,44.50743],[-112.35762,44.50595],[-112.35674,44.50547],[-112.35664,44.50488],[-112.35707,44.50422],[-112.35683,44.49978],[-112.35788,44.49669],[-112.35771,44.49535],[-112.35652,44.49304],[-112.35888,44.48626],[-112.35961,44.48542],[-112.36203,44.48475],[-112.36292,44.48319],[-112.36295,44.4817],[-112.36464,44.48103],[-112.36499,44.4789],[-112.36436,44.47781],[-112.36434,44.47616],[-112.36501,44.47506],[-112.36481,44.47291],[-112.36521,44.47236],[-112.36585,44.47156],[-112.36634,44.46958],[-112.3664,44.46736],[-112.36848,44.46731],[-112.36939,44.46637],[-112.37038,44.46592],[-112.37142,44.46463],[-112.37194,44.46322],[-112.37591,44.45948],[-112.37696,44.45862],[-112.37788,44.45646],[-112.38017,44.45534],[-112.38086,44.45475],[-112.3812,44.4538],[-112.38284,44.45268],[-112.38394,44.45116],[-112.38512,44.45007],[-112.3868,44.44752],[-112.38711,44.44763],[-112.38738,44.44804],[-112.38877,44.44929],[-112.39065,44.45073],[-112.39391,44.45183],[-112.39474,44.45242],[-112.39654,44.45236],[-112.3991,44.45346],[-112.39965,44.45431],[-112.40149,44.45572],[-112.40265,44.45632],[-112.40507,44.45654],[-112.40722,44.45744],[-112.40818,44.45742],[-112.41114,44.45641],[-112.41204,44.45546],[-112.41586,44.45322],[-112.41926,44.45379],[-112.42191,44.45398],[-112.42274,44.45426],[-112.42306,44.45478],[-112.42344,44.45491],[-112.42871,44.45379],[-112.43037,44.45384],[-112.43121,44.45449],[-112.43376,44.45469],[-112.43455,44.45588],[-112.43465,44.45725],[-112.43391,44.4603],[-112.43523,44.4609],[-112.43526,44.46223],[-112.43706,44.46273],[-112.43912,44.4642],[-112.44221,44.46551],[-112.44217,44.46669],[-112.44717,44.46825],[-112.44788,44.46811],[-112.44962,44.46754],[-112.45179,44.46704],[-112.45286,44.46719],[-112.45428,44.46661],[-112.45552,44.46682],[-112.45549,44.46855],[-112.45606,44.4696],[-112.45536,44.47029],[-112.45531,44.47106],[-112.45569,44.47184],[-112.45652,44.47255],[-112.45723,44.47269],[-112.45795,44.4735],[-112.45933,44.47418],[-112.46037,44.47577],[-112.46194,44.47545],[-112.46412,44.47538],[-112.4652,44.47572],[-112.46677,44.47709],[-112.46888,44.47791],[-112.46933,44.47871],[-112.46996,44.47908],[-112.47111,44.47932],[-112.47312,44.48006],[-112.47565,44.47814],[-112.47661,44.47681],[-112.47792,44.47611],[-112.48112,44.47486],[-112.48181,44.47472],[-112.4825,44.47495],[-112.48319,44.47473],[-112.4844,44.47327],[-112.48476,44.4718],[-112.48547,44.47143],[-112.48894,44.47123],[-112.49055,44.47091],[-112.49182,44.47053],[-112.49293,44.46969],[-112.49388,44.46801],[-112.49495,44.46782],[-112.49679,44.46794],[-112.49696,44.46761],[-112.49671,44.46618],[-112.50031,44.46306],[-112.50237,44.46413],[-112.50635,44.46508],[-112.50757,44.46517],[-112.51162,44.46633],[-112.51176,44.46689],[-112.51139,44.46886],[-112.51199,44.46938],[-112.51209,44.47042],[-112.51141,44.47176],[-112.51234,44.47264],[-112.51241,44.47389],[-112.51356,44.47444],[-112.51384,44.47494],[-112.51524,44.4755],[-112.51581,44.47556],[-112.51681,44.47636],[-112.51844,44.47571],[-112.52135,44.47629],[-112.52305,44.47627],[-112.52533,44.47747],[-112.52804,44.4767],[-112.52929,44.47691],[-112.5323,44.47812],[-112.53573,44.47815],[-112.53677,44.47872],[-112.5366,44.47981],[-112.53863,44.48124],[-112.53955,44.48261],[-112.54189,44.48399],[-112.54308,44.484],[-112.54418,44.48369],[-112.54561,44.48382],[-112.5474,44.4834],[-112.54865,44.4837],[-112.54955,44.48488],[-112.55063,44.48495],[-112.55209,44.48424],[-112.5545,44.48439],[-112.55511,44.48391],[-112.5571,44.48365],[-112.55857,44.48314],[-112.56046,44.48256],[-112.56323,44.48258],[-112.56463,44.48285],[-112.56617,44.4828],[-112.56754,44.48261],[-112.56968,44.48265],[-112.57251,44.48149],[-112.57354,44.48094],[-112.57603,44.48098],[-112.57678,44.48073],[-112.57736,44.4803],[-112.57774,44.48004],[-112.57877,44.48095],[-112.58254,44.48224],[-112.58313,44.48213],[-112.5842,44.4813],[-112.58617,44.48215],[-112.59328,44.48625],[-112.59362,44.48689],[-112.59507,44.48777],[-112.59704,44.48838],[-112.59762,44.48917],[-112.59821,44.48959],[-112.59946,44.48988],[-112.6002,44.49012],[-112.60103,44.49078],[-112.60183,44.491],[-112.60266,44.49102],[-112.60938,44.48946],[-112.61712,44.48747],[-112.61956,44.48703],[-112.62058,44.48573],[-112.62137,44.48522],[-112.62347,44.48444],[-112.62407,44.4837],[-112.62415,44.48338],[-112.62474,44.48309],[-112.62514,44.48311],[-112.62578,44.48335],[-112.62765,44.48334],[-112.62891,44.48295],[-112.62918,44.48357],[-112.62858,44.48519],[-112.62893,44.48571],[-112.62949,44.48592],[-112.62989,44.48656],[-112.63002,44.48731],[-112.62936,44.48906],[-112.63215,44.49121],[-112.63258,44.49121],[-112.63309,44.49097],[-112.63533,44.49054],[-112.6385,44.49042],[-112.64048,44.4908],[-112.64186,44.49001],[-112.64341,44.49008],[-112.64797,44.48862],[-112.64891,44.48808],[-112.65029,44.48815],[-112.65111,44.4877],[-112.65313,44.48769],[-112.6553,44.48704],[-112.65661,44.48695],[-112.65786,44.48706],[-112.65838,44.4866],[-112.65933,44.48596],[-112.66081,44.48572],[-112.66198,44.48615],[-112.66221,44.48646],[-112.66379,44.48612],[-112.66457,44.48651],[-112.66511,44.48713],[-112.66577,44.48729],[-112.66653,44.48866],[-112.66703,44.48923],[-112.6681,44.4896],[-112.66883,44.49022],[-112.67123,44.49133],[-112.67508,44.49211],[-112.67639,44.49206],[-112.67795,44.49181],[-112.679,44.49145],[-112.6798,44.49139],[-112.68102,44.49224],[-112.68246,44.49245],[-112.68606,44.49308],[-112.68631,44.49508],[-112.68708,44.49562],[-112.68711,44.49715],[-112.68736,44.49827],[-112.68836,44.49886],[-112.69199,44.49943],[-112.6929,44.50033],[-112.69523,44.49945],[-112.69774,44.49944],[-112.69836,44.49995],[-112.7004,44.50031],[-112.70537,44.50212],[-112.70639,44.50263],[-112.70798,44.5031],[-112.70983,44.50338],[-112.71464,44.50333],[-112.71782,44.5042],[-112.71902,44.50439],[-112.72021,44.50411],[-112.72285,44.50297],[-112.72582,44.50241],[-112.73134,44.50079],[-112.73512,44.49912],[-112.73606,44.49646],[-112.73722,44.49543],[-112.73858,44.49369],[-112.74016,44.49228],[-112.74099,44.491],[-112.74145,44.48904],[-112.74195,44.48825],[-112.74251,44.48814],[-112.7441,44.48823],[-112.74543,44.48794],[-112.74613,44.48811],[-112.74837,44.49089],[-112.74906,44.49121],[-112.74958,44.49111],[-112.75075,44.49048],[-112.75261,44.48985],[-112.75529,44.48877],[-112.76257,44.48862],[-112.76522,44.48789],[-112.76898,44.48486],[-112.77025,44.48422],[-112.77173,44.48417],[-112.7813,44.48487],[-112.79419,44.46933],[-112.79485,44.46882],[-112.7984,44.46736],[-112.79855,44.46691],[-112.79746,44.46575],[-112.79712,44.46419],[-112.79789,44.4633],[-112.79808,44.46184],[-112.79923,44.46096],[-112.8003,44.46039],[-112.80166,44.45866],[-112.80695,44.45588],[-112.80816,44.45396],[-112.80852,44.45351],[-112.80917,44.45359],[-112.81185,44.45548],[-112.81517,44.45335],[-112.81671,44.45088],[-112.81756,44.44903],[-112.8185,44.44762],[-112.8195,44.44679],[-112.8219,44.44601],[-112.82557,44.44443],[-112.82823,44.44241],[-112.82866,44.44137],[-112.82863,44.44022],[-112.82817,44.43908],[-112.82809,44.43617],[-112.82775,44.43303],[-112.82716,44.43243],[-112.8279,44.43196],[-112.82942,44.43162],[-112.83032,44.43076],[-112.83159,44.43006],[-112.83294,44.42989],[-112.83379,44.42925],[-112.8343,44.42861],[-112.8353,44.42815],[-112.8357,44.42768],[-112.83642,44.42618],[-112.83968,44.42545],[-112.84031,44.42543],[-112.84059,44.42525],[-112.83789,44.42271],[-112.83753,44.42266],[-112.83618,44.42283],[-112.83243,44.41825],[-112.83159,44.41666],[-112.831,44.41602],[-112.82985,44.41532],[-112.82887,44.41463],[-112.8273,44.413],[-112.82628,44.41168],[-112.82189,44.40741],[-112.82176,44.40705],[-112.82218,44.40558],[-112.82188,44.40457],[-112.82188,44.40359],[-112.82157,44.40326],[-112.82164,44.40197],[-112.8208,44.40026],[-112.81817,44.39954],[-112.81724,44.39964],[-112.81646,44.40006],[-112.81611,44.4],[-112.81521,44.39963],[-112.81327,44.39814],[-112.81339,44.39778],[-112.81479,44.39647],[-112.815,44.39581],[-112.8147,44.3947],[-112.81365,44.39303],[-112.81311,44.3925],[-112.81264,44.39224],[-112.8125,44.39204],[-112.81263,44.39113],[-112.81262,44.39045],[-112.81222,44.38931],[-112.81222,44.38818],[-112.81242,44.38744],[-112.81303,44.38669],[-112.81374,44.38547],[-112.81445,44.38354],[-112.81429,44.38294],[-112.81318,44.38164],[-112.81377,44.3798],[-112.8137,44.37887],[-112.81325,44.37812],[-112.81286,44.37783],[-112.81265,44.37739],[-112.81274,44.37716],[-112.81579,44.37623],[-112.81676,44.37479],[-112.81807,44.37316],[-112.82042,44.37101],[-112.82135,44.37043],[-112.82199,44.37042],[-112.82244,44.37007],[-112.82305,44.36941],[-112.82393,44.36877],[-112.82464,44.36859],[-112.82496,44.36832],[-112.82584,44.36793],[-112.82785,44.36725],[-112.82872,44.36664],[-112.82942,44.36582],[-112.83144,44.36491],[-112.83637,44.36327],[-112.8368,44.36291],[-112.83687,44.36223],[-112.83711,44.36211],[-112.83736,44.36206],[-112.84091,44.36192],[-112.84123,44.36178],[-112.84238,44.36062],[-112.84233,44.36024],[-112.84263,44.35995],[-112.84327,44.35967],[-112.84431,44.35903],[-112.84455,44.35848],[-112.84483,44.35821],[-112.84734,44.35826],[-112.85006,44.35889],[-112.85064,44.35915],[-112.85312,44.35943],[-112.85538,44.35999],[-112.85606,44.36096],[-112.85674,44.36158],[-112.85775,44.36296],[-112.85848,44.36342],[-112.85904,44.36358],[-112.85938,44.36382],[-112.85971,44.36412],[-112.85986,44.3645],[-112.86073,44.36518],[-112.86085,44.36639],[-112.86103,44.3669],[-112.8616,44.36718],[-112.86196,44.36816],[-112.86328,44.36902],[-112.86361,44.36927],[-112.86366,44.36957],[-112.86436,44.36991],[-112.86523,44.37015],[-112.86576,44.36998],[-112.86664,44.37],[-112.86754,44.37018],[-112.86831,44.3706],[-112.8693,44.3707],[-112.87084,44.37107],[-112.87178,44.37168],[-112.87223,44.37183],[-112.87272,44.37177],[-112.87357,44.37196],[-112.87384,44.37262],[-112.87386,44.37349],[-112.87315,44.3749],[-112.87332,44.37539],[-112.8738,44.37589],[-112.87582,44.37702],[-112.87941,44.37822],[-112.88101,44.37951],[-112.88179,44.38031],[-112.88174,44.38208],[-112.88191,44.38394],[-112.8842,44.3905],[-112.88425,44.3915],[-112.88395,44.39235],[-112.8842,44.39369],[-112.88608,44.39588],[-112.88574,44.39754],[-112.88512,44.39904],[-112.88433,44.40048],[-112.88428,44.40115],[-112.88465,44.40209],[-112.88513,44.40233],[-112.8865,44.40285],[-112.88829,44.40377],[-112.88967,44.40475],[-112.89033,44.40515],[-112.89198,44.40503],[-112.89329,44.40457],[-112.89658,44.40108],[-112.89773,44.40071],[-112.89945,44.39981],[-112.90051,44.39906],[-112.90122,44.39867],[-112.90374,44.39929],[-112.90666,44.40046],[-112.91083,44.40192],[-112.91382,44.40224],[-112.91557,44.40268],[-112.91649,44.40379],[-112.91768,44.4049],[-112.91833,44.40605],[-112.91854,44.40754],[-112.91904,44.40814],[-112.91901,44.40871],[-112.91966,44.40959],[-112.9204,44.4099],[-112.92483,44.41094],[-112.92612,44.41115],[-112.92703,44.41115],[-112.92755,44.4113],[-112.92846,44.41261],[-112.9305,44.4133],[-112.93179,44.41333],[-112.93281,44.41297],[-112.93714,44.41261],[-112.94139,44.41321],[-112.94286,44.41404],[-112.94678,44.41572],[-112.95112,44.41666],[-112.95187,44.41765],[-112.95297,44.41937],[-112.95346,44.42079],[-112.9537,44.42227],[-112.9534,44.42324],[-112.95302,44.42416],[-112.9544,44.42394],[-112.95875,44.42402],[-112.95951,44.42422],[-112.96065,44.42419],[-112.96213,44.42367],[-112.96363,44.42355],[-112.96517,44.42432],[-112.96653,44.42515],[-112.96698,44.42559],[-112.96834,44.42599],[-112.9704,44.42697],[-112.97224,44.42806],[-112.97365,44.42906],[-112.97521,44.43057],[-112.97601,44.43108],[-112.97717,44.43233],[-112.9785,44.43329],[-112.97945,44.43354],[-112.98065,44.43379],[-112.98173,44.43429],[-112.98257,44.43512],[-112.98607,44.44025],[-112.98693,44.44103],[-112.98754,44.44126],[-112.98901,44.44341],[-112.98974,44.44413],[-112.99195,44.44523],[-112.99372,44.44649],[-112.9972,44.44779],[-113.00072,44.44927],[-113.00089,44.4494],[-113.00166,44.44955],[-113.00217,44.45017],[-113.00285,44.45022],[-113.00319,44.45053],[-113.00348,44.45076],[-113.00454,44.4524],[-113.00477,44.45317],[-113.00519,44.45374],[-113.00572,44.45429],[-113.00634,44.45528],[-113.00653,44.4558],[-113.00667,44.45641],[-113.00643,44.45813],[-113.0065,44.45877],[-113.00682,44.45947],[-113.00735,44.46004],[-113.0079,44.46113],[-113.00814,44.46184],[-113.00859,44.46306],[-113.00888,44.4644],[-113.00894,44.46665],[-113.00866,44.46779],[-113.00825,44.46852],[-113.00757,44.46929],[-113.00706,44.47004],[-113.00657,44.47131],[-113.00715,44.47221],[-113.00749,44.4724],[-113.00787,44.47244],[-113.00857,44.47344],[-113.00952,44.47415],[-113.01031,44.47455],[-113.01268,44.47719],[-113.01374,44.47872],[-113.01393,44.47943],[-113.01426,44.47967],[-113.01432,44.47991],[-113.01466,44.4802],[-113.01524,44.48042],[-113.0156,44.4806],[-113.01614,44.48064],[-113.01654,44.48079],[-113.01772,44.48161],[-113.01834,44.48214],[-113.01885,44.48243],[-113.02017,44.48443],[-113.02067,44.48529],[-113.0221,44.48703],[-113.02309,44.48873],[-113.02355,44.48918],[-113.02482,44.49029],[-113.02512,44.49071],[-113.02524,44.49193],[-113.02514,44.4923],[-113.02553,44.49358],[-113.02715,44.49566],[-113.02716,44.49599],[-113.0268,44.49668],[-113.0262,44.49699],[-113.02555,44.49714],[-113.02461,44.49833],[-113.02383,44.4998],[-113.02229,44.49991],[-113.01816,44.50333],[-113.01463,44.50724],[-113.0156,44.51566],[-113.00544,44.51928],[-113.00704,44.52587],[-113.01022,44.52778],[-113.01265,44.52748],[-113.01743,44.52946],[-113.02048,44.53229],[-113.02281,44.53592],[-113.03274,44.53714],[-113.04558,44.54395],[-113.04714,44.54638],[-113.04694,44.54884],[-113.04557,44.55537],[-113.0359,44.56091],[-113.03675,44.56402],[-113.03984,44.56681],[-113.054,44.57286],[-113.06046,44.57579],[-113.06734,44.57918],[-113.0634,44.5863],[-113.06926,44.59065],[-113.07783,44.59551],[-113.08791,44.59922],[-113.07788,44.60788],[-113.07375,44.61391],[-113.06545,44.61741],[-113.05675,44.61866],[-113.05355,44.62117],[-113.05233,44.62492],[-113.05073,44.62703],[-113.04934,44.62939],[-113.05146,44.63693],[-113.0623,44.64583],[-113.06563,44.64936],[-113.06502,44.65054],[-113.06373,44.65225],[-113.06829,44.65635],[-113.06821,44.65792],[-113.06866,44.66039],[-113.07041,44.66786],[-113.06826,44.67212],[-113.06778,44.67278],[-113.06777,44.67945],[-113.07803,44.68112],[-113.08264,44.68322],[-113.08003,44.68841],[-113.08189,44.69133],[-113.08548,44.69234],[-113.09508,44.69588],[-113.09647,44.69673],[-113.09752,44.69704],[-113.09808,44.69743],[-113.09799,44.69816],[-113.09838,44.69967],[-113.09872,44.70195],[-113.10118,44.70859],[-113.10128,44.71018],[-113.10086,44.71407],[-113.10115,44.71705],[-113.1011,44.71878],[-113.10171,44.72083],[-113.10207,44.72248],[-113.1032,44.72585],[-113.10213,44.72901],[-113.11212,44.73295],[-113.11661,44.73198],[-113.1178,44.73326],[-113.11686,44.73808],[-113.121,44.74659],[-113.12459,44.7492],[-113.13038,44.74993],[-113.13145,44.75027],[-113.13274,44.7509],[-113.1348,44.75274],[-113.13503,44.75324],[-113.13492,44.75448],[-113.13531,44.75648],[-113.13584,44.7571],[-113.13675,44.75782],[-113.13715,44.75837],[-113.13731,44.75914],[-113.13766,44.75959],[-113.13774,44.76013],[-113.13701,44.76077],[-113.13573,44.76253],[-113.13495,44.76303],[-113.13253,44.76396],[-113.13198,44.7644],[-113.13135,44.76472],[-113.13131,44.76497],[-113.13239,44.76831],[-113.13252,44.76894],[-113.13177,44.77109],[-113.13115,44.77238],[-113.13137,44.77281],[-113.13386,44.77406],[-113.13699,44.77482],[-113.13763,44.77522],[-113.13849,44.77604],[-113.14061,44.77667],[-113.14222,44.77685],[-113.14248,44.77663],[-113.14531,44.77644],[-113.14624,44.77657],[-113.14723,44.77696],[-113.14881,44.77787],[-113.14977,44.77858],[-113.15019,44.77927],[-113.15463,44.77955],[-113.15722,44.78057],[-113.15788,44.78098],[-113.1584,44.78083],[-113.1596,44.78086],[-113.16041,44.78071],[-113.16118,44.7803],[-113.16163,44.77934],[-113.16346,44.77882],[-113.16375,44.77889],[-113.16432,44.77944],[-113.16547,44.77984],[-113.16692,44.78058],[-113.16833,44.78169],[-113.17017,44.78269],[-113.17278,44.78466],[-113.17391,44.78473],[-113.17508,44.78511],[-113.17931,44.78707],[-113.18107,44.78977],[-113.18125,44.79021],[-113.18328,44.79349],[-113.18399,44.79394],[-113.18478,44.79411],[-113.18661,44.79602],[-113.18754,44.7969],[-113.18785,44.79797],[-113.18911,44.7993],[-113.18948,44.79953],[-113.19044,44.79975],[-113.19162,44.80076],[-113.19317,44.8017],[-113.19447,44.80215],[-113.19555,44.80222],[-113.19706,44.8022],[-113.20251,44.80356],[-113.20357,44.80406],[-113.20489,44.80519],[-113.20604,44.80642],[-113.20685,44.80718],[-113.20882,44.8088],[-113.2096,44.80906],[-113.21108,44.80913],[-113.21333,44.80949],[-113.21556,44.81013],[-113.21835,44.8105],[-113.221,44.81046],[-113.22229,44.81066],[-113.2236,44.811],[-113.22727,44.81292],[-113.22885,44.81327],[-113.23168,44.81426],[-113.23224,44.81435],[-113.23451,44.81404],[-113.23773,44.81385],[-113.23871,44.81412],[-113.23935,44.81457],[-113.23986,44.81535],[-113.24016,44.81613],[-113.24008,44.81708],[-113.24043,44.81744],[-113.24165,44.81816],[-113.24303,44.81946],[-113.24422,44.82032],[-113.24661,44.82285],[-113.24686,44.823],[-113.25105,44.82194],[-113.252,44.82183],[-113.25235,44.8217],[-113.25387,44.82053],[-113.2546,44.82019],[-113.25564,44.81994],[-113.25693,44.81983],[-113.25729,44.81999],[-113.2577,44.82007],[-113.25831,44.81998],[-113.25857,44.81979],[-113.25953,44.81857],[-113.25993,44.81833],[-113.26106,44.81805],[-113.26176,44.81777],[-113.26276,44.81695],[-113.26322,44.8164],[-113.26346,44.81621],[-113.26597,44.81552],[-113.26792,44.81496],[-113.26977,44.81438],[-113.27069,44.81423],[-113.272,44.81437],[-113.27289,44.81438],[-113.27387,44.81424],[-113.27501,44.81403],[-113.27666,44.81309],[-113.27715,44.81288],[-113.27856,44.81268],[-113.27949,44.81234],[-113.28036,44.81178],[-113.28145,44.81078],[-113.28421,44.80877],[-113.28596,44.808],[-113.28977,44.80704],[-113.29022,44.80684],[-113.29134,44.80579],[-113.29476,44.80465],[-113.29538,44.80424],[-113.29621,44.80356],[-113.29766,44.80317],[-113.2983,44.80317],[-113.29889,44.80303],[-113.29912,44.80291],[-113.29991,44.80179],[-113.2999,44.80141],[-113.29977,44.8009],[-113.29985,44.80042],[-113.30023,44.79992],[-113.30107,44.79923],[-113.30209,44.79876],[-113.30295,44.79889],[-113.30395,44.79888],[-113.30473,44.79866],[-113.3058,44.79805],[-113.30729,44.79745],[-113.30872,44.79698],[-113.31046,44.79664],[-113.3149,44.79599],[-113.31865,44.79492],[-113.32005,44.79398],[-113.32158,44.79273],[-113.32625,44.79036],[-113.32727,44.78978],[-113.32803,44.78899],[-113.32917,44.78876],[-113.33472,44.78663],[-113.34048,44.78466],[-113.34086,44.78459],[-113.34123,44.78464],[-113.3418,44.78491],[-113.34237,44.78538],[-113.34294,44.78598],[-113.34479,44.7869],[-113.34554,44.7879],[-113.34603,44.78833],[-113.34978,44.7899],[-113.35122,44.79029],[-113.35267,44.7908],[-113.35385,44.7915],[-113.35467,44.79327],[-113.35476,44.79547],[-113.35368,44.79588],[-113.35336,44.79619],[-113.35279,44.79642],[-113.35179,44.79669],[-113.34672,44.79888],[-113.34615,44.79925],[-113.34622,44.801],[-113.34844,44.80422],[-113.34891,44.80542],[-113.35108,44.80952],[-113.35218,44.81209],[-113.35407,44.8151],[-113.35446,44.81586],[-113.35445,44.81649],[-113.35576,44.81847],[-113.35607,44.81984],[-113.35728,44.82069],[-113.36327,44.82301],[-113.36535,44.82375],[-113.36785,44.82519],[-113.36896,44.82604],[-113.37026,44.82672],[-113.37421,44.82957],[-113.37522,44.83012],[-113.37615,44.83026],[-113.37679,44.83049],[-113.377,44.83075],[-113.37711,44.8314],[-113.37716,44.83237],[-113.37694,44.83331],[-113.37689,44.83419],[-113.37717,44.83485],[-113.37799,44.83537],[-113.37971,44.83619],[-113.38221,44.83665],[-113.38408,44.83742],[-113.3866,44.83763],[-113.38845,44.83763],[-113.3903,44.8377],[-113.39146,44.83753],[-113.39206,44.83728],[-113.39291,44.83679],[-113.39418,44.83692],[-113.39737,44.83805],[-113.39899,44.83843],[-113.401,44.83871],[-113.40375,44.83926],[-113.40698,44.83977],[-113.40799,44.84017],[-113.40934,44.84075],[-113.40998,44.84074],[-113.41044,44.84055],[-113.41168,44.84035],[-113.41277,44.84037],[-113.41315,44.84048],[-113.41982,44.83805],[-113.42109,44.83769],[-113.42189,44.8376],[-113.42225,44.83778],[-113.4221,44.8391],[-113.42213,44.83998],[-113.42235,44.84054],[-113.42283,44.8411],[-113.42227,44.84193],[-113.42235,44.84256],[-113.42426,44.84576],[-113.42462,44.84616],[-113.42556,44.84702],[-113.42596,44.84781],[-113.42591,44.84927],[-113.42608,44.84975],[-113.4276,44.85187],[-113.42835,44.8526],[-113.42871,44.85414],[-113.42898,44.85483],[-113.43035,44.85529],[-113.43124,44.85532],[-113.43328,44.8551],[-113.43716,44.85524],[-113.43872,44.85541],[-113.43954,44.85569],[-113.44029,44.85617],[-113.44119,44.85736],[-113.4428,44.86062],[-113.44329,44.86132],[-113.44376,44.8617],[-113.44436,44.86199],[-113.44765,44.86262],[-113.45213,44.86357],[-113.45469,44.86502],[-113.45511,44.86542],[-113.45575,44.86762],[-113.45566,44.86866],[-113.4554,44.86958],[-113.45583,44.87135],[-113.45721,44.87425],[-113.45703,44.87489],[-113.45721,44.87562],[-113.45781,44.87632],[-113.45845,44.87666],[-113.45931,44.87733],[-113.46017,44.87821],[-113.46172,44.88075],[-113.46219,44.88141],[-113.4624,44.88288],[-113.46195,44.88477],[-113.46142,44.88648],[-113.46103,44.88671],[-113.46195,44.88715],[-113.46295,44.88793],[-113.46399,44.8886],[-113.46497,44.88939],[-113.46548,44.89005],[-113.46608,44.89049],[-113.46691,44.89074],[-113.46795,44.89086],[-113.47248,44.892],[-113.47317,44.89255],[-113.47365,44.89329],[-113.47438,44.8935],[-113.47499,44.89393],[-113.4755,44.89444],[-113.47585,44.89465],[-113.47823,44.89526],[-113.47847,44.89545],[-113.47851,44.89563],[-113.47772,44.89653],[-113.4769,44.89711],[-113.47607,44.89756],[-113.47559,44.89878],[-113.47563,44.90114],[-113.47447,44.90329],[-113.47442,44.90389],[-113.47502,44.90483],[-113.47497,44.90521],[-113.47447,44.90558],[-113.47405,44.90607],[-113.47371,44.90668],[-113.47325,44.90844],[-113.47219,44.90922],[-113.47169,44.90969],[-113.47177,44.90987],[-113.47391,44.91035],[-113.47514,44.9113],[-113.4761,44.91165],[-113.47744,44.91198],[-113.47802,44.91233],[-113.47838,44.91296],[-113.47858,44.91372],[-113.47931,44.91488],[-113.48017,44.91589],[-113.48143,44.9171],[-113.48281,44.91822],[-113.48343,44.91899],[-113.48352,44.91954],[-113.48378,44.91991],[-113.48435,44.92],[-113.48651,44.92003],[-113.48774,44.9203],[-113.48883,44.92093],[-113.48988,44.92193],[-113.49058,44.9232],[-113.49166,44.92442],[-113.49158,44.92541],[-113.4911,44.92676],[-113.49114,44.92752],[-113.49166,44.9282],[-113.49187,44.9288],[-113.492,44.93035],[-113.49259,44.93062],[-113.4934,44.93068],[-113.49462,44.93098],[-113.49515,44.93156],[-113.49549,44.93382],[-113.49521,44.935],[-113.49546,44.93559],[-113.49553,44.93686],[-113.49563,44.93713],[-113.49643,44.93783],[-113.49663,44.93826],[-113.49686,44.93935],[-113.49728,44.94071],[-113.4977,44.94118],[-113.4983,44.94165],[-113.4988,44.94229],[-113.49803,44.94348],[-113.49785,44.94517],[-113.49733,44.94562],[-113.49667,44.94606],[-113.49635,44.94641],[-113.49638,44.94736],[-113.49623,44.94775],[-113.4951,44.94837],[-113.4944,44.9486],[-113.49199,44.94825],[-113.48898,44.94747],[-113.48743,44.9469],[-113.48638,44.94689],[-113.48448,44.94736],[-113.48348,44.94783],[-113.48248,44.94913],[-113.48197,44.94969],[-113.48136,44.95012],[-113.48083,44.95028],[-113.47899,44.94969],[-113.47548,44.9492],[-113.47483,44.94879],[-113.47272,44.94811],[-113.47088,44.94814],[-113.46998,44.94801],[-113.46758,44.94809],[-113.4661,44.9477],[-113.46487,44.94817],[-113.46422,44.94849],[-113.46365,44.94904],[-113.46322,44.94996],[-113.46271,44.95044],[-113.46186,44.95096],[-113.46123,44.95146],[-113.46107,44.9521],[-113.4599,44.95233],[-113.45675,44.95231],[-113.45423,44.95208],[-113.45311,44.95217],[-113.4522,44.95252],[-113.45065,44.95318],[-113.44893,44.95355],[-113.44843,44.95404],[-113.44815,44.9546],[-113.44646,44.95565],[-113.44564,44.9578],[-113.44447,44.95867],[-113.44385,44.95925],[-113.44378,44.96],[-113.44748,44.96785],[-113.44837,44.96906],[-113.44969,44.97053],[-113.44963,44.97075],[-113.44724,44.97193],[-113.44633,44.97195],[-113.44533,44.97233],[-113.44498,44.97305],[-113.4448,44.97388],[-113.44487,44.97611],[-113.44562,44.97777],[-113.44579,44.97864],[-113.44612,44.9825],[-113.44704,44.98467],[-113.44699,44.98565],[-113.44673,44.98727],[-113.4457,44.99067],[-113.44515,44.99133],[-113.44502,44.99184],[-113.44538,44.99302],[-113.44553,44.99361],[-113.44548,44.99511],[-113.44565,44.99642],[-113.44596,44.99715],[-113.44638,44.99775],[-113.44667,44.99804],[-113.44689,44.9986],[-113.44612,44.99955],[-113.44324,45.00113],[-113.44276,45.00215],[-113.44247,45.00258],[-113.44188,45.00305],[-113.44025,45.00388],[-113.43816,45.00597],[-113.43774,45.00669],[-113.43775,45.00765],[-113.43812,45.00863],[-113.43875,45.00951],[-113.44147,45.01217],[-113.44209,45.01419],[-113.44225,45.01447],[-113.44401,45.01553],[-113.44446,45.01598],[-113.44494,45.0167],[-113.44552,45.01805],[-113.44576,45.01835],[-113.44854,45.01987],[-113.44876,45.02047],[-113.44827,45.02218],[-113.44842,45.02364],[-113.44759,45.02502],[-113.44752,45.02608],[-113.44783,45.02786],[-113.44772,45.02819],[-113.4471,45.02884],[-113.44619,45.03025],[-113.44602,45.03087],[-113.44623,45.03389],[-113.44668,45.03437],[-113.44904,45.0348],[-113.44986,45.03514],[-113.45068,45.03591],[-113.45236,45.03703],[-113.45498,45.03849],[-113.45571,45.03965],[-113.45584,45.04017],[-113.4554,45.04075],[-113.45237,45.04362],[-113.44938,45.0457],[-113.44917,45.04605],[-113.44917,45.04648],[-113.45121,45.04861],[-113.4512,45.04955],[-113.45055,45.0535],[-113.45063,45.05461],[-113.45192,45.05921],[-113.45424,45.06065],[-113.45567,45.06237],[-113.4596,45.06456],[-113.46053,45.06491],[-113.46133,45.06481],[-113.46304,45.0639],[-113.46393,45.0632],[-113.46513,45.06274],[-113.47376,45.06171],[-113.47597,45.06183],[-113.48171,45.06301],[-113.48286,45.06331],[-113.48483,45.06334],[-113.48551,45.06366],[-113.48619,45.0645],[-113.48621,45.06514],[-113.4861,45.06893],[-113.48679,45.0699],[-113.4883,45.07078],[-113.48886,45.07127],[-113.4888,45.07181],[-113.48845,45.07241],[-113.48681,45.07406],[-113.48702,45.07458],[-113.48944,45.07653],[-113.49106,45.07758],[-113.49238,45.07896],[-113.49311,45.07939],[-113.49634,45.08106],[-113.5009,45.0812],[-113.50595,45.084],[-113.51211,45.08694],[-113.52014,45.09305],[-113.51083,45.09989],[-113.51031,45.10345],[-113.50667,45.1073],[-113.51334,45.1152],[-113.51565,45.11532],[-113.52192,45.11392],[-113.52767,45.11358],[-113.53321,45.11456],[-113.53806,45.11504],[-113.54259,45.1143],[-113.54647,45.11228],[-113.55472,45.1129],[-113.55568,45.11397],[-113.55631,45.11522],[-113.56893,45.12417],[-113.57168,45.12391],[-113.57194,45.12613],[-113.57297,45.12748],[-113.5747,45.12842],[-113.57638,45.1302],[-113.57708,45.13141],[-113.57702,45.13261],[-113.57638,45.13375],[-113.57489,45.13518],[-113.57151,45.13798],[-113.56617,45.14314],[-113.56556,45.1458],[-113.56598,45.14931],[-113.57013,45.14799],[-113.57577,45.14782],[-113.57975,45.14855],[-113.58249,45.14998],[-113.58336,45.1518],[-113.58551,45.15342],[-113.58821,45.15433],[-113.58966,45.15528],[-113.59071,45.15827],[-113.59045,45.16149],[-113.59114,45.16216],[-113.59311,45.16366],[-113.59465,45.16604],[-113.59368,45.1689],[-113.59194,45.1713],[-113.58992,45.1756],[-113.58987,45.17696],[-113.5917,45.17927],[-113.59232,45.18115],[-113.59253,45.18468],[-113.59365,45.18517],[-113.59596,45.18576],[-113.59732,45.18665],[-113.5995,45.1911],[-113.60183,45.19179],[-113.60375,45.19167],[-113.60576,45.19207],[-113.60758,45.19418],[-113.60997,45.19671],[-113.61122,45.19738],[-113.6137,45.19729],[-113.61566,45.19882],[-113.61677,45.20046],[-113.618,45.20183],[-113.61958,45.20288],[-113.62146,45.20369],[-113.62386,45.20613],[-113.62578,45.20685],[-113.63059,45.20913],[-113.63237,45.21146],[-113.63579,45.21236],[-113.6369,45.21292],[-113.63708,45.21497],[-113.63696,45.21704],[-113.63857,45.21854],[-113.64027,45.22005],[-113.64217,45.22024],[-113.64666,45.22527],[-113.64738,45.22829],[-113.65005,45.23473],[-113.65289,45.23649],[-113.65399,45.23882],[-113.65699,45.24139],[-113.6618,45.24378],[-113.66379,45.24417],[-113.6656,45.24622],[-113.66669,45.24695],[-113.66831,45.24721],[-113.6719,45.24832],[-113.6744,45.24942],[-113.67614,45.24954],[-113.67871,45.24925],[-113.67954,45.25],[-113.67956,45.25061],[-113.67999,45.25115],[-113.68055,45.25156],[-113.68122,45.25156],[-113.68187,45.25174],[-113.68214,45.2521],[-113.68394,45.25291],[-113.68493,45.25365],[-113.68493,45.2553],[-113.68536,45.25552],[-113.68596,45.25635],[-113.686,45.25698],[-113.6864,45.25728],[-113.68967,45.26061],[-113.69063,45.26128],[-113.69194,45.26288],[-113.69277,45.26437],[-113.6924,45.26458],[-113.69086,45.26747],[-113.69059,45.26874],[-113.6908,45.26956],[-113.6914,45.27074],[-113.69152,45.27205],[-113.69193,45.27255],[-113.68979,45.27341],[-113.68859,45.27341],[-113.68717,45.27316],[-113.68655,45.27325],[-113.68606,45.27307],[-113.68379,45.27306],[-113.68236,45.27354],[-113.68012,45.27474],[-113.67886,45.27611],[-113.67927,45.27621],[-113.68006,45.2772],[-113.68016,45.27791],[-113.68021,45.27896],[-113.68031,45.2792],[-113.68089,45.27936],[-113.68143,45.27984],[-113.68301,45.28204],[-113.68404,45.28296],[-113.68537,45.28373],[-113.68623,45.2846],[-113.68679,45.28584],[-113.68725,45.28617],[-113.69063,45.28802],[-113.69263,45.28855],[-113.69527,45.28978],[-113.69707,45.29113],[-113.69802,45.29138],[-113.69974,45.29197],[-113.70064,45.29281],[-113.70179,45.29457],[-113.70253,45.29481],[-113.70292,45.29521],[-113.70293,45.2973],[-113.70377,45.29927],[-113.70436,45.29936],[-113.70642,45.29996],[-113.70761,45.30012],[-113.70924,45.30059],[-113.7103,45.3015],[-113.71102,45.30284],[-113.71161,45.30314],[-113.71306,45.30446],[-113.71365,45.30545],[-113.71308,45.30677],[-113.71476,45.30852],[-113.71575,45.31144],[-113.71676,45.31193],[-113.71811,45.31285],[-113.7187,45.31558],[-113.71857,45.31692],[-113.71899,45.31699],[-113.71963,45.31685],[-113.72106,45.31704],[-113.72266,45.31766],[-113.7239,45.31971],[-113.72451,45.31979],[-113.72815,45.31979],[-113.72852,45.32004],[-113.73146,45.32363],[-113.7327,45.32393],[-113.73378,45.32465],[-113.73507,45.32495],[-113.73562,45.32524],[-113.73726,45.32747],[-113.73876,45.32981],[-113.73837,45.33121],[-113.73947,45.33362],[-113.73983,45.33571],[-113.73979,45.33669],[-113.73926,45.33756],[-113.73868,45.33877],[-113.73877,45.33905],[-113.74019,45.34062],[-113.74012,45.34105],[-113.73937,45.34233],[-113.73989,45.34353],[-113.74016,45.34464],[-113.74021,45.34559],[-113.73971,45.34596],[-113.73851,45.34634],[-113.73764,45.3469],[-113.73591,45.34757],[-113.7344,45.3485],[-113.73473,45.35118],[-113.73463,45.35251],[-113.73429,45.3532],[-113.73369,45.35375],[-113.73079,45.35501],[-113.72886,45.35616],[-113.73072,45.35709],[-113.73137,45.35819],[-113.73254,45.36155],[-113.73332,45.363],[-113.7334,45.36431],[-113.73439,45.36446],[-113.73547,45.36469],[-113.73746,45.36595],[-113.73835,45.36712],[-113.73891,45.36819],[-113.73881,45.36859],[-113.73858,45.36888],[-113.73792,45.36929],[-113.73574,45.37045],[-113.73492,45.3714],[-113.73404,45.37207],[-113.73289,45.37323],[-113.73329,45.37351],[-113.73374,45.37409],[-113.73441,45.37675],[-113.73404,45.37767],[-113.73422,45.37854],[-113.73408,45.37928],[-113.73432,45.37985],[-113.73369,45.38153],[-113.73385,45.38219],[-113.73384,45.38274],[-113.73347,45.38328],[-113.73277,45.3837],[-113.73258,45.3841],[-113.73238,45.38501],[-113.73275,45.38569],[-113.73238,45.38691],[-113.73273,45.38791],[-113.73263,45.38841],[-113.73313,45.39023],[-113.73353,45.39072],[-113.73437,45.39232],[-113.73763,45.39385],[-113.73833,45.39411],[-113.73881,45.39446],[-113.73982,45.39455],[-113.74341,45.39626],[-113.74387,45.39661],[-113.74785,45.40048],[-113.7484,45.40149],[-113.74924,45.40297],[-113.75051,45.40271],[-113.75087,45.40291],[-113.75186,45.40268],[-113.7526,45.40273],[-113.75535,45.40393],[-113.75743,45.40522],[-113.76089,45.40649],[-113.76172,45.40653],[-113.76734,45.40627],[-113.77055,45.40677],[-113.77311,45.40646],[-113.774,45.40662],[-113.77506,45.40728],[-113.77589,45.40801],[-113.77602,45.4085],[-113.7759,45.4089],[-113.77538,45.4099],[-113.77551,45.41017],[-113.77534,45.41081],[-113.77541,45.41167],[-113.77654,45.41472],[-113.77663,45.41512],[-113.77701,45.4157],[-113.77723,45.41636],[-113.7768,45.41672],[-113.7761,45.41708],[-113.77459,45.41844],[-113.77274,45.41976],[-113.77049,45.42042],[-113.76829,45.42123],[-113.7663,45.42125],[-113.76439,45.42211],[-113.76173,45.42363],[-113.76131,45.42407],[-113.76041,45.42577],[-113.75951,45.42717],[-113.76003,45.42751],[-113.76062,45.42777],[-113.76084,45.42808],[-113.76315,45.42975],[-113.76416,45.43084],[-113.76537,45.43129],[-113.76666,45.43154],[-113.76843,45.43135],[-113.76927,45.43156],[-113.77183,45.43155],[-113.77348,45.43172],[-113.77393,45.43197],[-113.77477,45.43287],[-113.77603,45.43404],[-113.77632,45.43443],[-113.77676,45.43602],[-113.77564,45.43787],[-113.77442,45.44196],[-113.77448,45.44425],[-113.77432,45.44646],[-113.77468,45.44738],[-113.7753,45.44797],[-113.77701,45.44874],[-113.77907,45.45002],[-113.78269,45.45151],[-113.78327,45.45185],[-113.7836,45.45236],[-113.78354,45.45372],[-113.78414,45.45498],[-113.78219,45.45664],[-113.78182,45.4568],[-113.78127,45.45739],[-113.77887,45.4594],[-113.77634,45.46078],[-113.77429,45.46345],[-113.77439,45.46393],[-113.77416,45.46538],[-113.77536,45.46752],[-113.77639,45.47039],[-113.77622,45.47078],[-113.77583,45.47102],[-113.76838,45.47347],[-113.76772,45.47384],[-113.76471,45.47719],[-113.76355,45.47806],[-113.75982,45.48026],[-113.76052,45.48306],[-113.76012,45.48617],[-113.76182,45.48856],[-113.76323,45.49102],[-113.76355,45.49358],[-113.76403,45.4956],[-113.76428,45.49747],[-113.76468,45.49908],[-113.76559,45.50077],[-113.76619,45.50144],[-113.76742,45.50186],[-113.76865,45.5027],[-113.76925,45.50413],[-113.7696,45.50517],[-113.7701,45.50551],[-113.77051,45.50612],[-113.77099,45.50782],[-113.77046,45.50893],[-113.76947,45.51013],[-113.76951,45.51079],[-113.77006,45.51202],[-113.77051,45.5122],[-113.77148,45.51203],[-113.77247,45.51237],[-113.77281,45.5133],[-113.77286,45.51441],[-113.7716,45.51581],[-113.76961,45.51778],[-113.76602,45.52061],[-113.76608,45.52073],[-113.76833,45.52144],[-113.77053,45.52196],[-113.7745,45.52263],[-113.77642,45.52319],[-113.77832,45.52342],[-113.77959,45.52299],[-113.78104,45.52226],[-113.78197,45.5219],[-113.78337,45.52215],[-113.78541,45.52237],[-113.78794,45.52248],[-113.79,45.5225],[-113.7927,45.52202],[-113.79452,45.52273],[-113.79655,45.52345],[-113.79964,45.52329],[-113.80286,45.52316],[-113.80519,45.5222],[-113.80751,45.52057],[-113.80913,45.5199],[-113.81053,45.51993],[-113.81224,45.52043],[-113.81437,45.52089],[-113.81598,45.52095],[-113.81691,45.5212],[-113.81845,45.52209],[-113.81945,45.52304],[-113.8201,45.5231],[-113.821,45.52294],[-113.82242,45.52214],[-113.82388,45.52142],[-113.82504,45.52127],[-113.82749,45.5213],[-113.83173,45.5207],[-113.83381,45.52052],[-113.8346,45.52074],[-113.83405,45.52139],[-113.83412,45.52203],[-113.83428,45.52255],[-113.83421,45.52309],[-113.83139,45.52557],[-113.83133,45.52614],[-113.83057,45.52733],[-113.83041,45.52804],[-113.83041,45.52988],[-113.82943,45.53158],[-113.82792,45.53243],[-113.82735,45.53334],[-113.82729,45.53385],[-113.82758,45.53476],[-113.829,45.53643],[-113.82929,45.53705],[-113.82925,45.53772],[-113.82791,45.53969],[-113.827,45.54031],[-113.82652,45.5408],[-113.82632,45.54125],[-113.82642,45.54238],[-113.82591,45.54355],[-113.82523,45.54402],[-113.82391,45.54601],[-113.82254,45.54666],[-113.82141,45.54726],[-113.82118,45.54746],[-113.82119,45.548],[-113.82087,45.54893],[-113.82032,45.54965],[-113.81974,45.55061],[-113.8194,45.5521],[-113.81884,45.55575],[-113.81834,45.55645],[-113.81745,45.55669],[-113.8174,45.55836],[-113.81721,45.55988],[-113.81788,45.56186],[-113.81868,45.56342],[-113.81976,45.5645],[-113.8208,45.56535],[-113.82142,45.56597],[-113.82057,45.56609],[-113.81984,45.56636],[-113.81906,45.56689],[-113.81705,45.56784],[-113.81675,45.56865],[-113.81583,45.56928],[-113.81503,45.56964],[-113.81148,45.57438],[-113.81042,45.57494],[-113.80982,45.57623],[-113.8084,45.57659],[-113.80781,45.57696],[-113.80693,45.57817],[-113.80581,45.57834],[-113.80521,45.57853],[-113.80473,45.57914],[-113.80404,45.5796],[-113.80226,45.58029],[-113.79987,45.581],[-113.79885,45.58144],[-113.7977,45.58163],[-113.79678,45.58153],[-113.79668,45.58164],[-113.79747,45.58261],[-113.79813,45.58364],[-113.79865,45.58523],[-113.79821,45.58666],[-113.80295,45.59157],[-113.80435,45.59386],[-113.80537,45.596],[-113.80596,45.59982],[-113.80668,45.60211],[-113.80853,45.60404],[-113.81051,45.60555],[-113.81336,45.60675],[-113.81836,45.60795],[-113.82069,45.61003],[-113.82305,45.61247],[-113.82582,45.61319],[-113.82893,45.6126],[-113.83123,45.61138],[-113.83354,45.61029],[-113.83487,45.61008],[-113.83873,45.61068],[-113.84109,45.61176],[-113.84276,45.61235],[-113.84344,45.61282],[-113.84496,45.6145],[-113.84687,45.61627],[-113.84811,45.61804],[-113.84855,45.62005],[-113.85007,45.62025],[-113.85214,45.62085],[-113.85379,45.62163],[-113.8542,45.62219],[-113.85456,45.62221],[-113.85632,45.62189],[-113.85727,45.62154],[-113.85847,45.62159],[-113.86012,45.62256],[-113.86137,45.62364],[-113.86217,45.6238],[-113.86359,45.62301],[-113.86527,45.6223],[-113.87,45.62223],[-113.87355,45.62011],[-113.8754,45.62001],[-113.87835,45.61859],[-113.87916,45.61825],[-113.88289,45.61873],[-113.88358,45.61837],[-113.88428,45.6177],[-113.88505,45.61722],[-113.88602,45.61698],[-113.887,45.61709],[-113.88872,45.61743],[-113.89172,45.61896],[-113.89291,45.6203],[-113.89333,45.62045],[-113.89718,45.62158],[-113.89777,45.62187],[-113.89869,45.62183],[-113.90056,45.62202],[-113.902,45.62162],[-113.90344,45.62157],[-113.90476,45.62196],[-113.90519,45.62262],[-113.90458,45.62424],[-113.90466,45.62454],[-113.90174,45.62725],[-113.89997,45.62836],[-113.89949,45.62857],[-113.9006,45.62925],[-113.90136,45.63006],[-113.9015,45.63065],[-113.90143,45.63179],[-113.90093,45.63238],[-113.90102,45.63262],[-113.90174,45.63336],[-113.90203,45.63428],[-113.90206,45.63526],[-113.90255,45.63697],[-113.90221,45.63761],[-113.90097,45.63895],[-113.89975,45.63973],[-113.89887,45.64052],[-113.89698,45.64122],[-113.89566,45.64219],[-113.89517,45.64313],[-113.89527,45.64419],[-113.89687,45.64606],[-113.89753,45.64661],[-113.89911,45.6472],[-113.90043,45.64756],[-113.90109,45.6479],[-113.90174,45.64968],[-113.90248,45.65042],[-113.9034,45.65111],[-113.90481,45.65158],[-113.90737,45.65308],[-113.90788,45.65307],[-113.90992,45.65295],[-113.91159,45.65322],[-113.91216,45.65372],[-113.91291,45.65379],[-113.91373,45.65499],[-113.91426,45.65656],[-113.91502,45.65683],[-113.916,45.65691],[-113.91698,45.65728],[-113.91789,45.65789],[-113.91947,45.65781],[-113.91984,45.65821],[-113.91973,45.65877],[-113.92099,45.66077],[-113.92071,45.66241],[-113.92077,45.66357],[-113.92046,45.66409],[-113.92263,45.66511],[-113.92324,45.66546],[-113.92355,45.66671],[-113.92351,45.66748],[-113.92406,45.66779],[-113.92495,45.66809],[-113.92561,45.66815],[-113.92823,45.66912],[-113.92892,45.67031],[-113.92918,45.67119],[-113.93038,45.67189],[-113.93115,45.67199],[-113.9315,45.67297],[-113.9306,45.67412],[-113.93039,45.67516],[-113.9313,45.67689],[-113.93117,45.67755],[-113.93084,45.6782],[-113.93094,45.67838],[-113.93281,45.67934],[-113.93425,45.6822],[-113.93396,45.68498],[-113.93301,45.68632],[-113.93271,45.68713],[-113.93313,45.68824],[-113.93403,45.68859],[-113.93512,45.68881],[-113.93553,45.68921],[-113.93538,45.68946],[-113.93446,45.68973],[-113.93412,45.69028],[-113.93387,45.69168],[-113.93392,45.69304],[-113.93501,45.69432],[-113.93639,45.69517],[-113.93798,45.69578],[-113.93887,45.69568],[-113.94014,45.69546],[-113.94497,45.69373],[-113.94699,45.6937],[-113.94854,45.69342],[-113.95105,45.6922],[-113.95202,45.69142],[-113.95403,45.69078],[-113.95647,45.6902],[-113.95807,45.69009],[-113.95946,45.69037],[-113.96115,45.68973],[-113.96367,45.68982],[-113.96473,45.69006],[-113.96564,45.6906],[-113.96656,45.69093],[-113.96735,45.69101],[-113.96798,45.69129],[-113.96933,45.69311],[-113.96917,45.69395],[-113.96873,45.69479],[-113.96885,45.69524],[-113.96965,45.69678],[-113.96961,45.69716],[-113.97069,45.69883],[-113.97159,45.70069],[-113.97126,45.70218],[-113.97093,45.70235],[-113.97066,45.70277],[-113.97087,45.70294],[-113.97194,45.70248],[-113.97357,45.70278],[-113.97518,45.70281],[-113.97567,45.70294],[-113.97601,45.70276],[-113.97759,45.70274],[-113.97899,45.7026],[-113.97975,45.70238],[-113.98059,45.70247],[-113.98269,45.70352],[-113.98513,45.70404],[-113.98668,45.70458],[-113.98715,45.70499],[-113.9878,45.70529],[-113.98785,45.70565],[-113.98814,45.70588],[-113.9886,45.70588],[-113.98927,45.70541],[-113.99114,45.70486],[-113.99143,45.70425],[-113.9922,45.7039],[-113.9928,45.70382],[-113.99356,45.70345],[-113.99386,45.70269],[-113.99335,45.70165],[-113.99322,45.70127],[-113.99352,45.70052],[-113.99442,45.69965],[-113.99553,45.69938],[-113.9958,45.69921],[-113.99581,45.6987],[-113.99659,45.6978],[-113.99656,45.69764],[-113.9962,45.69748],[-113.99609,45.69708],[-113.99656,45.6969],[-113.99728,45.69669],[-113.99889,45.69654],[-114.00018,45.6966],[-114.001,45.69636],[-114.00199,45.69651],[-114.00341,45.6952],[-114.00505,45.69458],[-114.00747,45.69411],[-114.00884,45.69418],[-114.01012,45.69435],[-114.01226,45.69444],[-114.01396,45.69542],[-114.01558,45.69613],[-114.01667,45.69503],[-114.01815,45.69395],[-114.01934,45.69294],[-114.01921,45.69223],[-114.01834,45.69068],[-114.01714,45.68918],[-114.0167,45.68748],[-114.01566,45.68529],[-114.01484,45.68441],[-114.01466,45.68404],[-114.01502,45.68368],[-114.01951,45.68196],[-114.02057,45.6812],[-114.0224,45.67975],[-114.02452,45.67759],[-114.02593,45.67654],[-114.02824,45.67538],[-114.02734,45.67513],[-114.02592,45.67405],[-114.02507,45.67306],[-114.02464,45.67185],[-114.02366,45.6706],[-114.02183,45.6707],[-114.02079,45.67056],[-114.02009,45.67037],[-114.01715,45.66609],[-114.01626,45.66447],[-114.01607,45.66371],[-114.01604,45.66019],[-114.01381,45.65825],[-114.01487,45.65664],[-114.015,45.65397],[-114.01646,45.65241],[-114.01669,45.65177],[-114.01756,45.65064],[-114.01872,45.64861],[-114.01988,45.64862],[-114.02079,45.64842],[-114.02191,45.64801],[-114.02347,45.64826],[-114.02556,45.64825],[-114.02752,45.64809],[-114.03227,45.64892],[-114.03344,45.64865],[-114.03499,45.64793],[-114.03608,45.64712],[-114.03757,45.64496],[-114.03878,45.6444],[-114.03986,45.64366],[-114.04086,45.64264],[-114.04243,45.6417],[-114.04369,45.64034],[-114.04459,45.63914],[-114.04505,45.6376],[-114.04555,45.6367],[-114.04749,45.63568],[-114.05094,45.63413],[-114.05297,45.63272],[-114.05775,45.63198],[-114.05923,45.6315],[-114.0608,45.63084],[-114.06269,45.63026],[-114.06461,45.6293],[-114.06643,45.62849],[-114.06762,45.62771],[-114.06829,45.62657],[-114.06964,45.62492],[-114.07279,45.62132],[-114.0723,45.61853],[-114.07304,45.6174],[-114.0742,45.61502],[-114.07688,45.61336],[-114.07859,45.61268],[-114.0799,45.61206],[-114.08088,45.61196],[-114.08179,45.61138],[-114.08236,45.60975],[-114.08252,45.60791],[-114.08268,45.60706],[-114.0826,45.60542],[-114.08313,45.60401],[-114.08308,45.60066],[-114.08317,45.59977],[-114.08307,45.59849],[-114.08212,45.59693],[-114.08557,45.5928],[-114.08596,45.59256],[-114.08617,45.59185],[-114.08659,45.59118],[-114.08813,45.59099],[-114.08916,45.59104],[-114.08988,45.59127],[-114.09299,45.59016],[-114.09434,45.58935],[-114.09546,45.58812],[-114.09776,45.58699],[-114.10028,45.58635],[-114.10209,45.58612],[-114.10507,45.58546],[-114.10673,45.58532],[-114.10733,45.58537],[-114.10874,45.58584],[-114.11151,45.58564],[-114.11814,45.58444],[-114.12018,45.58444],[-114.12084,45.58488],[-114.12234,45.58426],[-114.12531,45.58118],[-114.12591,45.58033],[-114.12629,45.57915],[-114.12914,45.57743],[-114.13043,45.57602],[-114.13149,45.57441],[-114.13237,45.57255],[-114.13099,45.57125],[-114.12944,45.57019],[-114.12862,45.56903],[-114.129,45.56768],[-114.12909,45.56553],[-114.13064,45.56429],[-114.13275,45.56288],[-114.13404,45.5608],[-114.13471,45.55913],[-114.1352,45.55747],[-114.14343,45.55749],[-114.14412,45.55791],[-114.14717,45.55821],[-114.15031,45.55804],[-114.15179,45.55548],[-114.15266,45.55451],[-114.15314,45.55367],[-114.15483,45.55293],[-114.1599,45.55318],[-114.16319,45.55281],[-114.16786,45.55162],[-114.16848,45.55113],[-114.17107,45.55079],[-114.17344,45.55045],[-114.17557,45.5506],[-114.17702,45.55096],[-114.17862,45.55083],[-114.18,45.55144],[-114.18077,45.5503],[-114.18478,45.5473],[-114.18647,45.54555],[-114.18706,45.54376],[-114.18787,45.54214],[-114.18891,45.54122],[-114.18939,45.54141],[-114.19,45.54091],[-114.1906,45.5396],[-114.19049,45.53878],[-114.19161,45.53776],[-114.19274,45.53659],[-114.19851,45.53626],[-114.20076,45.53644],[-114.20175,45.53566],[-114.20368,45.53554],[-114.20604,45.53666],[-114.20714,45.53813],[-114.20776,45.53931],[-114.20927,45.53973],[-114.21159,45.53953],[-114.2126,45.53998],[-114.21636,45.54127],[-114.21796,45.54196],[-114.22026,45.54229],[-114.22177,45.54289],[-114.2231,45.54391],[-114.22467,45.54456],[-114.22662,45.54581],[-114.22783,45.5464],[-114.23092,45.54662],[-114.23448,45.54653],[-114.23705,45.54666],[-114.2409,45.5465],[-114.2426,45.54591],[-114.24439,45.54579],[-114.24625,45.5454],[-114.24786,45.54547],[-114.24813,45.54591],[-114.24849,45.54546],[-114.24874,45.5447],[-114.24927,45.54369],[-114.24985,45.54295],[-114.25008,45.54198],[-114.25,45.54071],[-114.25036,45.53986],[-114.25089,45.53922],[-114.2516,45.53845],[-114.25183,45.53779],[-114.25154,45.53685],[-114.25092,45.5366],[-114.25018,45.53617],[-114.24895,45.53483],[-114.24819,45.53321],[-114.2483,45.53175],[-114.24918,45.53035],[-114.24914,45.52879],[-114.24819,45.5271],[-114.24753,45.52571],[-114.24783,45.52429],[-114.24857,45.52383],[-114.24899,45.52309],[-114.24897,45.52064],[-114.24977,45.51933],[-114.25092,45.51883],[-114.25181,45.51765],[-114.25201,45.5167],[-114.25307,45.51577],[-114.25423,45.5149],[-114.25525,45.51346],[-114.25798,45.51173],[-114.25843,45.51056],[-114.25852,45.50927],[-114.25924,45.50812],[-114.25939,45.50545],[-114.2604,45.50349],[-114.26018,45.50207],[-114.2603,45.49993],[-114.26071,45.49992],[-114.26088,45.49811],[-114.2617,45.4958],[-114.26428,45.49303],[-114.26682,45.49156],[-114.2713,45.49124],[-114.27146,45.48779],[-114.2707,45.48608],[-114.27028,45.48554],[-114.27065,45.48476],[-114.2712,45.48434],[-114.27282,45.48452],[-114.27409,45.48413],[-114.27564,45.48331],[-114.27642,45.48234],[-114.27745,45.48161],[-114.27927,45.48062],[-114.28126,45.48035],[-114.28308,45.48063],[-114.28568,45.48028],[-114.28768,45.47932],[-114.28945,45.47989],[-114.29371,45.48015],[-114.29719,45.47849],[-114.29999,45.47671],[-114.30057,45.47568],[-114.30091,45.47421],[-114.30133,45.47339],[-114.30232,45.4723],[-114.30337,45.47163],[-114.30516,45.47127],[-114.30952,45.46941],[-114.31073,45.46968],[-114.31349,45.46969],[-114.31444,45.46959],[-114.31583,45.46863],[-114.31738,45.46664],[-114.31833,45.46598],[-114.3206,45.466],[-114.32218,45.46621],[-114.32372,45.46607],[-114.32513,45.46564],[-114.32802,45.46371],[-114.33014,45.46165],[-114.3309,45.4603],[-114.33311,45.45925],[-114.3363,45.46012],[-114.33704,45.46082],[-114.3376,45.46106],[-114.33867,45.46052],[-114.33973,45.45979],[-114.34104,45.45976],[-114.34174,45.45991],[-114.34229,45.45973],[-114.34492,45.45985],[-114.34727,45.46226],[-114.34962,45.46478],[-114.35063,45.46628],[-114.35092,45.46944],[-114.35113,45.47043],[-114.35195,45.47101],[-114.35295,45.47136],[-114.35527,45.47143],[-114.35811,45.47205],[-114.35925,45.47259],[-114.36064,45.47403],[-114.36106,45.47501],[-114.36105,45.476],[-114.36061,45.47705],[-114.36041,45.47797],[-114.36062,45.47932],[-114.36112,45.4802],[-114.36306,45.48234],[-114.36372,45.48264],[-114.36524,45.48466],[-114.36549,45.48564],[-114.36532,45.48809],[-114.36559,45.49029],[-114.36594,45.49095],[-114.36673,45.49172],[-114.36856,45.49273],[-114.36937,45.49298],[-114.37204,45.49324],[-114.37336,45.49328],[-114.3745,45.49351],[-114.37533,45.49402],[-114.37599,45.49497],[-114.3776,45.49548],[-114.37899,45.49706],[-114.38188,45.49795],[-114.38514,45.49997],[-114.38862,45.5029],[-114.39246,45.50256],[-114.39294,45.50309],[-114.39572,45.50379],[-114.39628,45.5038],[-114.39872,45.50467],[-114.40172,45.50537],[-114.40348,45.50631],[-114.40661,45.50648],[-114.40833,45.50758],[-114.41396,45.50936],[-114.41579,45.50977],[-114.41811,45.50989],[-114.41931,45.5094],[-114.42385,45.50952],[-114.42656,45.51163],[-114.42684,45.51368],[-114.42669,45.51434],[-114.42901,45.51655],[-114.42944,45.51798],[-114.42875,45.52007],[-114.42898,45.52149],[-114.42989,45.52251],[-114.43063,45.5236],[-114.4309,45.52625],[-114.43049,45.52752],[-114.42988,45.52849],[-114.43014,45.52928],[-114.43212,45.52985],[-114.43462,45.53023],[-114.43635,45.53081],[-114.4375,45.5309],[-114.43917,45.53275],[-114.4392,45.53399],[-114.4388,45.53521],[-114.439,45.53612],[-114.44043,45.53702],[-114.44383,45.53883],[-114.4466,45.53908],[-114.44925,45.53961],[-114.45034,45.54211],[-114.45091,45.5425],[-114.45248,45.54278],[-114.45465,45.5436],[-114.45677,45.54398],[-114.45876,45.54364],[-114.46049,45.54342],[-114.46259,45.54394],[-114.46394,45.54541],[-114.46434,45.5463],[-114.46411,45.54736],[-114.4618,45.54843],[-114.46139,45.55038],[-114.46201,45.55197],[-114.46283,45.55304],[-114.46176,45.55366],[-114.46155,45.55464],[-114.45901,45.5586],[-114.45897,45.55919],[-114.45601,45.56052],[-114.45615,45.56215],[-114.45818,45.56165],[-114.4609,45.56121],[-114.46326,45.56099],[-114.46505,45.56049],[-114.46581,45.56063],[-114.47178,45.56519],[-114.47253,45.56474],[-114.4738,45.56328],[-114.4751,45.56283],[-114.47613,45.5628],[-114.47821,45.56184],[-114.47912,45.56183],[-114.48002,45.56169],[-114.48055,45.56101],[-114.4831,45.56088],[-114.48495,45.56166],[-114.49138,45.55715],[-114.49722,45.55537],[-114.4982,45.55546],[-114.49893,45.55639],[-114.50021,45.55641],[-114.50166,45.5574],[-114.5023,45.5585],[-114.5043,45.55912],[-114.50621,45.55918],[-114.51017,45.56204],[-114.51413,45.56471],[-114.51574,45.567],[-114.51761,45.56809],[-114.52153,45.56849],[-114.52606,45.57081],[-114.52881,45.57004],[-114.53018,45.56801],[-114.53288,45.56594],[-114.53531,45.56499],[-114.53833,45.56416],[-114.54072,45.564],[-114.5426,45.56347],[-114.54489,45.56236],[-114.54681,45.56176],[-114.54953,45.56056],[-114.55129,45.55907],[-114.55249,45.55719],[-114.55384,45.55699],[-114.55559,45.55751],[-114.55743,45.55791],[-114.55917,45.55895],[-114.56073,45.55933],[-114.56485,45.55772],[-114.56532,45.56007],[-114.56544,45.56248],[-114.56467,45.56362],[-114.56329,45.56459],[-114.56169,45.56513],[-114.56038,45.56523],[-114.55898,45.56568],[-114.55785,45.56732],[-114.55728,45.56856],[-114.55697,45.56967],[-114.55734,45.57053],[-114.55745,45.57138],[-114.5567,45.57299],[-114.5551,45.57418],[-114.55338,45.57613],[-114.55304,45.57688],[-114.55363,45.57944],[-114.55457,45.5815],[-114.55534,45.58229],[-114.55767,45.58359],[-114.55854,45.58428],[-114.55827,45.58511],[-114.55706,45.58588],[-114.55636,45.58712],[-114.55463,45.58808],[-114.55368,45.58885],[-114.55403,45.59128],[-114.55306,45.59272],[-114.55127,45.59388],[-114.55012,45.59482],[-114.54903,45.59605],[-114.54824,45.59827],[-114.54737,45.59965],[-114.54613,45.60048],[-114.54437,45.60142],[-114.54258,45.60184],[-114.54087,45.60366],[-114.53942,45.60492],[-114.53856,45.60583],[-114.53806,45.60682],[-114.54038,45.6092],[-114.5421,45.61196],[-114.5439,45.61526],[-114.54485,45.61671],[-114.54731,45.6175],[-114.55002,45.6183],[-114.55192,45.61864],[-114.55376,45.61916],[-114.55488,45.62046],[-114.5549,45.6217],[-114.55579,45.62294],[-114.55795,45.62481],[-114.55827,45.62542],[-114.55815,45.62669],[-114.55871,45.62779],[-114.56125,45.63019],[-114.56337,45.63162],[-114.56385,45.63392],[-114.56373,45.63748],[-114.56259,45.63872],[-114.5611,45.6399],[-114.55787,45.64097],[-114.55569,45.64118],[-114.55384,45.64179],[-114.55077,45.64265],[-114.54718,45.64262],[-114.54556,45.64297],[-114.54363,45.64253],[-114.54239,45.64191],[-114.54179,45.64127],[-114.54166,45.64243],[-114.54061,45.64499],[-114.53966,45.64634],[-114.53999,45.64749],[-114.54099,45.64786],[-114.54123,45.64905],[-114.54058,45.65007],[-114.53872,45.65062],[-114.53712,45.65039],[-114.5358,45.65066],[-114.53407,45.65109],[-114.53252,45.65137],[-114.5296,45.65231],[-114.52817,45.65216],[-114.52697,45.65101],[-114.52461,45.6499],[-114.52226,45.64933],[-114.51891,45.65126],[-114.5154,45.65289],[-114.5124,45.65594],[-114.50978,45.65644],[-114.50776,45.65769],[-114.50763,45.65896],[-114.50675,45.66049],[-114.50613,45.66203],[-114.50346,45.66468],[-114.50089,45.66679],[-114.50049,45.66797],[-114.4999,45.6686],[-114.49966,45.6691],[-114.50024,45.67034],[-114.50028,45.67167],[-114.50054,45.67188],[-114.50093,45.67187],[-114.50123,45.67248],[-114.50186,45.6731],[-114.50221,45.67438],[-114.50217,45.67526],[-114.50171,45.67693],[-114.50147,45.67737],[-114.50094,45.67732],[-114.5001,45.67806],[-114.49925,45.67853],[-114.49905,45.67928],[-114.49936,45.68005],[-114.49991,45.68061],[-114.5002,45.68134],[-114.50036,45.68206],[-114.50078,45.68244],[-114.50096,45.68225],[-114.50154,45.68239],[-114.50375,45.68237],[-114.50533,45.68254],[-114.50729,45.68341],[-114.5089,45.68347],[-114.51051,45.68324],[-114.51385,45.68404],[-114.51523,45.68494],[-114.51413,45.68558],[-114.51252,45.68634],[-114.51138,45.68767],[-114.50981,45.68881],[-114.50585,45.69078],[-114.50379,45.69203],[-114.5013,45.69364],[-114.50133,45.6952],[-114.50089,45.69564],[-114.5007,45.69613],[-114.49889,45.69753],[-114.49794,45.69846],[-114.49703,45.69899],[-114.49638,45.6997],[-114.49644,45.70064],[-114.49564,45.70212],[-114.49541,45.70322],[-114.49599,45.70435],[-114.4961,45.70554],[-114.49639,45.70697],[-114.49722,45.70816],[-114.49753,45.70945],[-114.49758,45.71074],[-114.49823,45.71176],[-114.49931,45.71295],[-114.50027,45.71466],[-114.50097,45.7147],[-114.50288,45.7169],[-114.50325,45.71809],[-114.50313,45.71867],[-114.50416,45.72075],[-114.50425,45.72175],[-114.50701,45.7236],[-114.5084,45.72399],[-114.51186,45.72529],[-114.51411,45.72664],[-114.51474,45.72716],[-114.51543,45.72723],[-114.51817,45.72673],[-114.52049,45.72652],[-114.52274,45.72712],[-114.52447,45.72724],[-114.52619,45.72754],[-114.52709,45.72838],[-114.52863,45.73167],[-114.52956,45.73263],[-114.53046,45.73308],[-114.53264,45.73557],[-114.53384,45.73627],[-114.5347,45.73823],[-114.53581,45.73916],[-114.54316,45.74149],[-114.54721,45.74319],[-114.54785,45.74336],[-114.54792,45.74357],[-114.54726,45.74498],[-114.54599,45.74614],[-114.54583,45.74714],[-114.54634,45.74826],[-114.54643,45.74923],[-114.54617,45.75021],[-114.54738,45.75157],[-114.54721,45.75239],[-114.54598,45.75392],[-114.5458,45.75443],[-114.54613,45.75631],[-114.54441,45.75738],[-114.54406,45.7581],[-114.54469,45.7593],[-114.54575,45.76051],[-114.54767,45.76162],[-114.54899,45.76232],[-114.55031,45.76333],[-114.55181,45.76405],[-114.55354,45.76373],[-114.55754,45.76415],[-114.55851,45.76495],[-114.55947,45.76604],[-114.55997,45.76711],[-114.56107,45.76865],[-114.56249,45.76985],[-114.56365,45.77039],[-114.56517,45.77166],[-114.56614,45.77284],[-114.56618,45.77395],[-114.56501,45.77506],[-114.56383,45.77572],[-114.56316,45.77658],[-114.56343,45.77783],[-114.56256,45.7798],[-114.56195,45.7804],[-114.56027,45.78117],[-114.55902,45.78237],[-114.55711,45.78331],[-114.55623,45.78431],[-114.55542,45.78631],[-114.55569,45.7866],[-114.55452,45.78687],[-114.55233,45.78773],[-114.55074,45.78806],[-114.54923,45.78844],[-114.54705,45.78979],[-114.54575,45.79004],[-114.54471,45.79005],[-114.54388,45.79028],[-114.54478,45.79159],[-114.54526,45.79464],[-114.54496,45.79631],[-114.54509,45.79786],[-114.54407,45.79873],[-114.54095,45.79976],[-114.53901,45.80175],[-114.5375,45.80284],[-114.53749,45.80338],[-114.53775,45.80427],[-114.53748,45.80479],[-114.5365,45.80552],[-114.53244,45.80823],[-114.53091,45.80957],[-114.53063,45.81075],[-114.53069,45.81188],[-114.53013,45.81348],[-114.53055,45.81373],[-114.53141,45.81399],[-114.53217,45.81479],[-114.53259,45.81577],[-114.53164,45.8172],[-114.53087,45.81898],[-114.528,45.81961],[-114.52739,45.82005],[-114.52643,45.82026],[-114.52512,45.82198],[-114.52294,45.82273],[-114.52152,45.82414],[-114.5192,45.82498],[-114.51607,45.82597],[-114.51459,45.82692],[-114.51403,45.82754],[-114.51355,45.82834],[-114.5129,45.82888],[-114.51148,45.82953],[-114.51271,45.82957],[-114.51362,45.83058],[-114.51504,45.83093],[-114.51621,45.83173],[-114.51713,45.8332],[-114.5172,45.83606],[-114.5165,45.83746],[-114.5159,45.83833],[-114.51459,45.84079],[-114.51199,45.84176],[-114.5112,45.84326],[-114.51016,45.84477],[-114.50927,45.84562],[-114.50834,45.84578],[-114.50712,45.84568],[-114.5059,45.84583],[-114.50451,45.84564],[-114.50329,45.84612],[-114.50284,45.84751],[-114.50222,45.84818],[-114.5015,45.84858],[-114.50014,45.85],[-114.49885,45.85068],[-114.49534,45.84987],[-114.49462,45.84977],[-114.494,45.84954],[-114.49359,45.84982],[-114.49309,45.84997],[-114.49266,45.84982],[-114.4921,45.84978],[-114.49163,45.84995],[-114.49077,45.84986],[-114.48849,45.85077],[-114.4872,45.85164],[-114.48466,45.85145],[-114.48262,45.85063],[-114.48135,45.84904],[-114.48008,45.84828],[-114.47554,45.84638],[-114.47184,45.84754],[-114.47089,45.84929],[-114.47071,45.85047],[-114.4702,45.85134],[-114.46923,45.85163],[-114.46836,45.85174],[-114.46772,45.85189],[-114.46631,45.85193],[-114.46524,45.85203],[-114.46337,45.85327],[-114.46227,45.85451],[-114.46137,45.8551],[-114.45855,45.85468],[-114.45684,45.85462],[-114.45509,45.85517],[-114.45342,45.85589],[-114.45222,45.85661],[-114.45119,45.85751],[-114.44862,45.85895],[-114.448,45.86028],[-114.44714,45.86101],[-114.44593,45.86156],[-114.44384,45.86182],[-114.43995,45.86197],[-114.43833,45.86238],[-114.43766,45.86268],[-114.43717,45.86183],[-114.43635,45.86117],[-114.43485,45.86103],[-114.43319,45.86053],[-114.43205,45.8598],[-114.43093,45.85943],[-114.43023,45.85954],[-114.42808,45.85799],[-114.42662,45.85779],[-114.42611,45.85776],[-114.42518,45.85716],[-114.42442,45.85654],[-114.42396,45.85592],[-114.42299,45.85537],[-114.42168,45.85518],[-114.42047,45.85515],[-114.41977,45.85471],[-114.41827,45.85352],[-114.41596,45.85285],[-114.41459,45.85264],[-114.41377,45.85262],[-114.4132,45.85246],[-114.41291,45.85245],[-114.41284,45.8521],[-114.41263,45.85217],[-114.41242,45.85209],[-114.41212,45.85189],[-114.41085,45.85185],[-114.40966,45.85154],[-114.40951,45.85163],[-114.40962,45.85187],[-114.40912,45.85282],[-114.40848,45.85463],[-114.40843,45.85592],[-114.40807,45.85639],[-114.40693,45.85959],[-114.40608,45.86052],[-114.40609,45.86094],[-114.40667,45.86231],[-114.40657,45.86352],[-114.40679,45.86397],[-114.40589,45.86498],[-114.40501,45.86612],[-114.40495,45.86688],[-114.40584,45.86816],[-114.4063,45.86915],[-114.40572,45.87046],[-114.4052,45.87102],[-114.40414,45.87188],[-114.4032,45.87203],[-114.40214,45.8718],[-114.40112,45.87133],[-114.39934,45.87092],[-114.39764,45.87099],[-114.39654,45.87112],[-114.39558,45.87225],[-114.39558,45.87372],[-114.39523,45.87429],[-114.39376,45.87489],[-114.39397,45.87535],[-114.39392,45.87599],[-114.39261,45.87705],[-114.3928,45.8777],[-114.39281,45.87853],[-114.39258,45.879],[-114.38971,45.88017],[-114.38904,45.8814],[-114.38838,45.88227],[-114.38828,45.8829],[-114.38767,45.88455],[-114.38757,45.88621],[-114.38719,45.88737],[-114.38716,45.88919],[-114.3882,45.89175],[-114.38874,45.89215],[-114.38987,45.89221],[-114.39099,45.89198],[-114.39273,45.89216],[-114.39349,45.893],[-114.39373,45.89402],[-114.39335,45.89506],[-114.39366,45.89574],[-114.39435,45.8967],[-114.3947,45.89767],[-114.39462,45.89882],[-114.39489,45.89989],[-114.39498,45.90144],[-114.39685,45.90134],[-114.39892,45.9022],[-114.40104,45.90216],[-114.40426,45.90345],[-114.40486,45.90443],[-114.40666,45.90534],[-114.40881,45.90734],[-114.40959,45.90855],[-114.41292,45.91127],[-114.4135,45.91185],[-114.41379,45.91296],[-114.4154,45.91639],[-114.41573,45.91749],[-114.4163,45.9185],[-114.41486,45.92169],[-114.41513,45.92244],[-114.41725,45.92426],[-114.41851,45.92585],[-114.42069,45.92689],[-114.42107,45.92728],[-114.42246,45.92773],[-114.42317,45.92866],[-114.4246,45.93003],[-114.4256,45.93141],[-114.42662,45.93238],[-114.42936,45.9339],[-114.43022,45.93488],[-114.43124,45.93569],[-114.43137,45.93694],[-114.43133,45.93801],[-114.43004,45.93838],[-114.4296,45.9389],[-114.42711,45.93984],[-114.42548,45.94096],[-114.42475,45.94196],[-114.42471,45.94367],[-114.42404,45.94404],[-114.42217,45.94444],[-114.4208,45.94465],[-114.42072,45.94621],[-114.41909,45.94703],[-114.4178,45.94761],[-114.41591,45.94791],[-114.41445,45.94841],[-114.41347,45.94947],[-114.41291,45.95125],[-114.41128,45.95295],[-114.41035,45.95324],[-114.4092,45.95314],[-114.4066,45.95432],[-114.40555,45.95532],[-114.40342,45.95665],[-114.40232,45.95775],[-114.40212,45.95949],[-114.40234,45.96045],[-114.40228,45.96151],[-114.40158,45.96317],[-114.40133,45.96345],[-114.40173,45.9636],[-114.4041,45.96637],[-114.40369,45.96703],[-114.40412,45.96721],[-114.40464,45.96768],[-114.40473,45.9685],[-114.40594,45.9694],[-114.4068,45.97001],[-114.408,45.97051],[-114.40843,45.97102],[-114.4093,45.97124],[-114.41119,45.97354],[-114.4114,45.97444],[-114.41133,45.97516],[-114.41161,45.97743],[-114.41204,45.97804],[-114.41392,45.97919],[-114.41587,45.97987],[-114.4174,45.98055],[-114.41948,45.98105],[-114.42164,45.98137],[-114.4241,45.98431],[-114.42706,45.98545],[-114.42831,45.98615],[-114.42939,45.98661],[-114.43172,45.98665],[-114.43284,45.98676],[-114.4341,45.98738],[-114.43552,45.9877],[-114.43676,45.9874],[-114.43867,45.98781],[-114.4398,45.98781],[-114.44227,45.98726],[-114.44822,45.98734],[-114.45005,45.98957],[-114.45277,45.99022],[-114.45531,45.99296],[-114.45541,45.99367],[-114.45645,45.99537],[-114.45714,45.99724],[-114.45785,45.99754],[-114.45959,45.9973],[-114.46401,45.99735],[-114.46495,45.99684],[-114.46529,45.99609],[-114.4664,45.99558],[-114.46794,45.99523],[-114.47115,45.99321],[-114.47238,45.99268],[-114.47534,45.99182],[-114.4768,45.99218],[-114.47839,45.99242],[-114.48033,45.99284],[-114.48068,45.99391],[-114.48264,45.99493],[-114.48335,45.99559],[-114.48452,45.99595],[-114.48491,45.99642],[-114.48581,45.99851],[-114.48685,45.99983],[-114.48655,46.00045],[-114.48771,46.00156],[-114.48771,46.00281],[-114.48797,46.00361],[-114.48772,46.00436],[-114.48497,46.0081],[-114.48421,46.00821],[-114.4832,46.00802],[-114.48068,46.00896],[-114.48024,46.00952],[-114.47955,46.0098],[-114.47825,46.0105],[-114.47644,46.01107],[-114.47502,46.01217],[-114.4736,46.01284],[-114.47308,46.01437],[-114.47345,46.015],[-114.47411,46.0164],[-114.4739,46.01706],[-114.47455,46.0185],[-114.4761,46.02098],[-114.47591,46.02187],[-114.47704,46.02423],[-114.47877,46.02658],[-114.47907,46.02733],[-114.4792,46.02785],[-114.48021,46.02977],[-114.48036,46.0305],[-114.48177,46.03027],[-114.48376,46.03027],[-114.48584,46.03004],[-114.48715,46.02932],[-114.488,46.02851],[-114.48926,46.02779],[-114.49112,46.02772],[-114.49213,46.02795],[-114.49274,46.02788],[-114.49379,46.02793],[-114.49443,46.02794],[-114.49515,46.02807],[-114.49606,46.02782],[-114.49759,46.02792],[-114.50255,46.02916],[-114.50463,46.02948],[-114.50603,46.03051],[-114.50727,46.03116],[-114.50766,46.03163],[-114.50564,46.0343],[-114.50646,46.03545],[-114.50655,46.03614],[-114.50638,46.03678],[-114.50676,46.03746],[-114.50674,46.03852],[-114.50647,46.03881],[-114.50507,46.03964],[-114.50433,46.04121],[-114.50351,46.04194],[-114.50222,46.0421],[-114.50084,46.04155],[-114.49796,46.04209],[-114.49742,46.04232],[-114.49722,46.04271],[-114.49777,46.04329],[-114.4978,46.04352],[-114.49757,46.04378],[-114.49631,46.04393],[-114.49608,46.04411],[-114.49663,46.04477],[-114.49513,46.04566],[-114.49465,46.04619],[-114.4947,46.04667],[-114.49433,46.0478],[-114.49367,46.04829],[-114.49361,46.04907],[-114.49295,46.04986],[-114.49289,46.05017],[-114.49344,46.05135],[-114.49365,46.05236],[-114.4919,46.05275],[-114.49053,46.05331],[-114.48916,46.05364],[-114.48343,46.05518],[-114.48139,46.05517],[-114.48011,46.05543],[-114.47875,46.05582],[-114.47721,46.05697],[-114.47556,46.05771],[-114.47477,46.05822],[-114.47425,46.05915],[-114.47417,46.06004],[-114.47396,46.06049],[-114.47332,46.06076],[-114.47093,46.06118],[-114.46871,46.06224],[-114.46762,46.06377],[-114.46768,46.06448],[-114.46679,46.06568],[-114.47011,46.06812],[-114.47218,46.06901],[-114.47215,46.07005],[-114.47194,46.0705],[-114.47212,46.07128],[-114.47196,46.07181],[-114.47132,46.07263],[-114.47078,46.07399],[-114.47089,46.07497],[-114.47223,46.07667],[-114.47072,46.07731],[-114.46984,46.07693],[-114.46901,46.0771],[-114.46784,46.07703],[-114.46627,46.07747],[-114.46478,46.07773],[-114.46291,46.07832],[-114.4619,46.07855],[-114.46247,46.0799],[-114.46224,46.08153],[-114.4621,46.08297],[-114.46134,46.08481],[-114.46032,46.08623],[-114.46016,46.0868],[-114.46016,46.08746],[-114.46076,46.09039],[-114.46041,46.09143],[-114.45972,46.09272],[-114.45972,46.09356],[-114.45946,46.09392],[-114.46017,46.09591],[-114.46011,46.09719],[-114.46116,46.09868],[-114.46366,46.10079],[-114.46479,46.1016],[-114.4654,46.10267],[-114.46704,46.10363],[-114.46715,46.10406],[-114.46678,46.10449],[-114.4687,46.1053],[-114.47066,46.10555],[-114.4711,46.10632],[-114.47221,46.10756],[-114.4729,46.10875],[-114.47291,46.10969],[-114.4743,46.11193],[-114.47432,46.1123],[-114.47446,46.11321],[-114.47988,46.11302],[-114.48123,46.11316],[-114.48275,46.11364],[-114.48408,46.11373],[-114.48604,46.11354],[-114.48757,46.11305],[-114.48887,46.1132],[-114.49,46.11366],[-114.49105,46.11432],[-114.49206,46.11544],[-114.49333,46.1162],[-114.495,46.11748],[-114.49703,46.11814],[-114.49769,46.11815],[-114.49848,46.11889],[-114.5009,46.11906],[-114.50144,46.11888],[-114.50262,46.11902],[-114.50379,46.11833],[-114.50494,46.11826],[-114.50569,46.11853],[-114.50796,46.11998],[-114.50867,46.12002],[-114.50971,46.12028],[-114.51049,46.12036],[-114.51164,46.12093],[-114.51247,46.12224],[-114.5143,46.12286],[-114.51537,46.12277],[-114.51688,46.12315],[-114.51809,46.12332],[-114.51981,46.12465],[-114.52071,46.1249],[-114.52127,46.12521],[-114.52126,46.1265],[-114.52091,46.12714],[-114.52022,46.12767],[-114.51987,46.12893],[-114.51922,46.13024],[-114.51857,46.13125],[-114.5181,46.13218],[-114.51827,46.13255],[-114.51784,46.1341],[-114.51805,46.1345],[-114.51749,46.13548],[-114.51762,46.13568],[-114.51837,46.13565],[-114.52006,46.13579],[-114.52132,46.13632],[-114.52163,46.13697],[-114.52144,46.13766],[-114.52304,46.13961],[-114.52396,46.14043],[-114.52475,46.14195],[-114.52721,46.14517],[-114.52713,46.14614],[-114.52623,46.14754],[-114.52439,46.14877],[-114.52371,46.14876],[-114.52292,46.14926],[-114.52228,46.15019],[-114.52148,46.15089],[-114.51991,46.15154],[-114.51925,46.15199],[-114.51685,46.15267],[-114.51553,46.15332],[-114.51456,46.15356],[-114.51416,46.1542],[-114.51534,46.15573],[-114.51543,46.15832],[-114.51521,46.15875],[-114.51486,46.15909],[-114.51468,46.15953],[-114.51454,46.16017],[-114.51462,46.16058],[-114.51504,46.16092],[-114.51529,46.16124],[-114.51549,46.16218],[-114.51521,46.16349],[-114.51534,46.16482],[-114.51574,46.16573],[-114.51555,46.16681],[-114.51476,46.1677],[-114.5143,46.16769],[-114.51359,46.16737],[-114.51182,46.16699],[-114.51044,46.16603],[-114.5095,46.16573],[-114.50781,46.1646],[-114.50621,46.16456],[-114.50178,46.16523],[-114.50098,46.16588],[-114.49893,46.16714],[-114.49682,46.16769],[-114.49456,46.16796],[-114.49325,46.16798],[-114.49172,46.16753],[-114.48933,46.16776],[-114.48888,46.16749],[-114.4884,46.16686],[-114.48713,46.16616],[-114.48534,46.16558],[-114.48473,46.16456],[-114.4837,46.1637],[-114.48224,46.16283],[-114.48155,46.16259],[-114.48098,46.16214],[-114.48017,46.16193],[-114.47945,46.16136],[-114.47826,46.16084],[-114.47697,46.16056],[-114.47551,46.16053],[-114.47457,46.16086],[-114.47113,46.16323],[-114.4704,46.16346],[-114.47,46.16386],[-114.46818,46.16544],[-114.46675,46.16538],[-114.46548,46.16547],[-114.46481,46.16575],[-114.46438,46.16556],[-114.4641,46.16593],[-114.46399,46.16666],[-114.46327,46.16756],[-114.46282,46.16805],[-114.46147,46.16836],[-114.45912,46.16941],[-114.45737,46.17028],[-114.45621,46.17031],[-114.45576,46.17014],[-114.45514,46.16973],[-114.4537,46.16917],[-114.45261,46.16856],[-114.45188,46.16865],[-114.45132,46.16851],[-114.44935,46.16861],[-114.44774,46.16832],[-114.4463,46.16785],[-114.44514,46.16787],[-114.44488,46.16853],[-114.44402,46.16919],[-114.44419,46.17051],[-114.44564,46.1731],[-114.44598,46.17379],[-114.44539,46.17605],[-114.44525,46.17728],[-114.44537,46.17773],[-114.44535,46.17923],[-114.44514,46.17965],[-114.44511,46.18006],[-114.44478,46.18118],[-114.44522,46.18361],[-114.44557,46.18396],[-114.44532,46.18448],[-114.44533,46.18493],[-114.44465,46.18703],[-114.44485,46.18912],[-114.44513,46.19055],[-114.44422,46.19172],[-114.4439,46.19247],[-114.44403,46.19429],[-114.44459,46.19599],[-114.44432,46.19739],[-114.44448,46.1979],[-114.44446,46.19916],[-114.4442,46.19971],[-114.44376,46.20031],[-114.44324,46.20146],[-114.44339,46.20221],[-114.44322,46.20302],[-114.44369,46.20361],[-114.4445,46.20414],[-114.44535,46.20527],[-114.44817,46.20781],[-114.44865,46.20868],[-114.44919,46.20923],[-114.44924,46.2101],[-114.45023,46.21083],[-114.45079,46.21169],[-114.45089,46.21263],[-114.45169,46.21386],[-114.45176,46.21497],[-114.45141,46.21547],[-114.45024,46.21581],[-114.44925,46.21632],[-114.44758,46.21828],[-114.44606,46.21923],[-114.44548,46.21985],[-114.44558,46.22065],[-114.44629,46.22189],[-114.44743,46.22479],[-114.44723,46.22596],[-114.44737,46.22706],[-114.44774,46.22768],[-114.44753,46.22811],[-114.44775,46.2315],[-114.44947,46.23534],[-114.44981,46.23717],[-114.45086,46.23816],[-114.45183,46.2398],[-114.45178,46.2413],[-114.45423,46.24138],[-114.45625,46.24298],[-114.4572,46.24333],[-114.45893,46.24434],[-114.46194,46.24522],[-114.4628,46.24581],[-114.46384,46.24622],[-114.46427,46.24614],[-114.46663,46.24716],[-114.46753,46.24777],[-114.46838,46.24909],[-114.46692,46.24993],[-114.46569,46.25131],[-114.46515,46.25234],[-114.46539,46.25311],[-114.46816,46.25664],[-114.46847,46.25763],[-114.46842,46.25835],[-114.4688,46.25925],[-114.46896,46.2607],[-114.47077,46.26444],[-114.47081,46.26553],[-114.47043,46.26663],[-114.47043,46.26737],[-114.46932,46.26902],[-114.46794,46.26977],[-114.46665,46.27225],[-114.46488,46.2731],[-114.4637,46.27317],[-114.46217,46.27306],[-114.46034,46.27249],[-114.45716,46.2718],[-114.45483,46.27105],[-114.45318,46.27091],[-114.44561,46.27245],[-114.44131,46.27378],[-114.4395,46.27462],[-114.43967,46.27505],[-114.43538,46.27658],[-114.43367,46.27814],[-114.43204,46.27931],[-114.42942,46.28191],[-114.42732,46.28356],[-114.42714,46.2842],[-114.42756,46.2852],[-114.42745,46.28606],[-114.42703,46.28673],[-114.42618,46.2873],[-114.42559,46.28788],[-114.42601,46.28878],[-114.42806,46.29081],[-114.42873,46.29244],[-114.42879,46.2935],[-114.43036,46.29811],[-114.43039,46.29881],[-114.42998,46.29929],[-114.43016,46.29959],[-114.43207,46.30131],[-114.43261,46.30291],[-114.4329,46.30469],[-114.43349,46.30552],[-114.43284,46.3062],[-114.43185,46.30699],[-114.43138,46.30793],[-114.43165,46.30935],[-114.43167,46.31077],[-114.42934,46.31406],[-114.4274,46.31592],[-114.42531,46.31969],[-114.425,46.3209],[-114.42348,46.32311],[-114.42279,46.32404],[-114.42201,46.32592],[-114.42158,46.32861],[-114.42199,46.33008],[-114.42146,46.33069],[-114.41881,46.3316],[-114.41711,46.33239],[-114.41588,46.33354],[-114.41493,46.33521],[-114.41371,46.33593],[-114.41392,46.3369],[-114.41387,46.33799],[-114.41446,46.33892],[-114.41431,46.34264],[-114.41331,46.34613],[-114.41356,46.34635],[-114.41347,46.34806],[-114.41295,46.35072],[-114.41199,46.35135],[-114.41209,46.35216],[-114.41149,46.35468],[-114.41176,46.35646],[-114.41214,46.35767],[-114.41194,46.35895],[-114.41143,46.35945],[-114.41067,46.36067],[-114.41008,46.36092],[-114.41114,46.3622],[-114.41107,46.36424],[-114.41014,46.36562],[-114.41159,46.36667],[-114.41265,46.36805],[-114.41595,46.37316],[-114.41647,46.37487],[-114.41802,46.377],[-114.4194,46.37923],[-114.41975,46.38002],[-114.41956,46.38082],[-114.41971,46.38168],[-114.42009,46.38239],[-114.42009,46.38298],[-114.42034,46.38387],[-114.42127,46.38423],[-114.42262,46.38655],[-114.42252,46.38708],[-114.42011,46.38895],[-114.41822,46.39089],[-114.41675,46.39177],[-114.41521,46.39371],[-114.40972,46.39659],[-114.40999,46.39899],[-114.40955,46.39993],[-114.40885,46.40052],[-114.40799,46.40093],[-114.40645,46.40114],[-114.40544,46.40148],[-114.40394,46.40152],[-114.40112,46.40153],[-114.40115,46.4021],[-114.40039,46.40242],[-114.39959,46.40308],[-114.39957,46.40391],[-114.39982,46.40437],[-114.39965,46.40483],[-114.39818,46.40546],[-114.39529,46.40777],[-114.39351,46.40902],[-114.39276,46.40946],[-114.38841,46.40984],[-114.3871,46.41004],[-114.38581,46.4107],[-114.38477,46.41174],[-114.38438,46.41448],[-114.38459,46.41687],[-114.38401,46.41815],[-114.38367,46.4199],[-114.38411,46.42312],[-114.38438,46.42606],[-114.38495,46.42741],[-114.3843,46.42987],[-114.38335,46.43113],[-114.38248,46.43292],[-114.38174,46.43367],[-114.37954,46.43502],[-114.37742,46.43551],[-114.37383,46.43588],[-114.37118,46.43606],[-114.36929,46.43637],[-114.36844,46.43682],[-114.36844,46.4378],[-114.36901,46.4385],[-114.37002,46.43884],[-114.3707,46.43953],[-114.3724,46.44282],[-114.37306,46.44325],[-114.37388,46.44329],[-114.37572,46.44286],[-114.37645,46.44299],[-114.37709,46.44325],[-114.37829,46.44437],[-114.38,46.44489],[-114.38137,46.44517],[-114.38313,46.44592],[-114.38405,46.44662],[-114.38438,46.44704],[-114.38454,46.44786],[-114.38168,46.45295],[-114.38127,46.45505],[-114.38112,46.45762],[-114.38062,46.45881],[-114.37927,46.46011],[-114.37982,46.46095],[-114.38166,46.46263],[-114.38234,46.46384],[-114.38259,46.46538],[-114.38301,46.46639],[-114.38983,46.4686],[-114.39058,46.46881],[-114.39254,46.46896],[-114.39447,46.46955],[-114.39508,46.47062],[-114.39545,46.47317],[-114.39625,46.47365],[-114.39706,46.47467],[-114.39845,46.47559],[-114.40001,46.47698],[-114.40072,46.47836],[-114.4012,46.48133],[-114.40142,46.48359],[-114.40126,46.48682],[-114.40067,46.48846],[-114.40229,46.49079],[-114.4031,46.49297],[-114.40333,46.49586],[-114.4031,46.49833],[-114.40261,46.5001],[-114.40143,46.50125],[-114.40016,46.5022],[-114.39855,46.50233],[-114.39637,46.50203],[-114.396,46.50215],[-114.39513,46.50328],[-114.39449,46.50358],[-114.39155,46.50353],[-114.38879,46.50368],[-114.38638,46.50413],[-114.3838,46.50518],[-114.38272,46.50467],[-114.37761,46.50238],[-114.37584,46.50185],[-114.37485,46.50191],[-114.37401,46.50233],[-114.373,46.50256],[-114.37122,46.50333],[-114.36944,46.50392],[-114.36823,46.50514],[-114.36705,46.50537],[-114.36389,46.5056],[-114.36117,46.50547],[-114.36032,46.50506],[-114.35947,46.50505],[-114.35642,46.50618],[-114.35502,46.50695],[-114.35225,46.50772],[-114.35149,46.50823],[-114.35055,46.50945],[-114.34989,46.50982],[-114.3483,46.51045],[-114.34797,46.51128],[-114.34773,46.5127],[-114.34706,46.51498],[-114.34665,46.51555],[-114.34285,46.51819],[-114.34261,46.51898],[-114.34211,46.5196],[-114.3422,46.52067],[-114.34264,46.52205],[-114.34352,46.52331],[-114.34617,46.52501],[-114.34737,46.52607],[-114.34786,46.52672],[-114.34853,46.52826],[-114.3492,46.52957],[-114.34909,46.53055],[-114.34863,46.53123],[-114.34868,46.53189],[-114.34891,46.53313],[-114.34873,46.5339],[-114.348,46.53452],[-114.34726,46.53496],[-114.34619,46.53619],[-114.34551,46.53722],[-114.34539,46.53902],[-114.34382,46.54147],[-114.34507,46.54329],[-114.34517,46.54496],[-114.34547,46.54626],[-114.34537,46.54715],[-114.34535,46.54845],[-114.34601,46.54951],[-114.34762,46.55128],[-114.34787,46.55169],[-114.3475,46.55191],[-114.34736,46.5524],[-114.34627,46.55277],[-114.34496,46.55384],[-114.34261,46.5552],[-114.34234,46.55593],[-114.34189,46.55742],[-114.34143,46.55816],[-114.34111,46.55903],[-114.33949,46.56154],[-114.3394,46.56206],[-114.33974,46.56335],[-114.33953,46.56409],[-114.33846,46.56588],[-114.337,46.56682],[-114.33571,46.56741],[-114.33528,46.56794],[-114.33453,46.56934],[-114.33291,46.5711],[-114.33169,46.57189],[-114.33086,46.57332],[-114.33066,46.57413],[-114.33038,46.57475],[-114.32973,46.57575],[-114.32982,46.57699],[-114.32999,46.57752],[-114.3305,46.5778],[-114.33192,46.57822],[-114.33334,46.57876],[-114.33407,46.57917],[-114.33468,46.58059],[-114.33576,46.58204],[-114.33726,46.58329],[-114.33774,46.58395],[-114.33794,46.58464],[-114.33827,46.58527],[-114.33922,46.58608],[-114.33949,46.58657],[-114.33946,46.58715],[-114.34046,46.58754],[-114.34305,46.58914],[-114.34426,46.59007],[-114.34299,46.59119],[-114.34142,46.59231],[-114.34087,46.59252],[-114.33825,46.59273],[-114.33721,46.5934],[-114.33641,46.5936],[-114.33587,46.59383],[-114.33471,46.5948],[-114.33218,46.59714],[-114.33058,46.59903],[-114.33023,46.59959],[-114.33032,46.60052],[-114.33017,46.60115],[-114.32993,46.60169],[-114.32964,46.60304],[-114.32993,46.60404],[-114.3298,46.60436],[-114.32946,46.6046],[-114.32842,46.60462],[-114.32766,46.60574],[-114.3264,46.60664],[-114.32507,46.60853],[-114.32261,46.61084],[-114.32246,46.61103],[-114.32277,46.61204],[-114.32325,46.61284],[-114.3241,46.61341],[-114.32534,46.61404],[-114.32568,46.61441],[-114.32598,46.61549],[-114.32636,46.61636],[-114.32702,46.61695],[-114.32717,46.61743],[-114.32746,46.6187],[-114.32816,46.61945],[-114.32814,46.61993],[-114.32772,46.62034],[-114.32627,46.62111],[-114.32546,46.62138],[-114.32482,46.62174],[-114.32436,46.62213],[-114.32419,46.62312],[-114.32362,46.62407],[-114.32294,46.62494],[-114.32237,46.62531],[-114.32201,46.62591],[-114.32279,46.62828],[-114.32263,46.62873],[-114.32223,46.62914],[-114.3217,46.62961],[-114.32149,46.63014],[-114.32152,46.63076],[-114.32206,46.63139],[-114.32254,46.63234],[-114.32209,46.63485],[-114.32122,46.63713],[-114.32025,46.63828],[-114.32034,46.63851],[-114.32057,46.63885],[-114.32204,46.64016],[-114.32264,46.64124],[-114.3229,46.6424],[-114.32282,46.64354],[-114.32196,46.64577],[-114.32068,46.64697],[-114.32121,46.64773],[-114.32173,46.64919],[-114.32243,46.64974],[-114.32339,46.65082],[-114.32468,46.65371],[-114.32696,46.65437],[-114.32795,46.65509],[-114.32985,46.65766],[-114.32999,46.65845],[-114.3303,46.65883],[-114.33187,46.65986],[-114.33278,46.66064],[-114.33352,46.66113],[-114.3353,46.66161],[-114.33716,46.66241],[-114.3388,46.66238],[-114.34241,46.662],[-114.34423,46.662],[-114.34975,46.66273],[-114.3515,46.66305],[-114.35334,46.66374],[-114.35451,46.66469],[-114.35568,46.66624],[-114.35801,46.66879],[-114.35805,46.66955],[-114.35792,46.67034],[-114.35809,46.67103],[-114.35859,46.67068],[-114.35914,46.67004],[-114.35979,46.66958],[-114.36067,46.66906],[-114.3616,46.66869],[-114.36244,46.66849],[-114.36312,46.66848],[-114.36411,46.66864],[-114.36559,46.66875],[-114.36907,46.66846],[-114.37091,46.66821],[-114.37169,46.66808],[-114.37259,46.66768],[-114.37299,46.66736],[-114.37352,46.66714],[-114.37424,46.66713],[-114.37601,46.66749],[-114.37738,46.6673],[-114.3783,46.66692],[-114.37897,46.66643],[-114.37955,46.66593],[-114.37996,46.66552],[-114.38048,46.66524],[-114.38182,46.66398],[-114.38244,46.66306],[-114.38343,46.66238],[-114.3844,46.66244],[-114.38515,46.6627],[-114.38589,46.66347],[-114.38676,46.66399],[-114.38952,46.66476],[-114.39091,46.66499],[-114.39449,46.66486],[-114.39867,46.66317],[-114.40097,46.66124],[-114.40392,46.65939],[-114.4052,46.65953],[-114.40843,46.66056],[-114.40939,46.66192],[-114.40975,46.66192],[-114.41016,46.65966],[-114.41073,46.65763],[-114.41128,46.65706],[-114.41254,46.65668],[-114.41396,46.65674],[-114.4167,46.65757],[-114.41696,46.65824],[-114.4245,46.66063],[-114.4283,46.65908],[-114.43098,46.65734],[-114.43391,46.65672],[-114.43885,46.65498],[-114.43915,46.65445],[-114.43937,46.65368],[-114.44006,46.65321],[-114.44162,46.65285],[-114.44242,46.65254],[-114.44387,46.65164],[-114.44531,46.65122],[-114.44906,46.64942],[-114.45005,46.64927],[-114.45321,46.64931],[-114.45362,46.64887],[-114.45374,46.64599],[-114.45447,46.64511],[-114.45462,46.64435],[-114.45433,46.64395],[-114.45355,46.64334],[-114.45241,46.64167],[-114.45444,46.64093],[-114.4599,46.63605],[-114.46103,46.63549],[-114.4632,46.6346],[-114.46453,46.63377],[-114.46685,46.63169],[-114.46874,46.63183],[-114.47004,46.63216],[-114.4712,46.63225],[-114.47302,46.63219],[-114.47416,46.63166],[-114.47586,46.63149],[-114.47765,46.63161],[-114.47921,46.63216],[-114.48001,46.63225],[-114.48119,46.63184],[-114.48455,46.63268],[-114.48698,46.63286],[-114.48928,46.63389],[-114.49156,46.63577],[-114.49321,46.63634],[-114.49797,46.63755],[-114.49857,46.63833],[-114.49882,46.63899],[-114.50058,46.64109],[-114.50099,46.64135],[-114.50139,46.64137],[-114.50799,46.63947],[-114.50953,46.63916],[-114.51587,46.63946],[-114.52276,46.64034],[-114.52806,46.64206],[-114.53095,46.64421],[-114.53307,46.64619],[-114.53406,46.64649],[-114.53582,46.64678],[-114.53805,46.64742],[-114.54003,46.64863],[-114.54174,46.64996],[-114.54217,46.64983],[-114.54267,46.64914],[-114.54354,46.64809],[-114.54511,46.64641],[-114.54637,46.64491],[-114.54685,46.64464],[-114.54736,46.64449],[-114.54796,46.64436],[-114.54978,46.64439],[-114.55267,46.64473],[-114.55409,46.64478],[-114.55504,46.64445],[-114.55754,46.644],[-114.55998,46.6428],[-114.5614,46.64221],[-114.5628,46.641],[-114.56358,46.64078],[-114.56986,46.64335],[-114.57037,46.64336],[-114.57061,46.64322],[-114.57098,46.64294],[-114.57129,46.64252],[-114.5723,46.64154],[-114.57464,46.6397],[-114.57675,46.63779],[-114.5775,46.63727],[-114.57829,46.63685],[-114.57903,46.63621],[-114.58025,46.63541],[-114.58069,46.63438],[-114.58188,46.63373],[-114.58337,46.63322],[-114.58413,46.63327],[-114.5847,46.63345],[-114.58868,46.63511],[-114.5892,46.63511],[-114.59048,46.63383],[-114.5911,46.63334],[-114.59177,46.63294],[-114.59276,46.6328],[-114.59326,46.63284],[-114.59388,46.63301],[-114.59455,46.63339],[-114.59518,46.63385],[-114.59837,46.63533],[-114.59951,46.63607],[-114.60005,46.63635],[-114.60058,46.63639],[-114.60234,46.6357],[-114.60327,46.63557],[-114.60566,46.63584],[-114.60869,46.63693],[-114.61155,46.63791],[-114.61435,46.63915],[-114.61506,46.63964],[-114.61543,46.64177],[-114.61648,46.64356],[-114.61207,46.64704],[-114.61169,46.64767],[-114.61216,46.64877],[-114.61217,46.65079],[-114.61321,46.6516],[-114.61538,46.65246],[-114.61461,46.65399],[-114.61444,46.65487],[-114.61488,46.65543],[-114.6163,46.65577],[-114.61711,46.65581],[-114.61806,46.65613],[-114.62074,46.65795],[-114.62237,46.65834],[-114.62529,46.65862],[-114.63069,46.65943],[-114.63468,46.65919],[-114.63579,46.65929],[-114.63759,46.66192],[-114.63771,46.66284],[-114.63818,46.6637],[-114.63863,46.66424],[-114.63969,46.66512],[-114.64,46.66554],[-114.63984,46.66626],[-114.63869,46.66735],[-114.63657,46.66849],[-114.63393,46.66945],[-114.63327,46.66985],[-114.63304,46.67048],[-114.63326,46.67164],[-114.63358,46.67229],[-114.63423,46.67295],[-114.63502,46.67298],[-114.63903,46.67222],[-114.64037,46.67227],[-114.64171,46.67251],[-114.64253,46.67281],[-114.6427,46.6732],[-114.64213,46.67381],[-114.64121,46.67441],[-114.64077,46.6749],[-114.64025,46.67563],[-114.64036,46.67628],[-114.641,46.67746],[-114.64184,46.67885],[-114.64174,46.67941],[-114.63804,46.68094],[-114.63537,46.68262],[-114.63182,46.68396],[-114.63001,46.68573],[-114.62734,46.68728],[-114.62648,46.68796],[-114.62509,46.68946],[-114.62332,46.69127],[-114.62296,46.69258],[-114.6229,46.6946],[-114.62339,46.6951],[-114.62458,46.69574],[-114.62473,46.69602],[-114.62391,46.69725],[-114.62327,46.69878],[-114.62317,46.70218],[-114.62136,46.70517],[-114.62076,46.70631],[-114.62084,46.70722],[-114.62143,46.70789],[-114.62305,46.70874],[-114.62415,46.70962],[-114.62473,46.71193],[-114.62506,46.71237],[-114.62627,46.71274],[-114.63014,46.71417],[-114.6307,46.71519],[-114.63143,46.7158],[-114.63255,46.71544],[-114.6336,46.71565],[-114.63492,46.71713],[-114.63775,46.7195],[-114.63886,46.72125],[-114.63937,46.72183],[-114.64116,46.72242],[-114.64447,46.72278],[-114.64513,46.7232],[-114.64582,46.72564],[-114.64649,46.72645],[-114.64613,46.72745],[-114.6457,46.72793],[-114.64576,46.72846],[-114.64689,46.73109],[-114.6478,46.73193],[-114.64941,46.7329],[-114.65097,46.73348],[-114.6533,46.73407],[-114.65901,46.73455],[-114.6604,46.73518],[-114.66171,46.73628],[-114.66314,46.73814],[-114.66372,46.73865],[-114.66512,46.7392],[-114.66609,46.73935],[-114.66848,46.73852],[-114.67096,46.73687],[-114.67217,46.73659],[-114.67356,46.73661],[-114.67654,46.73716],[-114.67751,46.73779],[-114.68168,46.73893],[-114.68218,46.7388],[-114.68367,46.7377],[-114.68534,46.73684],[-114.68763,46.7363],[-114.68856,46.7364],[-114.69019,46.73681],[-114.69299,46.73839],[-114.69536,46.7399],[-114.69657,46.74052],[-114.69759,46.74065],[-114.699,46.74027],[-114.69953,46.73967],[-114.69973,46.73914],[-114.70087,46.73725],[-114.70093,46.73562],[-114.70133,46.73457],[-114.70027,46.73429],[-114.69995,46.73392],[-114.69998,46.73366],[-114.70143,46.73176],[-114.7033,46.72992],[-114.70729,46.72802],[-114.7078,46.72757],[-114.70891,46.727],[-114.70897,46.72615],[-114.70825,46.72512],[-114.70767,46.72424],[-114.70786,46.72313],[-114.70972,46.72114],[-114.71002,46.72047],[-114.71024,46.71794],[-114.71088,46.71723],[-114.71191,46.71653],[-114.71344,46.71507],[-114.71443,46.71503],[-114.71522,46.71444],[-114.71566,46.71433],[-114.71761,46.71397],[-114.71921,46.71412],[-114.72183,46.71404],[-114.72314,46.71377],[-114.72532,46.71441],[-114.72659,46.7146],[-114.72812,46.71453],[-114.72881,46.71399],[-114.73087,46.71327],[-114.73217,46.71326],[-114.73638,46.71241],[-114.73982,46.71197],[-114.74126,46.71117],[-114.74209,46.71044],[-114.74165,46.70867],[-114.7419,46.70819],[-114.74358,46.70747],[-114.74646,46.70423],[-114.74731,46.7035],[-114.74808,46.70212],[-114.7485,46.70054],[-114.74793,46.69911],[-114.74814,46.69868],[-114.75046,46.69781],[-114.75111,46.69732],[-114.75225,46.69716],[-114.75351,46.69738],[-114.75408,46.69725],[-114.75466,46.69697],[-114.75626,46.69704],[-114.75789,46.69697],[-114.75943,46.69666],[-114.7607,46.6967],[-114.76203,46.69717],[-114.76299,46.69728],[-114.76413,46.69763],[-114.76672,46.69678],[-114.76831,46.698],[-114.76845,46.69869],[-114.7691,46.69927],[-114.76963,46.70035],[-114.76925,46.70267],[-114.76851,46.70439],[-114.76854,46.70494],[-114.77117,46.70548],[-114.77475,46.70591],[-114.77749,46.70663],[-114.78005,46.70669],[-114.78158,46.70676],[-114.78216,46.70695],[-114.78225,46.70818],[-114.78326,46.7087],[-114.78401,46.70953],[-114.78695,46.7112],[-114.78745,46.71166],[-114.78812,46.71201],[-114.78858,46.71297],[-114.78869,46.71399],[-114.78761,46.71457],[-114.78719,46.71574],[-114.7866,46.71603],[-114.78557,46.71705],[-114.78476,46.71798],[-114.78363,46.71874],[-114.78234,46.71933],[-114.78212,46.71969],[-114.78216,46.72053],[-114.78284,46.72079],[-114.78335,46.72232],[-114.78331,46.72306],[-114.78292,46.72361],[-114.78329,46.72425],[-114.78296,46.72583],[-114.78203,46.72709],[-114.78075,46.72776],[-114.7795,46.72882],[-114.77998,46.72971],[-114.77968,46.73043],[-114.77899,46.73112],[-114.77805,46.73151],[-114.77575,46.73126],[-114.77371,46.73188],[-114.77335,46.73277],[-114.77274,46.73343],[-114.77066,46.73435],[-114.76995,46.73506],[-114.76961,46.73573],[-114.76942,46.7367],[-114.76924,46.73715],[-114.76928,46.73739],[-114.76862,46.73776],[-114.76784,46.73837],[-114.76717,46.73874],[-114.76713,46.73898],[-114.76751,46.73948],[-114.76738,46.73977],[-114.76712,46.74001],[-114.76708,46.74014],[-114.76721,46.74032],[-114.76776,46.74055],[-114.76795,46.7408],[-114.76793,46.74116],[-114.76745,46.74146],[-114.76667,46.74166],[-114.76614,46.7417],[-114.7661,46.74188],[-114.76614,46.74207],[-114.76602,46.74229],[-114.76598,46.74251],[-114.76643,46.7431],[-114.76637,46.74332],[-114.76619,46.74346],[-114.76606,46.74368],[-114.7661,46.74406],[-114.76593,46.74452],[-114.76519,46.74517],[-114.76518,46.74546],[-114.76705,46.74634],[-114.76804,46.74725],[-114.76831,46.74817],[-114.76815,46.7489],[-114.76777,46.74923],[-114.76637,46.74978],[-114.76584,46.75133],[-114.76615,46.75186],[-114.76714,46.75263],[-114.76741,46.75341],[-114.7665,46.75608],[-114.76502,46.7581],[-114.76689,46.75898],[-114.76808,46.76019],[-114.76982,46.76069],[-114.77063,46.76119],[-114.77175,46.76115],[-114.77279,46.76146],[-114.77366,46.76202],[-114.77382,46.76432],[-114.77364,46.76533],[-114.77535,46.76603],[-114.77766,46.76621],[-114.77876,46.76674],[-114.77919,46.76797],[-114.7797,46.76859],[-114.78227,46.76885],[-114.7833,46.76815],[-114.78446,46.77027],[-114.78628,46.77682],[-114.7863,46.77828],[-114.78578,46.77895],[-114.78467,46.77997],[-114.78656,46.78082],[-114.78734,46.78261],[-114.78784,46.78172],[-114.78791,46.78091],[-114.78816,46.78035],[-114.78896,46.77942],[-114.78994,46.77873],[-114.79177,46.77809],[-114.79319,46.77726],[-114.79547,46.77706],[-114.7963,46.77721],[-114.79691,46.7769],[-114.79727,46.77631],[-114.79782,46.77588],[-114.79849,46.77568],[-114.80102,46.77645],[-114.80223,46.7774],[-114.80344,46.77794],[-114.80414,46.77861],[-114.80701,46.78073],[-114.80751,46.78183],[-114.80816,46.78235],[-114.80938,46.78238],[-114.81243,46.78161],[-114.8135,46.78172],[-114.81483,46.78113],[-114.81891,46.78113],[-114.81986,46.78159],[-114.82239,46.78241],[-114.82381,46.78251],[-114.82452,46.78236],[-114.82506,46.78203],[-114.82588,46.78196],[-114.82846,46.78239],[-114.82906,46.78241],[-114.83052,46.7837],[-114.83185,46.78576],[-114.83209,46.78714],[-114.83414,46.78842],[-114.83446,46.78901],[-114.83598,46.79108],[-114.83608,46.79197],[-114.83635,46.7924],[-114.83767,46.79289],[-114.84151,46.7931],[-114.84361,46.79379],[-114.84528,46.7946],[-114.84733,46.79563],[-114.84831,46.79696],[-114.84936,46.79748],[-114.84981,46.79801],[-114.85014,46.79909],[-114.85135,46.79859],[-114.85359,46.79994],[-114.85488,46.80049],[-114.85531,46.80099],[-114.85691,46.8016],[-114.85731,46.80215],[-114.85761,46.8033],[-114.85788,46.80366],[-114.86004,46.80496],[-114.86065,46.80622],[-114.86066,46.8069],[-114.86112,46.80897],[-114.86107,46.81131],[-114.86135,46.81192],[-114.862,46.81236],[-114.86308,46.81254],[-114.86436,46.81381],[-114.86537,46.81443],[-114.86699,46.81432],[-114.86904,46.81368],[-114.87065,46.81286],[-114.87244,46.81217],[-114.87393,46.81208],[-114.87459,46.81177],[-114.87542,46.81164],[-114.87596,46.81185],[-114.87772,46.81186],[-114.88059,46.81177],[-114.8841,46.80974],[-114.88815,46.80855],[-114.89117,46.80301],[-114.89389,46.80219],[-114.89609,46.80265],[-114.89687,46.80723],[-114.89752,46.80805],[-114.89946,46.80882],[-114.89803,46.81029],[-114.8979,46.81312],[-114.89575,46.81562],[-114.89488,46.8173],[-114.89565,46.81844],[-114.89728,46.81998],[-114.89821,46.82171],[-114.8989,46.82331],[-114.90447,46.82286],[-114.91535,46.82647],[-114.91782,46.82802],[-114.92051,46.82771],[-114.92284,46.83114],[-114.92483,46.83445],[-114.92722,46.83462],[-114.92782,46.83589],[-114.92799,46.83734],[-114.92709,46.83861],[-114.92575,46.84],[-114.92744,46.84124],[-114.92843,46.84324],[-114.92561,46.84523],[-114.92348,46.84752],[-114.92603,46.85035],[-114.92757,46.85259],[-114.92868,46.85483],[-114.93706,46.85656],[-114.94041,46.85602],[-114.94486,46.85781],[-114.94746,46.85928],[-114.94749,46.86128],[-114.94536,46.86486],[-114.94322,46.86798],[-114.94061,46.86837],[-114.93879,46.86897],[-114.93724,46.87051],[-114.93393,46.87491],[-114.93305,46.87535],[-114.93209,46.87616],[-114.93165,46.87691],[-114.93184,46.87897],[-114.93146,46.87944],[-114.93117,46.88055],[-114.93144,46.88159],[-114.93112,46.8821],[-114.93176,46.88341],[-114.93255,46.88767],[-114.93355,46.88817],[-114.9344,46.88922],[-114.93465,46.89008],[-114.93546,46.89109],[-114.93598,46.89282],[-114.9352,46.89502],[-114.9361,46.89647],[-114.93683,46.89722],[-114.93566,46.90073],[-114.93504,46.90175],[-114.93354,46.90357],[-114.93298,46.90356],[-114.93159,46.90378],[-114.93109,46.90403],[-114.93072,46.9044],[-114.93048,46.90601],[-114.93035,46.90619],[-114.92989,46.90649],[-114.92975,46.9071],[-114.9299,46.90729],[-114.92993,46.90785],[-114.9295,46.90988],[-114.92795,46.90995],[-114.92484,46.91102],[-114.92377,46.91181],[-114.92319,46.91191],[-114.92184,46.91283],[-114.92323,46.91452],[-114.92409,46.91733],[-114.92504,46.91872],[-114.92574,46.91892],[-114.92677,46.91964],[-114.92699,46.91958],[-114.93002,46.91989],[-114.93295,46.91947],[-114.93457,46.91967],[-114.93529,46.9197],[-114.93581,46.91983],[-114.93605,46.92],[-114.93729,46.92132],[-114.93846,46.92183],[-114.94175,46.92396],[-114.94559,46.92484],[-114.9466,46.92532],[-114.94732,46.92591],[-114.94903,46.9263],[-114.95271,46.92663],[-114.95721,46.92875],[-114.95976,46.92954],[-114.96055,46.92991],[-114.961,46.93034],[-114.96095,46.93091],[-114.95871,46.93368],[-114.96254,46.93558],[-114.96396,46.93677],[-114.96467,46.93798],[-114.96627,46.93811],[-114.96819,46.93864],[-114.96916,46.93875],[-114.97013,46.93869],[-114.97129,46.93908],[-114.97183,46.94005],[-114.97483,46.94145],[-114.97578,46.94284],[-114.97685,46.94336],[-114.97835,46.94464],[-114.97938,46.9463],[-114.98042,46.94744],[-114.98214,46.94819],[-114.983,46.94934],[-114.98483,46.94914],[-114.98622,46.9497],[-114.98658,46.95047],[-114.98659,46.95207],[-114.986,46.9534],[-114.98559,46.95398],[-114.98748,46.95473],[-114.98998,46.95635],[-114.99125,46.95832],[-114.99231,46.95905],[-114.99312,46.95918],[-114.99357,46.95998],[-114.99386,46.9623],[-114.99945,46.96603],[-115.00006,46.96712],[-115.00085,46.96768],[-115.0013,46.97187],[-115.00429,46.97223],[-115.00943,46.9734],[-115.01131,46.97417],[-115.01574,46.97377],[-115.01762,46.97392],[-115.01886,46.97425],[-115.01987,46.97462],[-115.0283,46.97561],[-115.02943,46.97519],[-115.02901,46.97317],[-115.02963,46.97231],[-115.03159,46.97154],[-115.03501,46.97159],[-115.03713,46.97045],[-115.042,46.97049],[-115.04785,46.96953],[-115.04953,46.97077],[-115.05052,46.97337],[-115.0518,46.97486],[-115.05051,46.97547],[-115.05038,46.97815],[-115.04969,46.98065],[-115.05011,46.98131],[-115.05133,46.98181],[-115.05278,46.98303],[-115.05298,46.98336],[-115.05662,46.98482],[-115.05713,46.98678],[-115.06094,46.99193],[-115.06763,46.99524],[-115.06617,46.99639],[-115.06574,46.99959],[-115.06523,46.99989],[-115.06862,47.00427],[-115.06912,47.00713],[-115.07095,47.00923],[-115.07297,47.01374],[-115.06936,47.01487],[-115.07019,47.01859],[-115.07124,47.02205],[-115.07243,47.02359],[-115.07147,47.02616],[-115.07344,47.02527],[-115.07531,47.02517],[-115.07587,47.02541],[-115.07843,47.02734],[-115.08009,47.02827],[-115.08123,47.02937],[-115.08087,47.03218],[-115.08044,47.03418],[-115.08129,47.03487],[-115.08103,47.036],[-115.08152,47.0367],[-115.08222,47.03732],[-115.08312,47.03887],[-115.08854,47.04046],[-115.08866,47.04153],[-115.08831,47.04209],[-115.08859,47.04306],[-115.08862,47.04406],[-115.08782,47.0455],[-115.09183,47.04674],[-115.09584,47.04786],[-115.09814,47.04889],[-115.09917,47.04814],[-115.10078,47.04744],[-115.1027,47.04722],[-115.10512,47.04814],[-115.1072,47.04907],[-115.10859,47.05029],[-115.10752,47.0522],[-115.10889,47.05217],[-115.113,47.0542],[-115.11539,47.05697],[-115.11817,47.05895],[-115.12086,47.06115],[-115.12383,47.06576],[-115.12592,47.06665],[-115.12624,47.06686],[-115.12702,47.06768],[-115.12793,47.06871],[-115.12868,47.0702],[-115.12962,47.07135],[-115.13064,47.07312],[-115.13179,47.07447],[-115.13264,47.07565],[-115.1346,47.07661],[-115.13665,47.07827],[-115.13789,47.08308],[-115.13952,47.08457],[-115.13973,47.08538],[-115.13922,47.08661],[-115.13966,47.08766],[-115.14032,47.08828],[-115.14046,47.09066],[-115.1404,47.09298],[-115.13969,47.09364],[-115.1394,47.09557],[-115.13877,47.0957],[-115.13787,47.09601],[-115.13828,47.09709],[-115.14032,47.09914],[-115.14265,47.10183],[-115.14566,47.10295],[-115.14661,47.10226],[-115.14791,47.10163],[-115.1499,47.10145],[-115.15215,47.10183],[-115.15556,47.10274],[-115.15735,47.10238],[-115.15923,47.10193],[-115.16162,47.10283],[-115.164,47.10381],[-115.16788,47.10568],[-115.16939,47.10591],[-115.17043,47.10625],[-115.17171,47.10764],[-115.17246,47.10945],[-115.17245,47.11153],[-115.17171,47.11261],[-115.17294,47.11285],[-115.17433,47.11419],[-115.17769,47.11713],[-115.17843,47.11822],[-115.17866,47.12057],[-115.17907,47.12074],[-115.18287,47.12181],[-115.18503,47.12343],[-115.18636,47.12492],[-115.18686,47.12611],[-115.1856,47.12983],[-115.18682,47.12996],[-115.18934,47.131],[-115.19182,47.13206],[-115.19322,47.13301],[-115.19343,47.13444],[-115.19476,47.13442],[-115.19661,47.13549],[-115.19835,47.13683],[-115.19888,47.13968],[-115.20052,47.13915],[-115.20403,47.13943],[-115.20772,47.1406],[-115.2127,47.1415],[-115.21481,47.14246],[-115.21544,47.14413],[-115.2168,47.14604],[-115.22006,47.14744],[-115.22328,47.14898],[-115.22418,47.14833],[-115.22734,47.14861],[-115.23165,47.15007],[-115.235,47.15022],[-115.23755,47.15073],[-115.24101,47.15072],[-115.2437,47.15033],[-115.2458,47.1519],[-115.2466,47.15337],[-115.24779,47.15531],[-115.24806,47.15655],[-115.24851,47.15755],[-115.24863,47.15866],[-115.25102,47.15957],[-115.25262,47.16054],[-115.25405,47.16154],[-115.25518,47.16289],[-115.25555,47.16434],[-115.25532,47.16562],[-115.25585,47.16668],[-115.25634,47.16804],[-115.25609,47.16932],[-115.25641,47.16998],[-115.2564,47.17119],[-115.25616,47.17235],[-115.2558,47.17344],[-115.25576,47.17471],[-115.25676,47.17563],[-115.25763,47.17622],[-115.2579,47.17661],[-115.25799,47.17796],[-115.2586,47.17939],[-115.25923,47.17978],[-115.26093,47.17986],[-115.26122,47.18081],[-115.26189,47.18177],[-115.26667,47.18109],[-115.26848,47.18132],[-115.27236,47.18253],[-115.27362,47.1827],[-115.27613,47.1822],[-115.27796,47.18216],[-115.27984,47.18243],[-115.28351,47.1834],[-115.28637,47.18332],[-115.28725,47.18348],[-115.28816,47.18471],[-115.28941,47.18594],[-115.29097,47.18713],[-115.29329,47.18666],[-115.29516,47.18676],[-115.29756,47.18733],[-115.29994,47.18759],[-115.30063,47.18821],[-115.30072,47.18997],[-115.30055,47.19081],[-115.30091,47.1918],[-115.30083,47.1939],[-115.2996,47.19489],[-115.29871,47.19657],[-115.2982,47.19957],[-115.29725,47.20281],[-115.29605,47.20566],[-115.29265,47.20883],[-115.29209,47.20979],[-115.29221,47.21048],[-115.29413,47.21455],[-115.29505,47.21763],[-115.29468,47.21927],[-115.29474,47.22091],[-115.29622,47.22159],[-115.29753,47.22244],[-115.29829,47.22397],[-115.29878,47.2252],[-115.30185,47.22553],[-115.30378,47.22733],[-115.30588,47.22866],[-115.30724,47.22988],[-115.31184,47.22965],[-115.31272,47.23055],[-115.31411,47.23162],[-115.31476,47.23301],[-115.31712,47.23323],[-115.3174,47.23424],[-115.31733,47.23531],[-115.31799,47.23583],[-115.319,47.23735],[-115.31983,47.24131],[-115.32032,47.24235],[-115.32205,47.24289],[-115.32422,47.24377],[-115.32485,47.24473],[-115.32433,47.24574],[-115.32076,47.24896],[-115.31822,47.25165],[-115.31852,47.25294],[-115.32002,47.25418],[-115.32019,47.25556],[-115.32001,47.25676],[-115.32159,47.25638],[-115.32334,47.25645],[-115.32617,47.25726],[-115.32882,47.25818],[-115.33128,47.25937],[-115.33394,47.25972],[-115.33919,47.26158],[-115.34074,47.26279],[-115.34369,47.26103],[-115.34791,47.26009],[-115.3515,47.26071],[-115.35431,47.26198],[-115.35712,47.26036],[-115.35942,47.25945],[-115.3615,47.25985],[-115.36616,47.26143],[-115.36701,47.26236],[-115.36808,47.26309],[-115.36863,47.26329],[-115.37085,47.26454],[-115.37187,47.26521],[-115.37399,47.26471],[-115.37607,47.26481],[-115.37816,47.26473],[-115.37993,47.26547],[-115.38127,47.26633],[-115.3832,47.26663],[-115.38445,47.26722],[-115.38594,47.26643],[-115.38803,47.26563],[-115.39428,47.2651],[-115.3971,47.26514],[-115.39868,47.2648],[-115.40125,47.26493],[-115.40548,47.2646],[-115.40732,47.26418],[-115.40933,47.26395],[-115.41065,47.26423],[-115.41197,47.26469],[-115.41367,47.26641],[-115.41425,47.26725],[-115.4167,47.26939],[-115.41873,47.26974],[-115.42161,47.27165],[-115.42172,47.27317],[-115.42037,47.2765],[-115.42107,47.27752],[-115.42409,47.27848],[-115.42556,47.27962],[-115.42669,47.28018],[-115.42929,47.27964],[-115.43149,47.27963],[-115.43421,47.2798],[-115.43658,47.28047],[-115.43858,47.27936],[-115.44101,47.27814],[-115.44372,47.27726],[-115.44685,47.27776],[-115.44877,47.2785],[-115.44939,47.2786],[-115.45265,47.27758],[-115.45565,47.27755],[-115.45718,47.27778],[-115.4576,47.27914],[-115.45738,47.28078],[-115.4575,47.28243],[-115.45902,47.28369],[-115.46088,47.28472],[-115.464,47.28591],[-115.46579,47.28696],[-115.46664,47.28782],[-115.46794,47.28721],[-115.47095,47.28484],[-115.47192,47.28448],[-115.47533,47.28453],[-115.4766,47.28417],[-115.4793,47.28205],[-115.48063,47.28162],[-115.48247,47.28162],[-115.48452,47.28333],[-115.48606,47.28537],[-115.48712,47.28632],[-115.48683,47.28644],[-115.4872,47.28681],[-115.48792,47.28723],[-115.48884,47.28798],[-115.49007,47.28836],[-115.49156,47.28943],[-115.49316,47.28978],[-115.49617,47.28967],[-115.49807,47.29014],[-115.50104,47.29036],[-115.5053,47.29103],[-115.51085,47.29435],[-115.51185,47.29514],[-115.51354,47.2959],[-115.5159,47.29689],[-115.51901,47.29759],[-115.52007,47.29821],[-115.52407,47.29899],[-115.5261,47.29924],[-115.52933,47.29931],[-115.52829,47.30066],[-115.52881,47.30218],[-115.52777,47.30382],[-115.52769,47.30443],[-115.52837,47.30622],[-115.5285,47.30735],[-115.52751,47.30892],[-115.52985,47.30992],[-115.53089,47.31149],[-115.53192,47.31416],[-115.53494,47.31633],[-115.53838,47.3207],[-115.54071,47.3246],[-115.5412,47.32657],[-115.54031,47.32912],[-115.54384,47.33053],[-115.54573,47.33235],[-115.55128,47.33387],[-115.54906,47.33881],[-115.54903,47.33994],[-115.54985,47.34636],[-115.55108,47.3499],[-115.55185,47.35067],[-115.55425,47.35114],[-115.55553,47.35226],[-115.55621,47.35303],[-115.55895,47.35224],[-115.56024,47.3522],[-115.56152,47.35186],[-115.56478,47.35168],[-115.56787,47.3529],[-115.56846,47.35379],[-115.56931,47.35445],[-115.5698,47.35529],[-115.57111,47.35567],[-115.57542,47.35564],[-115.57809,47.36076],[-115.57779,47.36158],[-115.57605,47.36373],[-115.57604,47.36533],[-115.57689,47.36682],[-115.57936,47.36735],[-115.58165,47.36776],[-115.58443,47.36858],[-115.58596,47.36988],[-115.59352,47.37043],[-115.59808,47.3718],[-115.59773,47.37235],[-115.59814,47.37377],[-115.59928,47.37508],[-115.60111,47.37743],[-115.60254,47.37767],[-115.60474,47.37785],[-115.60768,47.37915],[-115.60934,47.38079],[-115.61378,47.38101],[-115.61575,47.38214],[-115.61728,47.38257],[-115.62279,47.38154],[-115.6259,47.38062],[-115.62843,47.37954],[-115.63077,47.37927],[-115.63187,47.37947],[-115.63538,47.37978],[-115.63745,47.37925],[-115.64022,47.37843],[-115.64385,47.37752],[-115.6456,47.38078],[-115.64769,47.38232],[-115.64815,47.38383],[-115.64751,47.38545],[-115.64719,47.38715],[-115.6473,47.38805],[-115.64851,47.39027],[-115.64972,47.39144],[-115.65049,47.39249],[-115.65276,47.39304],[-115.6551,47.39376],[-115.65688,47.39561],[-115.65733,47.39693],[-115.65761,47.40064],[-115.65886,47.40132],[-115.66226,47.40258],[-115.66441,47.40233],[-115.66614,47.40144],[-115.66857,47.40119],[-115.67429,47.40202],[-115.67624,47.40216],[-115.6775,47.40189],[-115.67761,47.40322],[-115.67719,47.40467],[-115.6766,47.40629],[-115.67661,47.40849],[-115.679,47.40984],[-115.68319,47.41089],[-115.68581,47.41103],[-115.68713,47.41166],[-115.68895,47.41316],[-115.69055,47.41501],[-115.69345,47.4152],[-115.69643,47.41515],[-115.69859,47.41612],[-115.69981,47.41691],[-115.70045,47.41652],[-115.70306,47.41567],[-115.70597,47.41545],[-115.70949,47.41507],[-115.71195,47.41537],[-115.71282,47.41621],[-115.71446,47.41733],[-115.71601,47.41857],[-115.71697,47.42015],[-115.71946,47.42038],[-115.72091,47.42107],[-115.72104,47.42215],[-115.72097,47.42437],[-115.72065,47.42554],[-115.72315,47.42521],[-115.72634,47.42507],[-115.72944,47.42487],[-115.73239,47.42501],[-115.73449,47.42557],[-115.73676,47.4259],[-115.73837,47.42668],[-115.74096,47.42473],[-115.74364,47.42353],[-115.74653,47.4233],[-115.74993,47.4223],[-115.75109,47.42233],[-115.75636,47.42183],[-115.75935,47.42223],[-115.75962,47.42304],[-115.7578,47.42615],[-115.7547,47.42996],[-115.7531,47.43089],[-115.75257,47.43211],[-115.75145,47.43652],[-115.75102,47.43696],[-115.75102,47.43776],[-115.74968,47.43858],[-115.74962,47.44041],[-115.74835,47.44171],[-115.74678,47.44237],[-115.74175,47.44242],[-115.7393,47.44304],[-115.7379,47.44393],[-115.736,47.44427],[-115.73427,47.44425],[-115.73166,47.44579],[-115.72733,47.44768],[-115.7245,47.44855],[-115.72022,47.45128],[-115.71851,47.45308],[-115.70755,47.45345],[-115.70611,47.45276],[-115.70204,47.45416],[-115.7012,47.4541],[-115.69478,47.45622],[-115.69282,47.45729],[-115.6894,47.4572],[-115.68478,47.4578],[-115.68172,47.45727],[-115.67816,47.45431],[-115.67529,47.45333],[-115.67092,47.4545],[-115.66792,47.45451],[-115.66526,47.45393],[-115.66397,47.45408],[-115.66217,47.45377],[-115.65977,47.45453],[-115.65678,47.45474],[-115.65298,47.45529],[-115.65227,47.45566],[-115.6464,47.45669],[-115.64478,47.45848],[-115.64208,47.45896],[-115.64021,47.46013],[-115.63852,47.46177],[-115.63785,47.46423],[-115.63651,47.46496],[-115.63584,47.46714],[-115.63484,47.46909],[-115.63219,47.4727],[-115.63172,47.47479],[-115.63108,47.47654],[-115.6286,47.4798],[-115.63213,47.48068],[-115.6348,47.4818],[-115.63895,47.47997],[-115.64551,47.47951],[-115.64655,47.47845],[-115.64816,47.47796],[-115.64967,47.47774],[-115.65233,47.47784],[-115.65332,47.47824],[-115.65682,47.47823],[-115.65757,47.47805],[-115.66057,47.47821],[-115.661,47.47868],[-115.66083,47.48144],[-115.66112,47.48256],[-115.66185,47.48372],[-115.66315,47.48481],[-115.66441,47.48563],[-115.66707,47.4876],[-115.66721,47.48833],[-115.66829,47.48888],[-115.66915,47.48825],[-115.67028,47.48779],[-115.6713,47.48727],[-115.67216,47.48659],[-115.6731,47.48641],[-115.67476,47.48655],[-115.67942,47.48621],[-115.68006,47.48598],[-115.68096,47.48552],[-115.68148,47.48478],[-115.68269,47.4843],[-115.68398,47.484],[-115.68674,47.48556],[-115.68729,47.49075],[-115.68809,47.49118],[-115.68906,47.49716],[-115.68899,47.49851],[-115.68977,47.5],[-115.69141,47.50148],[-115.69534,47.50218],[-115.69953,47.50311],[-115.70044,47.50358],[-115.70103,47.50503],[-115.70223,47.50723],[-115.70366,47.50894],[-115.70733,47.5125],[-115.708,47.51376],[-115.70833,47.5149],[-115.70865,47.51551],[-115.70997,47.51596],[-115.71104,47.51658],[-115.7106,47.52309],[-115.71002,47.52374],[-115.70759,47.52432],[-115.70363,47.52595],[-115.69684,47.52827],[-115.69673,47.52883],[-115.69749,47.53039],[-115.69745,47.53134],[-115.69819,47.53149],[-115.70133,47.53297],[-115.70155,47.53398],[-115.70194,47.53423],[-115.7034,47.53411],[-115.70548,47.53501],[-115.70638,47.53501],[-115.70803,47.53425],[-115.71191,47.53298],[-115.71328,47.53368],[-115.71371,47.53422],[-115.71517,47.53454],[-115.71637,47.53427],[-115.71825,47.53343],[-115.72055,47.53343],[-115.7287,47.53569],[-115.73032,47.53586],[-115.73069,47.53653],[-115.73175,47.53801],[-115.73327,47.53928],[-115.73519,47.53961],[-115.73679,47.53942],[-115.73968,47.53837],[-115.74152,47.53867],[-115.74377,47.53948],[-115.7449,47.53995],[-115.7491,47.5412],[-115.75098,47.54158],[-115.75179,47.54196],[-115.75229,47.54268],[-115.75239,47.54336],[-115.75229,47.54391],[-115.75306,47.54469],[-115.75306,47.5451],[-115.75344,47.54537],[-115.75391,47.54554],[-115.7541,47.54586],[-115.7543,47.5465],[-115.75487,47.54736],[-115.75529,47.54775],[-115.75584,47.54809],[-115.7559,47.54839],[-115.75572,47.54903],[-115.75547,47.5497],[-115.75549,47.55031],[-115.75536,47.55132],[-115.75452,47.55251],[-115.75345,47.55294],[-115.75215,47.55333],[-115.75153,47.55383],[-115.74929,47.55515],[-115.74461,47.5585],[-115.74414,47.55901],[-115.74403,47.55999],[-115.74375,47.56085],[-115.74289,47.56178],[-115.74176,47.56211],[-115.73982,47.56283],[-115.73826,47.56402],[-115.73647,47.56612],[-115.73466,47.5674],[-115.73128,47.56925],[-115.7303,47.56944],[-115.72867,47.56916],[-115.72737,47.56914],[-115.72535,47.5694],[-115.7226,47.57074],[-115.7221,47.5721],[-115.72228,47.57503],[-115.7217,47.57604],[-115.72094,47.57642],[-115.71967,47.57675],[-115.71617,47.57706],[-115.71181,47.57689],[-115.70752,47.57701],[-115.7065,47.57731],[-115.70494,47.57935],[-115.70433,47.58132],[-115.7045,47.58202],[-115.70558,47.58367],[-115.70473,47.58483],[-115.70191,47.58732],[-115.69788,47.58981],[-115.68913,47.59386],[-115.68759,47.59467],[-115.68801,47.59535],[-115.68934,47.59539],[-115.69213,47.59642],[-115.69272,47.60118],[-115.69422,47.60197],[-115.69597,47.60241],[-115.69746,47.60445],[-115.69799,47.60571],[-115.69764,47.60736],[-115.69716,47.60837],[-115.69709,47.60887],[-115.69788,47.6101],[-115.69819,47.61145],[-115.69825,47.61229],[-115.69782,47.61296],[-115.69679,47.61345],[-115.69404,47.61543],[-115.69274,47.61702],[-115.69316,47.6177],[-115.69367,47.61815],[-115.69421,47.62091],[-115.69443,47.62148],[-115.69423,47.6235],[-115.69515,47.62422],[-115.69642,47.62494],[-115.69777,47.62647],[-115.69861,47.628],[-115.69982,47.629],[-115.70102,47.62942],[-115.70175,47.62937],[-115.70248,47.62961],[-115.70319,47.63063],[-115.70509,47.63274],[-115.70839,47.63534],[-115.71358,47.6358],[-115.71549,47.63641],[-115.72083,47.63898],[-115.72298,47.63928],[-115.73003,47.64247],[-115.7315,47.6441],[-115.73136,47.64601],[-115.73213,47.64668],[-115.7329,47.64709],[-115.7335,47.64803],[-115.73367,47.64926],[-115.73631,47.65474],[-115.73581,47.65565],[-115.73333,47.65807],[-115.73133,47.66153],[-115.73096,47.66251],[-115.7309,47.6664],[-115.73113,47.66759],[-115.7305,47.67017],[-115.72945,47.67062],[-115.72747,47.67171],[-115.7266,47.67211],[-115.72638,47.67308],[-115.72624,47.67446],[-115.72754,47.68085],[-115.72794,47.68224],[-115.72726,47.68367],[-115.72653,47.685],[-115.72591,47.68559],[-115.72497,47.68716],[-115.72512,47.68748],[-115.72509,47.68864],[-115.72446,47.6902],[-115.72408,47.6921],[-115.72369,47.69276],[-115.72304,47.69447],[-115.72264,47.69487],[-115.72261,47.69515],[-115.72353,47.69626],[-115.72501,47.69878],[-115.72677,47.7007],[-115.72911,47.70309],[-115.73055,47.7041],[-115.73078,47.70442],[-115.7307,47.70465],[-115.73104,47.70497],[-115.73341,47.70568],[-115.73814,47.70853],[-115.73999,47.70949],[-115.7409,47.7101],[-115.74088,47.71108],[-115.74138,47.71137],[-115.74282,47.71158],[-115.7434,47.71195],[-115.74482,47.71237],[-115.74724,47.71336],[-115.75095,47.71547],[-115.75229,47.71668],[-115.75719,47.71818],[-115.75857,47.71899],[-115.75996,47.71883],[-115.76341,47.71729],[-115.76666,47.71724],[-115.76957,47.71783],[-115.77178,47.71739],[-115.77404,47.71841],[-115.7763,47.71983],[-115.77748,47.72152],[-115.77906,47.72248],[-115.7836,47.72942],[-115.78368,47.731],[-115.78221,47.73475],[-115.78315,47.73637],[-115.78272,47.738],[-115.7815,47.73898],[-115.78021,47.74239],[-115.78051,47.74344],[-115.78577,47.74833],[-115.78983,47.74992],[-115.7899,47.75004],[-115.79239,47.75108],[-115.7937,47.75191],[-115.79403,47.75282],[-115.79414,47.75341],[-115.79439,47.75365],[-115.79481,47.75387],[-115.79731,47.75751],[-115.79853,47.75751],[-115.80042,47.7577],[-115.80384,47.75848],[-115.80612,47.75758],[-115.80763,47.75721],[-115.81023,47.75617],[-115.81464,47.75635],[-115.81709,47.75518],[-115.81926,47.75446],[-115.82077,47.75369],[-115.82354,47.7527],[-115.82469,47.75211],[-115.82579,47.75261],[-115.82788,47.75385],[-115.83029,47.75495],[-115.83178,47.75576],[-115.83281,47.75716],[-115.83285,47.75789],[-115.83358,47.75936],[-115.83449,47.75997],[-115.83539,47.76087],[-115.83551,47.76417],[-115.83503,47.767],[-115.8355,47.76878],[-115.83514,47.76932],[-115.83503,47.77004],[-115.83588,47.77105],[-115.83648,47.77207],[-115.83653,47.77279],[-115.83682,47.77386],[-115.83755,47.77499],[-115.84007,47.77715],[-115.84049,47.77836],[-115.8406,47.77929],[-115.84038,47.78015],[-115.84236,47.78129],[-115.84692,47.78428],[-115.84756,47.7854],[-115.84726,47.78773],[-115.84588,47.79323],[-115.84579,47.79406],[-115.84717,47.79724],[-115.84897,47.8002],[-115.84866,47.80094],[-115.84788,47.80183],[-115.84756,47.80259],[-115.84732,47.80344],[-115.84757,47.80497],[-115.84809,47.80713],[-115.84853,47.80932],[-115.84875,47.80944],[-115.84919,47.81127],[-115.84852,47.8118],[-115.84749,47.81226],[-115.84637,47.81336],[-115.84624,47.81395],[-115.84548,47.81467],[-115.84548,47.81497],[-115.84594,47.81598],[-115.84605,47.81656],[-115.84646,47.8167],[-115.84641,47.81694],[-115.84666,47.81731],[-115.8469,47.81786],[-115.84773,47.81861],[-115.85004,47.82],[-115.85089,47.82167],[-115.85059,47.82276],[-115.85045,47.82431],[-115.85064,47.82533],[-115.85119,47.82654],[-115.85177,47.82693],[-115.8523,47.82799],[-115.85294,47.82813],[-115.855,47.82801],[-115.85613,47.82849],[-115.85859,47.83019],[-115.85957,47.83107],[-115.86312,47.83291],[-115.86449,47.83329],[-115.86602,47.83333],[-115.86688,47.83342],[-115.86773,47.83386],[-115.8709,47.83496],[-115.87151,47.83575],[-115.87173,47.83649],[-115.87204,47.83712],[-115.87308,47.83797],[-115.87387,47.83893],[-115.87444,47.84193],[-115.87592,47.84424],[-115.87839,47.84573],[-115.88155,47.84965],[-115.88276,47.84886],[-115.88397,47.84876],[-115.88597,47.84832],[-115.88775,47.84763],[-115.88873,47.84702],[-115.8905,47.84634],[-115.89228,47.84601],[-115.89331,47.84536],[-115.89509,47.84524],[-115.8973,47.84529],[-115.89867,47.84384],[-115.90097,47.84307],[-115.90156,47.84318],[-115.9041,47.84469],[-115.9057,47.84603],[-115.90648,47.84624],[-115.90692,47.84678],[-115.90709,47.84732],[-115.90643,47.8489],[-115.90645,47.85048],[-115.90731,47.85132],[-115.90877,47.85234],[-115.91006,47.85298],[-115.91349,47.85359],[-115.91474,47.85338],[-115.91631,47.8536],[-115.9189,47.8537],[-115.9189,47.85559],[-115.91925,47.85737],[-115.92071,47.85965],[-115.92453,47.86385],[-115.925,47.86487],[-115.92522,47.86694],[-115.92604,47.86739],[-115.92695,47.86769],[-115.9288,47.86845],[-115.93132,47.872],[-115.93265,47.87304],[-115.93424,47.87362],[-115.93574,47.87449],[-115.9352,47.87606],[-115.93594,47.87747],[-115.93613,47.8785],[-115.93666,47.87953],[-115.93754,47.88047],[-115.93817,47.88152],[-115.93934,47.88203],[-115.94003,47.88311],[-115.94117,47.88373],[-115.943,47.88556],[-115.94482,47.88573],[-115.94585,47.8861],[-115.94714,47.88698],[-115.94743,47.88852],[-115.94939,47.889],[-115.95012,47.88947],[-115.95067,47.89051],[-115.95237,47.89164],[-115.9532,47.89402],[-115.95406,47.8945],[-115.95519,47.89475],[-115.95901,47.89725],[-115.95992,47.89813],[-115.96083,47.89834],[-115.96429,47.89831],[-115.96715,47.89844],[-115.96785,47.89895],[-115.96855,47.89962],[-115.96848,47.90099],[-115.96695,47.90397],[-115.96638,47.9059],[-115.9664,47.90682],[-115.96515,47.91074],[-115.96683,47.91264],[-115.96861,47.91397],[-115.96962,47.91438],[-115.97153,47.91408],[-115.97343,47.91407],[-115.97581,47.91466],[-115.97934,47.91463],[-115.98133,47.91539],[-115.98239,47.91568],[-115.9832,47.91649],[-115.98285,47.91958],[-115.98345,47.92133],[-115.98507,47.92301],[-115.98557,47.92325],[-115.98827,47.9236],[-115.99134,47.92484],[-115.99191,47.92533],[-115.99371,47.92614],[-115.99395,47.92703],[-115.99384,47.92787],[-115.9932,47.92879],[-115.99407,47.93032],[-115.99488,47.9316],[-115.9951,47.93386],[-115.99551,47.9345],[-115.99666,47.93533],[-115.99807,47.93617],[-115.99838,47.93684],[-115.99801,47.93813],[-115.99821,47.93883],[-115.99944,47.93923],[-116.00092,47.93986],[-116.00158,47.93991],[-116.00301,47.94043],[-116.005,47.94263],[-116.00596,47.9427],[-116.00692,47.94382],[-116.00694,47.94442],[-116.00743,47.9452],[-116.00766,47.94563],[-116.00706,47.94702],[-116.00722,47.95014],[-116.0083,47.9513],[-116.00998,47.95292],[-116.01154,47.95375],[-116.01176,47.95422],[-116.01327,47.95596],[-116.01456,47.95776],[-116.01578,47.9582],[-116.01793,47.96082],[-116.01873,47.96306],[-116.02086,47.96357],[-116.0241,47.96525],[-116.02519,47.96733],[-116.02729,47.96839],[-116.02836,47.96928],[-116.0287,47.97094],[-116.03054,47.97231],[-116.03075,47.97334],[-116.03292,47.97287],[-116.03835,47.9713],[-116.03966,47.97167],[-116.04044,47.97228],[-116.04114,47.97261],[-116.04171,47.9737],[-116.04244,47.97421],[-116.04469,47.97472],[-116.04883,47.97688],[-116.04919,49.00083],[-115.81069,49.00094],[-115.57218,49.00059],[-115.33213,48.99991],[-115.21383,48.99963],[-115.09517,48.99968],[-114.58553,49.0009],[-114.45939,49.00107],[-114.33288,49.0009],[-114.20096,49],[-114.06913,48.99887],[-114.06931,49.00008],[-114.07047,49.00086],[-114.07196,49.00242],[-114.07209,49.00335],[-114.0719,49.00418],[-114.07238,49.00501],[-114.07176,49.00598],[-114.06889,49.00784],[-114.06522,49.01197],[-114.05875,49.01886],[-114.05509,49.02443],[-114.05417,49.02669],[-114.05703,49.02799],[-114.06239,49.03762],[-114.0634,49.04035],[-114.06406,49.04291],[-114.06396,49.04549],[-114.0647,49.04602],[-114.06593,49.04626],[-114.0669,49.04683],[-114.06799,49.04815],[-114.06994,49.04987],[-114.07651,49.05362],[-114.08028,49.05773],[-114.08139,49.05982],[-114.08288,49.05981],[-114.08651,49.05885],[-114.08948,49.0585],[-114.09328,49.05881],[-114.09714,49.05999],[-114.10084,49.06156],[-114.10719,49.06505],[-114.10809,49.0662],[-114.11123,49.06826],[-114.11406,49.07068],[-114.11501,49.07281],[-114.11604,49.07388],[-114.11811,49.07412],[-114.12979,49.07817],[-114.13083,49.07915],[-114.13291,49.0826],[-114.13524,49.0839],[-114.13989,49.0871],[-114.14233,49.0897],[-114.14781,49.09417],[-114.15338,49.09949],[-114.15372,49.10132],[-114.15345,49.10314],[-114.15182,49.10499],[-114.14915,49.10741],[-114.14974,49.11106],[-114.1494,49.11547],[-114.14982,49.11808],[-114.15323,49.11992],[-114.15652,49.12297],[-114.15784,49.12378],[-114.15869,49.12635],[-114.16081,49.12753],[-114.16224,49.13146],[-114.16605,49.13556],[-114.16556,49.13709],[-114.16244,49.13829],[-114.15658,49.14012],[-114.15288,49.14145],[-114.14903,49.14367],[-114.15125,49.14535],[-114.15579,49.14762],[-114.15974,49.15],[-114.16195,49.15178],[-114.16208,49.15308],[-114.16131,49.15478],[-114.16608,49.15668],[-114.17139,49.16005],[-114.17258,49.16246],[-114.17496,49.16358],[-114.18032,49.16427],[-114.19521,49.16905],[-114.19922,49.16925],[-114.204,49.16981],[-114.20908,49.17206],[-114.2127,49.17346],[-114.21578,49.17841],[-114.21714,49.18413],[-114.21925,49.18488],[-114.22153,49.18908],[-114.23048,49.18926],[-114.23468,49.18537],[-114.24051,49.18462],[-114.24536,49.18564],[-114.24668,49.18728],[-114.25111,49.18278],[-114.25234,49.18051],[-114.25432,49.17928],[-114.25708,49.177],[-114.26095,49.1777],[-114.26327,49.17958],[-114.26756,49.1797],[-114.26937,49.18099],[-114.27721,49.17973],[-114.28001,49.17806],[-114.28727,49.17801],[-114.28861,49.17873],[-114.28936,49.1804],[-114.28849,49.18308],[-114.29011,49.186],[-114.29477,49.18827],[-114.29864,49.18938],[-114.30097,49.19078],[-114.30562,49.19127],[-114.31054,49.19203],[-114.3132,49.19361],[-114.31685,49.19903],[-114.31852,49.19996],[-114.32298,49.19981],[-114.32829,49.19899],[-114.33532,49.19969],[-114.33696,49.1994],[-114.33962,49.19597],[-114.34276,49.19436],[-114.34564,49.19359],[-114.35002,49.19453],[-114.35564,49.19654],[-114.35895,49.19844],[-114.36075,49.20057],[-114.36088,49.20203],[-114.36624,49.20365],[-114.37718,49.20283],[-114.38675,49.20493],[-114.38973,49.20711],[-114.39115,49.20675],[-114.39902,49.21038],[-114.40208,49.21328],[-114.39957,49.21429],[-114.39784,49.21529],[-114.39628,49.21727],[-114.39395,49.21942],[-114.39586,49.22143],[-114.39975,49.22234],[-114.40493,49.2242],[-114.40584,49.22523],[-114.40435,49.22645],[-114.40115,49.22778],[-114.40157,49.23022],[-114.40293,49.23278],[-114.40256,49.2347],[-114.40343,49.23727],[-114.40268,49.24163],[-114.40048,49.24233],[-114.39582,49.2431],[-114.39107,49.24471],[-114.38372,49.24618],[-114.37989,49.24825],[-114.38137,49.25073],[-114.38774,49.25163],[-114.39353,49.2572],[-114.39632,49.25716],[-114.40005,49.25775],[-114.40313,49.25919],[-114.40497,49.2588],[-114.40784,49.25982],[-114.40934,49.25971],[-114.41444,49.26218],[-114.42113,49.2618],[-114.42498,49.26222],[-114.42969,49.26131],[-114.43501,49.26211],[-114.43864,49.2633],[-114.4397,49.26463],[-114.44796,49.26434],[-114.44813,49.26533],[-114.4489,49.26596],[-114.44933,49.26732],[-114.44907,49.27658],[-114.44971,49.27857],[-114.45097,49.27948],[-114.4512,49.28039],[-114.44905,49.28233],[-114.44939,49.28516],[-114.44681,49.28847],[-114.44856,49.28995],[-114.45117,49.29249],[-114.45408,49.29813],[-114.46114,49.3041],[-114.46278,49.30376],[-114.46673,49.30436],[-114.4713,49.30669],[-114.47291,49.30844],[-114.4776,49.31231],[-114.47998,49.31277],[-114.48156,49.31182],[-114.48494,49.31065],[-114.48986,49.31208],[-114.49204,49.31374],[-114.4913,49.3154],[-114.49176,49.31683],[-114.49114,49.3195],[-114.49207,49.32075],[-114.49214,49.32217],[-114.4893,49.32384],[-114.48317,49.32495],[-114.48041,49.32586],[-114.47885,49.32672],[-114.48161,49.32911],[-114.48205,49.33003],[-114.48257,49.33749],[-114.48396,49.33928],[-114.48432,49.34265],[-114.48753,49.3473],[-114.49584,49.35253],[-114.50094,49.35277],[-114.50698,49.35667],[-114.51348,49.35542],[-114.51662,49.35454],[-114.52288,49.35624],[-114.52474,49.35742],[-114.52527,49.35987],[-114.52417,49.36208],[-114.53156,49.37055],[-114.53185,49.37169],[-114.5263,49.3751],[-114.5366,49.37961],[-114.54409,49.37762],[-114.54762,49.37724],[-114.55166,49.37803],[-114.55647,49.37678],[-114.56256,49.37728],[-114.56696,49.37686],[-114.5681,49.38001],[-114.57153,49.38191],[-114.57612,49.38675],[-114.57341,49.38951],[-114.57576,49.38997],[-114.57828,49.39138],[-114.58033,49.39134],[-114.58641,49.39235],[-114.58737,49.39387],[-114.58966,49.3953],[-114.59057,49.39611],[-114.5919,49.40015],[-114.592,49.40483],[-114.59837,49.41256],[-114.5965,49.41686],[-114.59661,49.42002],[-114.59723,49.42145],[-114.60077,49.42466],[-114.6002,49.42655],[-114.60075,49.42799],[-114.5992,49.42953],[-114.59857,49.43378],[-114.60164,49.43622],[-114.60257,49.43726],[-114.60502,49.43896],[-114.60286,49.44358],[-114.60066,49.44414],[-114.59838,49.44537],[-114.59892,49.44977],[-114.60298,49.45155],[-114.60341,49.45278],[-114.59838,49.45479],[-114.59782,49.45907],[-114.59928,49.46187],[-114.60005,49.464],[-114.59945,49.46664],[-114.59391,49.46938],[-114.59344,49.47139],[-114.59546,49.47811],[-114.5955,49.48009],[-114.59457,49.48077],[-114.59365,49.48409],[-114.59421,49.48639],[-114.59575,49.4878],[-114.59713,49.49072],[-114.59607,49.49173],[-114.59425,49.49213],[-114.59286,49.49323],[-114.5949,49.49666],[-114.5948,49.50002],[-114.59651,49.50182],[-114.59465,49.50268],[-114.59314,49.50554],[-114.59097,49.50673],[-114.58494,49.51238],[-114.58265,49.51803],[-114.5831,49.52022],[-114.5774,49.52126],[-114.5754,49.52367],[-114.57275,49.52469],[-114.57241,49.52671],[-114.57347,49.52784],[-114.57323,49.5326],[-114.56975,49.53698],[-114.57087,49.53868],[-114.57207,49.54394],[-114.57417,49.54641],[-114.57215,49.54828],[-114.57403,49.55056],[-114.573,49.55707],[-114.57607,49.55685],[-114.57901,49.55809],[-114.58823,49.56535],[-114.59329,49.56112],[-114.59877,49.56014],[-114.60198,49.56099],[-114.60478,49.55869],[-114.60724,49.55924],[-114.60881,49.55498],[-114.61243,49.55401],[-114.61393,49.55048],[-114.61576,49.54906],[-114.61601,49.54837],[-114.6196,49.54642],[-114.62089,49.54722],[-114.62635,49.54941],[-114.63041,49.54914],[-114.63785,49.54358],[-114.64794,49.54297],[-114.65451,49.54521],[-114.66255,49.55198],[-114.67629,49.55329],[-114.67891,49.55528],[-114.68329,49.55654],[-114.69041,49.55377],[-114.69158,49.55094],[-114.69583,49.54662],[-114.70088,49.55219],[-114.7043,49.55343],[-114.71026,49.55852],[-114.71038,49.56283],[-114.71405,49.56615],[-114.71971,49.56741],[-114.72249,49.56999],[-114.72459,49.57162],[-114.72449,49.57589],[-114.7302,49.577],[-114.7326,49.57653],[-114.73458,49.5802],[-114.73719,49.59586],[-114.74544,49.60056],[-114.74712,49.60237],[-114.74648,49.60423],[-114.74704,49.60715],[-114.75313,49.60955],[-114.74826,49.61388],[-114.74739,49.61944],[-114.729,49.62378],[-114.72343,49.62393],[-114.71991,49.62602],[-114.7162,49.63062],[-114.71223,49.63039],[-114.70875,49.63126],[-114.70649,49.63367],[-114.70826,49.63583],[-114.7057,49.63658],[-114.70545,49.63752],[-114.7032,49.63861],[-114.70164,49.63751],[-114.70017,49.63685],[-114.69773,49.63107],[-114.69094,49.63268],[-114.69068,49.63478],[-114.68767,49.63582],[-114.68715,49.63786],[-114.6814,49.63898],[-114.67976,49.63965],[-114.67983,49.64132],[-114.67465,49.64349],[-114.66766,49.63766],[-114.66479,49.64156],[-114.66209,49.64336],[-114.66137,49.64782],[-114.65702,49.66075],[-114.65749,49.66361],[-114.66266,49.66539],[-114.66688,49.66951],[-114.66874,49.67015],[-114.66983,49.67285],[-114.66814,49.67563],[-114.66463,49.67653],[-114.66841,49.6806],[-114.6685,49.68297],[-114.67005,49.68406],[-114.67029,49.68684],[-114.66899,49.691],[-114.67208,49.69322],[-114.67584,49.69419],[-114.67668,49.69616],[-114.67313,49.69957],[-114.66838,49.70376],[-114.66078,49.70628],[-114.64759,49.71295],[-114.64654,49.71429],[-114.64617,49.71551],[-114.64303,49.71723],[-114.63894,49.71784],[-114.63632,49.72173],[-114.6383,49.72435],[-114.63362,49.73037],[-114.63315,49.73402],[-114.63712,49.73808],[-114.64152,49.73926],[-114.6429,49.73909],[-114.64634,49.74336],[-114.64333,49.74494],[-114.64212,49.74631],[-114.64421,49.74961],[-114.6482,49.75392],[-114.65105,49.7551],[-114.65142,49.75866],[-114.65419,49.75934],[-114.65731,49.7608],[-114.65916,49.76504],[-114.65334,49.76714],[-114.64443,49.77302],[-114.64095,49.78136],[-114.63604,49.78481],[-114.63595,49.7856],[-114.63772,49.78634],[-114.63847,49.79114],[-114.64159,49.79464],[-114.64222,49.79576],[-114.64208,49.79854],[-114.64151,49.80126],[-114.64197,49.80323],[-114.64302,49.80452],[-114.64372,49.80564],[-114.64187,49.80804],[-114.64336,49.81037],[-114.64562,49.81486],[-114.64749,49.81731],[-114.64744,49.81922],[-114.64589,49.82073],[-114.64289,49.82234],[-114.63997,49.82774],[-114.64274,49.83153],[-114.64698,49.83378],[-114.65065,49.83849],[-114.65212,49.84252],[-114.6548,49.8466],[-114.66111,49.8517],[-114.6613,49.85353],[-114.66269,49.85487],[-114.66197,49.85939],[-114.66124,49.86066],[-114.66151,49.86228],[-114.66238,49.8633],[-114.67146,49.86453],[-114.67055,49.86844],[-114.67079,49.87092],[-114.67219,49.87264],[-114.67303,49.87397],[-114.67274,49.87835],[-114.67546,49.88112],[-114.6824,49.88587],[-114.68521,49.88709],[-114.68495,49.88784],[-114.69173,49.8963],[-114.69112,49.8987],[-114.68871,49.90185],[-114.68979,49.90644],[-114.68726,49.917],[-114.6902,49.92163],[-114.69134,49.93312],[-114.68968,49.93608],[-114.69042,49.93793],[-114.69279,49.94045],[-114.69319,49.94104],[-114.69487,49.94183],[-114.69371,49.94255],[-114.68526,49.95519],[-114.68358,49.96069],[-114.68337,49.96707],[-114.68157,49.96752],[-114.6706,49.96786],[-114.66358,49.9665],[-114.65841,49.96816],[-114.65735,49.96839],[-114.65597,49.96803],[-114.65578,49.97011],[-114.65147,49.97552],[-114.65202,49.97865],[-114.65361,49.981],[-114.65361,49.9839],[-114.65429,49.9857],[-114.65339,49.98963],[-114.65251,49.99126],[-114.65197,49.99272],[-114.6548,49.99682],[-114.65563,49.99744],[-114.66342,50],[-114.66501,50],[-114.66606,50.00154],[-114.66659,50.00331],[-114.6652,50.00529],[-114.66337,50.0076],[-114.6617,50.01136],[-114.66122,50.015],[-114.6577,50.0191],[-114.65964,50.02683],[-114.65767,50.02971],[-114.66149,50.03315],[-114.66205,50.03394],[-114.66635,50.03536],[-114.6665,50.03588],[-114.66296,50.03966],[-114.66514,50.04148],[-114.66813,50.0422],[-114.67113,50.04314],[-114.67231,50.04436],[-114.67383,50.04505],[-114.67519,50.04662],[-114.67612,50.04812],[-114.66642,50.05091],[-114.6664,50.05143],[-114.66536,50.05429],[-114.66509,50.05577],[-114.66598,50.05881],[-114.66555,50.06098],[-114.66456,50.0625],[-114.66234,50.06499],[-114.66511,50.06379],[-114.67157,50.0645],[-114.67701,50.06345],[-114.67984,50.06409],[-114.68069,50.06457],[-114.68171,50.06724],[-114.68448,50.06875],[-114.68866,50.07024],[-114.69121,50.07136],[-114.6912,50.07507],[-114.69204,50.07785],[-114.69392,50.08002],[-114.69511,50.0812],[-114.69468,50.08141],[-114.69735,50.08696],[-114.69899,50.0888],[-114.70054,50.08925],[-114.70416,50.08969],[-114.70281,50.09106],[-114.7037,50.0948],[-114.70574,50.09578],[-114.70652,50.09673],[-114.70746,50.09729],[-114.70773,50.09858],[-114.71075,50.10221],[-114.71939,50.10572],[-114.72012,50.10653],[-114.72047,50.11067],[-114.7222,50.11179],[-114.72776,50.11316],[-114.72964,50.11432],[-114.73332,50.11858],[-114.73498,50.11948],[-114.73588,50.12032],[-114.73346,50.12135],[-114.7315,50.12604],[-114.73101,50.12793],[-114.72692,50.13527],[-114.72757,50.13698],[-114.7272,50.13806],[-114.72494,50.1408],[-114.72479,50.14337],[-114.72729,50.14831],[-114.72726,50.15781],[-114.72634,50.1608],[-114.72533,50.16136],[-114.73264,50.16929],[-114.7307,50.17123],[-114.73043,50.17422],[-114.73094,50.176],[-114.72779,50.17865],[-114.72387,50.18387],[-114.72552,50.18611],[-114.72474,50.18703],[-114.7247,50.19019],[-114.728,50.19208],[-114.72888,50.19291],[-114.73096,50.19408],[-114.73177,50.19584],[-114.73643,50.2007],[-114.73885,50.20271],[-114.73758,50.2089],[-114.73957,50.21164],[-114.74114,50.21243],[-114.74349,50.21267],[-114.74904,50.21491],[-114.74473,50.2183],[-114.74533,50.22231],[-114.74738,50.22472],[-114.75186,50.22715],[-114.75575,50.23178],[-114.76151,50.23365],[-114.76289,50.2347],[-114.76197,50.24097],[-114.76279,50.24085],[-114.76799,50.24299],[-114.76861,50.24403],[-114.76772,50.24523],[-114.76702,50.24552],[-114.76709,50.24697],[-114.76891,50.24867],[-114.76964,50.25006],[-114.77021,50.25009],[-114.76968,50.25191],[-114.76655,50.25404],[-114.76616,50.2554],[-114.76705,50.25676],[-114.76647,50.2575],[-114.76684,50.25818],[-114.76414,50.26519],[-114.7581,50.27176],[-114.75213,50.27316],[-114.7517,50.27526],[-114.75295,50.27886],[-114.75421,50.28071],[-114.75505,50.28141],[-114.75245,50.28586],[-114.7536,50.28739],[-114.75286,50.29381],[-114.75522,50.2993],[-114.76219,50.29926],[-114.76933,50.30257],[-114.7724,50.30163],[-114.77616,50.29976],[-114.78041,50.29981],[-114.78162,50.30166],[-114.78102,50.30736],[-114.78232,50.30997],[-114.78276,50.31138],[-114.78039,50.31526],[-114.78446,50.31883],[-114.78802,50.31927],[-114.7904,50.32062],[-114.79224,50.32234],[-114.79759,50.32615],[-114.79866,50.32656],[-114.79995,50.3298],[-114.79928,50.3303],[-114.79835,50.33042],[-114.79655,50.33093],[-114.7954,50.33087],[-114.79431,50.33168],[-114.79218,50.33584],[-114.77593,50.34364],[-114.77485,50.34379],[-114.77384,50.34474],[-114.7718,50.3476],[-114.76943,50.34907],[-114.76757,50.3498],[-114.7663,50.35075],[-114.76863,50.35245],[-114.76864,50.35881],[-114.77332,50.36214],[-114.7749,50.36255],[-114.78168,50.36249],[-114.78191,50.36204],[-114.78445,50.36274],[-114.78483,50.36225],[-114.78683,50.36104],[-114.78912,50.35802],[-114.79138,50.35855],[-114.79587,50.36154],[-114.79894,50.36176],[-114.79954,50.36275],[-114.80388,50.36485],[-114.80883,50.3707],[-114.81481,50.36893],[-114.81921,50.36902],[-114.81735,50.37482],[-114.8131,50.37673],[-114.81245,50.3782],[-114.81434,50.38041],[-114.81391,50.38192],[-114.81549,50.38238],[-114.81777,50.38246],[-114.8203,50.38448],[-114.8248,50.39329],[-114.82592,50.39329],[-114.83124,50.39033],[-114.83829,50.39355],[-114.84842,50.39256],[-114.85187,50.39315],[-114.8548,50.39227],[-114.8569,50.39252],[-114.85945,50.39368],[-114.8623,50.39447],[-114.86555,50.39893],[-114.86636,50.3993],[-114.86573,50.40102],[-114.86519,50.40548],[-114.86011,50.40765],[-114.86158,50.40899],[-114.86236,50.40913],[-114.86409,50.41143],[-114.86364,50.41728],[-114.86215,50.41996],[-114.85955,50.42097],[-114.85979,50.42374],[-114.86264,50.42552],[-114.86841,50.42582],[-114.87001,50.42764],[-114.87299,50.43023],[-114.87391,50.43732],[-114.87474,50.43961],[-114.88073,50.43798],[-114.88397,50.43745],[-114.88537,50.43641],[-114.88652,50.4358],[-114.88778,50.43563],[-114.89552,50.43945],[-114.89746,50.44123],[-114.89945,50.44421],[-114.90545,50.44847],[-114.91111,50.45044],[-114.91222,50.45137],[-114.91243,50.45484],[-114.9133,50.4559],[-114.91618,50.45802],[-114.9174,50.46145],[-114.92378,50.46668],[-114.92699,50.46846],[-114.92833,50.47187],[-114.93228,50.47346],[-114.93278,50.47529],[-114.93172,50.47853],[-114.93565,50.48078],[-114.93713,50.48626],[-114.93808,50.487],[-114.94367,50.48846],[-114.94574,50.48962],[-114.95134,50.49751],[-114.95327,50.49799],[-114.9558,50.50146],[-114.95902,50.50439],[-114.96243,50.51219],[-114.96366,50.5138],[-114.96582,50.5152],[-114.96764,50.51606],[-114.96862,50.51773],[-114.97742,50.52956],[-114.97746,50.53212],[-114.97827,50.5349],[-114.98308,50.5397],[-114.9914,50.54438],[-114.99118,50.54576],[-114.9926,50.54782],[-114.99552,50.54944],[-115.00418,50.55965],[-115.00594,50.56084],[-115.00598,50.56241],[-115.01119,50.56731],[-115.01371,50.57085],[-115.0134,50.57406],[-115.01507,50.58238],[-115.01913,50.58389],[-115.02054,50.58469],[-115.02717,50.58303],[-115.03347,50.57931],[-115.04956,50.57517],[-115.05209,50.57141],[-115.06126,50.57971],[-115.06339,50.58319],[-115.07363,50.58843],[-115.08525,50.58971],[-115.10088,50.57793],[-115.11584,50.57178],[-115.11758,50.56977],[-115.13161,50.57177],[-115.1362,50.57438],[-115.14511,50.57152],[-115.14847,50.57076],[-115.15461,50.57327],[-115.17359,50.56756],[-115.17494,50.56136],[-115.17766,50.55824],[-115.18335,50.55602],[-115.18704,50.55576],[-115.18982,50.55506],[-115.19098,50.55405],[-115.18981,50.54894],[-115.18372,50.54398],[-115.18616,50.5398],[-115.18912,50.53831],[-115.19083,50.53511],[-115.20211,50.5331],[-115.20607,50.52804],[-115.20823,50.52783],[-115.21322,50.53239],[-115.21684,50.53651],[-115.22093,50.53698],[-115.22254,50.53968],[-115.23102,50.54495],[-115.2319,50.55069],[-115.2296,50.5514],[-115.22846,50.55404],[-115.22974,50.55502],[-115.22981,50.55921],[-115.23148,50.5609],[-115.23418,50.5648],[-115.23374,50.56613],[-115.23493,50.56758],[-115.24188,50.57127],[-115.23929,50.57489],[-115.23507,50.57475],[-115.23185,50.57708],[-115.23017,50.5775],[-115.2361,50.58562],[-115.23958,50.58921],[-115.2437,50.58917],[-115.2474,50.58812],[-115.25149,50.58994],[-115.26004,50.59628],[-115.26425,50.5967],[-115.26581,50.59767],[-115.26855,50.59744],[-115.2718,50.59786],[-115.27797,50.60104],[-115.28036,50.60547],[-115.28469,50.60888],[-115.28581,50.6082],[-115.28749,50.60816],[-115.28939,50.60941],[-115.29044,50.60941],[-115.29363,50.61105],[-115.29538,50.61302],[-115.29518,50.61434],[-115.29748,50.61774],[-115.29823,50.62011],[-115.298,50.62477],[-115.29683,50.62622],[-115.30031,50.62551],[-115.3052,50.62593],[-115.31011,50.62722],[-115.31153,50.62858],[-115.31176,50.63039],[-115.30954,50.63146],[-115.3102,50.63528],[-115.31305,50.63764],[-115.31189,50.63823],[-115.30291,50.63818],[-115.2996,50.63928],[-115.29492,50.63902],[-115.28839,50.63768],[-115.28546,50.63882],[-115.28206,50.64698],[-115.2774,50.64834],[-115.27532,50.64796],[-115.27408,50.64889],[-115.2779,50.65058],[-115.28145,50.65384],[-115.28245,50.65621],[-115.28165,50.65711],[-115.28595,50.66032],[-115.28492,50.66174],[-115.28226,50.66321],[-115.28377,50.66557],[-115.28793,50.66887],[-115.29277,50.67538],[-115.29847,50.68342],[-115.30085,50.69075],[-115.29772,50.69466],[-115.29364,50.69835],[-115.29676,50.69993],[-115.30169,50.70058],[-115.30614,50.70471],[-115.30887,50.70781],[-115.31104,50.71206],[-115.31423,50.71529],[-115.31475,50.7163],[-115.31366,50.71685],[-115.31067,50.72153],[-115.31226,50.72393],[-115.31347,50.7243],[-115.31511,50.72578],[-115.31825,50.72646],[-115.31976,50.72622],[-115.32071,50.72421],[-115.32415,50.72335],[-115.32647,50.72207],[-115.32776,50.72192],[-115.33296,50.72417],[-115.33506,50.72424],[-115.33587,50.72347],[-115.33921,50.72202],[-115.34013,50.72222],[-115.34625,50.72207],[-115.34988,50.72127],[-115.35452,50.72271],[-115.35735,50.72149],[-115.35899,50.72104],[-115.36338,50.7179],[-115.36792,50.71759],[-115.37013,50.71724],[-115.36988,50.71435],[-115.37763,50.71091],[-115.37563,50.70786],[-115.37893,50.70534],[-115.38641,50.70802],[-115.39123,50.70646],[-115.39464,50.7076],[-115.40071,50.71089],[-115.4037,50.71233],[-115.40537,50.71244],[-115.41381,50.71125],[-115.41634,50.71269],[-115.41671,50.7137],[-115.41605,50.71485],[-115.41644,50.71883],[-115.41692,50.71992],[-115.41583,50.72216],[-115.41138,50.72326],[-115.41201,50.72602],[-115.41069,50.72726],[-115.41088,50.72831],[-115.41335,50.73075],[-115.41359,50.73188],[-115.4124,50.73354],[-115.41302,50.73449],[-115.41466,50.73569],[-115.4163,50.73628],[-115.41796,50.73637],[-115.41962,50.73664],[-115.42555,50.74376],[-115.43633,50.75577],[-115.44438,50.75431],[-115.4471,50.7532],[-115.44872,50.75371],[-115.45043,50.75466],[-115.4523,50.75633],[-115.45351,50.75577],[-115.45497,50.75573],[-115.45648,50.7565],[-115.45765,50.75726],[-115.45895,50.75719],[-115.46042,50.7569],[-115.46233,50.75541],[-115.46398,50.75366],[-115.4668,50.75259],[-115.47031,50.75201],[-115.47126,50.7529],[-115.47496,50.75487],[-115.47773,50.75556],[-115.48122,50.7552],[-115.48471,50.76068],[-115.48425,50.7646],[-115.48262,50.76809],[-115.48186,50.76853],[-115.48834,50.77361],[-115.49449,50.7788],[-115.49539,50.77896],[-115.49467,50.77973],[-115.49757,50.7823],[-115.50108,50.78427],[-115.50385,50.78524],[-115.50961,50.78626],[-115.51212,50.78642],[-115.51584,50.7845],[-115.51577,50.78159],[-115.51691,50.7802],[-115.52776,50.78509],[-115.52919,50.78688],[-115.53243,50.78819],[-115.53311,50.79292],[-115.53553,50.79554],[-115.53868,50.79654],[-115.5429,50.79566],[-115.54468,50.7949],[-115.54798,50.7964],[-115.55085,50.79708],[-115.55157,50.79964],[-115.55281,50.80257],[-115.55566,50.80361],[-115.5579,50.80366],[-115.5605,50.8047],[-115.56122,50.80863],[-115.56064,50.81018],[-115.56152,50.81158],[-115.56557,50.81331],[-115.56646,50.81478],[-115.56187,50.82163],[-115.56235,50.82485],[-115.56084,50.82656],[-115.56419,50.82896],[-115.56488,50.83212],[-115.56651,50.83264],[-115.57218,50.83646],[-115.57314,50.83775],[-115.57797,50.8405],[-115.58568,50.84153],[-115.59064,50.84315],[-115.59595,50.84392],[-115.60152,50.8442],[-115.60655,50.84558],[-115.60744,50.84399],[-115.61794,50.83572],[-115.62151,50.8352],[-115.62345,50.83413],[-115.62691,50.8334],[-115.63138,50.83672],[-115.63507,50.83705],[-115.63937,50.83793],[-115.64139,50.83974],[-115.64298,50.84215],[-115.64264,50.84593],[-115.64539,50.85438],[-115.64433,50.85589],[-115.64386,50.85729],[-115.64483,50.85847],[-115.6494,50.86268],[-115.64841,50.864],[-115.64904,50.86505],[-115.65109,50.8659],[-115.65065,50.86841],[-115.65091,50.87233],[-115.64891,50.8742],[-115.64169,50.87544],[-115.63601,50.877],[-115.63419,50.87874],[-115.63004,50.87913],[-115.62903,50.87978],[-115.61686,50.87938],[-115.61274,50.88534],[-115.60437,50.88725],[-115.59978,50.88602],[-115.59987,50.8904],[-115.59267,50.89262],[-115.59028,50.89246],[-115.58239,50.88927],[-115.57784,50.88829],[-115.5713,50.89068],[-115.56639,50.89314],[-115.56209,50.89425],[-115.56638,50.89818],[-115.56792,50.89921],[-115.56852,50.90208],[-115.57226,50.9059],[-115.57213,50.90742],[-115.57513,50.90788],[-115.57822,50.90986],[-115.57839,50.91333],[-115.58314,50.91381],[-115.58428,50.91576],[-115.58965,50.91564],[-115.59601,50.91649],[-115.59989,50.91784],[-115.60186,50.91971],[-115.6058,50.92213],[-115.60983,50.92626],[-115.60549,50.92961],[-115.60553,50.93337],[-115.59771,50.93703],[-115.59709,50.93982],[-115.60445,50.94389],[-115.61086,50.94683],[-115.61458,50.95113],[-115.61152,50.95706],[-115.61172,50.95893],[-115.61782,50.96305],[-115.62195,50.96544],[-115.62603,50.97048],[-115.62547,50.97368],[-115.6281,50.97771],[-115.62827,50.98091],[-115.63193,50.98053],[-115.6362,50.98197],[-115.64007,50.98529],[-115.64153,50.98737],[-115.64232,50.99062],[-115.64829,50.996],[-115.64878,50.99748],[-115.65192,50.99863],[-115.6542,50.99878],[-115.65747,51.00133],[-115.65998,51.00109],[-115.66352,50.99967],[-115.6694,50.99926],[-115.67054,50.99994],[-115.67151,51.00132],[-115.6761,51.00414],[-115.67773,51.00719],[-115.68254,51.00943],[-115.68997,51.01396],[-115.69057,51.01655],[-115.69225,51.01979],[-115.6923,51.02146],[-115.69087,51.02393],[-115.69047,51.02537],[-115.69233,51.02858],[-115.69464,51.02722],[-115.69807,51.02575],[-115.70127,51.02358],[-115.70265,51.02215],[-115.70369,51.02136],[-115.70682,51.02016],[-115.71138,51.02022],[-115.71359,51.01984],[-115.71714,51.01736],[-115.72666,51.0187],[-115.7306,51.0201],[-115.73395,51.02226],[-115.73731,51.0233],[-115.73924,51.02333],[-115.73998,51.02487],[-115.73887,51.0265],[-115.73638,51.02837],[-115.73526,51.02965],[-115.74312,51.03393],[-115.74815,51.0306],[-115.75146,51.0315],[-115.76026,51.0359],[-115.76173,51.03734],[-115.76492,51.03878],[-115.76706,51.0394],[-115.76929,51.04165],[-115.7722,51.04609],[-115.77048,51.04668],[-115.76914,51.04784],[-115.76986,51.04925],[-115.77156,51.05101],[-115.77161,51.0524],[-115.77261,51.05398],[-115.77343,51.05609],[-115.77371,51.05768],[-115.76889,51.05922],[-115.76631,51.05959],[-115.76133,51.06077],[-115.75942,51.06373],[-115.7615,51.06691],[-115.75889,51.06915],[-115.7591,51.07119],[-115.75329,51.0744],[-115.75543,51.07496],[-115.75761,51.07512],[-115.76194,51.07201],[-115.77235,51.06699],[-115.77619,51.06651],[-115.77972,51.0685],[-115.78068,51.0699],[-115.78364,51.0693],[-115.78431,51.0706],[-115.78927,51.07239],[-115.79396,51.07073],[-115.80286,51.06957],[-115.80385,51.07166],[-115.80372,51.07349],[-115.80394,51.0757],[-115.80801,51.08055],[-115.8101,51.0825],[-115.81226,51.08332],[-115.81237,51.08574],[-115.81283,51.08644],[-115.81651,51.08477],[-115.82543,51.08268],[-115.82573,51.08141],[-115.82947,51.07939],[-115.83336,51.07588],[-115.839,51.07739],[-115.84242,51.07649],[-115.84282,51.07796],[-115.84377,51.07961],[-115.84618,51.08126],[-115.84752,51.0818],[-115.85138,51.08084],[-115.85778,51.07912],[-115.8602,51.08043],[-115.86176,51.08211],[-115.86383,51.08643],[-115.86682,51.08782],[-115.86791,51.08927],[-115.86906,51.08934],[-115.87042,51.08835],[-115.87234,51.08769],[-115.87478,51.0872],[-115.87613,51.08753],[-115.87886,51.08682],[-115.88296,51.08596],[-115.88473,51.08595],[-115.88848,51.08648],[-115.89464,51.08603],[-115.89636,51.08763],[-115.89833,51.09037],[-115.89979,51.09367],[-115.90081,51.09377],[-115.90443,51.09104],[-115.90488,51.08912],[-115.90314,51.08527],[-115.90317,51.08356],[-115.90388,51.08288],[-115.90714,51.08405],[-115.91211,51.08345],[-115.91786,51.08412],[-115.92041,51.08357],[-115.92194,51.08297],[-115.92352,51.08306],[-115.9239,51.08419],[-115.92488,51.08635],[-115.92658,51.08861],[-115.93024,51.09077],[-115.93144,51.09446],[-115.93247,51.09669],[-115.93417,51.09759],[-115.94161,51.09693],[-115.94524,51.09784],[-115.94845,51.09918],[-115.95051,51.10212],[-115.94958,51.10302],[-115.95044,51.10553],[-115.95036,51.10691],[-115.95275,51.10939],[-115.95343,51.11058],[-115.95719,51.11511],[-115.95995,51.11569],[-115.96382,51.11552],[-115.96761,51.116],[-115.96652,51.11868],[-115.96698,51.12079],[-115.96823,51.12211],[-115.97168,51.12247],[-115.97994,51.12481],[-115.98223,51.12498],[-115.98477,51.12602],[-115.98714,51.12632],[-115.99105,51.1263],[-115.99577,51.12455],[-115.99851,51.12433],[-115.99846,51.12496],[-116.00442,51.12463],[-116.00489,51.12533],[-116.00749,51.12655],[-116.00863,51.12599],[-116.01122,51.12768],[-116.01268,51.13002],[-116.01265,51.13318],[-116.01356,51.13563],[-116.01558,51.13803],[-116.00988,51.14382],[-116.01043,51.14769],[-116.01011,51.15059],[-116.00963,51.1529],[-116.00974,51.15433],[-116.00943,51.1551],[-116.00737,51.15631],[-116.0176,51.15612],[-116.02004,51.15727],[-116.02085,51.15945],[-116.02573,51.16295],[-116.02948,51.16272],[-116.03052,51.16322],[-116.03354,51.16608],[-116.03684,51.17004],[-116.03439,51.17079],[-116.02391,51.17615],[-116.02062,51.18263],[-116.02161,51.18427],[-116.02171,51.18647],[-116.02129,51.18701],[-116.01871,51.18743],[-116.01682,51.18882],[-116.01278,51.18962],[-116.006,51.1902],[-116.00418,51.19091],[-116.00182,51.1928],[-115.99996,51.19398],[-115.99994,51.19519],[-116.00122,51.19824],[-116.00396,51.20302],[-116.00438,51.20403],[-116.00406,51.20786],[-116.00631,51.20873],[-116.00656,51.2107],[-116.00488,51.21297],[-116.00209,51.2154],[-116.0049,51.21807],[-116.00753,51.22197],[-116.01102,51.2223],[-116.01657,51.22356],[-116.02121,51.22244],[-116.02508,51.22106],[-116.02664,51.2198],[-116.04923,51.22741],[-116.05969,51.2392],[-116.06518,51.24791],[-116.07408,51.24903],[-116.08118,51.25179],[-116.08929,51.25188],[-116.09181,51.25084],[-116.1006,51.25163],[-116.1117,51.25327],[-116.11458,51.25532],[-116.11454,51.25637],[-116.11938,51.25533],[-116.12238,51.25781],[-116.12513,51.25933],[-116.13448,51.26055],[-116.14408,51.26464],[-116.14867,51.26472],[-116.15326,51.26336],[-116.15406,51.268],[-116.15734,51.27271],[-116.15916,51.27575],[-116.15557,51.28075],[-116.15284,51.28339],[-116.15158,51.2871],[-116.15529,51.2882],[-116.15792,51.2901],[-116.15976,51.29212],[-116.16019,51.29603],[-116.16421,51.29778],[-116.16803,51.29715],[-116.17416,51.29738],[-116.17946,51.29537],[-116.18213,51.29544],[-116.18257,51.29636],[-116.18636,51.29837],[-116.18845,51.30146],[-116.19778,51.29966],[-116.20091,51.29623],[-116.20343,51.29522],[-116.20676,51.2962],[-116.21006,51.29479],[-116.2191,51.29161],[-116.2191,51.29447],[-116.22051,51.29499],[-116.22317,51.29812],[-116.22669,51.29973],[-116.22703,51.3015],[-116.22832,51.30187],[-116.23261,51.30176],[-116.23595,51.30275],[-116.24338,51.30141],[-116.24559,51.30251],[-116.24897,51.30498],[-116.25668,51.30809],[-116.25984,51.3097],[-116.26798,51.31195],[-116.2701,51.31533],[-116.27458,51.31939],[-116.27481,51.32814],[-116.27879,51.3292],[-116.28123,51.33007],[-116.28254,51.33145],[-116.2824,51.33219],[-116.28495,51.33325],[-116.28672,51.33454],[-116.28721,51.33802],[-116.28769,51.34204],[-116.28998,51.34308],[-116.28348,51.34891],[-116.28231,51.35093],[-116.27731,51.35465],[-116.27991,51.35964],[-116.2778,51.36169],[-116.28909,51.36414],[-116.29059,51.36358],[-116.29341,51.3648],[-116.29864,51.36919],[-116.30033,51.37093],[-116.3027,51.37137],[-116.30579,51.3772],[-116.3115,51.38499],[-116.30817,51.38598],[-116.29845,51.39188],[-116.29191,51.39716],[-116.29319,51.39951],[-116.29369,51.40159],[-116.29265,51.40357],[-116.28632,51.40556],[-116.28427,51.40681],[-116.28255,51.40683],[-116.28497,51.4118],[-116.28799,51.4188],[-116.29327,51.42547],[-116.29421,51.42999],[-116.28554,51.43531],[-116.28803,51.44854],[-116.28449,51.44937],[-116.28396,51.4564],[-116.29044,51.46116],[-116.29248,51.46181],[-116.30868,51.46279],[-116.31506,51.46555],[-116.31698,51.46505],[-116.31839,51.46318],[-116.32237,51.46244],[-116.33808,51.46433],[-116.34657,51.46952],[-116.36056,51.47085],[-116.362,51.47364],[-116.36799,51.47865],[-116.36901,51.48301],[-116.37991,51.48843],[-116.38442,51.49273],[-116.38824,51.49992],[-116.38957,51.50006],[-116.39247,51.50443],[-116.3939,51.50559],[-116.39638,51.51256],[-116.39472,51.51489],[-116.39349,51.51796],[-116.39353,51.52227],[-116.39536,51.52556],[-116.38789,51.5274],[-116.38332,51.52959],[-116.38218,51.53103],[-116.38294,51.53266],[-116.39058,51.54362],[-116.39099,51.54562],[-116.40142,51.54651],[-116.40742,51.54899],[-116.4153,51.55323],[-116.42206,51.55506],[-116.42875,51.55422],[-116.42969,51.55462],[-116.42899,51.55647],[-116.4374,51.55836],[-116.44057,51.55705],[-116.45292,51.56059],[-116.45532,51.56248],[-116.46071,51.56378],[-116.46474,51.56582],[-116.46495,51.56816],[-116.46879,51.56997],[-116.46869,51.57317],[-116.47054,51.57602],[-116.47333,51.58266],[-116.47114,51.58688],[-116.46904,51.58801],[-116.46612,51.59411],[-116.46639,51.59678],[-116.46907,51.60175],[-116.47158,51.60474],[-116.4762,51.60762],[-116.48417,51.61029],[-116.49103,51.61238],[-116.48926,51.61435],[-116.48894,51.61663],[-116.49545,51.6198],[-116.49956,51.62335],[-116.50025,51.6254],[-116.4999,51.62765],[-116.50583,51.62812],[-116.51356,51.62757],[-116.52083,51.6288],[-116.5298,51.63157],[-116.53645,51.63865],[-116.54185,51.63878],[-116.54597,51.63822],[-116.57009,51.64702],[-116.57051,51.65287],[-116.57484,51.65375],[-116.5776,51.65317],[-116.58045,51.65308],[-116.59503,51.66187],[-116.59697,51.66462],[-116.59608,51.66652],[-116.59009,51.66814],[-116.58864,51.67013],[-116.58754,51.67298],[-116.58901,51.67563],[-116.59142,51.67765],[-116.59009,51.67921],[-116.58704,51.68248],[-116.58675,51.68544],[-116.58141,51.68748],[-116.58354,51.69239],[-116.5896,51.69413],[-116.58121,51.69729],[-116.58135,51.69881],[-116.58476,51.70128],[-116.58476,51.70373],[-116.58527,51.70565],[-116.5876,51.70923],[-116.58605,51.71057],[-116.58546,51.71276],[-116.58808,51.71587],[-116.59453,51.71749],[-116.5985,51.72384],[-116.60652,51.72553],[-116.6105,51.72395],[-116.61714,51.72517],[-116.62033,51.72691],[-116.623,51.7275],[-116.62427,51.72728],[-116.63121,51.7314],[-116.63372,51.73411],[-116.63361,51.73544],[-116.62941,51.73719],[-116.62834,51.74142],[-116.62909,51.74353],[-116.62815,51.74486],[-116.63678,51.74838],[-116.64032,51.75114],[-116.64657,51.75221],[-116.65034,51.75369],[-116.65118,51.75615],[-116.65051,51.76013],[-116.64963,51.76278],[-116.65117,51.76498],[-116.65099,51.76675],[-116.64823,51.77164],[-116.64694,51.77664],[-116.64442,51.77843],[-116.64575,51.78273],[-116.64317,51.7867],[-116.64621,51.78898],[-116.64823,51.79088],[-116.64982,51.79211],[-116.65155,51.79232],[-116.65379,51.79294],[-116.65523,51.79453],[-116.65598,51.79688],[-116.65436,51.80132],[-116.65567,51.8018],[-116.65788,51.80331],[-116.65913,51.80517],[-116.6642,51.8053],[-116.6671,51.80442],[-116.66669,51.80601],[-116.67743,51.81139],[-116.67967,51.81305],[-116.68214,51.81208],[-116.68856,51.80776],[-116.69239,51.80633],[-116.69452,51.80363],[-116.7035,51.80156],[-116.70682,51.80234],[-116.71049,51.80106],[-116.71552,51.79865],[-116.71689,51.79881],[-116.7207,51.8013],[-116.72301,51.80396],[-116.72505,51.80475],[-116.73228,51.80598],[-116.74422,51.80661],[-116.7489,51.80509],[-116.75453,51.79987],[-116.75964,51.78756],[-116.76534,51.7846],[-116.77294,51.77479],[-116.77814,51.77242],[-116.78217,51.76896],[-116.78518,51.76401],[-116.78711,51.76334],[-116.79161,51.76395],[-116.79467,51.76113],[-116.79619,51.75804],[-116.80169,51.7544],[-116.80264,51.75305],[-116.80428,51.75225],[-116.80643,51.75043],[-116.80684,51.74712],[-116.80996,51.74513],[-116.81106,51.74247],[-116.8112,51.74054],[-116.8135,51.73962],[-116.81742,51.73972],[-116.81926,51.73862],[-116.81999,51.73742],[-116.8184,51.73543],[-116.81516,51.73316],[-116.8078,51.72775],[-116.80493,51.72591],[-116.7981,51.72357],[-116.79986,51.72127],[-116.80016,51.71689],[-116.80376,51.71537],[-116.80691,51.71308],[-116.80893,51.71036],[-116.80882,51.70722],[-116.80973,51.70536],[-116.81297,51.70539],[-116.81926,51.70686],[-116.82046,51.7048],[-116.82601,51.70407],[-116.82813,51.70429],[-116.83161,51.70401],[-116.83406,51.7034],[-116.83656,51.7033],[-116.83863,51.7048],[-116.84913,51.70538],[-116.85358,51.70831],[-116.86077,51.70785],[-116.86295,51.70631],[-116.86521,51.70519],[-116.87034,51.7044],[-116.87439,51.70465],[-116.87647,51.70569],[-116.87795,51.70548],[-116.87824,51.70422],[-116.88727,51.70295],[-116.89597,51.70269],[-116.90259,51.70376],[-116.90742,51.70665],[-116.9098,51.70712],[-116.91195,51.70638],[-116.91608,51.70747],[-116.92063,51.70979],[-116.9181,51.71181],[-116.91695,51.71362],[-116.92264,51.71709],[-116.9261,51.71752],[-116.9278,51.71945],[-116.93002,51.72142],[-116.92643,51.72378],[-116.92624,51.72478],[-116.92682,51.72679],[-116.92652,51.72906],[-116.93248,51.72951],[-116.94368,51.73393],[-116.94313,51.73482],[-116.94461,51.74169],[-116.94627,51.74273],[-116.94935,51.74219],[-116.95428,51.74319],[-116.95562,51.74592],[-116.95718,51.7471],[-116.95899,51.74786],[-116.96065,51.75204],[-116.96872,51.756],[-116.9762,51.76007],[-116.97507,51.76086],[-116.97275,51.76133],[-116.97204,51.76302],[-116.97176,51.76498],[-116.9732,51.76698],[-116.97295,51.76814],[-116.97373,51.76942],[-116.9686,51.77083],[-116.96801,51.77139],[-116.96709,51.77338],[-116.96324,51.77426],[-116.96285,51.7753],[-116.96373,51.77632],[-116.9646,51.77824],[-116.96434,51.78005],[-116.96476,51.78164],[-116.96602,51.78299],[-116.96608,51.78422],[-116.96499,51.7859],[-116.96604,51.78773],[-116.96364,51.79024],[-116.96116,51.7909],[-116.96399,51.7949],[-116.96844,51.79831],[-116.97569,51.80288],[-116.98603,51.80851],[-116.98897,51.81108],[-116.98763,51.81362],[-116.98526,51.81611],[-116.98504,51.81834],[-116.98431,51.8203],[-116.98807,51.8229],[-116.98634,51.82453],[-116.98633,51.82671],[-116.98111,51.82845],[-116.97987,51.83096],[-116.97889,51.83362],[-116.97974,51.83554],[-116.98111,51.83672],[-116.98439,51.83598],[-116.99073,51.83652],[-116.99509,51.8368],[-116.99978,51.83656],[-117.00015,51.83548],[-117.00567,51.83605],[-117.01932,51.84294],[-117.02746,51.85064],[-117.03208,51.85428],[-117.03343,51.85627],[-117.03431,51.8598],[-117.03306,51.86073],[-117.03061,51.86451],[-117.03084,51.86888],[-117.02696,51.87442],[-117.02335,51.87996],[-117.01881,51.88335],[-117.01453,51.88487],[-117.01329,51.88712],[-117.01077,51.88963],[-117.0116,51.8905],[-117.01947,51.89137],[-117.0232,51.89438],[-117.03139,51.89889],[-117.03289,51.90155],[-117.03774,51.90486],[-117.04224,51.90823],[-117.0467,51.9102],[-117.04854,51.9126],[-117.05235,51.91558],[-117.05937,51.91732],[-117.06647,51.92228],[-117.07358,51.92698],[-117.0778,51.92921],[-117.07972,51.93075],[-117.0815,51.93344],[-117.08611,51.93687],[-117.08891,51.93803],[-117.09249,51.93833],[-117.09771,51.93974],[-117.09684,51.94324],[-117.10086,51.94766],[-117.10213,51.95009],[-117.10091,51.95306],[-117.10167,51.95486],[-117.10321,51.95652],[-117.11024,51.95574],[-117.11728,51.95517],[-117.12017,51.95568],[-117.13053,51.96513],[-117.1316,51.96692],[-117.13328,51.96823],[-117.1357,51.96837],[-117.13812,51.96909],[-117.14485,51.97267],[-117.14844,51.97346],[-117.15434,51.97195],[-117.16366,51.97262],[-117.16774,51.97374],[-117.1727,51.9739],[-117.17723,51.97432],[-117.18629,51.97695],[-117.18865,51.97657],[-117.19142,51.97732],[-117.19599,51.97907],[-117.19724,51.98015],[-117.19749,51.98541],[-117.19644,51.98635],[-117.19692,51.9877],[-117.19937,51.98905],[-117.19959,51.9908],[-117.2017,51.99286],[-117.2051,51.99453],[-117.21088,51.99587],[-117.21649,51.99732],[-117.21721,51.99903],[-117.21849,52.0004],[-117.21951,52.0022],[-117.22212,52.00516],[-117.22425,52.0069],[-117.22617,52.00869],[-117.22914,52.00931],[-117.23238,52.01035],[-117.2336,52.01174],[-117.23198,52.01642],[-117.22725,52.01652],[-117.22279,52.01741],[-117.21676,52.02225],[-117.21538,52.02535],[-117.21468,52.02846],[-117.22067,52.03212],[-117.22366,52.03489],[-117.22594,52.03548],[-117.22702,52.03612],[-117.22791,52.03826],[-117.23207,52.04105],[-117.23618,52.0377],[-117.24051,52.03624],[-117.24439,52.03533],[-117.2481,52.03481],[-117.25033,52.03508],[-117.25203,52.03855],[-117.25692,52.04089],[-117.27055,52.04886],[-117.26848,52.05579],[-117.282,52.05962],[-117.28891,52.06367],[-117.29206,52.06426],[-117.29453,52.06518],[-117.29697,52.06864],[-117.30238,52.07173],[-117.30487,52.0743],[-117.30496,52.0755],[-117.30196,52.07755],[-117.29878,52.07775],[-117.29595,52.07929],[-117.29342,52.0823],[-117.29192,52.08531],[-117.29571,52.09095],[-117.29847,52.09427],[-117.31756,52.1941],[-117.32697,52.18985],[-117.33432,52.14854],[-117.3813,52.13772],[-117.5002,52.14425],[-117.50993,52.15779],[-117.52318,52.15821],[-117.61123,52.14424],[-117.62932,52.17475],[-117.66351,52.19785],[-117.74318,52.19399],[-117.74156,52.20311],[-117.81822,52.22611],[-117.82219,52.24634],[-117.83955,52.27413],[-117.79591,52.29265],[-117.77793,52.31889],[-117.75296,52.31644],[-117.723,52.35558],[-117.7049,52.3575],[-117.70585,52.36529],[-117.72966,52.38219],[-117.75875,52.41082],[-117.76657,52.41768],[-117.83995,52.42111],[-117.88699,52.4261],[-117.96691,52.46976],[-117.98785,52.50018],[-118.00335,52.49252],[-118.0132,52.48395],[-118.02185,52.47246],[-118.02055,52.46531],[-118.01856,52.45931],[-118.02127,52.45558],[-118.04207,52.45894],[-118.05068,52.45717],[-118.05285,52.4496],[-118.03659,52.44151],[-118.03045,52.43802],[-118.04068,52.41853],[-118.04421,52.39845],[-118.138,52.40751],[-118.14209,52.40237],[-118.15633,52.39618],[-118.16386,52.39376],[-118.17754,52.38592],[-118.18228,52.3828],[-118.17881,52.3795],[-118.17832,52.37516],[-118.18023,52.3727],[-118.20045,52.37265],[-118.21277,52.3703],[-118.2194,52.37418],[-118.22602,52.38032],[-118.2203,52.38504],[-118.21981,52.3918],[-118.22087,52.39757],[-118.2261,52.39946],[-118.23391,52.40292],[-118.24073,52.40293],[-118.2445,52.40806],[-118.24321,52.4125],[-118.23995,52.41767],[-118.23977,52.427],[-118.24277,52.43253],[-118.25135,52.43986],[-118.25375,52.44437],[-118.25538,52.4495],[-118.19344,52.47784],[-118.23553,52.49021],[-118.2737,52.52348],[-118.28921,52.53847],[-118.27281,52.56595],[-118.33267,52.58022],[-118.33409,52.59299],[-118.33363,52.60618],[-118.35245,52.61061],[-118.35454,52.63366],[-118.301,52.65409],[-118.29393,52.66828],[-118.29012,52.67769],[-118.34334,52.70892],[-118.34287,52.73856],[-118.39114,52.76041],[-118.42241,52.77577],[-118.41302,52.80596],[-118.39965,52.82442],[-118.40108,52.8405],[-118.40152,52.84048],[-118.40232,52.84258],[-118.39833,52.84444],[-118.39146,52.84547],[-118.387,52.84712],[-118.3889,52.8488],[-118.39573,52.8492],[-118.40308,52.85074],[-118.4208,52.85141],[-118.43131,52.85119],[-118.44443,52.85224],[-118.45255,52.85539],[-118.45838,52.85956],[-118.46103,52.8666],[-118.46119,52.86928],[-118.45596,52.87224],[-118.44935,52.87908],[-118.44857,52.88027],[-118.44827,52.88525],[-118.46231,52.89294],[-118.46577,52.89404],[-118.46931,52.8956],[-118.47052,52.89738],[-118.47667,52.90077],[-118.48569,52.90243],[-118.50033,52.90626],[-118.51085,52.90518],[-118.52223,52.89809],[-118.52928,52.90017],[-118.53538,52.90302],[-118.54371,52.90846],[-118.5533,52.90541],[-118.56194,52.90112],[-118.56501,52.89549],[-118.56955,52.88894],[-118.57536,52.88524],[-118.58633,52.88239],[-118.60812,52.87953],[-118.61392,52.88386],[-118.61426,52.90007],[-118.6067,52.90405],[-118.6203,52.91357],[-118.62094,52.91616],[-118.61346,52.93602],[-118.63844,52.95186],[-118.65136,52.95553],[-118.66019,52.96385],[-118.66105,52.97254],[-118.6712,52.97831],[-118.66984,52.98343],[-118.66166,52.98734],[-118.64928,52.99151],[-118.64902,53.0003],[-118.64085,52.99933],[-118.64714,53.01102],[-118.65266,53.01832],[-118.64977,53.02509],[-118.65528,53.0347],[-118.66876,53.04252],[-118.67969,53.04128],[-118.68569,53.03497],[-118.6959,53.03279],[-118.70055,53.04436],[-118.71054,53.05234],[-118.72631,53.0602],[-118.74614,53.05233],[-118.7564,53.04383],[-118.75901,53.03801],[-118.77626,53.04528],[-118.759,53.0658],[-118.76998,53.07438],[-118.75445,53.08279],[-118.7487,53.08826],[-118.74871,53.09724],[-118.73679,53.10633],[-118.7295,53.11542],[-118.73236,53.11924],[-118.7723,53.13295],[-118.77937,53.1387],[-118.78395,53.14486],[-118.7806,53.14771],[-118.77922,53.15098],[-118.78626,53.15906],[-118.7955,53.16306],[-118.80604,53.16536],[-118.81701,53.17163],[-118.82352,53.17301],[-118.8314,53.18304],[-118.84761,53.18577],[-118.86211,53.19098],[-118.87908,53.2057],[-118.90876,53.20948],[-118.91578,53.21182],[-118.92357,53.2252],[-118.93931,53.23354],[-118.94716,53.23879],[-118.95586,53.23634],[-118.96525,53.23677],[-118.97476,53.24173],[-118.98421,53.23885],[-119.02405,53.23187],[-119.02647,53.22642],[-119.01841,53.21944],[-118.99921,53.21276],[-118.99949,53.19292],[-119.00812,53.18646],[-119.01985,53.17013],[-119.02888,53.16422],[-118.9999,53.14855],[-119.02483,53.13459],[-119.02479,53.12669],[-119.048,53.12699],[-119.0469,53.14483],[-119.06866,53.15752],[-119.08871,53.16567],[-119.11954,53.16165],[-119.13136,53.17145],[-119.14113,53.18125],[-119.14624,53.19097],[-119.175,53.18469],[-119.19621,53.18541],[-119.21913,53.19415],[-119.23313,53.19363],[-119.23297,53.1818],[-119.24319,53.17835],[-119.25684,53.17675],[-119.25319,53.18481],[-119.25159,53.19905],[-119.26362,53.21382],[-119.28802,53.2401],[-119.29183,53.24992],[-119.3013,53.24983],[-119.30082,53.25631],[-119.32522,53.26976],[-119.33415,53.27885],[-119.34068,53.28712],[-119.32973,53.29637],[-119.35589,53.31237],[-119.34703,53.32632],[-119.35569,53.33997],[-119.39057,53.36062],[-119.40554,53.36796],[-119.41074,53.36525],[-119.4232,53.36268],[-119.43669,53.35765],[-119.44987,53.35657],[-119.45928,53.35712],[-119.4728,53.36024],[-119.48152,53.36316],[-119.4881,53.36373],[-119.50017,53.36266],[-119.50011,53.36625],[-119.51756,53.37006],[-119.52348,53.369],[-119.53351,53.3659],[-119.54895,53.36735],[-119.55839,53.36966],[-119.56611,53.37258],[-119.57812,53.37515],[-119.59022,53.38121],[-119.59854,53.38359],[-119.60453,53.38363],[-119.59753,53.36787],[-119.59872,53.36575],[-119.60404,53.36485],[-119.61159,53.36511],[-119.61912,53.36378],[-119.6239,53.35948],[-119.62541,53.36369],[-119.63149,53.36753],[-119.63756,53.36912],[-119.64513,53.36872],[-119.66404,53.36832],[-119.66888,53.36772],[-119.67668,53.37123],[-119.68041,53.37791],[-119.67968,53.38171],[-119.68327,53.38444],[-119.69544,53.39044],[-119.7009,53.38893],[-119.70876,53.38845],[-119.71711,53.38846],[-119.72547,53.38869],[-119.72569,53.39138],[-119.73103,53.40214],[-119.73614,53.40852],[-119.73936,53.41182],[-119.7516,53.42058],[-119.75835,53.42626],[-119.75999,53.43129],[-119.75845,53.43485],[-119.75674,53.4375],[-119.75813,53.44012],[-119.76268,53.4414],[-119.77153,53.44574],[-119.77329,53.44921],[-119.77368,53.45228],[-119.77553,53.4557],[-119.77961,53.46107],[-119.78099,53.46664],[-119.78374,53.47026],[-119.78778,53.47215],[-119.79079,53.47537],[-119.79059,53.4793],[-119.78781,53.48247],[-119.78218,53.48512],[-119.77928,53.48875],[-119.78037,53.49161],[-119.80033,53.50011],[-119.81274,53.50014],[-119.82996,53.51477],[-119.8331,53.51939],[-119.84054,53.5155],[-119.84661,53.51171],[-119.85019,53.50766],[-119.85385,53.49994],[-119.87022,53.49994],[-119.87554,53.50633],[-119.88336,53.51004],[-119.88982,53.51251],[-119.89947,53.519],[-119.90031,53.53301],[-119.89132,53.53571],[-119.88113,53.54127],[-119.87137,53.54418],[-119.86212,53.54852],[-119.86105,53.55657],[-119.86335,53.56162],[-119.86819,53.56716],[-119.8732,53.57146],[-119.88664,53.57636],[-119.89149,53.57779],[-119.89637,53.58152],[-119.89885,53.58576],[-119.90278,53.58996],[-119.90586,53.5968],[-119.91065,53.60121],[-119.91676,53.60339],[-119.92323,53.60537],[-119.93031,53.61046],[-119.92582,53.61457],[-119.91712,53.6167],[-119.90986,53.6177],[-119.90268,53.62017],[-119.89378,53.61953],[-119.88499,53.6176],[-119.87929,53.6168],[-119.86975,53.61386],[-119.86042,53.60964],[-119.85402,53.60772],[-119.84602,53.60789],[-119.83625,53.6091],[-119.82939,53.60903],[-119.81665,53.60408],[-119.80148,53.60425],[-119.79304,53.60235],[-119.78743,53.59882],[-119.7841,53.594],[-119.77626,53.59113],[-119.75921,53.59098],[-119.74863,53.59338],[-119.74349,53.59763],[-119.73954,53.60209],[-119.73408,53.60462],[-119.72262,53.60842],[-119.71487,53.61168],[-119.71336,53.61468],[-119.71681,53.61883],[-119.72164,53.62257],[-119.72639,53.62841],[-119.73255,53.632],[-119.73733,53.63701],[-119.73687,53.64402],[-119.73573,53.65031],[-119.73553,53.65661],[-119.73464,53.6632],[-119.7475,53.66436],[-119.75564,53.66496],[-119.7577,53.66834],[-119.76079,53.67158],[-119.76834,53.67499],[-119.77356,53.6797],[-119.77548,53.68287],[-119.77311,53.68558],[-119.77668,53.69023],[-119.77962,53.69287],[-119.78385,53.69529],[-119.78681,53.69921],[-119.78673,53.70135],[-119.78897,53.70346],[-119.79271,53.70598],[-119.79728,53.70776],[-119.80541,53.7065],[-119.81354,53.70463],[-119.82182,53.7006],[-119.8344,53.69708],[-119.83953,53.69737],[-119.84502,53.70234],[-119.84192,53.70796],[-119.84432,53.7147],[-119.85427,53.71351],[-119.86079,53.71537],[-119.87045,53.71477],[-119.88039,53.71267],[-119.88956,53.71052],[-119.9034,53.70983],[-119.90808,53.71064],[-119.91567,53.71727],[-119.91329,53.72036],[-119.90078,53.72306],[-119.89897,53.72602],[-119.8975,53.73059],[-119.90211,53.73843],[-119.8957,53.74488],[-119.88743,53.75003],[-119.89262,53.75743],[-119.88884,53.76209],[-119.88577,53.76841],[-119.88544,53.77524],[-119.8882,53.77943],[-119.94234,53.77584],[-119.95919,53.78107],[-119.97195,53.78891],[-119.98309,53.79705],[-119.97119,53.80172],[-119.97748,53.80538],[-120.00004,53.80621],[-120,60],[-85,60],[-80.87246,54.51586],[-79.77715,51.85142],[-79.71847,51.72978],[-79.65225,51.61789],[-79.58293,51.526],[-79.52149,51.46785],[-79.51567,51.46059],[-79.51786,51.20775],[-79.51902,51.08059],[-79.51744,50.95428],[-79.51796,50.72333],[-79.51764,50],[-79.51793,47.55568],[-79.588,47.44426],[-79.5798,47.41083],[-79.47545,47.29875],[-79.43426,47.26114],[-79.43359,47.18448],[-79.44527,47.09939],[-79.40785,47.0543],[-79.34846,47.00921],[-79.31516,46.93415],[-79.25593,46.88068],[-79.2228,46.84128],[-79.2101,46.83159],[-79.16856,46.82378],[-79.16101,46.81098],[-79.1229,46.74459],[-79.11895,46.73211],[-79.10427,46.71435],[-79.10301,46.70826],[-79.09694,46.70029],[-79.09335,46.68878],[-79.08607,46.68186],[-79.0735,46.66473],[-79.05793,46.65467],[-79.04068,46.64392],[-79.02274,46.63693],[-79.01516,46.62816],[-79.00777,46.60373],[-78.99591,46.59274],[-78.99709,46.56769],[-78.9866,46.54512],[-78.95553,46.51717],[-78.93948,46.5071],[-78.92948,46.49408],[-78.91262,46.47823],[-78.8903,46.46098],[-78.85837,46.44161],[-78.83309,46.43597],[-78.80267,46.42324],[-78.75885,46.39358],[-78.73274,46.38686],[-78.72242,46.3709],[-78.72765,46.34963],[-78.72911,46.34092],[-78.7113,46.32479],[-78.69279,46.31791],[-78.63855,46.32158],[-78.59736,46.31861],[-78.54855,46.30806],[-78.50591,46.29489],[-78.47151,46.29347],[-78.42376,46.29537],[-78.3815,46.28967],[-78.35002,46.26882],[-78.31305,46.25319],[-78.29763,46.25486],[-78.29113,46.25937],[-78.25685,46.27505],[-78.23802,46.27554],[-78.21713,46.27034],[-78.17518,46.27631],[-78.13323,46.2742],[-78.11463,46.26284],[-78.05589,46.24387],[-78.03871,46.24257],[-78.01879,46.24738],[-77.99269,46.24887],[-77.92226,46.22334],[-77.8946,46.22031],[-77.87244,46.21301],[-77.79133,46.19615],[-77.72708,46.19236],[-77.69554,46.18286],[-77.69313,46.18331],[-77.69123,46.184],[-77.68974,46.18481],[-77.68723,46.18765],[-77.68497,46.19073],[-77.68204,46.19678],[-77.67962,46.19927],[-77.6718,46.19791],[-77.62072,46.17563],[-77.59203,46.16815],[-77.38071,46.06554],[-77.35625,46.05711],[-77.31501,46.02823],[-77.27583,46.0139],[-77.28665,45.98617],[-77.27344,45.94224],[-77.23602,45.92054],[-77.23637,45.91509],[-77.19723,45.86931],[-77.12745,45.84325],[-77.07484,45.83345],[-77.05025,45.80773],[-77.02051,45.80762],[-76.98884,45.78635],[-76.94155,45.78926],[-76.91314,45.80319],[-76.92782,45.84714],[-76.92308,45.84934],[-76.90766,45.84722],[-76.90117,45.84987],[-76.91003,45.86352],[-76.91922,45.86688],[-76.92217,45.87146],[-76.92292,45.87667],[-76.93025,45.88865],[-76.92293,45.89528],[-76.89135,45.89835],[-76.87247,45.89259],[-76.84947,45.89424],[-76.79866,45.87496],[-76.77944,45.87261],[-76.76485,45.8503],[-76.76948,45.83167],[-76.76554,45.80825],[-76.77996,45.7895],[-76.78021,45.78277],[-76.77528,45.77432],[-76.77326,45.76527],[-76.76794,45.7547],[-76.77202,45.74919],[-76.76445,45.74727],[-76.77044,45.74164],[-76.7695,45.73331],[-76.75649,45.72711],[-76.75153,45.72449],[-76.73394,45.7227],[-76.7303,45.72097],[-76.71904,45.71926],[-76.70809,45.72176],[-76.7033,45.72134],[-76.70434,45.71753],[-76.69902,45.71192],[-76.69201,45.70916],[-76.69451,45.70358],[-76.69496,45.6992],[-76.68608,45.68553],[-76.69009,45.6794],[-76.69895,45.67562],[-76.7094,45.67265],[-76.71435,45.66705],[-76.68367,45.63285],[-76.66948,45.62481],[-76.67485,45.58526],[-76.67428,45.58159],[-76.65843,45.55905],[-76.64457,45.5524],[-76.6307,45.54383],[-76.6201,45.53971],[-76.60779,45.53246],[-76.5211,45.51742],[-76.42463,45.49276],[-76.39605,45.47155],[-76.3654,45.45636],[-76.33227,45.45246],[-76.29552,45.46525],[-76.24108,45.46937],[-76.23823,45.475],[-76.2364,45.50952],[-76.2036,45.51839],[-76.15183,45.51621],[-76.1035,45.52534],[-76.01539,45.48607],[-75.96004,45.46687],[-75.88635,45.39933],[-75.84951,45.37436],[-75.79928,45.37676],[-75.75903,45.41035],[-75.73598,45.41727],[-75.73052,45.41716],[-75.72137,45.41833],[-75.7212,45.4191],[-75.72164,45.41975],[-75.72148,45.42039],[-75.72065,45.42095],[-75.70506,45.4241],[-75.70025,45.4451],[-75.68668,45.45765],[-75.63913,45.46635],[-75.58286,45.4756],[-75.54375,45.48793],[-75.48299,45.51239],[-75.45261,45.52028],[-75.41949,45.52144],[-75.35016,45.53426],[-75.31481,45.54691],[-75.30005,45.55861],[-75.24309,45.58488],[-75.20361,45.5884],[-75.18457,45.57959],[-75.16689,45.57751],[-75.11771,45.57698],[-75.07677,45.58992],[-75.03446,45.59324],[-75.00506,45.60307],[-74.96359,45.62432],[-74.95315,45.6407],[-74.93145,45.64458],[-74.91044,45.64413],[-74.84001,45.63606],[-74.79294,45.6376],[-74.71496,45.62954],[-74.64385,45.63972],[-74.60175,45.61977],[-74.51753,45.5925],[-74.47863,45.59597],[-74.43378,45.57506],[-74.41162,45.57052],[-74.38457,45.56795],[-74.3819,45.56478],[-74.38866,45.54],[-74.39388,45.52279],[-74.41248,45.46559],[-74.42937,45.41669],[-74.43248,45.40977],[-74.43525,45.40238],[-74.44858,45.36611],[-74.4722,45.3027],[-74.43116,45.27204],[-74.40659,45.25322],[-74.32055,45.18693],[-74.34643,45.17219],[-74.3719,45.15695],[-74.43514,45.13154],[-74.49763,45.06283],[-74.54617,45.04438],[-74.58715,45.04194],[-74.64805,45.02179],[-74.66065,45.01487],[-74.66868,45.00445],[-74.67052,45.00626],[-74.67329,45.00081],[-74.68348,44.99949],[-74.70235,45.0033],[-74.72182,44.99843],[-74.73097,44.99046],[-74.74451,44.99066],[-74.76035,44.99501],[-74.76312,45.00572],[-74.79291,45.0044],[-74.79985,45.01078],[-74.80149,45.01455],[-74.81331,45.01353],[-74.8171,45.01159],[-74.82654,45.01586],[-74.83478,45.01464],[-74.84179,45.01129],[-74.84619,45.01028],[-74.85615,45.0045],[-74.86263,45.00454],[-74.86639,45.0005],[-74.87724,45.00142],[-74.88845,44.99997],[-74.90111,44.99252],[-74.90806,44.98351],[-74.94699,44.98486],[-74.9727,44.98345],[-74.99276,44.97752],[-74.99938,44.97168],[-74.99941,44.96611],[-75.00288,44.96243],[-75.00503,44.95841],[-75.02666,44.94663],[-75.05992,44.93446],[-75.0647,44.92949],[-75.09643,44.92706],[-75.1048,44.91964],[-75.11759,44.92108],[-75.13466,44.91506],[-75.14,44.89695],[-75.16496,44.89355],[-75.18888,44.88319],[-75.19418,44.88266],[-75.20291,44.87783],[-75.21836,44.87779],[-75.22815,44.8684],[-75.24103,44.86714],[-75.25603,44.85735],[-75.2683,44.85491],[-75.28486,44.8483],[-75.30742,44.83663],[-75.30189,44.82647],[-75.33356,44.80625],[-75.34442,44.80902],[-75.36959,44.78775],[-75.36995,44.78297],[-75.38787,44.77958],[-75.39653,44.7735],[-75.41373,44.77216],[-75.42364,44.75608],[-75.47612,44.72077],[-75.50492,44.70535],[-75.62003,44.61872],[-75.66134,44.59271],[-75.69934,44.56572],[-75.72028,44.54797],[-75.72331,44.54619],[-75.72586,44.54383],[-75.76692,44.51527],[-75.80759,44.47169],[-75.82139,44.43205],[-75.8699,44.39618],[-75.91284,44.3678],[-75.92167,44.36875],[-75.92953,44.3593],[-75.94084,44.35466],[-75.94973,44.34897],[-75.9702,44.34252],[-75.97292,44.34302],[-75.97503,44.346],[-75.97845,44.3465],[-75.98023,44.34602],[-75.98195,44.34747],[-75.98609,44.34688],[-75.98809,44.34719],[-75.99031,44.34713],[-75.99067,44.34708],[-75.99242,44.34733],[-76.00112,44.34786],[-76.00801,44.34419],[-76.04551,44.3318],[-76.09698,44.29972],[-76.11184,44.29808],[-76.1182,44.29491],[-76.12945,44.29513],[-76.13117,44.29638],[-76.16181,44.28072],[-76.16431,44.23983],[-76.19172,44.22141],[-76.20683,44.215],[-76.24548,44.20386],[-76.28667,44.2038],[-76.31273,44.19905],[-76.35287,44.13433],[-76.43895,44.09405],[-76.7967,43.63114],[-78.69039,43.63113],[-79.20067,43.45047],[-79.07039,43.26238],[-79.05595,43.25466],[-79.0547,43.24875],[-79.05581,43.23908],[-79.05306,43.22347],[-79.05659,43.2103],[-79.04873,43.20016],[-79.05273,43.18405],[-79.05334,43.17391],[-79.05109,43.16761],[-79.04667,43.16238],[-79.04498,43.15591],[-79.04426,43.15189],[-79.04287,43.14927],[-79.04234,43.14366],[-79.0437,43.13841],[-79.04953,43.13513],[-79.05259,43.13163],[-79.05414,43.12936],[-79.05712,43.12702],[-79.05945,43.12647],[-79.06967,43.12033],[-79.06259,43.11608],[-79.06014,43.11386],[-79.05867,43.11091],[-79.05792,43.10711],[-79.06623,43.09133],[-79.06981,43.08855],[-79.07539,43.08161],[-79.07411,43.07786],[-79.00742,43.06591],[-78.99967,43.056],[-79.00534,43.04725],[-79.01187,43.02916],[-79.02345,43.01627],[-79.0202,42.99483],[-79.0117,42.98527],[-78.97503,42.96877],[-78.96178,42.95786],[-78.93275,42.95602],[-78.91925,42.94708],[-78.90951,42.93369],[-78.90609,42.92374],[-78.90595,42.90027],[-78.9155,42.88127],[-78.91614,42.87864],[-78.9354,42.8283],[-80.07983,42.39355],[-80.51985,42.32337],[-80.519,40.6388],[-80.5446,40.63014],[-80.55439,40.62704],[-80.55972,40.62437],[-80.56367,40.62119],[-80.56625,40.61743],[-80.57982,40.61198],[-80.60082,40.6249],[-80.63321,40.61439],[-80.64569,40.60063],[-80.6664,40.58686],[-80.66389,40.57238],[-80.64478,40.55941],[-80.62424,40.52788],[-80.61465,40.49802],[-80.59408,40.47652],[-80.59741,40.45762],[-80.61257,40.43716],[-80.61246,40.40233],[-80.63183,40.39381],[-80.63283,40.38896],[-80.61813,40.38202],[-80.60583,40.37455],[-80.61152,40.34497],[-80.60364,40.33044],[-80.59919,40.31512],[-80.61574,40.28998],[-80.61723,40.26484],[-80.63961,40.25348],[-80.65546,40.24081],[-80.6672,40.19786],[-80.70327,40.15344],[-80.70715,40.13655],[-80.70691,40.10023],[-80.7319,40.08526],[-80.73863,40.07722],[-80.73692,40.06575],[-80.73332,40.05967],[-80.72921,40.04698],[-80.73819,40.01698],[-80.73898,39.97198],[-80.76306,39.95204],[-80.75382,39.91199],[-80.7614,39.90683],[-80.79465,39.91872],[-80.80421,39.91718],[-80.8093,39.90763],[-80.79002,39.87674],[-80.79098,39.86393],[-80.81579,39.85164],[-80.82543,39.84407],[-80.82205,39.8257],[-80.82039,39.80627],[-80.82804,39.79498],[-80.86385,39.77394],[-80.86911,39.76115],[-80.82904,39.71656],[-80.8315,39.70446],[-80.86451,39.69064],[-80.86564,39.66274],[-80.86967,39.63241],[-80.88447,39.61803],[-80.93052,39.61582],[-81.00242,39.56601],[-81.07966,39.5069],[-81.1306,39.4461],[-81.17984,39.43487],[-81.20987,39.40439],[-81.21141,39.3901],[-81.22156,39.38536],[-81.24408,39.38924],[-81.25959,39.38586],[-81.27224,39.38503],[-81.28142,39.37888],[-81.29669,39.37467],[-81.33256,39.35479],[-81.34789,39.34307],[-81.38021,39.34105],[-81.39426,39.3501],[-81.40161,39.3707],[-81.40858,39.38948],[-81.42654,39.40361],[-81.44289,39.40957],[-81.45615,39.40878],[-81.49653,39.37678],[-81.54653,39.3485],[-81.55672,39.33848],[-81.56279,39.31067],[-81.56429,39.27098],[-81.57637,39.26578],[-81.60372,39.2748],[-81.6265,39.27464],[-81.65348,39.27734],[-81.67909,39.27339],[-81.69432,39.25695],[-81.69048,39.22283],[-81.7282,39.21364],[-81.73821,39.19169],[-81.75218,39.1845],[-81.75523,39.17494],[-81.74524,39.14875],[-81.74208,39.11474],[-81.74356,39.09817],[-81.75734,39.08475],[-81.77696,39.07707],[-81.80506,39.08283],[-81.81291,39.08113],[-81.80937,39.05656],[-81.76172,39.01679],[-81.76519,39.00098],[-81.77242,38.99614],[-81.77586,38.98958],[-81.77621,38.98063],[-81.78109,38.96501],[-81.77786,38.95606],[-81.75609,38.93537],[-81.75785,38.92683],[-81.77007,38.92122],[-81.79304,38.92735],[-81.81223,38.9447],[-81.82653,38.94615],[-81.83671,38.93826],[-81.84414,38.92543],[-81.84744,38.89977],[-81.86297,38.88653],[-81.89086,38.87196],[-81.91197,38.87875],[-81.93102,38.89568],[-81.89872,38.93141],[-81.93626,38.99097],[-81.95037,38.99461],[-81.98061,38.99211],[-81.9888,39.01334],[-82.00213,39.02803],[-82.02216,39.02899],[-82.03842,39.02301],[-82.04928,38.99412],[-82.08932,38.97443],[-82.11018,38.93225],[-82.12417,38.91356],[-82.14194,38.89807],[-82.14487,38.88473],[-82.13784,38.86876],[-82.14231,38.84075],[-82.16301,38.82121],[-82.19229,38.81451],[-82.21909,38.79108],[-82.21875,38.77203],[-82.19781,38.75754],[-82.18168,38.70806],[-82.19096,38.68137],[-82.18315,38.65836],[-82.16865,38.62315],[-82.18016,38.59752],[-82.20661,38.58932],[-82.24885,38.59775],[-82.26894,38.59545],[-82.2911,38.57759],[-82.29269,38.54006],[-82.30148,38.52134],[-82.30187,38.49846],[-82.3158,38.4623],[-82.32423,38.44495],[-82.34699,38.43814],[-82.38555,38.43349],[-82.40568,38.43977],[-82.43076,38.43047],[-82.51728,38.40633],[-82.55417,38.40103],[-82.58343,38.40977],[-82.59571,38.42174],[-82.59729,38.41095],[-82.59442,38.39787],[-82.59811,38.3943],[-82.59948,38.39],[-82.5941,38.38202],[-82.59216,38.37672],[-82.59643,38.36721],[-82.59838,38.3507],[-82.59706,38.34387],[-82.5901,38.34113],[-82.58442,38.33421],[-82.57703,38.32864],[-82.57081,38.31578],[-82.57231,38.31251],[-82.57862,38.30466],[-82.58284,38.29718],[-82.57949,38.29151],[-82.57888,38.28275],[-82.57403,38.27534],[-82.57399,38.26415],[-82.58084,38.24864],[-82.58442,38.24549],[-82.59538,38.24503],[-82.60426,38.24735],[-82.60674,38.246],[-82.61214,38.23596],[-82.6087,38.22356],[-82.59797,38.21831],[-82.59882,38.19754],[-82.60419,38.18699],[-82.61153,38.1707],[-82.61863,38.16839],[-82.62513,38.17014],[-82.63813,38.17106],[-82.6426,38.16955],[-82.64433,38.16574],[-82.63834,38.15638],[-82.63797,38.14843],[-82.63725,38.14074],[-82.63598,38.13779],[-82.62109,38.13338],[-82.62085,38.123],[-82.61933,38.1208],[-82.60636,38.12107],[-82.59934,38.1172],[-82.59331,38.11117],[-82.58709,38.10864],[-82.58534,38.10709],[-82.5849,38.09909],[-82.58539,38.09548],[-82.58421,38.09097],[-82.58002,38.08794],[-82.57498,38.08289],[-82.57364,38.08183],[-82.56611,38.08131],[-82.56337,38.07823],[-82.5608,38.07412],[-82.55883,38.07258],[-82.55565,38.07184],[-82.55256,38.07157],[-82.55014,38.07026],[-82.54924,38.06855],[-82.54936,38.06323],[-82.54455,38.05928],[-82.54486,38.05521],[-82.54421,38.05306],[-82.54184,38.04888],[-82.53775,38.04569],[-82.53667,38.04465],[-82.53726,38.04251],[-82.53897,38.03978],[-82.53886,38.03816],[-82.53603,38.03343],[-82.53183,38.02964],[-82.52668,38.02744],[-82.52591,38.02673],[-82.52566,38.01911],[-82.52292,38.01364],[-82.5194,38.0083],[-82.5176,38.00744],[-82.51528,38.00685],[-82.51535,38.00474],[-82.51902,38.00223],[-82.51924,38.0018],[-82.51859,38.00085],[-82.51399,37.99924],[-82.5127,37.99956],[-82.50926,38.00184],[-82.50536,38.00098],[-82.5025,37.99961],[-82.50085,37.99911],[-82.48855,37.99919],[-82.48718,37.99792],[-82.4858,37.99603],[-82.4861,37.9928],[-82.48567,37.98852],[-82.48404,37.98398],[-82.48191,37.9838],[-82.47866,37.98538],[-82.47197,37.987],[-82.46623,37.98543],[-82.46405,37.98346],[-82.46428,37.97757],[-82.46509,37.97652],[-82.46641,37.97574],[-82.46742,37.97418],[-82.46928,37.97289],[-82.47222,37.97272],[-82.4762,37.97323],[-82.48158,37.97297],[-82.48417,37.97144],[-82.48484,37.96413],[-82.48373,37.96338],[-82.47747,37.96169],[-82.47297,37.96085],[-82.4713,37.95988],[-82.47148,37.95882],[-82.47304,37.95715],[-82.4747,37.95469],[-82.47864,37.95149],[-82.48218,37.94782],[-82.48645,37.94527],[-82.48805,37.94489],[-82.49573,37.94674],[-82.49757,37.94595],[-82.49775,37.94288],[-82.49513,37.94076],[-82.48939,37.93929],[-82.48931,37.93814],[-82.49004,37.93628],[-82.49142,37.93567],[-82.49417,37.93639],[-82.49663,37.93663],[-82.49904,37.93706],[-82.49981,37.93678],[-82.50179,37.93515],[-82.50249,37.93364],[-82.50177,37.93237],[-82.49839,37.92818],[-82.49576,37.92692],[-82.48501,37.92722],[-82.48121,37.9267],[-82.48008,37.92592],[-82.4804,37.92466],[-82.48521,37.92166],[-82.48842,37.9191],[-82.4879,37.91702],[-82.47963,37.91515],[-82.47522,37.91171],[-82.47398,37.90657],[-82.47625,37.90299],[-82.4758,37.90168],[-82.47465,37.90002],[-82.47243,37.89898],[-82.47133,37.89902],[-82.46819,37.90337],[-82.46889,37.90553],[-82.46856,37.9077],[-82.46923,37.91091],[-82.46826,37.91413],[-82.46562,37.91491],[-82.46314,37.91501],[-82.4617,37.91389],[-82.46102,37.91094],[-82.45985,37.9094],[-82.45224,37.9088],[-82.44914,37.90627],[-82.44775,37.90408],[-82.43764,37.89993],[-82.43483,37.89619],[-82.43306,37.8907],[-82.43043,37.88859],[-82.42285,37.88682],[-82.42102,37.88585],[-82.41945,37.88427],[-82.41889,37.87339],[-82.41707,37.86969],[-82.41387,37.86899],[-82.40964,37.86903],[-82.40764,37.86799],[-82.40726,37.86736],[-82.40904,37.86548],[-82.41028,37.8653],[-82.41581,37.86477],[-82.42233,37.8638],[-82.42403,37.86306],[-82.42452,37.8617],[-82.42416,37.86048],[-82.41815,37.85763],[-82.41454,37.8564],[-82.4151,37.8545],[-82.42046,37.84751],[-82.42024,37.84617],[-82.41247,37.84489],[-82.40968,37.83767],[-82.40806,37.83555],[-82.39932,37.82963],[-82.39868,37.82421],[-82.39795,37.82192],[-82.40031,37.81769],[-82.40229,37.81265],[-82.40199,37.81021],[-82.40068,37.8091],[-82.39831,37.80864],[-82.39689,37.8088],[-82.39459,37.81086],[-82.38933,37.81741],[-82.38741,37.81855],[-82.38581,37.81787],[-82.38319,37.81441],[-82.38,37.81143],[-82.37849,37.80815],[-82.37773,37.80369],[-82.37671,37.80228],[-82.37236,37.80204],[-82.36877,37.80133],[-82.3661,37.79887],[-82.36516,37.79677],[-82.3637,37.79486],[-82.36051,37.79422],[-82.35691,37.7939],[-82.35501,37.79352],[-82.3534,37.79209],[-82.35179,37.7904],[-82.34907,37.78694],[-82.34076,37.78619],[-82.34001,37.78584],[-82.33893,37.7836],[-82.33864,37.78134],[-82.3387,37.77922],[-82.33932,37.77796],[-82.33862,37.77606],[-82.33651,37.77464],[-82.33303,37.7741],[-82.33001,37.77571],[-82.3252,37.77604],[-82.32425,37.77555],[-82.32274,37.77302],[-82.32321,37.77218],[-82.32966,37.76917],[-82.33346,37.76724],[-82.33425,37.76553],[-82.33314,37.76441],[-82.32899,37.76226],[-82.32618,37.76244],[-82.32059,37.76486],[-82.31774,37.76557],[-82.31472,37.76566],[-82.3119,37.76448],[-82.31111,37.76311],[-82.3106,37.7624],[-82.31078,37.76155],[-82.31258,37.76088],[-82.31669,37.76021],[-82.31864,37.7595],[-82.32059,37.75743],[-82.32122,37.75344],[-82.32202,37.75109],[-82.32342,37.75039],[-82.32704,37.74949],[-82.33185,37.74471],[-82.33361,37.7435],[-82.33416,37.7427],[-82.33382,37.74142],[-82.32636,37.73587],[-82.32242,37.73507],[-82.31955,37.73439],[-82.31822,37.73317],[-82.31815,37.72978],[-82.31798,37.72771],[-82.31713,37.72686],[-82.31599,37.72102],[-82.31268,37.71959],[-82.31123,37.71824],[-82.31061,37.71294],[-82.30912,37.71207],[-82.30806,37.71029],[-82.30808,37.7085],[-82.30697,37.70741],[-82.30587,37.70665],[-82.30121,37.70624],[-82.29768,37.70385],[-82.29646,37.70229],[-82.29706,37.69991],[-82.29979,37.69815],[-82.30196,37.69628],[-82.30284,37.69476],[-82.3027,37.69289],[-82.30129,37.69066],[-82.29975,37.68978],[-82.29788,37.68774],[-82.29663,37.6874],[-82.29615,37.687],[-82.29604,37.68604],[-82.29713,37.68434],[-82.29949,37.6825],[-82.30438,37.678],[-82.3047,37.67647],[-82.30378,37.67567],[-82.30218,37.67562],[-82.29692,37.67808],[-82.29535,37.67843],[-82.29457,37.67789],[-82.29425,37.67345],[-82.29493,37.67157],[-82.29419,37.67003],[-82.29,37.6689],[-82.28786,37.6681],[-82.28583,37.67138],[-82.28442,37.67566],[-82.28355,37.67631],[-82.28173,37.67594],[-82.27813,37.67021],[-82.27469,37.66853],[-82.27186,37.66398],[-82.26461,37.66113],[-82.26038,37.65825],[-82.25813,37.65692],[-82.25316,37.6567],[-82.25084,37.65735],[-82.24679,37.65979],[-82.24102,37.66182],[-82.23945,37.66136],[-82.23785,37.66005],[-82.23617,37.65982],[-82.23394,37.65753],[-82.23403,37.65636],[-82.23309,37.6556],[-82.23017,37.65526],[-82.22588,37.65288],[-82.22543,37.65148],[-82.22542,37.64848],[-82.22455,37.64547],[-82.22331,37.64417],[-82.22031,37.64349],[-82.21662,37.64155],[-82.21668,37.64043],[-82.21847,37.637],[-82.22057,37.63482],[-82.21989,37.6336],[-82.21474,37.62748],[-82.21552,37.62605],[-82.21436,37.62535],[-82.20782,37.62541],[-82.2056,37.62547],[-82.2033,37.62608],[-82.20246,37.6274],[-82.20076,37.62805],[-82.19693,37.62676],[-82.19224,37.62578],[-82.18781,37.62671],[-82.1863,37.62763],[-82.18665,37.63391],[-82.18786,37.63859],[-82.18981,37.64044],[-82.1914,37.64476],[-82.18667,37.64842],[-82.18498,37.64888],[-82.17737,37.64893],[-82.1746,37.6477],[-82.17484,37.64584],[-82.17647,37.64367],[-82.17758,37.64123],[-82.17684,37.63933],[-82.17431,37.63566],[-82.17228,37.63394],[-82.17232,37.63187],[-82.17611,37.62946],[-82.17989,37.62793],[-82.18137,37.62684],[-82.18236,37.62528],[-82.1825,37.62372],[-82.18085,37.62145],[-82.17835,37.61972],[-82.17674,37.6182],[-82.17353,37.61952],[-82.16946,37.62199],[-82.16709,37.62185],[-82.16368,37.62008],[-82.16922,37.613],[-82.16828,37.60864],[-82.1673,37.60805],[-82.16502,37.60779],[-82.15768,37.60973],[-82.15635,37.60881],[-82.1561,37.60481],[-82.157,37.60312],[-82.15667,37.60105],[-82.15763,37.59661],[-82.1572,37.59327],[-82.15618,37.59231],[-82.14852,37.59098],[-82.14566,37.59285],[-82.14134,37.59518],[-82.13322,37.59346],[-82.13188,37.59337],[-82.12997,37.59091],[-82.12891,37.58845],[-82.12697,37.58641],[-82.12639,37.58227],[-82.12555,37.57907],[-82.12425,37.57818],[-82.12433,37.57647],[-82.12569,37.57414],[-82.12821,37.57226],[-82.1416,37.5711],[-82.1433,37.5704],[-82.14434,37.56976],[-82.14477,37.56668],[-82.13907,37.565],[-82.13514,37.56371],[-82.13362,37.56195],[-82.13344,37.56026],[-82.13433,37.55829],[-82.13471,37.55715],[-82.13462,37.55577],[-82.13354,37.55323],[-82.12947,37.55164],[-82.12479,37.55108],[-82.12278,37.55191],[-82.12126,37.55457],[-82.1206,37.55701],[-82.1191,37.55824],[-82.11738,37.55934],[-82.11661,37.5596],[-82.11095,37.55881],[-82.10467,37.56031],[-82.10256,37.55984],[-82.10185,37.55814],[-82.10428,37.55569],[-82.1054,37.55407],[-82.10448,37.55317],[-82.10067,37.55302],[-82.09863,37.55339],[-82.09591,37.55431],[-82.09205,37.5549],[-82.08955,37.55592],[-82.08822,37.55605],[-82.08731,37.55573],[-82.08456,37.55534],[-82.08138,37.55538],[-82.07951,37.55576],[-82.07611,37.55601],[-82.07393,37.55541],[-82.07263,37.55398],[-82.07207,37.55136],[-82.07105,37.55063],[-82.06824,37.54895],[-82.06347,37.54301],[-82.06349,37.54174],[-82.06509,37.53835],[-82.06404,37.53634],[-82.06201,37.53572],[-82.06016,37.53621],[-82.05741,37.53688],[-82.05462,37.53669],[-82.05155,37.53588],[-82.04942,37.53514],[-82.04823,37.53369],[-82.04858,37.53061],[-82.04818,37.52886],[-82.04641,37.52804],[-82.04515,37.52841],[-82.04407,37.52919],[-82.04221,37.5347],[-82.04241,37.53613],[-82.04418,37.5399],[-82.04528,37.54414],[-82.0448,37.54712],[-82.04302,37.54824],[-82.04068,37.54841],[-82.03863,37.54769],[-82.03713,37.54287],[-82.03619,37.54214],[-82.0338,37.54148],[-82.029,37.5378],[-82.02831,37.53742],[-82.02567,37.53814],[-82.01959,37.54091],[-82.01703,37.53899],[-82.01618,37.53401],[-82.01071,37.53296],[-82.00698,37.53354],[-82.00152,37.54064],[-82.00024,37.54256],[-81.99742,37.54338],[-81.99638,37.5418],[-81.99688,37.53845],[-81.99444,37.53774],[-81.9923,37.53843],[-81.98931,37.54279],[-81.98708,37.5432],[-81.98211,37.54184],[-81.97984,37.54318],[-81.97671,37.54555],[-81.9701,37.54688],[-81.96465,37.54315],[-81.96518,37.54129],[-81.96795,37.53793],[-82.05082,37.48061],[-82.06333,37.47048],[-82.09061,37.45117],[-82.13352,37.42124],[-82.17823,37.39096],[-82.20187,37.37501],[-82.20267,37.37404],[-82.22097,37.36128],[-82.2302,37.35469],[-82.24982,37.34107],[-82.25388,37.33806],[-82.26403,37.33105],[-82.28723,37.3149],[-82.28921,37.31357],[-82.29041,37.3129],[-82.29192,37.31163],[-82.30889,37.30041],[-82.30941,37.30005],[-82.31043,37.29896],[-82.31603,37.29487],[-82.31622,37.29418],[-82.31636,37.29391],[-82.31709,37.29365],[-82.31725,37.293],[-82.31713,37.29258],[-82.31737,37.29141],[-82.31741,37.29097],[-82.31799,37.28994],[-82.31858,37.28969],[-82.31879,37.28918],[-82.31872,37.28842],[-82.31896,37.28752],[-82.31976,37.28679],[-82.32094,37.28608],[-82.32214,37.2856],[-82.32382,37.28429],[-82.32407,37.28365],[-82.32461,37.28319],[-82.32493,37.28305],[-82.3254,37.28316],[-82.32683,37.28289],[-82.32751,37.28303],[-82.32848,37.28272],[-82.33,37.28253],[-82.33111,37.28217],[-82.33158,37.28221],[-82.33187,37.28198],[-82.33217,37.28163],[-82.33266,37.28152],[-82.33342,37.28146],[-82.33387,37.28126],[-82.33457,37.28131],[-82.33522,37.28164],[-82.33595,37.28166],[-82.3365,37.28133],[-82.33649,37.28069],[-82.33638,37.28006],[-82.33694,37.27972],[-82.33869,37.28014],[-82.33961,37.28046],[-82.33996,37.28108],[-82.34187,37.28088],[-82.34223,37.28114],[-82.34243,37.28143],[-82.34311,37.2812],[-82.34356,37.2809],[-82.3437,37.27992],[-82.34387,37.27959],[-82.34361,37.27902],[-82.34271,37.27802],[-82.34269,37.27771],[-82.34296,37.27706],[-82.34221,37.27563],[-82.34224,37.27516],[-82.34197,37.27464],[-82.3421,37.27414],[-82.34267,37.27352],[-82.34364,37.27326],[-82.34431,37.27335],[-82.34563,37.27266],[-82.34674,37.27272],[-82.34794,37.27238],[-82.34901,37.27173],[-82.34909,37.27152],[-82.34878,37.27107],[-82.34872,37.27051],[-82.3489,37.27018],[-82.3493,37.27003],[-82.34871,37.26945],[-82.34895,37.26867],[-82.34855,37.26832],[-82.3487,37.26819],[-82.34942,37.26811],[-82.35095,37.26707],[-82.3513,37.26708],[-82.35148,37.26678],[-82.35446,37.26598],[-82.35533,37.26521],[-82.35719,37.2651],[-82.35838,37.26489],[-82.35936,37.26503],[-82.36229,37.26474],[-82.36308,37.26445],[-82.36461,37.26436],[-82.365,37.26421],[-82.36555,37.26362],[-82.36591,37.26353],[-82.36636,37.26305],[-82.36762,37.26274],[-82.36832,37.26236],[-82.36975,37.26252],[-82.37069,37.26215],[-82.37132,37.26177],[-82.37172,37.26178],[-82.37306,37.26129],[-82.37483,37.26038],[-82.37695,37.25981],[-82.3774,37.26001],[-82.37857,37.26008],[-82.37901,37.25983],[-82.38104,37.25997],[-82.3822,37.25995],[-82.3833,37.26011],[-82.38375,37.26],[-82.38394,37.25962],[-82.38469,37.25946],[-82.38552,37.25968],[-82.38666,37.25895],[-82.38856,37.25902],[-82.38912,37.2585],[-82.38995,37.25811],[-82.39099,37.25807],[-82.39238,37.25797],[-82.39318,37.25729],[-82.39469,37.2573],[-82.39545,37.25696],[-82.39672,37.25662],[-82.3973,37.25614],[-82.39849,37.25546],[-82.39974,37.25557],[-82.40049,37.25555],[-82.40151,37.25518],[-82.40253,37.25494],[-82.40293,37.25468],[-82.40379,37.25481],[-82.40473,37.25441],[-82.4054,37.25442],[-82.40667,37.25362],[-82.4074,37.25365],[-82.40809,37.25317],[-82.41036,37.25313],[-82.4115,37.2536],[-82.41186,37.25351],[-82.41259,37.25276],[-82.41309,37.25276],[-82.4135,37.25236],[-82.41496,37.25202],[-82.4171,37.25182],[-82.41804,37.25138],[-82.41871,37.25081],[-82.41955,37.25061],[-82.42234,37.24961],[-82.42296,37.24911],[-82.42453,37.24881],[-82.42629,37.2489],[-82.42764,37.24791],[-82.42924,37.24719],[-82.43099,37.24677],[-82.43303,37.24663],[-82.43471,37.24682],[-82.4357,37.24648],[-82.43615,37.24662],[-82.43695,37.2473],[-82.43821,37.24694],[-82.43967,37.24711],[-82.43995,37.2469],[-82.44005,37.24631],[-82.44141,37.24579],[-82.44254,37.245],[-82.44273,37.24478],[-82.44267,37.24436],[-82.44302,37.24348],[-82.44381,37.24321],[-82.44496,37.24341],[-82.44555,37.24429],[-82.44607,37.24431],[-82.44706,37.24392],[-82.44762,37.24431],[-82.44805,37.24425],[-82.44824,37.24391],[-82.44851,37.24384],[-82.44911,37.24392],[-82.45078,37.24315],[-82.4512,37.24278],[-82.45197,37.24255],[-82.45243,37.24215],[-82.4525,37.24161],[-82.45304,37.24098],[-82.45406,37.24064],[-82.45468,37.24064],[-82.45539,37.24026],[-82.45548,37.23967],[-82.4556,37.23946],[-82.45676,37.23906],[-82.45701,37.23828],[-82.45775,37.23806],[-82.45865,37.23821],[-82.45981,37.23871],[-82.46016,37.2388],[-82.46117,37.23848],[-82.46192,37.23864],[-82.46274,37.23856],[-82.46313,37.23826],[-82.46329,37.23772],[-82.46461,37.23578],[-82.46519,37.23556],[-82.46671,37.23591],[-82.46763,37.2363],[-82.46841,37.23613],[-82.46899,37.23534],[-82.46953,37.23513],[-82.47031,37.23559],[-82.47119,37.23532],[-82.47161,37.23577],[-82.4722,37.23584],[-82.4733,37.23557],[-82.4747,37.23482],[-82.47559,37.23475],[-82.47653,37.23451],[-82.47733,37.23418],[-82.47801,37.23406],[-82.47872,37.23367],[-82.48012,37.23324],[-82.48101,37.23245],[-82.48347,37.23183],[-82.48416,37.23192],[-82.48569,37.23122],[-82.48648,37.23118],[-82.48729,37.2306],[-82.4873,37.23033],[-82.48658,37.22999],[-82.48662,37.22965],[-82.48704,37.22934],[-82.48723,37.22781],[-82.48836,37.22693],[-82.48969,37.22685],[-82.4911,37.2252],[-82.49204,37.22506],[-82.49383,37.2254],[-82.49471,37.22532],[-82.49523,37.22558],[-82.49596,37.22745],[-82.49641,37.22755],[-82.49694,37.22752],[-82.49716,37.22722],[-82.49884,37.22705],[-82.49976,37.22612],[-82.50059,37.22576],[-82.50092,37.22544],[-82.50147,37.22526],[-82.50193,37.22529],[-82.50301,37.22473],[-82.50358,37.22485],[-82.50407,37.22464],[-82.50427,37.22426],[-82.50505,37.22385],[-82.50586,37.22367],[-82.50628,37.22324],[-82.50789,37.22272],[-82.50834,37.22236],[-82.50808,37.22106],[-82.5082,37.22064],[-82.50892,37.2203],[-82.5091,37.2198],[-82.50937,37.21883],[-82.51092,37.21809],[-82.51205,37.21783],[-82.51263,37.2173],[-82.51348,37.21677],[-82.51454,37.21686],[-82.51517,37.21653],[-82.51566,37.21573],[-82.51702,37.21432],[-82.51819,37.21389],[-82.51919,37.21325],[-82.52007,37.21293],[-82.52051,37.21219],[-82.52112,37.21193],[-82.52276,37.21266],[-82.52328,37.21339],[-82.52311,37.21415],[-82.52329,37.2145],[-82.52405,37.21455],[-82.52455,37.21494],[-82.52532,37.21465],[-82.52575,37.21463],[-82.52867,37.21376],[-82.52931,37.21328],[-82.53021,37.21308],[-82.53192,37.21198],[-82.53174,37.21132],[-82.5321,37.21103],[-82.53186,37.21045],[-82.53194,37.20993],[-82.53158,37.20906],[-82.53053,37.20835],[-82.53165,37.20775],[-82.5326,37.20661],[-82.53339,37.20641],[-82.53488,37.20655],[-82.53544,37.20693],[-82.53656,37.20679],[-82.537,37.20721],[-82.53746,37.20665],[-82.53835,37.20651],[-82.53919,37.20703],[-82.54051,37.20651],[-82.54132,37.20653],[-82.54213,37.20539],[-82.54328,37.20527],[-82.5433,37.20486],[-82.54511,37.20335],[-82.54583,37.20308],[-82.54701,37.20357],[-82.54731,37.20354],[-82.54909,37.20271],[-82.54962,37.20364],[-82.54972,37.20431],[-82.55009,37.20447],[-82.55112,37.20412],[-82.55155,37.20356],[-82.55293,37.20299],[-82.55336,37.20308],[-82.55397,37.20278],[-82.55518,37.20171],[-82.55683,37.20085],[-82.55716,37.20026],[-82.55818,37.19952],[-82.55919,37.19956],[-82.55988,37.1989],[-82.56023,37.19893],[-82.56144,37.19809],[-82.56214,37.19779],[-82.56269,37.19726],[-82.56344,37.19721],[-82.56462,37.19619],[-82.56521,37.19628],[-82.56575,37.19554],[-82.56646,37.19548],[-82.56793,37.19442],[-82.56974,37.19348],[-82.57025,37.19307],[-82.5742,37.19116],[-82.57479,37.19042],[-82.57573,37.19016],[-82.57667,37.1902],[-82.57736,37.18971],[-82.57779,37.18922],[-82.57891,37.18852],[-82.58124,37.1878],[-82.58194,37.18731],[-82.58281,37.18704],[-82.58308,37.18676],[-82.58418,37.18661],[-82.58494,37.18612],[-82.58582,37.18614],[-82.58697,37.18548],[-82.58828,37.18448],[-82.58954,37.18432],[-82.59007,37.18379],[-82.59128,37.18352],[-82.59249,37.18291],[-82.59266,37.18231],[-82.5931,37.18234],[-82.59315,37.18195],[-82.59277,37.1804],[-82.59396,37.17958],[-82.59507,37.17849],[-82.59642,37.17801],[-82.59777,37.17689],[-82.60006,37.17658],[-82.60103,37.17597],[-82.60234,37.17543],[-82.60324,37.1755],[-82.60419,37.17452],[-82.60532,37.17409],[-82.60645,37.17404],[-82.6069,37.17311],[-82.60751,37.17295],[-82.60821,37.173],[-82.60911,37.17233],[-82.60984,37.17193],[-82.61036,37.17146],[-82.61122,37.17106],[-82.61195,37.16996],[-82.61432,37.16961],[-82.61516,37.16893],[-82.61643,37.1688],[-82.61955,37.16676],[-82.62084,37.16642],[-82.62158,37.16563],[-82.62369,37.16437],[-82.62462,37.16332],[-82.63001,37.15763],[-82.63093,37.15699],[-82.63202,37.15614],[-82.63342,37.15431],[-82.63407,37.15405],[-82.63469,37.15428],[-82.63728,37.15416],[-82.63955,37.15365],[-82.64022,37.15373],[-82.64094,37.15319],[-82.64312,37.153],[-82.64482,37.1522],[-82.64489,37.15127],[-82.64506,37.15102],[-82.64574,37.1507],[-82.64633,37.15089],[-82.64699,37.15033],[-82.64842,37.15026],[-82.64983,37.15126],[-82.6498,37.15178],[-82.65019,37.15212],[-82.65073,37.15188],[-82.65171,37.15192],[-82.65213,37.15148],[-82.65324,37.15131],[-82.65383,37.15084],[-82.65475,37.15064],[-82.65506,37.14882],[-82.65571,37.14706],[-82.65645,37.1466],[-82.65594,37.14551],[-82.65689,37.14476],[-82.65741,37.14505],[-82.65861,37.14473],[-82.66024,37.1442],[-82.66118,37.14415],[-82.66186,37.14431],[-82.6625,37.14384],[-82.66322,37.14398],[-82.66389,37.14352],[-82.66402,37.14253],[-82.66556,37.14254],[-82.66707,37.14198],[-82.66755,37.14197],[-82.6686,37.14115],[-82.66897,37.14101],[-82.6704,37.13938],[-82.67088,37.13918],[-82.67152,37.13837],[-82.67247,37.138],[-82.67341,37.13821],[-82.67384,37.13801],[-82.67347,37.13747],[-82.67336,37.13679],[-82.67426,37.13676],[-82.67468,37.13595],[-82.67639,37.13566],[-82.6768,37.13497],[-82.67878,37.13519],[-82.67957,37.13567],[-82.68078,37.13719],[-82.68123,37.13693],[-82.68219,37.13736],[-82.68309,37.13695],[-82.68353,37.13661],[-82.68406,37.13586],[-82.68499,37.13577],[-82.68534,37.1354],[-82.68681,37.13448],[-82.68735,37.13463],[-82.68808,37.13376],[-82.6889,37.13391],[-82.6902,37.13365],[-82.69309,37.13287],[-82.69399,37.13238],[-82.69497,37.13217],[-82.69547,37.13188],[-82.69576,37.13151],[-82.69708,37.13067],[-82.69831,37.13044],[-82.69947,37.12948],[-82.70016,37.1294],[-82.70153,37.1285],[-82.70463,37.12835],[-82.70531,37.12793],[-82.70539,37.1271],[-82.70615,37.12647],[-82.70682,37.12644],[-82.70789,37.12548],[-82.70876,37.1251],[-82.70996,37.12507],[-82.71138,37.12421],[-82.7122,37.12403],[-82.71358,37.1231],[-82.71393,37.12252],[-82.71525,37.12168],[-82.71643,37.1221],[-82.71821,37.12233],[-82.71861,37.12159],[-82.72098,37.12099],[-82.72219,37.12008],[-82.72263,37.11931],[-82.72362,37.11863],[-82.72426,37.11737],[-82.72545,37.11677],[-82.72628,37.1159],[-82.72628,37.11511],[-82.72688,37.1148],[-82.72645,37.11395],[-82.72628,37.1118],[-82.72398,37.10905],[-82.72397,37.10831],[-82.72336,37.10732],[-82.72211,37.10608],[-82.72189,37.10524],[-82.72332,37.10376],[-82.72331,37.10323],[-82.72206,37.10206],[-82.7216,37.10124],[-82.72177,37.10003],[-82.72159,37.09875],[-82.72197,37.09749],[-82.72246,37.09673],[-82.72192,37.09501],[-82.72228,37.09433],[-82.72289,37.09365],[-82.72441,37.09296],[-82.72481,37.09255],[-82.72494,37.09181],[-82.72329,37.09041],[-82.72285,37.08984],[-82.72347,37.08873],[-82.72346,37.08797],[-82.72319,37.08714],[-82.72307,37.085],[-82.72277,37.08473],[-82.72189,37.08452],[-82.72175,37.08428],[-82.72067,37.0837],[-82.72085,37.08219],[-82.72068,37.08187],[-82.71806,37.08062],[-82.71723,37.07948],[-82.71703,37.07836],[-82.71657,37.07725],[-82.71725,37.07692],[-82.71767,37.07646],[-82.71835,37.07568],[-82.71983,37.07593],[-82.72182,37.07515],[-82.72338,37.07559],[-82.72392,37.07544],[-82.72515,37.07418],[-82.72707,37.07306],[-82.72648,37.07179],[-82.72626,37.07116],[-82.7263,37.07052],[-82.72579,37.0698],[-82.72581,37.06862],[-82.72635,37.06696],[-82.72594,37.06659],[-82.72552,37.06515],[-82.72465,37.06382],[-82.72415,37.06338],[-82.72391,37.06254],[-82.72297,37.06191],[-82.72302,37.06103],[-82.72272,37.06022],[-82.72324,37.05937],[-82.72285,37.05861],[-82.7223,37.05784],[-82.723,37.05599],[-82.72327,37.05427],[-82.72321,37.05159],[-82.72282,37.0492],[-82.72329,37.04764],[-82.72289,37.04614],[-82.72241,37.04512],[-82.72368,37.04424],[-82.72469,37.04274],[-82.7262,37.042],[-82.72689,37.04213],[-82.72835,37.04281],[-82.72964,37.04258],[-82.73132,37.0435],[-82.73266,37.04326],[-82.73361,37.04463],[-82.73463,37.04438],[-82.736,37.04387],[-82.73719,37.04407],[-82.73971,37.04334],[-82.74084,37.04274],[-82.7424,37.04289],[-82.74366,37.04138],[-82.7438,37.04024],[-82.74369,37.03767],[-82.74391,37.03656],[-82.74448,37.03565],[-82.74475,37.03472],[-82.74581,37.03394],[-82.74518,37.03177],[-82.7455,37.02994],[-82.74648,37.0282],[-82.74741,37.02735],[-82.74783,37.0263],[-82.74797,37.02509],[-82.74781,37.02447],[-82.74899,37.02367],[-82.75016,37.02321],[-82.75078,37.02414],[-82.75123,37.02446],[-82.75178,37.02557],[-82.7546,37.02677],[-82.7581,37.02727],[-82.75921,37.02731],[-82.76028,37.02662],[-82.76119,37.02628],[-82.76231,37.02468],[-82.7649,37.02425],[-82.76574,37.0233],[-82.76639,37.02311],[-82.76706,37.02084],[-82.7695,37.01958],[-82.76945,37.01855],[-82.77008,37.01765],[-82.771,37.01723],[-82.77162,37.01644],[-82.7719,37.01565],[-82.77465,37.01529],[-82.77696,37.01593],[-82.7773,37.01596],[-82.77738,37.01466],[-82.77839,37.01397],[-82.77828,37.01259],[-82.77907,37.012],[-82.78045,37.01072],[-82.78166,37.0097],[-82.78157,37.00872],[-82.78259,37.00808],[-82.78344,37.0079],[-82.78422,37.00825],[-82.785,37.00798],[-82.78699,37.00871],[-82.78845,37.00861],[-82.78908,37.00804],[-82.78953,37.00796],[-82.79051,37.00703],[-82.79111,37.00637],[-82.79283,37.00601],[-82.79334,37.00544],[-82.79483,37.00587],[-82.79598,37.00705],[-82.79611,37.00845],[-82.7975,37.00967],[-82.7981,37.00936],[-82.79955,37.00823],[-82.80487,37.00714],[-82.80675,37.00722],[-82.80769,37.00683],[-82.81025,37.00713],[-82.81098,37.00684],[-82.81299,37.00532],[-82.81396,37.00536],[-82.81544,37.00706],[-82.81622,37.00766],[-82.81714,37.00712],[-82.81674,37.00618],[-82.81745,37.00568],[-82.81855,37.0064],[-82.81968,37.00623],[-82.82061,37.00571],[-82.82204,37.00422],[-82.82277,37.00413],[-82.82354,37.0045],[-82.82436,37.00585],[-82.82526,37.00645],[-82.82852,37.00582],[-82.82903,37.00452],[-82.82989,37.0037],[-82.83066,37.00097],[-82.8301,36.99995],[-82.82931,36.9993],[-82.82894,36.99797],[-82.82936,36.9964],[-82.83011,36.99545],[-82.82999,36.99424],[-82.8304,36.99372],[-82.83142,36.99348],[-82.83232,36.99272],[-82.8326,36.9921],[-82.83425,36.99195],[-82.83547,36.99112],[-82.83567,36.98912],[-82.83625,36.98867],[-82.83641,36.98793],[-82.83691,36.9874],[-82.83791,36.98693],[-82.84079,36.98717],[-82.84223,36.98598],[-82.84333,36.98554],[-82.84428,36.98395],[-82.84515,36.98379],[-82.84675,36.98412],[-82.84757,36.98398],[-82.84934,36.98341],[-82.85018,36.98373],[-82.85102,36.98453],[-82.85365,36.98524],[-82.85485,36.98372],[-82.85653,36.982],[-82.8564,36.98103],[-82.85672,36.98013],[-82.85713,36.97978],[-82.85673,36.97897],[-82.8578,36.97857],[-82.85812,36.97818],[-82.8596,36.97872],[-82.85996,36.97856],[-82.8604,36.9781],[-82.8619,36.98001],[-82.86246,36.98035],[-82.86502,36.97903],[-82.86552,36.97827],[-82.86659,36.97811],[-82.86738,36.9782],[-82.86749,36.97773],[-82.86872,36.97617],[-82.86862,36.97505],[-82.86922,36.97422],[-82.86956,36.97318],[-82.86934,36.97232],[-82.86859,36.97182],[-82.86843,36.97132],[-82.86879,36.97076],[-82.86872,36.96931],[-82.87079,36.96896],[-82.87124,36.96833],[-82.87125,36.96771],[-82.87029,36.96717],[-82.86998,36.96615],[-82.87021,36.9653],[-82.87019,36.96479],[-82.86755,36.96424],[-82.86714,36.96386],[-82.86732,36.96312],[-82.86689,36.96263],[-82.86681,36.96159],[-82.8657,36.9612],[-82.86553,36.96032],[-82.86592,36.9594],[-82.86579,36.95848],[-82.86471,36.95813],[-82.86278,36.9582],[-82.8627,36.95744],[-82.86154,36.95737],[-82.86109,36.95668],[-82.86039,36.956],[-82.85927,36.9556],[-82.85867,36.9541],[-82.85824,36.95391],[-82.85673,36.95372],[-82.85566,36.95442],[-82.85565,36.95314],[-82.85957,36.94964],[-82.8603,36.94867],[-82.86016,36.94771],[-82.86076,36.94557],[-82.86144,36.94474],[-82.86178,36.94398],[-82.86158,36.94298],[-82.86179,36.94181],[-82.8622,36.94119],[-82.86153,36.93922],[-82.86104,36.93857],[-82.86055,36.93812],[-82.86048,36.93749],[-82.86027,36.93731],[-82.86041,36.93672],[-82.86,36.93388],[-82.85895,36.93341],[-82.85825,36.93252],[-82.85824,36.93095],[-82.85772,36.92862],[-82.85879,36.9276],[-82.8591,36.92707],[-82.85966,36.92619],[-82.85997,36.92532],[-82.86126,36.92468],[-82.86169,36.92432],[-82.86205,36.92421],[-82.86328,36.92331],[-82.86345,36.92205],[-82.86454,36.92186],[-82.86508,36.92133],[-82.86518,36.92087],[-82.8663,36.91947],[-82.86733,36.91883],[-82.86702,36.91769],[-82.86748,36.91696],[-82.86944,36.91664],[-82.86969,36.91646],[-82.87093,36.91525],[-82.87085,36.91462],[-82.87128,36.91375],[-82.87179,36.91342],[-82.87231,36.91344],[-82.87359,36.91264],[-82.87391,36.91176],[-82.87475,36.91108],[-82.87608,36.91028],[-82.87744,36.90845],[-82.87751,36.90785],[-82.8763,36.90711],[-82.87534,36.90692],[-82.87426,36.90603],[-82.87335,36.90418],[-82.87244,36.90329],[-82.87114,36.90288],[-82.86998,36.90166],[-82.86818,36.90129],[-82.86792,36.89976],[-82.86836,36.89935],[-82.86988,36.89828],[-82.87055,36.89769],[-82.87129,36.89754],[-82.87225,36.89746],[-82.87498,36.89683],[-82.87641,36.89624],[-82.87725,36.89575],[-82.87862,36.89398],[-82.87854,36.89349],[-82.87782,36.89161],[-82.87857,36.88955],[-82.8795,36.88908],[-82.88217,36.88888],[-82.88457,36.88848],[-82.88531,36.88792],[-82.88634,36.88752],[-82.88765,36.88687],[-82.88835,36.88611],[-82.88904,36.88508],[-82.88996,36.88431],[-82.89099,36.88371],[-82.89217,36.88352],[-82.89377,36.88346],[-82.89423,36.88318],[-82.89491,36.88249],[-82.89537,36.88215],[-82.89593,36.88206],[-82.89665,36.88185],[-82.89762,36.88192],[-82.89871,36.88188],[-82.90067,36.88166],[-82.90134,36.881],[-82.90198,36.88069],[-82.90489,36.87991],[-82.90632,36.87973],[-82.90755,36.87916],[-82.90797,36.8787],[-82.90794,36.87832],[-82.90813,36.8777],[-82.90803,36.87722],[-82.90725,36.87567],[-82.90743,36.8751],[-82.90778,36.8747],[-82.9082,36.87464],[-82.9094,36.87458],[-82.9102,36.87407],[-82.91209,36.87429],[-82.91328,36.87428],[-82.91455,36.87392],[-82.91613,36.87386],[-82.91756,36.8735],[-82.91854,36.87368],[-82.91995,36.87369],[-82.92084,36.87337],[-82.92157,36.87357],[-82.92241,36.8739],[-82.92384,36.87328],[-82.92434,36.87287],[-82.92484,36.87277],[-82.92515,36.87243],[-82.92533,36.87207],[-82.92629,36.8711],[-82.92696,36.87107],[-82.92721,36.87089],[-82.92768,36.87078],[-82.92826,36.8704],[-82.92861,36.87036],[-82.92969,36.87064],[-82.93033,36.87063],[-82.93099,36.87059],[-82.93191,36.87023],[-82.93285,36.87039],[-82.93359,36.87044],[-82.9346,36.87013],[-82.93513,36.86955],[-82.93653,36.86909],[-82.93673,36.86887],[-82.93668,36.86823],[-82.93681,36.8679],[-82.93728,36.86767],[-82.93763,36.86723],[-82.93939,36.86726],[-82.9406,36.86723],[-82.94173,36.86707],[-82.94214,36.86686],[-82.94243,36.86634],[-82.94259,36.8662],[-82.94342,36.86649],[-82.94461,36.86655],[-82.94566,36.86632],[-82.94641,36.86586],[-82.94789,36.86627],[-82.94905,36.86646],[-82.9497,36.86597],[-82.95172,36.86616],[-82.95291,36.86506],[-82.95333,36.86444],[-82.95374,36.86417],[-82.95457,36.86415],[-82.95587,36.86337],[-82.95649,36.86318],[-82.95724,36.8632],[-82.958,36.86311],[-82.96002,36.86257],[-82.9609,36.86255],[-82.96187,36.86227],[-82.96235,36.86182],[-82.96257,36.86147],[-82.96373,36.86116],[-82.96445,36.86041],[-82.96517,36.86014],[-82.96577,36.86001],[-82.96665,36.85934],[-82.96725,36.85924],[-82.96776,36.85924],[-82.96837,36.85906],[-82.96882,36.85854],[-82.96908,36.85799],[-82.9703,36.8577],[-82.9714,36.85756],[-82.97196,36.85778],[-82.97242,36.85832],[-82.97343,36.8591],[-82.97408,36.85914],[-82.9747,36.85921],[-82.9754,36.85943],[-82.97628,36.85953],[-82.9773,36.85943],[-82.97854,36.85969],[-82.97922,36.85972],[-82.98132,36.859],[-82.98217,36.85883],[-82.98259,36.85896],[-82.98301,36.85895],[-82.98371,36.85849],[-82.98394,36.85847],[-82.98545,36.8588],[-82.98607,36.85884],[-82.9868,36.85862],[-82.98709,36.85867],[-82.98729,36.85893],[-82.98774,36.85912],[-82.98872,36.85914],[-82.98951,36.85897],[-82.99101,36.85826],[-82.99138,36.85823],[-82.99162,36.85786],[-82.99202,36.85773],[-82.99292,36.85791],[-82.99349,36.85785],[-82.99408,36.85749],[-82.99463,36.85737],[-82.99605,36.85724],[-82.99655,36.85689],[-82.99674,36.85679],[-82.99766,36.85683],[-82.99779,36.85671],[-82.99843,36.85659],[-82.99873,36.85633],[-82.99915,36.85579],[-83.00094,36.85446],[-83.00162,36.85361],[-83.00301,36.85269],[-83.00388,36.8517],[-83.004,36.85095],[-83.00398,36.85016],[-83.00437,36.84976],[-83.00507,36.84945],[-83.00552,36.8489],[-83.00605,36.84791],[-83.00927,36.84726],[-83.01096,36.8476],[-83.01184,36.84747],[-83.01255,36.84727],[-83.0148,36.84834],[-83.01582,36.84907],[-83.01976,36.84988],[-83.02095,36.85],[-83.02183,36.84999],[-83.02253,36.85032],[-83.02301,36.85079],[-83.02372,36.85102],[-83.02451,36.85183],[-83.02579,36.85447],[-83.02586,36.85527],[-83.02698,36.8555],[-83.02986,36.85529],[-83.03089,36.85506],[-83.03192,36.8547],[-83.03355,36.85438],[-83.03508,36.8543],[-83.03606,36.85438],[-83.03634,36.85461],[-83.03709,36.8549],[-83.0389,36.85489],[-83.04218,36.85441],[-83.04441,36.85294],[-83.04749,36.85175],[-83.04894,36.85188],[-83.05236,36.85194],[-83.05685,36.85288],[-83.06048,36.85376],[-83.06208,36.85268],[-83.06401,36.85159],[-83.0651,36.85192],[-83.06636,36.85198],[-83.0694,36.85359],[-83.0711,36.85381],[-83.0726,36.85458],[-83.0757,36.85037],[-83.07518,36.84972],[-83.07492,36.84831],[-83.07372,36.84479],[-83.07523,36.84084],[-83.07756,36.84103],[-83.07955,36.8406],[-83.08284,36.83927],[-83.08617,36.83853],[-83.08809,36.83751],[-83.08907,36.83594],[-83.09129,36.83444],[-83.09312,36.83374],[-83.09581,36.83318],[-83.09721,36.83244],[-83.09895,36.83177],[-83.10081,36.83037],[-83.10193,36.82878],[-83.10207,36.82754],[-83.10167,36.82664],[-83.09995,36.82497],[-83.09841,36.82386],[-83.09842,36.82347],[-83.09886,36.82301],[-83.09917,36.8196],[-83.09901,36.81832],[-83.09877,36.81511],[-83.09845,36.8142],[-83.09947,36.81282],[-83.10066,36.81186],[-83.10287,36.81166],[-83.10339,36.81043],[-83.10347,36.80905],[-83.10312,36.80785],[-83.10312,36.80665],[-83.10337,36.80487],[-83.10478,36.80331],[-83.10618,36.80237],[-83.10748,36.80234],[-83.10853,36.80203],[-83.1097,36.80144],[-83.11091,36.80027],[-83.11195,36.79877],[-83.11438,36.79658],[-83.11534,36.79485],[-83.11597,36.79436],[-83.11679,36.7933],[-83.1171,36.79228],[-83.11809,36.79147],[-83.11836,36.79063],[-83.11915,36.78952],[-83.12063,36.78888],[-83.12109,36.78817],[-83.12206,36.78787],[-83.12317,36.78673],[-83.12519,36.7863],[-83.12566,36.78645],[-83.12697,36.78584],[-83.12768,36.78584],[-83.12852,36.78533],[-83.12927,36.78564],[-83.13202,36.78506],[-83.13275,36.78453],[-83.13279,36.78359],[-83.13246,36.78233],[-83.13161,36.78135],[-83.1307,36.77952],[-83.13067,36.77876],[-83.12939,36.77771],[-83.12846,36.77571],[-83.12943,36.77469],[-83.12964,36.7736],[-83.13112,36.77369],[-83.13228,36.77181],[-83.13241,36.77152],[-83.13071,36.7713],[-83.13021,36.77095],[-83.12931,36.77077],[-83.12893,36.77039],[-83.12889,36.7699],[-83.12919,36.769],[-83.12991,36.76858],[-83.13061,36.76851],[-83.131,36.76829],[-83.13135,36.76776],[-83.1311,36.76619],[-83.13213,36.76574],[-83.13257,36.76487],[-83.13247,36.76443],[-83.13104,36.76396],[-83.12931,36.76286],[-83.12716,36.76229],[-83.12658,36.76192],[-83.12615,36.76194],[-83.12545,36.76161],[-83.12606,36.76115],[-83.12679,36.76097],[-83.12708,36.75992],[-83.12766,36.75968],[-83.12853,36.75969],[-83.12841,36.7586],[-83.12886,36.75779],[-83.12829,36.75635],[-83.12857,36.75554],[-83.12864,36.75446],[-83.12896,36.75273],[-83.12872,36.75246],[-83.1284,36.75227],[-83.128,36.75183],[-83.12777,36.75126],[-83.12784,36.75082],[-83.12806,36.75048],[-83.12858,36.7503],[-83.12919,36.75024],[-83.12953,36.7503],[-83.1298,36.75026],[-83.12964,36.7501],[-83.12984,36.75007],[-83.13007,36.74979],[-83.13045,36.74977],[-83.1313,36.74981],[-83.13244,36.74997],[-83.13464,36.7494],[-83.13487,36.74899],[-83.1346,36.74849],[-83.13473,36.74787],[-83.13434,36.74662],[-83.13337,36.74596],[-83.13456,36.74417],[-83.13523,36.74266],[-83.1358,36.74268],[-83.13654,36.74311],[-83.13836,36.74314],[-83.13917,36.74265],[-83.1401,36.74258],[-83.14076,36.74277],[-83.14382,36.74187],[-83.14509,36.74171],[-83.1473,36.74187],[-83.15122,36.74163],[-83.15193,36.74197],[-83.15229,36.74274],[-83.15291,36.74297],[-83.15362,36.74267],[-83.15363,36.74211],[-83.15577,36.74183],[-83.15705,36.74238],[-83.15766,36.74149],[-83.15946,36.74088],[-83.16046,36.74034],[-83.16153,36.73993],[-83.16782,36.73906],[-83.16738,36.73966],[-83.16669,36.74019],[-83.16745,36.74078],[-83.16821,36.74082],[-83.16981,36.74007],[-83.17228,36.74001],[-83.1732,36.74029],[-83.1749,36.73943],[-83.17625,36.7398],[-83.17854,36.73947],[-83.1798,36.73961],[-83.18071,36.73945],[-83.183,36.73956],[-83.18374,36.74],[-83.18606,36.73955],[-83.18803,36.73971],[-83.19053,36.73949],[-83.19439,36.73953],[-83.19562,36.73901],[-83.19702,36.73821],[-83.20252,36.7368],[-83.20314,36.737],[-83.20387,36.73652],[-83.20538,36.73569],[-83.20607,36.73583],[-83.20713,36.7355],[-83.20797,36.73477],[-83.21019,36.73431],[-83.21101,36.73449],[-83.21244,36.73397],[-83.21288,36.73348],[-83.21506,36.73299],[-83.2164,36.73339],[-83.21987,36.7313],[-83.22454,36.73011],[-83.22599,36.73041],[-83.22693,36.73009],[-83.22893,36.72875],[-83.2302,36.72862],[-83.23122,36.72891],[-83.23389,36.72775],[-83.23475,36.72769],[-83.23598,36.72702],[-83.23746,36.72683],[-83.23846,36.72708],[-83.23975,36.72654],[-83.24114,36.7258],[-83.24519,36.72582],[-83.24568,36.72533],[-83.24728,36.72519],[-83.24977,36.72392],[-83.25084,36.72376],[-83.2514,36.72339],[-83.25333,36.72324],[-83.25445,36.7227],[-83.25553,36.72184],[-83.25717,36.7213],[-83.25873,36.72153],[-83.25929,36.72199],[-83.26093,36.72126],[-83.26274,36.72087],[-83.26371,36.721],[-83.26613,36.71977],[-83.26906,36.71855],[-83.27183,36.71788],[-83.27251,36.71774],[-83.27346,36.71808],[-83.27552,36.71794],[-83.27749,36.71738],[-83.27926,36.71567],[-83.28209,36.7158],[-83.28568,36.71523],[-83.28695,36.71397],[-83.29015,36.71331],[-83.29318,36.71328],[-83.29607,36.71372],[-83.29755,36.71279],[-83.30323,36.71178],[-83.30368,36.71108],[-83.30541,36.71145],[-83.30705,36.71141],[-83.31122,36.71036],[-83.31327,36.70889],[-83.3173,36.70777],[-83.31849,36.70773],[-83.31977,36.70749],[-83.32095,36.70686],[-83.32331,36.70622],[-83.32601,36.70577],[-83.32903,36.70479],[-83.33274,36.70387],[-83.336,36.70263],[-83.33836,36.70254],[-83.3404,36.70167],[-83.34279,36.70128],[-83.3439,36.70129],[-83.34543,36.70099],[-83.34678,36.70099],[-83.34792,36.70076],[-83.34888,36.69997],[-83.34969,36.69847],[-83.35087,36.69732],[-83.35245,36.69689],[-83.35377,36.6966],[-83.35458,36.69612],[-83.35643,36.69468],[-83.359,36.69358],[-83.35995,36.69352],[-83.36067,36.69383],[-83.36216,36.69476],[-83.36317,36.69477],[-83.36399,36.69457],[-83.36764,36.69263],[-83.37068,36.6911],[-83.37091,36.69089],[-83.3712,36.69089],[-83.37141,36.69049],[-83.37171,36.69028],[-83.37229,36.69058],[-83.37331,36.69016],[-83.37427,36.69027],[-83.37433,36.6901],[-83.37441,36.6901],[-83.37449,36.69019],[-83.37489,36.69017],[-83.37489,36.69048],[-83.37507,36.69059],[-83.37564,36.69029],[-83.37684,36.68957],[-83.37797,36.68945],[-83.37918,36.6882],[-83.38023,36.68857],[-83.38078,36.68712],[-83.38224,36.68717],[-83.38319,36.68694],[-83.38348,36.68651],[-83.38418,36.68667],[-83.38471,36.6867],[-83.38551,36.68649],[-83.38616,36.68658],[-83.38682,36.68614],[-83.38961,36.68484],[-83.38892,36.68361],[-83.39016,36.68286],[-83.39165,36.68232],[-83.39267,36.68164],[-83.39272,36.68084],[-83.39505,36.67973],[-83.39557,36.6791],[-83.39487,36.67763],[-83.39563,36.6768],[-83.40086,36.67499],[-83.40223,36.67462],[-83.40326,36.67399],[-83.40448,36.67355],[-83.40639,36.67325],[-83.40695,36.673],[-83.40997,36.67139],[-83.41144,36.67096],[-83.41239,36.67053],[-83.41354,36.67033],[-83.41729,36.66918],[-83.41812,36.66872],[-83.42169,36.66819],[-83.4236,36.66742],[-83.42693,36.66726],[-83.42837,36.667],[-83.42921,36.66711],[-83.43015,36.66702],[-83.43147,36.66651],[-83.43645,36.66618],[-83.44061,36.66688],[-83.44279,36.66731],[-83.44355,36.66715],[-83.44681,36.66555],[-83.448,36.66527],[-83.45064,36.6655],[-83.45151,36.6651],[-83.45495,36.6648],[-83.45641,36.66518],[-83.45685,36.6656],[-83.45798,36.66577],[-83.45906,36.66518],[-83.45996,36.66515],[-83.4616,36.66467],[-83.46315,36.66494],[-83.46428,36.66474],[-83.46629,36.66467],[-83.46918,36.66516],[-83.47034,36.6649],[-83.47369,36.66561],[-83.47549,36.66567],[-83.47781,36.666],[-83.47944,36.66664],[-83.48017,36.66656],[-83.48081,36.66606],[-83.48249,36.66615],[-83.48287,36.66644],[-83.48506,36.66714],[-83.48879,36.66769],[-83.4916,36.6689],[-83.49258,36.67011],[-83.49324,36.67025],[-83.49399,36.67009],[-83.4968,36.67021],[-83.49832,36.6706],[-83.49984,36.67016],[-83.50138,36.66911],[-83.50692,36.66866],[-83.51169,36.66911],[-83.51435,36.66845],[-83.51599,36.66759],[-83.52709,36.66601],[-83.5295,36.66621],[-83.53098,36.66566],[-83.53219,36.66478],[-83.53297,36.66335],[-83.53315,36.66187],[-83.53503,36.66073],[-83.53717,36.6598],[-83.54188,36.6565],[-83.54709,36.65453],[-83.54947,36.65395],[-83.55094,36.65408],[-83.55284,36.65401],[-83.55397,36.65374],[-83.56275,36.65131],[-83.56386,36.64993],[-83.56587,36.64827],[-83.56965,36.64571],[-83.57076,36.64534],[-83.57188,36.64483],[-83.57308,36.64485],[-83.57495,36.64376],[-83.57712,36.6418],[-83.57961,36.64148],[-83.58449,36.64131],[-83.58533,36.64217],[-83.586,36.64358],[-83.58777,36.64259],[-83.58805,36.64152],[-83.59044,36.64015],[-83.59356,36.63904],[-83.59538,36.63852],[-83.59911,36.63755],[-83.60062,36.63709],[-83.60219,36.63686],[-83.60301,36.63686],[-83.60386,36.63727],[-83.60437,36.63766],[-83.6056,36.63778],[-83.60895,36.63675],[-83.60981,36.63615],[-83.61057,36.63542],[-83.6114,36.63479],[-83.61292,36.63477],[-83.61447,36.63402],[-83.61639,36.63141],[-83.61699,36.6309],[-83.61876,36.62887],[-83.61997,36.62791],[-83.62113,36.62736],[-83.62186,36.6273],[-83.62319,36.6267],[-83.62349,36.62661],[-83.624,36.62621],[-83.62459,36.62594],[-83.62495,36.62559],[-83.62501,36.62517],[-83.6272,36.62497],[-83.62796,36.62459],[-83.62822,36.62432],[-83.62892,36.62405],[-83.62933,36.62407],[-83.63016,36.62392],[-83.63107,36.6236],[-83.63377,36.62309],[-83.634,36.62299],[-83.63478,36.62295],[-83.63514,36.62289],[-83.63568,36.62321],[-83.63618,36.6234],[-83.63685,36.62401],[-83.63734,36.62423],[-83.63797,36.62406],[-83.63851,36.62435],[-83.63921,36.62449],[-83.63987,36.62479],[-83.64064,36.62466],[-83.64141,36.6247],[-83.64251,36.62408],[-83.64259,36.62391],[-83.64317,36.62375],[-83.64361,36.624],[-83.64388,36.62425],[-83.64412,36.6244],[-83.6451,36.62425],[-83.64591,36.62379],[-83.64591,36.62312],[-83.64612,36.62279],[-83.64681,36.62277],[-83.64759,36.62308],[-83.6483,36.6227],[-83.64837,36.62193],[-83.64836,36.62169],[-83.64809,36.62122],[-83.64821,36.62077],[-83.64871,36.61981],[-83.64852,36.61934],[-83.64851,36.61883],[-83.64899,36.61774],[-83.64913,36.6176],[-83.64918,36.61728],[-83.64909,36.6171],[-83.64926,36.61665],[-83.64996,36.61677],[-83.65062,36.61697],[-83.65153,36.61645],[-83.65211,36.6159],[-83.65223,36.61554],[-83.65222,36.61518],[-83.65296,36.61458],[-83.65347,36.61386],[-83.65381,36.61349],[-83.65432,36.61317],[-83.65491,36.61302],[-83.65517,36.61287],[-83.65602,36.6129],[-83.6567,36.613],[-83.65724,36.6127],[-83.65748,36.61247],[-83.65769,36.61181],[-83.65807,36.61155],[-83.65861,36.61099],[-83.65884,36.61063],[-83.6592,36.61043],[-83.65952,36.61009],[-83.66058,36.60951],[-83.66082,36.60919],[-83.66101,36.60918],[-83.66193,36.60866],[-83.66277,36.60773],[-83.66315,36.60717],[-83.6637,36.60676],[-83.66444,36.60667],[-83.66522,36.60603],[-83.6654,36.6058],[-83.66631,36.60568],[-83.66681,36.60586],[-83.66735,36.60597],[-83.66813,36.60597],[-83.66843,36.60607],[-83.6691,36.60591],[-83.6693,36.60548],[-83.66977,36.60517],[-83.67051,36.60488],[-83.67101,36.60479],[-83.67301,36.60476],[-83.67351,36.60382],[-83.67462,36.6031],[-83.67542,36.60081],[-83.64615,36.60005],[-83.6248,36.59834],[-83.6219,36.59795],[-83.53413,36.59725],[-83.44842,36.59738],[-83.37884,36.59737],[-83.27631,36.59818],[-83.2611,36.59388],[-81.93415,36.59421],[-81.92265,36.61621],[-81.82665,36.61441],[-81.82665,36.61431],[-81.82675,36.61421],[-81.76666,36.61281],[-81.72923,36.61237],[-81.70412,36.61226],[-81.69299,36.61209],[-81.69289,36.61196],[-81.68819,36.61216],[-81.6469,36.61191],[-81.6774,36.58815],[-81.67746,36.58815],[-81.67797,36.58777],[-81.67887,36.58687],[-81.67956,36.58641],[-81.68022,36.58592],[-81.68022,36.58587],[-81.67969,36.58554],[-81.67949,36.5854],[-81.67933,36.58524],[-81.67916,36.585],[-81.67871,36.58467],[-81.67857,36.58451],[-81.67813,36.58367],[-81.67808,36.58348],[-81.67807,36.58323],[-81.67813,36.58295],[-81.6784,36.58207],[-81.67858,36.58127],[-81.6786,36.58113],[-81.67863,36.58023],[-81.67874,36.5797],[-81.67884,36.57949],[-81.679,36.57929],[-81.67944,36.57902],[-81.67954,36.57891],[-81.67954,36.57874],[-81.6794,36.57838],[-81.67926,36.57823],[-81.67909,36.57769],[-81.67894,36.57713],[-81.67887,36.57673],[-81.67865,36.57625],[-81.6772,36.5744],[-81.67756,36.57317],[-81.67687,36.5726],[-81.67669,36.57201],[-81.67683,36.57178],[-81.67707,36.5716],[-81.67719,36.57146],[-81.67755,36.57082],[-81.67783,36.57047],[-81.67804,36.57037],[-81.67813,36.57016],[-81.67837,36.56997],[-81.67857,36.56986],[-81.67864,36.56978],[-81.67867,36.56958],[-81.67911,36.56904],[-81.67931,36.56898],[-81.67945,36.56885],[-81.67996,36.56878],[-81.68206,36.56871],[-81.68225,36.56875],[-81.68347,36.56868],[-81.68386,36.56856],[-81.68501,36.56843],[-81.68553,36.56833],[-81.68609,36.5681],[-81.68984,36.56868],[-81.68996,36.56865],[-81.69017,36.56856],[-81.69048,36.56838],[-81.69064,36.56824],[-81.69081,36.56813],[-81.69094,36.56797],[-81.69108,36.56786],[-81.69122,36.56768],[-81.6914,36.56742],[-81.69182,36.56659],[-81.69189,36.56633],[-81.69189,36.56606],[-81.69185,36.56585],[-81.69172,36.56564],[-81.69149,36.5654],[-81.6911,36.56494],[-81.69105,36.56483],[-81.69106,36.56458],[-81.69114,36.56435],[-81.6912,36.56401],[-81.69122,36.5636],[-81.69114,36.56347],[-81.69052,36.56269],[-81.68978,36.56184],[-81.68959,36.5616],[-81.68957,36.56138],[-81.68969,36.56097],[-81.68976,36.56086],[-81.68986,36.56055],[-81.68996,36.56037],[-81.69044,36.55894],[-81.69047,36.55873],[-81.69058,36.5585],[-81.69056,36.55816],[-81.69044,36.55778],[-81.69043,36.55768],[-81.69044,36.5576],[-81.69048,36.55755],[-81.69078,36.55737],[-81.69087,36.55726],[-81.69121,36.55667],[-81.69134,36.55627],[-81.6914,36.55592],[-81.69138,36.55552],[-81.69126,36.55498],[-81.69125,36.55455],[-81.69128,36.55442],[-81.69123,36.55418],[-81.69112,36.55408],[-81.69102,36.55387],[-81.69047,36.55241],[-81.69037,36.55225],[-81.69023,36.55182],[-81.69023,36.55162],[-81.69041,36.55149],[-81.6907,36.55145],[-81.69132,36.55142],[-81.69148,36.55144],[-81.69168,36.55142],[-81.69223,36.55145],[-81.69241,36.55141],[-81.69259,36.55142],[-81.6929,36.55134],[-81.69311,36.55124],[-81.6933,36.55111],[-81.69359,36.55054],[-81.69364,36.55035],[-81.6938,36.54994],[-81.69379,36.54898],[-81.69368,36.54814],[-81.69397,36.54784],[-81.69437,36.54751],[-81.69475,36.54721],[-81.69541,36.54655],[-81.69547,36.54642],[-81.69567,36.54619],[-81.69608,36.5458],[-81.69648,36.54549],[-81.69735,36.54465],[-81.69749,36.54445],[-81.69769,36.54406],[-81.69779,36.54382],[-81.69795,36.54313],[-81.69817,36.54256],[-81.69819,36.54236],[-81.69832,36.54205],[-81.69865,36.54146],[-81.6991,36.54094],[-81.69946,36.54043],[-81.69965,36.54009],[-81.69985,36.53947],[-81.69996,36.5386],[-81.69994,36.53803],[-81.69986,36.53766],[-81.69976,36.5374],[-81.6997,36.53707],[-81.69972,36.5369],[-81.6998,36.53676],[-81.69991,36.53665],[-81.70035,36.53654],[-81.70114,36.53644],[-81.70271,36.53635],[-81.70347,36.53634],[-81.70512,36.53642],[-81.70553,36.5364],[-81.70576,36.53636],[-81.70626,36.53614],[-81.70658,36.53604],[-81.70696,36.53595],[-81.70741,36.53593],[-81.70782,36.5359],[-81.70793,36.53587],[-81.70802,36.5358],[-81.70808,36.5357],[-81.7081,36.53511],[-81.70813,36.53495],[-81.70807,36.53477],[-81.70812,36.53392],[-81.70809,36.53354],[-81.70827,36.53291],[-81.70833,36.53254],[-81.70842,36.53226],[-81.70848,36.53173],[-81.70846,36.53106],[-81.70821,36.53051],[-81.70782,36.5301],[-81.70769,36.52986],[-81.7076,36.52959],[-81.70716,36.52882],[-81.70709,36.52865],[-81.70712,36.52843],[-81.70748,36.52789],[-81.70756,36.52773],[-81.70758,36.52759],[-81.7074,36.52615],[-81.70769,36.52541],[-81.70791,36.52497],[-81.70803,36.52464],[-81.70808,36.52441],[-81.70804,36.52426],[-81.70796,36.52414],[-81.70782,36.52405],[-81.707,36.52361],[-81.70615,36.5232],[-81.70552,36.52283],[-81.70411,36.52208],[-81.70335,36.52178],[-81.70316,36.5216],[-81.70289,36.52122],[-81.70287,36.52101],[-81.7028,36.52078],[-81.70239,36.52],[-81.70243,36.51966],[-81.70237,36.51943],[-81.70223,36.51927],[-81.70196,36.51909],[-81.70182,36.5189],[-81.70174,36.51858],[-81.70173,36.5183],[-81.70165,36.51815],[-81.70167,36.51802],[-81.70175,36.51783],[-81.7018,36.51762],[-81.70181,36.51715],[-81.70183,36.5169],[-81.70173,36.51657],[-81.70132,36.51602],[-81.70072,36.51559],[-81.7004,36.51526],[-81.70024,36.51463],[-81.70028,36.51399],[-81.70037,36.51378],[-81.70037,36.5137],[-81.70025,36.5135],[-81.69964,36.51282],[-81.69943,36.51254],[-81.69928,36.51199],[-81.69911,36.51156],[-81.69903,36.51087],[-81.69883,36.51054],[-81.69854,36.51023],[-81.69837,36.50989],[-81.69832,36.50965],[-81.69833,36.50949],[-81.69828,36.50908],[-81.69809,36.50878],[-81.69794,36.50864],[-81.69782,36.50835],[-81.69789,36.50738],[-81.69813,36.50699],[-81.69831,36.50686],[-81.69837,36.50674],[-81.69834,36.50664],[-81.69801,36.50643],[-81.69763,36.50634],[-81.69747,36.50633],[-81.69708,36.50624],[-81.69682,36.50611],[-81.69675,36.50594],[-81.69681,36.50576],[-81.69689,36.50566],[-81.6969,36.5055],[-81.69687,36.50495],[-81.69681,36.50471],[-81.69691,36.50456],[-81.69784,36.50394],[-81.69791,36.50372],[-81.69776,36.50355],[-81.69768,36.50309],[-81.69745,36.50239],[-81.69731,36.50213],[-81.69736,36.50201],[-81.69758,36.50189],[-81.69788,36.50182],[-81.69819,36.50165],[-81.69855,36.50161],[-81.69879,36.50142],[-81.69885,36.5013],[-81.69926,36.50094],[-81.69936,36.50082],[-81.69964,36.50067],[-81.69987,36.50041],[-81.70005,36.50016],[-81.7002,36.49973],[-81.70021,36.49953],[-81.69999,36.49927],[-81.69993,36.49915],[-81.7,36.49901],[-81.70002,36.49878],[-81.70017,36.49861],[-81.70018,36.49836],[-81.7001,36.49814],[-81.69995,36.49792],[-81.69974,36.49779],[-81.69957,36.49772],[-81.6991,36.49737],[-81.69888,36.49731],[-81.69837,36.49728],[-81.69828,36.49722],[-81.69819,36.49705],[-81.69797,36.49689],[-81.69771,36.49659],[-81.69718,36.49624],[-81.69712,36.49611],[-81.6971,36.49601],[-81.69709,36.49575],[-81.69703,36.4953],[-81.69706,36.49496],[-81.6971,36.49471],[-81.69707,36.49419],[-81.69711,36.49403],[-81.69696,36.49378],[-81.6968,36.49359],[-81.69674,36.49329],[-81.69673,36.49304],[-81.69667,36.49293],[-81.69644,36.4925],[-81.696,36.49197],[-81.69586,36.49165],[-81.69693,36.49068],[-81.69703,36.49049],[-81.69733,36.49013],[-81.6975,36.48978],[-81.69774,36.48953],[-81.69789,36.48919],[-81.69785,36.48857],[-81.69747,36.48796],[-81.69746,36.48762],[-81.69756,36.4874],[-81.69769,36.48657],[-81.69729,36.48503],[-81.69724,36.48373],[-81.69713,36.48311],[-81.69677,36.48264],[-81.69671,36.48245],[-81.6967,36.48199],[-81.69643,36.48133],[-81.6961,36.4807],[-81.69591,36.48043],[-81.69588,36.48037],[-81.69583,36.48006],[-81.69588,36.47996],[-81.69605,36.47946],[-81.6959,36.47922],[-81.69589,36.47911],[-81.69584,36.47902],[-81.69593,36.47886],[-81.69601,36.47877],[-81.69626,36.47857],[-81.69646,36.47837],[-81.69658,36.47821],[-81.69666,36.47798],[-81.69666,36.47738],[-81.69659,36.47712],[-81.69663,36.47668],[-81.6965,36.47604],[-81.69643,36.47579],[-81.69636,36.47563],[-81.69639,36.47549],[-81.69634,36.47534],[-81.69625,36.47522],[-81.69594,36.47498],[-81.69566,36.47481],[-81.69531,36.47465],[-81.69504,36.47458],[-81.6947,36.4744],[-81.6948,36.47419],[-81.6948,36.47404],[-81.69453,36.47343],[-81.69452,36.47298],[-81.69478,36.4719],[-81.69488,36.47178],[-81.69537,36.47149],[-81.69551,36.47138],[-81.69573,36.47105],[-81.69578,36.47083],[-81.69598,36.47023],[-81.69604,36.46995],[-81.69605,36.46952],[-81.69603,36.46936],[-81.69604,36.46905],[-81.696,36.46866],[-81.69593,36.46841],[-81.6958,36.46826],[-81.69542,36.46791],[-81.69526,36.46772],[-81.69495,36.46744],[-81.69493,36.4674],[-81.69499,36.46729],[-81.69536,36.46718],[-81.69565,36.467],[-81.69641,36.46646],[-81.69669,36.46622],[-81.69677,36.46603],[-81.69803,36.46477],[-81.69824,36.46445],[-81.69835,36.46434],[-81.6986,36.46413],[-81.69879,36.46404],[-81.69905,36.46399],[-81.69917,36.46403],[-81.69905,36.46377],[-81.69899,36.46354],[-81.69878,36.46312],[-81.69889,36.46311],[-81.70148,36.46331],[-81.70119,36.46399],[-81.70136,36.46394],[-81.70156,36.46393],[-81.7017,36.46389],[-81.70188,36.46381],[-81.70209,36.46376],[-81.70244,36.46381],[-81.70299,36.46359],[-81.7035,36.46345],[-81.70373,36.46341],[-81.70424,36.46317],[-81.7048,36.46296],[-81.70534,36.46271],[-81.7056,36.46264],[-81.70616,36.46269],[-81.70657,36.46269],[-81.70715,36.46258],[-81.70774,36.46237],[-81.70814,36.4621],[-81.70829,36.4619],[-81.70848,36.46132],[-81.70859,36.46109],[-81.70916,36.46003],[-81.70923,36.45984],[-81.70935,36.45961],[-81.70946,36.4595],[-81.71008,36.4592],[-81.71069,36.45893],[-81.71109,36.45882],[-81.71144,36.45885],[-81.71194,36.45898],[-81.71218,36.45892],[-81.71236,36.45881],[-81.7137,36.45838],[-81.71412,36.45822],[-81.71465,36.45792],[-81.7155,36.45757],[-81.71585,36.45734],[-81.7163,36.45691],[-81.71646,36.45679],[-81.71682,36.4564],[-81.71679,36.45631],[-81.71627,36.45594],[-81.71595,36.45584],[-81.71561,36.45568],[-81.71547,36.45564],[-81.71526,36.45547],[-81.71514,36.45531],[-81.71502,36.45491],[-81.71505,36.45337],[-81.71559,36.45244],[-81.71563,36.45155],[-81.71544,36.45133],[-81.71438,36.45086],[-81.71421,36.45064],[-81.71413,36.45041],[-81.7141,36.45],[-81.71411,36.4494],[-81.71412,36.44916],[-81.71416,36.44899],[-81.71416,36.44872],[-81.71407,36.44812],[-81.714,36.44792],[-81.71384,36.44771],[-81.71379,36.44756],[-81.71368,36.44737],[-81.71374,36.44706],[-81.71423,36.44657],[-81.7144,36.44645],[-81.71477,36.44627],[-81.71521,36.4461],[-81.71571,36.44577],[-81.71626,36.44556],[-81.71639,36.44554],[-81.71658,36.44547],[-81.71684,36.44544],[-81.717,36.44538],[-81.71725,36.44527],[-81.71727,36.44522],[-81.71752,36.44514],[-81.71756,36.44508],[-81.71754,36.44482],[-81.71744,36.44455],[-81.71743,36.44442],[-81.71721,36.4439],[-81.71687,36.44363],[-81.71669,36.44353],[-81.71596,36.44296],[-81.7157,36.4428],[-81.71456,36.44189],[-81.71437,36.44176],[-81.71423,36.44161],[-81.71419,36.44142],[-81.71419,36.4412],[-81.71429,36.44092],[-81.71461,36.44037],[-81.71462,36.44021],[-81.71468,36.44006],[-81.71469,36.43998],[-81.71489,36.43945],[-81.71513,36.43902],[-81.7153,36.43877],[-81.71544,36.43859],[-81.71543,36.43845],[-81.71533,36.4382],[-81.71482,36.4376],[-81.71472,36.43737],[-81.71457,36.43709],[-81.71475,36.43692],[-81.71517,36.43666],[-81.71589,36.43635],[-81.71636,36.43611],[-81.71689,36.43578],[-81.7172,36.43563],[-81.71778,36.43525],[-81.71843,36.435],[-81.71884,36.4349],[-81.71929,36.43482],[-81.71969,36.43477],[-81.72124,36.43394],[-81.7197,36.43264],[-81.71935,36.43219],[-81.7192,36.43207],[-81.71898,36.4318],[-81.71861,36.4315],[-81.71845,36.43132],[-81.7182,36.43111],[-81.71813,36.43101],[-81.7178,36.43069],[-81.71763,36.43043],[-81.71754,36.43023],[-81.71755,36.42991],[-81.7176,36.42952],[-81.71768,36.42913],[-81.71788,36.42841],[-81.71807,36.42787],[-81.71815,36.42744],[-81.71848,36.42666],[-81.71857,36.42639],[-81.71893,36.42571],[-81.71898,36.42554],[-81.72017,36.42375],[-81.72048,36.42323],[-81.72057,36.42295],[-81.72085,36.42244],[-81.72201,36.42243],[-81.72245,36.42198],[-81.72333,36.42232],[-81.72356,36.42214],[-81.72369,36.42186],[-81.72375,36.42167],[-81.72386,36.42145],[-81.72395,36.42104],[-81.72395,36.42087],[-81.72402,36.42063],[-81.724,36.42049],[-81.72417,36.42045],[-81.72471,36.42047],[-81.72494,36.42041],[-81.72545,36.42023],[-81.72573,36.42009],[-81.72604,36.4199],[-81.72636,36.41987],[-81.7267,36.41987],[-81.72733,36.41994],[-81.72726,36.41935],[-81.72725,36.41876],[-81.72742,36.41846],[-81.7277,36.41817],[-81.72799,36.41806],[-81.72865,36.41773],[-81.72883,36.41768],[-81.72902,36.41765],[-81.72916,36.41766],[-81.72925,36.41736],[-81.7293,36.41691],[-81.72925,36.41645],[-81.72914,36.41609],[-81.72916,36.41593],[-81.72928,36.41577],[-81.7294,36.41571],[-81.72953,36.41567],[-81.72966,36.41559],[-81.73048,36.41525],[-81.73099,36.41496],[-81.7317,36.41483],[-81.73209,36.41484],[-81.73234,36.4148],[-81.73338,36.41489],[-81.73354,36.4148],[-81.73369,36.41467],[-81.73391,36.41438],[-81.73402,36.41414],[-81.73421,36.41362],[-81.73424,36.41341],[-81.73431,36.41317],[-81.73433,36.41294],[-81.7343,36.41253],[-81.73453,36.41251],[-81.73516,36.41232],[-81.7353,36.41232],[-81.73541,36.41229],[-81.73563,36.41233],[-81.73585,36.41242],[-81.7361,36.41255],[-81.73642,36.41282],[-81.73656,36.41298],[-81.73731,36.41359],[-81.73749,36.41364],[-81.73764,36.41359],[-81.73786,36.41348],[-81.73813,36.4133],[-81.73834,36.41324],[-81.73856,36.41313],[-81.73896,36.41304],[-81.7392,36.41301],[-81.74007,36.41322],[-81.7403,36.41321],[-81.74058,36.41316],[-81.74095,36.41305],[-81.74124,36.4129],[-81.74143,36.41272],[-81.74152,36.41266],[-81.74155,36.41257],[-81.74154,36.41226],[-81.7415,36.41216],[-81.74153,36.4121],[-81.74163,36.41202],[-81.74173,36.41198],[-81.74176,36.4119],[-81.74173,36.41174],[-81.74178,36.4115],[-81.74187,36.41132],[-81.74195,36.41124],[-81.742,36.4111],[-81.74198,36.41081],[-81.74161,36.41049],[-81.74158,36.41038],[-81.74163,36.41018],[-81.74162,36.40991],[-81.74127,36.40949],[-81.74074,36.40893],[-81.74028,36.40853],[-81.74019,36.40843],[-81.74015,36.40834],[-81.74013,36.40809],[-81.74024,36.40762],[-81.74055,36.40486],[-81.74117,36.40447],[-81.74134,36.4043],[-81.74142,36.40409],[-81.74145,36.4037],[-81.74144,36.40354],[-81.74147,36.40341],[-81.74137,36.40317],[-81.74107,36.40286],[-81.74097,36.40271],[-81.74076,36.40252],[-81.74079,36.40229],[-81.7408,36.40204],[-81.74076,36.40184],[-81.74067,36.40175],[-81.74047,36.40167],[-81.73989,36.40156],[-81.73914,36.40147],[-81.73862,36.40134],[-81.73863,36.40119],[-81.73855,36.40108],[-81.7385,36.40088],[-81.73854,36.40065],[-81.73911,36.3989],[-81.73925,36.39804],[-81.73914,36.39787],[-81.73912,36.39777],[-81.73901,36.3976],[-81.73862,36.39715],[-81.73859,36.39698],[-81.73872,36.39681],[-81.73932,36.39578],[-81.73939,36.39563],[-81.73904,36.39496],[-81.73817,36.39455],[-81.73767,36.39454],[-81.73727,36.39465],[-81.73693,36.39472],[-81.73642,36.39471],[-81.73614,36.39461],[-81.73533,36.39421],[-81.73461,36.39414],[-81.73426,36.39421],[-81.73391,36.39441],[-81.73361,36.3946],[-81.73328,36.39474],[-81.73263,36.39487],[-81.73226,36.39488],[-81.73193,36.39478],[-81.73177,36.39453],[-81.73157,36.39432],[-81.73102,36.39392],[-81.73009,36.39341],[-81.72985,36.39318],[-81.72965,36.39294],[-81.7294,36.39249],[-81.72922,36.39199],[-81.72907,36.39175],[-81.72884,36.39148],[-81.72857,36.39123],[-81.72876,36.39066],[-81.72909,36.3902],[-81.72983,36.38977],[-81.73012,36.38946],[-81.73019,36.38884],[-81.73035,36.38827],[-81.7303,36.38783],[-81.73047,36.38719],[-81.73016,36.3863],[-81.72981,36.3859],[-81.72931,36.38558],[-81.72936,36.38535],[-81.72971,36.38507],[-81.73027,36.38443],[-81.73048,36.38388],[-81.73069,36.38299],[-81.73095,36.38283],[-81.73185,36.38271],[-81.73322,36.3823],[-81.73359,36.38203],[-81.7345,36.38018],[-81.73462,36.37957],[-81.73443,36.37932],[-81.73402,36.37913],[-81.7329,36.37851],[-81.7326,36.37822],[-81.73213,36.37744],[-81.73176,36.3764],[-81.73163,36.37568],[-81.73143,36.37515],[-81.73148,36.37484],[-81.73146,36.37465],[-81.73114,36.37407],[-81.7308,36.37368],[-81.73059,36.37359],[-81.7303,36.37353],[-81.72997,36.37357],[-81.72942,36.37368],[-81.72918,36.37364],[-81.72896,36.37357],[-81.7289,36.37341],[-81.72888,36.37253],[-81.72895,36.37154],[-81.72889,36.37122],[-81.72868,36.37097],[-81.72803,36.37066],[-81.72733,36.37035],[-81.7272,36.37023],[-81.72706,36.37005],[-81.72691,36.36974],[-81.72668,36.36951],[-81.7263,36.36919],[-81.72608,36.3689],[-81.72599,36.3687],[-81.72595,36.36839],[-81.72603,36.36811],[-81.72651,36.3671],[-81.72685,36.36611],[-81.72708,36.36571],[-81.72709,36.3656],[-81.72515,36.36359],[-81.72471,36.36328],[-81.72393,36.36291],[-81.7237,36.36269],[-81.72344,36.36232],[-81.7228,36.36118],[-81.72269,36.36091],[-81.72269,36.36073],[-81.72274,36.36036],[-81.72238,36.3587],[-81.72241,36.35854],[-81.72256,36.35835],[-81.72269,36.35825],[-81.72288,36.3582],[-81.72373,36.35811],[-81.72401,36.35803],[-81.72433,36.35775],[-81.72415,36.3572],[-81.72407,36.35629],[-81.72394,36.35584],[-81.72366,36.35521],[-81.72324,36.35479],[-81.72292,36.35434],[-81.72276,36.35398],[-81.72265,36.35329],[-81.7225,36.35293],[-81.72224,36.35235],[-81.72145,36.35116],[-81.7209,36.3507],[-81.72046,36.35046],[-81.71901,36.34899],[-81.71797,36.34816],[-81.7174,36.34777],[-81.71455,36.34676],[-81.71381,36.34666],[-81.71243,36.34666],[-81.7111,36.34663],[-81.70867,36.3464],[-81.70828,36.34627],[-81.70777,36.34598],[-81.7073,36.3455],[-81.70567,36.34298],[-81.70562,36.34253],[-81.70556,36.34229],[-81.7053,36.34185],[-81.70524,36.3415],[-81.7053,36.34125],[-81.70541,36.341],[-81.70541,36.34053],[-81.70578,36.3396],[-81.70586,36.33885],[-81.70598,36.33849],[-81.70696,36.33726],[-81.70726,36.3367],[-81.70746,36.33556],[-81.70745,36.33517],[-81.70796,36.33512],[-81.70899,36.33512],[-81.7097,36.33523],[-81.71257,36.33592],[-81.71325,36.33605],[-81.71455,36.33604],[-81.7162,36.33617],[-81.71718,36.33616],[-81.71805,36.33605],[-81.71831,36.33605],[-81.71857,36.33611],[-81.71886,36.33627],[-81.71956,36.33692],[-81.7199,36.33731],[-81.72055,36.33834],[-81.72082,36.33853],[-81.72101,36.33863],[-81.72128,36.33872],[-81.72205,36.33875],[-81.72318,36.33884],[-81.72356,36.33893],[-81.72385,36.33907],[-81.72428,36.33951],[-81.72461,36.33995],[-81.72487,36.3401],[-81.72594,36.34036],[-81.72617,36.34064],[-81.72725,36.34111],[-81.72781,36.34133],[-81.72796,36.34143],[-81.72857,36.34141],[-81.72948,36.34129],[-81.7302,36.34128],[-81.73121,36.34135],[-81.73161,36.34161],[-81.73199,36.34172],[-81.73368,36.342],[-81.73435,36.34222],[-81.73586,36.34297],[-81.73595,36.34299],[-81.7361,36.34292],[-81.7365,36.34243],[-81.73743,36.34188],[-81.73811,36.34136],[-81.7384,36.34107],[-81.73924,36.33995],[-81.7395,36.33975],[-81.73976,36.33964],[-81.7403,36.33951],[-81.74068,36.33936],[-81.74249,36.33843],[-81.74341,36.3383],[-81.74366,36.3382],[-81.74421,36.33787],[-81.74448,36.33778],[-81.7449,36.33776],[-81.74574,36.33753],[-81.74703,36.33757],[-81.7472,36.33755],[-81.7478,36.33735],[-81.74796,36.33736],[-81.74862,36.33766],[-81.74904,36.33775],[-81.74983,36.33779],[-81.75023,36.33785],[-81.7504,36.33782],[-81.75077,36.33753],[-81.75122,36.33727],[-81.75156,36.33717],[-81.75236,36.33707],[-81.75307,36.33707],[-81.75379,36.33704],[-81.75444,36.33704],[-81.75471,36.33711],[-81.75498,36.33743],[-81.75517,36.33789],[-81.75547,36.33818],[-81.75615,36.33862],[-81.75682,36.33894],[-81.75729,36.3394],[-81.75783,36.33969],[-81.75835,36.33987],[-81.75935,36.34004],[-81.76019,36.34011],[-81.76123,36.34027],[-81.76204,36.34018],[-81.76281,36.33992],[-81.76359,36.33941],[-81.7643,36.33891],[-81.76492,36.33867],[-81.76516,36.33896],[-81.76555,36.33932],[-81.76641,36.33967],[-81.76726,36.34011],[-81.76899,36.34104],[-81.76893,36.34177],[-81.76901,36.34228],[-81.76915,36.34258],[-81.7694,36.34255],[-81.76966,36.34249],[-81.77023,36.34252],[-81.77061,36.34267],[-81.77081,36.34297],[-81.77104,36.34322],[-81.77166,36.34357],[-81.77195,36.34359],[-81.77243,36.34348],[-81.77295,36.3433],[-81.7733,36.34337],[-81.77398,36.34374],[-81.77483,36.34464],[-81.77508,36.34524],[-81.77522,36.34543],[-81.77558,36.34568],[-81.77606,36.34621],[-81.77617,36.34655],[-81.7764,36.34663],[-81.777,36.34698],[-81.77774,36.34755],[-81.77892,36.34863],[-81.78009,36.34799],[-81.78077,36.34778],[-81.7813,36.34765],[-81.7821,36.3476],[-81.78291,36.34764],[-81.78315,36.34771],[-81.78351,36.34762],[-81.78443,36.34747],[-81.7852,36.34741],[-81.78589,36.34744],[-81.78662,36.3477],[-81.78713,36.34794],[-81.78795,36.34821],[-81.78832,36.34826],[-81.78907,36.3481],[-81.78938,36.34815],[-81.78971,36.34831],[-81.79005,36.34875],[-81.79027,36.34921],[-81.79035,36.34963],[-81.79033,36.35046],[-81.79053,36.35084],[-81.79087,36.35102],[-81.79093,36.35151],[-81.79115,36.35226],[-81.79121,36.35283],[-81.79097,36.35329],[-81.79073,36.35366],[-81.79062,36.35396],[-81.79066,36.35429],[-81.7908,36.35476],[-81.79072,36.35506],[-81.79068,36.35542],[-81.7908,36.35592],[-81.79092,36.35602],[-81.79159,36.35603],[-81.79177,36.3561],[-81.792,36.35646],[-81.79243,36.35678],[-81.79306,36.35782],[-81.79341,36.3585],[-81.79366,36.35943],[-81.79369,36.36043],[-81.7936,36.36133],[-81.79345,36.3619],[-81.79309,36.36246],[-81.79359,36.36221],[-81.79392,36.36216],[-81.79483,36.36194],[-81.79532,36.36171],[-81.79569,36.36124],[-81.79602,36.36025],[-81.79717,36.35867],[-81.79753,36.35842],[-81.79807,36.35846],[-81.79984,36.35838],[-81.80081,36.35807],[-81.80127,36.35779],[-81.80144,36.35739],[-81.80156,36.35673],[-81.80174,36.35645],[-81.80295,36.35561],[-81.8032,36.35539],[-81.80349,36.35543],[-81.80388,36.35567],[-81.80402,36.35572],[-81.80432,36.35561],[-81.80593,36.3548],[-81.80688,36.35449],[-81.80746,36.35443],[-81.80826,36.35412],[-81.80881,36.35369],[-81.80973,36.35229],[-81.8102,36.35189],[-81.81081,36.35171],[-81.81191,36.35156],[-81.81414,36.35138],[-81.81503,36.3514],[-81.81695,36.35087],[-81.81847,36.35049],[-81.81882,36.35038],[-81.81918,36.35003],[-81.81987,36.34954],[-81.82069,36.34924],[-81.82146,36.34911],[-81.8225,36.34881],[-81.82322,36.34881],[-81.82473,36.34862],[-81.8254,36.34869],[-81.82581,36.34896],[-81.82605,36.34899],[-81.82775,36.3485],[-81.82842,36.34817],[-81.82967,36.34769],[-81.8306,36.34759],[-81.83156,36.34728],[-81.83214,36.34731],[-81.83291,36.34743],[-81.83318,36.34735],[-81.83363,36.34699],[-81.8341,36.34655],[-81.83512,36.34599],[-81.83594,36.34569],[-81.8368,36.34541],[-81.8373,36.34518],[-81.83816,36.34463],[-81.83839,36.34451],[-81.83885,36.3444],[-81.83919,36.34429],[-81.83997,36.34396],[-81.84128,36.34331],[-81.84179,36.34297],[-81.8426,36.34236],[-81.84376,36.34172],[-81.84444,36.34139],[-81.84482,36.34087],[-81.84563,36.34036],[-81.84596,36.34024],[-81.84671,36.34002],[-81.84717,36.33983],[-81.8479,36.33912],[-81.84846,36.33881],[-81.84884,36.33889],[-81.84934,36.33902],[-81.85022,36.33846],[-81.8507,36.33817],[-81.85112,36.33797],[-81.85142,36.33764],[-81.85185,36.33713],[-81.85248,36.337],[-81.85304,36.33656],[-81.85333,36.33643],[-81.8536,36.33645],[-81.85482,36.33721],[-81.855,36.33726],[-81.85511,36.33718],[-81.85777,36.3341],[-81.85857,36.33348],[-81.85923,36.3328],[-81.85938,36.33274],[-81.85993,36.33266],[-81.86031,36.33252],[-81.86067,36.33233],[-81.86104,36.33199],[-81.86149,36.33137],[-81.86234,36.33066],[-81.86315,36.3302],[-81.86392,36.3299],[-81.86446,36.32977],[-81.865,36.3296],[-81.86547,36.32935],[-81.86569,36.32899],[-81.86587,36.3285],[-81.86613,36.32813],[-81.86635,36.32787],[-81.86646,36.32741],[-81.86648,36.32662],[-81.86662,36.32629],[-81.86738,36.32576],[-81.86773,36.32545],[-81.86823,36.32465],[-81.86879,36.32415],[-81.86943,36.32368],[-81.86994,36.32326],[-81.87055,36.32284],[-81.87306,36.32042],[-81.8734,36.32013],[-81.87348,36.32],[-81.87357,36.31959],[-81.87369,36.31947],[-81.87404,36.31936],[-81.87434,36.31919],[-81.87483,36.31872],[-81.87512,36.31834],[-81.87619,36.31607],[-81.8766,36.31571],[-81.87687,36.31551],[-81.87746,36.31527],[-81.87805,36.315],[-81.87836,36.31481],[-81.87905,36.31398],[-81.87935,36.31378],[-81.87963,36.31365],[-81.88133,36.31331],[-81.88316,36.31255],[-81.88393,36.31214],[-81.88486,36.31141],[-81.88533,36.31076],[-81.88566,36.31018],[-81.88682,36.30937],[-81.88725,36.30918],[-81.89021,36.30861],[-81.89163,36.30841],[-81.89218,36.30827],[-81.89274,36.3081],[-81.89376,36.30748],[-81.89426,36.30726],[-81.89455,36.30718],[-81.89512,36.30718],[-81.89569,36.30724],[-81.89675,36.30748],[-81.89717,36.30753],[-81.89771,36.30744],[-81.89941,36.30684],[-81.8997,36.30672],[-81.89987,36.30655],[-81.90023,36.30612],[-81.90047,36.30592],[-81.90067,36.30582],[-81.90129,36.30575],[-81.90224,36.30545],[-81.9026,36.30526],[-81.90298,36.30496],[-81.90325,36.30463],[-81.90355,36.30403],[-81.90367,36.3039],[-81.90379,36.30381],[-81.90502,36.30359],[-81.90558,36.30343],[-81.90629,36.30307],[-81.90643,36.30297],[-81.90648,36.30284],[-81.90643,36.30251],[-81.90652,36.3024],[-81.90665,36.3023],[-81.90724,36.3021],[-81.90815,36.302],[-81.9389,36.25607],[-81.94059,36.25388],[-81.94219,36.25186],[-81.94534,36.24783],[-81.95158,36.23969],[-81.96005,36.2282],[-81.96739,36.21731],[-81.98641,36.1892],[-81.99157,36.18143],[-81.99654,36.17389],[-81.99744,36.17264],[-81.99906,36.17017],[-81.99936,36.16979],[-81.99988,36.16908],[-82.00356,36.16387],[-82.00794,36.15747],[-82.02664,36.13022],[-82.02645,36.12975],[-82.02635,36.12962],[-82.02635,36.12923],[-82.02655,36.12891],[-82.02654,36.12881],[-82.02823,36.12514],[-82.02874,36.12431],[-82.02905,36.12401],[-82.02932,36.12353],[-82.02956,36.12329],[-82.03055,36.12251],[-82.03163,36.12183],[-82.03227,36.1213],[-82.03315,36.12042],[-82.03365,36.12042],[-82.03426,36.12052],[-82.03514,36.12062],[-82.03584,36.12082],[-82.03678,36.12082],[-82.03793,36.12111],[-82.03854,36.12141],[-82.03904,36.12191],[-82.03954,36.12251],[-82.03996,36.12312],[-82.04139,36.12385],[-82.04209,36.12428],[-82.04269,36.12468],[-82.04344,36.12511],[-82.04355,36.12522],[-82.04364,36.12522],[-82.04395,36.12542],[-82.04496,36.12562],[-82.04565,36.12572],[-82.04644,36.12571],[-82.04813,36.12591],[-82.04882,36.12611],[-82.04945,36.12622],[-82.05014,36.12602],[-82.05096,36.12593],[-82.05171,36.12601],[-82.05255,36.12622],[-82.05353,36.12671],[-82.05375,36.12672],[-82.05394,36.12681],[-82.05415,36.12681],[-82.0553,36.12512],[-82.05515,36.12511],[-82.05559,36.12457],[-82.05605,36.12391],[-82.05614,36.12262],[-82.05595,36.12118],[-82.05603,36.12072],[-82.05637,36.12019],[-82.05725,36.11931],[-82.05835,36.11832],[-82.05977,36.11608],[-82.06015,36.1151],[-82.06061,36.11426],[-82.06095,36.11361],[-82.06124,36.11323],[-82.06136,36.1131],[-82.06166,36.11292],[-82.06272,36.11282],[-82.06369,36.11282],[-82.06474,36.11271],[-82.06697,36.1121],[-82.06936,36.11091],[-82.07025,36.11022],[-82.07075,36.10942],[-82.07103,36.10932],[-82.07254,36.10902],[-82.07382,36.10863],[-82.07696,36.10781],[-82.07705,36.10781],[-82.07714,36.10771],[-82.07787,36.10741],[-82.07851,36.10709],[-82.07976,36.10651],[-82.08015,36.10571],[-82.08035,36.10501],[-82.08043,36.10422],[-82.08055,36.10344],[-82.08056,36.10323],[-82.08045,36.10302],[-82.08244,36.10391],[-82.08315,36.10431],[-82.08412,36.1048],[-82.08464,36.10511],[-82.08523,36.10571],[-82.08593,36.10602],[-82.08637,36.10601],[-82.08769,36.10611],[-82.08896,36.10611],[-82.09011,36.10601],[-82.09504,36.10602],[-82.09854,36.10571],[-82.1,36.10591],[-82.10164,36.10621],[-82.1024,36.10658],[-82.10316,36.10692],[-82.10465,36.10791],[-82.10545,36.10811],[-82.10606,36.10802],[-82.10694,36.10792],[-82.10815,36.10751],[-82.10917,36.10721],[-82.11066,36.10663],[-82.11238,36.10572],[-82.11296,36.10551],[-82.11376,36.10514],[-82.11484,36.10471],[-82.11525,36.10461],[-82.11615,36.10451],[-82.11736,36.10451],[-82.11825,36.10462],[-82.11923,36.10472],[-82.12087,36.10448],[-82.12252,36.10431],[-82.12404,36.10431],[-82.12484,36.10466],[-82.12495,36.10451],[-82.12504,36.10452],[-82.12524,36.10441],[-82.12714,36.10441],[-82.12713,36.10431],[-82.12726,36.10431],[-82.12746,36.1041],[-82.12805,36.10391],[-82.12884,36.10391],[-82.12914,36.10411],[-82.12935,36.1041],[-82.12982,36.1043],[-82.13024,36.1045],[-82.13047,36.10474],[-82.13065,36.10501],[-82.13076,36.10542],[-82.13066,36.10579],[-82.13065,36.10642],[-82.13075,36.1071],[-82.13098,36.1077],[-82.13116,36.10832],[-82.13145,36.10882],[-82.13165,36.10921],[-82.13235,36.11011],[-82.13262,36.11063],[-82.13285,36.11089],[-82.1333,36.11184],[-82.13394,36.1129],[-82.13405,36.11321],[-82.13433,36.1136],[-82.13465,36.11381],[-82.13514,36.1143],[-82.13546,36.11475],[-82.13565,36.11521],[-82.13575,36.1158],[-82.13585,36.11611],[-82.13613,36.11667],[-82.13702,36.11787],[-82.13715,36.11882],[-82.13797,36.11958],[-82.13788,36.12051],[-82.13736,36.12143],[-82.13684,36.12226],[-82.13656,36.12372],[-82.13686,36.12473],[-82.13694,36.12492],[-82.1368,36.12511],[-82.13665,36.12522],[-82.13665,36.1256],[-82.13676,36.12611],[-82.13665,36.12649],[-82.13665,36.12693],[-82.13655,36.12749],[-82.13655,36.12881],[-82.13695,36.12961],[-82.13736,36.13002],[-82.13786,36.13063],[-82.13875,36.1322],[-82.14015,36.13521],[-82.14048,36.13565],[-82.14085,36.13621],[-82.14099,36.13663],[-82.14076,36.13782],[-82.14084,36.13851],[-82.14135,36.13911],[-82.14174,36.13931],[-82.14215,36.13941],[-82.14283,36.13971],[-82.14335,36.13981],[-82.14407,36.14023],[-82.14425,36.1406],[-82.14395,36.14141],[-82.14426,36.14182],[-82.14435,36.14212],[-82.14425,36.14301],[-82.14415,36.14361],[-82.14416,36.14421],[-82.14485,36.14481],[-82.14566,36.14532],[-82.14615,36.14581],[-82.14626,36.14631],[-82.14664,36.1469],[-82.14697,36.14714],[-82.14734,36.14759],[-82.14765,36.14801],[-82.14755,36.14851],[-82.14796,36.14951],[-82.14874,36.14961],[-82.14985,36.14911],[-82.15058,36.1489],[-82.15135,36.14871],[-82.15152,36.14863],[-82.15206,36.14831],[-82.15245,36.1475],[-82.15254,36.1479],[-82.15275,36.14831],[-82.15314,36.14831],[-82.15375,36.14811],[-82.15435,36.14831],[-82.15595,36.14812],[-82.15685,36.14761],[-82.15734,36.14713],[-82.15805,36.14651],[-82.15905,36.14581],[-82.15935,36.1459],[-82.15995,36.14652],[-82.16035,36.14681],[-82.16106,36.14681],[-82.16163,36.14661],[-82.16223,36.14632],[-82.16274,36.14611],[-82.16286,36.14621],[-82.16296,36.14621],[-82.16296,36.14631],[-82.16324,36.14641],[-82.16345,36.14638],[-82.16371,36.14631],[-82.16921,36.14661],[-82.16975,36.14671],[-82.17016,36.1466],[-82.17065,36.14641],[-82.17214,36.14641],[-82.17283,36.14612],[-82.17344,36.14572],[-82.17386,36.14531],[-82.1743,36.14433],[-82.17465,36.14362],[-82.17505,36.14351],[-82.17564,36.14311],[-82.17615,36.14262],[-82.17685,36.1422],[-82.17757,36.14262],[-82.17858,36.14308],[-82.17919,36.14339],[-82.18036,36.14391],[-82.18094,36.14391],[-82.18185,36.14371],[-82.18255,36.14371],[-82.18285,36.14391],[-82.18285,36.14401],[-82.18316,36.14411],[-82.18365,36.1444],[-82.18425,36.14491],[-82.18476,36.14542],[-82.18506,36.14612],[-82.18515,36.14661],[-82.18545,36.1472],[-82.18596,36.14771],[-82.18657,36.14852],[-82.18686,36.1491],[-82.18686,36.15],[-82.18705,36.15081],[-82.18746,36.15111],[-82.18784,36.15101],[-82.18824,36.15082],[-82.18855,36.15061],[-82.18897,36.15041],[-82.19004,36.15021],[-82.19085,36.14981],[-82.19145,36.14932],[-82.19166,36.149],[-82.19195,36.14881],[-82.19256,36.14891],[-82.19343,36.1494],[-82.19441,36.14979],[-82.19535,36.15001],[-82.19596,36.15061],[-82.19625,36.15121],[-82.19678,36.15173],[-82.19736,36.15211],[-82.19833,36.1522],[-82.19876,36.15231],[-82.19925,36.1527],[-82.19955,36.1532],[-82.19985,36.154],[-82.20016,36.15441],[-82.20097,36.15646],[-82.20356,36.15744],[-82.20681,36.15713],[-82.20848,36.15727],[-82.20954,36.1583],[-82.21025,36.1587],[-82.21126,36.15901],[-82.21253,36.1591],[-82.21388,36.1591],[-82.21489,36.1588],[-82.21565,36.15851],[-82.21647,36.15791],[-82.21723,36.15752],[-82.21797,36.1571],[-82.21841,36.15691],[-82.21939,36.1567],[-82.22026,36.15661],[-82.22086,36.1569],[-82.22132,36.15701],[-82.22187,36.15701],[-82.22205,36.15689],[-82.22186,36.15599],[-82.22186,36.15562],[-82.22216,36.155],[-82.22355,36.15361],[-82.22377,36.15299],[-82.22375,36.1523],[-82.22396,36.15139],[-82.22436,36.1504],[-82.22486,36.15],[-82.22554,36.14951],[-82.22595,36.14901],[-82.22605,36.14851],[-82.22665,36.1479],[-82.22724,36.14762],[-82.22765,36.14734],[-82.22828,36.14663],[-82.22894,36.14567],[-82.22926,36.14453],[-82.23059,36.1444],[-82.2318,36.14394],[-82.23311,36.14301],[-82.23337,36.14224],[-82.23375,36.14222],[-82.23387,36.14213],[-82.23461,36.1421],[-82.23482,36.14172],[-82.23491,36.14162],[-82.23515,36.14113],[-82.23547,36.14076],[-82.23649,36.13985],[-82.23774,36.13919],[-82.23834,36.13908],[-82.23925,36.13831],[-82.23984,36.13792],[-82.24016,36.1375],[-82.24055,36.13731],[-82.24105,36.13731],[-82.24156,36.13711],[-82.24206,36.1365],[-82.24236,36.13551],[-82.24235,36.13521],[-82.24277,36.1348],[-82.24307,36.1347],[-82.24337,36.13429],[-82.24346,36.13391],[-82.24346,36.13353],[-82.24355,36.13281],[-82.24405,36.13242],[-82.24435,36.13211],[-82.24446,36.13167],[-82.24456,36.13141],[-82.24475,36.1312],[-82.24486,36.1312],[-82.24506,36.131],[-82.24516,36.131],[-82.24524,36.13109],[-82.24564,36.1313],[-82.24611,36.13164],[-82.24675,36.132],[-82.24746,36.1322],[-82.24818,36.13231],[-82.24906,36.13251],[-82.24975,36.13241],[-82.24986,36.1323],[-82.25016,36.13221],[-82.25065,36.13211],[-82.25146,36.13211],[-82.25185,36.1322],[-82.2524,36.13274],[-82.25326,36.13372],[-82.25374,36.13448],[-82.25414,36.13538],[-82.25437,36.13572],[-82.25446,36.136],[-82.25476,36.13571],[-82.25486,36.13571],[-82.25595,36.13521],[-82.25693,36.13485],[-82.25895,36.13421],[-82.25977,36.134],[-82.26035,36.13372],[-82.26075,36.13331],[-82.26117,36.13216],[-82.26147,36.13159],[-82.26185,36.13111],[-82.26236,36.1309],[-82.26335,36.13012],[-82.26366,36.12961],[-82.26396,36.12881],[-82.26426,36.12751],[-82.26426,36.12721],[-82.26604,36.12701],[-82.26616,36.12701],[-82.26677,36.1269],[-82.26756,36.12701],[-82.26807,36.12721],[-82.26835,36.12741],[-82.26885,36.1275],[-82.26947,36.1275],[-82.27006,36.1274],[-82.27097,36.12761],[-82.27155,36.1281],[-82.27197,36.1285],[-82.27246,36.1288],[-82.27294,36.1289],[-82.27354,36.12916],[-82.27405,36.1294],[-82.2747,36.12932],[-82.27535,36.12921],[-82.27624,36.12901],[-82.27694,36.12901],[-82.27735,36.1289],[-82.27806,36.12861],[-82.27865,36.1285],[-82.27977,36.12861],[-82.28034,36.1288],[-82.28086,36.1291],[-82.28144,36.12977],[-82.28209,36.13064],[-82.28246,36.1309],[-82.28304,36.1312],[-82.28367,36.13141],[-82.28425,36.13181],[-82.28546,36.1328],[-82.28626,36.13341],[-82.28715,36.13429],[-82.28799,36.13492],[-82.28845,36.1354],[-82.28869,36.13552],[-82.28893,36.13571],[-82.28944,36.13571],[-82.29024,36.13551],[-82.29095,36.1353],[-82.29217,36.1348],[-82.29254,36.13451],[-82.29326,36.13421],[-82.29403,36.13391],[-82.2947,36.13381],[-82.29584,36.1338],[-82.29687,36.1337],[-82.29765,36.13351],[-82.29815,36.13312],[-82.29898,36.13269],[-82.30056,36.13201],[-82.30143,36.13182],[-82.30224,36.13151],[-82.30286,36.13131],[-82.30346,36.13099],[-82.3041,36.13055],[-82.30726,36.1285],[-82.30765,36.12812],[-82.30787,36.12769],[-82.30866,36.12651],[-82.30924,36.12611],[-82.30984,36.12591],[-82.31025,36.12581],[-82.31075,36.1256],[-82.31116,36.12531],[-82.31183,36.12513],[-82.31276,36.1249],[-82.31335,36.12461],[-82.31407,36.1242],[-82.31456,36.1238],[-82.31475,36.12342],[-82.31536,36.1228],[-82.3163,36.12207],[-82.31729,36.12139],[-82.31814,36.12092],[-82.31917,36.1205],[-82.32102,36.11965],[-82.32145,36.11955],[-82.322,36.11961],[-82.32238,36.12],[-82.32285,36.12027],[-82.32301,36.12029],[-82.32345,36.12013],[-82.32517,36.11937],[-82.32726,36.11808],[-82.32837,36.11755],[-82.33008,36.11728],[-82.33105,36.11734],[-82.3323,36.11693],[-82.33303,36.11631],[-82.33405,36.11592],[-82.33438,36.11569],[-82.33513,36.11536],[-82.33605,36.115],[-82.33676,36.1149],[-82.33745,36.11521],[-82.33794,36.11511],[-82.33827,36.115],[-82.33951,36.11521],[-82.34155,36.11541],[-82.34276,36.11571],[-82.34405,36.1157],[-82.34565,36.11541],[-82.34615,36.11541],[-82.34687,36.1152],[-82.34746,36.1153],[-82.34826,36.1157],[-82.34864,36.11622],[-82.34895,36.1167],[-82.34945,36.117],[-82.34996,36.1171],[-82.35056,36.11701],[-82.35116,36.1168],[-82.35247,36.1166],[-82.354,36.11599],[-82.35465,36.1157],[-82.35514,36.11561],[-82.35564,36.11532],[-82.35671,36.11425],[-82.35745,36.11361],[-82.36037,36.11159],[-82.36089,36.11065],[-82.36133,36.11005],[-82.36194,36.10952],[-82.36349,36.10931],[-82.36384,36.10917],[-82.36397,36.10871],[-82.36405,36.10801],[-82.36445,36.10751],[-82.36492,36.10746],[-82.36577,36.10745],[-82.36663,36.10765],[-82.36724,36.10738],[-82.36913,36.10719],[-82.37014,36.10696],[-82.37136,36.10638],[-82.37172,36.10611],[-82.37235,36.10608],[-82.37394,36.10618],[-82.37486,36.10592],[-82.37558,36.10559],[-82.37608,36.10518],[-82.37644,36.10457],[-82.37696,36.1039],[-82.37741,36.10383],[-82.37815,36.10352],[-82.37877,36.10279],[-82.37964,36.10043],[-82.37976,36.1002],[-82.38046,36.0993],[-82.38205,36.0993],[-82.38288,36.0996],[-82.38342,36.09915],[-82.38397,36.0986],[-82.38555,36.09812],[-82.38683,36.0979],[-82.38843,36.09744],[-82.38995,36.09692],[-82.3905,36.09636],[-82.39094,36.09573],[-82.39116,36.09521],[-82.39146,36.09502],[-82.3923,36.09468],[-82.39384,36.09341],[-82.39495,36.0932],[-82.39558,36.09319],[-82.39738,36.09169],[-82.39767,36.0906],[-82.39843,36.09031],[-82.40007,36.0901],[-82.40084,36.08983],[-82.40144,36.08941],[-82.40204,36.08919],[-82.40256,36.08881],[-82.40301,36.08834],[-82.40335,36.08809],[-82.40447,36.08759],[-82.40573,36.08634],[-82.40615,36.08583],[-82.40661,36.08484],[-82.40695,36.0845],[-82.40774,36.08402],[-82.40923,36.0834],[-82.40945,36.0834],[-82.41017,36.08271],[-82.41695,36.0724],[-82.41921,36.06815],[-82.42213,36.06467],[-82.43288,36.04859],[-82.46066,36.00781],[-82.46076,36.00771],[-82.46115,36.00741],[-82.46174,36.00741],[-82.46295,36.00731],[-82.46347,36.007],[-82.46456,36.00651],[-82.46591,36.00554],[-82.46726,36.0046],[-82.46856,36.00341],[-82.46988,36.0031],[-82.46995,36.00311],[-82.47044,36.00292],[-82.47087,36.0027],[-82.47136,36.0022],[-82.47185,36.00162],[-82.47207,36.0014],[-82.47226,36.0011],[-82.47357,36.00045],[-82.47419,36.00011],[-82.47452,35.99939],[-82.47543,35.99858],[-82.47609,35.99817],[-82.4772,35.99844],[-82.47834,35.99865],[-82.48033,35.99857],[-82.4823,35.99781],[-82.4835,35.99629],[-82.48375,35.99502],[-82.48367,35.99386],[-82.48471,35.99283],[-82.4859,35.99232],[-82.48706,35.99179],[-82.48997,35.99006],[-82.49082,35.98912],[-82.49212,35.98848],[-82.49357,35.98701],[-82.49571,35.98567],[-82.49638,35.98504],[-82.49766,35.98444],[-82.49873,35.98364],[-82.49986,35.98294],[-82.50021,35.98255],[-82.50089,35.98216],[-82.50193,35.98205],[-82.503,35.98211],[-82.50367,35.982],[-82.50392,35.98122],[-82.50419,35.97969],[-82.50444,35.97877],[-82.50508,35.97823],[-82.50538,35.97768],[-82.50618,35.97756],[-82.50707,35.97747],[-82.5094,35.97749],[-82.51064,35.9773],[-82.51139,35.97668],[-82.51221,35.97616],[-82.51266,35.97559],[-82.51327,35.97524],[-82.51645,35.97595],[-82.51733,35.97576],[-82.52062,35.97464],[-82.52195,35.97404],[-82.5227,35.97344],[-82.52281,35.97237],[-82.52315,35.97195],[-82.52401,35.97174],[-82.52482,35.97127],[-82.52525,35.97095],[-82.5262,35.9713],[-82.52713,35.97196],[-82.52758,35.97249],[-82.52888,35.97235],[-82.53129,35.97218],[-82.53208,35.97148],[-82.53286,35.97108],[-82.53371,35.97049],[-82.53476,35.96989],[-82.53626,35.96941],[-82.53751,35.96924],[-82.53927,35.96911],[-82.54049,35.96875],[-82.54248,35.96798],[-82.54329,35.96738],[-82.54359,35.96663],[-82.54411,35.96628],[-82.54475,35.96577],[-82.54518,35.96538],[-82.54639,35.96489],[-82.54799,35.96451],[-82.54969,35.96426],[-82.54998,35.96385],[-82.55006,35.96311],[-82.55032,35.96229],[-82.55172,35.96137],[-82.55319,35.96063],[-82.55406,35.95907],[-82.55466,35.95846],[-82.55572,35.95713],[-82.55681,35.9557],[-82.55753,35.95468],[-82.55788,35.9539],[-82.55879,35.95399],[-82.55964,35.95434],[-82.56072,35.95486],[-82.56206,35.95506],[-82.56262,35.95521],[-82.56315,35.95543],[-82.5637,35.9556],[-82.56461,35.95555],[-82.56487,35.95532],[-82.56567,35.95523],[-82.56624,35.95527],[-82.56749,35.95554],[-82.56827,35.95604],[-82.56879,35.9563],[-82.56914,35.95682],[-82.56973,35.95727],[-82.57093,35.95764],[-82.57237,35.95778],[-82.57373,35.95796],[-82.57516,35.95837],[-82.57668,35.95924],[-82.577,35.95997],[-82.57701,35.96131],[-82.57729,35.96285],[-82.57772,35.96419],[-82.57874,35.9647],[-82.581,35.96555],[-82.58334,35.96529],[-82.58445,35.96529],[-82.58525,35.96555],[-82.58613,35.96559],[-82.58727,35.96567],[-82.58864,35.96564],[-82.58952,35.96587],[-82.59048,35.9662],[-82.59199,35.96638],[-82.59315,35.96617],[-82.59486,35.96534],[-82.59678,35.96499],[-82.59775,35.96512],[-82.59877,35.9651],[-82.60037,35.96462],[-82.60392,35.9664],[-82.60507,35.96656],[-82.60649,35.96653],[-82.60776,35.96602],[-82.60871,35.96661],[-82.60922,35.96715],[-82.61019,35.96709],[-82.6109,35.96741],[-82.61098,35.96874],[-82.61115,35.97005],[-82.61161,35.97141],[-82.61133,35.97207],[-82.61127,35.97317],[-82.61089,35.97443],[-82.61003,35.97589],[-82.60938,35.97716],[-82.60896,35.9782],[-82.60789,35.97965],[-82.6077,35.9812],[-82.60735,35.98235],[-82.60717,35.98339],[-82.60675,35.98443],[-82.60526,35.98578],[-82.60424,35.98732],[-82.60483,35.9884],[-82.60566,35.98987],[-82.60622,35.99108],[-82.60694,35.99216],[-82.60789,35.99256],[-82.60887,35.99281],[-82.61015,35.99305],[-82.61124,35.99321],[-82.6126,35.99348],[-82.61303,35.994],[-82.61303,35.99468],[-82.61288,35.9955],[-82.61327,35.99636],[-82.61373,35.99732],[-82.61429,35.99835],[-82.61463,35.99922],[-82.61502,36.0001],[-82.61508,36.0003],[-82.61496,36.00049],[-82.61497,36.0006],[-82.61487,36.00121],[-82.61486,36.00161],[-82.61457,36.00229],[-82.61437,36.00299],[-82.61437,36.00349],[-82.61427,36.00369],[-82.61408,36.00427],[-82.61387,36.0047],[-82.61368,36.0048],[-82.61344,36.00481],[-82.61298,36.005],[-82.61286,36.005],[-82.61218,36.00588],[-82.61186,36.00621],[-82.61137,36.0065],[-82.61086,36.00661],[-82.61086,36.0067],[-82.61077,36.0069],[-82.61027,36.0072],[-82.61016,36.00731],[-82.60976,36.0075],[-82.60947,36.0077],[-82.60917,36.0078],[-82.60846,36.0083],[-82.60826,36.00851],[-82.60817,36.0088],[-82.60816,36.00901],[-82.60757,36.0099],[-82.60757,36.01021],[-82.60765,36.0103],[-82.60935,36.01089],[-82.60946,36.01099],[-82.60937,36.01144],[-82.60937,36.0116],[-82.60912,36.01185],[-82.60877,36.01231],[-82.60858,36.01291],[-82.60857,36.0145],[-82.60827,36.0153],[-82.60756,36.0159],[-82.60695,36.01631],[-82.60655,36.01651],[-82.60567,36.0167],[-82.60473,36.01708],[-82.60376,36.01741],[-82.60325,36.01741],[-82.60286,36.0179],[-82.60286,36.01799],[-82.60316,36.0189],[-82.60337,36.01939],[-82.60336,36.01981],[-82.60376,36.02059],[-82.60397,36.02122],[-82.60397,36.0213],[-82.60377,36.0218],[-82.60367,36.02201],[-82.60357,36.02251],[-82.60338,36.02278],[-82.60326,36.023],[-82.6029,36.02338],[-82.60235,36.02381],[-82.60205,36.02411],[-82.60177,36.0243],[-82.60127,36.02439],[-82.60106,36.02441],[-82.60027,36.02551],[-82.60016,36.0257],[-82.59998,36.02588],[-82.59904,36.02662],[-82.59837,36.027],[-82.59816,36.0272],[-82.59625,36.02871],[-82.59597,36.0288],[-82.59515,36.02921],[-82.59408,36.03009],[-82.59245,36.031],[-82.59196,36.0312],[-82.59127,36.0314],[-82.59107,36.0315],[-82.59077,36.03189],[-82.59077,36.03201],[-82.59066,36.032],[-82.59066,36.03209],[-82.59096,36.0336],[-82.59127,36.0341],[-82.59158,36.03487],[-82.59196,36.0357],[-82.59237,36.0358],[-82.59266,36.0358],[-82.59297,36.0359],[-82.59348,36.03601],[-82.59436,36.0361],[-82.59476,36.03629],[-82.59527,36.0364],[-82.59557,36.0366],[-82.59687,36.0366],[-82.59758,36.0365],[-82.59827,36.0366],[-82.59955,36.0364],[-82.60012,36.03621],[-82.60075,36.03611],[-82.60137,36.0359],[-82.60177,36.036],[-82.60187,36.03618],[-82.60187,36.03648],[-82.60176,36.03692],[-82.60167,36.03761],[-82.60167,36.03801],[-82.60197,36.0387],[-82.60236,36.0394],[-82.60245,36.03949],[-82.60266,36.0396],[-82.60297,36.0396],[-82.60288,36.03982],[-82.60298,36.04],[-82.60317,36.04],[-82.60327,36.0401],[-82.60384,36.04022],[-82.60435,36.0403],[-82.60536,36.0406],[-82.60616,36.041],[-82.60627,36.0412],[-82.60647,36.0414],[-82.60666,36.04169],[-82.60718,36.04222],[-82.60778,36.04311],[-82.60797,36.0433],[-82.60838,36.04382],[-82.60894,36.04427],[-82.60946,36.0448],[-82.60967,36.04491],[-82.61028,36.04501],[-82.61047,36.0451],[-82.61097,36.04491],[-82.61117,36.0449],[-82.61147,36.0454],[-82.61226,36.046],[-82.61357,36.04641],[-82.61398,36.04631],[-82.61496,36.0463],[-82.61528,36.04641],[-82.61567,36.0467],[-82.61627,36.0469],[-82.61716,36.04671],[-82.61746,36.0467],[-82.61782,36.04688],[-82.61818,36.04701],[-82.61837,36.04759],[-82.61827,36.04809],[-82.61818,36.04839],[-82.61796,36.04929],[-82.61808,36.0513],[-82.61796,36.0514],[-82.6178,36.05225],[-82.61769,36.0526],[-82.61756,36.05332],[-82.61727,36.05419],[-82.61747,36.05441],[-82.61797,36.0548],[-82.61796,36.05539],[-82.6187,36.05613],[-82.61928,36.0566],[-82.62006,36.057],[-82.62077,36.0571],[-82.6215,36.05731],[-82.62228,36.0575],[-82.62276,36.0579],[-82.62287,36.0584],[-82.62378,36.05881],[-82.62386,36.0592],[-82.62416,36.0593],[-82.62428,36.05962],[-82.62438,36.0598],[-82.62467,36.06001],[-82.62487,36.06022],[-82.62617,36.0607],[-82.62666,36.061],[-82.62713,36.06136],[-82.62785,36.06189],[-82.62798,36.062],[-82.62836,36.06209],[-82.62875,36.06239],[-82.62931,36.06272],[-82.62986,36.06309],[-82.63027,36.0634],[-82.63075,36.06349],[-82.63107,36.06369],[-82.63155,36.0639],[-82.63187,36.06409],[-82.63207,36.0642],[-82.63217,36.0647],[-82.63217,36.06541],[-82.63226,36.06568],[-82.63245,36.0658],[-82.63263,36.06578],[-82.63276,36.0658],[-82.63347,36.0657],[-82.63394,36.0656],[-82.63479,36.0656],[-82.63563,36.06579],[-82.63637,36.0659],[-82.63717,36.0658],[-82.63745,36.06551],[-82.63788,36.06528],[-82.63824,36.06503],[-82.63837,36.06491],[-82.63848,36.06489],[-82.63968,36.0642],[-82.64066,36.0638],[-82.64125,36.06351],[-82.64177,36.0633],[-82.64218,36.0633],[-82.64296,36.06311],[-82.64356,36.06281],[-82.64537,36.0616],[-82.64598,36.06109],[-82.64658,36.06049],[-82.64677,36.0601],[-82.64748,36.05953],[-82.64941,36.05828],[-82.64976,36.058],[-82.65017,36.0578],[-82.65156,36.0573],[-82.65188,36.0573],[-82.65276,36.0572],[-82.65317,36.0571],[-82.65367,36.0569],[-82.65396,36.05661],[-82.65453,36.05634],[-82.65482,36.05621],[-82.65718,36.0566],[-82.65848,36.0571],[-82.65916,36.0571],[-82.65946,36.0569],[-82.65967,36.0566],[-82.65996,36.05631],[-82.66027,36.0559],[-82.66066,36.0556],[-82.66147,36.0554],[-82.66267,36.055],[-82.66335,36.05471],[-82.66447,36.05411],[-82.66536,36.0535],[-82.66597,36.0532],[-82.66677,36.05289],[-82.66716,36.053],[-82.66787,36.053],[-82.66837,36.0529],[-82.66876,36.053],[-82.66929,36.0532],[-82.67004,36.053],[-82.67067,36.0528],[-82.67086,36.05261],[-82.67127,36.05201],[-82.67146,36.0519],[-82.67185,36.0518],[-82.67236,36.0517],[-82.67247,36.0516],[-82.67317,36.0499],[-82.67346,36.04973],[-82.67377,36.0495],[-82.67416,36.04941],[-82.67506,36.0487],[-82.67565,36.0486],[-82.67598,36.0487],[-82.67806,36.0487],[-82.67826,36.0486],[-82.67875,36.0486],[-82.67927,36.0484],[-82.67967,36.0479],[-82.68045,36.04713],[-82.68103,36.04664],[-82.68169,36.04619],[-82.68207,36.046],[-82.68257,36.046],[-82.68297,36.0461],[-82.68356,36.0461],[-82.68427,36.0456],[-82.68476,36.045],[-82.68497,36.0444],[-82.68527,36.043],[-82.68526,36.0427],[-82.68538,36.04228],[-82.68619,36.04113],[-82.68704,36.04012],[-82.68795,36.03921],[-82.68884,36.03861],[-82.69024,36.03791],[-82.69075,36.0377],[-82.69118,36.0377],[-82.69176,36.0376],[-82.69226,36.03761],[-82.69294,36.03712],[-82.69347,36.0368],[-82.69448,36.0368],[-82.69506,36.0367],[-82.69606,36.0361],[-82.69626,36.0361],[-82.69686,36.03601],[-82.69727,36.0358],[-82.69767,36.03551],[-82.69787,36.035],[-82.69787,36.0344],[-82.69806,36.03421],[-82.69827,36.0341],[-82.69857,36.03421],[-82.69906,36.03429],[-82.69988,36.0345],[-82.70047,36.0346],[-82.70107,36.0344],[-82.70128,36.0341],[-82.70136,36.03371],[-82.70137,36.0333],[-82.70148,36.03299],[-82.70166,36.03271],[-82.70216,36.03241],[-82.70227,36.0325],[-82.70266,36.0325],[-82.70315,36.03241],[-82.70384,36.03207],[-82.70447,36.0318],[-82.70601,36.03081],[-82.70704,36.03026],[-82.70826,36.0298],[-82.70905,36.0297],[-82.70967,36.0298],[-82.71047,36.0298],[-82.71076,36.0295],[-82.71178,36.0293],[-82.71214,36.02921],[-82.71287,36.0291],[-82.71356,36.0291],[-82.71429,36.02899],[-82.71487,36.02881],[-82.71516,36.0286],[-82.71547,36.028],[-82.71557,36.0273],[-82.71557,36.02689],[-82.71547,36.0261],[-82.71547,36.0252],[-82.71537,36.02461],[-82.71537,36.0238],[-82.71547,36.02361],[-82.71557,36.0232],[-82.71566,36.023],[-82.71596,36.02281],[-82.71665,36.02241],[-82.71737,36.0221],[-82.71806,36.022],[-82.71877,36.022],[-82.71916,36.0219],[-82.71967,36.0217],[-82.72017,36.0214],[-82.72065,36.02091],[-82.72137,36.0203],[-82.72227,36.0197],[-82.72267,36.0195],[-82.72267,36.0194],[-82.72455,36.01851],[-82.72508,36.0182],[-82.72567,36.0181],[-82.72676,36.0184],[-82.72736,36.0185],[-82.72788,36.01849],[-82.72886,36.0181],[-82.72927,36.0179],[-82.72977,36.0178],[-82.73017,36.0176],[-82.73187,36.0176],[-82.73217,36.0173],[-82.73227,36.017],[-82.73257,36.01661],[-82.73287,36.0161],[-82.73327,36.0157],[-82.73377,36.0154],[-82.73425,36.0152],[-82.73467,36.0151],[-82.73517,36.0151],[-82.73698,36.0154],[-82.73756,36.0154],[-82.73827,36.0152],[-82.73887,36.015],[-82.73937,36.0147],[-82.73957,36.0145],[-82.73926,36.01389],[-82.73927,36.0132],[-82.73956,36.0126],[-82.74007,36.0121],[-82.74046,36.0119],[-82.74076,36.012],[-82.74177,36.0125],[-82.74227,36.0125],[-82.74287,36.0122],[-82.74307,36.0119],[-82.74317,36.0116],[-82.74307,36.01108],[-82.74317,36.01079],[-82.74368,36.0105],[-82.74407,36.0103],[-82.74457,36.0099],[-82.74534,36.00961],[-82.74597,36.0094],[-82.74676,36.00959],[-82.74746,36.0099],[-82.74828,36.01],[-82.74887,36.0099],[-82.74949,36.00939],[-82.74977,36.0092],[-82.74987,36.0092],[-82.74997,36.0091],[-82.75008,36.0091],[-82.75017,36.009],[-82.75037,36.00899],[-82.75046,36.0089],[-82.75067,36.0088],[-82.75067,36.0086],[-82.75037,36.00809],[-82.75017,36.00759],[-82.75017,36.00749],[-82.75007,36.00719],[-82.74997,36.00657],[-82.74996,36.0063],[-82.75007,36.00611],[-82.75007,36.006],[-82.75156,36.006],[-82.75177,36.0061],[-82.75217,36.0061],[-82.75217,36.006],[-82.75237,36.006],[-82.75257,36.00579],[-82.75298,36.00529],[-82.75342,36.00494],[-82.75386,36.0046],[-82.75418,36.0045],[-82.75447,36.0043],[-82.75477,36.0043],[-82.75526,36.0044],[-82.75598,36.0044],[-82.75695,36.0043],[-82.75755,36.0042],[-82.75788,36.0042],[-82.75857,36.004],[-82.75917,36.00399],[-82.75917,36.0042],[-82.75966,36.00449],[-82.75976,36.00459],[-82.75977,36.0047],[-82.76007,36.0049],[-82.76087,36.0049],[-82.76147,36.0048],[-82.76207,36.0048],[-82.76207,36.0047],[-82.76226,36.0047],[-82.76237,36.0046],[-82.76266,36.0046],[-82.76307,36.0045],[-82.76317,36.0042],[-82.76437,36.0036],[-82.76447,36.0036],[-82.76457,36.0035],[-82.76498,36.00329],[-82.76536,36.003],[-82.76566,36.0029],[-82.76577,36.0028],[-82.76617,36.0027],[-82.76668,36.0025],[-82.76707,36.0025],[-82.76744,36.0024],[-82.76796,36.0023],[-82.76886,36.002],[-82.76928,36.0018],[-82.76988,36.00169],[-82.77124,36.00121],[-82.77149,36.001],[-82.77228,36.00059],[-82.77257,36.00049],[-82.77411,36.00054],[-82.77475,36.00071],[-82.77488,36.0008],[-82.77587,36.0008],[-82.77597,36.00051],[-82.77598,36.0003],[-82.77601,36.0001],[-82.77579,35.99899],[-82.77652,35.99843],[-82.77729,35.9988],[-82.778,35.99803],[-82.77859,35.99699],[-82.77826,35.99599],[-82.77886,35.99492],[-82.77939,35.99251],[-82.78025,35.9921],[-82.78061,35.99146],[-82.7814,35.99105],[-82.78219,35.99039],[-82.78336,35.98976],[-82.78456,35.98917],[-82.78571,35.98882],[-82.78527,35.98792],[-82.78501,35.98633],[-82.78509,35.98507],[-82.78526,35.98417],[-82.78481,35.98281],[-82.78417,35.98187],[-82.78487,35.98096],[-82.78514,35.97977],[-82.78544,35.97867],[-82.78556,35.97779],[-82.78458,35.97708],[-82.78331,35.97564],[-82.78181,35.97456],[-82.78032,35.97436],[-82.77862,35.97478],[-82.77761,35.9743],[-82.77644,35.97388],[-82.77588,35.97334],[-82.77491,35.97197],[-82.77577,35.97135],[-82.77683,35.97017],[-82.77727,35.96816],[-82.77775,35.96691],[-82.77924,35.9663],[-82.78152,35.96557],[-82.78309,35.96497],[-82.78454,35.96389],[-82.78536,35.96251],[-82.78533,35.96078],[-82.78519,35.95922],[-82.78604,35.95743],[-82.78704,35.95586],[-82.78708,35.95468],[-82.78709,35.95342],[-82.78747,35.95215],[-82.78853,35.95135],[-82.78976,35.95178],[-82.79067,35.95117],[-82.79145,35.95096],[-82.79214,35.94962],[-82.79349,35.94866],[-82.79434,35.94744],[-82.79509,35.94661],[-82.79656,35.94647],[-82.79802,35.94556],[-82.79919,35.94504],[-82.80043,35.94416],[-82.80146,35.94266],[-82.80211,35.94144],[-82.80344,35.94044],[-82.80411,35.93923],[-82.80436,35.93869],[-82.80585,35.93794],[-82.80619,35.93691],[-82.80597,35.93613],[-82.80578,35.93531],[-82.80532,35.93431],[-82.80466,35.93381],[-82.80457,35.93382],[-82.80423,35.93268],[-82.80359,35.93138],[-82.80277,35.93012],[-82.8029,35.92901],[-82.8041,35.92842],[-82.805,35.92716],[-82.80611,35.92708],[-82.80725,35.92696],[-82.80903,35.92724],[-82.81078,35.92684],[-82.81106,35.9268],[-82.81266,35.92556],[-82.81349,35.92533],[-82.81514,35.92565],[-82.81541,35.92452],[-82.81612,35.92399],[-82.81832,35.92345],[-82.81972,35.92262],[-82.82041,35.92208],[-82.82187,35.92183],[-82.82258,35.92254],[-82.82296,35.92396],[-82.82355,35.92522],[-82.82494,35.92627],[-82.82557,35.9271],[-82.82627,35.92756],[-82.82661,35.92818],[-82.82588,35.92915],[-82.82604,35.92971],[-82.8266,35.93025],[-82.82728,35.93112],[-82.8282,35.93209],[-82.82893,35.93293],[-82.8301,35.93297],[-82.83097,35.93251],[-82.83189,35.93289],[-82.83289,35.9332],[-82.83326,35.93497],[-82.83382,35.93581],[-82.83475,35.93616],[-82.83533,35.93671],[-82.83638,35.93732],[-82.83782,35.9373],[-82.83884,35.93745],[-82.83926,35.93818],[-82.83923,35.93909],[-82.84006,35.94024],[-82.84126,35.94172],[-82.84192,35.94198],[-82.84359,35.94205],[-82.8446,35.94205],[-82.84473,35.94267],[-82.84461,35.94388],[-82.84487,35.94522],[-82.84584,35.9463],[-82.84642,35.94613],[-82.84752,35.94613],[-82.849,35.94704],[-82.84985,35.94775],[-82.85059,35.94884],[-82.85115,35.9493],[-82.85164,35.94955],[-82.85225,35.94943],[-82.85256,35.94908],[-82.8538,35.94885],[-82.85579,35.94835],[-82.85892,35.94794],[-82.85958,35.94778],[-82.86073,35.94742],[-82.86142,35.94772],[-82.86259,35.94839],[-82.86354,35.9488],[-82.86469,35.949],[-82.86651,35.9496],[-82.86723,35.95045],[-82.86806,35.95058],[-82.86933,35.95057],[-82.86982,35.951],[-82.87067,35.95199],[-82.87152,35.95217],[-82.87307,35.95241],[-82.87416,35.95269],[-82.87484,35.95238],[-82.87606,35.95163],[-82.87747,35.95101],[-82.878,35.95048],[-82.87932,35.95021],[-82.8808,35.95002],[-82.88242,35.94983],[-82.88324,35.94964],[-82.88394,35.94919],[-82.88671,35.94859],[-82.8877,35.94877],[-82.88913,35.94834],[-82.88978,35.94751],[-82.8908,35.94646],[-82.89194,35.94573],[-82.89266,35.94518],[-82.89373,35.94487],[-82.89544,35.94488],[-82.89694,35.94462],[-82.89783,35.94487],[-82.89851,35.9451],[-82.90172,35.93769],[-82.90169,35.93699],[-82.90125,35.93646],[-82.90153,35.93556],[-82.90095,35.93468],[-82.90043,35.93436],[-82.90025,35.93376],[-82.90031,35.93317],[-82.89968,35.93263],[-82.89948,35.93222],[-82.89965,35.93171],[-82.89941,35.9311],[-82.89901,35.93037],[-82.8993,35.92957],[-82.90033,35.92904],[-82.90037,35.9285],[-82.90101,35.92821],[-82.90161,35.92741],[-82.9021,35.92681],[-82.90298,35.92663],[-82.90386,35.92621],[-82.90484,35.9261],[-82.90602,35.92628],[-82.90747,35.92689],[-82.90819,35.92725],[-82.91018,35.92746],[-82.91103,35.92778],[-82.91153,35.92813],[-82.91171,35.92842],[-82.91181,35.92888],[-82.91205,35.92942],[-82.91271,35.92958],[-82.91439,35.92968],[-82.91591,35.92915],[-82.91805,35.92889],[-82.9199,35.9288],[-82.92002,35.92843],[-82.92009,35.9277],[-82.9204,35.92721],[-82.91965,35.92629],[-82.9192,35.92581],[-82.91773,35.92499],[-82.91684,35.92415],[-82.91603,35.92428],[-82.91537,35.92449],[-82.91473,35.92441],[-82.91381,35.92448],[-82.91335,35.92409],[-82.91346,35.92296],[-82.91348,35.92181],[-82.91321,35.9211],[-82.9129,35.92055],[-82.91228,35.9203],[-82.91182,35.91982],[-82.91186,35.91914],[-82.91213,35.91868],[-82.91244,35.91792],[-82.91204,35.91751],[-82.9117,35.91675],[-82.91203,35.91641],[-82.91322,35.91579],[-82.91422,35.91543],[-82.9145,35.91515],[-82.91397,35.91477],[-82.91336,35.91424],[-82.91312,35.91365],[-82.9127,35.91347],[-82.91201,35.91339],[-82.91123,35.91301],[-82.91066,35.91277],[-82.9103,35.91196],[-82.90988,35.91109],[-82.90942,35.91099],[-82.90878,35.91116],[-82.90822,35.91109],[-82.90817,35.91034],[-82.90833,35.90964],[-82.90825,35.90923],[-82.90769,35.9085],[-82.90692,35.90738],[-82.90842,35.90506],[-82.9078,35.90388],[-82.90666,35.90348],[-82.90611,35.90299],[-82.90574,35.90195],[-82.90497,35.89947],[-82.90482,35.89785],[-82.90455,35.89701],[-82.90389,35.89627],[-82.90313,35.89531],[-82.90278,35.89445],[-82.90217,35.89339],[-82.90111,35.89295],[-82.90123,35.89224],[-82.90215,35.89143],[-82.90206,35.89036],[-82.9029,35.88864],[-82.904,35.88749],[-82.90518,35.8864],[-82.90624,35.88525],[-82.90654,35.88407],[-82.90641,35.88369],[-82.90585,35.88299],[-82.90522,35.88277],[-82.90505,35.88222],[-82.90431,35.88136],[-82.90356,35.88037],[-82.9028,35.88057],[-82.90205,35.88081],[-82.90111,35.88073],[-82.90003,35.88123],[-82.89966,35.88112],[-82.8992,35.88106],[-82.89865,35.88121],[-82.89797,35.88127],[-82.89711,35.88078],[-82.89632,35.88028],[-82.89609,35.87974],[-82.89624,35.87912],[-82.89658,35.87847],[-82.89727,35.87788],[-82.89793,35.87758],[-82.89824,35.87706],[-82.89889,35.87642],[-82.89941,35.87577],[-82.89952,35.87508],[-82.89969,35.87486],[-82.89974,35.87439],[-82.90001,35.87389],[-82.90041,35.87333],[-82.90131,35.87258],[-82.90189,35.87244],[-82.90256,35.87234],[-82.90336,35.87196],[-82.9039,35.87182],[-82.90532,35.87124],[-82.90603,35.87075],[-82.90638,35.8703],[-82.90656,35.87024],[-82.90715,35.87012],[-82.9076,35.8699],[-82.90789,35.86967],[-82.90876,35.86944],[-82.90962,35.86918],[-82.91035,35.86883],[-82.91074,35.8686],[-82.91164,35.86871],[-82.91227,35.86853],[-82.91301,35.86847],[-82.91476,35.86872],[-82.91548,35.86875],[-82.916,35.86872],[-82.91862,35.86872],[-82.91925,35.86869],[-82.91989,35.8686],[-82.92061,35.86848],[-82.92085,35.86811],[-82.92081,35.86756],[-82.92089,35.867],[-82.92118,35.86633],[-82.92117,35.86588],[-82.92087,35.86495],[-82.92088,35.86462],[-82.92144,35.86332],[-82.92133,35.86283],[-82.92091,35.86224],[-82.92053,35.86159],[-82.92046,35.86137],[-82.92003,35.86111],[-82.91945,35.86084],[-82.91875,35.86032],[-82.91857,35.86002],[-82.91851,35.85915],[-82.91864,35.85875],[-82.91924,35.85825],[-82.91965,35.85785],[-82.91979,35.85731],[-82.92013,35.8565],[-82.92029,35.85601],[-82.92032,35.85548],[-82.92024,35.85519],[-82.9199,35.85477],[-82.91983,35.85455],[-82.91983,35.85437],[-82.92007,35.8538],[-82.9203,35.85321],[-82.92025,35.85261],[-82.91998,35.85241],[-82.91988,35.85221],[-82.91991,35.85209],[-82.92006,35.85191],[-82.92058,35.85162],[-82.92091,35.85131],[-82.92098,35.85107],[-82.92091,35.85074],[-82.92065,35.85046],[-82.92029,35.85022],[-82.91991,35.84986],[-82.91982,35.84968],[-82.91977,35.84933],[-82.91983,35.84834],[-82.91981,35.84816],[-82.91974,35.8479],[-82.91922,35.84742],[-82.91903,35.84701],[-82.91883,35.84641],[-82.91856,35.84584],[-82.91836,35.84546],[-82.9174,35.84461],[-82.91722,35.84423],[-82.91717,35.8434],[-82.91703,35.84298],[-82.91641,35.84194],[-82.91631,35.84179],[-82.91628,35.8416],[-82.91656,35.84136],[-82.91743,35.84114],[-82.91789,35.84105],[-82.91882,35.841],[-82.9192,35.84083],[-82.91951,35.84059],[-82.92003,35.83957],[-82.92022,35.83938],[-82.92075,35.83931],[-82.92356,35.8391],[-82.92438,35.83901],[-82.92757,35.83858],[-82.92888,35.8382],[-82.92955,35.83803],[-82.93018,35.83781],[-82.93191,35.83753],[-82.93213,35.83745],[-82.93276,35.83717],[-82.9332,35.83695],[-82.93369,35.8368],[-82.934,35.83663],[-82.93404,35.83652],[-82.93396,35.83635],[-82.9335,35.83578],[-82.93313,35.83527],[-82.93296,35.83496],[-82.93285,35.83463],[-82.93284,35.8338],[-82.9328,35.83355],[-82.93286,35.83323],[-82.93323,35.83291],[-82.93365,35.8327],[-82.93389,35.83251],[-82.93396,35.83238],[-82.93395,35.83222],[-82.93378,35.83175],[-82.93381,35.8313],[-82.93371,35.83113],[-82.9332,35.83063],[-82.93319,35.83045],[-82.93445,35.82931],[-82.93464,35.82904],[-82.93474,35.82879],[-82.93481,35.82839],[-82.93504,35.82792],[-82.93528,35.82728],[-82.93563,35.82661],[-82.9358,35.82611],[-82.93596,35.82556],[-82.93618,35.82543],[-82.93686,35.82535],[-82.93765,35.82534],[-82.93802,35.82542],[-82.93823,35.82551],[-82.93865,35.82583],[-82.93876,35.82588],[-82.93972,35.82571],[-82.94099,35.82585],[-82.94382,35.82564],[-82.94429,35.82549],[-82.94552,35.82466],[-82.94584,35.8243],[-82.94629,35.82358],[-82.9468,35.82304],[-82.94689,35.82275],[-82.9467,35.822],[-82.94699,35.82174],[-82.9477,35.821],[-82.94824,35.8202],[-82.94854,35.81989],[-82.94846,35.81931],[-82.94829,35.81867],[-82.94807,35.81808],[-82.94803,35.8178],[-82.94818,35.81762],[-82.94854,35.8174],[-82.949,35.81706],[-82.94948,35.81651],[-82.9498,35.81627],[-82.95014,35.81628],[-82.95052,35.81641],[-82.95098,35.81675],[-82.95132,35.81681],[-82.95153,35.81675],[-82.95203,35.81618],[-82.95231,35.81542],[-82.95271,35.8149],[-82.95289,35.81454],[-82.95376,35.81376],[-82.95385,35.81356],[-82.95389,35.81301],[-82.95394,35.81266],[-82.95414,35.81235],[-82.95453,35.81186],[-82.95471,35.81157],[-82.95492,35.81085],[-82.95499,35.81066],[-82.95575,35.8098],[-82.95597,35.8092],[-82.95598,35.80828],[-82.95613,35.80787],[-82.95661,35.80731],[-82.95707,35.80687],[-82.95752,35.80625],[-82.95792,35.80546],[-82.95828,35.80465],[-82.95847,35.80408],[-82.95893,35.80335],[-82.95942,35.80268],[-82.95989,35.80223],[-82.96052,35.80176],[-82.96089,35.80145],[-82.96125,35.80111],[-82.96173,35.80049],[-82.96191,35.79985],[-82.96195,35.79922],[-82.96187,35.79862],[-82.96195,35.79761],[-82.96187,35.79721],[-82.96173,35.79703],[-82.96172,35.79691],[-82.96227,35.79643],[-82.96242,35.79605],[-82.96281,35.79556],[-82.96285,35.79518],[-82.96278,35.79402],[-82.96262,35.79335],[-82.96222,35.79276],[-82.96179,35.79226],[-82.9617,35.7918],[-82.96165,35.79105],[-82.963,35.79007],[-82.96344,35.78994],[-82.96379,35.78992],[-82.96409,35.78997],[-82.96461,35.7903],[-82.96513,35.79039],[-82.9657,35.79029],[-82.96632,35.79006],[-82.96675,35.78994],[-82.9674,35.78986],[-82.96793,35.78975],[-82.96821,35.78972],[-82.9685,35.78973],[-82.96917,35.78988],[-82.96965,35.78966],[-82.97021,35.78929],[-82.9711,35.78885],[-82.97158,35.7884],[-82.97205,35.788],[-82.97326,35.7875],[-82.97372,35.78722],[-82.97425,35.78696],[-82.97447,35.78678],[-82.9746,35.78652],[-82.97466,35.78615],[-82.97484,35.78584],[-82.97528,35.78556],[-82.97573,35.7852],[-82.9764,35.78491],[-82.97691,35.78453],[-82.9772,35.78418],[-82.97754,35.78348],[-82.97799,35.78296],[-82.97842,35.78261],[-82.97935,35.78228],[-82.9799,35.78202],[-82.98029,35.7817],[-82.98073,35.78127],[-82.98092,35.78085],[-82.98111,35.78033],[-82.98142,35.78002],[-82.98208,35.77959],[-82.98295,35.77892],[-82.98397,35.778],[-82.98461,35.77792],[-82.98509,35.77777],[-82.98669,35.77708],[-82.98701,35.77684],[-82.98715,35.77654],[-82.98753,35.77626],[-82.98783,35.77615],[-82.98835,35.77608],[-82.98885,35.77609],[-82.98942,35.77603],[-82.99006,35.77571],[-82.99086,35.77518],[-82.99121,35.77488],[-82.99159,35.77437],[-82.99191,35.77401],[-82.99202,35.77396],[-82.9924,35.77382],[-82.99533,35.77325],[-82.99581,35.77312],[-82.99611,35.77314],[-82.99692,35.77322],[-82.9981,35.77325],[-82.99859,35.77344],[-82.99919,35.7736],[-82.99961,35.77389],[-82.99986,35.77388],[-83.0012,35.77363],[-83.00148,35.77375],[-83.00159,35.77393],[-83.00157,35.77427],[-83.00173,35.77466],[-83.00217,35.77511],[-83.00284,35.77541],[-83.00318,35.77558],[-83.00334,35.77581],[-83.00359,35.77659],[-83.00364,35.77685],[-83.00386,35.77694],[-83.00427,35.77707],[-83.00512,35.77739],[-83.00578,35.77816],[-83.00607,35.7784],[-83.00633,35.77847],[-83.0068,35.77853],[-83.00729,35.77845],[-83.00742,35.77841],[-83.00776,35.77848],[-83.00821,35.77862],[-83.00858,35.77882],[-83.00886,35.7789],[-83.00903,35.77875],[-83.00921,35.77863],[-83.00941,35.77854],[-83.00976,35.77863],[-83.01027,35.77879],[-83.01037,35.77879],[-83.01061,35.7786],[-83.01145,35.77886],[-83.01178,35.77915],[-83.01205,35.77949],[-83.01239,35.77982],[-83.0133,35.78058],[-83.0138,35.78093],[-83.01397,35.78101],[-83.01451,35.78117],[-83.01487,35.78124],[-83.01521,35.78127],[-83.01541,35.78134],[-83.01561,35.7816],[-83.01602,35.7819],[-83.01621,35.78196],[-83.01784,35.78152],[-83.01851,35.78104],[-83.01885,35.78086],[-83.01923,35.78062],[-83.02006,35.78026],[-83.02027,35.78028],[-83.0207,35.7804],[-83.02184,35.78132],[-83.02237,35.78198],[-83.02276,35.78219],[-83.02311,35.78245],[-83.02327,35.78287],[-83.02358,35.78311],[-83.02402,35.78337],[-83.02528,35.78357],[-83.02582,35.78364],[-83.02619,35.78382],[-83.02659,35.78408],[-83.02678,35.78427],[-83.02726,35.78455],[-83.02748,35.7848],[-83.02782,35.78489],[-83.0282,35.78485],[-83.02845,35.78489],[-83.02926,35.78518],[-83.02993,35.78551],[-83.03021,35.78549],[-83.03069,35.78531],[-83.03113,35.78512],[-83.03153,35.78519],[-83.03226,35.78593],[-83.03251,35.78611],[-83.0331,35.78634],[-83.0335,35.7867],[-83.03392,35.78688],[-83.03477,35.78692],[-83.03542,35.78711],[-83.03622,35.7874],[-83.03645,35.78744],[-83.03688,35.78729],[-83.03727,35.78697],[-83.03745,35.78678],[-83.03793,35.7867],[-83.03816,35.78677],[-83.03849,35.78691],[-83.0388,35.78693],[-83.03949,35.78678],[-83.04072,35.78636],[-83.04149,35.786],[-83.04199,35.78585],[-83.04223,35.78566],[-83.04267,35.7854],[-83.04313,35.78533],[-83.04372,35.78535],[-83.04411,35.78534],[-83.04509,35.78554],[-83.04573,35.78565],[-83.0463,35.78584],[-83.04662,35.78603],[-83.04697,35.78634],[-83.04732,35.78657],[-83.04766,35.78691],[-83.04827,35.78739],[-83.04853,35.7877],[-83.04892,35.78788],[-83.05076,35.78838],[-83.05111,35.7886],[-83.0517,35.78894],[-83.05217,35.78935],[-83.05245,35.7895],[-83.05268,35.78955],[-83.05345,35.78941],[-83.05517,35.78894],[-83.05542,35.78896],[-83.0558,35.78893],[-83.0566,35.78877],[-83.05736,35.78854],[-83.05774,35.78836],[-83.05834,35.78823],[-83.05866,35.78804],[-83.05911,35.78783],[-83.05943,35.78773],[-83.06029,35.78751],[-83.0606,35.78733],[-83.06108,35.78695],[-83.0615,35.78677],[-83.0618,35.78675],[-83.06242,35.78679],[-83.06289,35.78676],[-83.06338,35.78666],[-83.06397,35.78664],[-83.06429,35.7867],[-83.06498,35.78707],[-83.06527,35.78714],[-83.06686,35.78712],[-83.06732,35.78714],[-83.06893,35.78779],[-83.06934,35.78788],[-83.07007,35.78791],[-83.07076,35.78797],[-83.07138,35.78809],[-83.07167,35.78825],[-83.07222,35.78831],[-83.07252,35.78853],[-83.07381,35.78982],[-83.07403,35.79001],[-83.07444,35.79001],[-83.07498,35.78989],[-83.07616,35.78942],[-83.07654,35.78923],[-83.07706,35.7892],[-83.07824,35.78952],[-83.07847,35.78956],[-83.07873,35.78947],[-83.07908,35.78914],[-83.07994,35.78845],[-83.08035,35.78806],[-83.08081,35.78712],[-83.08098,35.78701],[-83.08134,35.78689],[-83.08268,35.78691],[-83.08317,35.7868],[-83.08356,35.78662],[-83.08394,35.78641],[-83.08448,35.78606],[-83.08521,35.78579],[-83.08539,35.78566],[-83.08542,35.78539],[-83.08594,35.78382],[-83.08596,35.78371],[-83.08606,35.78362],[-83.0865,35.78357],[-83.08724,35.78368],[-83.08746,35.78365],[-83.08769,35.78338],[-83.08818,35.78247],[-83.08879,35.78228],[-83.08905,35.78198],[-83.08914,35.78164],[-83.08914,35.78145],[-83.08994,35.78112],[-83.09022,35.78093],[-83.09277,35.7797],[-83.09318,35.77958],[-83.09397,35.77955],[-83.09439,35.77948],[-83.09463,35.77946],[-83.09486,35.77928],[-83.0959,35.77731],[-83.09611,35.77693],[-83.09634,35.77671],[-83.09719,35.77607],[-83.09789,35.7757],[-83.09909,35.77521],[-83.09932,35.7751],[-83.1002,35.77477],[-83.1003,35.77472],[-83.10046,35.77469],[-83.10072,35.77472],[-83.10203,35.77497],[-83.10232,35.77507],[-83.10262,35.77496],[-83.10293,35.77477],[-83.10338,35.77453],[-83.1039,35.77442],[-83.10459,35.77423],[-83.10474,35.77414],[-83.10476,35.77398],[-83.10473,35.77369],[-83.1048,35.77347],[-83.10512,35.77339],[-83.1057,35.77326],[-83.1063,35.77308],[-83.10686,35.77263],[-83.10732,35.77239],[-83.10762,35.77215],[-83.10779,35.77196],[-83.1079,35.77199],[-83.10908,35.77203],[-83.10928,35.77198],[-83.10925,35.77148],[-83.10966,35.77126],[-83.11047,35.77091],[-83.11139,35.77084],[-83.11155,35.77061],[-83.11226,35.77079],[-83.11258,35.77075],[-83.11331,35.77034],[-83.11364,35.77022],[-83.11466,35.76999],[-83.11512,35.76993],[-83.11565,35.7699],[-83.11699,35.76997],[-83.11739,35.7699],[-83.11803,35.76959],[-83.11861,35.76893],[-83.11918,35.76831],[-83.1194,35.76795],[-83.12018,35.76623],[-83.12122,35.76661],[-83.12156,35.76682],[-83.12213,35.76692],[-83.12338,35.76703],[-83.12393,35.767],[-83.12486,35.76718],[-83.12617,35.76771],[-83.12771,35.76809],[-83.12979,35.76749],[-83.13144,35.76734],[-83.13421,35.76671],[-83.13645,35.76525],[-83.1374,35.76545],[-83.13886,35.76521],[-83.14112,35.76593],[-83.14252,35.76565],[-83.14454,35.76553],[-83.14697,35.76512],[-83.14809,35.76429],[-83.15034,35.76409],[-83.15171,35.76457],[-83.15409,35.76428],[-83.15771,35.765],[-83.15921,35.76489],[-83.16031,35.76406],[-83.16156,35.76335],[-83.16251,35.76247],[-83.16493,35.75995],[-83.16544,35.75869],[-83.16535,35.7565],[-83.16478,35.7546],[-83.16615,35.7525],[-83.16796,35.75135],[-83.16868,35.75008],[-83.17018,35.7461],[-83.17187,35.74597],[-83.17399,35.74528],[-83.17538,35.74492],[-83.1775,35.74391],[-83.17821,35.7424],[-83.1792,35.74118],[-83.18084,35.73887],[-83.18139,35.73767],[-83.18155,35.7363],[-83.18242,35.735],[-83.18569,35.72988],[-83.18836,35.7298],[-83.18878,35.72961],[-83.19191,35.72843],[-83.19589,35.72673],[-83.19828,35.72548],[-83.20013,35.72533],[-83.20375,35.72655],[-83.20978,35.72517],[-83.21449,35.72442],[-83.21697,35.72575],[-83.21999,35.72659],[-83.22264,35.72614],[-83.23203,35.72609],[-83.24067,35.72675],[-83.24116,35.72592],[-83.24215,35.72362],[-83.24349,35.72254],[-83.24489,35.7218],[-83.24987,35.7206],[-83.25056,35.72028],[-83.25124,35.71992],[-83.25199,35.71923],[-83.25304,35.71835],[-83.25394,35.71729],[-83.25536,35.71622],[-83.25549,35.71497],[-83.25409,35.71383],[-83.2534,35.71191],[-83.25175,35.71038],[-83.2507,35.70935],[-83.25198,35.70826],[-83.25655,35.70602],[-83.25756,35.7054],[-83.25692,35.70434],[-83.25597,35.70286],[-83.25513,35.70149],[-83.25554,35.70003],[-83.2557,35.6991],[-83.25433,35.69671],[-83.25423,35.69581],[-83.25457,35.69555],[-83.25575,35.69525],[-83.25713,35.69395],[-83.25874,35.69127],[-83.25916,35.69017],[-83.26094,35.68923],[-83.26299,35.68849],[-83.26458,35.68911],[-83.26874,35.68689],[-83.26962,35.68617],[-83.27054,35.68386],[-83.27138,35.68147],[-83.27549,35.67946],[-83.27846,35.67832],[-83.28119,35.67779],[-83.28247,35.67641],[-83.28352,35.6748],[-83.2875,35.67492],[-83.28918,35.6745],[-83.29069,35.67262],[-83.29099,35.66962],[-83.29109,35.66711],[-83.29197,35.66611],[-83.29327,35.66585],[-83.29388,35.66339],[-83.29368,35.66191],[-83.29461,35.66085],[-83.29648,35.65881],[-83.29715,35.65775],[-83.29868,35.657],[-83.30069,35.65679],[-83.30231,35.65605],[-83.30559,35.65551],[-83.30806,35.65613],[-83.30862,35.65605],[-83.3105,35.65445],[-83.31276,35.65481],[-83.31325,35.65576],[-83.31569,35.65724],[-83.31791,35.65901],[-83.31873,35.66013],[-83.32037,35.66171],[-83.32112,35.66281],[-83.32256,35.66318],[-83.32415,35.66332],[-83.32589,35.66341],[-83.32736,35.6637],[-83.32976,35.66412],[-83.33037,35.66461],[-83.33309,35.66528],[-83.33496,35.66547],[-83.33768,35.66307],[-83.33859,35.66307],[-83.3401,35.66401],[-83.34053,35.6644],[-83.34154,35.66409],[-83.34384,35.6618],[-83.3452,35.66142],[-83.34727,35.66047],[-83.34926,35.66085],[-83.35155,35.65987],[-83.35376,35.65749],[-83.35555,35.65463],[-83.35569,35.654],[-83.35538,35.65231],[-83.3562,35.65002],[-83.35724,35.64934],[-83.35826,35.6485],[-83.35821,35.64693],[-83.35899,35.64658],[-83.36065,35.64538],[-83.36184,35.64368],[-83.3643,35.64261],[-83.36551,35.6409],[-83.36695,35.63872],[-83.36816,35.6382],[-83.37037,35.6382],[-83.37163,35.63893],[-83.37218,35.63931],[-83.37262,35.63893],[-83.37371,35.63893],[-83.37488,35.6378],[-83.37533,35.63751],[-83.37544,35.63723],[-83.37679,35.63662],[-83.37799,35.63449],[-83.38026,35.6347],[-83.3877,35.63375],[-83.38817,35.63375],[-83.38873,35.63358],[-83.38889,35.63342],[-83.38889,35.63308],[-83.3887,35.63274],[-83.38861,35.63235],[-83.38881,35.63191],[-83.38956,35.63087],[-83.39096,35.62766],[-83.39265,35.6251],[-83.39664,35.62271],[-83.40019,35.62176],[-83.40356,35.62131],[-83.40606,35.62019],[-83.40743,35.61937],[-83.40831,35.61859],[-83.40982,35.6178],[-83.41074,35.61748],[-83.41158,35.61712],[-83.41187,35.61691],[-83.41207,35.61628],[-83.41317,35.61593],[-83.41379,35.61559],[-83.41499,35.61461],[-83.42038,35.61346],[-83.42072,35.61212],[-83.42097,35.61159],[-83.42157,35.61118],[-83.42437,35.61083],[-83.42581,35.61119],[-83.42684,35.6107],[-83.4277,35.61063],[-83.42867,35.61076],[-83.42938,35.61019],[-83.43229,35.60994],[-83.43259,35.60994],[-83.4349,35.61067],[-83.43783,35.61106],[-83.43981,35.61108],[-83.4409,35.61163],[-83.4412,35.61174],[-83.44506,35.6117],[-83.44581,35.6118],[-83.44672,35.60903],[-83.44712,35.60868],[-83.44848,35.60789],[-83.45006,35.60671],[-83.45064,35.6065],[-83.45085,35.60638],[-83.45087,35.60582],[-83.45082,35.60546],[-83.45127,35.60388],[-83.45162,35.60343],[-83.4524,35.60293],[-83.4534,35.60242],[-83.45509,35.60192],[-83.45506,35.60012],[-83.45523,35.59903],[-83.45572,35.59804],[-83.4572,35.5968],[-83.45858,35.59607],[-83.45886,35.59588],[-83.45919,35.59576],[-83.45983,35.59569],[-83.46043,35.59565],[-83.46087,35.59557],[-83.46143,35.59533],[-83.46268,35.5926],[-83.46697,35.59158],[-83.46776,35.59111],[-83.47138,35.5903],[-83.47267,35.58913],[-83.47249,35.58689],[-83.47269,35.58655],[-83.47318,35.58611],[-83.47389,35.58557],[-83.47538,35.58476],[-83.47667,35.58422],[-83.47719,35.58407],[-83.47762,35.58388],[-83.478,35.58362],[-83.4788,35.58347],[-83.47908,35.58331],[-83.47926,35.58304],[-83.47933,35.58276],[-83.47865,35.57987],[-83.4786,35.57929],[-83.47853,35.5792],[-83.47875,35.57889],[-83.47976,35.57784],[-83.48049,35.57694],[-83.48063,35.57663],[-83.481,35.5765],[-83.48102,35.57629],[-83.48108,35.5761],[-83.48104,35.57578],[-83.48173,35.57476],[-83.48221,35.57368],[-83.48256,35.57277],[-83.48287,35.57189],[-83.48383,35.57119],[-83.48433,35.57043],[-83.48503,35.56877],[-83.48523,35.56844],[-83.48553,35.5682],[-83.48851,35.56748],[-83.48919,35.56744],[-83.48929,35.56725],[-83.49019,35.56697],[-83.49095,35.56695],[-83.49165,35.56687],[-83.49207,35.56699],[-83.49332,35.56677],[-83.49394,35.56657],[-83.49626,35.56504],[-83.49707,35.56436],[-83.49771,35.56327],[-83.49799,35.56309],[-83.49836,35.56298],[-83.4999,35.56313],[-83.51302,35.56306],[-83.51755,35.56285],[-83.52047,35.56559],[-83.52385,35.56518],[-83.5284,35.56519],[-83.53414,35.56467],[-83.5409,35.5657],[-83.54745,35.56462],[-83.55215,35.56433],[-83.5553,35.56507],[-83.55928,35.56477],[-83.5639,35.56534],[-83.56607,35.566],[-83.56718,35.56464],[-83.56962,35.56445],[-83.57236,35.5655],[-83.57427,35.56481],[-83.57627,35.56402],[-83.57999,35.56337],[-83.58199,35.56265],[-83.58555,35.56294],[-83.58714,35.56396],[-83.58783,35.56695],[-83.59185,35.57044],[-83.59432,35.57292],[-83.59651,35.57474],[-83.59901,35.57509],[-83.60188,35.57826],[-83.60481,35.57932],[-83.6089,35.57944],[-83.60943,35.57877],[-83.61225,35.57634],[-83.61529,35.57404],[-83.61824,35.57286],[-83.62059,35.57233],[-83.62264,35.57206],[-83.62486,35.57008],[-83.62626,35.56945],[-83.62783,35.56867],[-83.62972,35.56788],[-83.63037,35.56809],[-83.6324,35.56911],[-83.63388,35.57048],[-83.63454,35.57034],[-83.63524,35.5698],[-83.63586,35.56817],[-83.63712,35.56713],[-83.63856,35.56678],[-83.64013,35.56654],[-83.6405,35.56608],[-83.64092,35.56571],[-83.64297,35.56607],[-83.64549,35.56583],[-83.6466,35.56683],[-83.64784,35.56667],[-83.64933,35.56737],[-83.65073,35.56783],[-83.65183,35.56787],[-83.65315,35.5683],[-83.65379,35.56944],[-83.65522,35.56981],[-83.65652,35.57],[-83.65722,35.56975],[-83.65791,35.56921],[-83.66041,35.56864],[-83.6609,35.56818],[-83.6626,35.56904],[-83.66448,35.5695],[-83.6687,35.56922],[-83.67045,35.56932],[-83.6731,35.56896],[-83.67463,35.56939],[-83.67626,35.57027],[-83.67785,35.56982],[-83.67932,35.57006],[-83.68034,35.57029],[-83.68084,35.56936],[-83.68375,35.56846],[-83.68413,35.56885],[-83.68706,35.56863],[-83.68878,35.5678],[-83.69033,35.56883],[-83.69128,35.56866],[-83.69305,35.56853],[-83.69366,35.56889],[-83.69524,35.57029],[-83.6967,35.57022],[-83.69728,35.56947],[-83.69781,35.56835],[-83.7006,35.5676],[-83.70207,35.56764],[-83.70389,35.56848],[-83.70717,35.56848],[-83.70959,35.56679],[-83.71149,35.56654],[-83.71278,35.56625],[-83.71386,35.5649],[-83.71484,35.56391],[-83.71705,35.56379],[-83.71909,35.56401],[-83.72077,35.56335],[-83.72349,35.56189],[-83.7246,35.56252],[-83.72657,35.56257],[-83.72978,35.56417],[-83.73065,35.56396],[-83.73195,35.56346],[-83.73299,35.56313],[-83.73436,35.56465],[-83.73568,35.56545],[-83.73733,35.565],[-83.74019,35.56383],[-83.74104,35.56305],[-83.74203,35.56262],[-83.74466,35.56269],[-83.74527,35.56178],[-83.74697,35.56013],[-83.74806,35.55982],[-83.74866,35.56106],[-83.74988,35.56114],[-83.75485,35.56286],[-83.75686,35.56362],[-83.75965,35.5625],[-83.76111,35.5623],[-83.76289,35.56284],[-83.76459,35.56154],[-83.77174,35.56213],[-83.7731,35.55746],[-83.78011,35.55038],[-83.7813,35.55069],[-83.78231,35.55026],[-83.78395,35.54989],[-83.78611,35.54842],[-83.78677,35.5472],[-83.78902,35.54648],[-83.79101,35.54589],[-83.79426,35.54531],[-83.79624,35.54405],[-83.79893,35.54103],[-83.80242,35.54161],[-83.80329,35.54105],[-83.80871,35.53643],[-83.80981,35.53431],[-83.82295,35.52577],[-83.82559,35.52384],[-83.82744,35.52465],[-83.83183,35.52478],[-83.83387,35.52429],[-83.84014,35.52157],[-83.84288,35.52168],[-83.84389,35.52144],[-83.84851,35.51927],[-83.85378,35.52101],[-83.85705,35.52177],[-83.85917,35.52186],[-83.86045,35.52144],[-83.86193,35.52124],[-83.86495,35.52126],[-83.86867,35.52037],[-83.87111,35.52104],[-83.87264,35.52114],[-83.87485,35.51971],[-83.87777,35.5191],[-83.8801,35.5187],[-83.8826,35.51714],[-83.88335,35.51579],[-83.88428,35.51275],[-83.88819,35.50777],[-83.89206,35.5031],[-83.89304,35.50225],[-83.89566,35.50187],[-83.89694,35.5001],[-83.89706,35.49982],[-83.89841,35.49938],[-83.89868,35.49902],[-83.8995,35.4981],[-83.90083,35.49719],[-83.90139,35.49657],[-83.9015,35.49593],[-83.90143,35.49528],[-83.90082,35.4948],[-83.9002,35.49422],[-83.90034,35.49305],[-83.90154,35.49104],[-83.9024,35.49064],[-83.90385,35.48976],[-83.90483,35.48959],[-83.90558,35.48911],[-83.90625,35.48781],[-83.9066,35.48662],[-83.90696,35.48637],[-83.90719,35.48557],[-83.9076,35.48515],[-83.90803,35.48441],[-83.90876,35.48389],[-83.90888,35.48305],[-83.90917,35.48256],[-83.90897,35.48168],[-83.90895,35.48059],[-83.90932,35.47966],[-83.91004,35.47879],[-83.91071,35.47785],[-83.91175,35.47607],[-83.91299,35.47587],[-83.91371,35.47546],[-83.91458,35.47475],[-83.91571,35.47401],[-83.91675,35.47356],[-83.91813,35.47398],[-83.91839,35.47382],[-83.91848,35.4736],[-83.91956,35.47335],[-83.92092,35.47403],[-83.92189,35.4744],[-83.92317,35.47438],[-83.92449,35.4744],[-83.92489,35.47391],[-83.92552,35.47365],[-83.92623,35.47373],[-83.92716,35.47334],[-83.92814,35.47302],[-83.92975,35.47333],[-83.93277,35.47271],[-83.93406,35.47238],[-83.93568,35.47193],[-83.93703,35.4715],[-83.9374,35.47079],[-83.93818,35.47005],[-83.93928,35.46927],[-83.94128,35.46797],[-83.94218,35.46725],[-83.94234,35.46628],[-83.94284,35.46576],[-83.94299,35.46507],[-83.94284,35.46456],[-83.94389,35.46432],[-83.94493,35.46434],[-83.94618,35.46382],[-83.94701,35.46337],[-83.9474,35.4628],[-83.94783,35.46223],[-83.94893,35.46171],[-83.94935,35.46121],[-83.95064,35.46078],[-83.95149,35.46073],[-83.95268,35.46075],[-83.95336,35.46135],[-83.95351,35.46163],[-83.95369,35.46189],[-83.95385,35.46202],[-83.95385,35.46216],[-83.9539,35.46231],[-83.95417,35.46253],[-83.95439,35.4628],[-83.95461,35.46317],[-83.95513,35.46361],[-83.95648,35.46417],[-83.95693,35.46422],[-83.95788,35.46443],[-83.95853,35.46447],[-83.95933,35.46435],[-83.96106,35.46423],[-83.96106,35.46364],[-83.96109,35.46249],[-83.96111,35.46069],[-83.96108,35.46011],[-83.96119,35.45977],[-83.9615,35.45945],[-83.96182,35.45919],[-83.96287,35.45861],[-83.96312,35.45854],[-83.9632,35.45824],[-83.96318,35.4579],[-83.96308,35.4575],[-83.96316,35.45717],[-83.96331,35.45696],[-83.96353,35.45674],[-83.9638,35.45657],[-83.96455,35.45658],[-83.96503,35.45663],[-83.96551,35.45649],[-83.96567,35.45638],[-83.96575,35.45614],[-83.96561,35.45565],[-83.96539,35.45548],[-83.96514,35.45547],[-83.9645,35.45524],[-83.96441,35.45505],[-83.96434,35.45459],[-83.96453,35.45433],[-83.96466,35.45425],[-83.96488,35.45423],[-83.9652,35.45435],[-83.9655,35.4545],[-83.96596,35.45477],[-83.96664,35.45515],[-83.96683,35.45517],[-83.9681,35.45521],[-83.9697,35.45551],[-83.97052,35.45557],[-83.97101,35.45554],[-83.97124,35.45545],[-83.97145,35.45532],[-83.97163,35.45515],[-83.97186,35.45476],[-83.97193,35.45429],[-83.97182,35.45395],[-83.9717,35.45366],[-83.97126,35.45335],[-83.97116,35.45325],[-83.97116,35.45312],[-83.97145,35.45301],[-83.97275,35.45299],[-83.97323,35.45294],[-83.97315,35.45233],[-83.97312,35.45171],[-83.97313,35.45109],[-83.97302,35.45044],[-83.97295,35.44988],[-83.97305,35.44934],[-83.97305,35.44888],[-83.97292,35.44865],[-83.97276,35.44824],[-83.97255,35.44795],[-83.97238,35.44767],[-83.97246,35.44741],[-83.97257,35.44734],[-83.97276,35.44728],[-83.97293,35.44729],[-83.97335,35.44739],[-83.97375,35.44769],[-83.97398,35.44782],[-83.97424,35.4479],[-83.97471,35.44793],[-83.97485,35.44792],[-83.97507,35.44782],[-83.97533,35.44767],[-83.97559,35.44731],[-83.97585,35.44701],[-83.97614,35.44697],[-83.97657,35.44703],[-83.97721,35.44722],[-83.97766,35.44744],[-83.97791,35.44759],[-83.97828,35.448],[-83.97856,35.44812],[-83.97909,35.44821],[-83.97957,35.44823],[-83.97988,35.44815],[-83.98028,35.44763],[-83.98053,35.44705],[-83.98086,35.44681],[-83.98113,35.44639],[-83.98147,35.44605],[-83.98222,35.44494],[-83.98248,35.44425],[-83.98258,35.44371],[-83.98272,35.44336],[-83.98333,35.44225],[-83.98349,35.44146],[-83.98346,35.44118],[-83.98352,35.44097],[-83.98379,35.44058],[-83.98435,35.44035],[-83.98529,35.44028],[-83.98615,35.44049],[-83.98734,35.441],[-83.98795,35.44097],[-83.98852,35.44052],[-83.9886,35.44031],[-83.98848,35.43992],[-83.98846,35.43947],[-83.98892,35.4393],[-83.98939,35.43935],[-83.99011,35.43989],[-83.99053,35.44032],[-83.99095,35.44064],[-83.99141,35.44072],[-83.99181,35.44062],[-83.99213,35.4404],[-83.99268,35.43949],[-83.9928,35.43819],[-83.99296,35.43777],[-83.99324,35.43754],[-83.99401,35.43712],[-83.99453,35.4367],[-83.99456,35.43659],[-83.9945,35.4365],[-83.9944,35.43606],[-83.99435,35.43563],[-83.99436,35.43547],[-83.99463,35.43512],[-83.99487,35.43504],[-83.99523,35.435],[-83.99569,35.43491],[-83.99598,35.43501],[-83.99629,35.43517],[-83.99645,35.43487],[-83.99658,35.43419],[-83.9968,35.43378],[-83.99733,35.43373],[-83.99894,35.4342],[-83.99941,35.43413],[-83.99969,35.43394],[-83.99986,35.43368],[-83.99977,35.43329],[-83.99926,35.43282],[-83.99897,35.43265],[-83.99876,35.43241],[-83.99874,35.43225],[-83.99904,35.4319],[-83.9993,35.43143],[-83.99932,35.43128],[-83.99915,35.43117],[-83.99852,35.43105],[-83.99822,35.43088],[-83.99824,35.4307],[-83.99833,35.43056],[-83.99844,35.43045],[-83.99855,35.43021],[-83.9987,35.42949],[-83.99902,35.42911],[-83.99964,35.42868],[-83.99975,35.42847],[-83.99978,35.42799],[-83.99961,35.42785],[-83.99947,35.42764],[-83.99944,35.42743],[-83.99946,35.4273],[-83.99929,35.42684],[-83.99925,35.42666],[-83.99929,35.42634],[-83.99969,35.42566],[-84.00006,35.42494],[-84.00055,35.42459],[-84.00089,35.42425],[-84.00102,35.42393],[-84.00106,35.42361],[-84.0013,35.42327],[-84.00157,35.42311],[-84.00245,35.42239],[-84.00325,35.42203],[-84.00377,35.42164],[-84.00457,35.42132],[-84.00541,35.42081],[-84.00604,35.41986],[-84.00685,35.4189],[-84.00793,35.41839],[-84.00908,35.41729],[-84.00975,35.41692],[-84.01011,35.41679],[-84.01059,35.41635],[-84.01073,35.41599],[-84.01136,35.4155],[-84.01174,35.41537],[-84.01212,35.41495],[-84.01247,35.41427],[-84.01314,35.41341],[-84.01377,35.41273],[-84.01481,35.41194],[-84.01517,35.41189],[-84.01601,35.41149],[-84.01643,35.41149],[-84.01757,35.41118],[-84.0184,35.41126],[-84.0192,35.41166],[-84.02056,35.41201],[-84.02118,35.41204],[-84.02272,35.41169],[-84.02305,35.41165],[-84.02329,35.41137],[-84.02335,35.41059],[-84.02279,35.40875],[-84.02215,35.40791],[-84.02142,35.40703],[-84.02115,35.40656],[-84.0211,35.40619],[-84.02164,35.40432],[-84.02062,35.40318],[-84.02013,35.40203],[-84.01878,35.39974],[-84.01829,35.39913],[-84.01723,35.39892],[-84.01642,35.39853],[-84.01631,35.39864],[-84.01579,35.3985],[-84.01518,35.39847],[-84.01407,35.39775],[-84.01343,35.39562],[-84.01315,35.39411],[-84.0127,35.39236],[-84.01226,35.39197],[-84.0108,35.39195],[-84.00919,35.3913],[-84.00822,35.39042],[-84.00821,35.38962],[-84.00942,35.3882],[-84.01018,35.38693],[-84.01051,35.38648],[-84.01094,35.38555],[-84.01121,35.38456],[-84.0112,35.38418],[-84.01085,35.38345],[-84.01002,35.38297],[-84.00957,35.38233],[-84.00995,35.38111],[-84.00962,35.38042],[-84.00887,35.37966],[-84.00833,35.37887],[-84.00822,35.37746],[-84.00878,35.37613],[-84.00891,35.37574],[-84.0087,35.37237],[-84.00808,35.37189],[-84.00741,35.37158],[-84.0086,35.37038],[-84.01086,35.36865],[-84.01291,35.36679],[-84.01504,35.365],[-84.01583,35.36386],[-84.01657,35.36245],[-84.0175,35.36175],[-84.01842,35.36067],[-84.01921,35.35952],[-84.01951,35.35846],[-84.02015,35.35749],[-84.02109,35.35695],[-84.02226,35.35658],[-84.02297,35.3562],[-84.02323,35.35455],[-84.02349,35.35414],[-84.02529,35.35388],[-84.02757,35.35335],[-84.02907,35.35356],[-84.03137,35.35305],[-84.03242,35.35265],[-84.03285,35.35188],[-84.03343,35.35136],[-84.03431,35.35101],[-84.03693,35.3506],[-84.0375,35.34985],[-84.03833,35.34784],[-84.036,35.34558],[-84.03504,35.34423],[-84.03406,35.3433],[-84.03398,35.34276],[-84.03428,35.34233],[-84.03498,35.34164],[-84.03559,35.34145],[-84.03585,35.34083],[-84.03632,35.33913],[-84.03609,35.33857],[-84.03619,35.33766],[-84.035,35.33727],[-84.03462,35.33732],[-84.03313,35.33706],[-84.03239,35.33683],[-84.03144,35.33646],[-84.03127,35.33643],[-84.02948,35.33354],[-84.02934,35.33311],[-84.02937,35.33268],[-84.02968,35.33214],[-84.02981,35.33154],[-84.03045,35.33038],[-84.03145,35.32947],[-84.03223,35.32859],[-84.03254,35.32773],[-84.03265,35.32729],[-84.03268,35.32685],[-84.03247,35.32642],[-84.0325,35.32475],[-84.03301,35.32382],[-84.03373,35.32335],[-84.03452,35.3224],[-84.03451,35.32201],[-84.03421,35.32154],[-84.03392,35.3209],[-84.03388,35.32035],[-84.03432,35.3196],[-84.03522,35.31843],[-84.03553,35.31777],[-84.03582,35.31546],[-84.03585,35.31316],[-84.03502,35.31199],[-84.02839,35.31026],[-84.02719,35.30979],[-84.02652,35.30928],[-84.02629,35.30801],[-84.02634,35.30697],[-84.02623,35.30629],[-84.02559,35.30557],[-84.02471,35.30489],[-84.024,35.3042],[-84.0233,35.30256],[-84.02268,35.30207],[-84.02211,35.30198],[-84.02162,35.30178],[-84.02138,35.30135],[-84.02143,35.301],[-84.02183,35.30048],[-84.02272,35.29967],[-84.0234,35.29894],[-84.02352,35.29841],[-84.02335,35.29803],[-84.02301,35.29761],[-84.02289,35.29702],[-84.0235,35.29577],[-84.02446,35.29505],[-84.02595,35.29419],[-84.02753,35.29303],[-84.02806,35.2927],[-84.02863,35.29254],[-84.02906,35.29217],[-84.03235,35.29056],[-84.03311,35.28986],[-84.03413,35.28915],[-84.03496,35.28885],[-84.03605,35.28865],[-84.03664,35.28762],[-84.03722,35.28638],[-84.03778,35.28592],[-84.03842,35.28528],[-84.03902,35.2843],[-84.0394,35.28335],[-84.04011,35.28039],[-84.04033,35.27988],[-84.0406,35.2795],[-84.04128,35.27905],[-84.04233,35.27858],[-84.04321,35.27811],[-84.04334,35.2777],[-84.04317,35.2775],[-84.04358,35.27708],[-84.04491,35.27657],[-84.0455,35.2761],[-84.04652,35.27417],[-84.04718,35.27403],[-84.04806,35.27421],[-84.0493,35.27369],[-84.05022,35.27367],[-84.05093,35.27358],[-84.05148,35.27321],[-84.05182,35.27249],[-84.05254,35.27143],[-84.05232,35.27021],[-84.05289,35.2698],[-84.0557,35.2682],[-84.05632,35.26818],[-84.05703,35.26801],[-84.05773,35.26757],[-84.05863,35.26735],[-84.05998,35.26744],[-84.06076,35.26727],[-84.06197,35.26671],[-84.06291,35.26677],[-84.06372,35.2667],[-84.06443,35.26641],[-84.06521,35.266],[-84.06604,35.26564],[-84.06682,35.26524],[-84.06883,35.26438],[-84.06944,35.26439],[-84.06996,35.26421],[-84.07062,35.2638],[-84.07119,35.26366],[-84.07192,35.26371],[-84.07244,35.26337],[-84.07313,35.26315],[-84.07383,35.26328],[-84.07461,35.26321],[-84.07561,35.26292],[-84.07719,35.26221],[-84.07953,35.26137],[-84.08056,35.26136],[-84.08116,35.26114],[-84.08176,35.26044],[-84.08215,35.25982],[-84.0828,35.25892],[-84.08318,35.25806],[-84.08299,35.2573],[-84.0825,35.25611],[-84.08295,35.25578],[-84.0838,35.25555],[-84.08509,35.2554],[-84.08563,35.25515],[-84.08616,35.25476],[-84.08659,35.25419],[-84.08752,35.25379],[-84.08797,35.25334],[-84.08801,35.2531],[-84.08839,35.25269],[-84.08972,35.25209],[-84.08979,35.25163],[-84.09207,35.25029],[-84.09221,35.25],[-84.09497,35.24844],[-84.09807,35.2472],[-84.09937,35.24785],[-84.10038,35.24845],[-84.1014,35.24813],[-84.10226,35.24811],[-84.10296,35.24857],[-84.10425,35.2502],[-84.10457,35.25026],[-84.10518,35.25018],[-84.1056,35.25048],[-84.10576,35.25086],[-84.10659,35.25155],[-84.10698,35.25141],[-84.1087,35.25011],[-84.10893,35.24966],[-84.10941,35.24963],[-84.10955,35.24985],[-84.10957,35.25007],[-84.11026,35.25044],[-84.11092,35.25008],[-84.11108,35.24977],[-84.11141,35.24949],[-84.11291,35.24916],[-84.11333,35.24897],[-84.11403,35.24895],[-84.11478,35.24924],[-84.11498,35.24952],[-84.11525,35.25041],[-84.1163,35.25125],[-84.1177,35.25195],[-84.11824,35.25206],[-84.11894,35.25231],[-84.11961,35.25227],[-84.12072,35.25163],[-84.12115,35.25063],[-84.12356,35.24976],[-84.12532,35.24986],[-84.12561,35.2493],[-84.12617,35.24795],[-84.1268,35.24646],[-84.12658,35.24584],[-84.12602,35.24476],[-84.1258,35.2439],[-84.12589,35.24332],[-84.1259,35.24299],[-84.12568,35.24268],[-84.12573,35.24204],[-84.12643,35.24135],[-84.12713,35.24098],[-84.12761,35.24097],[-84.12873,35.24134],[-84.12906,35.24165],[-84.12939,35.24178],[-84.12988,35.24176],[-84.1301,35.24188],[-84.13078,35.24186],[-84.1311,35.24173],[-84.13143,35.24187],[-84.1324,35.24204],[-84.13326,35.24238],[-84.13578,35.24432],[-84.13641,35.24475],[-84.13733,35.24504],[-84.13833,35.24539],[-84.13924,35.24599],[-84.13968,35.24618],[-84.14067,35.24641],[-84.1412,35.24638],[-84.14188,35.2465],[-84.14303,35.2469],[-84.14531,35.24649],[-84.14708,35.24696],[-84.14792,35.24698],[-84.149,35.24651],[-84.15025,35.24628],[-84.15176,35.24625],[-84.15288,35.24607],[-84.15409,35.24627],[-84.15449,35.24643],[-84.15521,35.24647],[-84.15591,35.24636],[-84.15687,35.24587],[-84.15782,35.24584],[-84.15813,35.24596],[-84.15892,35.24588],[-84.15946,35.24534],[-84.15961,35.24494],[-84.16023,35.24415],[-84.16046,35.24381],[-84.16073,35.24378],[-84.16101,35.24357],[-84.1616,35.24347],[-84.16197,35.24379],[-84.16408,35.24408],[-84.16495,35.24448],[-84.16599,35.24505],[-84.16622,35.24516],[-84.16655,35.24516],[-84.16778,35.24541],[-84.16855,35.2458],[-84.16881,35.24598],[-84.16947,35.24637],[-84.16985,35.24638],[-84.17014,35.24626],[-84.17085,35.24517],[-84.17155,35.24479],[-84.17224,35.24472],[-84.17412,35.24402],[-84.17498,35.24332],[-84.17608,35.2427],[-84.17708,35.2423],[-84.17783,35.24158],[-84.17806,35.241],[-84.17878,35.24057],[-84.18111,35.24031],[-84.18326,35.24019],[-84.18585,35.24015],[-84.18613,35.2403],[-84.1864,35.24031],[-84.18703,35.24013],[-84.18838,35.24],[-84.1887,35.24008],[-84.18885,35.24026],[-84.18906,35.24062],[-84.18985,35.24118],[-84.19021,35.24136],[-84.19137,35.24223],[-84.1924,35.24329],[-84.19308,35.24477],[-84.19454,35.24477],[-84.19541,35.24438],[-84.19594,35.24427],[-84.19649,35.24446],[-84.19744,35.24412],[-84.19837,35.24397],[-84.19849,35.24378],[-84.1991,35.24367],[-84.20019,35.2447],[-84.20037,35.24521],[-84.20073,35.24552],[-84.2017,35.24761],[-84.20173,35.2484],[-84.20161,35.24868],[-84.2014,35.24938],[-84.2015,35.24972],[-84.20241,35.25105],[-84.20277,35.2518],[-84.20258,35.25219],[-84.20245,35.25239],[-84.20223,35.25297],[-84.20224,35.25324],[-84.20266,35.25409],[-84.20282,35.25568],[-84.20306,35.25604],[-84.20424,35.25697],[-84.20536,35.25825],[-84.2055,35.25896],[-84.20551,35.25967],[-84.20626,35.26041],[-84.20714,35.26104],[-84.2077,35.26164],[-84.20846,35.26206],[-84.20947,35.26343],[-84.21005,35.26411],[-84.21034,35.26472],[-84.21089,35.2653],[-84.21101,35.26549],[-84.21118,35.26556],[-84.21177,35.26609],[-84.21224,35.26607],[-84.21327,35.26629],[-84.2139,35.26626],[-84.21459,35.26633],[-84.21499,35.26656],[-84.21538,35.26719],[-84.21632,35.26798],[-84.21758,35.26819],[-84.21886,35.26815],[-84.21943,35.26785],[-84.21999,35.26786],[-84.22067,35.26767],[-84.22152,35.26767],[-84.22232,35.26816],[-84.22291,35.26879],[-84.22372,35.26907],[-84.22392,35.26894],[-84.22438,35.26887],[-84.22808,35.26779],[-84.2287,35.26724],[-84.22898,35.26691],[-84.22906,35.26655],[-84.22932,35.26594],[-84.23011,35.26543],[-84.23142,35.26488],[-84.23189,35.26475],[-84.23236,35.26436],[-84.23335,35.26241],[-84.23396,35.2623],[-84.23494,35.26127],[-84.2363,35.25953],[-84.23858,35.25748],[-84.23931,35.25689],[-84.23994,35.25604],[-84.24022,35.25518],[-84.2414,35.25451],[-84.24271,35.2531],[-84.24294,35.25319],[-84.24364,35.253],[-84.24762,35.25137],[-84.24951,35.25095],[-84.24986,35.25125],[-84.25064,35.25097],[-84.2513,35.25035],[-84.25275,35.24945],[-84.25321,35.24947],[-84.25673,35.2467],[-84.25753,35.2463],[-84.25891,35.24455],[-84.25902,35.24405],[-84.25986,35.24274],[-84.2598,35.24239],[-84.26034,35.24189],[-84.26111,35.24154],[-84.26206,35.24106],[-84.26431,35.2403],[-84.26449,35.24007],[-84.26536,35.23959],[-84.26548,35.23932],[-84.26642,35.2387],[-84.2682,35.2382],[-84.26868,35.23814],[-84.27008,35.23737],[-84.27202,35.23627],[-84.27374,35.23569],[-84.27461,35.23508],[-84.27539,35.23477],[-84.27615,35.23406],[-84.27636,35.23363],[-84.27734,35.23274],[-84.2779,35.23174],[-84.27791,35.23148],[-84.27854,35.23108],[-84.27961,35.23064],[-84.28152,35.2293],[-84.28177,35.22888],[-84.2822,35.22854],[-84.28241,35.22799],[-84.28304,35.22716],[-84.28323,35.2266],[-84.28379,35.22636],[-84.28435,35.22656],[-84.28512,35.22661],[-84.28554,35.22633],[-84.28691,35.225],[-84.2879,35.22454],[-84.28873,35.22434],[-84.28972,35.22472],[-84.29023,35.22536],[-84.29519,35.18216],[-84.305,35.12057],[-84.32187,34.9884],[-85.60518,34.98466],[-85.59943,34.95158],[-85.5987,34.94419],[-85.59646,34.93091],[-85.59242,34.91062],[-85.58088,34.84852],[-85.57459,34.81649],[-85.56189,34.75214],[-85.53431,34.62511],[-85.52715,34.5879],[-85.47623,34.3547],[-85.42951,34.12526],[-85.23057,33.09702],[-85.18474,32.87055],[-85.18414,32.87051],[-85.18393,32.8612],[-85.17829,32.85476],[-85.17009,32.85297],[-85.16285,32.85688],[-85.16026,32.85619],[-85.15313,32.84679],[-85.15342,32.83974],[-85.16065,32.838],[-85.1671,32.83007],[-85.16427,32.81865],[-85.16762,32.81416],[-85.16815,32.81224],[-85.16726,32.81133],[-85.16648,32.80992],[-85.16278,32.8057],[-85.15805,32.80084],[-85.15559,32.79885],[-85.15286,32.79507],[-85.14763,32.7919],[-85.14368,32.79162],[-85.14326,32.79239],[-85.14236,32.79238],[-85.14151,32.79128],[-85.14173,32.79027],[-85.14071,32.78845],[-85.13986,32.7874],[-85.1394,32.78551],[-85.13523,32.78481],[-85.13109,32.78077],[-85.1256,32.77894],[-85.12429,32.77615],[-85.12248,32.7747],[-85.122,32.77266],[-85.13426,32.76792],[-85.1423,32.75969],[-85.13353,32.74472],[-85.11764,32.74027],[-85.11412,32.73812],[-85.11304,32.73172],[-85.12131,32.71781],[-85.11341,32.69191],[-85.1007,32.67944],[-85.08777,32.65694],[-85.10334,32.64398],[-85.09805,32.63752],[-85.09103,32.63494],[-85.0834,32.63777],[-85.08216,32.6342],[-85.0883,32.62499],[-85.08175,32.61656],[-85.0796,32.60338],[-85.07792,32.59845],[-85.06995,32.58463],[-85.06748,32.57935],[-85.06289,32.57924],[-85.05664,32.5734],[-85.05661,32.57269],[-85.05692,32.57194],[-85.05693,32.57123],[-85.04584,32.56229],[-85.04431,32.55894],[-85.03917,32.55645],[-85.02117,32.54294],[-85.00359,32.52058],[-84.99893,32.50619],[-84.9965,32.50163],[-84.99886,32.49698],[-84.99833,32.49414],[-84.99672,32.49232],[-84.99538,32.48883],[-84.99483,32.48607],[-84.99493,32.48008],[-84.9953,32.47735],[-84.99525,32.47527],[-84.99819,32.46994],[-84.99851,32.46875],[-84.99795,32.46166],[-84.99473,32.45218],[-84.98352,32.44577],[-84.9726,32.44315],[-84.96819,32.43821],[-84.96261,32.42309],[-84.97049,32.41703],[-84.97966,32.41229],[-84.98065,32.40631],[-84.97984,32.40019],[-84.97375,32.39555],[-84.96947,32.39482],[-84.96767,32.39191],[-84.97094,32.38969],[-84.97482,32.39083],[-84.98508,32.39057],[-84.98842,32.38345],[-84.98536,32.38053],[-84.97446,32.3809],[-84.97083,32.37781],[-84.97381,32.37379],[-84.98219,32.3736],[-84.98487,32.37265],[-84.98566,32.3687],[-84.98295,32.364],[-84.98463,32.36075],[-84.99181,32.35388],[-84.99826,32.3497],[-85.00439,32.34462],[-85.00717,32.33634],[-85.00615,32.32706],[-85.00273,32.32314],[-84.98739,32.31856],[-84.96135,32.30865],[-84.9413,32.30261],[-84.93446,32.29889],[-84.92154,32.28453],[-84.91173,32.27743],[-84.90381,32.27395],[-84.89556,32.26656],[-84.8878,32.26037],[-84.89095,32.25693],[-84.89845,32.25876],[-84.9024,32.25727],[-84.90386,32.25117],[-84.90789,32.24851],[-84.92042,32.25017],[-84.92179,32.24594],[-84.91345,32.24444],[-84.91567,32.2378],[-84.92321,32.23131],[-84.92301,32.22457],[-84.92828,32.21937],[-84.93853,32.21784],[-84.95856,32.21775],[-84.96841,32.21919],[-84.97545,32.21589],[-84.98065,32.20929],[-84.97929,32.20698],[-84.97552,32.2038],[-84.96678,32.2047],[-84.96181,32.20007],[-84.96358,32.1955],[-84.97513,32.19108],[-85.00007,32.18308],[-85.01016,32.1811],[-85.0153,32.17511],[-85.02598,32.16582],[-85.03463,32.15537],[-85.04664,32.14223],[-85.05803,32.13605],[-85.06205,32.13243],[-85.05942,32.1274],[-85.05285,32.10486],[-85.04519,32.08755],[-85.05306,32.08136],[-85.05596,32.05191],[-85.05772,32.03226],[-85.05056,32.02368],[-85.05492,32.01237],[-85.06358,32.00295],[-85.0682,31.98745],[-85.0673,31.97305],[-85.11283,31.91416],[-85.13983,31.84594],[-85.11264,31.71025],[-85.06592,31.62484],[-85.06448,31.62383],[-85.05884,31.62177],[-85.05721,31.6181],[-85.06022,31.60903],[-85.05576,31.60535],[-85.05741,31.59463],[-85.05803,31.58369],[-85.05476,31.57842],[-85.05759,31.57108],[-85.05236,31.56265],[-85.05023,31.55568],[-85.0408,31.54378],[-85.04049,31.5396],[-85.04778,31.52597],[-85.04371,31.51982],[-85.0563,31.50046],[-85.06073,31.48935],[-85.06465,31.48475],[-85.0712,31.46838],[-85.06903,31.45964],[-85.06874,31.45298],[-85.06628,31.44765],[-85.06521,31.43076],[-85.06779,31.42703],[-85.07453,31.4277],[-85.0759,31.41675],[-85.07968,31.41035],[-85.07659,31.40253],[-85.07775,31.39742],[-85.07985,31.39415],[-85.08151,31.3859],[-85.08442,31.37981],[-85.08792,31.37161],[-85.0922,31.3637],[-85.09205,31.35575],[-85.08555,31.35407],[-85.08652,31.34045],[-85.08881,31.3346],[-85.08377,31.32878],[-85.08341,31.31759],[-85.0874,31.31073],[-85.08746,31.30376],[-85.08975,31.29348],[-85.09775,31.28407],[-85.11158,31.28082],[-85.11443,31.27727],[-85.11175,31.27396],[-85.11214,31.2618],[-85.1088,31.25398],[-85.10301,31.24105],[-85.0967,31.22813],[-85.09852,31.21123],[-85.10643,31.20283],[-85.10722,31.19332],[-85.10693,31.18626],[-85.10193,31.18523],[-85.09822,31.18009],[-85.10007,31.16597],[-85.09196,31.16106],[-85.07866,31.15887],[-85.06317,31.1419],[-85.05975,31.13148],[-85.05366,31.12084],[-85.04822,31.11844],[-85.04311,31.11355],[-85.03514,31.10889],[-85.03399,31.10374],[-85.02993,31.09808],[-85.02536,31.08402],[-85.02792,31.075],[-85.0172,31.05926],[-85.01147,31.05492],[-85.00815,31.04653],[-85.00881,31.03269],[-85.00449,31.02512],[-85.00389,31.01919],[-84.99841,31.01331],[-85.00237,31.00068],[-85.21683,31.00048],[-85.4052,30.99792],[-86.08544,30.99281],[-86.28687,30.99436],[-86.63237,30.99513],[-87.01632,30.99944],[-87.59884,30.99745],[-87.59884,30.99739],[-87.59871,30.99723],[-87.59862,30.99706],[-87.59865,30.99681],[-87.59884,30.99676],[-87.59899,30.99655],[-87.59901,30.9963],[-87.59862,30.99563],[-87.59859,30.9954],[-87.59872,30.99502],[-87.59823,30.99429],[-87.59812,30.99337],[-87.59819,30.99302],[-87.59773,30.99238],[-87.59761,30.99162],[-87.59735,30.99104],[-87.59718,30.99076],[-87.59671,30.99064],[-87.59641,30.98991],[-87.59676,30.9894],[-87.59677,30.98887],[-87.59654,30.98845],[-87.59649,30.98718],[-87.59624,30.98679],[-87.5959,30.98676],[-87.59563,30.98659],[-87.59553,30.98632],[-87.5951,30.98612],[-87.59474,30.98578],[-87.5947,30.98546],[-87.59505,30.98515],[-87.5951,30.98496],[-87.59481,30.98456],[-87.59447,30.98425],[-87.59375,30.98403],[-87.59363,30.98394],[-87.59332,30.98347],[-87.59313,30.98305],[-87.5931,30.98246],[-87.59287,30.98165],[-87.59286,30.98135],[-87.59309,30.98113],[-87.59323,30.98081],[-87.59312,30.98046],[-87.59294,30.98031],[-87.59249,30.98028],[-87.5923,30.98017],[-87.59224,30.97993],[-87.59249,30.97961],[-87.59252,30.97946],[-87.59249,30.97906],[-87.59281,30.97852],[-87.59287,30.97818],[-87.59319,30.97778],[-87.59348,30.97749],[-87.59354,30.97703],[-87.59332,30.97681],[-87.59318,30.97651],[-87.59355,30.97597],[-87.59351,30.97566],[-87.593,30.97535],[-87.59296,30.97465],[-87.59251,30.97391],[-87.59247,30.97334],[-87.59268,30.97288],[-87.59266,30.97266],[-87.59233,30.97233],[-87.59207,30.97181],[-87.59192,30.97125],[-87.59194,30.9709],[-87.59165,30.97016],[-87.59117,30.96991],[-87.59091,30.96965],[-87.59062,30.96909],[-87.59048,30.96864],[-87.59036,30.96798],[-87.59004,30.96753],[-87.58999,30.96724],[-87.58971,30.96693],[-87.5893,30.96663],[-87.58906,30.96626],[-87.58886,30.96575],[-87.5888,30.9653],[-87.5889,30.96449],[-87.58867,30.96414],[-87.58868,30.96381],[-87.5889,30.96329],[-87.58891,30.9627],[-87.58914,30.96194],[-87.58893,30.96132],[-87.58952,30.96079],[-87.58974,30.96015],[-87.58995,30.95997],[-87.59003,30.95973],[-87.58988,30.95889],[-87.59043,30.95813],[-87.5905,30.95784],[-87.59086,30.95752],[-87.59119,30.95712],[-87.59137,30.95638],[-87.59139,30.9551],[-87.59093,30.95382],[-87.59093,30.95351],[-87.5911,30.95312],[-87.59138,30.95279],[-87.59184,30.95255],[-87.59187,30.95229],[-87.59166,30.95191],[-87.59161,30.95167],[-87.59176,30.95132],[-87.592,30.95121],[-87.59265,30.95117],[-87.59305,30.95093],[-87.59349,30.95035],[-87.59418,30.94988],[-87.59421,30.94972],[-87.59391,30.94945],[-87.59381,30.9491],[-87.59382,30.94868],[-87.5939,30.94837],[-87.5939,30.94804],[-87.59443,30.94684],[-87.5945,30.94635],[-87.59486,30.94569],[-87.59501,30.9446],[-87.59545,30.94338],[-87.59572,30.94287],[-87.59584,30.94243],[-87.59601,30.94198],[-87.5965,30.94152],[-87.59689,30.94056],[-87.59775,30.93926],[-87.59791,30.93899],[-87.59802,30.93835],[-87.59842,30.93806],[-87.59936,30.93795],[-87.59971,30.93781],[-87.60096,30.93638],[-87.60117,30.93595],[-87.60168,30.93573],[-87.60178,30.9355],[-87.60174,30.93508],[-87.60199,30.93473],[-87.60209,30.93439],[-87.6031,30.93253],[-87.60307,30.93227],[-87.60277,30.93175],[-87.60284,30.93157],[-87.603,30.93144],[-87.60329,30.93131],[-87.60351,30.93112],[-87.60351,30.93085],[-87.60364,30.93065],[-87.60386,30.93054],[-87.6042,30.93003],[-87.6045,30.92919],[-87.60489,30.92889],[-87.60487,30.92842],[-87.60504,30.92814],[-87.60527,30.92802],[-87.60535,30.92765],[-87.60545,30.92742],[-87.60577,30.92719],[-87.60583,30.92703],[-87.60582,30.92662],[-87.6066,30.92524],[-87.60694,30.92524],[-87.60726,30.92471],[-87.60743,30.92389],[-87.60751,30.92293],[-87.60769,30.92253],[-87.60774,30.92222],[-87.60766,30.92172],[-87.6083,30.92075],[-87.60829,30.92015],[-87.60843,30.91975],[-87.60912,30.91915],[-87.60963,30.91805],[-87.60994,30.91717],[-87.60989,30.91676],[-87.60993,30.91652],[-87.61018,30.91627],[-87.61057,30.91602],[-87.61068,30.91546],[-87.61092,30.9151],[-87.61134,30.91487],[-87.61149,30.91468],[-87.6117,30.91403],[-87.61201,30.91372],[-87.61221,30.91339],[-87.6123,30.91299],[-87.61228,30.9108],[-87.61254,30.91024],[-87.61274,30.90999],[-87.61297,30.90945],[-87.61329,30.90906],[-87.61402,30.90845],[-87.61411,30.90824],[-87.61412,30.90799],[-87.61385,30.90764],[-87.61385,30.90746],[-87.61435,30.90692],[-87.61432,30.90653],[-87.61439,30.90614],[-87.61462,30.90587],[-87.61511,30.90553],[-87.61528,30.90518],[-87.6151,30.90499],[-87.61473,30.90485],[-87.61461,30.90456],[-87.61441,30.90444],[-87.6144,30.90412],[-87.61477,30.90385],[-87.61526,30.90368],[-87.61535,30.90353],[-87.61526,30.90314],[-87.61527,30.90278],[-87.61545,30.90209],[-87.61569,30.90159],[-87.61629,30.90099],[-87.61733,30.90009],[-87.61781,30.89989],[-87.61843,30.89997],[-87.61861,30.89988],[-87.61884,30.8992],[-87.61896,30.89912],[-87.61922,30.89909],[-87.61974,30.89925],[-87.61993,30.89927],[-87.62018,30.89907],[-87.62034,30.89867],[-87.62058,30.89841],[-87.62089,30.8983],[-87.62104,30.8982],[-87.62109,30.89804],[-87.62185,30.89768],[-87.62184,30.89728],[-87.62174,30.89704],[-87.62214,30.89676],[-87.62212,30.89661],[-87.62162,30.8965],[-87.62126,30.89624],[-87.62123,30.89602],[-87.62091,30.89572],[-87.62086,30.89547],[-87.62093,30.8953],[-87.6211,30.89509],[-87.62134,30.89507],[-87.62169,30.89513],[-87.62191,30.89508],[-87.6222,30.89486],[-87.62225,30.89458],[-87.62203,30.89425],[-87.62202,30.89359],[-87.62176,30.89248],[-87.62152,30.89225],[-87.62126,30.89214],[-87.62119,30.89144],[-87.62077,30.89067],[-87.62072,30.89064],[-87.62042,30.89],[-87.62043,30.88944],[-87.62056,30.889],[-87.62054,30.88867],[-87.62034,30.88827],[-87.62035,30.88808],[-87.62065,30.8878],[-87.62061,30.88766],[-87.62043,30.88759],[-87.62026,30.8874],[-87.62055,30.88703],[-87.62098,30.887],[-87.62107,30.88688],[-87.6209,30.88665],[-87.62111,30.88652],[-87.62103,30.88625],[-87.62115,30.8861],[-87.62115,30.88588],[-87.62129,30.88582],[-87.62148,30.8855],[-87.62196,30.88542],[-87.62217,30.88526],[-87.62218,30.88504],[-87.62226,30.88489],[-87.62288,30.88488],[-87.62319,30.88464],[-87.62437,30.88452],[-87.62467,30.88437],[-87.62469,30.88425],[-87.62425,30.8841],[-87.62451,30.88382],[-87.62469,30.88376],[-87.62539,30.88382],[-87.62557,30.88375],[-87.62598,30.8833],[-87.62616,30.8827],[-87.62654,30.88215],[-87.62696,30.88177],[-87.62753,30.88159],[-87.62824,30.88069],[-87.62913,30.88041],[-87.6293,30.87997],[-87.62943,30.87986],[-87.62942,30.87955],[-87.62958,30.87937],[-87.62961,30.87891],[-87.62946,30.87874],[-87.62947,30.87864],[-87.62958,30.87862],[-87.62964,30.87846],[-87.6296,30.87822],[-87.62992,30.87767],[-87.63008,30.87729],[-87.63019,30.87622],[-87.63046,30.8759],[-87.63053,30.87556],[-87.63066,30.8754],[-87.63101,30.87483],[-87.63101,30.87455],[-87.63115,30.8743],[-87.63123,30.87384],[-87.63142,30.87339],[-87.63168,30.87301],[-87.63188,30.87287],[-87.63202,30.87259],[-87.63204,30.87236],[-87.63169,30.87232],[-87.63185,30.87214],[-87.63206,30.87188],[-87.6322,30.87179],[-87.63226,30.8718],[-87.63232,30.87176],[-87.63239,30.87168],[-87.63241,30.87138],[-87.63256,30.87129],[-87.63276,30.87125],[-87.63288,30.8712],[-87.63292,30.87108],[-87.6329,30.86989],[-87.63314,30.86936],[-87.63314,30.86927],[-87.63312,30.86917],[-87.63303,30.86899],[-87.63308,30.8688],[-87.63338,30.86845],[-87.63374,30.86827],[-87.63389,30.86811],[-87.63409,30.86782],[-87.63424,30.86765],[-87.63432,30.86743],[-87.63455,30.86698],[-87.63479,30.86671],[-87.63486,30.86653],[-87.6349,30.86625],[-87.63463,30.86547],[-87.63368,30.86514],[-87.63371,30.8647],[-87.63288,30.86459],[-87.63234,30.86426],[-87.63219,30.86381],[-87.63182,30.8636],[-87.63188,30.86314],[-87.6315,30.86304],[-87.63152,30.8622],[-87.63084,30.86225],[-87.6304,30.86213],[-87.63001,30.86135],[-87.62889,30.86051],[-87.62852,30.86007],[-87.62784,30.86019],[-87.62772,30.85977],[-87.62718,30.85914],[-87.62671,30.85774],[-87.62603,30.8575],[-87.62603,30.85641],[-87.62568,30.85568],[-87.626,30.8551],[-87.62496,30.85461],[-87.62546,30.85349],[-87.62546,30.853],[-87.6259,30.85274],[-87.626,30.85095],[-87.6264,30.85062],[-87.62637,30.84982],[-87.62695,30.84949],[-87.62711,30.84894],[-87.62684,30.84852],[-87.62704,30.84811],[-87.62651,30.84713],[-87.62617,30.84713],[-87.62619,30.84669],[-87.62561,30.84637],[-87.62535,30.84596],[-87.62481,30.84615],[-87.6243,30.84573],[-87.62376,30.84579],[-87.62284,30.84443],[-87.62243,30.84436],[-87.62241,30.84385],[-87.62164,30.84319],[-87.62127,30.84323],[-87.62101,30.84307],[-87.62121,30.84277],[-87.62037,30.84221],[-87.62025,30.8419],[-87.61972,30.84183],[-87.61931,30.84162],[-87.61909,30.84196],[-87.6189,30.84184],[-87.61894,30.84116],[-87.61829,30.84096],[-87.61794,30.84066],[-87.61702,30.84028],[-87.61717,30.83968],[-87.61617,30.83887],[-87.61623,30.83799],[-87.61539,30.83763],[-87.61553,30.8372],[-87.61493,30.83641],[-87.6152,30.83604],[-87.61504,30.83542],[-87.61577,30.83509],[-87.61522,30.83417],[-87.61402,30.83421],[-87.612,30.83323],[-87.61149,30.83341],[-87.61032,30.83247],[-87.60945,30.83283],[-87.6087,30.83264],[-87.60834,30.83222],[-87.60653,30.83126],[-87.60547,30.83098],[-87.60528,30.83135],[-87.60476,30.83115],[-87.60439,30.83148],[-87.60277,30.82909],[-87.60311,30.82892],[-87.60302,30.82808],[-87.6027,30.82741],[-87.60324,30.82662],[-87.60206,30.82622],[-87.60215,30.82552],[-87.60148,30.82526],[-87.6008,30.82124],[-87.6002,30.82053],[-87.59928,30.82031],[-87.59784,30.81886],[-87.59654,30.81814],[-87.59604,30.81831],[-87.59549,30.81765],[-87.5941,30.81749],[-87.59437,30.81698],[-87.59369,30.81694],[-87.59348,30.81633],[-87.59305,30.81642],[-87.59267,30.81602],[-87.59102,30.81605],[-87.59056,30.81581],[-87.59021,30.81591],[-87.58916,30.81516],[-87.58805,30.81502],[-87.58784,30.8149],[-87.58758,30.81522],[-87.58729,30.81516],[-87.58723,30.81443],[-87.58691,30.81451],[-87.58682,30.8139],[-87.58537,30.81356],[-87.58508,30.81369],[-87.58421,30.8132],[-87.58379,30.81356],[-87.58346,30.81282],[-87.58193,30.81261],[-87.58179,30.81229],[-87.58097,30.8118],[-87.58104,30.81132],[-87.58016,30.81125],[-87.58027,30.81077],[-87.57951,30.81085],[-87.57822,30.80901],[-87.57717,30.80878],[-87.57653,30.80792],[-87.57665,30.80681],[-87.5762,30.80643],[-87.57575,30.80646],[-87.57456,30.8052],[-87.57468,30.80469],[-87.57421,30.80338],[-87.57339,30.80278],[-87.57227,30.80239],[-87.57267,30.80131],[-87.57189,30.801],[-87.57193,30.80021],[-87.57111,30.80013],[-87.57046,30.80057],[-87.57016,30.80006],[-87.56985,30.80003],[-87.56952,30.80045],[-87.56823,30.8001],[-87.56787,30.79944],[-87.56809,30.79868],[-87.56757,30.79805],[-87.567,30.79809],[-87.5663,30.79735],[-87.56544,30.79673],[-87.56505,30.79683],[-87.56449,30.79634],[-87.56384,30.79628],[-87.56366,30.79573],[-87.56304,30.79534],[-87.56262,30.79479],[-87.5626,30.79449],[-87.56122,30.79343],[-87.56088,30.79296],[-87.56116,30.79237],[-87.56008,30.79212],[-87.55965,30.79138],[-87.5589,30.79114],[-87.55918,30.7905],[-87.55804,30.7902],[-87.55706,30.79017],[-87.55743,30.7892],[-87.55669,30.78897],[-87.55634,30.7883],[-87.55531,30.78813],[-87.55467,30.78764],[-87.55437,30.78701],[-87.55318,30.78707],[-87.55143,30.78576],[-87.55152,30.78472],[-87.55077,30.78432],[-87.55127,30.78304],[-87.55022,30.78118],[-87.54954,30.78094],[-87.54874,30.78143],[-87.54801,30.78064],[-87.54736,30.78096],[-87.54705,30.77995],[-87.54543,30.77948],[-87.54469,30.77827],[-87.54493,30.77764],[-87.546,30.77715],[-87.54489,30.7766],[-87.5452,30.77541],[-87.5453,30.77445],[-87.54605,30.77252],[-87.54593,30.77176],[-87.54441,30.77166],[-87.54417,30.77038],[-87.54047,30.76579],[-87.54009,30.7647],[-87.53928,30.76386],[-87.53696,30.76297],[-87.53679,30.76182],[-87.53619,30.76151],[-87.53604,30.76045],[-87.53563,30.75977],[-87.53569,30.75901],[-87.53525,30.75827],[-87.53544,30.75771],[-87.53526,30.75689],[-87.5352,30.75522],[-87.53451,30.75467],[-87.53428,30.75364],[-87.53447,30.75265],[-87.53532,30.75226],[-87.53518,30.74948],[-87.53375,30.74851],[-87.53313,30.74699],[-87.5317,30.74594],[-87.53265,30.74483],[-87.53248,30.74314],[-87.53098,30.74319],[-87.52946,30.74245],[-87.53023,30.74133],[-87.52992,30.74088],[-87.52865,30.74101],[-87.52773,30.74047],[-87.5262,30.74044],[-87.52516,30.73901],[-87.52406,30.73861],[-87.52283,30.73765],[-87.5203,30.73744],[-87.51949,30.73642],[-87.51846,30.73602],[-87.5173,30.73427],[-87.51543,30.73441],[-87.5148,30.73301],[-87.51378,30.73327],[-87.51268,30.73319],[-87.51202,30.73369],[-87.51157,30.73317],[-87.51053,30.7328],[-87.51067,30.73185],[-87.50956,30.73116],[-87.50895,30.72953],[-87.50895,30.72815],[-87.50779,30.72783],[-87.50702,30.72706],[-87.50506,30.72619],[-87.50519,30.72567],[-87.50605,30.72511],[-87.50325,30.72386],[-87.50301,30.72215],[-87.50224,30.72134],[-87.50057,30.72111],[-87.49935,30.7207],[-87.49828,30.72099],[-87.49792,30.71993],[-87.49696,30.7202],[-87.49445,30.71967],[-87.49402,30.71988],[-87.49291,30.71975],[-87.49251,30.72044],[-87.4919,30.71994],[-87.49157,30.71893],[-87.49051,30.71899],[-87.48965,30.71874],[-87.48854,30.71751],[-87.48742,30.71836],[-87.48657,30.71813],[-87.48581,30.71749],[-87.48458,30.71709],[-87.48443,30.71561],[-87.48341,30.71539],[-87.48286,30.71653],[-87.48222,30.71715],[-87.48127,30.71708],[-87.48124,30.71644],[-87.47972,30.71474],[-87.47808,30.71344],[-87.4783,30.71258],[-87.47971,30.7127],[-87.48028,30.71175],[-87.47915,30.70945],[-87.47746,30.70999],[-87.47514,30.70904],[-87.47518,30.70855],[-87.4756,30.70806],[-87.47434,30.70653],[-87.4761,30.70568],[-87.47588,30.70519],[-87.47516,30.70519],[-87.4727,30.70441],[-87.47272,30.70564],[-87.47225,30.70562],[-87.47121,30.70517],[-87.47008,30.7051],[-87.46953,30.70469],[-87.46961,30.70302],[-87.46826,30.70242],[-87.46763,30.70103],[-87.46831,30.70035],[-87.46767,30.70001],[-87.46654,30.7007],[-87.46498,30.70049],[-87.4634,30.70053],[-87.46225,30.70013],[-87.46174,30.69977],[-87.4611,30.69965],[-87.45997,30.69827],[-87.4588,30.698],[-87.45812,30.69633],[-87.45659,30.6976],[-87.45513,30.69785],[-87.45369,30.69876],[-87.45254,30.69817],[-87.45192,30.69835],[-87.45165,30.69933],[-87.45134,30.6995],[-87.45067,30.69891],[-87.44931,30.69883],[-87.44872,30.69773],[-87.44879,30.6971],[-87.44857,30.69662],[-87.44799,30.69638],[-87.44728,30.69574],[-87.44627,30.69566],[-87.44574,30.69522],[-87.44377,30.69459],[-87.44262,30.69274],[-87.4403,30.69034],[-87.43751,30.68961],[-87.43634,30.68881],[-87.43583,30.68827],[-87.4329,30.68833],[-87.43186,30.68764],[-87.43044,30.6882],[-87.43009,30.68817],[-87.42987,30.68654],[-87.428,30.68609],[-87.42769,30.68442],[-87.42701,30.68376],[-87.42647,30.68283],[-87.42495,30.68337],[-87.42233,30.68216],[-87.42188,30.68092],[-87.42027,30.6809],[-87.41927,30.67965],[-87.41903,30.67845],[-87.41775,30.67815],[-87.41704,30.67936],[-87.4163,30.67884],[-87.41494,30.67825],[-87.41221,30.67776],[-87.40918,30.67636],[-87.40797,30.67549],[-87.40655,30.67506],[-87.40643,30.67427],[-87.40752,30.67189],[-87.40588,30.67102],[-87.406,30.66923],[-87.40538,30.66784],[-87.40576,30.66647],[-87.40355,30.66585],[-87.40264,30.66487],[-87.40318,30.6638],[-87.40332,30.66274],[-87.40221,30.66104],[-87.40231,30.6602],[-87.4028,30.6597],[-87.4033,30.65813],[-87.40306,30.65732],[-87.40256,30.65695],[-87.40171,30.65677],[-87.40092,30.65614],[-87.40042,30.65719],[-87.40005,30.65706],[-87.39987,30.65585],[-87.3986,30.65635],[-87.39663,30.65454],[-87.39656,30.65228],[-87.3958,30.6504],[-87.39696,30.64849],[-87.39692,30.64797],[-87.39432,30.64546],[-87.39571,30.64495],[-87.39572,30.64409],[-87.39494,30.64262],[-87.39402,30.64182],[-87.39434,30.64005],[-87.39426,30.63814],[-87.3945,30.6372],[-87.39517,30.63618],[-87.39516,30.63537],[-87.39404,30.63376],[-87.39442,30.6334],[-87.39545,30.63322],[-87.39566,30.63286],[-87.39446,30.63184],[-87.39352,30.63152],[-87.39344,30.63022],[-87.39367,30.62922],[-87.39347,30.6287],[-87.39333,30.62745],[-87.39355,30.62683],[-87.3938,30.62577],[-87.3943,30.62509],[-87.39456,30.62422],[-87.39599,30.62417],[-87.39601,30.62381],[-87.39514,30.62347],[-87.39527,30.62267],[-87.39504,30.62211],[-87.39533,30.62134],[-87.39531,30.62048],[-87.39599,30.62004],[-87.39582,30.61865],[-87.39654,30.61701],[-87.39611,30.61633],[-87.39495,30.61622],[-87.39471,30.6158],[-87.39466,30.61512],[-87.39502,30.61385],[-87.39649,30.61095],[-87.39657,30.60902],[-87.39721,30.60828],[-87.39772,30.60735],[-87.39836,30.60652],[-87.39886,30.60546],[-87.39992,30.60606],[-87.40037,30.60607],[-87.40346,30.60529],[-87.40357,30.60479],[-87.40322,30.60387],[-87.40347,30.60336],[-87.40441,30.60292],[-87.4058,30.60336],[-87.4062,30.60322],[-87.40614,30.60249],[-87.40562,30.60159],[-87.4067,30.60184],[-87.40759,30.60086],[-87.4076,30.60028],[-87.407,30.59982],[-87.40587,30.60008],[-87.40523,30.59879],[-87.40628,30.59837],[-87.40608,30.59797],[-87.40551,30.59773],[-87.40549,30.59739],[-87.40739,30.59599],[-87.40707,30.59495],[-87.40684,30.59341],[-87.40711,30.5924],[-87.40785,30.5912],[-87.4077,30.58968],[-87.40825,30.5886],[-87.40801,30.5883],[-87.40734,30.58808],[-87.40762,30.58758],[-87.40935,30.58583],[-87.40858,30.58486],[-87.40802,30.58384],[-87.40916,30.58305],[-87.40932,30.58199],[-87.41022,30.58088],[-87.41103,30.58042],[-87.41078,30.57955],[-87.40995,30.57988],[-87.40984,30.57931],[-87.41047,30.57874],[-87.41075,30.57815],[-87.41176,30.57797],[-87.41152,30.57718],[-87.41175,30.57632],[-87.41204,30.57638],[-87.41213,30.57691],[-87.41231,30.57712],[-87.41254,30.57703],[-87.41255,30.57656],[-87.41175,30.5754],[-87.41195,30.5741],[-87.41311,30.57298],[-87.41362,30.57295],[-87.41377,30.57349],[-87.41416,30.57355],[-87.41464,30.57247],[-87.41523,30.57273],[-87.41594,30.57256],[-87.41638,30.57191],[-87.41622,30.57114],[-87.41654,30.57062],[-87.41709,30.5707],[-87.41707,30.56993],[-87.41757,30.5698],[-87.41843,30.57022],[-87.4181,30.56931],[-87.4175,30.56875],[-87.41743,30.56807],[-87.41656,30.56787],[-87.41677,30.56681],[-87.41627,30.56634],[-87.41617,30.56612],[-87.4169,30.56579],[-87.41728,30.56533],[-87.41736,30.56466],[-87.41761,30.5646],[-87.41807,30.56509],[-87.41834,30.5649],[-87.41796,30.56394],[-87.41833,30.56307],[-87.41795,30.56216],[-87.41853,30.56197],[-87.41898,30.56145],[-87.41953,30.56132],[-87.4209,30.56049],[-87.42145,30.56102],[-87.42168,30.56103],[-87.42181,30.56016],[-87.42218,30.56011],[-87.42221,30.56078],[-87.42311,30.56151],[-87.42336,30.56087],[-87.42403,30.5609],[-87.42391,30.56043],[-87.42417,30.55967],[-87.4246,30.55965],[-87.42509,30.56032],[-87.42537,30.56029],[-87.42583,30.55925],[-87.4264,30.55892],[-87.42634,30.55748],[-87.42563,30.55711],[-87.42648,30.55609],[-87.42681,30.55673],[-87.42704,30.55674],[-87.42727,30.55567],[-87.42697,30.55514],[-87.42753,30.5538],[-87.42926,30.55191],[-87.43068,30.5509],[-87.43102,30.55007],[-87.4321,30.54976],[-87.43505,30.54927],[-87.4349,30.54787],[-87.43534,30.54741],[-87.43516,30.54628],[-87.43593,30.54613],[-87.43616,30.54557],[-87.43619,30.54497],[-87.43654,30.54485],[-87.43681,30.5437],[-87.43661,30.54368],[-87.43625,30.54413],[-87.43523,30.54387],[-87.43541,30.54267],[-87.43642,30.54297],[-87.43675,30.54276],[-87.43696,30.54228],[-87.43743,30.54186],[-87.43649,30.54157],[-87.43648,30.5413],[-87.43669,30.54103],[-87.4369,30.54017],[-87.43795,30.5401],[-87.43847,30.54028],[-87.43928,30.5394],[-87.43967,30.5394],[-87.43969,30.54011],[-87.44,30.54011],[-87.44058,30.53877],[-87.43981,30.53832],[-87.44008,30.53796],[-87.44132,30.53754],[-87.44161,30.53721],[-87.4409,30.53653],[-87.44021,30.53265],[-87.4406,30.53173],[-87.44026,30.5312],[-87.43918,30.53097],[-87.43893,30.53027],[-87.44147,30.52968],[-87.44207,30.53013],[-87.44208,30.53111],[-87.44298,30.53164],[-87.44404,30.53131],[-87.44423,30.53089],[-87.4442,30.53028],[-87.44362,30.53],[-87.44293,30.53009],[-87.44265,30.52993],[-87.4436,30.52815],[-87.44429,30.52772],[-87.44452,30.52879],[-87.44501,30.52891],[-87.44563,30.52832],[-87.44591,30.52741],[-87.44628,30.52725],[-87.44751,30.52732],[-87.44799,30.52679],[-87.4482,30.525],[-87.44703,30.52497],[-87.44699,30.52545],[-87.44732,30.52594],[-87.4471,30.52643],[-87.4464,30.52643],[-87.4457,30.52623],[-87.44524,30.52571],[-87.44478,30.52459],[-87.4435,30.52372],[-87.44395,30.52347],[-87.44513,30.52371],[-87.44659,30.5229],[-87.44739,30.5219],[-87.44697,30.52095],[-87.44617,30.51971],[-87.44537,30.51711],[-87.44676,30.51675],[-87.44716,30.51638],[-87.44716,30.51492],[-87.44683,30.5146],[-87.44521,30.51564],[-87.44455,30.51529],[-87.44449,30.5143],[-87.44498,30.51366],[-87.44715,30.51368],[-87.44825,30.51487],[-87.44946,30.51516],[-87.44996,30.51461],[-87.44806,30.51321],[-87.44752,30.51025],[-87.44336,30.50676],[-87.43942,30.50661],[-87.4362,30.50239],[-87.43058,30.49729],[-87.43183,30.494],[-87.43122,30.49168],[-87.4282,30.48848],[-87.42934,30.48727],[-87.43176,30.48828],[-87.4342,30.48772],[-87.43295,30.48338],[-87.43591,30.48045],[-87.43432,30.47882],[-87.43051,30.47649],[-87.42952,30.4703],[-87.42088,30.4624],[-87.41355,30.45734],[-87.40434,30.45242],[-87.37129,30.44871],[-87.36639,30.43327],[-87.43137,30.40385],[-87.45754,30.33563],[-87.50509,30.32303],[-87.50405,30.30257],[-87.45008,30.31111],[-87.45238,30.30019],[-87.5184,30.28385],[-87.51839,30.22963],[-87.5,30],[-87.5,24.74534],[-89.91211,25.04081],[-97.1473,25.95681],[-97.15142,25.95248],[-97.16103,25.95063],[-97.15691,25.96236],[-97.16103,25.9636],[-97.16927,25.96113],[-97.17408,25.96483],[-97.17751,25.96607],[-97.1782,25.96174],[-97.18644,25.95866],[-97.1885,25.95495],[-97.20498,25.95866],[-97.20566,25.96236],[-97.2091,25.96421],[-97.21116,25.96174],[-97.22214,25.95619],[-97.22489,25.95866],[-97.22695,25.95866],[-97.2448,25.95001],[-97.26059,25.95125],[-97.27707,25.9531],[-97.28394,25.95927],[-97.29012,25.95372],[-97.27982,25.94754],[-97.28119,25.94384],[-97.27639,25.9352],[-97.29081,25.93767],[-97.2963,25.93334],[-97.29767,25.93705],[-97.30385,25.93705],[-97.30248,25.93087],[-97.31072,25.92779],[-97.31278,25.93273],[-97.32239,25.9284],[-97.3272,25.91852],[-97.32926,25.91667],[-97.33475,25.92655],[-97.33544,25.92037],[-97.33887,25.92099],[-97.33681,25.92964],[-97.3423,25.92902],[-97.34848,25.93149],[-97.36222,25.91543],[-97.36771,25.91605],[-97.36977,25.91111],[-97.37458,25.90802],[-97.36771,25.90493],[-97.36908,25.89196],[-97.35878,25.89134],[-97.35741,25.88702],[-97.36771,25.88579],[-97.37389,25.87899],[-97.35878,25.87961],[-97.35672,25.86849],[-97.35947,25.86725],[-97.3629,25.86972],[-97.37114,25.85922],[-97.37664,25.85613],[-97.36565,25.85057],[-97.37046,25.84995],[-97.37183,25.84253],[-97.38213,25.84192],[-97.38625,25.84439],[-97.39037,25.84068],[-97.40342,25.83759],[-97.40754,25.84068],[-97.40136,25.84624],[-97.40273,25.85304],[-97.40685,25.84439],[-97.41097,25.84995],[-97.40822,25.85428],[-97.40891,25.86293],[-97.41372,25.8586],[-97.41303,25.84253],[-97.42539,25.84068],[-97.43569,25.8518],[-97.44393,25.84871],[-97.44736,25.85057],[-97.44462,25.85428],[-97.44736,25.85737],[-97.45285,25.85366],[-97.45354,25.85675],[-97.44736,25.86169],[-97.4453,25.86725],[-97.44805,25.87405],[-97.45217,25.86787],[-97.45697,25.86849],[-97.45491,25.88455],[-97.4659,25.88208],[-97.47071,25.8759],[-97.47483,25.87899],[-97.4762,25.88331],[-97.46796,25.88702],[-97.47139,25.89011],[-97.48787,25.88084],[-97.48925,25.8864],[-97.49749,25.88146],[-97.49817,25.89938],[-97.51122,25.88887],[-97.52015,25.88579],[-97.52427,25.89752],[-97.53113,25.90802],[-97.53251,25.91173],[-97.53182,25.9179],[-97.53113,25.92099],[-97.54281,25.92037],[-97.53525,25.92779],[-97.53869,25.93334],[-97.54555,25.92531],[-97.54555,25.93273],[-97.55173,25.93705],[-97.5586,25.93581],[-97.56134,25.92593],[-97.5689,25.92779],[-97.56546,25.93149],[-97.57439,25.93473],[-97.5804,25.93218],[-97.584,25.93334],[-97.58263,25.93705],[-97.58126,25.9389],[-97.56684,25.94507],[-97.56684,25.95248],[-97.57439,25.9531],[-97.57439,25.94631],[-97.5792,25.9426],[-97.58332,25.95742],[-97.58332,25.9636],[-97.59362,25.96298],[-97.59911,25.95742],[-97.61147,25.96607],[-97.60804,25.97656],[-97.61765,25.97903],[-97.62246,25.9889],[-97.62932,25.98829],[-97.63276,25.98952],[-97.63276,25.99446],[-97.63001,25.99631],[-97.62314,25.99384],[-97.61696,25.99508],[-97.61971,26.00248],[-97.62383,25.99755],[-97.62726,26.00001],[-97.62658,26.00433],[-97.63138,26.00619],[-97.6355,26.00125],[-97.64649,26.00804],[-97.65061,26.01112],[-97.64718,26.01297],[-97.63962,26.01297],[-97.63619,26.01668],[-97.64512,26.0284],[-97.65061,26.01729],[-97.65954,26.02038],[-97.66709,26.01914],[-97.66777,26.02408],[-97.66091,26.02963],[-97.66297,26.03951],[-97.66434,26.03334],[-97.66846,26.0284],[-97.67121,26.03519],[-97.67601,26.03334],[-97.67464,26.02902],[-97.67601,26.02655],[-97.68769,26.02778],[-97.69318,26.03148],[-97.69043,26.02408],[-97.69249,26.01853],[-97.69661,26.0247],[-97.6973,26.03087],[-97.70279,26.0321],[-97.7076,26.03704],[-97.70897,26.02655],[-97.72202,26.02408],[-97.71927,26.0321],[-97.73575,26.0321],[-97.73301,26.02963],[-97.72683,26.02902],[-97.72751,26.02346],[-97.73301,26.02285],[-97.73781,26.02285],[-97.73713,26.02902],[-97.74331,26.03087],[-97.74605,26.02778],[-97.74949,26.02655],[-97.74949,26.02963],[-97.75498,26.03087],[-97.76047,26.02655],[-97.76391,26.02778],[-97.76391,26.04321],[-97.77009,26.04753],[-97.77695,26.04506],[-97.77695,26.04074],[-97.76871,26.0358],[-97.7742,26.03457],[-97.77901,26.02963],[-97.78244,26.03457],[-97.79137,26.03395],[-97.79686,26.03889],[-97.79549,26.04259],[-97.79618,26.04691],[-97.79,26.04814],[-97.79343,26.05308],[-97.79961,26.05369],[-97.8003,26.06048],[-97.81266,26.05493],[-97.81197,26.04629],[-97.81609,26.04567],[-97.81609,26.05493],[-97.8257,26.05678],[-97.83463,26.04691],[-97.84012,26.05431],[-97.86072,26.05369],[-97.86141,26.06048],[-97.85935,26.06665],[-97.86347,26.06973],[-97.87102,26.05801],[-97.8724,26.05986],[-97.87514,26.06418],[-97.88819,26.06788],[-97.89093,26.06171],[-97.90261,26.0611],[-97.91359,26.05616],[-97.91909,26.05925],[-97.92664,26.05616],[-97.92733,26.0574],[-97.93351,26.0648],[-97.93625,26.06233],[-97.93213,26.05616],[-97.93557,26.05431],[-97.94449,26.06048],[-97.95205,26.06171],[-97.96647,26.05123],[-97.97677,26.05925],[-97.97883,26.06233],[-97.97951,26.06603],[-97.98295,26.06726],[-97.98707,26.06557],[-97.9905,26.05863],[-97.99393,26.05986],[-97.99668,26.06356],[-98.0008,26.06418],[-98.00629,26.06233],[-98.01178,26.05801],[-98.01178,26.06541],[-98.01453,26.06541],[-98.01659,26.06233],[-98.02208,26.05863],[-98.02414,26.06295],[-98.02758,26.06665],[-98.03307,26.06171],[-98.03994,26.04136],[-98.04543,26.04506],[-98.06328,26.04629],[-98.0729,26.03642],[-98.07702,26.03642],[-98.07839,26.04197],[-98.07152,26.04382],[-98.07015,26.04938],[-98.07496,26.06295],[-98.07702,26.06973],[-98.0832,26.07282],[-98.08526,26.06973],[-98.08114,26.0648],[-98.08526,26.0611],[-98.09281,26.05925],[-98.10036,26.06356],[-98.10654,26.06788],[-98.11135,26.06665],[-98.11959,26.06418],[-98.12508,26.06356],[-98.13057,26.06418],[-98.12989,26.0685],[-98.12783,26.0722],[-98.13195,26.07405],[-98.13675,26.06973],[-98.13675,26.06295],[-98.14499,26.04999],[-98.14843,26.05123],[-98.14911,26.05431],[-98.14843,26.05554],[-98.15186,26.05925],[-98.15735,26.05369],[-98.16216,26.05431],[-98.16353,26.0574],[-98.1601,26.06048],[-98.15735,26.06171],[-98.15873,26.0648],[-98.16353,26.0648],[-98.16765,26.06356],[-98.17109,26.06726],[-98.16971,26.07035],[-98.17521,26.07467],[-98.1807,26.07405],[-98.17933,26.06665],[-98.17864,26.06233],[-98.1807,26.06048],[-98.18413,26.06233],[-98.18894,26.06356],[-98.19306,26.05616],[-98.19855,26.05616],[-98.20199,26.06233],[-98.20885,26.06911],[-98.2164,26.07528],[-98.22945,26.07652],[-98.24387,26.07282],[-98.24936,26.07343],[-98.25211,26.07898],[-98.26378,26.08515],[-98.26567,26.087],[-98.26653,26.09132],[-98.27271,26.09625],[-98.27906,26.09933],[-98.28507,26.10242],[-98.28799,26.10488],[-98.28713,26.10735],[-98.27134,26.10673],[-98.27134,26.11413],[-98.2655,26.11706],[-98.26516,26.12153],[-98.27271,26.11783],[-98.29674,26.12153],[-98.30224,26.11352],[-98.30361,26.1092],[-98.29812,26.10673],[-98.29812,26.10365],[-98.30498,26.10303],[-98.30842,26.10673],[-98.31185,26.1166],[-98.32077,26.11906],[-98.33451,26.13386],[-98.33588,26.13694],[-98.33588,26.14187],[-98.32764,26.14311],[-98.32901,26.14496],[-98.33451,26.14619],[-98.33794,26.14989],[-98.33863,26.15235],[-98.33451,26.15667],[-98.33451,26.16653],[-98.34069,26.16714],[-98.34549,26.16714],[-98.34824,26.16098],[-98.34755,26.1542],[-98.35167,26.15235],[-98.35442,26.1542],[-98.35991,26.15975],[-98.35785,26.16468],[-98.35785,26.16899],[-98.3606,26.17269],[-98.36403,26.17146],[-98.36815,26.16653],[-98.36541,26.15975],[-98.37777,26.1579],[-98.38601,26.1579],[-98.3915,26.16529],[-98.39837,26.16961],[-98.40317,26.17454],[-98.40317,26.1807],[-98.40729,26.18378],[-98.41897,26.18501],[-98.42995,26.19487],[-98.44025,26.19734],[-98.44574,26.20411],[-98.44025,26.21027],[-98.43888,26.2189],[-98.44506,26.22444],[-98.45261,26.22075],[-98.45398,26.21705],[-98.45673,26.22013],[-98.46085,26.22691],[-98.46634,26.22321],[-98.47252,26.22013],[-98.47939,26.22013],[-98.4842,26.21643],[-98.47733,26.20411],[-98.48008,26.20165],[-98.4842,26.20411],[-98.48351,26.20781],[-98.49106,26.21335],[-98.50205,26.21089],[-98.50686,26.21089],[-98.50274,26.22198],[-98.5151,26.22752],[-98.52196,26.22075],[-98.52608,26.22444],[-98.52059,26.2343],[-98.52334,26.23676],[-98.52883,26.22999],[-98.53569,26.22567],[-98.54462,26.24477],[-98.55629,26.24908],[-98.55767,26.24415],[-98.54805,26.24107],[-98.54805,26.23491],[-98.55767,26.23183],[-98.55973,26.22444],[-98.56385,26.22629],[-98.56522,26.23615],[-98.56797,26.24169],[-98.57415,26.23984],[-98.57964,26.23553],[-98.58445,26.24538],[-98.57964,26.25031],[-98.58239,26.2577],[-98.59749,26.2577],[-98.60848,26.25339],[-98.61191,26.25339],[-98.61466,26.24662],[-98.61878,26.24723],[-98.62359,26.26078],[-98.63251,26.25216],[-98.6332,26.24292],[-98.64624,26.23984],[-98.65929,26.23615],[-98.67234,26.23861],[-98.68058,26.246],[-98.6792,26.26016],[-98.68744,26.26632],[-98.69706,26.26447],[-98.7204,26.27494],[-98.71903,26.27864],[-98.70804,26.27864],[-98.70186,26.27987],[-98.70186,26.28479],[-98.70804,26.2891],[-98.71697,26.28787],[-98.71972,26.29218],[-98.72933,26.30018],[-98.73482,26.29957],[-98.74169,26.29403],[-98.74924,26.29587],[-98.75336,26.29957],[-98.75542,26.30572],[-98.75199,26.30757],[-98.74581,26.30634],[-98.741,26.30264],[-98.73688,26.3088],[-98.73826,26.31372],[-98.74444,26.31557],[-98.74787,26.32234],[-98.74924,26.33034],[-98.75473,26.33157],[-98.76572,26.32726],[-98.77259,26.32603],[-98.78975,26.33342],[-98.78838,26.33773],[-98.79662,26.3488],[-98.80005,26.36295],[-98.80692,26.3691],[-98.81379,26.36787],[-98.82409,26.37034],[-98.83164,26.3648],[-98.84469,26.35988],[-98.84949,26.36111],[-98.85773,26.36664],[-98.87078,26.36295],[-98.89756,26.35372],[-98.9003,26.36049],[-98.89962,26.36726],[-98.90305,26.37157],[-98.91198,26.37218],[-98.92228,26.37956],[-98.92365,26.39002],[-98.92708,26.39494],[-98.93601,26.38264],[-98.93395,26.3771],[-98.93807,26.37157],[-98.94356,26.3691],[-98.95592,26.38079],[-98.95249,26.39248],[-98.97103,26.40109],[-98.97789,26.40109],[-98.98888,26.39187],[-99.00948,26.3931],[-99.02184,26.4097],[-99.03901,26.41401],[-99.04725,26.40601],[-99.06373,26.39802],[-99.08432,26.39802],[-99.11248,26.43553],[-99.10218,26.44475],[-99.10012,26.46012],[-99.09394,26.46995],[-99.09256,26.47733],[-99.12896,26.52465],[-99.16054,26.53386],[-99.17016,26.54062],[-99.17222,26.54983],[-99.16741,26.55905],[-99.17771,26.61922],[-99.20105,26.65973],[-99.21067,26.6947],[-99.20861,26.72598],[-99.24019,26.74683],[-99.24363,26.78791],[-99.26423,26.81671],[-99.26835,26.84245],[-99.28139,26.8596],[-99.29581,26.8645],[-99.31641,26.86634],[-99.32465,26.87675],[-99.3274,26.88655],[-99.32259,26.91227],[-99.32671,26.91839],[-99.37272,26.93064],[-99.38782,26.94227],[-99.39332,26.96308],[-99.37821,26.97287],[-99.37752,26.97838],[-99.38576,26.98266],[-99.40567,26.99857],[-99.41666,27.01814],[-99.43177,27.0108],[-99.44756,27.02487],[-99.44619,27.02977],[-99.44619,27.04506],[-99.45374,27.0634],[-99.44275,27.07318],[-99.43177,27.08541],[-99.43039,27.09275],[-99.44001,27.10314],[-99.44344,27.10864],[-99.43108,27.12331],[-99.43177,27.13186],[-99.43383,27.13981],[-99.43932,27.14958],[-99.43863,27.15508],[-99.42971,27.15875],[-99.42559,27.17769],[-99.42971,27.1954],[-99.43314,27.20761],[-99.44069,27.2186],[-99.44207,27.23387],[-99.43932,27.24669],[-99.44893,27.26012],[-99.46061,27.26866],[-99.47159,27.26256],[-99.48739,27.26256],[-99.49769,27.27172],[-99.49151,27.2766],[-99.4867,27.29063],[-99.49563,27.30223],[-99.50318,27.30772],[-99.52858,27.30528],[-99.53614,27.31565],[-99.52996,27.3248],[-99.50455,27.33822],[-99.50455,27.35896],[-99.49288,27.38091],[-99.49151,27.39432],[-99.48739,27.40956],[-99.49357,27.45161],[-99.48601,27.46136],[-99.48395,27.47416],[-99.47983,27.48817],[-99.49494,27.49974],[-99.50181,27.49974],[-99.52034,27.49609],[-99.5279,27.50035],[-99.51966,27.55028],[-99.51279,27.55819],[-99.51279,27.56854],[-99.51966,27.57585],[-99.53339,27.58741],[-99.54232,27.60749],[-99.55605,27.61418],[-99.55742,27.6154],[-99.55948,27.6081],[-99.58214,27.60141],[-99.58832,27.60567],[-99.58352,27.60749],[-99.57665,27.61358],[-99.58008,27.61966],[-99.59107,27.62939],[-99.59725,27.64095],[-99.61441,27.63791],[-99.61853,27.63974],[-99.62403,27.64521],[-99.62746,27.64095],[-99.62746,27.63365],[-99.63845,27.62879],[-99.64875,27.63122],[-99.65355,27.63061],[-99.6666,27.63913],[-99.66317,27.64339],[-99.65836,27.64825],[-99.65973,27.65251],[-99.67141,27.65981],[-99.67965,27.65859],[-99.68857,27.66285],[-99.69132,27.66954],[-99.69407,27.66406],[-99.70025,27.65737],[-99.72428,27.66832],[-99.7229,27.67683],[-99.7593,27.71149],[-99.75792,27.71878],[-99.77372,27.73398],[-99.78951,27.73155],[-99.80118,27.7437],[-99.81217,27.77348],[-99.81904,27.7753],[-99.82522,27.76436],[-99.84238,27.76619],[-99.85131,27.79352],[-99.8671,27.79413],[-99.87877,27.80203],[-99.87671,27.80567],[-99.87603,27.81478],[-99.87809,27.82936],[-99.87809,27.8415],[-99.88358,27.85304],[-99.89663,27.85789],[-99.90418,27.87003],[-99.90143,27.88521],[-99.89388,27.90038],[-99.89869,27.9113],[-99.92615,27.92617],[-99.92409,27.9289],[-99.92753,27.93557],[-99.93371,27.93618],[-99.93782,27.94891],[-99.93988,27.9568],[-99.93233,27.96832],[-99.93096,27.98045],[-99.96804,27.9847],[-99.99276,27.99561],[-100.00031,28.00773],[-100.00924,28.02834],[-100.0161,28.05683],[-100.02434,28.07076],[-100.04082,28.07743],[-100.05181,28.08349],[-100.05661,28.09015],[-100.05799,28.09924],[-100.05867,28.10711],[-100.06623,28.11619],[-100.08683,28.14526],[-100.12116,28.15555],[-100.14313,28.16887],[-100.15343,28.16584],[-100.16648,28.16948],[-100.17403,28.18037],[-100.1912,28.19005],[-100.20562,28.19066],[-100.20905,28.19429],[-100.21523,28.207],[-100.2166,28.22031],[-100.22004,28.2312],[-100.22965,28.23423],[-100.24682,28.23302],[-100.27703,28.26326],[-100.28389,28.27173],[-100.2887,28.27052],[-100.29419,28.28382],[-100.28595,28.30861],[-100.31479,28.34608],[-100.31685,28.35817],[-100.3505,28.40408],[-100.33814,28.42341],[-100.33883,28.44575],[-100.36835,28.47714],[-100.36767,28.48317],[-100.34775,28.48438],[-100.33608,28.49343],[-100.33265,28.50188],[-100.38895,28.51455],[-100.39582,28.52963],[-100.39994,28.53024],[-100.41024,28.55014],[-100.3965,28.57849],[-100.39856,28.58391],[-100.43221,28.6014],[-100.43496,28.60803],[-100.44663,28.60924],[-100.44732,28.64299],[-100.46448,28.64118],[-100.47272,28.64721],[-100.47959,28.65504],[-100.49401,28.65745],[-100.50019,28.66287],[-100.51255,28.69359],[-100.51461,28.70504],[-100.50774,28.71588],[-100.50705,28.72672],[-100.50774,28.73695],[-100.5098,28.73996],[-100.51117,28.74117],[-100.51461,28.74177],[-100.51667,28.75321],[-100.51941,28.75562],[-100.52353,28.75501],[-100.52903,28.75983],[-100.53383,28.76224],[-100.53109,28.76645],[-100.53246,28.77307],[-100.53658,28.77849],[-100.53658,28.78511],[-100.53315,28.79293],[-100.53315,28.80376],[-100.53933,28.80617],[-100.54551,28.81279],[-100.54551,28.82181],[-100.55237,28.82723],[-100.56061,28.82723],[-100.56885,28.82542],[-100.57435,28.82903],[-100.57641,28.84046],[-100.57091,28.84707],[-100.59014,28.86452],[-100.58808,28.87053],[-100.58945,28.87353],[-100.59632,28.87353],[-100.59632,28.88015],[-100.59288,28.87895],[-100.58808,28.88616],[-100.59357,28.88857],[-100.60387,28.88616],[-100.60181,28.90239],[-100.61417,28.90239],[-100.62378,28.909],[-100.63202,28.90239],[-100.64026,28.91622],[-100.63477,28.91562],[-100.62928,28.91862],[-100.63134,28.92163],[-100.63202,28.92463],[-100.64026,28.93004],[-100.64438,28.93605],[-100.65056,28.94266],[-100.6437,28.9757],[-100.64438,28.98652],[-100.64988,29.00333],[-100.65674,29.01474],[-100.66086,29.04176],[-100.66636,29.07717],[-100.67391,29.10057],[-100.68558,29.11077],[-100.69588,29.11437],[-100.71854,29.12277],[-100.73983,29.14256],[-100.73708,29.14736],[-100.75562,29.15695],[-100.7618,29.15875],[-100.76111,29.16295],[-100.76455,29.16775],[-100.77004,29.16715],[-100.77485,29.17614],[-100.76867,29.17734],[-100.76592,29.19233],[-100.77004,29.19952],[-100.77485,29.20192],[-100.77553,29.20611],[-100.77485,29.21271],[-100.78446,29.22769],[-100.79201,29.22709],[-100.79545,29.22709],[-100.79682,29.23668],[-100.79613,29.24626],[-100.80849,29.25225],[-100.81398,29.25345],[-100.81879,29.25585],[-100.81467,29.26004],[-100.8181,29.26543],[-100.83802,29.26304],[-100.87853,29.28041],[-100.88883,29.30735],[-100.92728,29.32891],[-100.94101,29.33549],[-100.94239,29.34507],[-100.95063,29.34746],[-100.96299,29.34627],[-100.96848,29.34986],[-100.97329,29.35464],[-100.99801,29.36482],[-101.00899,29.36781],[-101.0138,29.37559],[-101.0138,29.38217],[-101.02272,29.39773],[-101.02341,29.39234],[-101.03852,29.40969],[-101.04195,29.43002],[-101.05774,29.44318],[-101.06049,29.45813],[-101.08727,29.46829],[-101.11542,29.46949],[-101.12778,29.47965],[-101.13945,29.47248],[-101.14975,29.47666],[-101.17379,29.51491],[-101.23833,29.52507],[-101.25687,29.52029],[-101.26168,29.53881],[-101.24176,29.56569],[-101.25206,29.60211],[-101.24794,29.61704],[-101.25481,29.62778],[-101.26854,29.63256],[-101.28159,29.61465],[-101.27747,29.60749],[-101.28296,29.5854],[-101.29189,29.57226],[-101.31112,29.5848],[-101.31318,29.60808],[-101.30768,29.6236],[-101.30082,29.63614],[-101.30219,29.64867],[-101.3118,29.65822],[-101.34888,29.6618],[-101.35437,29.65822],[-101.35712,29.64986],[-101.35918,29.64867],[-101.37085,29.67612],[-101.37291,29.68805],[-101.3736,29.69401],[-101.37978,29.70356],[-101.3942,29.71131],[-101.40038,29.72264],[-101.39626,29.73337],[-101.40244,29.73934],[-101.4148,29.74351],[-101.41549,29.75305],[-101.40107,29.76139],[-101.39626,29.76676],[-101.40725,29.77212],[-101.42922,29.75782],[-101.43883,29.74828],[-101.45119,29.75126],[-101.45531,29.76855],[-101.456,29.78762],[-101.47866,29.78344],[-101.48621,29.7757],[-101.50063,29.76497],[-101.51436,29.76318],[-101.53702,29.76258],[-101.53771,29.78762],[-101.53634,29.80251],[-101.54664,29.81383],[-101.55213,29.8043],[-101.56929,29.80013],[-101.5741,29.79119],[-101.57685,29.77093],[-101.62697,29.77212],[-101.63315,29.76258],[-101.64551,29.75484],[-101.66062,29.77153],[-101.67366,29.76556],[-101.67229,29.76139],[-101.68053,29.7602],[-101.68808,29.77153],[-101.70937,29.76258],[-101.71898,29.7751],[-101.72585,29.77331],[-101.72928,29.77093],[-101.73615,29.77212],[-101.74439,29.77749],[-101.75332,29.77868],[-101.78559,29.78702],[-101.79177,29.77927],[-101.80962,29.78344],[-101.81237,29.79477],[-101.80344,29.80371],[-101.8158,29.81443],[-101.82679,29.80728],[-101.81992,29.79536],[-101.8261,29.7894],[-101.84739,29.80728],[-101.85425,29.80788],[-101.87554,29.79477],[-101.91056,29.80073],[-101.91811,29.79477],[-101.92566,29.78523],[-101.93253,29.78344],[-101.93322,29.79119],[-101.93734,29.79834],[-101.94764,29.80192],[-101.95862,29.79715],[-101.96412,29.80192],[-101.96618,29.81205],[-101.98197,29.81562],[-101.9854,29.79477],[-101.99501,29.80609],[-102.00943,29.80013],[-102.01561,29.79655],[-102.01905,29.80132],[-102.04171,29.80132],[-102.03896,29.79119],[-102.04308,29.79],[-102.05132,29.78642],[-102.07398,29.78881],[-102.07535,29.79238],[-102.09046,29.79477],[-102.11792,29.79477],[-102.11792,29.8043],[-102.12822,29.79834],[-102.14196,29.80371],[-102.1502,29.81026],[-102.15569,29.81205],[-102.16874,29.82694],[-102.17904,29.82754],[-102.18178,29.83111],[-102.17972,29.83707],[-102.18178,29.84481],[-102.19002,29.84898],[-102.19346,29.83885],[-102.19895,29.83766],[-102.20376,29.84302],[-102.21611,29.84362],[-102.22504,29.84183],[-102.22985,29.84957],[-102.24152,29.846],[-102.24427,29.85791],[-102.24839,29.86565],[-102.25045,29.85493],[-102.26418,29.85672],[-102.26281,29.86684],[-102.27242,29.86863],[-102.28203,29.86565],[-102.32186,29.88054],[-102.3246,29.87339],[-102.32392,29.86565],[-102.3301,29.86327],[-102.33284,29.86684],[-102.34108,29.86982],[-102.34795,29.86267],[-102.35207,29.85493],[-102.3658,29.8454],[-102.36306,29.83528],[-102.37542,29.80371],[-102.37885,29.79],[-102.38846,29.78047],[-102.38778,29.76199],[-102.39876,29.76795],[-102.40563,29.76318],[-102.42142,29.77033],[-102.43241,29.77808],[-102.43721,29.77331],[-102.44751,29.77689],[-102.45919,29.77689],[-102.46537,29.78404],[-102.47155,29.77629],[-102.48185,29.77868],[-102.48734,29.78821],[-102.49833,29.78166],[-102.51549,29.78642],[-102.5203,29.78166],[-102.51069,29.77272],[-102.54914,29.7447],[-102.55463,29.75007],[-102.55394,29.75543],[-102.56012,29.76437],[-102.56836,29.77212],[-102.57317,29.76914],[-102.57386,29.75543],[-102.58072,29.75484],[-102.5869,29.74887],[-102.59652,29.75066],[-102.60064,29.75126],[-102.60819,29.74828],[-102.61437,29.74768],[-102.62398,29.73635],[-102.65969,29.73516],[-102.66655,29.73934],[-102.66861,29.7453],[-102.67548,29.7447],[-102.68166,29.7286],[-102.69059,29.72264],[-102.69059,29.70594],[-102.69883,29.69759],[-102.70089,29.68507],[-102.69539,29.67731],[-102.69677,29.67134],[-102.70707,29.66597],[-102.72561,29.65046],[-102.72561,29.64628],[-102.74277,29.63196],[-102.73865,29.6248],[-102.74621,29.59435],[-102.76131,29.59913],[-102.76955,29.59555],[-102.76268,29.57942],[-102.76818,29.57166],[-102.7723,29.57286],[-102.77848,29.56091],[-102.7723,29.54777],[-102.78809,29.54478],[-102.7929,29.53761],[-102.80869,29.52507],[-102.80663,29.50356],[-102.8032,29.50356],[-102.80594,29.49519],[-102.80045,29.48682],[-102.81418,29.48383],[-102.81418,29.47307],[-102.82517,29.45693],[-102.82036,29.45095],[-102.82174,29.44796],[-102.83135,29.44378],[-102.83272,29.40969],[-102.8135,29.40132],[-102.81556,29.39773],[-102.81899,29.39773],[-102.82723,29.39593],[-102.83341,29.38995],[-102.83478,29.37978],[-102.84508,29.37499],[-102.84508,29.36542],[-102.84028,29.35943],[-102.86293,29.35105],[-102.87804,29.35524],[-102.88285,29.34746],[-102.87941,29.34028],[-102.88559,29.32292],[-102.88628,29.31274],[-102.89246,29.30915],[-102.88834,29.29059],[-102.90276,29.27801],[-102.89933,29.26903],[-102.90207,29.26543],[-102.90551,29.25704],[-102.88765,29.24446],[-102.87186,29.24267],[-102.86499,29.22709],[-102.87598,29.2133],[-102.90207,29.21091],[-102.91169,29.2205],[-102.91718,29.2151],[-102.91375,29.20791],[-102.91512,29.20012],[-102.91855,29.19772],[-102.91924,29.19173],[-102.93297,29.19353],[-102.93709,29.18693],[-102.94259,29.19353],[-102.94465,29.18813],[-102.94877,29.18154],[-102.95289,29.18094],[-102.95151,29.17494],[-102.96319,29.18034],[-102.97898,29.18633],[-102.99065,29.18453],[-102.99889,29.17554],[-102.99271,29.15995],[-103.00232,29.14976],[-103.00507,29.15276],[-103.0085,29.14976],[-103.01125,29.13776],[-103.01606,29.13417],[-103.01331,29.12697],[-103.02155,29.12697],[-103.02842,29.11677],[-103.03666,29.11257],[-103.03254,29.10537],[-103.0449,29.09517],[-103.05588,29.10117],[-103.0655,29.09097],[-103.06893,29.09337],[-103.0806,29.08797],[-103.07717,29.07717],[-103.08678,29.06877],[-103.08266,29.05436],[-103.09159,29.05556],[-103.09021,29.06397],[-103.10051,29.06157],[-103.09708,29.05196],[-103.10738,29.03816],[-103.09845,29.02855],[-103.1012,29.01894],[-103.10738,29.01594],[-103.11631,29.00093],[-103.11356,28.98652],[-103.13553,28.98471],[-103.14927,28.9757],[-103.15339,28.9727],[-103.16369,28.9745],[-103.16712,28.97871],[-103.21312,28.98832],[-103.21999,28.98471],[-103.22892,28.99252],[-103.2399,28.98171],[-103.25089,28.98171],[-103.25158,28.98411],[-103.26806,28.99673],[-103.27904,28.97751],[-103.28797,28.98111],[-103.2811,28.98892],[-103.28797,29.00453],[-103.30239,29.01054],[-103.30925,29.00513],[-103.31749,29.01174],[-103.31063,29.01654],[-103.30788,29.02195],[-103.31612,29.02555],[-103.31818,29.02255],[-103.32573,29.01654],[-103.33809,29.02015],[-103.34153,29.02975],[-103.32917,29.02975],[-103.32779,29.04356],[-103.34359,29.04596],[-103.35114,29.03095],[-103.36144,29.01774],[-103.37655,29.02255],[-103.38753,29.02255],[-103.39097,29.03395],[-103.40058,29.03215],[-103.40401,29.03936],[-103.41431,29.03816],[-103.4253,29.04356],[-103.43216,29.04416],[-103.42804,29.04776],[-103.43422,29.05376],[-103.43422,29.05797],[-103.44109,29.05797],[-103.4507,29.06397],[-103.4507,29.07357],[-103.46238,29.07297],[-103.46032,29.06877],[-103.47062,29.06637],[-103.46993,29.08317],[-103.47611,29.08797],[-103.47336,29.09097],[-103.48229,29.09217],[-103.49465,29.10957],[-103.49946,29.11077],[-103.49946,29.11617],[-103.50563,29.11617],[-103.51319,29.11977],[-103.5228,29.12157],[-103.52349,29.13297],[-103.54134,29.14616],[-103.54958,29.14436],[-103.5537,29.14856],[-103.55027,29.15336],[-103.55301,29.15575],[-103.57293,29.15516],[-103.58117,29.15156],[-103.5949,29.15156],[-103.60589,29.16175],[-103.61344,29.16415],[-103.61893,29.16295],[-103.62786,29.16355],[-103.63129,29.16175],[-103.63541,29.16115],[-103.64159,29.16355],[-103.64571,29.15875],[-103.64846,29.15635],[-103.6512,29.15815],[-103.65189,29.16115],[-103.6567,29.17015],[-103.68966,29.17854],[-103.69927,29.17854],[-103.70339,29.18453],[-103.713,29.18333],[-103.71781,29.18154],[-103.72811,29.19652],[-103.74047,29.20491],[-103.74321,29.22229],[-103.75351,29.2211],[-103.75695,29.22349],[-103.75557,29.22709],[-103.76038,29.23368],[-103.76793,29.22769],[-103.76999,29.22169],[-103.7748,29.2199],[-103.78167,29.22829],[-103.78098,29.24327],[-103.7748,29.24506],[-103.78647,29.26663],[-103.79952,29.25824],[-103.80845,29.26304],[-103.80913,29.27082],[-103.81463,29.27442],[-103.82767,29.27022],[-103.83797,29.27741],[-103.86269,29.27981],[-103.88398,29.284],[-103.88947,29.27921],[-103.89977,29.28819],[-103.91762,29.2858],[-103.91831,29.28879],[-103.92655,29.29418],[-103.96775,29.30017],[-103.97324,29.29657],[-104.0577,29.3331],[-104.0577,29.33669],[-104.07418,29.34686],[-104.08036,29.34507],[-104.08928,29.35584],[-104.0886,29.35764],[-104.09821,29.36721],[-104.11263,29.37499],[-104.11469,29.3708],[-104.12087,29.37439],[-104.1243,29.38038],[-104.13598,29.38516],[-104.14147,29.38097],[-104.14559,29.38815],[-104.1504,29.38935],[-104.15314,29.39473],[-104.16275,29.39114],[-104.16962,29.39653],[-104.16687,29.40012],[-104.17374,29.40909],[-104.18061,29.41328],[-104.18267,29.42703],[-104.19434,29.43601],[-104.19434,29.44318],[-104.21837,29.45932],[-104.21288,29.46231],[-104.20945,29.48264],[-104.21494,29.48622],[-104.23005,29.47845],[-104.23142,29.48204],[-104.23691,29.49818],[-104.24103,29.49818],[-104.25477,29.50714],[-104.26232,29.50595],[-104.263,29.51372],[-104.29184,29.52148],[-104.31176,29.52328],[-104.31244,29.52686],[-104.30901,29.53403],[-104.32,29.53224],[-104.32206,29.52387],[-104.33716,29.51969],[-104.37081,29.54419],[-104.38111,29.54359],[-104.39415,29.55494],[-104.40102,29.57345],[-104.45664,29.60808],[-104.46488,29.61167],[-104.49578,29.63912],[-104.50539,29.63315],[-104.515,29.64032],[-104.51088,29.64569],[-104.52462,29.66478],[-104.53492,29.66896],[-104.54316,29.68208],[-104.5308,29.69342],[-104.54453,29.697],[-104.54659,29.7125],[-104.54934,29.72025],[-104.55002,29.72503],[-104.55071,29.73039],[-104.55483,29.7298],[-104.56101,29.73755],[-104.5514,29.73874],[-104.56994,29.75364],[-104.56856,29.75782],[-104.56582,29.77272],[-104.57955,29.78464],[-104.58367,29.79655],[-104.58916,29.79655],[-104.59122,29.79894],[-104.58436,29.80073],[-104.59259,29.81145],[-104.59534,29.80668],[-104.60907,29.82098],[-104.60907,29.82575],[-104.61937,29.8323],[-104.61045,29.83766],[-104.61663,29.846],[-104.62006,29.84064],[-104.62487,29.84481],[-104.62143,29.84957],[-104.6283,29.85255],[-104.63585,29.87101],[-104.65027,29.88887],[-104.6592,29.88887],[-104.65714,29.90375],[-104.66469,29.90316],[-104.67362,29.91209],[-104.68117,29.92935],[-104.67362,29.95077],[-104.67499,29.95731],[-104.68323,29.9585],[-104.68461,29.97099],[-104.67843,29.98051],[-104.69353,29.97634],[-104.68529,29.98883],[-104.69491,29.9924],[-104.68873,29.99478],[-104.68941,30.00192],[-104.69216,30.0037],[-104.6901,30.01381],[-104.70314,30.02392],[-104.69559,30.03581],[-104.70726,30.05007],[-104.70246,30.06374],[-104.6901,30.07265],[-104.68735,30.0988],[-104.6901,30.09523],[-104.69491,30.10296],[-104.68598,30.10711],[-104.69422,30.11721],[-104.69628,30.13325],[-104.68804,30.14037],[-104.68735,30.17956],[-104.71001,30.22406],[-104.70589,30.23474],[-104.73336,30.26084],[-104.73816,30.26144],[-104.73816,30.2561],[-104.75121,30.26321],[-104.74846,30.2733],[-104.76151,30.27507],[-104.76151,30.27626],[-104.75808,30.28397],[-104.76563,30.30294],[-104.76563,30.30828],[-104.77318,30.30413],[-104.77936,30.30413],[-104.77662,30.30828],[-104.79104,30.32132],[-104.79172,30.32547],[-104.79653,30.3308],[-104.81163,30.33258],[-104.81163,30.34088],[-104.8185,30.3468],[-104.82262,30.35213],[-104.81575,30.3551],[-104.81438,30.35924],[-104.81163,30.3628],[-104.81163,30.36754],[-104.81713,30.36576],[-104.81987,30.3705],[-104.81644,30.37465],[-104.8185,30.37643],[-104.83841,30.37465],[-104.85283,30.3859],[-104.85901,30.39123],[-104.85489,30.40071],[-104.85695,30.40959],[-104.84871,30.41315],[-104.8494,30.41611],[-104.84803,30.41966],[-104.85009,30.41966],[-104.86245,30.42795],[-104.85833,30.43742],[-104.8676,30.44157],[-104.86519,30.45163],[-104.86828,30.4537],[-104.87,30.45844],[-104.86519,30.46465],[-104.86931,30.47353],[-104.86931,30.47945],[-104.87069,30.48122],[-104.86725,30.48418],[-104.86863,30.49483],[-104.87275,30.4966],[-104.87275,30.50903],[-104.87343,30.51258],[-104.87687,30.51199],[-104.87961,30.5179],[-104.88511,30.51849],[-104.88511,30.52027],[-104.88236,30.52263],[-104.88717,30.52441],[-104.88373,30.52618],[-104.88167,30.52618],[-104.88167,30.53269],[-104.88923,30.53505],[-104.8906,30.54156],[-104.88785,30.54747],[-104.89884,30.55575],[-104.89472,30.56048],[-104.89815,30.56699],[-104.90708,30.57822],[-104.9112,30.58472],[-104.91875,30.58531],[-104.92081,30.59063],[-104.92081,30.59595],[-104.9263,30.60541],[-104.92905,30.60068],[-104.93454,30.60068],[-104.93798,30.60659],[-104.94072,30.60541],[-104.94965,30.60423],[-104.95446,30.60659],[-104.96064,30.61014],[-104.96819,30.60955],[-104.973,30.61132],[-104.97437,30.61664],[-104.97918,30.62136],[-104.98055,30.62845],[-104.9833,30.63141],[-104.98604,30.66272],[-104.9936,30.66508],[-104.9936,30.66921],[-104.99978,30.67217],[-104.99978,30.67335],[-105.00252,30.68103],[-105.00733,30.68575],[-105.02861,30.68044],[-105.03548,30.68634],[-105.04097,30.68811],[-105.04372,30.6887],[-105.04578,30.68752],[-105.04509,30.68634],[-105.04647,30.68044],[-105.04853,30.6828],[-105.05402,30.68162],[-105.05402,30.68457],[-105.05745,30.68811],[-105.0602,30.68575],[-105.06363,30.68811],[-105.06226,30.69284],[-105.06432,30.69815],[-105.06981,30.70405],[-105.07599,30.70287],[-105.07943,30.69992],[-105.08355,30.70228],[-105.07874,30.70582],[-105.08149,30.70937],[-105.08698,30.70996],[-105.08767,30.71291],[-105.0911,30.71704],[-105.09797,30.71645],[-105.09934,30.72294],[-105.10483,30.72412],[-105.10209,30.7259],[-105.10209,30.72944],[-105.10758,30.73003],[-105.11033,30.7436],[-105.11376,30.74773],[-105.11582,30.74301],[-105.12063,30.74478],[-105.11788,30.7495],[-105.12681,30.74832],[-105.14466,30.7554],[-105.15427,30.75186],[-105.15633,30.75304],[-105.16182,30.75245],[-105.15564,30.77015],[-105.16526,30.77192],[-105.16526,30.77546],[-105.16663,30.77959],[-105.17006,30.78018],[-105.16938,30.77546],[-105.17624,30.76897],[-105.18586,30.78372],[-105.19066,30.78667],[-105.19547,30.79198],[-105.20165,30.78844],[-105.20714,30.78726],[-105.21264,30.78254],[-105.22088,30.78785],[-105.21813,30.79375],[-105.21264,30.79316],[-105.20989,30.79729],[-105.21332,30.80083],[-105.2147,30.80496],[-105.21744,30.80555],[-105.22706,30.79847],[-105.2298,30.80024],[-105.2298,30.80437],[-105.25658,30.79493],[-105.26207,30.79788],[-105.26619,30.80555],[-105.26894,30.8085],[-105.27581,30.8085],[-105.28199,30.81734],[-105.28748,30.81852],[-105.29091,30.82619],[-105.30121,30.82383],[-105.30053,30.82029],[-105.30602,30.81027],[-105.30877,30.81027],[-105.30877,30.81262],[-105.30808,30.8138],[-105.31014,30.81557],[-105.31701,30.81085],[-105.31838,30.81262],[-105.31563,30.81852],[-105.31838,30.82383],[-105.31838,30.82913],[-105.32937,30.82619],[-105.33211,30.82678],[-105.32799,30.83149],[-105.33761,30.83385],[-105.33967,30.84034],[-105.3479,30.83975],[-105.35271,30.83621],[-105.35408,30.83857],[-105.3534,30.84387],[-105.36026,30.84741],[-105.36301,30.84977],[-105.3685,30.84918],[-105.38842,30.85331],[-105.39528,30.84977],[-105.40215,30.85566],[-105.39528,30.8592],[-105.3946,30.87158],[-105.39185,30.87394],[-105.39254,30.87688],[-105.3994,30.87688],[-105.40421,30.88042],[-105.39803,30.88572],[-105.3994,30.8869],[-105.3994,30.88867],[-105.40421,30.8922],[-105.41245,30.88867],[-105.41176,30.89161],[-105.41314,30.90045],[-105.4255,30.90163],[-105.42893,30.90517],[-105.44198,30.90988],[-105.44541,30.91577],[-105.44472,30.91813],[-105.44747,30.92048],[-105.45296,30.91636],[-105.45502,30.9193],[-105.45228,30.92107],[-105.45296,30.92578],[-105.46463,30.92637],[-105.46669,30.92461],[-105.46807,30.92991],[-105.4715,30.93226],[-105.47081,30.93403],[-105.47631,30.93462],[-105.47768,30.93756],[-105.48111,30.94051],[-105.48729,30.94286],[-105.48935,30.94169],[-105.4921,30.94345],[-105.48867,30.94404],[-105.49485,30.94993],[-105.49897,30.95111],[-105.49622,30.95582],[-105.49416,30.957],[-105.50309,30.96818],[-105.51545,30.96524],[-105.523,30.97643],[-105.52643,30.9776],[-105.5333,30.98585],[-105.54223,30.98526],[-105.55665,30.98835],[-105.57038,31.00851],[-105.56969,31.01675],[-105.57141,31.0191],[-105.57896,31.02028],[-105.58136,31.02763],[-105.5793,31.0344],[-105.58583,31.05793],[-105.59681,31.06558],[-105.60162,31.07822],[-105.6078,31.08645],[-105.62806,31.09851],[-105.64179,31.09851],[-105.64797,31.11556],[-105.71183,31.13789],[-105.71698,31.14259],[-105.71938,31.14935],[-105.74341,31.16581],[-105.76401,31.16404],[-105.77328,31.16727],[-105.77603,31.17638],[-105.78015,31.18225],[-105.7798,31.18989],[-105.78358,31.1987],[-105.79388,31.20164],[-105.81268,31.2238],[-105.83628,31.24714],[-105.85465,31.27268],[-105.86976,31.28911],[-105.87594,31.29204],[-105.89619,31.29116],[-105.90889,31.31375],[-105.92469,31.31228],[-105.93361,31.31375],[-105.93842,31.31844],[-105.94838,31.34073],[-105.94597,31.35393],[-105.95456,31.36565],[-105.96966,31.36565],[-106.00434,31.39233],[-106.0809,31.39877],[-106.11145,31.42368],[-106.13137,31.42514],[-106.1578,31.43774],[-106.17531,31.45444],[-106.2045,31.46469],[-106.21926,31.4805],[-106.22441,31.49982],[-106.23711,31.51328],[-106.24638,31.54167],[-106.24878,31.54401],[-106.28071,31.56215],[-106.2838,31.5718],[-106.29342,31.59462],[-106.30269,31.62122],[-106.33461,31.66331],[-106.34938,31.69604],[-106.37341,31.71414],[-106.38062,31.73196],[-106.39435,31.73926],[-106.42079,31.7521],[-106.43624,31.75532],[-106.45306,31.76437],[-106.46782,31.75882],[-106.4716,31.75028],[-106.48705,31.74699],[-106.50216,31.75677],[-106.50568,31.76042],[-106.50988,31.75998],[-106.51417,31.7702],[-106.52873,31.78168],[-106.52827,31.78324],[-106.53155,31.78388],[-108.20839,31.7836],[-108.20858,31.33339],[-109.05004,31.33224],[-109.05004,31.33249]]]}},{"type":"Feature","properties":{"cq_zone_name":"Eastern Zone of North America","cq_zone_number":5,"cq_zone_name_loc":[38,-60]},"geometry":{"type":"Polygon","coordinates":[[[-79.5,28],[-35,28],[-35,56.86499],[-49,53],[-55.40406,51.76497],[-55.95459,51.74554],[-60,50],[-79.51764,50],[-79.51793,47.55568],[-79.588,47.44426],[-79.5798,47.41083],[-79.47545,47.29875],[-79.43426,47.26114],[-79.43359,47.18448],[-79.44527,47.09939],[-79.40785,47.0543],[-79.34846,47.00921],[-79.31516,46.93415],[-79.25593,46.88068],[-79.2228,46.84128],[-79.2101,46.83159],[-79.16856,46.82378],[-79.16101,46.81098],[-79.1229,46.74459],[-79.11895,46.73211],[-79.10427,46.71435],[-79.10301,46.70826],[-79.09694,46.70029],[-79.09335,46.68878],[-79.08607,46.68186],[-79.0735,46.66473],[-79.05793,46.65467],[-79.04068,46.64392],[-79.02274,46.63693],[-79.01516,46.62816],[-79.00777,46.60373],[-78.99591,46.59274],[-78.99709,46.56769],[-78.9866,46.54512],[-78.95553,46.51717],[-78.93948,46.5071],[-78.92948,46.49408],[-78.91262,46.47823],[-78.8903,46.46098],[-78.85837,46.44161],[-78.83309,46.43597],[-78.80267,46.42324],[-78.75885,46.39358],[-78.73274,46.38686],[-78.72242,46.3709],[-78.72765,46.34963],[-78.72911,46.34092],[-78.7113,46.32479],[-78.69279,46.31791],[-78.63855,46.32158],[-78.59736,46.31861],[-78.54855,46.30806],[-78.50591,46.29489],[-78.47151,46.29347],[-78.42376,46.29537],[-78.3815,46.28967],[-78.35002,46.26882],[-78.31305,46.25319],[-78.29763,46.25486],[-78.29113,46.25937],[-78.25685,46.27505],[-78.23802,46.27554],[-78.21713,46.27034],[-78.17518,46.27631],[-78.13323,46.2742],[-78.11463,46.26284],[-78.05589,46.24387],[-78.03871,46.24257],[-78.01879,46.24738],[-77.99269,46.24887],[-77.92226,46.22334],[-77.8946,46.22031],[-77.87244,46.21301],[-77.79133,46.19615],[-77.72708,46.19236],[-77.69554,46.18286],[-77.69313,46.18331],[-77.69123,46.184],[-77.68974,46.18481],[-77.68723,46.18765],[-77.68497,46.19073],[-77.68204,46.19678],[-77.67962,46.19927],[-77.6718,46.19791],[-77.62072,46.17563],[-77.59203,46.16815],[-77.38071,46.06554],[-77.35625,46.05711],[-77.31501,46.02823],[-77.27583,46.0139],[-77.28665,45.98617],[-77.27344,45.94224],[-77.23602,45.92054],[-77.23637,45.91509],[-77.19723,45.86931],[-77.12745,45.84325],[-77.07484,45.83345],[-77.05025,45.80773],[-77.02051,45.80762],[-76.98884,45.78635],[-76.94155,45.78926],[-76.91314,45.80319],[-76.92782,45.84714],[-76.92308,45.84934],[-76.90766,45.84722],[-76.90117,45.84987],[-76.91003,45.86352],[-76.91922,45.86688],[-76.92217,45.87146],[-76.92292,45.87667],[-76.93025,45.88865],[-76.92293,45.89528],[-76.89135,45.89835],[-76.87247,45.89259],[-76.84947,45.89424],[-76.79866,45.87496],[-76.77944,45.87261],[-76.76485,45.8503],[-76.76948,45.83167],[-76.76554,45.80825],[-76.77996,45.7895],[-76.78021,45.78277],[-76.77528,45.77432],[-76.77326,45.76527],[-76.76794,45.7547],[-76.77202,45.74919],[-76.76445,45.74727],[-76.77044,45.74164],[-76.7695,45.73331],[-76.75649,45.72711],[-76.75153,45.72449],[-76.73394,45.7227],[-76.7303,45.72097],[-76.71904,45.71926],[-76.70809,45.72176],[-76.7033,45.72134],[-76.70434,45.71753],[-76.69902,45.71192],[-76.69201,45.70916],[-76.69451,45.70358],[-76.69496,45.6992],[-76.68608,45.68553],[-76.69009,45.6794],[-76.69895,45.67562],[-76.7094,45.67265],[-76.71435,45.66705],[-76.68367,45.63285],[-76.66948,45.62481],[-76.67485,45.58526],[-76.67428,45.58159],[-76.65843,45.55905],[-76.64457,45.5524],[-76.6307,45.54383],[-76.6201,45.53971],[-76.60779,45.53246],[-76.5211,45.51742],[-76.42463,45.49276],[-76.39605,45.47155],[-76.3654,45.45636],[-76.33227,45.45246],[-76.29552,45.46525],[-76.24108,45.46937],[-76.23823,45.475],[-76.2364,45.50952],[-76.2036,45.51839],[-76.15183,45.51621],[-76.1035,45.52534],[-76.01539,45.48607],[-75.96004,45.46687],[-75.88635,45.39933],[-75.84951,45.37436],[-75.79928,45.37676],[-75.75903,45.41035],[-75.73598,45.41727],[-75.73052,45.41716],[-75.72137,45.41833],[-75.7212,45.4191],[-75.72164,45.41975],[-75.72148,45.42039],[-75.72065,45.42095],[-75.70506,45.4241],[-75.70025,45.4451],[-75.68668,45.45765],[-75.63913,45.46635],[-75.58286,45.4756],[-75.54375,45.48793],[-75.48299,45.51239],[-75.45261,45.52028],[-75.41949,45.52144],[-75.35016,45.53426],[-75.31481,45.54691],[-75.30005,45.55861],[-75.24309,45.58488],[-75.20361,45.5884],[-75.18457,45.57959],[-75.16689,45.57751],[-75.11771,45.57698],[-75.07677,45.58992],[-75.03446,45.59324],[-75.00506,45.60307],[-74.96359,45.62432],[-74.95315,45.6407],[-74.93145,45.64458],[-74.91044,45.64413],[-74.84001,45.63606],[-74.79294,45.6376],[-74.71496,45.62954],[-74.64385,45.63972],[-74.60175,45.61977],[-74.51753,45.5925],[-74.47863,45.59597],[-74.43378,45.57506],[-74.41162,45.57052],[-74.38457,45.56795],[-74.3819,45.56478],[-74.38866,45.54],[-74.39388,45.52279],[-74.41248,45.46559],[-74.42937,45.41669],[-74.43248,45.40977],[-74.43525,45.40238],[-74.44858,45.36611],[-74.4722,45.3027],[-74.43116,45.27204],[-74.40659,45.25322],[-74.32055,45.18693],[-74.34643,45.17219],[-74.3719,45.15695],[-74.43514,45.13154],[-74.49763,45.06283],[-74.54617,45.04438],[-74.58715,45.04194],[-74.64805,45.02179],[-74.66065,45.01487],[-74.66868,45.00445],[-74.67052,45.00626],[-74.67329,45.00081],[-74.68348,44.99949],[-74.70235,45.0033],[-74.72182,44.99843],[-74.73097,44.99046],[-74.74451,44.99066],[-74.76035,44.99501],[-74.76312,45.00572],[-74.79291,45.0044],[-74.79985,45.01078],[-74.80149,45.01455],[-74.81331,45.01353],[-74.8171,45.01159],[-74.82654,45.01586],[-74.83478,45.01464],[-74.84179,45.01129],[-74.84619,45.01028],[-74.85615,45.0045],[-74.86263,45.00454],[-74.86639,45.0005],[-74.87724,45.00142],[-74.88845,44.99997],[-74.90111,44.99252],[-74.90806,44.98351],[-74.94699,44.98486],[-74.9727,44.98345],[-74.99276,44.97752],[-74.99938,44.97168],[-74.99941,44.96611],[-75.00288,44.96243],[-75.00503,44.95841],[-75.02666,44.94663],[-75.05992,44.93446],[-75.0647,44.92949],[-75.09643,44.92706],[-75.1048,44.91964],[-75.11759,44.92108],[-75.13466,44.91506],[-75.14,44.89695],[-75.16496,44.89355],[-75.18888,44.88319],[-75.19418,44.88266],[-75.20291,44.87783],[-75.21836,44.87779],[-75.22815,44.8684],[-75.24103,44.86714],[-75.25603,44.85735],[-75.2683,44.85491],[-75.28486,44.8483],[-75.30742,44.83663],[-75.30189,44.82647],[-75.33356,44.80625],[-75.34442,44.80902],[-75.36959,44.78775],[-75.36995,44.78297],[-75.38787,44.77958],[-75.39653,44.7735],[-75.41373,44.77216],[-75.42364,44.75608],[-75.47612,44.72077],[-75.50492,44.70535],[-75.62003,44.61872],[-75.66134,44.59271],[-75.69934,44.56572],[-75.72028,44.54797],[-75.72331,44.54619],[-75.72586,44.54383],[-75.76692,44.51527],[-75.80759,44.47169],[-75.82139,44.43205],[-75.8699,44.39618],[-75.91284,44.3678],[-75.92167,44.36875],[-75.92953,44.3593],[-75.94084,44.35466],[-75.94973,44.34897],[-75.9702,44.34252],[-75.97292,44.34302],[-75.97503,44.346],[-75.97845,44.3465],[-75.98023,44.34602],[-75.98195,44.34747],[-75.98609,44.34688],[-75.98809,44.34719],[-75.99031,44.34713],[-75.99067,44.34708],[-75.99242,44.34733],[-76.00112,44.34786],[-76.00801,44.34419],[-76.04551,44.3318],[-76.09698,44.29972],[-76.11184,44.29808],[-76.1182,44.29491],[-76.12945,44.29513],[-76.13117,44.29638],[-76.16181,44.28072],[-76.16431,44.23983],[-76.19172,44.22141],[-76.20683,44.215],[-76.24548,44.20386],[-76.28667,44.2038],[-76.31273,44.19905],[-76.35287,44.13433],[-76.43895,44.09405],[-76.7967,43.63114],[-78.69039,43.63113],[-79.20067,43.45047],[-79.07039,43.26238],[-79.05595,43.25466],[-79.0547,43.24875],[-79.05581,43.23908],[-79.05306,43.22347],[-79.05659,43.2103],[-79.04873,43.20016],[-79.05273,43.18405],[-79.05334,43.17391],[-79.05109,43.16761],[-79.04667,43.16238],[-79.04498,43.15591],[-79.04426,43.15189],[-79.04287,43.14927],[-79.04234,43.14366],[-79.0437,43.13841],[-79.04953,43.13513],[-79.05259,43.13163],[-79.05414,43.12936],[-79.05712,43.12702],[-79.05945,43.12647],[-79.06967,43.12033],[-79.06259,43.11608],[-79.06014,43.11386],[-79.05867,43.11091],[-79.05792,43.10711],[-79.06623,43.09133],[-79.06981,43.08855],[-79.07539,43.08161],[-79.07411,43.07786],[-79.00742,43.06591],[-78.99967,43.056],[-79.00534,43.04725],[-79.01187,43.02916],[-79.02345,43.01627],[-79.0202,42.99483],[-79.0117,42.98527],[-78.97503,42.96877],[-78.96178,42.95786],[-78.93275,42.95602],[-78.91925,42.94708],[-78.90951,42.93369],[-78.90609,42.92374],[-78.90595,42.90027],[-78.9155,42.88127],[-78.91614,42.87864],[-78.9354,42.8283],[-80.07983,42.39355],[-80.51985,42.32337],[-80.519,40.6388],[-80.5446,40.63014],[-80.55439,40.62704],[-80.55972,40.62437],[-80.56367,40.62119],[-80.56625,40.61743],[-80.57982,40.61198],[-80.60082,40.6249],[-80.63321,40.61439],[-80.64569,40.60063],[-80.6664,40.58686],[-80.66389,40.57238],[-80.64478,40.55941],[-80.62424,40.52788],[-80.61465,40.49802],[-80.59408,40.47652],[-80.59741,40.45762],[-80.61257,40.43716],[-80.61246,40.40233],[-80.63183,40.39381],[-80.63283,40.38896],[-80.61813,40.38202],[-80.60583,40.37455],[-80.61152,40.34497],[-80.60364,40.33044],[-80.59919,40.31512],[-80.61574,40.28998],[-80.61723,40.26484],[-80.63961,40.25348],[-80.65546,40.24081],[-80.6672,40.19786],[-80.70327,40.15344],[-80.70715,40.13655],[-80.70691,40.10023],[-80.7319,40.08526],[-80.73863,40.07722],[-80.73692,40.06575],[-80.73332,40.05967],[-80.72921,40.04698],[-80.73819,40.01698],[-80.73898,39.97198],[-80.76306,39.95204],[-80.75382,39.91199],[-80.7614,39.90683],[-80.79465,39.91872],[-80.80421,39.91718],[-80.8093,39.90763],[-80.79002,39.87674],[-80.79098,39.86393],[-80.81579,39.85164],[-80.82543,39.84407],[-80.82205,39.8257],[-80.82039,39.80627],[-80.82804,39.79498],[-80.86385,39.77394],[-80.86911,39.76115],[-80.82904,39.71656],[-80.8315,39.70446],[-80.86451,39.69064],[-80.86564,39.66274],[-80.86967,39.63241],[-80.88447,39.61803],[-80.93052,39.61582],[-81.00242,39.56601],[-81.07966,39.5069],[-81.1306,39.4461],[-81.17984,39.43487],[-81.20987,39.40439],[-81.21141,39.3901],[-81.22156,39.38536],[-81.24408,39.38924],[-81.25959,39.38586],[-81.27224,39.38503],[-81.28142,39.37888],[-81.29669,39.37467],[-81.33256,39.35479],[-81.34789,39.34307],[-81.38021,39.34105],[-81.39426,39.3501],[-81.40161,39.3707],[-81.40858,39.38948],[-81.42654,39.40361],[-81.44289,39.40957],[-81.45615,39.40878],[-81.49653,39.37678],[-81.54653,39.3485],[-81.55672,39.33848],[-81.56279,39.31067],[-81.56429,39.27098],[-81.57637,39.26578],[-81.60372,39.2748],[-81.6265,39.27464],[-81.65348,39.27734],[-81.67909,39.27339],[-81.69432,39.25695],[-81.69048,39.22283],[-81.7282,39.21364],[-81.73821,39.19169],[-81.75218,39.1845],[-81.75523,39.17494],[-81.74524,39.14875],[-81.74208,39.11474],[-81.74356,39.09817],[-81.75734,39.08475],[-81.77696,39.07707],[-81.80506,39.08283],[-81.81291,39.08113],[-81.80937,39.05656],[-81.76172,39.01679],[-81.76519,39.00098],[-81.77242,38.99614],[-81.77586,38.98958],[-81.77621,38.98063],[-81.78109,38.96501],[-81.77786,38.95606],[-81.75609,38.93537],[-81.75785,38.92683],[-81.77007,38.92122],[-81.79304,38.92735],[-81.81223,38.9447],[-81.82653,38.94615],[-81.83671,38.93826],[-81.84414,38.92543],[-81.84744,38.89977],[-81.86297,38.88653],[-81.89086,38.87196],[-81.91197,38.87875],[-81.93102,38.89568],[-81.89872,38.93141],[-81.93626,38.99097],[-81.95037,38.99461],[-81.98061,38.99211],[-81.9888,39.01334],[-82.00213,39.02803],[-82.02216,39.02899],[-82.03842,39.02301],[-82.04928,38.99412],[-82.08932,38.97443],[-82.11018,38.93225],[-82.12417,38.91356],[-82.14194,38.89807],[-82.14487,38.88473],[-82.13784,38.86876],[-82.14231,38.84075],[-82.16301,38.82121],[-82.19229,38.81451],[-82.21909,38.79108],[-82.21875,38.77203],[-82.19781,38.75754],[-82.18168,38.70806],[-82.19096,38.68137],[-82.18315,38.65836],[-82.16865,38.62315],[-82.18016,38.59752],[-82.20661,38.58932],[-82.24885,38.59775],[-82.26894,38.59545],[-82.2911,38.57759],[-82.29269,38.54006],[-82.30148,38.52134],[-82.30187,38.49846],[-82.3158,38.4623],[-82.32423,38.44495],[-82.34699,38.43814],[-82.38555,38.43349],[-82.40568,38.43977],[-82.43076,38.43047],[-82.51728,38.40633],[-82.55417,38.40103],[-82.58343,38.40977],[-82.59571,38.42174],[-82.59729,38.41095],[-82.59442,38.39787],[-82.59811,38.3943],[-82.59948,38.39],[-82.5941,38.38202],[-82.59216,38.37672],[-82.59643,38.36721],[-82.59838,38.3507],[-82.59706,38.34387],[-82.5901,38.34113],[-82.58442,38.33421],[-82.57703,38.32864],[-82.57081,38.31578],[-82.57231,38.31251],[-82.57862,38.30466],[-82.58284,38.29718],[-82.57949,38.29151],[-82.57888,38.28275],[-82.57403,38.27534],[-82.57399,38.26415],[-82.58084,38.24864],[-82.58442,38.24549],[-82.59538,38.24503],[-82.60426,38.24735],[-82.60674,38.246],[-82.61214,38.23596],[-82.6087,38.22356],[-82.59797,38.21831],[-82.59882,38.19754],[-82.60419,38.18699],[-82.61153,38.1707],[-82.61863,38.16839],[-82.62513,38.17014],[-82.63813,38.17106],[-82.6426,38.16955],[-82.64433,38.16574],[-82.63834,38.15638],[-82.63797,38.14843],[-82.63725,38.14074],[-82.63598,38.13779],[-82.62109,38.13338],[-82.62085,38.123],[-82.61933,38.1208],[-82.60636,38.12107],[-82.59934,38.1172],[-82.59331,38.11117],[-82.58709,38.10864],[-82.58534,38.10709],[-82.5849,38.09909],[-82.58539,38.09548],[-82.58421,38.09097],[-82.58002,38.08794],[-82.57498,38.08289],[-82.57364,38.08183],[-82.56611,38.08131],[-82.56337,38.07823],[-82.5608,38.07412],[-82.55883,38.07258],[-82.55565,38.07184],[-82.55256,38.07157],[-82.55014,38.07026],[-82.54924,38.06855],[-82.54936,38.06323],[-82.54455,38.05928],[-82.54486,38.05521],[-82.54421,38.05306],[-82.54184,38.04888],[-82.53775,38.04569],[-82.53667,38.04465],[-82.53726,38.04251],[-82.53897,38.03978],[-82.53886,38.03816],[-82.53603,38.03343],[-82.53183,38.02964],[-82.52668,38.02744],[-82.52591,38.02673],[-82.52566,38.01911],[-82.52292,38.01364],[-82.5194,38.0083],[-82.5176,38.00744],[-82.51528,38.00685],[-82.51535,38.00474],[-82.51902,38.00223],[-82.51924,38.0018],[-82.51859,38.00085],[-82.51399,37.99924],[-82.5127,37.99956],[-82.50926,38.00184],[-82.50536,38.00098],[-82.5025,37.99961],[-82.50085,37.99911],[-82.48855,37.99919],[-82.48718,37.99792],[-82.4858,37.99603],[-82.4861,37.9928],[-82.48567,37.98852],[-82.48404,37.98398],[-82.48191,37.9838],[-82.47866,37.98538],[-82.47197,37.987],[-82.46623,37.98543],[-82.46405,37.98346],[-82.46428,37.97757],[-82.46509,37.97652],[-82.46641,37.97574],[-82.46742,37.97418],[-82.46928,37.97289],[-82.47222,37.97272],[-82.4762,37.97323],[-82.48158,37.97297],[-82.48417,37.97144],[-82.48484,37.96413],[-82.48373,37.96338],[-82.47747,37.96169],[-82.47297,37.96085],[-82.4713,37.95988],[-82.47148,37.95882],[-82.47304,37.95715],[-82.4747,37.95469],[-82.47864,37.95149],[-82.48218,37.94782],[-82.48645,37.94527],[-82.48805,37.94489],[-82.49573,37.94674],[-82.49757,37.94595],[-82.49775,37.94288],[-82.49513,37.94076],[-82.48939,37.93929],[-82.48931,37.93814],[-82.49004,37.93628],[-82.49142,37.93567],[-82.49417,37.93639],[-82.49663,37.93663],[-82.49904,37.93706],[-82.49981,37.93678],[-82.50179,37.93515],[-82.50249,37.93364],[-82.50177,37.93237],[-82.49839,37.92818],[-82.49576,37.92692],[-82.48501,37.92722],[-82.48121,37.9267],[-82.48008,37.92592],[-82.4804,37.92466],[-82.48521,37.92166],[-82.48842,37.9191],[-82.4879,37.91702],[-82.47963,37.91515],[-82.47522,37.91171],[-82.47398,37.90657],[-82.47625,37.90299],[-82.4758,37.90168],[-82.47465,37.90002],[-82.47243,37.89898],[-82.47133,37.89902],[-82.46819,37.90337],[-82.46889,37.90553],[-82.46856,37.9077],[-82.46923,37.91091],[-82.46826,37.91413],[-82.46562,37.91491],[-82.46314,37.91501],[-82.4617,37.91389],[-82.46102,37.91094],[-82.45985,37.9094],[-82.45224,37.9088],[-82.44914,37.90627],[-82.44775,37.90408],[-82.43764,37.89993],[-82.43483,37.89619],[-82.43306,37.8907],[-82.43043,37.88859],[-82.42285,37.88682],[-82.42102,37.88585],[-82.41945,37.88427],[-82.41889,37.87339],[-82.41707,37.86969],[-82.41387,37.86899],[-82.40964,37.86903],[-82.40764,37.86799],[-82.40726,37.86736],[-82.40904,37.86548],[-82.41028,37.8653],[-82.41581,37.86477],[-82.42233,37.8638],[-82.42403,37.86306],[-82.42452,37.8617],[-82.42416,37.86048],[-82.41815,37.85763],[-82.41454,37.8564],[-82.4151,37.8545],[-82.42046,37.84751],[-82.42024,37.84617],[-82.41247,37.84489],[-82.40968,37.83767],[-82.40806,37.83555],[-82.39932,37.82963],[-82.39868,37.82421],[-82.39795,37.82192],[-82.40031,37.81769],[-82.40229,37.81265],[-82.40199,37.81021],[-82.40068,37.8091],[-82.39831,37.80864],[-82.39689,37.8088],[-82.39459,37.81086],[-82.38933,37.81741],[-82.38741,37.81855],[-82.38581,37.81787],[-82.38319,37.81441],[-82.38,37.81143],[-82.37849,37.80815],[-82.37773,37.80369],[-82.37671,37.80228],[-82.37236,37.80204],[-82.36877,37.80133],[-82.3661,37.79887],[-82.36516,37.79677],[-82.3637,37.79486],[-82.36051,37.79422],[-82.35691,37.7939],[-82.35501,37.79352],[-82.3534,37.79209],[-82.35179,37.7904],[-82.34907,37.78694],[-82.34076,37.78619],[-82.34001,37.78584],[-82.33893,37.7836],[-82.33864,37.78134],[-82.3387,37.77922],[-82.33932,37.77796],[-82.33862,37.77606],[-82.33651,37.77464],[-82.33303,37.7741],[-82.33001,37.77571],[-82.3252,37.77604],[-82.32425,37.77555],[-82.32274,37.77302],[-82.32321,37.77218],[-82.32966,37.76917],[-82.33346,37.76724],[-82.33425,37.76553],[-82.33314,37.76441],[-82.32899,37.76226],[-82.32618,37.76244],[-82.32059,37.76486],[-82.31774,37.76557],[-82.31472,37.76566],[-82.3119,37.76448],[-82.31111,37.76311],[-82.3106,37.7624],[-82.31078,37.76155],[-82.31258,37.76088],[-82.31669,37.76021],[-82.31864,37.7595],[-82.32059,37.75743],[-82.32122,37.75344],[-82.32202,37.75109],[-82.32342,37.75039],[-82.32704,37.74949],[-82.33185,37.74471],[-82.33361,37.7435],[-82.33416,37.7427],[-82.33382,37.74142],[-82.32636,37.73587],[-82.32242,37.73507],[-82.31955,37.73439],[-82.31822,37.73317],[-82.31815,37.72978],[-82.31798,37.72771],[-82.31713,37.72686],[-82.31599,37.72102],[-82.31268,37.71959],[-82.31123,37.71824],[-82.31061,37.71294],[-82.30912,37.71207],[-82.30806,37.71029],[-82.30808,37.7085],[-82.30697,37.70741],[-82.30587,37.70665],[-82.30121,37.70624],[-82.29768,37.70385],[-82.29646,37.70229],[-82.29706,37.69991],[-82.29979,37.69815],[-82.30196,37.69628],[-82.30284,37.69476],[-82.3027,37.69289],[-82.30129,37.69066],[-82.29975,37.68978],[-82.29788,37.68774],[-82.29663,37.6874],[-82.29615,37.687],[-82.29604,37.68604],[-82.29713,37.68434],[-82.29949,37.6825],[-82.30438,37.678],[-82.3047,37.67647],[-82.30378,37.67567],[-82.30218,37.67562],[-82.29692,37.67808],[-82.29535,37.67843],[-82.29457,37.67789],[-82.29425,37.67345],[-82.29493,37.67157],[-82.29419,37.67003],[-82.29,37.6689],[-82.28786,37.6681],[-82.28583,37.67138],[-82.28442,37.67566],[-82.28355,37.67631],[-82.28173,37.67594],[-82.27813,37.67021],[-82.27469,37.66853],[-82.27186,37.66398],[-82.26461,37.66113],[-82.26038,37.65825],[-82.25813,37.65692],[-82.25316,37.6567],[-82.25084,37.65735],[-82.24679,37.65979],[-82.24102,37.66182],[-82.23945,37.66136],[-82.23785,37.66005],[-82.23617,37.65982],[-82.23394,37.65753],[-82.23403,37.65636],[-82.23309,37.6556],[-82.23017,37.65526],[-82.22588,37.65288],[-82.22543,37.65148],[-82.22542,37.64848],[-82.22455,37.64547],[-82.22331,37.64417],[-82.22031,37.64349],[-82.21662,37.64155],[-82.21668,37.64043],[-82.21847,37.637],[-82.22057,37.63482],[-82.21989,37.6336],[-82.21474,37.62748],[-82.21552,37.62605],[-82.21436,37.62535],[-82.20782,37.62541],[-82.2056,37.62547],[-82.2033,37.62608],[-82.20246,37.6274],[-82.20076,37.62805],[-82.19693,37.62676],[-82.19224,37.62578],[-82.18781,37.62671],[-82.1863,37.62763],[-82.18665,37.63391],[-82.18786,37.63859],[-82.18981,37.64044],[-82.1914,37.64476],[-82.18667,37.64842],[-82.18498,37.64888],[-82.17737,37.64893],[-82.1746,37.6477],[-82.17484,37.64584],[-82.17647,37.64367],[-82.17758,37.64123],[-82.17684,37.63933],[-82.17431,37.63566],[-82.17228,37.63394],[-82.17232,37.63187],[-82.17611,37.62946],[-82.17989,37.62793],[-82.18137,37.62684],[-82.18236,37.62528],[-82.1825,37.62372],[-82.18085,37.62145],[-82.17835,37.61972],[-82.17674,37.6182],[-82.17353,37.61952],[-82.16946,37.62199],[-82.16709,37.62185],[-82.16368,37.62008],[-82.16922,37.613],[-82.16828,37.60864],[-82.1673,37.60805],[-82.16502,37.60779],[-82.15768,37.60973],[-82.15635,37.60881],[-82.1561,37.60481],[-82.157,37.60312],[-82.15667,37.60105],[-82.15763,37.59661],[-82.1572,37.59327],[-82.15618,37.59231],[-82.14852,37.59098],[-82.14566,37.59285],[-82.14134,37.59518],[-82.13322,37.59346],[-82.13188,37.59337],[-82.12997,37.59091],[-82.12891,37.58845],[-82.12697,37.58641],[-82.12639,37.58227],[-82.12555,37.57907],[-82.12425,37.57818],[-82.12433,37.57647],[-82.12569,37.57414],[-82.12821,37.57226],[-82.1416,37.5711],[-82.1433,37.5704],[-82.14434,37.56976],[-82.14477,37.56668],[-82.13907,37.565],[-82.13514,37.56371],[-82.13362,37.56195],[-82.13344,37.56026],[-82.13433,37.55829],[-82.13471,37.55715],[-82.13462,37.55577],[-82.13354,37.55323],[-82.12947,37.55164],[-82.12479,37.55108],[-82.12278,37.55191],[-82.12126,37.55457],[-82.1206,37.55701],[-82.1191,37.55824],[-82.11738,37.55934],[-82.11661,37.5596],[-82.11095,37.55881],[-82.10467,37.56031],[-82.10256,37.55984],[-82.10185,37.55814],[-82.10428,37.55569],[-82.1054,37.55407],[-82.10448,37.55317],[-82.10067,37.55302],[-82.09863,37.55339],[-82.09591,37.55431],[-82.09205,37.5549],[-82.08955,37.55592],[-82.08822,37.55605],[-82.08731,37.55573],[-82.08456,37.55534],[-82.08138,37.55538],[-82.07951,37.55576],[-82.07611,37.55601],[-82.07393,37.55541],[-82.07263,37.55398],[-82.07207,37.55136],[-82.07105,37.55063],[-82.06824,37.54895],[-82.06347,37.54301],[-82.06349,37.54174],[-82.06509,37.53835],[-82.06404,37.53634],[-82.06201,37.53572],[-82.06016,37.53621],[-82.05741,37.53688],[-82.05462,37.53669],[-82.05155,37.53588],[-82.04942,37.53514],[-82.04823,37.53369],[-82.04858,37.53061],[-82.04818,37.52886],[-82.04641,37.52804],[-82.04515,37.52841],[-82.04407,37.52919],[-82.04221,37.5347],[-82.04241,37.53613],[-82.04418,37.5399],[-82.04528,37.54414],[-82.0448,37.54712],[-82.04302,37.54824],[-82.04068,37.54841],[-82.03863,37.54769],[-82.03713,37.54287],[-82.03619,37.54214],[-82.0338,37.54148],[-82.029,37.5378],[-82.02831,37.53742],[-82.02567,37.53814],[-82.01959,37.54091],[-82.01703,37.53899],[-82.01618,37.53401],[-82.01071,37.53296],[-82.00698,37.53354],[-82.00152,37.54064],[-82.00024,37.54256],[-81.99742,37.54338],[-81.99638,37.5418],[-81.99688,37.53845],[-81.99444,37.53774],[-81.9923,37.53843],[-81.98931,37.54279],[-81.98708,37.5432],[-81.98211,37.54184],[-81.97984,37.54318],[-81.97671,37.54555],[-81.9701,37.54688],[-81.96465,37.54315],[-81.96518,37.54129],[-81.96795,37.53793],[-82.05082,37.48061],[-82.06333,37.47048],[-82.09061,37.45117],[-82.13352,37.42124],[-82.17823,37.39096],[-82.20187,37.37501],[-82.20267,37.37404],[-82.22097,37.36128],[-82.2302,37.35469],[-82.24982,37.34107],[-82.25388,37.33806],[-82.26403,37.33105],[-82.28723,37.3149],[-82.28921,37.31357],[-82.29041,37.3129],[-82.29192,37.31163],[-82.30889,37.30041],[-82.30941,37.30005],[-82.31043,37.29896],[-82.31603,37.29487],[-82.31622,37.29418],[-82.31636,37.29391],[-82.31709,37.29365],[-82.31725,37.293],[-82.31713,37.29258],[-82.31737,37.29141],[-82.31741,37.29097],[-82.31799,37.28994],[-82.31858,37.28969],[-82.31879,37.28918],[-82.31872,37.28842],[-82.31896,37.28752],[-82.31976,37.28679],[-82.32094,37.28608],[-82.32214,37.2856],[-82.32382,37.28429],[-82.32407,37.28365],[-82.32461,37.28319],[-82.32493,37.28305],[-82.3254,37.28316],[-82.32683,37.28289],[-82.32751,37.28303],[-82.32848,37.28272],[-82.33,37.28253],[-82.33111,37.28217],[-82.33158,37.28221],[-82.33187,37.28198],[-82.33217,37.28163],[-82.33266,37.28152],[-82.33342,37.28146],[-82.33387,37.28126],[-82.33457,37.28131],[-82.33522,37.28164],[-82.33595,37.28166],[-82.3365,37.28133],[-82.33649,37.28069],[-82.33638,37.28006],[-82.33694,37.27972],[-82.33869,37.28014],[-82.33961,37.28046],[-82.33996,37.28108],[-82.34187,37.28088],[-82.34223,37.28114],[-82.34243,37.28143],[-82.34311,37.2812],[-82.34356,37.2809],[-82.3437,37.27992],[-82.34387,37.27959],[-82.34361,37.27902],[-82.34271,37.27802],[-82.34269,37.27771],[-82.34296,37.27706],[-82.34221,37.27563],[-82.34224,37.27516],[-82.34197,37.27464],[-82.3421,37.27414],[-82.34267,37.27352],[-82.34364,37.27326],[-82.34431,37.27335],[-82.34563,37.27266],[-82.34674,37.27272],[-82.34794,37.27238],[-82.34901,37.27173],[-82.34909,37.27152],[-82.34878,37.27107],[-82.34872,37.27051],[-82.3489,37.27018],[-82.3493,37.27003],[-82.34871,37.26945],[-82.34895,37.26867],[-82.34855,37.26832],[-82.3487,37.26819],[-82.34942,37.26811],[-82.35095,37.26707],[-82.3513,37.26708],[-82.35148,37.26678],[-82.35446,37.26598],[-82.35533,37.26521],[-82.35719,37.2651],[-82.35838,37.26489],[-82.35936,37.26503],[-82.36229,37.26474],[-82.36308,37.26445],[-82.36461,37.26436],[-82.365,37.26421],[-82.36555,37.26362],[-82.36591,37.26353],[-82.36636,37.26305],[-82.36762,37.26274],[-82.36832,37.26236],[-82.36975,37.26252],[-82.37069,37.26215],[-82.37132,37.26177],[-82.37172,37.26178],[-82.37306,37.26129],[-82.37483,37.26038],[-82.37695,37.25981],[-82.3774,37.26001],[-82.37857,37.26008],[-82.37901,37.25983],[-82.38104,37.25997],[-82.3822,37.25995],[-82.3833,37.26011],[-82.38375,37.26],[-82.38394,37.25962],[-82.38469,37.25946],[-82.38552,37.25968],[-82.38666,37.25895],[-82.38856,37.25902],[-82.38912,37.2585],[-82.38995,37.25811],[-82.39099,37.25807],[-82.39238,37.25797],[-82.39318,37.25729],[-82.39469,37.2573],[-82.39545,37.25696],[-82.39672,37.25662],[-82.3973,37.25614],[-82.39849,37.25546],[-82.39974,37.25557],[-82.40049,37.25555],[-82.40151,37.25518],[-82.40253,37.25494],[-82.40293,37.25468],[-82.40379,37.25481],[-82.40473,37.25441],[-82.4054,37.25442],[-82.40667,37.25362],[-82.4074,37.25365],[-82.40809,37.25317],[-82.41036,37.25313],[-82.4115,37.2536],[-82.41186,37.25351],[-82.41259,37.25276],[-82.41309,37.25276],[-82.4135,37.25236],[-82.41496,37.25202],[-82.4171,37.25182],[-82.41804,37.25138],[-82.41871,37.25081],[-82.41955,37.25061],[-82.42234,37.24961],[-82.42296,37.24911],[-82.42453,37.24881],[-82.42629,37.2489],[-82.42764,37.24791],[-82.42924,37.24719],[-82.43099,37.24677],[-82.43303,37.24663],[-82.43471,37.24682],[-82.4357,37.24648],[-82.43615,37.24662],[-82.43695,37.2473],[-82.43821,37.24694],[-82.43967,37.24711],[-82.43995,37.2469],[-82.44005,37.24631],[-82.44141,37.24579],[-82.44254,37.245],[-82.44273,37.24478],[-82.44267,37.24436],[-82.44302,37.24348],[-82.44381,37.24321],[-82.44496,37.24341],[-82.44555,37.24429],[-82.44607,37.24431],[-82.44706,37.24392],[-82.44762,37.24431],[-82.44805,37.24425],[-82.44824,37.24391],[-82.44851,37.24384],[-82.44911,37.24392],[-82.45078,37.24315],[-82.4512,37.24278],[-82.45197,37.24255],[-82.45243,37.24215],[-82.4525,37.24161],[-82.45304,37.24098],[-82.45406,37.24064],[-82.45468,37.24064],[-82.45539,37.24026],[-82.45548,37.23967],[-82.4556,37.23946],[-82.45676,37.23906],[-82.45701,37.23828],[-82.45775,37.23806],[-82.45865,37.23821],[-82.45981,37.23871],[-82.46016,37.2388],[-82.46117,37.23848],[-82.46192,37.23864],[-82.46274,37.23856],[-82.46313,37.23826],[-82.46329,37.23772],[-82.46461,37.23578],[-82.46519,37.23556],[-82.46671,37.23591],[-82.46763,37.2363],[-82.46841,37.23613],[-82.46899,37.23534],[-82.46953,37.23513],[-82.47031,37.23559],[-82.47119,37.23532],[-82.47161,37.23577],[-82.4722,37.23584],[-82.4733,37.23557],[-82.4747,37.23482],[-82.47559,37.23475],[-82.47653,37.23451],[-82.47733,37.23418],[-82.47801,37.23406],[-82.47872,37.23367],[-82.48012,37.23324],[-82.48101,37.23245],[-82.48347,37.23183],[-82.48416,37.23192],[-82.48569,37.23122],[-82.48648,37.23118],[-82.48729,37.2306],[-82.4873,37.23033],[-82.48658,37.22999],[-82.48662,37.22965],[-82.48704,37.22934],[-82.48723,37.22781],[-82.48836,37.22693],[-82.48969,37.22685],[-82.4911,37.2252],[-82.49204,37.22506],[-82.49383,37.2254],[-82.49471,37.22532],[-82.49523,37.22558],[-82.49596,37.22745],[-82.49641,37.22755],[-82.49694,37.22752],[-82.49716,37.22722],[-82.49884,37.22705],[-82.49976,37.22612],[-82.50059,37.22576],[-82.50092,37.22544],[-82.50147,37.22526],[-82.50193,37.22529],[-82.50301,37.22473],[-82.50358,37.22485],[-82.50407,37.22464],[-82.50427,37.22426],[-82.50505,37.22385],[-82.50586,37.22367],[-82.50628,37.22324],[-82.50789,37.22272],[-82.50834,37.22236],[-82.50808,37.22106],[-82.5082,37.22064],[-82.50892,37.2203],[-82.5091,37.2198],[-82.50937,37.21883],[-82.51092,37.21809],[-82.51205,37.21783],[-82.51263,37.2173],[-82.51348,37.21677],[-82.51454,37.21686],[-82.51517,37.21653],[-82.51566,37.21573],[-82.51702,37.21432],[-82.51819,37.21389],[-82.51919,37.21325],[-82.52007,37.21293],[-82.52051,37.21219],[-82.52112,37.21193],[-82.52276,37.21266],[-82.52328,37.21339],[-82.52311,37.21415],[-82.52329,37.2145],[-82.52405,37.21455],[-82.52455,37.21494],[-82.52532,37.21465],[-82.52575,37.21463],[-82.52867,37.21376],[-82.52931,37.21328],[-82.53021,37.21308],[-82.53192,37.21198],[-82.53174,37.21132],[-82.5321,37.21103],[-82.53186,37.21045],[-82.53194,37.20993],[-82.53158,37.20906],[-82.53053,37.20835],[-82.53165,37.20775],[-82.5326,37.20661],[-82.53339,37.20641],[-82.53488,37.20655],[-82.53544,37.20693],[-82.53656,37.20679],[-82.537,37.20721],[-82.53746,37.20665],[-82.53835,37.20651],[-82.53919,37.20703],[-82.54051,37.20651],[-82.54132,37.20653],[-82.54213,37.20539],[-82.54328,37.20527],[-82.5433,37.20486],[-82.54511,37.20335],[-82.54583,37.20308],[-82.54701,37.20357],[-82.54731,37.20354],[-82.54909,37.20271],[-82.54962,37.20364],[-82.54972,37.20431],[-82.55009,37.20447],[-82.55112,37.20412],[-82.55155,37.20356],[-82.55293,37.20299],[-82.55336,37.20308],[-82.55397,37.20278],[-82.55518,37.20171],[-82.55683,37.20085],[-82.55716,37.20026],[-82.55818,37.19952],[-82.55919,37.19956],[-82.55988,37.1989],[-82.56023,37.19893],[-82.56144,37.19809],[-82.56214,37.19779],[-82.56269,37.19726],[-82.56344,37.19721],[-82.56462,37.19619],[-82.56521,37.19628],[-82.56575,37.19554],[-82.56646,37.19548],[-82.56793,37.19442],[-82.56974,37.19348],[-82.57025,37.19307],[-82.5742,37.19116],[-82.57479,37.19042],[-82.57573,37.19016],[-82.57667,37.1902],[-82.57736,37.18971],[-82.57779,37.18922],[-82.57891,37.18852],[-82.58124,37.1878],[-82.58194,37.18731],[-82.58281,37.18704],[-82.58308,37.18676],[-82.58418,37.18661],[-82.58494,37.18612],[-82.58582,37.18614],[-82.58697,37.18548],[-82.58828,37.18448],[-82.58954,37.18432],[-82.59007,37.18379],[-82.59128,37.18352],[-82.59249,37.18291],[-82.59266,37.18231],[-82.5931,37.18234],[-82.59315,37.18195],[-82.59277,37.1804],[-82.59396,37.17958],[-82.59507,37.17849],[-82.59642,37.17801],[-82.59777,37.17689],[-82.60006,37.17658],[-82.60103,37.17597],[-82.60234,37.17543],[-82.60324,37.1755],[-82.60419,37.17452],[-82.60532,37.17409],[-82.60645,37.17404],[-82.6069,37.17311],[-82.60751,37.17295],[-82.60821,37.173],[-82.60911,37.17233],[-82.60984,37.17193],[-82.61036,37.17146],[-82.61122,37.17106],[-82.61195,37.16996],[-82.61432,37.16961],[-82.61516,37.16893],[-82.61643,37.1688],[-82.61955,37.16676],[-82.62084,37.16642],[-82.62158,37.16563],[-82.62369,37.16437],[-82.62462,37.16332],[-82.63001,37.15763],[-82.63093,37.15699],[-82.63202,37.15614],[-82.63342,37.15431],[-82.63407,37.15405],[-82.63469,37.15428],[-82.63728,37.15416],[-82.63955,37.15365],[-82.64022,37.15373],[-82.64094,37.15319],[-82.64312,37.153],[-82.64482,37.1522],[-82.64489,37.15127],[-82.64506,37.15102],[-82.64574,37.1507],[-82.64633,37.15089],[-82.64699,37.15033],[-82.64842,37.15026],[-82.64983,37.15126],[-82.6498,37.15178],[-82.65019,37.15212],[-82.65073,37.15188],[-82.65171,37.15192],[-82.65213,37.15148],[-82.65324,37.15131],[-82.65383,37.15084],[-82.65475,37.15064],[-82.65506,37.14882],[-82.65571,37.14706],[-82.65645,37.1466],[-82.65594,37.14551],[-82.65689,37.14476],[-82.65741,37.14505],[-82.65861,37.14473],[-82.66024,37.1442],[-82.66118,37.14415],[-82.66186,37.14431],[-82.6625,37.14384],[-82.66322,37.14398],[-82.66389,37.14352],[-82.66402,37.14253],[-82.66556,37.14254],[-82.66707,37.14198],[-82.66755,37.14197],[-82.6686,37.14115],[-82.66897,37.14101],[-82.6704,37.13938],[-82.67088,37.13918],[-82.67152,37.13837],[-82.67247,37.138],[-82.67341,37.13821],[-82.67384,37.13801],[-82.67347,37.13747],[-82.67336,37.13679],[-82.67426,37.13676],[-82.67468,37.13595],[-82.67639,37.13566],[-82.6768,37.13497],[-82.67878,37.13519],[-82.67957,37.13567],[-82.68078,37.13719],[-82.68123,37.13693],[-82.68219,37.13736],[-82.68309,37.13695],[-82.68353,37.13661],[-82.68406,37.13586],[-82.68499,37.13577],[-82.68534,37.1354],[-82.68681,37.13448],[-82.68735,37.13463],[-82.68808,37.13376],[-82.6889,37.13391],[-82.6902,37.13365],[-82.69309,37.13287],[-82.69399,37.13238],[-82.69497,37.13217],[-82.69547,37.13188],[-82.69576,37.13151],[-82.69708,37.13067],[-82.69831,37.13044],[-82.69947,37.12948],[-82.70016,37.1294],[-82.70153,37.1285],[-82.70463,37.12835],[-82.70531,37.12793],[-82.70539,37.1271],[-82.70615,37.12647],[-82.70682,37.12644],[-82.70789,37.12548],[-82.70876,37.1251],[-82.70996,37.12507],[-82.71138,37.12421],[-82.7122,37.12403],[-82.71358,37.1231],[-82.71393,37.12252],[-82.71525,37.12168],[-82.71643,37.1221],[-82.71821,37.12233],[-82.71861,37.12159],[-82.72098,37.12099],[-82.72219,37.12008],[-82.72263,37.11931],[-82.72362,37.11863],[-82.72426,37.11737],[-82.72545,37.11677],[-82.72628,37.1159],[-82.72628,37.11511],[-82.72688,37.1148],[-82.72645,37.11395],[-82.72628,37.1118],[-82.72398,37.10905],[-82.72397,37.10831],[-82.72336,37.10732],[-82.72211,37.10608],[-82.72189,37.10524],[-82.72332,37.10376],[-82.72331,37.10323],[-82.72206,37.10206],[-82.7216,37.10124],[-82.72177,37.10003],[-82.72159,37.09875],[-82.72197,37.09749],[-82.72246,37.09673],[-82.72192,37.09501],[-82.72228,37.09433],[-82.72289,37.09365],[-82.72441,37.09296],[-82.72481,37.09255],[-82.72494,37.09181],[-82.72329,37.09041],[-82.72285,37.08984],[-82.72347,37.08873],[-82.72346,37.08797],[-82.72319,37.08714],[-82.72307,37.085],[-82.72277,37.08473],[-82.72189,37.08452],[-82.72175,37.08428],[-82.72067,37.0837],[-82.72085,37.08219],[-82.72068,37.08187],[-82.71806,37.08062],[-82.71723,37.07948],[-82.71703,37.07836],[-82.71657,37.07725],[-82.71725,37.07692],[-82.71767,37.07646],[-82.71835,37.07568],[-82.71983,37.07593],[-82.72182,37.07515],[-82.72338,37.07559],[-82.72392,37.07544],[-82.72515,37.07418],[-82.72707,37.07306],[-82.72648,37.07179],[-82.72626,37.07116],[-82.7263,37.07052],[-82.72579,37.0698],[-82.72581,37.06862],[-82.72635,37.06696],[-82.72594,37.06659],[-82.72552,37.06515],[-82.72465,37.06382],[-82.72415,37.06338],[-82.72391,37.06254],[-82.72297,37.06191],[-82.72302,37.06103],[-82.72272,37.06022],[-82.72324,37.05937],[-82.72285,37.05861],[-82.7223,37.05784],[-82.723,37.05599],[-82.72327,37.05427],[-82.72321,37.05159],[-82.72282,37.0492],[-82.72329,37.04764],[-82.72289,37.04614],[-82.72241,37.04512],[-82.72368,37.04424],[-82.72469,37.04274],[-82.7262,37.042],[-82.72689,37.04213],[-82.72835,37.04281],[-82.72964,37.04258],[-82.73132,37.0435],[-82.73266,37.04326],[-82.73361,37.04463],[-82.73463,37.04438],[-82.736,37.04387],[-82.73719,37.04407],[-82.73971,37.04334],[-82.74084,37.04274],[-82.7424,37.04289],[-82.74366,37.04138],[-82.7438,37.04024],[-82.74369,37.03767],[-82.74391,37.03656],[-82.74448,37.03565],[-82.74475,37.03472],[-82.74581,37.03394],[-82.74518,37.03177],[-82.7455,37.02994],[-82.74648,37.0282],[-82.74741,37.02735],[-82.74783,37.0263],[-82.74797,37.02509],[-82.74781,37.02447],[-82.74899,37.02367],[-82.75016,37.02321],[-82.75078,37.02414],[-82.75123,37.02446],[-82.75178,37.02557],[-82.7546,37.02677],[-82.7581,37.02727],[-82.75921,37.02731],[-82.76028,37.02662],[-82.76119,37.02628],[-82.76231,37.02468],[-82.7649,37.02425],[-82.76574,37.0233],[-82.76639,37.02311],[-82.76706,37.02084],[-82.7695,37.01958],[-82.76945,37.01855],[-82.77008,37.01765],[-82.771,37.01723],[-82.77162,37.01644],[-82.7719,37.01565],[-82.77465,37.01529],[-82.77696,37.01593],[-82.7773,37.01596],[-82.77738,37.01466],[-82.77839,37.01397],[-82.77828,37.01259],[-82.77907,37.012],[-82.78045,37.01072],[-82.78166,37.0097],[-82.78157,37.00872],[-82.78259,37.00808],[-82.78344,37.0079],[-82.78422,37.00825],[-82.785,37.00798],[-82.78699,37.00871],[-82.78845,37.00861],[-82.78908,37.00804],[-82.78953,37.00796],[-82.79051,37.00703],[-82.79111,37.00637],[-82.79283,37.00601],[-82.79334,37.00544],[-82.79483,37.00587],[-82.79598,37.00705],[-82.79611,37.00845],[-82.7975,37.00967],[-82.7981,37.00936],[-82.79955,37.00823],[-82.80487,37.00714],[-82.80675,37.00722],[-82.80769,37.00683],[-82.81025,37.00713],[-82.81098,37.00684],[-82.81299,37.00532],[-82.81396,37.00536],[-82.81544,37.00706],[-82.81622,37.00766],[-82.81714,37.00712],[-82.81674,37.00618],[-82.81745,37.00568],[-82.81855,37.0064],[-82.81968,37.00623],[-82.82061,37.00571],[-82.82204,37.00422],[-82.82277,37.00413],[-82.82354,37.0045],[-82.82436,37.00585],[-82.82526,37.00645],[-82.82852,37.00582],[-82.82903,37.00452],[-82.82989,37.0037],[-82.83066,37.00097],[-82.8301,36.99995],[-82.82931,36.9993],[-82.82894,36.99797],[-82.82936,36.9964],[-82.83011,36.99545],[-82.82999,36.99424],[-82.8304,36.99372],[-82.83142,36.99348],[-82.83232,36.99272],[-82.8326,36.9921],[-82.83425,36.99195],[-82.83547,36.99112],[-82.83567,36.98912],[-82.83625,36.98867],[-82.83641,36.98793],[-82.83691,36.9874],[-82.83791,36.98693],[-82.84079,36.98717],[-82.84223,36.98598],[-82.84333,36.98554],[-82.84428,36.98395],[-82.84515,36.98379],[-82.84675,36.98412],[-82.84757,36.98398],[-82.84934,36.98341],[-82.85018,36.98373],[-82.85102,36.98453],[-82.85365,36.98524],[-82.85485,36.98372],[-82.85653,36.982],[-82.8564,36.98103],[-82.85672,36.98013],[-82.85713,36.97978],[-82.85673,36.97897],[-82.8578,36.97857],[-82.85812,36.97818],[-82.8596,36.97872],[-82.85996,36.97856],[-82.8604,36.9781],[-82.8619,36.98001],[-82.86246,36.98035],[-82.86502,36.97903],[-82.86552,36.97827],[-82.86659,36.97811],[-82.86738,36.9782],[-82.86749,36.97773],[-82.86872,36.97617],[-82.86862,36.97505],[-82.86922,36.97422],[-82.86956,36.97318],[-82.86934,36.97232],[-82.86859,36.97182],[-82.86843,36.97132],[-82.86879,36.97076],[-82.86872,36.96931],[-82.87079,36.96896],[-82.87124,36.96833],[-82.87125,36.96771],[-82.87029,36.96717],[-82.86998,36.96615],[-82.87021,36.9653],[-82.87019,36.96479],[-82.86755,36.96424],[-82.86714,36.96386],[-82.86732,36.96312],[-82.86689,36.96263],[-82.86681,36.96159],[-82.8657,36.9612],[-82.86553,36.96032],[-82.86592,36.9594],[-82.86579,36.95848],[-82.86471,36.95813],[-82.86278,36.9582],[-82.8627,36.95744],[-82.86154,36.95737],[-82.86109,36.95668],[-82.86039,36.956],[-82.85927,36.9556],[-82.85867,36.9541],[-82.85824,36.95391],[-82.85673,36.95372],[-82.85566,36.95442],[-82.85565,36.95314],[-82.85957,36.94964],[-82.8603,36.94867],[-82.86016,36.94771],[-82.86076,36.94557],[-82.86144,36.94474],[-82.86178,36.94398],[-82.86158,36.94298],[-82.86179,36.94181],[-82.8622,36.94119],[-82.86153,36.93922],[-82.86104,36.93857],[-82.86055,36.93812],[-82.86048,36.93749],[-82.86027,36.93731],[-82.86041,36.93672],[-82.86,36.93388],[-82.85895,36.93341],[-82.85825,36.93252],[-82.85824,36.93095],[-82.85772,36.92862],[-82.85879,36.9276],[-82.8591,36.92707],[-82.85966,36.92619],[-82.85997,36.92532],[-82.86126,36.92468],[-82.86169,36.92432],[-82.86205,36.92421],[-82.86328,36.92331],[-82.86345,36.92205],[-82.86454,36.92186],[-82.86508,36.92133],[-82.86518,36.92087],[-82.8663,36.91947],[-82.86733,36.91883],[-82.86702,36.91769],[-82.86748,36.91696],[-82.86944,36.91664],[-82.86969,36.91646],[-82.87093,36.91525],[-82.87085,36.91462],[-82.87128,36.91375],[-82.87179,36.91342],[-82.87231,36.91344],[-82.87359,36.91264],[-82.87391,36.91176],[-82.87475,36.91108],[-82.87608,36.91028],[-82.87744,36.90845],[-82.87751,36.90785],[-82.8763,36.90711],[-82.87534,36.90692],[-82.87426,36.90603],[-82.87335,36.90418],[-82.87244,36.90329],[-82.87114,36.90288],[-82.86998,36.90166],[-82.86818,36.90129],[-82.86792,36.89976],[-82.86836,36.89935],[-82.86988,36.89828],[-82.87055,36.89769],[-82.87129,36.89754],[-82.87225,36.89746],[-82.87498,36.89683],[-82.87641,36.89624],[-82.87725,36.89575],[-82.87862,36.89398],[-82.87854,36.89349],[-82.87782,36.89161],[-82.87857,36.88955],[-82.8795,36.88908],[-82.88217,36.88888],[-82.88457,36.88848],[-82.88531,36.88792],[-82.88634,36.88752],[-82.88765,36.88687],[-82.88835,36.88611],[-82.88904,36.88508],[-82.88996,36.88431],[-82.89099,36.88371],[-82.89217,36.88352],[-82.89377,36.88346],[-82.89423,36.88318],[-82.89491,36.88249],[-82.89537,36.88215],[-82.89593,36.88206],[-82.89665,36.88185],[-82.89762,36.88192],[-82.89871,36.88188],[-82.90067,36.88166],[-82.90134,36.881],[-82.90198,36.88069],[-82.90489,36.87991],[-82.90632,36.87973],[-82.90755,36.87916],[-82.90797,36.8787],[-82.90794,36.87832],[-82.90813,36.8777],[-82.90803,36.87722],[-82.90725,36.87567],[-82.90743,36.8751],[-82.90778,36.8747],[-82.9082,36.87464],[-82.9094,36.87458],[-82.9102,36.87407],[-82.91209,36.87429],[-82.91328,36.87428],[-82.91455,36.87392],[-82.91613,36.87386],[-82.91756,36.8735],[-82.91854,36.87368],[-82.91995,36.87369],[-82.92084,36.87337],[-82.92157,36.87357],[-82.92241,36.8739],[-82.92384,36.87328],[-82.92434,36.87287],[-82.92484,36.87277],[-82.92515,36.87243],[-82.92533,36.87207],[-82.92629,36.8711],[-82.92696,36.87107],[-82.92721,36.87089],[-82.92768,36.87078],[-82.92826,36.8704],[-82.92861,36.87036],[-82.92969,36.87064],[-82.93033,36.87063],[-82.93099,36.87059],[-82.93191,36.87023],[-82.93285,36.87039],[-82.93359,36.87044],[-82.9346,36.87013],[-82.93513,36.86955],[-82.93653,36.86909],[-82.93673,36.86887],[-82.93668,36.86823],[-82.93681,36.8679],[-82.93728,36.86767],[-82.93763,36.86723],[-82.93939,36.86726],[-82.9406,36.86723],[-82.94173,36.86707],[-82.94214,36.86686],[-82.94243,36.86634],[-82.94259,36.8662],[-82.94342,36.86649],[-82.94461,36.86655],[-82.94566,36.86632],[-82.94641,36.86586],[-82.94789,36.86627],[-82.94905,36.86646],[-82.9497,36.86597],[-82.95172,36.86616],[-82.95291,36.86506],[-82.95333,36.86444],[-82.95374,36.86417],[-82.95457,36.86415],[-82.95587,36.86337],[-82.95649,36.86318],[-82.95724,36.8632],[-82.958,36.86311],[-82.96002,36.86257],[-82.9609,36.86255],[-82.96187,36.86227],[-82.96235,36.86182],[-82.96257,36.86147],[-82.96373,36.86116],[-82.96445,36.86041],[-82.96517,36.86014],[-82.96577,36.86001],[-82.96665,36.85934],[-82.96725,36.85924],[-82.96776,36.85924],[-82.96837,36.85906],[-82.96882,36.85854],[-82.96908,36.85799],[-82.9703,36.8577],[-82.9714,36.85756],[-82.97196,36.85778],[-82.97242,36.85832],[-82.97343,36.8591],[-82.97408,36.85914],[-82.9747,36.85921],[-82.9754,36.85943],[-82.97628,36.85953],[-82.9773,36.85943],[-82.97854,36.85969],[-82.97922,36.85972],[-82.98132,36.859],[-82.98217,36.85883],[-82.98259,36.85896],[-82.98301,36.85895],[-82.98371,36.85849],[-82.98394,36.85847],[-82.98545,36.8588],[-82.98607,36.85884],[-82.9868,36.85862],[-82.98709,36.85867],[-82.98729,36.85893],[-82.98774,36.85912],[-82.98872,36.85914],[-82.98951,36.85897],[-82.99101,36.85826],[-82.99138,36.85823],[-82.99162,36.85786],[-82.99202,36.85773],[-82.99292,36.85791],[-82.99349,36.85785],[-82.99408,36.85749],[-82.99463,36.85737],[-82.99605,36.85724],[-82.99655,36.85689],[-82.99674,36.85679],[-82.99766,36.85683],[-82.99779,36.85671],[-82.99843,36.85659],[-82.99873,36.85633],[-82.99915,36.85579],[-83.00094,36.85446],[-83.00162,36.85361],[-83.00301,36.85269],[-83.00388,36.8517],[-83.004,36.85095],[-83.00398,36.85016],[-83.00437,36.84976],[-83.00507,36.84945],[-83.00552,36.8489],[-83.00605,36.84791],[-83.00927,36.84726],[-83.01096,36.8476],[-83.01184,36.84747],[-83.01255,36.84727],[-83.0148,36.84834],[-83.01582,36.84907],[-83.01976,36.84988],[-83.02095,36.85],[-83.02183,36.84999],[-83.02253,36.85032],[-83.02301,36.85079],[-83.02372,36.85102],[-83.02451,36.85183],[-83.02579,36.85447],[-83.02586,36.85527],[-83.02698,36.8555],[-83.02986,36.85529],[-83.03089,36.85506],[-83.03192,36.8547],[-83.03355,36.85438],[-83.03508,36.8543],[-83.03606,36.85438],[-83.03634,36.85461],[-83.03709,36.8549],[-83.0389,36.85489],[-83.04218,36.85441],[-83.04441,36.85294],[-83.04749,36.85175],[-83.04894,36.85188],[-83.05236,36.85194],[-83.05685,36.85288],[-83.06048,36.85376],[-83.06208,36.85268],[-83.06401,36.85159],[-83.0651,36.85192],[-83.06636,36.85198],[-83.0694,36.85359],[-83.0711,36.85381],[-83.0726,36.85458],[-83.0757,36.85037],[-83.07518,36.84972],[-83.07492,36.84831],[-83.07372,36.84479],[-83.07523,36.84084],[-83.07756,36.84103],[-83.07955,36.8406],[-83.08284,36.83927],[-83.08617,36.83853],[-83.08809,36.83751],[-83.08907,36.83594],[-83.09129,36.83444],[-83.09312,36.83374],[-83.09581,36.83318],[-83.09721,36.83244],[-83.09895,36.83177],[-83.10081,36.83037],[-83.10193,36.82878],[-83.10207,36.82754],[-83.10167,36.82664],[-83.09995,36.82497],[-83.09841,36.82386],[-83.09842,36.82347],[-83.09886,36.82301],[-83.09917,36.8196],[-83.09901,36.81832],[-83.09877,36.81511],[-83.09845,36.8142],[-83.09947,36.81282],[-83.10066,36.81186],[-83.10287,36.81166],[-83.10339,36.81043],[-83.10347,36.80905],[-83.10312,36.80785],[-83.10312,36.80665],[-83.10337,36.80487],[-83.10478,36.80331],[-83.10618,36.80237],[-83.10748,36.80234],[-83.10853,36.80203],[-83.1097,36.80144],[-83.11091,36.80027],[-83.11195,36.79877],[-83.11438,36.79658],[-83.11534,36.79485],[-83.11597,36.79436],[-83.11679,36.7933],[-83.1171,36.79228],[-83.11809,36.79147],[-83.11836,36.79063],[-83.11915,36.78952],[-83.12063,36.78888],[-83.12109,36.78817],[-83.12206,36.78787],[-83.12317,36.78673],[-83.12519,36.7863],[-83.12566,36.78645],[-83.12697,36.78584],[-83.12768,36.78584],[-83.12852,36.78533],[-83.12927,36.78564],[-83.13202,36.78506],[-83.13275,36.78453],[-83.13279,36.78359],[-83.13246,36.78233],[-83.13161,36.78135],[-83.1307,36.77952],[-83.13067,36.77876],[-83.12939,36.77771],[-83.12846,36.77571],[-83.12943,36.77469],[-83.12964,36.7736],[-83.13112,36.77369],[-83.13228,36.77181],[-83.13241,36.77152],[-83.13071,36.7713],[-83.13021,36.77095],[-83.12931,36.77077],[-83.12893,36.77039],[-83.12889,36.7699],[-83.12919,36.769],[-83.12991,36.76858],[-83.13061,36.76851],[-83.131,36.76829],[-83.13135,36.76776],[-83.1311,36.76619],[-83.13213,36.76574],[-83.13257,36.76487],[-83.13247,36.76443],[-83.13104,36.76396],[-83.12931,36.76286],[-83.12716,36.76229],[-83.12658,36.76192],[-83.12615,36.76194],[-83.12545,36.76161],[-83.12606,36.76115],[-83.12679,36.76097],[-83.12708,36.75992],[-83.12766,36.75968],[-83.12853,36.75969],[-83.12841,36.7586],[-83.12886,36.75779],[-83.12829,36.75635],[-83.12857,36.75554],[-83.12864,36.75446],[-83.12896,36.75273],[-83.12872,36.75246],[-83.1284,36.75227],[-83.128,36.75183],[-83.12777,36.75126],[-83.12784,36.75082],[-83.12806,36.75048],[-83.12858,36.7503],[-83.12919,36.75024],[-83.12953,36.7503],[-83.1298,36.75026],[-83.12964,36.7501],[-83.12984,36.75007],[-83.13007,36.74979],[-83.13045,36.74977],[-83.1313,36.74981],[-83.13244,36.74997],[-83.13464,36.7494],[-83.13487,36.74899],[-83.1346,36.74849],[-83.13473,36.74787],[-83.13434,36.74662],[-83.13337,36.74596],[-83.13456,36.74417],[-83.13523,36.74266],[-83.1358,36.74268],[-83.13654,36.74311],[-83.13836,36.74314],[-83.13917,36.74265],[-83.1401,36.74258],[-83.14076,36.74277],[-83.14382,36.74187],[-83.14509,36.74171],[-83.1473,36.74187],[-83.15122,36.74163],[-83.15193,36.74197],[-83.15229,36.74274],[-83.15291,36.74297],[-83.15362,36.74267],[-83.15363,36.74211],[-83.15577,36.74183],[-83.15705,36.74238],[-83.15766,36.74149],[-83.15946,36.74088],[-83.16046,36.74034],[-83.16153,36.73993],[-83.16782,36.73906],[-83.16738,36.73966],[-83.16669,36.74019],[-83.16745,36.74078],[-83.16821,36.74082],[-83.16981,36.74007],[-83.17228,36.74001],[-83.1732,36.74029],[-83.1749,36.73943],[-83.17625,36.7398],[-83.17854,36.73947],[-83.1798,36.73961],[-83.18071,36.73945],[-83.183,36.73956],[-83.18374,36.74],[-83.18606,36.73955],[-83.18803,36.73971],[-83.19053,36.73949],[-83.19439,36.73953],[-83.19562,36.73901],[-83.19702,36.73821],[-83.20252,36.7368],[-83.20314,36.737],[-83.20387,36.73652],[-83.20538,36.73569],[-83.20607,36.73583],[-83.20713,36.7355],[-83.20797,36.73477],[-83.21019,36.73431],[-83.21101,36.73449],[-83.21244,36.73397],[-83.21288,36.73348],[-83.21506,36.73299],[-83.2164,36.73339],[-83.21987,36.7313],[-83.22454,36.73011],[-83.22599,36.73041],[-83.22693,36.73009],[-83.22893,36.72875],[-83.2302,36.72862],[-83.23122,36.72891],[-83.23389,36.72775],[-83.23475,36.72769],[-83.23598,36.72702],[-83.23746,36.72683],[-83.23846,36.72708],[-83.23975,36.72654],[-83.24114,36.7258],[-83.24519,36.72582],[-83.24568,36.72533],[-83.24728,36.72519],[-83.24977,36.72392],[-83.25084,36.72376],[-83.2514,36.72339],[-83.25333,36.72324],[-83.25445,36.7227],[-83.25553,36.72184],[-83.25717,36.7213],[-83.25873,36.72153],[-83.25929,36.72199],[-83.26093,36.72126],[-83.26274,36.72087],[-83.26371,36.721],[-83.26613,36.71977],[-83.26906,36.71855],[-83.27183,36.71788],[-83.27251,36.71774],[-83.27346,36.71808],[-83.27552,36.71794],[-83.27749,36.71738],[-83.27926,36.71567],[-83.28209,36.7158],[-83.28568,36.71523],[-83.28695,36.71397],[-83.29015,36.71331],[-83.29318,36.71328],[-83.29607,36.71372],[-83.29755,36.71279],[-83.30323,36.71178],[-83.30368,36.71108],[-83.30541,36.71145],[-83.30705,36.71141],[-83.31122,36.71036],[-83.31327,36.70889],[-83.3173,36.70777],[-83.31849,36.70773],[-83.31977,36.70749],[-83.32095,36.70686],[-83.32331,36.70622],[-83.32601,36.70577],[-83.32903,36.70479],[-83.33274,36.70387],[-83.336,36.70263],[-83.33836,36.70254],[-83.3404,36.70167],[-83.34279,36.70128],[-83.3439,36.70129],[-83.34543,36.70099],[-83.34678,36.70099],[-83.34792,36.70076],[-83.34888,36.69997],[-83.34969,36.69847],[-83.35087,36.69732],[-83.35245,36.69689],[-83.35377,36.6966],[-83.35458,36.69612],[-83.35643,36.69468],[-83.359,36.69358],[-83.35995,36.69352],[-83.36067,36.69383],[-83.36216,36.69476],[-83.36317,36.69477],[-83.36399,36.69457],[-83.36764,36.69263],[-83.37068,36.6911],[-83.37091,36.69089],[-83.3712,36.69089],[-83.37141,36.69049],[-83.37171,36.69028],[-83.37229,36.69058],[-83.37331,36.69016],[-83.37427,36.69027],[-83.37433,36.6901],[-83.37441,36.6901],[-83.37449,36.69019],[-83.37489,36.69017],[-83.37489,36.69048],[-83.37507,36.69059],[-83.37564,36.69029],[-83.37684,36.68957],[-83.37797,36.68945],[-83.37918,36.6882],[-83.38023,36.68857],[-83.38078,36.68712],[-83.38224,36.68717],[-83.38319,36.68694],[-83.38348,36.68651],[-83.38418,36.68667],[-83.38471,36.6867],[-83.38551,36.68649],[-83.38616,36.68658],[-83.38682,36.68614],[-83.38961,36.68484],[-83.38892,36.68361],[-83.39016,36.68286],[-83.39165,36.68232],[-83.39267,36.68164],[-83.39272,36.68084],[-83.39505,36.67973],[-83.39557,36.6791],[-83.39487,36.67763],[-83.39563,36.6768],[-83.40086,36.67499],[-83.40223,36.67462],[-83.40326,36.67399],[-83.40448,36.67355],[-83.40639,36.67325],[-83.40695,36.673],[-83.40997,36.67139],[-83.41144,36.67096],[-83.41239,36.67053],[-83.41354,36.67033],[-83.41729,36.66918],[-83.41812,36.66872],[-83.42169,36.66819],[-83.4236,36.66742],[-83.42693,36.66726],[-83.42837,36.667],[-83.42921,36.66711],[-83.43015,36.66702],[-83.43147,36.66651],[-83.43645,36.66618],[-83.44061,36.66688],[-83.44279,36.66731],[-83.44355,36.66715],[-83.44681,36.66555],[-83.448,36.66527],[-83.45064,36.6655],[-83.45151,36.6651],[-83.45495,36.6648],[-83.45641,36.66518],[-83.45685,36.6656],[-83.45798,36.66577],[-83.45906,36.66518],[-83.45996,36.66515],[-83.4616,36.66467],[-83.46315,36.66494],[-83.46428,36.66474],[-83.46629,36.66467],[-83.46918,36.66516],[-83.47034,36.6649],[-83.47369,36.66561],[-83.47549,36.66567],[-83.47781,36.666],[-83.47944,36.66664],[-83.48017,36.66656],[-83.48081,36.66606],[-83.48249,36.66615],[-83.48287,36.66644],[-83.48506,36.66714],[-83.48879,36.66769],[-83.4916,36.6689],[-83.49258,36.67011],[-83.49324,36.67025],[-83.49399,36.67009],[-83.4968,36.67021],[-83.49832,36.6706],[-83.49984,36.67016],[-83.50138,36.66911],[-83.50692,36.66866],[-83.51169,36.66911],[-83.51435,36.66845],[-83.51599,36.66759],[-83.52709,36.66601],[-83.5295,36.66621],[-83.53098,36.66566],[-83.53219,36.66478],[-83.53297,36.66335],[-83.53315,36.66187],[-83.53503,36.66073],[-83.53717,36.6598],[-83.54188,36.6565],[-83.54709,36.65453],[-83.54947,36.65395],[-83.55094,36.65408],[-83.55284,36.65401],[-83.55397,36.65374],[-83.56275,36.65131],[-83.56386,36.64993],[-83.56587,36.64827],[-83.56965,36.64571],[-83.57076,36.64534],[-83.57188,36.64483],[-83.57308,36.64485],[-83.57495,36.64376],[-83.57712,36.6418],[-83.57961,36.64148],[-83.58449,36.64131],[-83.58533,36.64217],[-83.586,36.64358],[-83.58777,36.64259],[-83.58805,36.64152],[-83.59044,36.64015],[-83.59356,36.63904],[-83.59538,36.63852],[-83.59911,36.63755],[-83.60062,36.63709],[-83.60219,36.63686],[-83.60301,36.63686],[-83.60386,36.63727],[-83.60437,36.63766],[-83.6056,36.63778],[-83.60895,36.63675],[-83.60981,36.63615],[-83.61057,36.63542],[-83.6114,36.63479],[-83.61292,36.63477],[-83.61447,36.63402],[-83.61639,36.63141],[-83.61699,36.6309],[-83.61876,36.62887],[-83.61997,36.62791],[-83.62113,36.62736],[-83.62186,36.6273],[-83.62319,36.6267],[-83.62349,36.62661],[-83.624,36.62621],[-83.62459,36.62594],[-83.62495,36.62559],[-83.62501,36.62517],[-83.6272,36.62497],[-83.62796,36.62459],[-83.62822,36.62432],[-83.62892,36.62405],[-83.62933,36.62407],[-83.63016,36.62392],[-83.63107,36.6236],[-83.63377,36.62309],[-83.634,36.62299],[-83.63478,36.62295],[-83.63514,36.62289],[-83.63568,36.62321],[-83.63618,36.6234],[-83.63685,36.62401],[-83.63734,36.62423],[-83.63797,36.62406],[-83.63851,36.62435],[-83.63921,36.62449],[-83.63987,36.62479],[-83.64064,36.62466],[-83.64141,36.6247],[-83.64251,36.62408],[-83.64259,36.62391],[-83.64317,36.62375],[-83.64361,36.624],[-83.64388,36.62425],[-83.64412,36.6244],[-83.6451,36.62425],[-83.64591,36.62379],[-83.64591,36.62312],[-83.64612,36.62279],[-83.64681,36.62277],[-83.64759,36.62308],[-83.6483,36.6227],[-83.64837,36.62193],[-83.64836,36.62169],[-83.64809,36.62122],[-83.64821,36.62077],[-83.64871,36.61981],[-83.64852,36.61934],[-83.64851,36.61883],[-83.64899,36.61774],[-83.64913,36.6176],[-83.64918,36.61728],[-83.64909,36.6171],[-83.64926,36.61665],[-83.64996,36.61677],[-83.65062,36.61697],[-83.65153,36.61645],[-83.65211,36.6159],[-83.65223,36.61554],[-83.65222,36.61518],[-83.65296,36.61458],[-83.65347,36.61386],[-83.65381,36.61349],[-83.65432,36.61317],[-83.65491,36.61302],[-83.65517,36.61287],[-83.65602,36.6129],[-83.6567,36.613],[-83.65724,36.6127],[-83.65748,36.61247],[-83.65769,36.61181],[-83.65807,36.61155],[-83.65861,36.61099],[-83.65884,36.61063],[-83.6592,36.61043],[-83.65952,36.61009],[-83.66058,36.60951],[-83.66082,36.60919],[-83.66101,36.60918],[-83.66193,36.60866],[-83.66277,36.60773],[-83.66315,36.60717],[-83.6637,36.60676],[-83.66444,36.60667],[-83.66522,36.60603],[-83.6654,36.6058],[-83.66631,36.60568],[-83.66681,36.60586],[-83.66735,36.60597],[-83.66813,36.60597],[-83.66843,36.60607],[-83.6691,36.60591],[-83.6693,36.60548],[-83.66977,36.60517],[-83.67051,36.60488],[-83.67101,36.60479],[-83.67301,36.60476],[-83.67351,36.60382],[-83.67462,36.6031],[-83.67542,36.60081],[-83.64615,36.60005],[-83.6248,36.59834],[-83.6219,36.59795],[-83.53413,36.59725],[-83.44842,36.59738],[-83.37884,36.59737],[-83.27631,36.59818],[-83.2611,36.59388],[-81.93415,36.59421],[-81.92265,36.61621],[-81.82665,36.61441],[-81.82665,36.61431],[-81.82675,36.61421],[-81.76666,36.61281],[-81.72923,36.61237],[-81.70412,36.61226],[-81.69299,36.61209],[-81.69289,36.61196],[-81.68819,36.61216],[-81.6469,36.61191],[-81.6774,36.58815],[-81.67746,36.58815],[-81.67797,36.58777],[-81.67887,36.58687],[-81.67956,36.58641],[-81.68022,36.58592],[-81.68022,36.58587],[-81.67969,36.58554],[-81.67949,36.5854],[-81.67933,36.58524],[-81.67916,36.585],[-81.67871,36.58467],[-81.67857,36.58451],[-81.67813,36.58367],[-81.67808,36.58348],[-81.67807,36.58323],[-81.67813,36.58295],[-81.6784,36.58207],[-81.67858,36.58127],[-81.6786,36.58113],[-81.67863,36.58023],[-81.67874,36.5797],[-81.67884,36.57949],[-81.679,36.57929],[-81.67944,36.57902],[-81.67954,36.57891],[-81.67954,36.57874],[-81.6794,36.57838],[-81.67926,36.57823],[-81.67909,36.57769],[-81.67894,36.57713],[-81.67887,36.57673],[-81.67865,36.57625],[-81.6772,36.5744],[-81.67756,36.57317],[-81.67687,36.5726],[-81.67669,36.57201],[-81.67683,36.57178],[-81.67707,36.5716],[-81.67719,36.57146],[-81.67755,36.57082],[-81.67783,36.57047],[-81.67804,36.57037],[-81.67813,36.57016],[-81.67837,36.56997],[-81.67857,36.56986],[-81.67864,36.56978],[-81.67867,36.56958],[-81.67911,36.56904],[-81.67931,36.56898],[-81.67945,36.56885],[-81.67996,36.56878],[-81.68206,36.56871],[-81.68225,36.56875],[-81.68347,36.56868],[-81.68386,36.56856],[-81.68501,36.56843],[-81.68553,36.56833],[-81.68609,36.5681],[-81.68984,36.56868],[-81.68996,36.56865],[-81.69017,36.56856],[-81.69048,36.56838],[-81.69064,36.56824],[-81.69081,36.56813],[-81.69094,36.56797],[-81.69108,36.56786],[-81.69122,36.56768],[-81.6914,36.56742],[-81.69182,36.56659],[-81.69189,36.56633],[-81.69189,36.56606],[-81.69185,36.56585],[-81.69172,36.56564],[-81.69149,36.5654],[-81.6911,36.56494],[-81.69105,36.56483],[-81.69106,36.56458],[-81.69114,36.56435],[-81.6912,36.56401],[-81.69122,36.5636],[-81.69114,36.56347],[-81.69052,36.56269],[-81.68978,36.56184],[-81.68959,36.5616],[-81.68957,36.56138],[-81.68969,36.56097],[-81.68976,36.56086],[-81.68986,36.56055],[-81.68996,36.56037],[-81.69044,36.55894],[-81.69047,36.55873],[-81.69058,36.5585],[-81.69056,36.55816],[-81.69044,36.55778],[-81.69043,36.55768],[-81.69044,36.5576],[-81.69048,36.55755],[-81.69078,36.55737],[-81.69087,36.55726],[-81.69121,36.55667],[-81.69134,36.55627],[-81.6914,36.55592],[-81.69138,36.55552],[-81.69126,36.55498],[-81.69125,36.55455],[-81.69128,36.55442],[-81.69123,36.55418],[-81.69112,36.55408],[-81.69102,36.55387],[-81.69047,36.55241],[-81.69037,36.55225],[-81.69023,36.55182],[-81.69023,36.55162],[-81.69041,36.55149],[-81.6907,36.55145],[-81.69132,36.55142],[-81.69148,36.55144],[-81.69168,36.55142],[-81.69223,36.55145],[-81.69241,36.55141],[-81.69259,36.55142],[-81.6929,36.55134],[-81.69311,36.55124],[-81.6933,36.55111],[-81.69359,36.55054],[-81.69364,36.55035],[-81.6938,36.54994],[-81.69379,36.54898],[-81.69368,36.54814],[-81.69397,36.54784],[-81.69437,36.54751],[-81.69475,36.54721],[-81.69541,36.54655],[-81.69547,36.54642],[-81.69567,36.54619],[-81.69608,36.5458],[-81.69648,36.54549],[-81.69735,36.54465],[-81.69749,36.54445],[-81.69769,36.54406],[-81.69779,36.54382],[-81.69795,36.54313],[-81.69817,36.54256],[-81.69819,36.54236],[-81.69832,36.54205],[-81.69865,36.54146],[-81.6991,36.54094],[-81.69946,36.54043],[-81.69965,36.54009],[-81.69985,36.53947],[-81.69996,36.5386],[-81.69994,36.53803],[-81.69986,36.53766],[-81.69976,36.5374],[-81.6997,36.53707],[-81.69972,36.5369],[-81.6998,36.53676],[-81.69991,36.53665],[-81.70035,36.53654],[-81.70114,36.53644],[-81.70271,36.53635],[-81.70347,36.53634],[-81.70512,36.53642],[-81.70553,36.5364],[-81.70576,36.53636],[-81.70626,36.53614],[-81.70658,36.53604],[-81.70696,36.53595],[-81.70741,36.53593],[-81.70782,36.5359],[-81.70793,36.53587],[-81.70802,36.5358],[-81.70808,36.5357],[-81.7081,36.53511],[-81.70813,36.53495],[-81.70807,36.53477],[-81.70812,36.53392],[-81.70809,36.53354],[-81.70827,36.53291],[-81.70833,36.53254],[-81.70842,36.53226],[-81.70848,36.53173],[-81.70846,36.53106],[-81.70821,36.53051],[-81.70782,36.5301],[-81.70769,36.52986],[-81.7076,36.52959],[-81.70716,36.52882],[-81.70709,36.52865],[-81.70712,36.52843],[-81.70748,36.52789],[-81.70756,36.52773],[-81.70758,36.52759],[-81.7074,36.52615],[-81.70769,36.52541],[-81.70791,36.52497],[-81.70803,36.52464],[-81.70808,36.52441],[-81.70804,36.52426],[-81.70796,36.52414],[-81.70782,36.52405],[-81.707,36.52361],[-81.70615,36.5232],[-81.70552,36.52283],[-81.70411,36.52208],[-81.70335,36.52178],[-81.70316,36.5216],[-81.70289,36.52122],[-81.70287,36.52101],[-81.7028,36.52078],[-81.70239,36.52],[-81.70243,36.51966],[-81.70237,36.51943],[-81.70223,36.51927],[-81.70196,36.51909],[-81.70182,36.5189],[-81.70174,36.51858],[-81.70173,36.5183],[-81.70165,36.51815],[-81.70167,36.51802],[-81.70175,36.51783],[-81.7018,36.51762],[-81.70181,36.51715],[-81.70183,36.5169],[-81.70173,36.51657],[-81.70132,36.51602],[-81.70072,36.51559],[-81.7004,36.51526],[-81.70024,36.51463],[-81.70028,36.51399],[-81.70037,36.51378],[-81.70037,36.5137],[-81.70025,36.5135],[-81.69964,36.51282],[-81.69943,36.51254],[-81.69928,36.51199],[-81.69911,36.51156],[-81.69903,36.51087],[-81.69883,36.51054],[-81.69854,36.51023],[-81.69837,36.50989],[-81.69832,36.50965],[-81.69833,36.50949],[-81.69828,36.50908],[-81.69809,36.50878],[-81.69794,36.50864],[-81.69782,36.50835],[-81.69789,36.50738],[-81.69813,36.50699],[-81.69831,36.50686],[-81.69837,36.50674],[-81.69834,36.50664],[-81.69801,36.50643],[-81.69763,36.50634],[-81.69747,36.50633],[-81.69708,36.50624],[-81.69682,36.50611],[-81.69675,36.50594],[-81.69681,36.50576],[-81.69689,36.50566],[-81.6969,36.5055],[-81.69687,36.50495],[-81.69681,36.50471],[-81.69691,36.50456],[-81.69784,36.50394],[-81.69791,36.50372],[-81.69776,36.50355],[-81.69768,36.50309],[-81.69745,36.50239],[-81.69731,36.50213],[-81.69736,36.50201],[-81.69758,36.50189],[-81.69788,36.50182],[-81.69819,36.50165],[-81.69855,36.50161],[-81.69879,36.50142],[-81.69885,36.5013],[-81.69926,36.50094],[-81.69936,36.50082],[-81.69964,36.50067],[-81.69987,36.50041],[-81.70005,36.50016],[-81.7002,36.49973],[-81.70021,36.49953],[-81.69999,36.49927],[-81.69993,36.49915],[-81.7,36.49901],[-81.70002,36.49878],[-81.70017,36.49861],[-81.70018,36.49836],[-81.7001,36.49814],[-81.69995,36.49792],[-81.69974,36.49779],[-81.69957,36.49772],[-81.6991,36.49737],[-81.69888,36.49731],[-81.69837,36.49728],[-81.69828,36.49722],[-81.69819,36.49705],[-81.69797,36.49689],[-81.69771,36.49659],[-81.69718,36.49624],[-81.69712,36.49611],[-81.6971,36.49601],[-81.69709,36.49575],[-81.69703,36.4953],[-81.69706,36.49496],[-81.6971,36.49471],[-81.69707,36.49419],[-81.69711,36.49403],[-81.69696,36.49378],[-81.6968,36.49359],[-81.69674,36.49329],[-81.69673,36.49304],[-81.69667,36.49293],[-81.69644,36.4925],[-81.696,36.49197],[-81.69586,36.49165],[-81.69693,36.49068],[-81.69703,36.49049],[-81.69733,36.49013],[-81.6975,36.48978],[-81.69774,36.48953],[-81.69789,36.48919],[-81.69785,36.48857],[-81.69747,36.48796],[-81.69746,36.48762],[-81.69756,36.4874],[-81.69769,36.48657],[-81.69729,36.48503],[-81.69724,36.48373],[-81.69713,36.48311],[-81.69677,36.48264],[-81.69671,36.48245],[-81.6967,36.48199],[-81.69643,36.48133],[-81.6961,36.4807],[-81.69591,36.48043],[-81.69588,36.48037],[-81.69583,36.48006],[-81.69588,36.47996],[-81.69605,36.47946],[-81.6959,36.47922],[-81.69589,36.47911],[-81.69584,36.47902],[-81.69593,36.47886],[-81.69601,36.47877],[-81.69626,36.47857],[-81.69646,36.47837],[-81.69658,36.47821],[-81.69666,36.47798],[-81.69666,36.47738],[-81.69659,36.47712],[-81.69663,36.47668],[-81.6965,36.47604],[-81.69643,36.47579],[-81.69636,36.47563],[-81.69639,36.47549],[-81.69634,36.47534],[-81.69625,36.47522],[-81.69594,36.47498],[-81.69566,36.47481],[-81.69531,36.47465],[-81.69504,36.47458],[-81.6947,36.4744],[-81.6948,36.47419],[-81.6948,36.47404],[-81.69453,36.47343],[-81.69452,36.47298],[-81.69478,36.4719],[-81.69488,36.47178],[-81.69537,36.47149],[-81.69551,36.47138],[-81.69573,36.47105],[-81.69578,36.47083],[-81.69598,36.47023],[-81.69604,36.46995],[-81.69605,36.46952],[-81.69603,36.46936],[-81.69604,36.46905],[-81.696,36.46866],[-81.69593,36.46841],[-81.6958,36.46826],[-81.69542,36.46791],[-81.69526,36.46772],[-81.69495,36.46744],[-81.69493,36.4674],[-81.69499,36.46729],[-81.69536,36.46718],[-81.69565,36.467],[-81.69641,36.46646],[-81.69669,36.46622],[-81.69677,36.46603],[-81.69803,36.46477],[-81.69824,36.46445],[-81.69835,36.46434],[-81.6986,36.46413],[-81.69879,36.46404],[-81.69905,36.46399],[-81.69917,36.46403],[-81.69905,36.46377],[-81.69899,36.46354],[-81.69878,36.46312],[-81.69889,36.46311],[-81.70148,36.46331],[-81.70119,36.46399],[-81.70136,36.46394],[-81.70156,36.46393],[-81.7017,36.46389],[-81.70188,36.46381],[-81.70209,36.46376],[-81.70244,36.46381],[-81.70299,36.46359],[-81.7035,36.46345],[-81.70373,36.46341],[-81.70424,36.46317],[-81.7048,36.46296],[-81.70534,36.46271],[-81.7056,36.46264],[-81.70616,36.46269],[-81.70657,36.46269],[-81.70715,36.46258],[-81.70774,36.46237],[-81.70814,36.4621],[-81.70829,36.4619],[-81.70848,36.46132],[-81.70859,36.46109],[-81.70916,36.46003],[-81.70923,36.45984],[-81.70935,36.45961],[-81.70946,36.4595],[-81.71008,36.4592],[-81.71069,36.45893],[-81.71109,36.45882],[-81.71144,36.45885],[-81.71194,36.45898],[-81.71218,36.45892],[-81.71236,36.45881],[-81.7137,36.45838],[-81.71412,36.45822],[-81.71465,36.45792],[-81.7155,36.45757],[-81.71585,36.45734],[-81.7163,36.45691],[-81.71646,36.45679],[-81.71682,36.4564],[-81.71679,36.45631],[-81.71627,36.45594],[-81.71595,36.45584],[-81.71561,36.45568],[-81.71547,36.45564],[-81.71526,36.45547],[-81.71514,36.45531],[-81.71502,36.45491],[-81.71505,36.45337],[-81.71559,36.45244],[-81.71563,36.45155],[-81.71544,36.45133],[-81.71438,36.45086],[-81.71421,36.45064],[-81.71413,36.45041],[-81.7141,36.45],[-81.71411,36.4494],[-81.71412,36.44916],[-81.71416,36.44899],[-81.71416,36.44872],[-81.71407,36.44812],[-81.714,36.44792],[-81.71384,36.44771],[-81.71379,36.44756],[-81.71368,36.44737],[-81.71374,36.44706],[-81.71423,36.44657],[-81.7144,36.44645],[-81.71477,36.44627],[-81.71521,36.4461],[-81.71571,36.44577],[-81.71626,36.44556],[-81.71639,36.44554],[-81.71658,36.44547],[-81.71684,36.44544],[-81.717,36.44538],[-81.71725,36.44527],[-81.71727,36.44522],[-81.71752,36.44514],[-81.71756,36.44508],[-81.71754,36.44482],[-81.71744,36.44455],[-81.71743,36.44442],[-81.71721,36.4439],[-81.71687,36.44363],[-81.71669,36.44353],[-81.71596,36.44296],[-81.7157,36.4428],[-81.71456,36.44189],[-81.71437,36.44176],[-81.71423,36.44161],[-81.71419,36.44142],[-81.71419,36.4412],[-81.71429,36.44092],[-81.71461,36.44037],[-81.71462,36.44021],[-81.71468,36.44006],[-81.71469,36.43998],[-81.71489,36.43945],[-81.71513,36.43902],[-81.7153,36.43877],[-81.71544,36.43859],[-81.71543,36.43845],[-81.71533,36.4382],[-81.71482,36.4376],[-81.71472,36.43737],[-81.71457,36.43709],[-81.71475,36.43692],[-81.71517,36.43666],[-81.71589,36.43635],[-81.71636,36.43611],[-81.71689,36.43578],[-81.7172,36.43563],[-81.71778,36.43525],[-81.71843,36.435],[-81.71884,36.4349],[-81.71929,36.43482],[-81.71969,36.43477],[-81.72124,36.43394],[-81.7197,36.43264],[-81.71935,36.43219],[-81.7192,36.43207],[-81.71898,36.4318],[-81.71861,36.4315],[-81.71845,36.43132],[-81.7182,36.43111],[-81.71813,36.43101],[-81.7178,36.43069],[-81.71763,36.43043],[-81.71754,36.43023],[-81.71755,36.42991],[-81.7176,36.42952],[-81.71768,36.42913],[-81.71788,36.42841],[-81.71807,36.42787],[-81.71815,36.42744],[-81.71848,36.42666],[-81.71857,36.42639],[-81.71893,36.42571],[-81.71898,36.42554],[-81.72017,36.42375],[-81.72048,36.42323],[-81.72057,36.42295],[-81.72085,36.42244],[-81.72201,36.42243],[-81.72245,36.42198],[-81.72333,36.42232],[-81.72356,36.42214],[-81.72369,36.42186],[-81.72375,36.42167],[-81.72386,36.42145],[-81.72395,36.42104],[-81.72395,36.42087],[-81.72402,36.42063],[-81.724,36.42049],[-81.72417,36.42045],[-81.72471,36.42047],[-81.72494,36.42041],[-81.72545,36.42023],[-81.72573,36.42009],[-81.72604,36.4199],[-81.72636,36.41987],[-81.7267,36.41987],[-81.72733,36.41994],[-81.72726,36.41935],[-81.72725,36.41876],[-81.72742,36.41846],[-81.7277,36.41817],[-81.72799,36.41806],[-81.72865,36.41773],[-81.72883,36.41768],[-81.72902,36.41765],[-81.72916,36.41766],[-81.72925,36.41736],[-81.7293,36.41691],[-81.72925,36.41645],[-81.72914,36.41609],[-81.72916,36.41593],[-81.72928,36.41577],[-81.7294,36.41571],[-81.72953,36.41567],[-81.72966,36.41559],[-81.73048,36.41525],[-81.73099,36.41496],[-81.7317,36.41483],[-81.73209,36.41484],[-81.73234,36.4148],[-81.73338,36.41489],[-81.73354,36.4148],[-81.73369,36.41467],[-81.73391,36.41438],[-81.73402,36.41414],[-81.73421,36.41362],[-81.73424,36.41341],[-81.73431,36.41317],[-81.73433,36.41294],[-81.7343,36.41253],[-81.73453,36.41251],[-81.73516,36.41232],[-81.7353,36.41232],[-81.73541,36.41229],[-81.73563,36.41233],[-81.73585,36.41242],[-81.7361,36.41255],[-81.73642,36.41282],[-81.73656,36.41298],[-81.73731,36.41359],[-81.73749,36.41364],[-81.73764,36.41359],[-81.73786,36.41348],[-81.73813,36.4133],[-81.73834,36.41324],[-81.73856,36.41313],[-81.73896,36.41304],[-81.7392,36.41301],[-81.74007,36.41322],[-81.7403,36.41321],[-81.74058,36.41316],[-81.74095,36.41305],[-81.74124,36.4129],[-81.74143,36.41272],[-81.74152,36.41266],[-81.74155,36.41257],[-81.74154,36.41226],[-81.7415,36.41216],[-81.74153,36.4121],[-81.74163,36.41202],[-81.74173,36.41198],[-81.74176,36.4119],[-81.74173,36.41174],[-81.74178,36.4115],[-81.74187,36.41132],[-81.74195,36.41124],[-81.742,36.4111],[-81.74198,36.41081],[-81.74161,36.41049],[-81.74158,36.41038],[-81.74163,36.41018],[-81.74162,36.40991],[-81.74127,36.40949],[-81.74074,36.40893],[-81.74028,36.40853],[-81.74019,36.40843],[-81.74015,36.40834],[-81.74013,36.40809],[-81.74024,36.40762],[-81.74055,36.40486],[-81.74117,36.40447],[-81.74134,36.4043],[-81.74142,36.40409],[-81.74145,36.4037],[-81.74144,36.40354],[-81.74147,36.40341],[-81.74137,36.40317],[-81.74107,36.40286],[-81.74097,36.40271],[-81.74076,36.40252],[-81.74079,36.40229],[-81.7408,36.40204],[-81.74076,36.40184],[-81.74067,36.40175],[-81.74047,36.40167],[-81.73989,36.40156],[-81.73914,36.40147],[-81.73862,36.40134],[-81.73863,36.40119],[-81.73855,36.40108],[-81.7385,36.40088],[-81.73854,36.40065],[-81.73911,36.3989],[-81.73925,36.39804],[-81.73914,36.39787],[-81.73912,36.39777],[-81.73901,36.3976],[-81.73862,36.39715],[-81.73859,36.39698],[-81.73872,36.39681],[-81.73932,36.39578],[-81.73939,36.39563],[-81.73904,36.39496],[-81.73817,36.39455],[-81.73767,36.39454],[-81.73727,36.39465],[-81.73693,36.39472],[-81.73642,36.39471],[-81.73614,36.39461],[-81.73533,36.39421],[-81.73461,36.39414],[-81.73426,36.39421],[-81.73391,36.39441],[-81.73361,36.3946],[-81.73328,36.39474],[-81.73263,36.39487],[-81.73226,36.39488],[-81.73193,36.39478],[-81.73177,36.39453],[-81.73157,36.39432],[-81.73102,36.39392],[-81.73009,36.39341],[-81.72985,36.39318],[-81.72965,36.39294],[-81.7294,36.39249],[-81.72922,36.39199],[-81.72907,36.39175],[-81.72884,36.39148],[-81.72857,36.39123],[-81.72876,36.39066],[-81.72909,36.3902],[-81.72983,36.38977],[-81.73012,36.38946],[-81.73019,36.38884],[-81.73035,36.38827],[-81.7303,36.38783],[-81.73047,36.38719],[-81.73016,36.3863],[-81.72981,36.3859],[-81.72931,36.38558],[-81.72936,36.38535],[-81.72971,36.38507],[-81.73027,36.38443],[-81.73048,36.38388],[-81.73069,36.38299],[-81.73095,36.38283],[-81.73185,36.38271],[-81.73322,36.3823],[-81.73359,36.38203],[-81.7345,36.38018],[-81.73462,36.37957],[-81.73443,36.37932],[-81.73402,36.37913],[-81.7329,36.37851],[-81.7326,36.37822],[-81.73213,36.37744],[-81.73176,36.3764],[-81.73163,36.37568],[-81.73143,36.37515],[-81.73148,36.37484],[-81.73146,36.37465],[-81.73114,36.37407],[-81.7308,36.37368],[-81.73059,36.37359],[-81.7303,36.37353],[-81.72997,36.37357],[-81.72942,36.37368],[-81.72918,36.37364],[-81.72896,36.37357],[-81.7289,36.37341],[-81.72888,36.37253],[-81.72895,36.37154],[-81.72889,36.37122],[-81.72868,36.37097],[-81.72803,36.37066],[-81.72733,36.37035],[-81.7272,36.37023],[-81.72706,36.37005],[-81.72691,36.36974],[-81.72668,36.36951],[-81.7263,36.36919],[-81.72608,36.3689],[-81.72599,36.3687],[-81.72595,36.36839],[-81.72603,36.36811],[-81.72651,36.3671],[-81.72685,36.36611],[-81.72708,36.36571],[-81.72709,36.3656],[-81.72515,36.36359],[-81.72471,36.36328],[-81.72393,36.36291],[-81.7237,36.36269],[-81.72344,36.36232],[-81.7228,36.36118],[-81.72269,36.36091],[-81.72269,36.36073],[-81.72274,36.36036],[-81.72238,36.3587],[-81.72241,36.35854],[-81.72256,36.35835],[-81.72269,36.35825],[-81.72288,36.3582],[-81.72373,36.35811],[-81.72401,36.35803],[-81.72433,36.35775],[-81.72415,36.3572],[-81.72407,36.35629],[-81.72394,36.35584],[-81.72366,36.35521],[-81.72324,36.35479],[-81.72292,36.35434],[-81.72276,36.35398],[-81.72265,36.35329],[-81.7225,36.35293],[-81.72224,36.35235],[-81.72145,36.35116],[-81.7209,36.3507],[-81.72046,36.35046],[-81.71901,36.34899],[-81.71797,36.34816],[-81.7174,36.34777],[-81.71455,36.34676],[-81.71381,36.34666],[-81.71243,36.34666],[-81.7111,36.34663],[-81.70867,36.3464],[-81.70828,36.34627],[-81.70777,36.34598],[-81.7073,36.3455],[-81.70567,36.34298],[-81.70562,36.34253],[-81.70556,36.34229],[-81.7053,36.34185],[-81.70524,36.3415],[-81.7053,36.34125],[-81.70541,36.341],[-81.70541,36.34053],[-81.70578,36.3396],[-81.70586,36.33885],[-81.70598,36.33849],[-81.70696,36.33726],[-81.70726,36.3367],[-81.70746,36.33556],[-81.70745,36.33517],[-81.70796,36.33512],[-81.70899,36.33512],[-81.7097,36.33523],[-81.71257,36.33592],[-81.71325,36.33605],[-81.71455,36.33604],[-81.7162,36.33617],[-81.71718,36.33616],[-81.71805,36.33605],[-81.71831,36.33605],[-81.71857,36.33611],[-81.71886,36.33627],[-81.71956,36.33692],[-81.7199,36.33731],[-81.72055,36.33834],[-81.72082,36.33853],[-81.72101,36.33863],[-81.72128,36.33872],[-81.72205,36.33875],[-81.72318,36.33884],[-81.72356,36.33893],[-81.72385,36.33907],[-81.72428,36.33951],[-81.72461,36.33995],[-81.72487,36.3401],[-81.72594,36.34036],[-81.72617,36.34064],[-81.72725,36.34111],[-81.72781,36.34133],[-81.72796,36.34143],[-81.72857,36.34141],[-81.72948,36.34129],[-81.7302,36.34128],[-81.73121,36.34135],[-81.73161,36.34161],[-81.73199,36.34172],[-81.73368,36.342],[-81.73435,36.34222],[-81.73586,36.34297],[-81.73595,36.34299],[-81.7361,36.34292],[-81.7365,36.34243],[-81.73743,36.34188],[-81.73811,36.34136],[-81.7384,36.34107],[-81.73924,36.33995],[-81.7395,36.33975],[-81.73976,36.33964],[-81.7403,36.33951],[-81.74068,36.33936],[-81.74249,36.33843],[-81.74341,36.3383],[-81.74366,36.3382],[-81.74421,36.33787],[-81.74448,36.33778],[-81.7449,36.33776],[-81.74574,36.33753],[-81.74703,36.33757],[-81.7472,36.33755],[-81.7478,36.33735],[-81.74796,36.33736],[-81.74862,36.33766],[-81.74904,36.33775],[-81.74983,36.33779],[-81.75023,36.33785],[-81.7504,36.33782],[-81.75077,36.33753],[-81.75122,36.33727],[-81.75156,36.33717],[-81.75236,36.33707],[-81.75307,36.33707],[-81.75379,36.33704],[-81.75444,36.33704],[-81.75471,36.33711],[-81.75498,36.33743],[-81.75517,36.33789],[-81.75547,36.33818],[-81.75615,36.33862],[-81.75682,36.33894],[-81.75729,36.3394],[-81.75783,36.33969],[-81.75835,36.33987],[-81.75935,36.34004],[-81.76019,36.34011],[-81.76123,36.34027],[-81.76204,36.34018],[-81.76281,36.33992],[-81.76359,36.33941],[-81.7643,36.33891],[-81.76492,36.33867],[-81.76516,36.33896],[-81.76555,36.33932],[-81.76641,36.33967],[-81.76726,36.34011],[-81.76899,36.34104],[-81.76893,36.34177],[-81.76901,36.34228],[-81.76915,36.34258],[-81.7694,36.34255],[-81.76966,36.34249],[-81.77023,36.34252],[-81.77061,36.34267],[-81.77081,36.34297],[-81.77104,36.34322],[-81.77166,36.34357],[-81.77195,36.34359],[-81.77243,36.34348],[-81.77295,36.3433],[-81.7733,36.34337],[-81.77398,36.34374],[-81.77483,36.34464],[-81.77508,36.34524],[-81.77522,36.34543],[-81.77558,36.34568],[-81.77606,36.34621],[-81.77617,36.34655],[-81.7764,36.34663],[-81.777,36.34698],[-81.77774,36.34755],[-81.77892,36.34863],[-81.78009,36.34799],[-81.78077,36.34778],[-81.7813,36.34765],[-81.7821,36.3476],[-81.78291,36.34764],[-81.78315,36.34771],[-81.78351,36.34762],[-81.78443,36.34747],[-81.7852,36.34741],[-81.78589,36.34744],[-81.78662,36.3477],[-81.78713,36.34794],[-81.78795,36.34821],[-81.78832,36.34826],[-81.78907,36.3481],[-81.78938,36.34815],[-81.78971,36.34831],[-81.79005,36.34875],[-81.79027,36.34921],[-81.79035,36.34963],[-81.79033,36.35046],[-81.79053,36.35084],[-81.79087,36.35102],[-81.79093,36.35151],[-81.79115,36.35226],[-81.79121,36.35283],[-81.79097,36.35329],[-81.79073,36.35366],[-81.79062,36.35396],[-81.79066,36.35429],[-81.7908,36.35476],[-81.79072,36.35506],[-81.79068,36.35542],[-81.7908,36.35592],[-81.79092,36.35602],[-81.79159,36.35603],[-81.79177,36.3561],[-81.792,36.35646],[-81.79243,36.35678],[-81.79306,36.35782],[-81.79341,36.3585],[-81.79366,36.35943],[-81.79369,36.36043],[-81.7936,36.36133],[-81.79345,36.3619],[-81.79309,36.36246],[-81.79359,36.36221],[-81.79392,36.36216],[-81.79483,36.36194],[-81.79532,36.36171],[-81.79569,36.36124],[-81.79602,36.36025],[-81.79717,36.35867],[-81.79753,36.35842],[-81.79807,36.35846],[-81.79984,36.35838],[-81.80081,36.35807],[-81.80127,36.35779],[-81.80144,36.35739],[-81.80156,36.35673],[-81.80174,36.35645],[-81.80295,36.35561],[-81.8032,36.35539],[-81.80349,36.35543],[-81.80388,36.35567],[-81.80402,36.35572],[-81.80432,36.35561],[-81.80593,36.3548],[-81.80688,36.35449],[-81.80746,36.35443],[-81.80826,36.35412],[-81.80881,36.35369],[-81.80973,36.35229],[-81.8102,36.35189],[-81.81081,36.35171],[-81.81191,36.35156],[-81.81414,36.35138],[-81.81503,36.3514],[-81.81695,36.35087],[-81.81847,36.35049],[-81.81882,36.35038],[-81.81918,36.35003],[-81.81987,36.34954],[-81.82069,36.34924],[-81.82146,36.34911],[-81.8225,36.34881],[-81.82322,36.34881],[-81.82473,36.34862],[-81.8254,36.34869],[-81.82581,36.34896],[-81.82605,36.34899],[-81.82775,36.3485],[-81.82842,36.34817],[-81.82967,36.34769],[-81.8306,36.34759],[-81.83156,36.34728],[-81.83214,36.34731],[-81.83291,36.34743],[-81.83318,36.34735],[-81.83363,36.34699],[-81.8341,36.34655],[-81.83512,36.34599],[-81.83594,36.34569],[-81.8368,36.34541],[-81.8373,36.34518],[-81.83816,36.34463],[-81.83839,36.34451],[-81.83885,36.3444],[-81.83919,36.34429],[-81.83997,36.34396],[-81.84128,36.34331],[-81.84179,36.34297],[-81.8426,36.34236],[-81.84376,36.34172],[-81.84444,36.34139],[-81.84482,36.34087],[-81.84563,36.34036],[-81.84596,36.34024],[-81.84671,36.34002],[-81.84717,36.33983],[-81.8479,36.33912],[-81.84846,36.33881],[-81.84884,36.33889],[-81.84934,36.33902],[-81.85022,36.33846],[-81.8507,36.33817],[-81.85112,36.33797],[-81.85142,36.33764],[-81.85185,36.33713],[-81.85248,36.337],[-81.85304,36.33656],[-81.85333,36.33643],[-81.8536,36.33645],[-81.85482,36.33721],[-81.855,36.33726],[-81.85511,36.33718],[-81.85777,36.3341],[-81.85857,36.33348],[-81.85923,36.3328],[-81.85938,36.33274],[-81.85993,36.33266],[-81.86031,36.33252],[-81.86067,36.33233],[-81.86104,36.33199],[-81.86149,36.33137],[-81.86234,36.33066],[-81.86315,36.3302],[-81.86392,36.3299],[-81.86446,36.32977],[-81.865,36.3296],[-81.86547,36.32935],[-81.86569,36.32899],[-81.86587,36.3285],[-81.86613,36.32813],[-81.86635,36.32787],[-81.86646,36.32741],[-81.86648,36.32662],[-81.86662,36.32629],[-81.86738,36.32576],[-81.86773,36.32545],[-81.86823,36.32465],[-81.86879,36.32415],[-81.86943,36.32368],[-81.86994,36.32326],[-81.87055,36.32284],[-81.87306,36.32042],[-81.8734,36.32013],[-81.87348,36.32],[-81.87357,36.31959],[-81.87369,36.31947],[-81.87404,36.31936],[-81.87434,36.31919],[-81.87483,36.31872],[-81.87512,36.31834],[-81.87619,36.31607],[-81.8766,36.31571],[-81.87687,36.31551],[-81.87746,36.31527],[-81.87805,36.315],[-81.87836,36.31481],[-81.87905,36.31398],[-81.87935,36.31378],[-81.87963,36.31365],[-81.88133,36.31331],[-81.88316,36.31255],[-81.88393,36.31214],[-81.88486,36.31141],[-81.88533,36.31076],[-81.88566,36.31018],[-81.88682,36.30937],[-81.88725,36.30918],[-81.89021,36.30861],[-81.89163,36.30841],[-81.89218,36.30827],[-81.89274,36.3081],[-81.89376,36.30748],[-81.89426,36.30726],[-81.89455,36.30718],[-81.89512,36.30718],[-81.89569,36.30724],[-81.89675,36.30748],[-81.89717,36.30753],[-81.89771,36.30744],[-81.89941,36.30684],[-81.8997,36.30672],[-81.89987,36.30655],[-81.90023,36.30612],[-81.90047,36.30592],[-81.90067,36.30582],[-81.90129,36.30575],[-81.90224,36.30545],[-81.9026,36.30526],[-81.90298,36.30496],[-81.90325,36.30463],[-81.90355,36.30403],[-81.90367,36.3039],[-81.90379,36.30381],[-81.90502,36.30359],[-81.90558,36.30343],[-81.90629,36.30307],[-81.90643,36.30297],[-81.90648,36.30284],[-81.90643,36.30251],[-81.90652,36.3024],[-81.90665,36.3023],[-81.90724,36.3021],[-81.90815,36.302],[-81.9389,36.25607],[-81.94059,36.25388],[-81.94219,36.25186],[-81.94534,36.24783],[-81.95158,36.23969],[-81.96005,36.2282],[-81.96739,36.21731],[-81.98641,36.1892],[-81.99157,36.18143],[-81.99654,36.17389],[-81.99744,36.17264],[-81.99906,36.17017],[-81.99936,36.16979],[-81.99988,36.16908],[-82.00356,36.16387],[-82.00794,36.15747],[-82.02664,36.13022],[-82.02645,36.12975],[-82.02635,36.12962],[-82.02635,36.12923],[-82.02655,36.12891],[-82.02654,36.12881],[-82.02823,36.12514],[-82.02874,36.12431],[-82.02905,36.12401],[-82.02932,36.12353],[-82.02956,36.12329],[-82.03055,36.12251],[-82.03163,36.12183],[-82.03227,36.1213],[-82.03315,36.12042],[-82.03365,36.12042],[-82.03426,36.12052],[-82.03514,36.12062],[-82.03584,36.12082],[-82.03678,36.12082],[-82.03793,36.12111],[-82.03854,36.12141],[-82.03904,36.12191],[-82.03954,36.12251],[-82.03996,36.12312],[-82.04139,36.12385],[-82.04209,36.12428],[-82.04269,36.12468],[-82.04344,36.12511],[-82.04355,36.12522],[-82.04364,36.12522],[-82.04395,36.12542],[-82.04496,36.12562],[-82.04565,36.12572],[-82.04644,36.12571],[-82.04813,36.12591],[-82.04882,36.12611],[-82.04945,36.12622],[-82.05014,36.12602],[-82.05096,36.12593],[-82.05171,36.12601],[-82.05255,36.12622],[-82.05353,36.12671],[-82.05375,36.12672],[-82.05394,36.12681],[-82.05415,36.12681],[-82.0553,36.12512],[-82.05515,36.12511],[-82.05559,36.12457],[-82.05605,36.12391],[-82.05614,36.12262],[-82.05595,36.12118],[-82.05603,36.12072],[-82.05637,36.12019],[-82.05725,36.11931],[-82.05835,36.11832],[-82.05977,36.11608],[-82.06015,36.1151],[-82.06061,36.11426],[-82.06095,36.11361],[-82.06124,36.11323],[-82.06136,36.1131],[-82.06166,36.11292],[-82.06272,36.11282],[-82.06369,36.11282],[-82.06474,36.11271],[-82.06697,36.1121],[-82.06936,36.11091],[-82.07025,36.11022],[-82.07075,36.10942],[-82.07103,36.10932],[-82.07254,36.10902],[-82.07382,36.10863],[-82.07696,36.10781],[-82.07705,36.10781],[-82.07714,36.10771],[-82.07787,36.10741],[-82.07851,36.10709],[-82.07976,36.10651],[-82.08015,36.10571],[-82.08035,36.10501],[-82.08043,36.10422],[-82.08055,36.10344],[-82.08056,36.10323],[-82.08045,36.10302],[-82.08244,36.10391],[-82.08315,36.10431],[-82.08412,36.1048],[-82.08464,36.10511],[-82.08523,36.10571],[-82.08593,36.10602],[-82.08637,36.10601],[-82.08769,36.10611],[-82.08896,36.10611],[-82.09011,36.10601],[-82.09504,36.10602],[-82.09854,36.10571],[-82.1,36.10591],[-82.10164,36.10621],[-82.1024,36.10658],[-82.10316,36.10692],[-82.10465,36.10791],[-82.10545,36.10811],[-82.10606,36.10802],[-82.10694,36.10792],[-82.10815,36.10751],[-82.10917,36.10721],[-82.11066,36.10663],[-82.11238,36.10572],[-82.11296,36.10551],[-82.11376,36.10514],[-82.11484,36.10471],[-82.11525,36.10461],[-82.11615,36.10451],[-82.11736,36.10451],[-82.11825,36.10462],[-82.11923,36.10472],[-82.12087,36.10448],[-82.12252,36.10431],[-82.12404,36.10431],[-82.12484,36.10466],[-82.12495,36.10451],[-82.12504,36.10452],[-82.12524,36.10441],[-82.12714,36.10441],[-82.12713,36.10431],[-82.12726,36.10431],[-82.12746,36.1041],[-82.12805,36.10391],[-82.12884,36.10391],[-82.12914,36.10411],[-82.12935,36.1041],[-82.12982,36.1043],[-82.13024,36.1045],[-82.13047,36.10474],[-82.13065,36.10501],[-82.13076,36.10542],[-82.13066,36.10579],[-82.13065,36.10642],[-82.13075,36.1071],[-82.13098,36.1077],[-82.13116,36.10832],[-82.13145,36.10882],[-82.13165,36.10921],[-82.13235,36.11011],[-82.13262,36.11063],[-82.13285,36.11089],[-82.1333,36.11184],[-82.13394,36.1129],[-82.13405,36.11321],[-82.13433,36.1136],[-82.13465,36.11381],[-82.13514,36.1143],[-82.13546,36.11475],[-82.13565,36.11521],[-82.13575,36.1158],[-82.13585,36.11611],[-82.13613,36.11667],[-82.13702,36.11787],[-82.13715,36.11882],[-82.13797,36.11958],[-82.13788,36.12051],[-82.13736,36.12143],[-82.13684,36.12226],[-82.13656,36.12372],[-82.13686,36.12473],[-82.13694,36.12492],[-82.1368,36.12511],[-82.13665,36.12522],[-82.13665,36.1256],[-82.13676,36.12611],[-82.13665,36.12649],[-82.13665,36.12693],[-82.13655,36.12749],[-82.13655,36.12881],[-82.13695,36.12961],[-82.13736,36.13002],[-82.13786,36.13063],[-82.13875,36.1322],[-82.14015,36.13521],[-82.14048,36.13565],[-82.14085,36.13621],[-82.14099,36.13663],[-82.14076,36.13782],[-82.14084,36.13851],[-82.14135,36.13911],[-82.14174,36.13931],[-82.14215,36.13941],[-82.14283,36.13971],[-82.14335,36.13981],[-82.14407,36.14023],[-82.14425,36.1406],[-82.14395,36.14141],[-82.14426,36.14182],[-82.14435,36.14212],[-82.14425,36.14301],[-82.14415,36.14361],[-82.14416,36.14421],[-82.14485,36.14481],[-82.14566,36.14532],[-82.14615,36.14581],[-82.14626,36.14631],[-82.14664,36.1469],[-82.14697,36.14714],[-82.14734,36.14759],[-82.14765,36.14801],[-82.14755,36.14851],[-82.14796,36.14951],[-82.14874,36.14961],[-82.14985,36.14911],[-82.15058,36.1489],[-82.15135,36.14871],[-82.15152,36.14863],[-82.15206,36.14831],[-82.15245,36.1475],[-82.15254,36.1479],[-82.15275,36.14831],[-82.15314,36.14831],[-82.15375,36.14811],[-82.15435,36.14831],[-82.15595,36.14812],[-82.15685,36.14761],[-82.15734,36.14713],[-82.15805,36.14651],[-82.15905,36.14581],[-82.15935,36.1459],[-82.15995,36.14652],[-82.16035,36.14681],[-82.16106,36.14681],[-82.16163,36.14661],[-82.16223,36.14632],[-82.16274,36.14611],[-82.16286,36.14621],[-82.16296,36.14621],[-82.16296,36.14631],[-82.16324,36.14641],[-82.16345,36.14638],[-82.16371,36.14631],[-82.16921,36.14661],[-82.16975,36.14671],[-82.17016,36.1466],[-82.17065,36.14641],[-82.17214,36.14641],[-82.17283,36.14612],[-82.17344,36.14572],[-82.17386,36.14531],[-82.1743,36.14433],[-82.17465,36.14362],[-82.17505,36.14351],[-82.17564,36.14311],[-82.17615,36.14262],[-82.17685,36.1422],[-82.17757,36.14262],[-82.17858,36.14308],[-82.17919,36.14339],[-82.18036,36.14391],[-82.18094,36.14391],[-82.18185,36.14371],[-82.18255,36.14371],[-82.18285,36.14391],[-82.18285,36.14401],[-82.18316,36.14411],[-82.18365,36.1444],[-82.18425,36.14491],[-82.18476,36.14542],[-82.18506,36.14612],[-82.18515,36.14661],[-82.18545,36.1472],[-82.18596,36.14771],[-82.18657,36.14852],[-82.18686,36.1491],[-82.18686,36.15],[-82.18705,36.15081],[-82.18746,36.15111],[-82.18784,36.15101],[-82.18824,36.15082],[-82.18855,36.15061],[-82.18897,36.15041],[-82.19004,36.15021],[-82.19085,36.14981],[-82.19145,36.14932],[-82.19166,36.149],[-82.19195,36.14881],[-82.19256,36.14891],[-82.19343,36.1494],[-82.19441,36.14979],[-82.19535,36.15001],[-82.19596,36.15061],[-82.19625,36.15121],[-82.19678,36.15173],[-82.19736,36.15211],[-82.19833,36.1522],[-82.19876,36.15231],[-82.19925,36.1527],[-82.19955,36.1532],[-82.19985,36.154],[-82.20016,36.15441],[-82.20097,36.15646],[-82.20356,36.15744],[-82.20681,36.15713],[-82.20848,36.15727],[-82.20954,36.1583],[-82.21025,36.1587],[-82.21126,36.15901],[-82.21253,36.1591],[-82.21388,36.1591],[-82.21489,36.1588],[-82.21565,36.15851],[-82.21647,36.15791],[-82.21723,36.15752],[-82.21797,36.1571],[-82.21841,36.15691],[-82.21939,36.1567],[-82.22026,36.15661],[-82.22086,36.1569],[-82.22132,36.15701],[-82.22187,36.15701],[-82.22205,36.15689],[-82.22186,36.15599],[-82.22186,36.15562],[-82.22216,36.155],[-82.22355,36.15361],[-82.22377,36.15299],[-82.22375,36.1523],[-82.22396,36.15139],[-82.22436,36.1504],[-82.22486,36.15],[-82.22554,36.14951],[-82.22595,36.14901],[-82.22605,36.14851],[-82.22665,36.1479],[-82.22724,36.14762],[-82.22765,36.14734],[-82.22828,36.14663],[-82.22894,36.14567],[-82.22926,36.14453],[-82.23059,36.1444],[-82.2318,36.14394],[-82.23311,36.14301],[-82.23337,36.14224],[-82.23375,36.14222],[-82.23387,36.14213],[-82.23461,36.1421],[-82.23482,36.14172],[-82.23491,36.14162],[-82.23515,36.14113],[-82.23547,36.14076],[-82.23649,36.13985],[-82.23774,36.13919],[-82.23834,36.13908],[-82.23925,36.13831],[-82.23984,36.13792],[-82.24016,36.1375],[-82.24055,36.13731],[-82.24105,36.13731],[-82.24156,36.13711],[-82.24206,36.1365],[-82.24236,36.13551],[-82.24235,36.13521],[-82.24277,36.1348],[-82.24307,36.1347],[-82.24337,36.13429],[-82.24346,36.13391],[-82.24346,36.13353],[-82.24355,36.13281],[-82.24405,36.13242],[-82.24435,36.13211],[-82.24446,36.13167],[-82.24456,36.13141],[-82.24475,36.1312],[-82.24486,36.1312],[-82.24506,36.131],[-82.24516,36.131],[-82.24524,36.13109],[-82.24564,36.1313],[-82.24611,36.13164],[-82.24675,36.132],[-82.24746,36.1322],[-82.24818,36.13231],[-82.24906,36.13251],[-82.24975,36.13241],[-82.24986,36.1323],[-82.25016,36.13221],[-82.25065,36.13211],[-82.25146,36.13211],[-82.25185,36.1322],[-82.2524,36.13274],[-82.25326,36.13372],[-82.25374,36.13448],[-82.25414,36.13538],[-82.25437,36.13572],[-82.25446,36.136],[-82.25476,36.13571],[-82.25486,36.13571],[-82.25595,36.13521],[-82.25693,36.13485],[-82.25895,36.13421],[-82.25977,36.134],[-82.26035,36.13372],[-82.26075,36.13331],[-82.26117,36.13216],[-82.26147,36.13159],[-82.26185,36.13111],[-82.26236,36.1309],[-82.26335,36.13012],[-82.26366,36.12961],[-82.26396,36.12881],[-82.26426,36.12751],[-82.26426,36.12721],[-82.26604,36.12701],[-82.26616,36.12701],[-82.26677,36.1269],[-82.26756,36.12701],[-82.26807,36.12721],[-82.26835,36.12741],[-82.26885,36.1275],[-82.26947,36.1275],[-82.27006,36.1274],[-82.27097,36.12761],[-82.27155,36.1281],[-82.27197,36.1285],[-82.27246,36.1288],[-82.27294,36.1289],[-82.27354,36.12916],[-82.27405,36.1294],[-82.2747,36.12932],[-82.27535,36.12921],[-82.27624,36.12901],[-82.27694,36.12901],[-82.27735,36.1289],[-82.27806,36.12861],[-82.27865,36.1285],[-82.27977,36.12861],[-82.28034,36.1288],[-82.28086,36.1291],[-82.28144,36.12977],[-82.28209,36.13064],[-82.28246,36.1309],[-82.28304,36.1312],[-82.28367,36.13141],[-82.28425,36.13181],[-82.28546,36.1328],[-82.28626,36.13341],[-82.28715,36.13429],[-82.28799,36.13492],[-82.28845,36.1354],[-82.28869,36.13552],[-82.28893,36.13571],[-82.28944,36.13571],[-82.29024,36.13551],[-82.29095,36.1353],[-82.29217,36.1348],[-82.29254,36.13451],[-82.29326,36.13421],[-82.29403,36.13391],[-82.2947,36.13381],[-82.29584,36.1338],[-82.29687,36.1337],[-82.29765,36.13351],[-82.29815,36.13312],[-82.29898,36.13269],[-82.30056,36.13201],[-82.30143,36.13182],[-82.30224,36.13151],[-82.30286,36.13131],[-82.30346,36.13099],[-82.3041,36.13055],[-82.30726,36.1285],[-82.30765,36.12812],[-82.30787,36.12769],[-82.30866,36.12651],[-82.30924,36.12611],[-82.30984,36.12591],[-82.31025,36.12581],[-82.31075,36.1256],[-82.31116,36.12531],[-82.31183,36.12513],[-82.31276,36.1249],[-82.31335,36.12461],[-82.31407,36.1242],[-82.31456,36.1238],[-82.31475,36.12342],[-82.31536,36.1228],[-82.3163,36.12207],[-82.31729,36.12139],[-82.31814,36.12092],[-82.31917,36.1205],[-82.32102,36.11965],[-82.32145,36.11955],[-82.322,36.11961],[-82.32238,36.12],[-82.32285,36.12027],[-82.32301,36.12029],[-82.32345,36.12013],[-82.32517,36.11937],[-82.32726,36.11808],[-82.32837,36.11755],[-82.33008,36.11728],[-82.33105,36.11734],[-82.3323,36.11693],[-82.33303,36.11631],[-82.33405,36.11592],[-82.33438,36.11569],[-82.33513,36.11536],[-82.33605,36.115],[-82.33676,36.1149],[-82.33745,36.11521],[-82.33794,36.11511],[-82.33827,36.115],[-82.33951,36.11521],[-82.34155,36.11541],[-82.34276,36.11571],[-82.34405,36.1157],[-82.34565,36.11541],[-82.34615,36.11541],[-82.34687,36.1152],[-82.34746,36.1153],[-82.34826,36.1157],[-82.34864,36.11622],[-82.34895,36.1167],[-82.34945,36.117],[-82.34996,36.1171],[-82.35056,36.11701],[-82.35116,36.1168],[-82.35247,36.1166],[-82.354,36.11599],[-82.35465,36.1157],[-82.35514,36.11561],[-82.35564,36.11532],[-82.35671,36.11425],[-82.35745,36.11361],[-82.36037,36.11159],[-82.36089,36.11065],[-82.36133,36.11005],[-82.36194,36.10952],[-82.36349,36.10931],[-82.36384,36.10917],[-82.36397,36.10871],[-82.36405,36.10801],[-82.36445,36.10751],[-82.36492,36.10746],[-82.36577,36.10745],[-82.36663,36.10765],[-82.36724,36.10738],[-82.36913,36.10719],[-82.37014,36.10696],[-82.37136,36.10638],[-82.37172,36.10611],[-82.37235,36.10608],[-82.37394,36.10618],[-82.37486,36.10592],[-82.37558,36.10559],[-82.37608,36.10518],[-82.37644,36.10457],[-82.37696,36.1039],[-82.37741,36.10383],[-82.37815,36.10352],[-82.37877,36.10279],[-82.37964,36.10043],[-82.37976,36.1002],[-82.38046,36.0993],[-82.38205,36.0993],[-82.38288,36.0996],[-82.38342,36.09915],[-82.38397,36.0986],[-82.38555,36.09812],[-82.38683,36.0979],[-82.38843,36.09744],[-82.38995,36.09692],[-82.3905,36.09636],[-82.39094,36.09573],[-82.39116,36.09521],[-82.39146,36.09502],[-82.3923,36.09468],[-82.39384,36.09341],[-82.39495,36.0932],[-82.39558,36.09319],[-82.39738,36.09169],[-82.39767,36.0906],[-82.39843,36.09031],[-82.40007,36.0901],[-82.40084,36.08983],[-82.40144,36.08941],[-82.40204,36.08919],[-82.40256,36.08881],[-82.40301,36.08834],[-82.40335,36.08809],[-82.40447,36.08759],[-82.40573,36.08634],[-82.40615,36.08583],[-82.40661,36.08484],[-82.40695,36.0845],[-82.40774,36.08402],[-82.40923,36.0834],[-82.40945,36.0834],[-82.41017,36.08271],[-82.41695,36.0724],[-82.41921,36.06815],[-82.42213,36.06467],[-82.43288,36.04859],[-82.46066,36.00781],[-82.46076,36.00771],[-82.46115,36.00741],[-82.46174,36.00741],[-82.46295,36.00731],[-82.46347,36.007],[-82.46456,36.00651],[-82.46591,36.00554],[-82.46726,36.0046],[-82.46856,36.00341],[-82.46988,36.0031],[-82.46995,36.00311],[-82.47044,36.00292],[-82.47087,36.0027],[-82.47136,36.0022],[-82.47185,36.00162],[-82.47207,36.0014],[-82.47226,36.0011],[-82.47357,36.00045],[-82.47419,36.00011],[-82.47452,35.99939],[-82.47543,35.99858],[-82.47609,35.99817],[-82.4772,35.99844],[-82.47834,35.99865],[-82.48033,35.99857],[-82.4823,35.99781],[-82.4835,35.99629],[-82.48375,35.99502],[-82.48367,35.99386],[-82.48471,35.99283],[-82.4859,35.99232],[-82.48706,35.99179],[-82.48997,35.99006],[-82.49082,35.98912],[-82.49212,35.98848],[-82.49357,35.98701],[-82.49571,35.98567],[-82.49638,35.98504],[-82.49766,35.98444],[-82.49873,35.98364],[-82.49986,35.98294],[-82.50021,35.98255],[-82.50089,35.98216],[-82.50193,35.98205],[-82.503,35.98211],[-82.50367,35.982],[-82.50392,35.98122],[-82.50419,35.97969],[-82.50444,35.97877],[-82.50508,35.97823],[-82.50538,35.97768],[-82.50618,35.97756],[-82.50707,35.97747],[-82.5094,35.97749],[-82.51064,35.9773],[-82.51139,35.97668],[-82.51221,35.97616],[-82.51266,35.97559],[-82.51327,35.97524],[-82.51645,35.97595],[-82.51733,35.97576],[-82.52062,35.97464],[-82.52195,35.97404],[-82.5227,35.97344],[-82.52281,35.97237],[-82.52315,35.97195],[-82.52401,35.97174],[-82.52482,35.97127],[-82.52525,35.97095],[-82.5262,35.9713],[-82.52713,35.97196],[-82.52758,35.97249],[-82.52888,35.97235],[-82.53129,35.97218],[-82.53208,35.97148],[-82.53286,35.97108],[-82.53371,35.97049],[-82.53476,35.96989],[-82.53626,35.96941],[-82.53751,35.96924],[-82.53927,35.96911],[-82.54049,35.96875],[-82.54248,35.96798],[-82.54329,35.96738],[-82.54359,35.96663],[-82.54411,35.96628],[-82.54475,35.96577],[-82.54518,35.96538],[-82.54639,35.96489],[-82.54799,35.96451],[-82.54969,35.96426],[-82.54998,35.96385],[-82.55006,35.96311],[-82.55032,35.96229],[-82.55172,35.96137],[-82.55319,35.96063],[-82.55406,35.95907],[-82.55466,35.95846],[-82.55572,35.95713],[-82.55681,35.9557],[-82.55753,35.95468],[-82.55788,35.9539],[-82.55879,35.95399],[-82.55964,35.95434],[-82.56072,35.95486],[-82.56206,35.95506],[-82.56262,35.95521],[-82.56315,35.95543],[-82.5637,35.9556],[-82.56461,35.95555],[-82.56487,35.95532],[-82.56567,35.95523],[-82.56624,35.95527],[-82.56749,35.95554],[-82.56827,35.95604],[-82.56879,35.9563],[-82.56914,35.95682],[-82.56973,35.95727],[-82.57093,35.95764],[-82.57237,35.95778],[-82.57373,35.95796],[-82.57516,35.95837],[-82.57668,35.95924],[-82.577,35.95997],[-82.57701,35.96131],[-82.57729,35.96285],[-82.57772,35.96419],[-82.57874,35.9647],[-82.581,35.96555],[-82.58334,35.96529],[-82.58445,35.96529],[-82.58525,35.96555],[-82.58613,35.96559],[-82.58727,35.96567],[-82.58864,35.96564],[-82.58952,35.96587],[-82.59048,35.9662],[-82.59199,35.96638],[-82.59315,35.96617],[-82.59486,35.96534],[-82.59678,35.96499],[-82.59775,35.96512],[-82.59877,35.9651],[-82.60037,35.96462],[-82.60392,35.9664],[-82.60507,35.96656],[-82.60649,35.96653],[-82.60776,35.96602],[-82.60871,35.96661],[-82.60922,35.96715],[-82.61019,35.96709],[-82.6109,35.96741],[-82.61098,35.96874],[-82.61115,35.97005],[-82.61161,35.97141],[-82.61133,35.97207],[-82.61127,35.97317],[-82.61089,35.97443],[-82.61003,35.97589],[-82.60938,35.97716],[-82.60896,35.9782],[-82.60789,35.97965],[-82.6077,35.9812],[-82.60735,35.98235],[-82.60717,35.98339],[-82.60675,35.98443],[-82.60526,35.98578],[-82.60424,35.98732],[-82.60483,35.9884],[-82.60566,35.98987],[-82.60622,35.99108],[-82.60694,35.99216],[-82.60789,35.99256],[-82.60887,35.99281],[-82.61015,35.99305],[-82.61124,35.99321],[-82.6126,35.99348],[-82.61303,35.994],[-82.61303,35.99468],[-82.61288,35.9955],[-82.61327,35.99636],[-82.61373,35.99732],[-82.61429,35.99835],[-82.61463,35.99922],[-82.61502,36.0001],[-82.61508,36.0003],[-82.61496,36.00049],[-82.61497,36.0006],[-82.61487,36.00121],[-82.61486,36.00161],[-82.61457,36.00229],[-82.61437,36.00299],[-82.61437,36.00349],[-82.61427,36.00369],[-82.61408,36.00427],[-82.61387,36.0047],[-82.61368,36.0048],[-82.61344,36.00481],[-82.61298,36.005],[-82.61286,36.005],[-82.61218,36.00588],[-82.61186,36.00621],[-82.61137,36.0065],[-82.61086,36.00661],[-82.61086,36.0067],[-82.61077,36.0069],[-82.61027,36.0072],[-82.61016,36.00731],[-82.60976,36.0075],[-82.60947,36.0077],[-82.60917,36.0078],[-82.60846,36.0083],[-82.60826,36.00851],[-82.60817,36.0088],[-82.60816,36.00901],[-82.60757,36.0099],[-82.60757,36.01021],[-82.60765,36.0103],[-82.60935,36.01089],[-82.60946,36.01099],[-82.60937,36.01144],[-82.60937,36.0116],[-82.60912,36.01185],[-82.60877,36.01231],[-82.60858,36.01291],[-82.60857,36.0145],[-82.60827,36.0153],[-82.60756,36.0159],[-82.60695,36.01631],[-82.60655,36.01651],[-82.60567,36.0167],[-82.60473,36.01708],[-82.60376,36.01741],[-82.60325,36.01741],[-82.60286,36.0179],[-82.60286,36.01799],[-82.60316,36.0189],[-82.60337,36.01939],[-82.60336,36.01981],[-82.60376,36.02059],[-82.60397,36.02122],[-82.60397,36.0213],[-82.60377,36.0218],[-82.60367,36.02201],[-82.60357,36.02251],[-82.60338,36.02278],[-82.60326,36.023],[-82.6029,36.02338],[-82.60235,36.02381],[-82.60205,36.02411],[-82.60177,36.0243],[-82.60127,36.02439],[-82.60106,36.02441],[-82.60027,36.02551],[-82.60016,36.0257],[-82.59998,36.02588],[-82.59904,36.02662],[-82.59837,36.027],[-82.59816,36.0272],[-82.59625,36.02871],[-82.59597,36.0288],[-82.59515,36.02921],[-82.59408,36.03009],[-82.59245,36.031],[-82.59196,36.0312],[-82.59127,36.0314],[-82.59107,36.0315],[-82.59077,36.03189],[-82.59077,36.03201],[-82.59066,36.032],[-82.59066,36.03209],[-82.59096,36.0336],[-82.59127,36.0341],[-82.59158,36.03487],[-82.59196,36.0357],[-82.59237,36.0358],[-82.59266,36.0358],[-82.59297,36.0359],[-82.59348,36.03601],[-82.59436,36.0361],[-82.59476,36.03629],[-82.59527,36.0364],[-82.59557,36.0366],[-82.59687,36.0366],[-82.59758,36.0365],[-82.59827,36.0366],[-82.59955,36.0364],[-82.60012,36.03621],[-82.60075,36.03611],[-82.60137,36.0359],[-82.60177,36.036],[-82.60187,36.03618],[-82.60187,36.03648],[-82.60176,36.03692],[-82.60167,36.03761],[-82.60167,36.03801],[-82.60197,36.0387],[-82.60236,36.0394],[-82.60245,36.03949],[-82.60266,36.0396],[-82.60297,36.0396],[-82.60288,36.03982],[-82.60298,36.04],[-82.60317,36.04],[-82.60327,36.0401],[-82.60384,36.04022],[-82.60435,36.0403],[-82.60536,36.0406],[-82.60616,36.041],[-82.60627,36.0412],[-82.60647,36.0414],[-82.60666,36.04169],[-82.60718,36.04222],[-82.60778,36.04311],[-82.60797,36.0433],[-82.60838,36.04382],[-82.60894,36.04427],[-82.60946,36.0448],[-82.60967,36.04491],[-82.61028,36.04501],[-82.61047,36.0451],[-82.61097,36.04491],[-82.61117,36.0449],[-82.61147,36.0454],[-82.61226,36.046],[-82.61357,36.04641],[-82.61398,36.04631],[-82.61496,36.0463],[-82.61528,36.04641],[-82.61567,36.0467],[-82.61627,36.0469],[-82.61716,36.04671],[-82.61746,36.0467],[-82.61782,36.04688],[-82.61818,36.04701],[-82.61837,36.04759],[-82.61827,36.04809],[-82.61818,36.04839],[-82.61796,36.04929],[-82.61808,36.0513],[-82.61796,36.0514],[-82.6178,36.05225],[-82.61769,36.0526],[-82.61756,36.05332],[-82.61727,36.05419],[-82.61747,36.05441],[-82.61797,36.0548],[-82.61796,36.05539],[-82.6187,36.05613],[-82.61928,36.0566],[-82.62006,36.057],[-82.62077,36.0571],[-82.6215,36.05731],[-82.62228,36.0575],[-82.62276,36.0579],[-82.62287,36.0584],[-82.62378,36.05881],[-82.62386,36.0592],[-82.62416,36.0593],[-82.62428,36.05962],[-82.62438,36.0598],[-82.62467,36.06001],[-82.62487,36.06022],[-82.62617,36.0607],[-82.62666,36.061],[-82.62713,36.06136],[-82.62785,36.06189],[-82.62798,36.062],[-82.62836,36.06209],[-82.62875,36.06239],[-82.62931,36.06272],[-82.62986,36.06309],[-82.63027,36.0634],[-82.63075,36.06349],[-82.63107,36.06369],[-82.63155,36.0639],[-82.63187,36.06409],[-82.63207,36.0642],[-82.63217,36.0647],[-82.63217,36.06541],[-82.63226,36.06568],[-82.63245,36.0658],[-82.63263,36.06578],[-82.63276,36.0658],[-82.63347,36.0657],[-82.63394,36.0656],[-82.63479,36.0656],[-82.63563,36.06579],[-82.63637,36.0659],[-82.63717,36.0658],[-82.63745,36.06551],[-82.63788,36.06528],[-82.63824,36.06503],[-82.63837,36.06491],[-82.63848,36.06489],[-82.63968,36.0642],[-82.64066,36.0638],[-82.64125,36.06351],[-82.64177,36.0633],[-82.64218,36.0633],[-82.64296,36.06311],[-82.64356,36.06281],[-82.64537,36.0616],[-82.64598,36.06109],[-82.64658,36.06049],[-82.64677,36.0601],[-82.64748,36.05953],[-82.64941,36.05828],[-82.64976,36.058],[-82.65017,36.0578],[-82.65156,36.0573],[-82.65188,36.0573],[-82.65276,36.0572],[-82.65317,36.0571],[-82.65367,36.0569],[-82.65396,36.05661],[-82.65453,36.05634],[-82.65482,36.05621],[-82.65718,36.0566],[-82.65848,36.0571],[-82.65916,36.0571],[-82.65946,36.0569],[-82.65967,36.0566],[-82.65996,36.05631],[-82.66027,36.0559],[-82.66066,36.0556],[-82.66147,36.0554],[-82.66267,36.055],[-82.66335,36.05471],[-82.66447,36.05411],[-82.66536,36.0535],[-82.66597,36.0532],[-82.66677,36.05289],[-82.66716,36.053],[-82.66787,36.053],[-82.66837,36.0529],[-82.66876,36.053],[-82.66929,36.0532],[-82.67004,36.053],[-82.67067,36.0528],[-82.67086,36.05261],[-82.67127,36.05201],[-82.67146,36.0519],[-82.67185,36.0518],[-82.67236,36.0517],[-82.67247,36.0516],[-82.67317,36.0499],[-82.67346,36.04973],[-82.67377,36.0495],[-82.67416,36.04941],[-82.67506,36.0487],[-82.67565,36.0486],[-82.67598,36.0487],[-82.67806,36.0487],[-82.67826,36.0486],[-82.67875,36.0486],[-82.67927,36.0484],[-82.67967,36.0479],[-82.68045,36.04713],[-82.68103,36.04664],[-82.68169,36.04619],[-82.68207,36.046],[-82.68257,36.046],[-82.68297,36.0461],[-82.68356,36.0461],[-82.68427,36.0456],[-82.68476,36.045],[-82.68497,36.0444],[-82.68527,36.043],[-82.68526,36.0427],[-82.68538,36.04228],[-82.68619,36.04113],[-82.68704,36.04012],[-82.68795,36.03921],[-82.68884,36.03861],[-82.69024,36.03791],[-82.69075,36.0377],[-82.69118,36.0377],[-82.69176,36.0376],[-82.69226,36.03761],[-82.69294,36.03712],[-82.69347,36.0368],[-82.69448,36.0368],[-82.69506,36.0367],[-82.69606,36.0361],[-82.69626,36.0361],[-82.69686,36.03601],[-82.69727,36.0358],[-82.69767,36.03551],[-82.69787,36.035],[-82.69787,36.0344],[-82.69806,36.03421],[-82.69827,36.0341],[-82.69857,36.03421],[-82.69906,36.03429],[-82.69988,36.0345],[-82.70047,36.0346],[-82.70107,36.0344],[-82.70128,36.0341],[-82.70136,36.03371],[-82.70137,36.0333],[-82.70148,36.03299],[-82.70166,36.03271],[-82.70216,36.03241],[-82.70227,36.0325],[-82.70266,36.0325],[-82.70315,36.03241],[-82.70384,36.03207],[-82.70447,36.0318],[-82.70601,36.03081],[-82.70704,36.03026],[-82.70826,36.0298],[-82.70905,36.0297],[-82.70967,36.0298],[-82.71047,36.0298],[-82.71076,36.0295],[-82.71178,36.0293],[-82.71214,36.02921],[-82.71287,36.0291],[-82.71356,36.0291],[-82.71429,36.02899],[-82.71487,36.02881],[-82.71516,36.0286],[-82.71547,36.028],[-82.71557,36.0273],[-82.71557,36.02689],[-82.71547,36.0261],[-82.71547,36.0252],[-82.71537,36.02461],[-82.71537,36.0238],[-82.71547,36.02361],[-82.71557,36.0232],[-82.71566,36.023],[-82.71596,36.02281],[-82.71665,36.02241],[-82.71737,36.0221],[-82.71806,36.022],[-82.71877,36.022],[-82.71916,36.0219],[-82.71967,36.0217],[-82.72017,36.0214],[-82.72065,36.02091],[-82.72137,36.0203],[-82.72227,36.0197],[-82.72267,36.0195],[-82.72267,36.0194],[-82.72455,36.01851],[-82.72508,36.0182],[-82.72567,36.0181],[-82.72676,36.0184],[-82.72736,36.0185],[-82.72788,36.01849],[-82.72886,36.0181],[-82.72927,36.0179],[-82.72977,36.0178],[-82.73017,36.0176],[-82.73187,36.0176],[-82.73217,36.0173],[-82.73227,36.017],[-82.73257,36.01661],[-82.73287,36.0161],[-82.73327,36.0157],[-82.73377,36.0154],[-82.73425,36.0152],[-82.73467,36.0151],[-82.73517,36.0151],[-82.73698,36.0154],[-82.73756,36.0154],[-82.73827,36.0152],[-82.73887,36.015],[-82.73937,36.0147],[-82.73957,36.0145],[-82.73926,36.01389],[-82.73927,36.0132],[-82.73956,36.0126],[-82.74007,36.0121],[-82.74046,36.0119],[-82.74076,36.012],[-82.74177,36.0125],[-82.74227,36.0125],[-82.74287,36.0122],[-82.74307,36.0119],[-82.74317,36.0116],[-82.74307,36.01108],[-82.74317,36.01079],[-82.74368,36.0105],[-82.74407,36.0103],[-82.74457,36.0099],[-82.74534,36.00961],[-82.74597,36.0094],[-82.74676,36.00959],[-82.74746,36.0099],[-82.74828,36.01],[-82.74887,36.0099],[-82.74949,36.00939],[-82.74977,36.0092],[-82.74987,36.0092],[-82.74997,36.0091],[-82.75008,36.0091],[-82.75017,36.009],[-82.75037,36.00899],[-82.75046,36.0089],[-82.75067,36.0088],[-82.75067,36.0086],[-82.75037,36.00809],[-82.75017,36.00759],[-82.75017,36.00749],[-82.75007,36.00719],[-82.74997,36.00657],[-82.74996,36.0063],[-82.75007,36.00611],[-82.75007,36.006],[-82.75156,36.006],[-82.75177,36.0061],[-82.75217,36.0061],[-82.75217,36.006],[-82.75237,36.006],[-82.75257,36.00579],[-82.75298,36.00529],[-82.75342,36.00494],[-82.75386,36.0046],[-82.75418,36.0045],[-82.75447,36.0043],[-82.75477,36.0043],[-82.75526,36.0044],[-82.75598,36.0044],[-82.75695,36.0043],[-82.75755,36.0042],[-82.75788,36.0042],[-82.75857,36.004],[-82.75917,36.00399],[-82.75917,36.0042],[-82.75966,36.00449],[-82.75976,36.00459],[-82.75977,36.0047],[-82.76007,36.0049],[-82.76087,36.0049],[-82.76147,36.0048],[-82.76207,36.0048],[-82.76207,36.0047],[-82.76226,36.0047],[-82.76237,36.0046],[-82.76266,36.0046],[-82.76307,36.0045],[-82.76317,36.0042],[-82.76437,36.0036],[-82.76447,36.0036],[-82.76457,36.0035],[-82.76498,36.00329],[-82.76536,36.003],[-82.76566,36.0029],[-82.76577,36.0028],[-82.76617,36.0027],[-82.76668,36.0025],[-82.76707,36.0025],[-82.76744,36.0024],[-82.76796,36.0023],[-82.76886,36.002],[-82.76928,36.0018],[-82.76988,36.00169],[-82.77124,36.00121],[-82.77149,36.001],[-82.77228,36.00059],[-82.77257,36.00049],[-82.77411,36.00054],[-82.77475,36.00071],[-82.77488,36.0008],[-82.77587,36.0008],[-82.77597,36.00051],[-82.77598,36.0003],[-82.77601,36.0001],[-82.77579,35.99899],[-82.77652,35.99843],[-82.77729,35.9988],[-82.778,35.99803],[-82.77859,35.99699],[-82.77826,35.99599],[-82.77886,35.99492],[-82.77939,35.99251],[-82.78025,35.9921],[-82.78061,35.99146],[-82.7814,35.99105],[-82.78219,35.99039],[-82.78336,35.98976],[-82.78456,35.98917],[-82.78571,35.98882],[-82.78527,35.98792],[-82.78501,35.98633],[-82.78509,35.98507],[-82.78526,35.98417],[-82.78481,35.98281],[-82.78417,35.98187],[-82.78487,35.98096],[-82.78514,35.97977],[-82.78544,35.97867],[-82.78556,35.97779],[-82.78458,35.97708],[-82.78331,35.97564],[-82.78181,35.97456],[-82.78032,35.97436],[-82.77862,35.97478],[-82.77761,35.9743],[-82.77644,35.97388],[-82.77588,35.97334],[-82.77491,35.97197],[-82.77577,35.97135],[-82.77683,35.97017],[-82.77727,35.96816],[-82.77775,35.96691],[-82.77924,35.9663],[-82.78152,35.96557],[-82.78309,35.96497],[-82.78454,35.96389],[-82.78536,35.96251],[-82.78533,35.96078],[-82.78519,35.95922],[-82.78604,35.95743],[-82.78704,35.95586],[-82.78708,35.95468],[-82.78709,35.95342],[-82.78747,35.95215],[-82.78853,35.95135],[-82.78976,35.95178],[-82.79067,35.95117],[-82.79145,35.95096],[-82.79214,35.94962],[-82.79349,35.94866],[-82.79434,35.94744],[-82.79509,35.94661],[-82.79656,35.94647],[-82.79802,35.94556],[-82.79919,35.94504],[-82.80043,35.94416],[-82.80146,35.94266],[-82.80211,35.94144],[-82.80344,35.94044],[-82.80411,35.93923],[-82.80436,35.93869],[-82.80585,35.93794],[-82.80619,35.93691],[-82.80597,35.93613],[-82.80578,35.93531],[-82.80532,35.93431],[-82.80466,35.93381],[-82.80457,35.93382],[-82.80423,35.93268],[-82.80359,35.93138],[-82.80277,35.93012],[-82.8029,35.92901],[-82.8041,35.92842],[-82.805,35.92716],[-82.80611,35.92708],[-82.80725,35.92696],[-82.80903,35.92724],[-82.81078,35.92684],[-82.81106,35.9268],[-82.81266,35.92556],[-82.81349,35.92533],[-82.81514,35.92565],[-82.81541,35.92452],[-82.81612,35.92399],[-82.81832,35.92345],[-82.81972,35.92262],[-82.82041,35.92208],[-82.82187,35.92183],[-82.82258,35.92254],[-82.82296,35.92396],[-82.82355,35.92522],[-82.82494,35.92627],[-82.82557,35.9271],[-82.82627,35.92756],[-82.82661,35.92818],[-82.82588,35.92915],[-82.82604,35.92971],[-82.8266,35.93025],[-82.82728,35.93112],[-82.8282,35.93209],[-82.82893,35.93293],[-82.8301,35.93297],[-82.83097,35.93251],[-82.83189,35.93289],[-82.83289,35.9332],[-82.83326,35.93497],[-82.83382,35.93581],[-82.83475,35.93616],[-82.83533,35.93671],[-82.83638,35.93732],[-82.83782,35.9373],[-82.83884,35.93745],[-82.83926,35.93818],[-82.83923,35.93909],[-82.84006,35.94024],[-82.84126,35.94172],[-82.84192,35.94198],[-82.84359,35.94205],[-82.8446,35.94205],[-82.84473,35.94267],[-82.84461,35.94388],[-82.84487,35.94522],[-82.84584,35.9463],[-82.84642,35.94613],[-82.84752,35.94613],[-82.849,35.94704],[-82.84985,35.94775],[-82.85059,35.94884],[-82.85115,35.9493],[-82.85164,35.94955],[-82.85225,35.94943],[-82.85256,35.94908],[-82.8538,35.94885],[-82.85579,35.94835],[-82.85892,35.94794],[-82.85958,35.94778],[-82.86073,35.94742],[-82.86142,35.94772],[-82.86259,35.94839],[-82.86354,35.9488],[-82.86469,35.949],[-82.86651,35.9496],[-82.86723,35.95045],[-82.86806,35.95058],[-82.86933,35.95057],[-82.86982,35.951],[-82.87067,35.95199],[-82.87152,35.95217],[-82.87307,35.95241],[-82.87416,35.95269],[-82.87484,35.95238],[-82.87606,35.95163],[-82.87747,35.95101],[-82.878,35.95048],[-82.87932,35.95021],[-82.8808,35.95002],[-82.88242,35.94983],[-82.88324,35.94964],[-82.88394,35.94919],[-82.88671,35.94859],[-82.8877,35.94877],[-82.88913,35.94834],[-82.88978,35.94751],[-82.8908,35.94646],[-82.89194,35.94573],[-82.89266,35.94518],[-82.89373,35.94487],[-82.89544,35.94488],[-82.89694,35.94462],[-82.89783,35.94487],[-82.89851,35.9451],[-82.90172,35.93769],[-82.90169,35.93699],[-82.90125,35.93646],[-82.90153,35.93556],[-82.90095,35.93468],[-82.90043,35.93436],[-82.90025,35.93376],[-82.90031,35.93317],[-82.89968,35.93263],[-82.89948,35.93222],[-82.89965,35.93171],[-82.89941,35.9311],[-82.89901,35.93037],[-82.8993,35.92957],[-82.90033,35.92904],[-82.90037,35.9285],[-82.90101,35.92821],[-82.90161,35.92741],[-82.9021,35.92681],[-82.90298,35.92663],[-82.90386,35.92621],[-82.90484,35.9261],[-82.90602,35.92628],[-82.90747,35.92689],[-82.90819,35.92725],[-82.91018,35.92746],[-82.91103,35.92778],[-82.91153,35.92813],[-82.91171,35.92842],[-82.91181,35.92888],[-82.91205,35.92942],[-82.91271,35.92958],[-82.91439,35.92968],[-82.91591,35.92915],[-82.91805,35.92889],[-82.9199,35.9288],[-82.92002,35.92843],[-82.92009,35.9277],[-82.9204,35.92721],[-82.91965,35.92629],[-82.9192,35.92581],[-82.91773,35.92499],[-82.91684,35.92415],[-82.91603,35.92428],[-82.91537,35.92449],[-82.91473,35.92441],[-82.91381,35.92448],[-82.91335,35.92409],[-82.91346,35.92296],[-82.91348,35.92181],[-82.91321,35.9211],[-82.9129,35.92055],[-82.91228,35.9203],[-82.91182,35.91982],[-82.91186,35.91914],[-82.91213,35.91868],[-82.91244,35.91792],[-82.91204,35.91751],[-82.9117,35.91675],[-82.91203,35.91641],[-82.91322,35.91579],[-82.91422,35.91543],[-82.9145,35.91515],[-82.91397,35.91477],[-82.91336,35.91424],[-82.91312,35.91365],[-82.9127,35.91347],[-82.91201,35.91339],[-82.91123,35.91301],[-82.91066,35.91277],[-82.9103,35.91196],[-82.90988,35.91109],[-82.90942,35.91099],[-82.90878,35.91116],[-82.90822,35.91109],[-82.90817,35.91034],[-82.90833,35.90964],[-82.90825,35.90923],[-82.90769,35.9085],[-82.90692,35.90738],[-82.90842,35.90506],[-82.9078,35.90388],[-82.90666,35.90348],[-82.90611,35.90299],[-82.90574,35.90195],[-82.90497,35.89947],[-82.90482,35.89785],[-82.90455,35.89701],[-82.90389,35.89627],[-82.90313,35.89531],[-82.90278,35.89445],[-82.90217,35.89339],[-82.90111,35.89295],[-82.90123,35.89224],[-82.90215,35.89143],[-82.90206,35.89036],[-82.9029,35.88864],[-82.904,35.88749],[-82.90518,35.8864],[-82.90624,35.88525],[-82.90654,35.88407],[-82.90641,35.88369],[-82.90585,35.88299],[-82.90522,35.88277],[-82.90505,35.88222],[-82.90431,35.88136],[-82.90356,35.88037],[-82.9028,35.88057],[-82.90205,35.88081],[-82.90111,35.88073],[-82.90003,35.88123],[-82.89966,35.88112],[-82.8992,35.88106],[-82.89865,35.88121],[-82.89797,35.88127],[-82.89711,35.88078],[-82.89632,35.88028],[-82.89609,35.87974],[-82.89624,35.87912],[-82.89658,35.87847],[-82.89727,35.87788],[-82.89793,35.87758],[-82.89824,35.87706],[-82.89889,35.87642],[-82.89941,35.87577],[-82.89952,35.87508],[-82.89969,35.87486],[-82.89974,35.87439],[-82.90001,35.87389],[-82.90041,35.87333],[-82.90131,35.87258],[-82.90189,35.87244],[-82.90256,35.87234],[-82.90336,35.87196],[-82.9039,35.87182],[-82.90532,35.87124],[-82.90603,35.87075],[-82.90638,35.8703],[-82.90656,35.87024],[-82.90715,35.87012],[-82.9076,35.8699],[-82.90789,35.86967],[-82.90876,35.86944],[-82.90962,35.86918],[-82.91035,35.86883],[-82.91074,35.8686],[-82.91164,35.86871],[-82.91227,35.86853],[-82.91301,35.86847],[-82.91476,35.86872],[-82.91548,35.86875],[-82.916,35.86872],[-82.91862,35.86872],[-82.91925,35.86869],[-82.91989,35.8686],[-82.92061,35.86848],[-82.92085,35.86811],[-82.92081,35.86756],[-82.92089,35.867],[-82.92118,35.86633],[-82.92117,35.86588],[-82.92087,35.86495],[-82.92088,35.86462],[-82.92144,35.86332],[-82.92133,35.86283],[-82.92091,35.86224],[-82.92053,35.86159],[-82.92046,35.86137],[-82.92003,35.86111],[-82.91945,35.86084],[-82.91875,35.86032],[-82.91857,35.86002],[-82.91851,35.85915],[-82.91864,35.85875],[-82.91924,35.85825],[-82.91965,35.85785],[-82.91979,35.85731],[-82.92013,35.8565],[-82.92029,35.85601],[-82.92032,35.85548],[-82.92024,35.85519],[-82.9199,35.85477],[-82.91983,35.85455],[-82.91983,35.85437],[-82.92007,35.8538],[-82.9203,35.85321],[-82.92025,35.85261],[-82.91998,35.85241],[-82.91988,35.85221],[-82.91991,35.85209],[-82.92006,35.85191],[-82.92058,35.85162],[-82.92091,35.85131],[-82.92098,35.85107],[-82.92091,35.85074],[-82.92065,35.85046],[-82.92029,35.85022],[-82.91991,35.84986],[-82.91982,35.84968],[-82.91977,35.84933],[-82.91983,35.84834],[-82.91981,35.84816],[-82.91974,35.8479],[-82.91922,35.84742],[-82.91903,35.84701],[-82.91883,35.84641],[-82.91856,35.84584],[-82.91836,35.84546],[-82.9174,35.84461],[-82.91722,35.84423],[-82.91717,35.8434],[-82.91703,35.84298],[-82.91641,35.84194],[-82.91631,35.84179],[-82.91628,35.8416],[-82.91656,35.84136],[-82.91743,35.84114],[-82.91789,35.84105],[-82.91882,35.841],[-82.9192,35.84083],[-82.91951,35.84059],[-82.92003,35.83957],[-82.92022,35.83938],[-82.92075,35.83931],[-82.92356,35.8391],[-82.92438,35.83901],[-82.92757,35.83858],[-82.92888,35.8382],[-82.92955,35.83803],[-82.93018,35.83781],[-82.93191,35.83753],[-82.93213,35.83745],[-82.93276,35.83717],[-82.9332,35.83695],[-82.93369,35.8368],[-82.934,35.83663],[-82.93404,35.83652],[-82.93396,35.83635],[-82.9335,35.83578],[-82.93313,35.83527],[-82.93296,35.83496],[-82.93285,35.83463],[-82.93284,35.8338],[-82.9328,35.83355],[-82.93286,35.83323],[-82.93323,35.83291],[-82.93365,35.8327],[-82.93389,35.83251],[-82.93396,35.83238],[-82.93395,35.83222],[-82.93378,35.83175],[-82.93381,35.8313],[-82.93371,35.83113],[-82.9332,35.83063],[-82.93319,35.83045],[-82.93445,35.82931],[-82.93464,35.82904],[-82.93474,35.82879],[-82.93481,35.82839],[-82.93504,35.82792],[-82.93528,35.82728],[-82.93563,35.82661],[-82.9358,35.82611],[-82.93596,35.82556],[-82.93618,35.82543],[-82.93686,35.82535],[-82.93765,35.82534],[-82.93802,35.82542],[-82.93823,35.82551],[-82.93865,35.82583],[-82.93876,35.82588],[-82.93972,35.82571],[-82.94099,35.82585],[-82.94382,35.82564],[-82.94429,35.82549],[-82.94552,35.82466],[-82.94584,35.8243],[-82.94629,35.82358],[-82.9468,35.82304],[-82.94689,35.82275],[-82.9467,35.822],[-82.94699,35.82174],[-82.9477,35.821],[-82.94824,35.8202],[-82.94854,35.81989],[-82.94846,35.81931],[-82.94829,35.81867],[-82.94807,35.81808],[-82.94803,35.8178],[-82.94818,35.81762],[-82.94854,35.8174],[-82.949,35.81706],[-82.94948,35.81651],[-82.9498,35.81627],[-82.95014,35.81628],[-82.95052,35.81641],[-82.95098,35.81675],[-82.95132,35.81681],[-82.95153,35.81675],[-82.95203,35.81618],[-82.95231,35.81542],[-82.95271,35.8149],[-82.95289,35.81454],[-82.95376,35.81376],[-82.95385,35.81356],[-82.95389,35.81301],[-82.95394,35.81266],[-82.95414,35.81235],[-82.95453,35.81186],[-82.95471,35.81157],[-82.95492,35.81085],[-82.95499,35.81066],[-82.95575,35.8098],[-82.95597,35.8092],[-82.95598,35.80828],[-82.95613,35.80787],[-82.95661,35.80731],[-82.95707,35.80687],[-82.95752,35.80625],[-82.95792,35.80546],[-82.95828,35.80465],[-82.95847,35.80408],[-82.95893,35.80335],[-82.95942,35.80268],[-82.95989,35.80223],[-82.96052,35.80176],[-82.96089,35.80145],[-82.96125,35.80111],[-82.96173,35.80049],[-82.96191,35.79985],[-82.96195,35.79922],[-82.96187,35.79862],[-82.96195,35.79761],[-82.96187,35.79721],[-82.96173,35.79703],[-82.96172,35.79691],[-82.96227,35.79643],[-82.96242,35.79605],[-82.96281,35.79556],[-82.96285,35.79518],[-82.96278,35.79402],[-82.96262,35.79335],[-82.96222,35.79276],[-82.96179,35.79226],[-82.9617,35.7918],[-82.96165,35.79105],[-82.963,35.79007],[-82.96344,35.78994],[-82.96379,35.78992],[-82.96409,35.78997],[-82.96461,35.7903],[-82.96513,35.79039],[-82.9657,35.79029],[-82.96632,35.79006],[-82.96675,35.78994],[-82.9674,35.78986],[-82.96793,35.78975],[-82.96821,35.78972],[-82.9685,35.78973],[-82.96917,35.78988],[-82.96965,35.78966],[-82.97021,35.78929],[-82.9711,35.78885],[-82.97158,35.7884],[-82.97205,35.788],[-82.97326,35.7875],[-82.97372,35.78722],[-82.97425,35.78696],[-82.97447,35.78678],[-82.9746,35.78652],[-82.97466,35.78615],[-82.97484,35.78584],[-82.97528,35.78556],[-82.97573,35.7852],[-82.9764,35.78491],[-82.97691,35.78453],[-82.9772,35.78418],[-82.97754,35.78348],[-82.97799,35.78296],[-82.97842,35.78261],[-82.97935,35.78228],[-82.9799,35.78202],[-82.98029,35.7817],[-82.98073,35.78127],[-82.98092,35.78085],[-82.98111,35.78033],[-82.98142,35.78002],[-82.98208,35.77959],[-82.98295,35.77892],[-82.98397,35.778],[-82.98461,35.77792],[-82.98509,35.77777],[-82.98669,35.77708],[-82.98701,35.77684],[-82.98715,35.77654],[-82.98753,35.77626],[-82.98783,35.77615],[-82.98835,35.77608],[-82.98885,35.77609],[-82.98942,35.77603],[-82.99006,35.77571],[-82.99086,35.77518],[-82.99121,35.77488],[-82.99159,35.77437],[-82.99191,35.77401],[-82.99202,35.77396],[-82.9924,35.77382],[-82.99533,35.77325],[-82.99581,35.77312],[-82.99611,35.77314],[-82.99692,35.77322],[-82.9981,35.77325],[-82.99859,35.77344],[-82.99919,35.7736],[-82.99961,35.77389],[-82.99986,35.77388],[-83.0012,35.77363],[-83.00148,35.77375],[-83.00159,35.77393],[-83.00157,35.77427],[-83.00173,35.77466],[-83.00217,35.77511],[-83.00284,35.77541],[-83.00318,35.77558],[-83.00334,35.77581],[-83.00359,35.77659],[-83.00364,35.77685],[-83.00386,35.77694],[-83.00427,35.77707],[-83.00512,35.77739],[-83.00578,35.77816],[-83.00607,35.7784],[-83.00633,35.77847],[-83.0068,35.77853],[-83.00729,35.77845],[-83.00742,35.77841],[-83.00776,35.77848],[-83.00821,35.77862],[-83.00858,35.77882],[-83.00886,35.7789],[-83.00903,35.77875],[-83.00921,35.77863],[-83.00941,35.77854],[-83.00976,35.77863],[-83.01027,35.77879],[-83.01037,35.77879],[-83.01061,35.7786],[-83.01145,35.77886],[-83.01178,35.77915],[-83.01205,35.77949],[-83.01239,35.77982],[-83.0133,35.78058],[-83.0138,35.78093],[-83.01397,35.78101],[-83.01451,35.78117],[-83.01487,35.78124],[-83.01521,35.78127],[-83.01541,35.78134],[-83.01561,35.7816],[-83.01602,35.7819],[-83.01621,35.78196],[-83.01784,35.78152],[-83.01851,35.78104],[-83.01885,35.78086],[-83.01923,35.78062],[-83.02006,35.78026],[-83.02027,35.78028],[-83.0207,35.7804],[-83.02184,35.78132],[-83.02237,35.78198],[-83.02276,35.78219],[-83.02311,35.78245],[-83.02327,35.78287],[-83.02358,35.78311],[-83.02402,35.78337],[-83.02528,35.78357],[-83.02582,35.78364],[-83.02619,35.78382],[-83.02659,35.78408],[-83.02678,35.78427],[-83.02726,35.78455],[-83.02748,35.7848],[-83.02782,35.78489],[-83.0282,35.78485],[-83.02845,35.78489],[-83.02926,35.78518],[-83.02993,35.78551],[-83.03021,35.78549],[-83.03069,35.78531],[-83.03113,35.78512],[-83.03153,35.78519],[-83.03226,35.78593],[-83.03251,35.78611],[-83.0331,35.78634],[-83.0335,35.7867],[-83.03392,35.78688],[-83.03477,35.78692],[-83.03542,35.78711],[-83.03622,35.7874],[-83.03645,35.78744],[-83.03688,35.78729],[-83.03727,35.78697],[-83.03745,35.78678],[-83.03793,35.7867],[-83.03816,35.78677],[-83.03849,35.78691],[-83.0388,35.78693],[-83.03949,35.78678],[-83.04072,35.78636],[-83.04149,35.786],[-83.04199,35.78585],[-83.04223,35.78566],[-83.04267,35.7854],[-83.04313,35.78533],[-83.04372,35.78535],[-83.04411,35.78534],[-83.04509,35.78554],[-83.04573,35.78565],[-83.0463,35.78584],[-83.04662,35.78603],[-83.04697,35.78634],[-83.04732,35.78657],[-83.04766,35.78691],[-83.04827,35.78739],[-83.04853,35.7877],[-83.04892,35.78788],[-83.05076,35.78838],[-83.05111,35.7886],[-83.0517,35.78894],[-83.05217,35.78935],[-83.05245,35.7895],[-83.05268,35.78955],[-83.05345,35.78941],[-83.05517,35.78894],[-83.05542,35.78896],[-83.0558,35.78893],[-83.0566,35.78877],[-83.05736,35.78854],[-83.05774,35.78836],[-83.05834,35.78823],[-83.05866,35.78804],[-83.05911,35.78783],[-83.05943,35.78773],[-83.06029,35.78751],[-83.0606,35.78733],[-83.06108,35.78695],[-83.0615,35.78677],[-83.0618,35.78675],[-83.06242,35.78679],[-83.06289,35.78676],[-83.06338,35.78666],[-83.06397,35.78664],[-83.06429,35.7867],[-83.06498,35.78707],[-83.06527,35.78714],[-83.06686,35.78712],[-83.06732,35.78714],[-83.06893,35.78779],[-83.06934,35.78788],[-83.07007,35.78791],[-83.07076,35.78797],[-83.07138,35.78809],[-83.07167,35.78825],[-83.07222,35.78831],[-83.07252,35.78853],[-83.07381,35.78982],[-83.07403,35.79001],[-83.07444,35.79001],[-83.07498,35.78989],[-83.07616,35.78942],[-83.07654,35.78923],[-83.07706,35.7892],[-83.07824,35.78952],[-83.07847,35.78956],[-83.07873,35.78947],[-83.07908,35.78914],[-83.07994,35.78845],[-83.08035,35.78806],[-83.08081,35.78712],[-83.08098,35.78701],[-83.08134,35.78689],[-83.08268,35.78691],[-83.08317,35.7868],[-83.08356,35.78662],[-83.08394,35.78641],[-83.08448,35.78606],[-83.08521,35.78579],[-83.08539,35.78566],[-83.08542,35.78539],[-83.08594,35.78382],[-83.08596,35.78371],[-83.08606,35.78362],[-83.0865,35.78357],[-83.08724,35.78368],[-83.08746,35.78365],[-83.08769,35.78338],[-83.08818,35.78247],[-83.08879,35.78228],[-83.08905,35.78198],[-83.08914,35.78164],[-83.08914,35.78145],[-83.08994,35.78112],[-83.09022,35.78093],[-83.09277,35.7797],[-83.09318,35.77958],[-83.09397,35.77955],[-83.09439,35.77948],[-83.09463,35.77946],[-83.09486,35.77928],[-83.0959,35.77731],[-83.09611,35.77693],[-83.09634,35.77671],[-83.09719,35.77607],[-83.09789,35.7757],[-83.09909,35.77521],[-83.09932,35.7751],[-83.1002,35.77477],[-83.1003,35.77472],[-83.10046,35.77469],[-83.10072,35.77472],[-83.10203,35.77497],[-83.10232,35.77507],[-83.10262,35.77496],[-83.10293,35.77477],[-83.10338,35.77453],[-83.1039,35.77442],[-83.10459,35.77423],[-83.10474,35.77414],[-83.10476,35.77398],[-83.10473,35.77369],[-83.1048,35.77347],[-83.10512,35.77339],[-83.1057,35.77326],[-83.1063,35.77308],[-83.10686,35.77263],[-83.10732,35.77239],[-83.10762,35.77215],[-83.10779,35.77196],[-83.1079,35.77199],[-83.10908,35.77203],[-83.10928,35.77198],[-83.10925,35.77148],[-83.10966,35.77126],[-83.11047,35.77091],[-83.11139,35.77084],[-83.11155,35.77061],[-83.11226,35.77079],[-83.11258,35.77075],[-83.11331,35.77034],[-83.11364,35.77022],[-83.11466,35.76999],[-83.11512,35.76993],[-83.11565,35.7699],[-83.11699,35.76997],[-83.11739,35.7699],[-83.11803,35.76959],[-83.11861,35.76893],[-83.11918,35.76831],[-83.1194,35.76795],[-83.12018,35.76623],[-83.12122,35.76661],[-83.12156,35.76682],[-83.12213,35.76692],[-83.12338,35.76703],[-83.12393,35.767],[-83.12486,35.76718],[-83.12617,35.76771],[-83.12771,35.76809],[-83.12979,35.76749],[-83.13144,35.76734],[-83.13421,35.76671],[-83.13645,35.76525],[-83.1374,35.76545],[-83.13886,35.76521],[-83.14112,35.76593],[-83.14252,35.76565],[-83.14454,35.76553],[-83.14697,35.76512],[-83.14809,35.76429],[-83.15034,35.76409],[-83.15171,35.76457],[-83.15409,35.76428],[-83.15771,35.765],[-83.15921,35.76489],[-83.16031,35.76406],[-83.16156,35.76335],[-83.16251,35.76247],[-83.16493,35.75995],[-83.16544,35.75869],[-83.16535,35.7565],[-83.16478,35.7546],[-83.16615,35.7525],[-83.16796,35.75135],[-83.16868,35.75008],[-83.17018,35.7461],[-83.17187,35.74597],[-83.17399,35.74528],[-83.17538,35.74492],[-83.1775,35.74391],[-83.17821,35.7424],[-83.1792,35.74118],[-83.18084,35.73887],[-83.18139,35.73767],[-83.18155,35.7363],[-83.18242,35.735],[-83.18569,35.72988],[-83.18836,35.7298],[-83.18878,35.72961],[-83.19191,35.72843],[-83.19589,35.72673],[-83.19828,35.72548],[-83.20013,35.72533],[-83.20375,35.72655],[-83.20978,35.72517],[-83.21449,35.72442],[-83.21697,35.72575],[-83.21999,35.72659],[-83.22264,35.72614],[-83.23203,35.72609],[-83.24067,35.72675],[-83.24116,35.72592],[-83.24215,35.72362],[-83.24349,35.72254],[-83.24489,35.7218],[-83.24987,35.7206],[-83.25056,35.72028],[-83.25124,35.71992],[-83.25199,35.71923],[-83.25304,35.71835],[-83.25394,35.71729],[-83.25536,35.71622],[-83.25549,35.71497],[-83.25409,35.71383],[-83.2534,35.71191],[-83.25175,35.71038],[-83.2507,35.70935],[-83.25198,35.70826],[-83.25655,35.70602],[-83.25756,35.7054],[-83.25692,35.70434],[-83.25597,35.70286],[-83.25513,35.70149],[-83.25554,35.70003],[-83.2557,35.6991],[-83.25433,35.69671],[-83.25423,35.69581],[-83.25457,35.69555],[-83.25575,35.69525],[-83.25713,35.69395],[-83.25874,35.69127],[-83.25916,35.69017],[-83.26094,35.68923],[-83.26299,35.68849],[-83.26458,35.68911],[-83.26874,35.68689],[-83.26962,35.68617],[-83.27054,35.68386],[-83.27138,35.68147],[-83.27549,35.67946],[-83.27846,35.67832],[-83.28119,35.67779],[-83.28247,35.67641],[-83.28352,35.6748],[-83.2875,35.67492],[-83.28918,35.6745],[-83.29069,35.67262],[-83.29099,35.66962],[-83.29109,35.66711],[-83.29197,35.66611],[-83.29327,35.66585],[-83.29388,35.66339],[-83.29368,35.66191],[-83.29461,35.66085],[-83.29648,35.65881],[-83.29715,35.65775],[-83.29868,35.657],[-83.30069,35.65679],[-83.30231,35.65605],[-83.30559,35.65551],[-83.30806,35.65613],[-83.30862,35.65605],[-83.3105,35.65445],[-83.31276,35.65481],[-83.31325,35.65576],[-83.31569,35.65724],[-83.31791,35.65901],[-83.31873,35.66013],[-83.32037,35.66171],[-83.32112,35.66281],[-83.32256,35.66318],[-83.32415,35.66332],[-83.32589,35.66341],[-83.32736,35.6637],[-83.32976,35.66412],[-83.33037,35.66461],[-83.33309,35.66528],[-83.33496,35.66547],[-83.33768,35.66307],[-83.33859,35.66307],[-83.3401,35.66401],[-83.34053,35.6644],[-83.34154,35.66409],[-83.34384,35.6618],[-83.3452,35.66142],[-83.34727,35.66047],[-83.34926,35.66085],[-83.35155,35.65987],[-83.35376,35.65749],[-83.35555,35.65463],[-83.35569,35.654],[-83.35538,35.65231],[-83.3562,35.65002],[-83.35724,35.64934],[-83.35826,35.6485],[-83.35821,35.64693],[-83.35899,35.64658],[-83.36065,35.64538],[-83.36184,35.64368],[-83.3643,35.64261],[-83.36551,35.6409],[-83.36695,35.63872],[-83.36816,35.6382],[-83.37037,35.6382],[-83.37163,35.63893],[-83.37218,35.63931],[-83.37262,35.63893],[-83.37371,35.63893],[-83.37488,35.6378],[-83.37533,35.63751],[-83.37544,35.63723],[-83.37679,35.63662],[-83.37799,35.63449],[-83.38026,35.6347],[-83.3877,35.63375],[-83.38817,35.63375],[-83.38873,35.63358],[-83.38889,35.63342],[-83.38889,35.63308],[-83.3887,35.63274],[-83.38861,35.63235],[-83.38881,35.63191],[-83.38956,35.63087],[-83.39096,35.62766],[-83.39265,35.6251],[-83.39664,35.62271],[-83.40019,35.62176],[-83.40356,35.62131],[-83.40606,35.62019],[-83.40743,35.61937],[-83.40831,35.61859],[-83.40982,35.6178],[-83.41074,35.61748],[-83.41158,35.61712],[-83.41187,35.61691],[-83.41207,35.61628],[-83.41317,35.61593],[-83.41379,35.61559],[-83.41499,35.61461],[-83.42038,35.61346],[-83.42072,35.61212],[-83.42097,35.61159],[-83.42157,35.61118],[-83.42437,35.61083],[-83.42581,35.61119],[-83.42684,35.6107],[-83.4277,35.61063],[-83.42867,35.61076],[-83.42938,35.61019],[-83.43229,35.60994],[-83.43259,35.60994],[-83.4349,35.61067],[-83.43783,35.61106],[-83.43981,35.61108],[-83.4409,35.61163],[-83.4412,35.61174],[-83.44506,35.6117],[-83.44581,35.6118],[-83.44672,35.60903],[-83.44712,35.60868],[-83.44848,35.60789],[-83.45006,35.60671],[-83.45064,35.6065],[-83.45085,35.60638],[-83.45087,35.60582],[-83.45082,35.60546],[-83.45127,35.60388],[-83.45162,35.60343],[-83.4524,35.60293],[-83.4534,35.60242],[-83.45509,35.60192],[-83.45506,35.60012],[-83.45523,35.59903],[-83.45572,35.59804],[-83.4572,35.5968],[-83.45858,35.59607],[-83.45886,35.59588],[-83.45919,35.59576],[-83.45983,35.59569],[-83.46043,35.59565],[-83.46087,35.59557],[-83.46143,35.59533],[-83.46268,35.5926],[-83.46697,35.59158],[-83.46776,35.59111],[-83.47138,35.5903],[-83.47267,35.58913],[-83.47249,35.58689],[-83.47269,35.58655],[-83.47318,35.58611],[-83.47389,35.58557],[-83.47538,35.58476],[-83.47667,35.58422],[-83.47719,35.58407],[-83.47762,35.58388],[-83.478,35.58362],[-83.4788,35.58347],[-83.47908,35.58331],[-83.47926,35.58304],[-83.47933,35.58276],[-83.47865,35.57987],[-83.4786,35.57929],[-83.47853,35.5792],[-83.47875,35.57889],[-83.47976,35.57784],[-83.48049,35.57694],[-83.48063,35.57663],[-83.481,35.5765],[-83.48102,35.57629],[-83.48108,35.5761],[-83.48104,35.57578],[-83.48173,35.57476],[-83.48221,35.57368],[-83.48256,35.57277],[-83.48287,35.57189],[-83.48383,35.57119],[-83.48433,35.57043],[-83.48503,35.56877],[-83.48523,35.56844],[-83.48553,35.5682],[-83.48851,35.56748],[-83.48919,35.56744],[-83.48929,35.56725],[-83.49019,35.56697],[-83.49095,35.56695],[-83.49165,35.56687],[-83.49207,35.56699],[-83.49332,35.56677],[-83.49394,35.56657],[-83.49626,35.56504],[-83.49707,35.56436],[-83.49771,35.56327],[-83.49799,35.56309],[-83.49836,35.56298],[-83.4999,35.56313],[-83.51302,35.56306],[-83.51755,35.56285],[-83.52047,35.56559],[-83.52385,35.56518],[-83.5284,35.56519],[-83.53414,35.56467],[-83.5409,35.5657],[-83.54745,35.56462],[-83.55215,35.56433],[-83.5553,35.56507],[-83.55928,35.56477],[-83.5639,35.56534],[-83.56607,35.566],[-83.56718,35.56464],[-83.56962,35.56445],[-83.57236,35.5655],[-83.57427,35.56481],[-83.57627,35.56402],[-83.57999,35.56337],[-83.58199,35.56265],[-83.58555,35.56294],[-83.58714,35.56396],[-83.58783,35.56695],[-83.59185,35.57044],[-83.59432,35.57292],[-83.59651,35.57474],[-83.59901,35.57509],[-83.60188,35.57826],[-83.60481,35.57932],[-83.6089,35.57944],[-83.60943,35.57877],[-83.61225,35.57634],[-83.61529,35.57404],[-83.61824,35.57286],[-83.62059,35.57233],[-83.62264,35.57206],[-83.62486,35.57008],[-83.62626,35.56945],[-83.62783,35.56867],[-83.62972,35.56788],[-83.63037,35.56809],[-83.6324,35.56911],[-83.63388,35.57048],[-83.63454,35.57034],[-83.63524,35.5698],[-83.63586,35.56817],[-83.63712,35.56713],[-83.63856,35.56678],[-83.64013,35.56654],[-83.6405,35.56608],[-83.64092,35.56571],[-83.64297,35.56607],[-83.64549,35.56583],[-83.6466,35.56683],[-83.64784,35.56667],[-83.64933,35.56737],[-83.65073,35.56783],[-83.65183,35.56787],[-83.65315,35.5683],[-83.65379,35.56944],[-83.65522,35.56981],[-83.65652,35.57],[-83.65722,35.56975],[-83.65791,35.56921],[-83.66041,35.56864],[-83.6609,35.56818],[-83.6626,35.56904],[-83.66448,35.5695],[-83.6687,35.56922],[-83.67045,35.56932],[-83.6731,35.56896],[-83.67463,35.56939],[-83.67626,35.57027],[-83.67785,35.56982],[-83.67932,35.57006],[-83.68034,35.57029],[-83.68084,35.56936],[-83.68375,35.56846],[-83.68413,35.56885],[-83.68706,35.56863],[-83.68878,35.5678],[-83.69033,35.56883],[-83.69128,35.56866],[-83.69305,35.56853],[-83.69366,35.56889],[-83.69524,35.57029],[-83.6967,35.57022],[-83.69728,35.56947],[-83.69781,35.56835],[-83.7006,35.5676],[-83.70207,35.56764],[-83.70389,35.56848],[-83.70717,35.56848],[-83.70959,35.56679],[-83.71149,35.56654],[-83.71278,35.56625],[-83.71386,35.5649],[-83.71484,35.56391],[-83.71705,35.56379],[-83.71909,35.56401],[-83.72077,35.56335],[-83.72349,35.56189],[-83.7246,35.56252],[-83.72657,35.56257],[-83.72978,35.56417],[-83.73065,35.56396],[-83.73195,35.56346],[-83.73299,35.56313],[-83.73436,35.56465],[-83.73568,35.56545],[-83.73733,35.565],[-83.74019,35.56383],[-83.74104,35.56305],[-83.74203,35.56262],[-83.74466,35.56269],[-83.74527,35.56178],[-83.74697,35.56013],[-83.74806,35.55982],[-83.74866,35.56106],[-83.74988,35.56114],[-83.75485,35.56286],[-83.75686,35.56362],[-83.75965,35.5625],[-83.76111,35.5623],[-83.76289,35.56284],[-83.76459,35.56154],[-83.77174,35.56213],[-83.7731,35.55746],[-83.78011,35.55038],[-83.7813,35.55069],[-83.78231,35.55026],[-83.78395,35.54989],[-83.78611,35.54842],[-83.78677,35.5472],[-83.78902,35.54648],[-83.79101,35.54589],[-83.79426,35.54531],[-83.79624,35.54405],[-83.79893,35.54103],[-83.80242,35.54161],[-83.80329,35.54105],[-83.80871,35.53643],[-83.80981,35.53431],[-83.82295,35.52577],[-83.82559,35.52384],[-83.82744,35.52465],[-83.83183,35.52478],[-83.83387,35.52429],[-83.84014,35.52157],[-83.84288,35.52168],[-83.84389,35.52144],[-83.84851,35.51927],[-83.85378,35.52101],[-83.85705,35.52177],[-83.85917,35.52186],[-83.86045,35.52144],[-83.86193,35.52124],[-83.86495,35.52126],[-83.86867,35.52037],[-83.87111,35.52104],[-83.87264,35.52114],[-83.87485,35.51971],[-83.87777,35.5191],[-83.8801,35.5187],[-83.8826,35.51714],[-83.88335,35.51579],[-83.88428,35.51275],[-83.88819,35.50777],[-83.89206,35.5031],[-83.89304,35.50225],[-83.89566,35.50187],[-83.89694,35.5001],[-83.89706,35.49982],[-83.89841,35.49938],[-83.89868,35.49902],[-83.8995,35.4981],[-83.90083,35.49719],[-83.90139,35.49657],[-83.9015,35.49593],[-83.90143,35.49528],[-83.90082,35.4948],[-83.9002,35.49422],[-83.90034,35.49305],[-83.90154,35.49104],[-83.9024,35.49064],[-83.90385,35.48976],[-83.90483,35.48959],[-83.90558,35.48911],[-83.90625,35.48781],[-83.9066,35.48662],[-83.90696,35.48637],[-83.90719,35.48557],[-83.9076,35.48515],[-83.90803,35.48441],[-83.90876,35.48389],[-83.90888,35.48305],[-83.90917,35.48256],[-83.90897,35.48168],[-83.90895,35.48059],[-83.90932,35.47966],[-83.91004,35.47879],[-83.91071,35.47785],[-83.91175,35.47607],[-83.91299,35.47587],[-83.91371,35.47546],[-83.91458,35.47475],[-83.91571,35.47401],[-83.91675,35.47356],[-83.91813,35.47398],[-83.91839,35.47382],[-83.91848,35.4736],[-83.91956,35.47335],[-83.92092,35.47403],[-83.92189,35.4744],[-83.92317,35.47438],[-83.92449,35.4744],[-83.92489,35.47391],[-83.92552,35.47365],[-83.92623,35.47373],[-83.92716,35.47334],[-83.92814,35.47302],[-83.92975,35.47333],[-83.93277,35.47271],[-83.93406,35.47238],[-83.93568,35.47193],[-83.93703,35.4715],[-83.9374,35.47079],[-83.93818,35.47005],[-83.93928,35.46927],[-83.94128,35.46797],[-83.94218,35.46725],[-83.94234,35.46628],[-83.94284,35.46576],[-83.94299,35.46507],[-83.94284,35.46456],[-83.94389,35.46432],[-83.94493,35.46434],[-83.94618,35.46382],[-83.94701,35.46337],[-83.9474,35.4628],[-83.94783,35.46223],[-83.94893,35.46171],[-83.94935,35.46121],[-83.95064,35.46078],[-83.95149,35.46073],[-83.95268,35.46075],[-83.95336,35.46135],[-83.95351,35.46163],[-83.95369,35.46189],[-83.95385,35.46202],[-83.95385,35.46216],[-83.9539,35.46231],[-83.95417,35.46253],[-83.95439,35.4628],[-83.95461,35.46317],[-83.95513,35.46361],[-83.95648,35.46417],[-83.95693,35.46422],[-83.95788,35.46443],[-83.95853,35.46447],[-83.95933,35.46435],[-83.96106,35.46423],[-83.96106,35.46364],[-83.96109,35.46249],[-83.96111,35.46069],[-83.96108,35.46011],[-83.96119,35.45977],[-83.9615,35.45945],[-83.96182,35.45919],[-83.96287,35.45861],[-83.96312,35.45854],[-83.9632,35.45824],[-83.96318,35.4579],[-83.96308,35.4575],[-83.96316,35.45717],[-83.96331,35.45696],[-83.96353,35.45674],[-83.9638,35.45657],[-83.96455,35.45658],[-83.96503,35.45663],[-83.96551,35.45649],[-83.96567,35.45638],[-83.96575,35.45614],[-83.96561,35.45565],[-83.96539,35.45548],[-83.96514,35.45547],[-83.9645,35.45524],[-83.96441,35.45505],[-83.96434,35.45459],[-83.96453,35.45433],[-83.96466,35.45425],[-83.96488,35.45423],[-83.9652,35.45435],[-83.9655,35.4545],[-83.96596,35.45477],[-83.96664,35.45515],[-83.96683,35.45517],[-83.9681,35.45521],[-83.9697,35.45551],[-83.97052,35.45557],[-83.97101,35.45554],[-83.97124,35.45545],[-83.97145,35.45532],[-83.97163,35.45515],[-83.97186,35.45476],[-83.97193,35.45429],[-83.97182,35.45395],[-83.9717,35.45366],[-83.97126,35.45335],[-83.97116,35.45325],[-83.97116,35.45312],[-83.97145,35.45301],[-83.97275,35.45299],[-83.97323,35.45294],[-83.97315,35.45233],[-83.97312,35.45171],[-83.97313,35.45109],[-83.97302,35.45044],[-83.97295,35.44988],[-83.97305,35.44934],[-83.97305,35.44888],[-83.97292,35.44865],[-83.97276,35.44824],[-83.97255,35.44795],[-83.97238,35.44767],[-83.97246,35.44741],[-83.97257,35.44734],[-83.97276,35.44728],[-83.97293,35.44729],[-83.97335,35.44739],[-83.97375,35.44769],[-83.97398,35.44782],[-83.97424,35.4479],[-83.97471,35.44793],[-83.97485,35.44792],[-83.97507,35.44782],[-83.97533,35.44767],[-83.97559,35.44731],[-83.97585,35.44701],[-83.97614,35.44697],[-83.97657,35.44703],[-83.97721,35.44722],[-83.97766,35.44744],[-83.97791,35.44759],[-83.97828,35.448],[-83.97856,35.44812],[-83.97909,35.44821],[-83.97957,35.44823],[-83.97988,35.44815],[-83.98028,35.44763],[-83.98053,35.44705],[-83.98086,35.44681],[-83.98113,35.44639],[-83.98147,35.44605],[-83.98222,35.44494],[-83.98248,35.44425],[-83.98258,35.44371],[-83.98272,35.44336],[-83.98333,35.44225],[-83.98349,35.44146],[-83.98346,35.44118],[-83.98352,35.44097],[-83.98379,35.44058],[-83.98435,35.44035],[-83.98529,35.44028],[-83.98615,35.44049],[-83.98734,35.441],[-83.98795,35.44097],[-83.98852,35.44052],[-83.9886,35.44031],[-83.98848,35.43992],[-83.98846,35.43947],[-83.98892,35.4393],[-83.98939,35.43935],[-83.99011,35.43989],[-83.99053,35.44032],[-83.99095,35.44064],[-83.99141,35.44072],[-83.99181,35.44062],[-83.99213,35.4404],[-83.99268,35.43949],[-83.9928,35.43819],[-83.99296,35.43777],[-83.99324,35.43754],[-83.99401,35.43712],[-83.99453,35.4367],[-83.99456,35.43659],[-83.9945,35.4365],[-83.9944,35.43606],[-83.99435,35.43563],[-83.99436,35.43547],[-83.99463,35.43512],[-83.99487,35.43504],[-83.99523,35.435],[-83.99569,35.43491],[-83.99598,35.43501],[-83.99629,35.43517],[-83.99645,35.43487],[-83.99658,35.43419],[-83.9968,35.43378],[-83.99733,35.43373],[-83.99894,35.4342],[-83.99941,35.43413],[-83.99969,35.43394],[-83.99986,35.43368],[-83.99977,35.43329],[-83.99926,35.43282],[-83.99897,35.43265],[-83.99876,35.43241],[-83.99874,35.43225],[-83.99904,35.4319],[-83.9993,35.43143],[-83.99932,35.43128],[-83.99915,35.43117],[-83.99852,35.43105],[-83.99822,35.43088],[-83.99824,35.4307],[-83.99833,35.43056],[-83.99844,35.43045],[-83.99855,35.43021],[-83.9987,35.42949],[-83.99902,35.42911],[-83.99964,35.42868],[-83.99975,35.42847],[-83.99978,35.42799],[-83.99961,35.42785],[-83.99947,35.42764],[-83.99944,35.42743],[-83.99946,35.4273],[-83.99929,35.42684],[-83.99925,35.42666],[-83.99929,35.42634],[-83.99969,35.42566],[-84.00006,35.42494],[-84.00055,35.42459],[-84.00089,35.42425],[-84.00102,35.42393],[-84.00106,35.42361],[-84.0013,35.42327],[-84.00157,35.42311],[-84.00245,35.42239],[-84.00325,35.42203],[-84.00377,35.42164],[-84.00457,35.42132],[-84.00541,35.42081],[-84.00604,35.41986],[-84.00685,35.4189],[-84.00793,35.41839],[-84.00908,35.41729],[-84.00975,35.41692],[-84.01011,35.41679],[-84.01059,35.41635],[-84.01073,35.41599],[-84.01136,35.4155],[-84.01174,35.41537],[-84.01212,35.41495],[-84.01247,35.41427],[-84.01314,35.41341],[-84.01377,35.41273],[-84.01481,35.41194],[-84.01517,35.41189],[-84.01601,35.41149],[-84.01643,35.41149],[-84.01757,35.41118],[-84.0184,35.41126],[-84.0192,35.41166],[-84.02056,35.41201],[-84.02118,35.41204],[-84.02272,35.41169],[-84.02305,35.41165],[-84.02329,35.41137],[-84.02335,35.41059],[-84.02279,35.40875],[-84.02215,35.40791],[-84.02142,35.40703],[-84.02115,35.40656],[-84.0211,35.40619],[-84.02164,35.40432],[-84.02062,35.40318],[-84.02013,35.40203],[-84.01878,35.39974],[-84.01829,35.39913],[-84.01723,35.39892],[-84.01642,35.39853],[-84.01631,35.39864],[-84.01579,35.3985],[-84.01518,35.39847],[-84.01407,35.39775],[-84.01343,35.39562],[-84.01315,35.39411],[-84.0127,35.39236],[-84.01226,35.39197],[-84.0108,35.39195],[-84.00919,35.3913],[-84.00822,35.39042],[-84.00821,35.38962],[-84.00942,35.3882],[-84.01018,35.38693],[-84.01051,35.38648],[-84.01094,35.38555],[-84.01121,35.38456],[-84.0112,35.38418],[-84.01085,35.38345],[-84.01002,35.38297],[-84.00957,35.38233],[-84.00995,35.38111],[-84.00962,35.38042],[-84.00887,35.37966],[-84.00833,35.37887],[-84.00822,35.37746],[-84.00878,35.37613],[-84.00891,35.37574],[-84.0087,35.37237],[-84.00808,35.37189],[-84.00741,35.37158],[-84.0086,35.37038],[-84.01086,35.36865],[-84.01291,35.36679],[-84.01504,35.365],[-84.01583,35.36386],[-84.01657,35.36245],[-84.0175,35.36175],[-84.01842,35.36067],[-84.01921,35.35952],[-84.01951,35.35846],[-84.02015,35.35749],[-84.02109,35.35695],[-84.02226,35.35658],[-84.02297,35.3562],[-84.02323,35.35455],[-84.02349,35.35414],[-84.02529,35.35388],[-84.02757,35.35335],[-84.02907,35.35356],[-84.03137,35.35305],[-84.03242,35.35265],[-84.03285,35.35188],[-84.03343,35.35136],[-84.03431,35.35101],[-84.03693,35.3506],[-84.0375,35.34985],[-84.03833,35.34784],[-84.036,35.34558],[-84.03504,35.34423],[-84.03406,35.3433],[-84.03398,35.34276],[-84.03428,35.34233],[-84.03498,35.34164],[-84.03559,35.34145],[-84.03585,35.34083],[-84.03632,35.33913],[-84.03609,35.33857],[-84.03619,35.33766],[-84.035,35.33727],[-84.03462,35.33732],[-84.03313,35.33706],[-84.03239,35.33683],[-84.03144,35.33646],[-84.03127,35.33643],[-84.02948,35.33354],[-84.02934,35.33311],[-84.02937,35.33268],[-84.02968,35.33214],[-84.02981,35.33154],[-84.03045,35.33038],[-84.03145,35.32947],[-84.03223,35.32859],[-84.03254,35.32773],[-84.03265,35.32729],[-84.03268,35.32685],[-84.03247,35.32642],[-84.0325,35.32475],[-84.03301,35.32382],[-84.03373,35.32335],[-84.03452,35.3224],[-84.03451,35.32201],[-84.03421,35.32154],[-84.03392,35.3209],[-84.03388,35.32035],[-84.03432,35.3196],[-84.03522,35.31843],[-84.03553,35.31777],[-84.03582,35.31546],[-84.03585,35.31316],[-84.03502,35.31199],[-84.02839,35.31026],[-84.02719,35.30979],[-84.02652,35.30928],[-84.02629,35.30801],[-84.02634,35.30697],[-84.02623,35.30629],[-84.02559,35.30557],[-84.02471,35.30489],[-84.024,35.3042],[-84.0233,35.30256],[-84.02268,35.30207],[-84.02211,35.30198],[-84.02162,35.30178],[-84.02138,35.30135],[-84.02143,35.301],[-84.02183,35.30048],[-84.02272,35.29967],[-84.0234,35.29894],[-84.02352,35.29841],[-84.02335,35.29803],[-84.02301,35.29761],[-84.02289,35.29702],[-84.0235,35.29577],[-84.02446,35.29505],[-84.02595,35.29419],[-84.02753,35.29303],[-84.02806,35.2927],[-84.02863,35.29254],[-84.02906,35.29217],[-84.03235,35.29056],[-84.03311,35.28986],[-84.03413,35.28915],[-84.03496,35.28885],[-84.03605,35.28865],[-84.03664,35.28762],[-84.03722,35.28638],[-84.03778,35.28592],[-84.03842,35.28528],[-84.03902,35.2843],[-84.0394,35.28335],[-84.04011,35.28039],[-84.04033,35.27988],[-84.0406,35.2795],[-84.04128,35.27905],[-84.04233,35.27858],[-84.04321,35.27811],[-84.04334,35.2777],[-84.04317,35.2775],[-84.04358,35.27708],[-84.04491,35.27657],[-84.0455,35.2761],[-84.04652,35.27417],[-84.04718,35.27403],[-84.04806,35.27421],[-84.0493,35.27369],[-84.05022,35.27367],[-84.05093,35.27358],[-84.05148,35.27321],[-84.05182,35.27249],[-84.05254,35.27143],[-84.05232,35.27021],[-84.05289,35.2698],[-84.0557,35.2682],[-84.05632,35.26818],[-84.05703,35.26801],[-84.05773,35.26757],[-84.05863,35.26735],[-84.05998,35.26744],[-84.06076,35.26727],[-84.06197,35.26671],[-84.06291,35.26677],[-84.06372,35.2667],[-84.06443,35.26641],[-84.06521,35.266],[-84.06604,35.26564],[-84.06682,35.26524],[-84.06883,35.26438],[-84.06944,35.26439],[-84.06996,35.26421],[-84.07062,35.2638],[-84.07119,35.26366],[-84.07192,35.26371],[-84.07244,35.26337],[-84.07313,35.26315],[-84.07383,35.26328],[-84.07461,35.26321],[-84.07561,35.26292],[-84.07719,35.26221],[-84.07953,35.26137],[-84.08056,35.26136],[-84.08116,35.26114],[-84.08176,35.26044],[-84.08215,35.25982],[-84.0828,35.25892],[-84.08318,35.25806],[-84.08299,35.2573],[-84.0825,35.25611],[-84.08295,35.25578],[-84.0838,35.25555],[-84.08509,35.2554],[-84.08563,35.25515],[-84.08616,35.25476],[-84.08659,35.25419],[-84.08752,35.25379],[-84.08797,35.25334],[-84.08801,35.2531],[-84.08839,35.25269],[-84.08972,35.25209],[-84.08979,35.25163],[-84.09207,35.25029],[-84.09221,35.25],[-84.09497,35.24844],[-84.09807,35.2472],[-84.09937,35.24785],[-84.10038,35.24845],[-84.1014,35.24813],[-84.10226,35.24811],[-84.10296,35.24857],[-84.10425,35.2502],[-84.10457,35.25026],[-84.10518,35.25018],[-84.1056,35.25048],[-84.10576,35.25086],[-84.10659,35.25155],[-84.10698,35.25141],[-84.1087,35.25011],[-84.10893,35.24966],[-84.10941,35.24963],[-84.10955,35.24985],[-84.10957,35.25007],[-84.11026,35.25044],[-84.11092,35.25008],[-84.11108,35.24977],[-84.11141,35.24949],[-84.11291,35.24916],[-84.11333,35.24897],[-84.11403,35.24895],[-84.11478,35.24924],[-84.11498,35.24952],[-84.11525,35.25041],[-84.1163,35.25125],[-84.1177,35.25195],[-84.11824,35.25206],[-84.11894,35.25231],[-84.11961,35.25227],[-84.12072,35.25163],[-84.12115,35.25063],[-84.12356,35.24976],[-84.12532,35.24986],[-84.12561,35.2493],[-84.12617,35.24795],[-84.1268,35.24646],[-84.12658,35.24584],[-84.12602,35.24476],[-84.1258,35.2439],[-84.12589,35.24332],[-84.1259,35.24299],[-84.12568,35.24268],[-84.12573,35.24204],[-84.12643,35.24135],[-84.12713,35.24098],[-84.12761,35.24097],[-84.12873,35.24134],[-84.12906,35.24165],[-84.12939,35.24178],[-84.12988,35.24176],[-84.1301,35.24188],[-84.13078,35.24186],[-84.1311,35.24173],[-84.13143,35.24187],[-84.1324,35.24204],[-84.13326,35.24238],[-84.13578,35.24432],[-84.13641,35.24475],[-84.13733,35.24504],[-84.13833,35.24539],[-84.13924,35.24599],[-84.13968,35.24618],[-84.14067,35.24641],[-84.1412,35.24638],[-84.14188,35.2465],[-84.14303,35.2469],[-84.14531,35.24649],[-84.14708,35.24696],[-84.14792,35.24698],[-84.149,35.24651],[-84.15025,35.24628],[-84.15176,35.24625],[-84.15288,35.24607],[-84.15409,35.24627],[-84.15449,35.24643],[-84.15521,35.24647],[-84.15591,35.24636],[-84.15687,35.24587],[-84.15782,35.24584],[-84.15813,35.24596],[-84.15892,35.24588],[-84.15946,35.24534],[-84.15961,35.24494],[-84.16023,35.24415],[-84.16046,35.24381],[-84.16073,35.24378],[-84.16101,35.24357],[-84.1616,35.24347],[-84.16197,35.24379],[-84.16408,35.24408],[-84.16495,35.24448],[-84.16599,35.24505],[-84.16622,35.24516],[-84.16655,35.24516],[-84.16778,35.24541],[-84.16855,35.2458],[-84.16881,35.24598],[-84.16947,35.24637],[-84.16985,35.24638],[-84.17014,35.24626],[-84.17085,35.24517],[-84.17155,35.24479],[-84.17224,35.24472],[-84.17412,35.24402],[-84.17498,35.24332],[-84.17608,35.2427],[-84.17708,35.2423],[-84.17783,35.24158],[-84.17806,35.241],[-84.17878,35.24057],[-84.18111,35.24031],[-84.18326,35.24019],[-84.18585,35.24015],[-84.18613,35.2403],[-84.1864,35.24031],[-84.18703,35.24013],[-84.18838,35.24],[-84.1887,35.24008],[-84.18885,35.24026],[-84.18906,35.24062],[-84.18985,35.24118],[-84.19021,35.24136],[-84.19137,35.24223],[-84.1924,35.24329],[-84.19308,35.24477],[-84.19454,35.24477],[-84.19541,35.24438],[-84.19594,35.24427],[-84.19649,35.24446],[-84.19744,35.24412],[-84.19837,35.24397],[-84.19849,35.24378],[-84.1991,35.24367],[-84.20019,35.2447],[-84.20037,35.24521],[-84.20073,35.24552],[-84.2017,35.24761],[-84.20173,35.2484],[-84.20161,35.24868],[-84.2014,35.24938],[-84.2015,35.24972],[-84.20241,35.25105],[-84.20277,35.2518],[-84.20258,35.25219],[-84.20245,35.25239],[-84.20223,35.25297],[-84.20224,35.25324],[-84.20266,35.25409],[-84.20282,35.25568],[-84.20306,35.25604],[-84.20424,35.25697],[-84.20536,35.25825],[-84.2055,35.25896],[-84.20551,35.25967],[-84.20626,35.26041],[-84.20714,35.26104],[-84.2077,35.26164],[-84.20846,35.26206],[-84.20947,35.26343],[-84.21005,35.26411],[-84.21034,35.26472],[-84.21089,35.2653],[-84.21101,35.26549],[-84.21118,35.26556],[-84.21177,35.26609],[-84.21224,35.26607],[-84.21327,35.26629],[-84.2139,35.26626],[-84.21459,35.26633],[-84.21499,35.26656],[-84.21538,35.26719],[-84.21632,35.26798],[-84.21758,35.26819],[-84.21886,35.26815],[-84.21943,35.26785],[-84.21999,35.26786],[-84.22067,35.26767],[-84.22152,35.26767],[-84.22232,35.26816],[-84.22291,35.26879],[-84.22372,35.26907],[-84.22392,35.26894],[-84.22438,35.26887],[-84.22808,35.26779],[-84.2287,35.26724],[-84.22898,35.26691],[-84.22906,35.26655],[-84.22932,35.26594],[-84.23011,35.26543],[-84.23142,35.26488],[-84.23189,35.26475],[-84.23236,35.26436],[-84.23335,35.26241],[-84.23396,35.2623],[-84.23494,35.26127],[-84.2363,35.25953],[-84.23858,35.25748],[-84.23931,35.25689],[-84.23994,35.25604],[-84.24022,35.25518],[-84.2414,35.25451],[-84.24271,35.2531],[-84.24294,35.25319],[-84.24364,35.253],[-84.24762,35.25137],[-84.24951,35.25095],[-84.24986,35.25125],[-84.25064,35.25097],[-84.2513,35.25035],[-84.25275,35.24945],[-84.25321,35.24947],[-84.25673,35.2467],[-84.25753,35.2463],[-84.25891,35.24455],[-84.25902,35.24405],[-84.25986,35.24274],[-84.2598,35.24239],[-84.26034,35.24189],[-84.26111,35.24154],[-84.26206,35.24106],[-84.26431,35.2403],[-84.26449,35.24007],[-84.26536,35.23959],[-84.26548,35.23932],[-84.26642,35.2387],[-84.2682,35.2382],[-84.26868,35.23814],[-84.27008,35.23737],[-84.27202,35.23627],[-84.27374,35.23569],[-84.27461,35.23508],[-84.27539,35.23477],[-84.27615,35.23406],[-84.27636,35.23363],[-84.27734,35.23274],[-84.2779,35.23174],[-84.27791,35.23148],[-84.27854,35.23108],[-84.27961,35.23064],[-84.28152,35.2293],[-84.28177,35.22888],[-84.2822,35.22854],[-84.28241,35.22799],[-84.28304,35.22716],[-84.28323,35.2266],[-84.28379,35.22636],[-84.28435,35.22656],[-84.28512,35.22661],[-84.28554,35.22633],[-84.28691,35.225],[-84.2879,35.22454],[-84.28873,35.22434],[-84.28972,35.22472],[-84.29023,35.22536],[-84.29519,35.18216],[-84.305,35.12057],[-84.32187,34.9884],[-85.60518,34.98466],[-85.59943,34.95158],[-85.5987,34.94419],[-85.59646,34.93091],[-85.59242,34.91062],[-85.58088,34.84852],[-85.57459,34.81649],[-85.56189,34.75214],[-85.53431,34.62511],[-85.52715,34.5879],[-85.47623,34.3547],[-85.42951,34.12526],[-85.23057,33.09702],[-85.18474,32.87055],[-85.18414,32.87051],[-85.18393,32.8612],[-85.17829,32.85476],[-85.17009,32.85297],[-85.16285,32.85688],[-85.16026,32.85619],[-85.15313,32.84679],[-85.15342,32.83974],[-85.16065,32.838],[-85.1671,32.83007],[-85.16427,32.81865],[-85.16762,32.81416],[-85.16815,32.81224],[-85.16726,32.81133],[-85.16648,32.80992],[-85.16278,32.8057],[-85.15805,32.80084],[-85.15559,32.79885],[-85.15286,32.79507],[-85.14763,32.7919],[-85.14368,32.79162],[-85.14326,32.79239],[-85.14236,32.79238],[-85.14151,32.79128],[-85.14173,32.79027],[-85.14071,32.78845],[-85.13986,32.7874],[-85.1394,32.78551],[-85.13523,32.78481],[-85.13109,32.78077],[-85.1256,32.77894],[-85.12429,32.77615],[-85.12248,32.7747],[-85.122,32.77266],[-85.13426,32.76792],[-85.1423,32.75969],[-85.13353,32.74472],[-85.11764,32.74027],[-85.11412,32.73812],[-85.11304,32.73172],[-85.12131,32.71781],[-85.11341,32.69191],[-85.1007,32.67944],[-85.08777,32.65694],[-85.10334,32.64398],[-85.09805,32.63752],[-85.09103,32.63494],[-85.0834,32.63777],[-85.08216,32.6342],[-85.0883,32.62499],[-85.08175,32.61656],[-85.0796,32.60338],[-85.07792,32.59845],[-85.06995,32.58463],[-85.06748,32.57935],[-85.06289,32.57924],[-85.05664,32.5734],[-85.05661,32.57269],[-85.05692,32.57194],[-85.05693,32.57123],[-85.04584,32.56229],[-85.04431,32.55894],[-85.03917,32.55645],[-85.02117,32.54294],[-85.00359,32.52058],[-84.99893,32.50619],[-84.9965,32.50163],[-84.99886,32.49698],[-84.99833,32.49414],[-84.99672,32.49232],[-84.99538,32.48883],[-84.99483,32.48607],[-84.99493,32.48008],[-84.9953,32.47735],[-84.99525,32.47527],[-84.99819,32.46994],[-84.99851,32.46875],[-84.99795,32.46166],[-84.99473,32.45218],[-84.98352,32.44577],[-84.9726,32.44315],[-84.96819,32.43821],[-84.96261,32.42309],[-84.97049,32.41703],[-84.97966,32.41229],[-84.98065,32.40631],[-84.97984,32.40019],[-84.97375,32.39555],[-84.96947,32.39482],[-84.96767,32.39191],[-84.97094,32.38969],[-84.97482,32.39083],[-84.98508,32.39057],[-84.98842,32.38345],[-84.98536,32.38053],[-84.97446,32.3809],[-84.97083,32.37781],[-84.97381,32.37379],[-84.98219,32.3736],[-84.98487,32.37265],[-84.98566,32.3687],[-84.98295,32.364],[-84.98463,32.36075],[-84.99181,32.35388],[-84.99826,32.3497],[-85.00439,32.34462],[-85.00717,32.33634],[-85.00615,32.32706],[-85.00273,32.32314],[-84.98739,32.31856],[-84.96135,32.30865],[-84.9413,32.30261],[-84.93446,32.29889],[-84.92154,32.28453],[-84.91173,32.27743],[-84.90381,32.27395],[-84.89556,32.26656],[-84.8878,32.26037],[-84.89095,32.25693],[-84.89845,32.25876],[-84.9024,32.25727],[-84.90386,32.25117],[-84.90789,32.24851],[-84.92042,32.25017],[-84.92179,32.24594],[-84.91345,32.24444],[-84.91567,32.2378],[-84.92321,32.23131],[-84.92301,32.22457],[-84.92828,32.21937],[-84.93853,32.21784],[-84.95856,32.21775],[-84.96841,32.21919],[-84.97545,32.21589],[-84.98065,32.20929],[-84.97929,32.20698],[-84.97552,32.2038],[-84.96678,32.2047],[-84.96181,32.20007],[-84.96358,32.1955],[-84.97513,32.19108],[-85.00007,32.18308],[-85.01016,32.1811],[-85.0153,32.17511],[-85.02598,32.16582],[-85.03463,32.15537],[-85.04664,32.14223],[-85.05803,32.13605],[-85.06205,32.13243],[-85.05942,32.1274],[-85.05285,32.10486],[-85.04519,32.08755],[-85.05306,32.08136],[-85.05596,32.05191],[-85.05772,32.03226],[-85.05056,32.02368],[-85.05492,32.01237],[-85.06358,32.00295],[-85.0682,31.98745],[-85.0673,31.97305],[-85.11283,31.91416],[-85.13983,31.84594],[-85.11264,31.71025],[-85.06592,31.62484],[-85.06448,31.62383],[-85.05884,31.62177],[-85.05721,31.6181],[-85.06022,31.60903],[-85.05576,31.60535],[-85.05741,31.59463],[-85.05803,31.58369],[-85.05476,31.57842],[-85.05759,31.57108],[-85.05236,31.56265],[-85.05023,31.55568],[-85.0408,31.54378],[-85.04049,31.5396],[-85.04778,31.52597],[-85.04371,31.51982],[-85.0563,31.50046],[-85.06073,31.48935],[-85.06465,31.48475],[-85.0712,31.46838],[-85.06903,31.45964],[-85.06874,31.45298],[-85.06628,31.44765],[-85.06521,31.43076],[-85.06779,31.42703],[-85.07453,31.4277],[-85.0759,31.41675],[-85.07968,31.41035],[-85.07659,31.40253],[-85.07775,31.39742],[-85.07985,31.39415],[-85.08151,31.3859],[-85.08442,31.37981],[-85.08792,31.37161],[-85.0922,31.3637],[-85.09205,31.35575],[-85.08555,31.35407],[-85.08652,31.34045],[-85.08881,31.3346],[-85.08377,31.32878],[-85.08341,31.31759],[-85.0874,31.31073],[-85.08746,31.30376],[-85.08975,31.29348],[-85.09775,31.28407],[-85.11158,31.28082],[-85.11443,31.27727],[-85.11175,31.27396],[-85.11214,31.2618],[-85.1088,31.25398],[-85.10301,31.24105],[-85.0967,31.22813],[-85.09852,31.21123],[-85.10643,31.20283],[-85.10722,31.19332],[-85.10693,31.18626],[-85.10193,31.18523],[-85.09822,31.18009],[-85.10007,31.16597],[-85.09196,31.16106],[-85.07866,31.15887],[-85.06317,31.1419],[-85.05975,31.13148],[-85.05366,31.12084],[-85.04822,31.11844],[-85.04311,31.11355],[-85.03514,31.10889],[-85.03399,31.10374],[-85.02993,31.09808],[-85.02536,31.08402],[-85.02792,31.075],[-85.0172,31.05926],[-85.01147,31.05492],[-85.00815,31.04653],[-85.00881,31.03269],[-85.00449,31.02512],[-85.00389,31.01919],[-84.99841,31.01331],[-85.00237,31.00068],[-85.21683,31.00048],[-85.4052,30.99792],[-86.08544,30.99281],[-86.28687,30.99436],[-86.63237,30.99513],[-87.01632,30.99944],[-87.59884,30.99745],[-87.59884,30.99739],[-87.59871,30.99723],[-87.59862,30.99706],[-87.59865,30.99681],[-87.59884,30.99676],[-87.59899,30.99655],[-87.59901,30.9963],[-87.59862,30.99563],[-87.59859,30.9954],[-87.59872,30.99502],[-87.59823,30.99429],[-87.59812,30.99337],[-87.59819,30.99302],[-87.59773,30.99238],[-87.59761,30.99162],[-87.59735,30.99104],[-87.59718,30.99076],[-87.59671,30.99064],[-87.59641,30.98991],[-87.59676,30.9894],[-87.59677,30.98887],[-87.59654,30.98845],[-87.59649,30.98718],[-87.59624,30.98679],[-87.5959,30.98676],[-87.59563,30.98659],[-87.59553,30.98632],[-87.5951,30.98612],[-87.59474,30.98578],[-87.5947,30.98546],[-87.59505,30.98515],[-87.5951,30.98496],[-87.59481,30.98456],[-87.59447,30.98425],[-87.59375,30.98403],[-87.59363,30.98394],[-87.59332,30.98347],[-87.59313,30.98305],[-87.5931,30.98246],[-87.59287,30.98165],[-87.59286,30.98135],[-87.59309,30.98113],[-87.59323,30.98081],[-87.59312,30.98046],[-87.59294,30.98031],[-87.59249,30.98028],[-87.5923,30.98017],[-87.59224,30.97993],[-87.59249,30.97961],[-87.59252,30.97946],[-87.59249,30.97906],[-87.59281,30.97852],[-87.59287,30.97818],[-87.59319,30.97778],[-87.59348,30.97749],[-87.59354,30.97703],[-87.59332,30.97681],[-87.59318,30.97651],[-87.59355,30.97597],[-87.59351,30.97566],[-87.593,30.97535],[-87.59296,30.97465],[-87.59251,30.97391],[-87.59247,30.97334],[-87.59268,30.97288],[-87.59266,30.97266],[-87.59233,30.97233],[-87.59207,30.97181],[-87.59192,30.97125],[-87.59194,30.9709],[-87.59165,30.97016],[-87.59117,30.96991],[-87.59091,30.96965],[-87.59062,30.96909],[-87.59048,30.96864],[-87.59036,30.96798],[-87.59004,30.96753],[-87.58999,30.96724],[-87.58971,30.96693],[-87.5893,30.96663],[-87.58906,30.96626],[-87.58886,30.96575],[-87.5888,30.9653],[-87.5889,30.96449],[-87.58867,30.96414],[-87.58868,30.96381],[-87.5889,30.96329],[-87.58891,30.9627],[-87.58914,30.96194],[-87.58893,30.96132],[-87.58952,30.96079],[-87.58974,30.96015],[-87.58995,30.95997],[-87.59003,30.95973],[-87.58988,30.95889],[-87.59043,30.95813],[-87.5905,30.95784],[-87.59086,30.95752],[-87.59119,30.95712],[-87.59137,30.95638],[-87.59139,30.9551],[-87.59093,30.95382],[-87.59093,30.95351],[-87.5911,30.95312],[-87.59138,30.95279],[-87.59184,30.95255],[-87.59187,30.95229],[-87.59166,30.95191],[-87.59161,30.95167],[-87.59176,30.95132],[-87.592,30.95121],[-87.59265,30.95117],[-87.59305,30.95093],[-87.59349,30.95035],[-87.59418,30.94988],[-87.59421,30.94972],[-87.59391,30.94945],[-87.59381,30.9491],[-87.59382,30.94868],[-87.5939,30.94837],[-87.5939,30.94804],[-87.59443,30.94684],[-87.5945,30.94635],[-87.59486,30.94569],[-87.59501,30.9446],[-87.59545,30.94338],[-87.59572,30.94287],[-87.59584,30.94243],[-87.59601,30.94198],[-87.5965,30.94152],[-87.59689,30.94056],[-87.59775,30.93926],[-87.59791,30.93899],[-87.59802,30.93835],[-87.59842,30.93806],[-87.59936,30.93795],[-87.59971,30.93781],[-87.60096,30.93638],[-87.60117,30.93595],[-87.60168,30.93573],[-87.60178,30.9355],[-87.60174,30.93508],[-87.60199,30.93473],[-87.60209,30.93439],[-87.6031,30.93253],[-87.60307,30.93227],[-87.60277,30.93175],[-87.60284,30.93157],[-87.603,30.93144],[-87.60329,30.93131],[-87.60351,30.93112],[-87.60351,30.93085],[-87.60364,30.93065],[-87.60386,30.93054],[-87.6042,30.93003],[-87.6045,30.92919],[-87.60489,30.92889],[-87.60487,30.92842],[-87.60504,30.92814],[-87.60527,30.92802],[-87.60535,30.92765],[-87.60545,30.92742],[-87.60577,30.92719],[-87.60583,30.92703],[-87.60582,30.92662],[-87.6066,30.92524],[-87.60694,30.92524],[-87.60726,30.92471],[-87.60743,30.92389],[-87.60751,30.92293],[-87.60769,30.92253],[-87.60774,30.92222],[-87.60766,30.92172],[-87.6083,30.92075],[-87.60829,30.92015],[-87.60843,30.91975],[-87.60912,30.91915],[-87.60963,30.91805],[-87.60994,30.91717],[-87.60989,30.91676],[-87.60993,30.91652],[-87.61018,30.91627],[-87.61057,30.91602],[-87.61068,30.91546],[-87.61092,30.9151],[-87.61134,30.91487],[-87.61149,30.91468],[-87.6117,30.91403],[-87.61201,30.91372],[-87.61221,30.91339],[-87.6123,30.91299],[-87.61228,30.9108],[-87.61254,30.91024],[-87.61274,30.90999],[-87.61297,30.90945],[-87.61329,30.90906],[-87.61402,30.90845],[-87.61411,30.90824],[-87.61412,30.90799],[-87.61385,30.90764],[-87.61385,30.90746],[-87.61435,30.90692],[-87.61432,30.90653],[-87.61439,30.90614],[-87.61462,30.90587],[-87.61511,30.90553],[-87.61528,30.90518],[-87.6151,30.90499],[-87.61473,30.90485],[-87.61461,30.90456],[-87.61441,30.90444],[-87.6144,30.90412],[-87.61477,30.90385],[-87.61526,30.90368],[-87.61535,30.90353],[-87.61526,30.90314],[-87.61527,30.90278],[-87.61545,30.90209],[-87.61569,30.90159],[-87.61629,30.90099],[-87.61733,30.90009],[-87.61781,30.89989],[-87.61843,30.89997],[-87.61861,30.89988],[-87.61884,30.8992],[-87.61896,30.89912],[-87.61922,30.89909],[-87.61974,30.89925],[-87.61993,30.89927],[-87.62018,30.89907],[-87.62034,30.89867],[-87.62058,30.89841],[-87.62089,30.8983],[-87.62104,30.8982],[-87.62109,30.89804],[-87.62185,30.89768],[-87.62184,30.89728],[-87.62174,30.89704],[-87.62214,30.89676],[-87.62212,30.89661],[-87.62162,30.8965],[-87.62126,30.89624],[-87.62123,30.89602],[-87.62091,30.89572],[-87.62086,30.89547],[-87.62093,30.8953],[-87.6211,30.89509],[-87.62134,30.89507],[-87.62169,30.89513],[-87.62191,30.89508],[-87.6222,30.89486],[-87.62225,30.89458],[-87.62203,30.89425],[-87.62202,30.89359],[-87.62176,30.89248],[-87.62152,30.89225],[-87.62126,30.89214],[-87.62119,30.89144],[-87.62077,30.89067],[-87.62072,30.89064],[-87.62042,30.89],[-87.62043,30.88944],[-87.62056,30.889],[-87.62054,30.88867],[-87.62034,30.88827],[-87.62035,30.88808],[-87.62065,30.8878],[-87.62061,30.88766],[-87.62043,30.88759],[-87.62026,30.8874],[-87.62055,30.88703],[-87.62098,30.887],[-87.62107,30.88688],[-87.6209,30.88665],[-87.62111,30.88652],[-87.62103,30.88625],[-87.62115,30.8861],[-87.62115,30.88588],[-87.62129,30.88582],[-87.62148,30.8855],[-87.62196,30.88542],[-87.62217,30.88526],[-87.62218,30.88504],[-87.62226,30.88489],[-87.62288,30.88488],[-87.62319,30.88464],[-87.62437,30.88452],[-87.62467,30.88437],[-87.62469,30.88425],[-87.62425,30.8841],[-87.62451,30.88382],[-87.62469,30.88376],[-87.62539,30.88382],[-87.62557,30.88375],[-87.62598,30.8833],[-87.62616,30.8827],[-87.62654,30.88215],[-87.62696,30.88177],[-87.62753,30.88159],[-87.62824,30.88069],[-87.62913,30.88041],[-87.6293,30.87997],[-87.62943,30.87986],[-87.62942,30.87955],[-87.62958,30.87937],[-87.62961,30.87891],[-87.62946,30.87874],[-87.62947,30.87864],[-87.62958,30.87862],[-87.62964,30.87846],[-87.6296,30.87822],[-87.62992,30.87767],[-87.63008,30.87729],[-87.63019,30.87622],[-87.63046,30.8759],[-87.63053,30.87556],[-87.63066,30.8754],[-87.63101,30.87483],[-87.63101,30.87455],[-87.63115,30.8743],[-87.63123,30.87384],[-87.63142,30.87339],[-87.63168,30.87301],[-87.63188,30.87287],[-87.63202,30.87259],[-87.63204,30.87236],[-87.63169,30.87232],[-87.63185,30.87214],[-87.63206,30.87188],[-87.6322,30.87179],[-87.63226,30.8718],[-87.63232,30.87176],[-87.63239,30.87168],[-87.63241,30.87138],[-87.63256,30.87129],[-87.63276,30.87125],[-87.63288,30.8712],[-87.63292,30.87108],[-87.6329,30.86989],[-87.63314,30.86936],[-87.63314,30.86927],[-87.63312,30.86917],[-87.63303,30.86899],[-87.63308,30.8688],[-87.63338,30.86845],[-87.63374,30.86827],[-87.63389,30.86811],[-87.63409,30.86782],[-87.63424,30.86765],[-87.63432,30.86743],[-87.63455,30.86698],[-87.63479,30.86671],[-87.63486,30.86653],[-87.6349,30.86625],[-87.63463,30.86547],[-87.63368,30.86514],[-87.63371,30.8647],[-87.63288,30.86459],[-87.63234,30.86426],[-87.63219,30.86381],[-87.63182,30.8636],[-87.63188,30.86314],[-87.6315,30.86304],[-87.63152,30.8622],[-87.63084,30.86225],[-87.6304,30.86213],[-87.63001,30.86135],[-87.62889,30.86051],[-87.62852,30.86007],[-87.62784,30.86019],[-87.62772,30.85977],[-87.62718,30.85914],[-87.62671,30.85774],[-87.62603,30.8575],[-87.62603,30.85641],[-87.62568,30.85568],[-87.626,30.8551],[-87.62496,30.85461],[-87.62546,30.85349],[-87.62546,30.853],[-87.6259,30.85274],[-87.626,30.85095],[-87.6264,30.85062],[-87.62637,30.84982],[-87.62695,30.84949],[-87.62711,30.84894],[-87.62684,30.84852],[-87.62704,30.84811],[-87.62651,30.84713],[-87.62617,30.84713],[-87.62619,30.84669],[-87.62561,30.84637],[-87.62535,30.84596],[-87.62481,30.84615],[-87.6243,30.84573],[-87.62376,30.84579],[-87.62284,30.84443],[-87.62243,30.84436],[-87.62241,30.84385],[-87.62164,30.84319],[-87.62127,30.84323],[-87.62101,30.84307],[-87.62121,30.84277],[-87.62037,30.84221],[-87.62025,30.8419],[-87.61972,30.84183],[-87.61931,30.84162],[-87.61909,30.84196],[-87.6189,30.84184],[-87.61894,30.84116],[-87.61829,30.84096],[-87.61794,30.84066],[-87.61702,30.84028],[-87.61717,30.83968],[-87.61617,30.83887],[-87.61623,30.83799],[-87.61539,30.83763],[-87.61553,30.8372],[-87.61493,30.83641],[-87.6152,30.83604],[-87.61504,30.83542],[-87.61577,30.83509],[-87.61522,30.83417],[-87.61402,30.83421],[-87.612,30.83323],[-87.61149,30.83341],[-87.61032,30.83247],[-87.60945,30.83283],[-87.6087,30.83264],[-87.60834,30.83222],[-87.60653,30.83126],[-87.60547,30.83098],[-87.60528,30.83135],[-87.60476,30.83115],[-87.60439,30.83148],[-87.60277,30.82909],[-87.60311,30.82892],[-87.60302,30.82808],[-87.6027,30.82741],[-87.60324,30.82662],[-87.60206,30.82622],[-87.60215,30.82552],[-87.60148,30.82526],[-87.6008,30.82124],[-87.6002,30.82053],[-87.59928,30.82031],[-87.59784,30.81886],[-87.59654,30.81814],[-87.59604,30.81831],[-87.59549,30.81765],[-87.5941,30.81749],[-87.59437,30.81698],[-87.59369,30.81694],[-87.59348,30.81633],[-87.59305,30.81642],[-87.59267,30.81602],[-87.59102,30.81605],[-87.59056,30.81581],[-87.59021,30.81591],[-87.58916,30.81516],[-87.58805,30.81502],[-87.58784,30.8149],[-87.58758,30.81522],[-87.58729,30.81516],[-87.58723,30.81443],[-87.58691,30.81451],[-87.58682,30.8139],[-87.58537,30.81356],[-87.58508,30.81369],[-87.58421,30.8132],[-87.58379,30.81356],[-87.58346,30.81282],[-87.58193,30.81261],[-87.58179,30.81229],[-87.58097,30.8118],[-87.58104,30.81132],[-87.58016,30.81125],[-87.58027,30.81077],[-87.57951,30.81085],[-87.57822,30.80901],[-87.57717,30.80878],[-87.57653,30.80792],[-87.57665,30.80681],[-87.5762,30.80643],[-87.57575,30.80646],[-87.57456,30.8052],[-87.57468,30.80469],[-87.57421,30.80338],[-87.57339,30.80278],[-87.57227,30.80239],[-87.57267,30.80131],[-87.57189,30.801],[-87.57193,30.80021],[-87.57111,30.80013],[-87.57046,30.80057],[-87.57016,30.80006],[-87.56985,30.80003],[-87.56952,30.80045],[-87.56823,30.8001],[-87.56787,30.79944],[-87.56809,30.79868],[-87.56757,30.79805],[-87.567,30.79809],[-87.5663,30.79735],[-87.56544,30.79673],[-87.56505,30.79683],[-87.56449,30.79634],[-87.56384,30.79628],[-87.56366,30.79573],[-87.56304,30.79534],[-87.56262,30.79479],[-87.5626,30.79449],[-87.56122,30.79343],[-87.56088,30.79296],[-87.56116,30.79237],[-87.56008,30.79212],[-87.55965,30.79138],[-87.5589,30.79114],[-87.55918,30.7905],[-87.55804,30.7902],[-87.55706,30.79017],[-87.55743,30.7892],[-87.55669,30.78897],[-87.55634,30.7883],[-87.55531,30.78813],[-87.55467,30.78764],[-87.55437,30.78701],[-87.55318,30.78707],[-87.55143,30.78576],[-87.55152,30.78472],[-87.55077,30.78432],[-87.55127,30.78304],[-87.55022,30.78118],[-87.54954,30.78094],[-87.54874,30.78143],[-87.54801,30.78064],[-87.54736,30.78096],[-87.54705,30.77995],[-87.54543,30.77948],[-87.54469,30.77827],[-87.54493,30.77764],[-87.546,30.77715],[-87.54489,30.7766],[-87.5452,30.77541],[-87.5453,30.77445],[-87.54605,30.77252],[-87.54593,30.77176],[-87.54441,30.77166],[-87.54417,30.77038],[-87.54047,30.76579],[-87.54009,30.7647],[-87.53928,30.76386],[-87.53696,30.76297],[-87.53679,30.76182],[-87.53619,30.76151],[-87.53604,30.76045],[-87.53563,30.75977],[-87.53569,30.75901],[-87.53525,30.75827],[-87.53544,30.75771],[-87.53526,30.75689],[-87.5352,30.75522],[-87.53451,30.75467],[-87.53428,30.75364],[-87.53447,30.75265],[-87.53532,30.75226],[-87.53518,30.74948],[-87.53375,30.74851],[-87.53313,30.74699],[-87.5317,30.74594],[-87.53265,30.74483],[-87.53248,30.74314],[-87.53098,30.74319],[-87.52946,30.74245],[-87.53023,30.74133],[-87.52992,30.74088],[-87.52865,30.74101],[-87.52773,30.74047],[-87.5262,30.74044],[-87.52516,30.73901],[-87.52406,30.73861],[-87.52283,30.73765],[-87.5203,30.73744],[-87.51949,30.73642],[-87.51846,30.73602],[-87.5173,30.73427],[-87.51543,30.73441],[-87.5148,30.73301],[-87.51378,30.73327],[-87.51268,30.73319],[-87.51202,30.73369],[-87.51157,30.73317],[-87.51053,30.7328],[-87.51067,30.73185],[-87.50956,30.73116],[-87.50895,30.72953],[-87.50895,30.72815],[-87.50779,30.72783],[-87.50702,30.72706],[-87.50506,30.72619],[-87.50519,30.72567],[-87.50605,30.72511],[-87.50325,30.72386],[-87.50301,30.72215],[-87.50224,30.72134],[-87.50057,30.72111],[-87.49935,30.7207],[-87.49828,30.72099],[-87.49792,30.71993],[-87.49696,30.7202],[-87.49445,30.71967],[-87.49402,30.71988],[-87.49291,30.71975],[-87.49251,30.72044],[-87.4919,30.71994],[-87.49157,30.71893],[-87.49051,30.71899],[-87.48965,30.71874],[-87.48854,30.71751],[-87.48742,30.71836],[-87.48657,30.71813],[-87.48581,30.71749],[-87.48458,30.71709],[-87.48443,30.71561],[-87.48341,30.71539],[-87.48286,30.71653],[-87.48222,30.71715],[-87.48127,30.71708],[-87.48124,30.71644],[-87.47972,30.71474],[-87.47808,30.71344],[-87.4783,30.71258],[-87.47971,30.7127],[-87.48028,30.71175],[-87.47915,30.70945],[-87.47746,30.70999],[-87.47514,30.70904],[-87.47518,30.70855],[-87.4756,30.70806],[-87.47434,30.70653],[-87.4761,30.70568],[-87.47588,30.70519],[-87.47516,30.70519],[-87.4727,30.70441],[-87.47272,30.70564],[-87.47225,30.70562],[-87.47121,30.70517],[-87.47008,30.7051],[-87.46953,30.70469],[-87.46961,30.70302],[-87.46826,30.70242],[-87.46763,30.70103],[-87.46831,30.70035],[-87.46767,30.70001],[-87.46654,30.7007],[-87.46498,30.70049],[-87.4634,30.70053],[-87.46225,30.70013],[-87.46174,30.69977],[-87.4611,30.69965],[-87.45997,30.69827],[-87.4588,30.698],[-87.45812,30.69633],[-87.45659,30.6976],[-87.45513,30.69785],[-87.45369,30.69876],[-87.45254,30.69817],[-87.45192,30.69835],[-87.45165,30.69933],[-87.45134,30.6995],[-87.45067,30.69891],[-87.44931,30.69883],[-87.44872,30.69773],[-87.44879,30.6971],[-87.44857,30.69662],[-87.44799,30.69638],[-87.44728,30.69574],[-87.44627,30.69566],[-87.44574,30.69522],[-87.44377,30.69459],[-87.44262,30.69274],[-87.4403,30.69034],[-87.43751,30.68961],[-87.43634,30.68881],[-87.43583,30.68827],[-87.4329,30.68833],[-87.43186,30.68764],[-87.43044,30.6882],[-87.43009,30.68817],[-87.42987,30.68654],[-87.428,30.68609],[-87.42769,30.68442],[-87.42701,30.68376],[-87.42647,30.68283],[-87.42495,30.68337],[-87.42233,30.68216],[-87.42188,30.68092],[-87.42027,30.6809],[-87.41927,30.67965],[-87.41903,30.67845],[-87.41775,30.67815],[-87.41704,30.67936],[-87.4163,30.67884],[-87.41494,30.67825],[-87.41221,30.67776],[-87.40918,30.67636],[-87.40797,30.67549],[-87.40655,30.67506],[-87.40643,30.67427],[-87.40752,30.67189],[-87.40588,30.67102],[-87.406,30.66923],[-87.40538,30.66784],[-87.40576,30.66647],[-87.40355,30.66585],[-87.40264,30.66487],[-87.40318,30.6638],[-87.40332,30.66274],[-87.40221,30.66104],[-87.40231,30.6602],[-87.4028,30.6597],[-87.4033,30.65813],[-87.40306,30.65732],[-87.40256,30.65695],[-87.40171,30.65677],[-87.40092,30.65614],[-87.40042,30.65719],[-87.40005,30.65706],[-87.39987,30.65585],[-87.3986,30.65635],[-87.39663,30.65454],[-87.39656,30.65228],[-87.3958,30.6504],[-87.39696,30.64849],[-87.39692,30.64797],[-87.39432,30.64546],[-87.39571,30.64495],[-87.39572,30.64409],[-87.39494,30.64262],[-87.39402,30.64182],[-87.39434,30.64005],[-87.39426,30.63814],[-87.3945,30.6372],[-87.39517,30.63618],[-87.39516,30.63537],[-87.39404,30.63376],[-87.39442,30.6334],[-87.39545,30.63322],[-87.39566,30.63286],[-87.39446,30.63184],[-87.39352,30.63152],[-87.39344,30.63022],[-87.39367,30.62922],[-87.39347,30.6287],[-87.39333,30.62745],[-87.39355,30.62683],[-87.3938,30.62577],[-87.3943,30.62509],[-87.39456,30.62422],[-87.39599,30.62417],[-87.39601,30.62381],[-87.39514,30.62347],[-87.39527,30.62267],[-87.39504,30.62211],[-87.39533,30.62134],[-87.39531,30.62048],[-87.39599,30.62004],[-87.39582,30.61865],[-87.39654,30.61701],[-87.39611,30.61633],[-87.39495,30.61622],[-87.39471,30.6158],[-87.39466,30.61512],[-87.39502,30.61385],[-87.39649,30.61095],[-87.39657,30.60902],[-87.39721,30.60828],[-87.39772,30.60735],[-87.39836,30.60652],[-87.39886,30.60546],[-87.39992,30.60606],[-87.40037,30.60607],[-87.40346,30.60529],[-87.40357,30.60479],[-87.40322,30.60387],[-87.40347,30.60336],[-87.40441,30.60292],[-87.4058,30.60336],[-87.4062,30.60322],[-87.40614,30.60249],[-87.40562,30.60159],[-87.4067,30.60184],[-87.40759,30.60086],[-87.4076,30.60028],[-87.407,30.59982],[-87.40587,30.60008],[-87.40523,30.59879],[-87.40628,30.59837],[-87.40608,30.59797],[-87.40551,30.59773],[-87.40549,30.59739],[-87.40739,30.59599],[-87.40707,30.59495],[-87.40684,30.59341],[-87.40711,30.5924],[-87.40785,30.5912],[-87.4077,30.58968],[-87.40825,30.5886],[-87.40801,30.5883],[-87.40734,30.58808],[-87.40762,30.58758],[-87.40935,30.58583],[-87.40858,30.58486],[-87.40802,30.58384],[-87.40916,30.58305],[-87.40932,30.58199],[-87.41022,30.58088],[-87.41103,30.58042],[-87.41078,30.57955],[-87.40995,30.57988],[-87.40984,30.57931],[-87.41047,30.57874],[-87.41075,30.57815],[-87.41176,30.57797],[-87.41152,30.57718],[-87.41175,30.57632],[-87.41204,30.57638],[-87.41213,30.57691],[-87.41231,30.57712],[-87.41254,30.57703],[-87.41255,30.57656],[-87.41175,30.5754],[-87.41195,30.5741],[-87.41311,30.57298],[-87.41362,30.57295],[-87.41377,30.57349],[-87.41416,30.57355],[-87.41464,30.57247],[-87.41523,30.57273],[-87.41594,30.57256],[-87.41638,30.57191],[-87.41622,30.57114],[-87.41654,30.57062],[-87.41709,30.5707],[-87.41707,30.56993],[-87.41757,30.5698],[-87.41843,30.57022],[-87.4181,30.56931],[-87.4175,30.56875],[-87.41743,30.56807],[-87.41656,30.56787],[-87.41677,30.56681],[-87.41627,30.56634],[-87.41617,30.56612],[-87.4169,30.56579],[-87.41728,30.56533],[-87.41736,30.56466],[-87.41761,30.5646],[-87.41807,30.56509],[-87.41834,30.5649],[-87.41796,30.56394],[-87.41833,30.56307],[-87.41795,30.56216],[-87.41853,30.56197],[-87.41898,30.56145],[-87.41953,30.56132],[-87.4209,30.56049],[-87.42145,30.56102],[-87.42168,30.56103],[-87.42181,30.56016],[-87.42218,30.56011],[-87.42221,30.56078],[-87.42311,30.56151],[-87.42336,30.56087],[-87.42403,30.5609],[-87.42391,30.56043],[-87.42417,30.55967],[-87.4246,30.55965],[-87.42509,30.56032],[-87.42537,30.56029],[-87.42583,30.55925],[-87.4264,30.55892],[-87.42634,30.55748],[-87.42563,30.55711],[-87.42648,30.55609],[-87.42681,30.55673],[-87.42704,30.55674],[-87.42727,30.55567],[-87.42697,30.55514],[-87.42753,30.5538],[-87.42926,30.55191],[-87.43068,30.5509],[-87.43102,30.55007],[-87.4321,30.54976],[-87.43505,30.54927],[-87.4349,30.54787],[-87.43534,30.54741],[-87.43516,30.54628],[-87.43593,30.54613],[-87.43616,30.54557],[-87.43619,30.54497],[-87.43654,30.54485],[-87.43681,30.5437],[-87.43661,30.54368],[-87.43625,30.54413],[-87.43523,30.54387],[-87.43541,30.54267],[-87.43642,30.54297],[-87.43675,30.54276],[-87.43696,30.54228],[-87.43743,30.54186],[-87.43649,30.54157],[-87.43648,30.5413],[-87.43669,30.54103],[-87.4369,30.54017],[-87.43795,30.5401],[-87.43847,30.54028],[-87.43928,30.5394],[-87.43967,30.5394],[-87.43969,30.54011],[-87.44,30.54011],[-87.44058,30.53877],[-87.43981,30.53832],[-87.44008,30.53796],[-87.44132,30.53754],[-87.44161,30.53721],[-87.4409,30.53653],[-87.44021,30.53265],[-87.4406,30.53173],[-87.44026,30.5312],[-87.43918,30.53097],[-87.43893,30.53027],[-87.44147,30.52968],[-87.44207,30.53013],[-87.44208,30.53111],[-87.44298,30.53164],[-87.44404,30.53131],[-87.44423,30.53089],[-87.4442,30.53028],[-87.44362,30.53],[-87.44293,30.53009],[-87.44265,30.52993],[-87.4436,30.52815],[-87.44429,30.52772],[-87.44452,30.52879],[-87.44501,30.52891],[-87.44563,30.52832],[-87.44591,30.52741],[-87.44628,30.52725],[-87.44751,30.52732],[-87.44799,30.52679],[-87.4482,30.525],[-87.44703,30.52497],[-87.44699,30.52545],[-87.44732,30.52594],[-87.4471,30.52643],[-87.4464,30.52643],[-87.4457,30.52623],[-87.44524,30.52571],[-87.44478,30.52459],[-87.4435,30.52372],[-87.44395,30.52347],[-87.44513,30.52371],[-87.44659,30.5229],[-87.44739,30.5219],[-87.44697,30.52095],[-87.44617,30.51971],[-87.44537,30.51711],[-87.44676,30.51675],[-87.44716,30.51638],[-87.44716,30.51492],[-87.44683,30.5146],[-87.44521,30.51564],[-87.44455,30.51529],[-87.44449,30.5143],[-87.44498,30.51366],[-87.44715,30.51368],[-87.44825,30.51487],[-87.44946,30.51516],[-87.44996,30.51461],[-87.44806,30.51321],[-87.44752,30.51025],[-87.44336,30.50676],[-87.43942,30.50661],[-87.4362,30.50239],[-87.43058,30.49729],[-87.43183,30.494],[-87.43122,30.49168],[-87.4282,30.48848],[-87.42934,30.48727],[-87.43176,30.48828],[-87.4342,30.48772],[-87.43295,30.48338],[-87.43591,30.48045],[-87.43432,30.47882],[-87.43051,30.47649],[-87.42952,30.4703],[-87.42088,30.4624],[-87.41355,30.45734],[-87.40434,30.45242],[-87.37129,30.44871],[-87.36639,30.43327],[-87.43137,30.40385],[-87.45754,30.33563],[-87.50509,30.32303],[-87.50405,30.30257],[-87.45008,30.31111],[-87.45238,30.30019],[-87.5184,30.28385],[-87.51839,30.22963],[-87.5,30],[-87.5,24.74534],[-85.93506,24.55327],[-79.5,24],[-79.5,28]]]}},{"type":"Feature","properties":{"cq_zone_name":"Southern Zone of North America","cq_zone_number":6,"cq_zone_name_loc":[25.5,-115]},"geometry":{"type":"Polygon","coordinates":[[[-93,14],[-130,14],[-130,32.5],[-120,32.5],[-117.12486,32.53404],[-116.86076,32.55709],[-116.53348,32.5839],[-116.23943,32.60782],[-115.94434,32.63116],[-115.33271,32.67639],[-114.7197,32.71873],[-114.72209,32.71428],[-114.72273,32.71298],[-114.72356,32.71201],[-114.72431,32.71161],[-114.72529,32.71043],[-114.7269,32.70795],[-114.72826,32.70686],[-114.7301,32.70433],[-114.72973,32.70308],[-114.7298,32.70038],[-114.73018,32.69957],[-114.73047,32.69876],[-114.73682,32.68965],[-114.73756,32.68896],[-114.73812,32.68784],[-114.73907,32.68694],[-114.74006,32.68501],[-114.74062,32.68416],[-114.74271,32.68134],[-114.74441,32.67888],[-114.74485,32.67767],[-114.74503,32.67417],[-114.74539,32.67205],[-114.74637,32.66985],[-114.74781,32.66775],[-114.74821,32.66506],[-114.74789,32.66454],[-114.74799,32.66414],[-114.7495,32.6617],[-114.75109,32.65976],[-114.7532,32.65828],[-114.75823,32.65528],[-114.76133,32.65279],[-114.76494,32.64936],[-114.76496,32.64816],[-114.76342,32.64593],[-114.76334,32.64457],[-114.76429,32.6427],[-114.76619,32.64143],[-114.76809,32.63995],[-114.77197,32.63792],[-114.77518,32.63553],[-114.77925,32.63356],[-114.7812,32.63154],[-114.78175,32.6307],[-114.7823,32.63016],[-114.78256,32.62859],[-114.78174,32.62589],[-114.78195,32.62463],[-114.78298,32.62413],[-114.78409,32.62414],[-114.78508,32.62404],[-114.78547,32.62393],[-114.78778,32.62357],[-114.79062,32.62188],[-114.79268,32.62189],[-114.79413,32.62248],[-114.79559,32.6235],[-114.79757,32.62452],[-114.79923,32.62509],[-114.80005,32.6247],[-114.80086,32.6246],[-114.80197,32.62382],[-114.8065,32.6219],[-114.80742,32.62131],[-114.80872,32.61909],[-114.80942,32.61729],[-114.80962,32.61616],[-114.80921,32.61368],[-114.80897,32.613],[-114.80894,32.61157],[-114.80908,32.60862],[-114.80798,32.60603],[-114.80782,32.60495],[-114.80808,32.60358],[-114.80796,32.60277],[-114.80734,32.60226],[-114.8069,32.60138],[-114.80572,32.60058],[-114.80395,32.59999],[-114.80238,32.59937],[-114.80152,32.59866],[-114.8013,32.59766],[-114.80125,32.59622],[-114.80076,32.59542],[-114.79975,32.59404],[-114.79972,32.59237],[-114.80015,32.5902],[-114.80049,32.58802],[-114.80076,32.58766],[-114.80265,32.58533],[-114.80395,32.58278],[-114.8041,32.58145],[-114.80379,32.58072],[-114.80185,32.57919],[-114.80142,32.57825],[-114.80142,32.57725],[-114.80184,32.57606],[-114.80261,32.57459],[-114.80344,32.57363],[-114.80444,32.57296],[-114.80558,32.57234],[-114.80684,32.57197],[-114.8117,32.56969],[-114.81304,32.56874],[-114.81384,32.56706],[-114.81429,32.56369],[-114.81374,32.56131],[-114.81297,32.56],[-114.81031,32.55854],[-114.80885,32.5585],[-114.80678,32.55883],[-114.80497,32.55983],[-114.80368,32.56068],[-114.80136,32.56288],[-114.79765,32.56442],[-114.79533,32.56653],[-114.79481,32.56856],[-114.79399,32.56924],[-114.79318,32.56957],[-114.79241,32.56922],[-114.79207,32.56843],[-114.79229,32.56561],[-114.79294,32.56367],[-114.79298,32.5622],[-114.79153,32.55867],[-114.79158,32.55585],[-114.79374,32.5523],[-114.79557,32.551],[-114.80022,32.5493],[-114.80436,32.54782],[-114.80568,32.54667],[-114.80597,32.54541],[-114.80534,32.54358],[-114.80472,32.54147],[-114.80353,32.54084],[-114.802,32.53978],[-114.80193,32.53829],[-114.80212,32.53658],[-114.80258,32.53539],[-114.80496,32.53361],[-114.80639,32.53121],[-114.8077,32.53013],[-114.80875,32.52891],[-114.81041,32.52776],[-114.81084,32.52744],[-114.81102,32.52699],[-114.81153,32.52619],[-114.81265,32.52534],[-114.81327,32.52444],[-114.81341,32.52401],[-114.8128,32.52354],[-114.81081,32.52235],[-114.81005,32.52047],[-114.80999,32.51957],[-114.81044,32.51837],[-114.80964,32.51758],[-114.80778,32.51693],[-114.80396,32.5165],[-114.80241,32.51553],[-114.80193,32.51456],[-114.80226,32.513],[-114.80286,32.5118],[-114.80404,32.51035],[-114.8051,32.51008],[-114.80659,32.50923],[-114.80846,32.50846],[-114.81014,32.50838],[-114.81134,32.50878],[-114.8128,32.5091],[-114.81422,32.50909],[-114.81572,32.50864],[-114.81647,32.50781],[-114.81662,32.50706],[-114.81515,32.50604],[-114.81369,32.50422],[-114.81343,32.50178],[-114.81231,32.50007],[-114.81334,32.49865],[-114.81394,32.49725],[-114.81405,32.49677],[-114.81381,32.49608],[-114.81396,32.49527],[-114.81351,32.49425],[-114.78783,32.48672],[-114.75049,32.4755],[-114.68747,32.45645],[-114.56152,32.41814],[-114.30936,32.34167],[-113.80658,32.18735],[-113.31796,32.03325],[-112.44756,31.7662],[-111.76118,31.55213],[-111.0748,31.33221],[-110.56908,31.33301],[-110.06337,31.33338],[-109.55671,31.33411],[-109.28655,31.33389],[-109.1253,31.33268],[-109.05005,31.3325],[-109.05004,31.33224],[-108.20858,31.33339],[-108.20839,31.7836],[-106.53155,31.78388],[-106.52827,31.78324],[-106.52873,31.78168],[-106.51417,31.7702],[-106.50988,31.75998],[-106.50568,31.76042],[-106.50216,31.75677],[-106.48705,31.74699],[-106.4716,31.75028],[-106.46782,31.75882],[-106.45306,31.76437],[-106.43624,31.75532],[-106.42079,31.7521],[-106.39435,31.73926],[-106.38062,31.73196],[-106.37341,31.71414],[-106.34938,31.69604],[-106.33461,31.66331],[-106.30269,31.62122],[-106.29342,31.59462],[-106.2838,31.5718],[-106.28071,31.56215],[-106.24878,31.54401],[-106.24638,31.54167],[-106.23711,31.51328],[-106.22441,31.49982],[-106.21926,31.4805],[-106.2045,31.46469],[-106.17531,31.45444],[-106.1578,31.43774],[-106.13137,31.42514],[-106.11145,31.42368],[-106.0809,31.39877],[-106.00434,31.39233],[-105.96966,31.36565],[-105.95456,31.36565],[-105.94597,31.35393],[-105.94838,31.34073],[-105.93842,31.31844],[-105.93361,31.31375],[-105.92469,31.31228],[-105.90889,31.31375],[-105.89619,31.29116],[-105.87594,31.29204],[-105.86976,31.28911],[-105.85465,31.27268],[-105.83628,31.24714],[-105.81268,31.2238],[-105.79388,31.20164],[-105.78358,31.1987],[-105.7798,31.18989],[-105.78015,31.18225],[-105.77603,31.17638],[-105.77328,31.16727],[-105.76401,31.16404],[-105.74341,31.16581],[-105.71938,31.14935],[-105.71698,31.14259],[-105.71183,31.13789],[-105.64797,31.11556],[-105.64179,31.09851],[-105.62806,31.09851],[-105.6078,31.08645],[-105.60162,31.07822],[-105.59681,31.06558],[-105.58583,31.05793],[-105.5793,31.0344],[-105.58136,31.02763],[-105.57896,31.02028],[-105.57141,31.0191],[-105.56969,31.01675],[-105.57038,31.00851],[-105.55665,30.98835],[-105.54223,30.98526],[-105.5333,30.98585],[-105.52643,30.9776],[-105.523,30.97643],[-105.51545,30.96524],[-105.50309,30.96818],[-105.49416,30.957],[-105.49622,30.95582],[-105.49897,30.95111],[-105.49485,30.94993],[-105.48867,30.94404],[-105.4921,30.94345],[-105.48935,30.94169],[-105.48729,30.94286],[-105.48111,30.94051],[-105.47768,30.93756],[-105.47631,30.93462],[-105.47081,30.93403],[-105.4715,30.93226],[-105.46807,30.92991],[-105.46669,30.92461],[-105.46463,30.92637],[-105.45296,30.92578],[-105.45228,30.92107],[-105.45502,30.9193],[-105.45296,30.91636],[-105.44747,30.92048],[-105.44472,30.91813],[-105.44541,30.91577],[-105.44198,30.90988],[-105.42893,30.90517],[-105.4255,30.90163],[-105.41314,30.90045],[-105.41176,30.89161],[-105.41245,30.88867],[-105.40421,30.8922],[-105.3994,30.88867],[-105.3994,30.8869],[-105.39803,30.88572],[-105.40421,30.88042],[-105.3994,30.87688],[-105.39254,30.87688],[-105.39185,30.87394],[-105.3946,30.87158],[-105.39528,30.8592],[-105.40215,30.85566],[-105.39528,30.84977],[-105.38842,30.85331],[-105.3685,30.84918],[-105.36301,30.84977],[-105.36026,30.84741],[-105.3534,30.84387],[-105.35408,30.83857],[-105.35271,30.83621],[-105.3479,30.83975],[-105.33967,30.84034],[-105.33761,30.83385],[-105.32799,30.83149],[-105.33211,30.82678],[-105.32937,30.82619],[-105.31838,30.82913],[-105.31838,30.82383],[-105.31563,30.81852],[-105.31838,30.81262],[-105.31701,30.81085],[-105.31014,30.81557],[-105.30808,30.8138],[-105.30877,30.81262],[-105.30877,30.81027],[-105.30602,30.81027],[-105.30053,30.82029],[-105.30121,30.82383],[-105.29091,30.82619],[-105.28748,30.81852],[-105.28199,30.81734],[-105.27581,30.8085],[-105.26894,30.8085],[-105.26619,30.80555],[-105.26207,30.79788],[-105.25658,30.79493],[-105.2298,30.80437],[-105.2298,30.80024],[-105.22706,30.79847],[-105.21744,30.80555],[-105.2147,30.80496],[-105.21332,30.80083],[-105.20989,30.79729],[-105.21264,30.79316],[-105.21813,30.79375],[-105.22088,30.78785],[-105.21264,30.78254],[-105.20714,30.78726],[-105.20165,30.78844],[-105.19547,30.79198],[-105.19066,30.78667],[-105.18586,30.78372],[-105.17624,30.76897],[-105.16938,30.77546],[-105.17006,30.78018],[-105.16663,30.77959],[-105.16526,30.77546],[-105.16526,30.77192],[-105.15564,30.77015],[-105.16182,30.75245],[-105.15633,30.75304],[-105.15427,30.75186],[-105.14466,30.7554],[-105.12681,30.74832],[-105.11788,30.7495],[-105.12063,30.74478],[-105.11582,30.74301],[-105.11376,30.74773],[-105.11033,30.7436],[-105.10758,30.73003],[-105.10209,30.72944],[-105.10209,30.7259],[-105.10483,30.72412],[-105.09934,30.72294],[-105.09797,30.71645],[-105.0911,30.71704],[-105.08767,30.71291],[-105.08698,30.70996],[-105.08149,30.70937],[-105.07874,30.70582],[-105.08355,30.70228],[-105.07943,30.69992],[-105.07599,30.70287],[-105.06981,30.70405],[-105.06432,30.69815],[-105.06226,30.69284],[-105.06363,30.68811],[-105.0602,30.68575],[-105.05745,30.68811],[-105.05402,30.68457],[-105.05402,30.68162],[-105.04853,30.6828],[-105.04647,30.68044],[-105.04509,30.68634],[-105.04578,30.68752],[-105.04372,30.6887],[-105.04097,30.68811],[-105.03548,30.68634],[-105.02861,30.68044],[-105.00733,30.68575],[-105.00252,30.68103],[-104.99978,30.67335],[-104.99978,30.67217],[-104.9936,30.66921],[-104.9936,30.66508],[-104.98604,30.66272],[-104.9833,30.63141],[-104.98055,30.62845],[-104.97918,30.62136],[-104.97437,30.61664],[-104.973,30.61132],[-104.96819,30.60955],[-104.96064,30.61014],[-104.95446,30.60659],[-104.94965,30.60423],[-104.94072,30.60541],[-104.93798,30.60659],[-104.93454,30.60068],[-104.92905,30.60068],[-104.9263,30.60541],[-104.92081,30.59595],[-104.92081,30.59063],[-104.91875,30.58531],[-104.9112,30.58472],[-104.90708,30.57822],[-104.89815,30.56699],[-104.89472,30.56048],[-104.89884,30.55575],[-104.88785,30.54747],[-104.8906,30.54156],[-104.88923,30.53505],[-104.88167,30.53269],[-104.88167,30.52618],[-104.88373,30.52618],[-104.88717,30.52441],[-104.88236,30.52263],[-104.88511,30.52027],[-104.88511,30.51849],[-104.87961,30.5179],[-104.87687,30.51199],[-104.87343,30.51258],[-104.87275,30.50903],[-104.87275,30.4966],[-104.86863,30.49483],[-104.86725,30.48418],[-104.87069,30.48122],[-104.86931,30.47945],[-104.86931,30.47353],[-104.86519,30.46465],[-104.87,30.45844],[-104.86828,30.4537],[-104.86519,30.45163],[-104.8676,30.44157],[-104.85833,30.43742],[-104.86245,30.42795],[-104.85009,30.41966],[-104.84803,30.41966],[-104.8494,30.41611],[-104.84871,30.41315],[-104.85695,30.40959],[-104.85489,30.40071],[-104.85901,30.39123],[-104.85283,30.3859],[-104.83841,30.37465],[-104.8185,30.37643],[-104.81644,30.37465],[-104.81987,30.3705],[-104.81713,30.36576],[-104.81163,30.36754],[-104.81163,30.3628],[-104.81438,30.35924],[-104.81575,30.3551],[-104.82262,30.35213],[-104.8185,30.3468],[-104.81163,30.34088],[-104.81163,30.33258],[-104.79653,30.3308],[-104.79172,30.32547],[-104.79104,30.32132],[-104.77662,30.30828],[-104.77936,30.30413],[-104.77318,30.30413],[-104.76563,30.30828],[-104.76563,30.30294],[-104.75808,30.28397],[-104.76151,30.27626],[-104.76151,30.27507],[-104.74846,30.2733],[-104.75121,30.26321],[-104.73816,30.2561],[-104.73816,30.26144],[-104.73336,30.26084],[-104.70589,30.23474],[-104.71001,30.22406],[-104.68735,30.17956],[-104.68804,30.14037],[-104.69628,30.13325],[-104.69422,30.11721],[-104.68598,30.10711],[-104.69491,30.10296],[-104.6901,30.09523],[-104.68735,30.0988],[-104.6901,30.07265],[-104.70246,30.06374],[-104.70726,30.05007],[-104.69559,30.03581],[-104.70314,30.02392],[-104.6901,30.01381],[-104.69216,30.0037],[-104.68941,30.00192],[-104.68873,29.99478],[-104.69491,29.9924],[-104.68529,29.98883],[-104.69353,29.97634],[-104.67843,29.98051],[-104.68461,29.97099],[-104.68323,29.9585],[-104.67499,29.95731],[-104.67362,29.95077],[-104.68117,29.92935],[-104.67362,29.91209],[-104.66469,29.90316],[-104.65714,29.90375],[-104.6592,29.88887],[-104.65027,29.88887],[-104.63585,29.87101],[-104.6283,29.85255],[-104.62143,29.84957],[-104.62487,29.84481],[-104.62006,29.84064],[-104.61663,29.846],[-104.61045,29.83766],[-104.61937,29.8323],[-104.60907,29.82575],[-104.60907,29.82098],[-104.59534,29.80668],[-104.59259,29.81145],[-104.58436,29.80073],[-104.59122,29.79894],[-104.58916,29.79655],[-104.58367,29.79655],[-104.57955,29.78464],[-104.56582,29.77272],[-104.56856,29.75782],[-104.56994,29.75364],[-104.5514,29.73874],[-104.56101,29.73755],[-104.55483,29.7298],[-104.55071,29.73039],[-104.55002,29.72503],[-104.54934,29.72025],[-104.54659,29.7125],[-104.54453,29.697],[-104.5308,29.69342],[-104.54316,29.68208],[-104.53492,29.66896],[-104.52462,29.66478],[-104.51088,29.64569],[-104.515,29.64032],[-104.50539,29.63315],[-104.49578,29.63912],[-104.46488,29.61167],[-104.45664,29.60808],[-104.40102,29.57345],[-104.39415,29.55494],[-104.38111,29.54359],[-104.37081,29.54419],[-104.33716,29.51969],[-104.32206,29.52387],[-104.32,29.53224],[-104.30901,29.53403],[-104.31244,29.52686],[-104.31176,29.52328],[-104.29184,29.52148],[-104.263,29.51372],[-104.26232,29.50595],[-104.25477,29.50714],[-104.24103,29.49818],[-104.23691,29.49818],[-104.23142,29.48204],[-104.23005,29.47845],[-104.21494,29.48622],[-104.20945,29.48264],[-104.21288,29.46231],[-104.21837,29.45932],[-104.19434,29.44318],[-104.19434,29.43601],[-104.18267,29.42703],[-104.18061,29.41328],[-104.17374,29.40909],[-104.16687,29.40012],[-104.16962,29.39653],[-104.16275,29.39114],[-104.15314,29.39473],[-104.1504,29.38935],[-104.14559,29.38815],[-104.14147,29.38097],[-104.13598,29.38516],[-104.1243,29.38038],[-104.12087,29.37439],[-104.11469,29.3708],[-104.11263,29.37499],[-104.09821,29.36721],[-104.0886,29.35764],[-104.08928,29.35584],[-104.08036,29.34507],[-104.07418,29.34686],[-104.0577,29.33669],[-104.0577,29.3331],[-103.97324,29.29657],[-103.96775,29.30017],[-103.92655,29.29418],[-103.91831,29.28879],[-103.91762,29.2858],[-103.89977,29.28819],[-103.88947,29.27921],[-103.88398,29.284],[-103.86269,29.27981],[-103.83797,29.27741],[-103.82767,29.27022],[-103.81463,29.27442],[-103.80913,29.27082],[-103.80845,29.26304],[-103.79952,29.25824],[-103.78647,29.26663],[-103.7748,29.24506],[-103.78098,29.24327],[-103.78167,29.22829],[-103.7748,29.2199],[-103.76999,29.22169],[-103.76793,29.22769],[-103.76038,29.23368],[-103.75557,29.22709],[-103.75695,29.22349],[-103.75351,29.2211],[-103.74321,29.22229],[-103.74047,29.20491],[-103.72811,29.19652],[-103.71781,29.18154],[-103.713,29.18333],[-103.70339,29.18453],[-103.69927,29.17854],[-103.68966,29.17854],[-103.6567,29.17015],[-103.65189,29.16115],[-103.6512,29.15815],[-103.64846,29.15635],[-103.64571,29.15875],[-103.64159,29.16355],[-103.63541,29.16115],[-103.63129,29.16175],[-103.62786,29.16355],[-103.61893,29.16295],[-103.61344,29.16415],[-103.60589,29.16175],[-103.5949,29.15156],[-103.58117,29.15156],[-103.57293,29.15516],[-103.55301,29.15575],[-103.55027,29.15336],[-103.5537,29.14856],[-103.54958,29.14436],[-103.54134,29.14616],[-103.52349,29.13297],[-103.5228,29.12157],[-103.51319,29.11977],[-103.50563,29.11617],[-103.49946,29.11617],[-103.49946,29.11077],[-103.49465,29.10957],[-103.48229,29.09217],[-103.47336,29.09097],[-103.47611,29.08797],[-103.46993,29.08317],[-103.47062,29.06637],[-103.46032,29.06877],[-103.46238,29.07297],[-103.4507,29.07357],[-103.4507,29.06397],[-103.44109,29.05797],[-103.43422,29.05797],[-103.43422,29.05376],[-103.42804,29.04776],[-103.43216,29.04416],[-103.4253,29.04356],[-103.41431,29.03816],[-103.40401,29.03936],[-103.40058,29.03215],[-103.39097,29.03395],[-103.38753,29.02255],[-103.37655,29.02255],[-103.36144,29.01774],[-103.35114,29.03095],[-103.34359,29.04596],[-103.32779,29.04356],[-103.32917,29.02975],[-103.34153,29.02975],[-103.33809,29.02015],[-103.32573,29.01654],[-103.31818,29.02255],[-103.31612,29.02555],[-103.30788,29.02195],[-103.31063,29.01654],[-103.31749,29.01174],[-103.30925,29.00513],[-103.30239,29.01054],[-103.28797,29.00453],[-103.2811,28.98892],[-103.28797,28.98111],[-103.27904,28.97751],[-103.26806,28.99673],[-103.25158,28.98411],[-103.25089,28.98171],[-103.2399,28.98171],[-103.22892,28.99252],[-103.21999,28.98471],[-103.21312,28.98832],[-103.16712,28.97871],[-103.16369,28.9745],[-103.15339,28.9727],[-103.14927,28.9757],[-103.13553,28.98471],[-103.11356,28.98652],[-103.11631,29.00093],[-103.10738,29.01594],[-103.1012,29.01894],[-103.09845,29.02855],[-103.10738,29.03816],[-103.09708,29.05196],[-103.10051,29.06157],[-103.09021,29.06397],[-103.09159,29.05556],[-103.08266,29.05436],[-103.08678,29.06877],[-103.07717,29.07717],[-103.0806,29.08797],[-103.06893,29.09337],[-103.0655,29.09097],[-103.05588,29.10117],[-103.0449,29.09517],[-103.03254,29.10537],[-103.03666,29.11257],[-103.02842,29.11677],[-103.02155,29.12697],[-103.01331,29.12697],[-103.01606,29.13417],[-103.01125,29.13776],[-103.0085,29.14976],[-103.00507,29.15276],[-103.00232,29.14976],[-102.99271,29.15995],[-102.99889,29.17554],[-102.99065,29.18453],[-102.97898,29.18633],[-102.96319,29.18034],[-102.95151,29.17494],[-102.95289,29.18094],[-102.94877,29.18154],[-102.94465,29.18813],[-102.94259,29.19353],[-102.93709,29.18693],[-102.93297,29.19353],[-102.91924,29.19173],[-102.91855,29.19772],[-102.91512,29.20012],[-102.91375,29.20791],[-102.91718,29.2151],[-102.91169,29.2205],[-102.90207,29.21091],[-102.87598,29.2133],[-102.86499,29.22709],[-102.87186,29.24267],[-102.88765,29.24446],[-102.90551,29.25704],[-102.90207,29.26543],[-102.89933,29.26903],[-102.90276,29.27801],[-102.88834,29.29059],[-102.89246,29.30915],[-102.88628,29.31274],[-102.88559,29.32292],[-102.87941,29.34028],[-102.88285,29.34746],[-102.87804,29.35524],[-102.86293,29.35105],[-102.84028,29.35943],[-102.84508,29.36542],[-102.84508,29.37499],[-102.83478,29.37978],[-102.83341,29.38995],[-102.82723,29.39593],[-102.81899,29.39773],[-102.81556,29.39773],[-102.8135,29.40132],[-102.83272,29.40969],[-102.83135,29.44378],[-102.82174,29.44796],[-102.82036,29.45095],[-102.82517,29.45693],[-102.81418,29.47307],[-102.81418,29.48383],[-102.80045,29.48682],[-102.80594,29.49519],[-102.8032,29.50356],[-102.80663,29.50356],[-102.80869,29.52507],[-102.7929,29.53761],[-102.78809,29.54478],[-102.7723,29.54777],[-102.77848,29.56091],[-102.7723,29.57286],[-102.76818,29.57166],[-102.76268,29.57942],[-102.76955,29.59555],[-102.76131,29.59913],[-102.74621,29.59435],[-102.73865,29.6248],[-102.74277,29.63196],[-102.72561,29.64628],[-102.72561,29.65046],[-102.70707,29.66597],[-102.69677,29.67134],[-102.69539,29.67731],[-102.70089,29.68507],[-102.69883,29.69759],[-102.69059,29.70594],[-102.69059,29.72264],[-102.68166,29.7286],[-102.67548,29.7447],[-102.66861,29.7453],[-102.66655,29.73934],[-102.65969,29.73516],[-102.62398,29.73635],[-102.61437,29.74768],[-102.60819,29.74828],[-102.60064,29.75126],[-102.59652,29.75066],[-102.5869,29.74887],[-102.58072,29.75484],[-102.57386,29.75543],[-102.57317,29.76914],[-102.56836,29.77212],[-102.56012,29.76437],[-102.55394,29.75543],[-102.55463,29.75007],[-102.54914,29.7447],[-102.51069,29.77272],[-102.5203,29.78166],[-102.51549,29.78642],[-102.49833,29.78166],[-102.48734,29.78821],[-102.48185,29.77868],[-102.47155,29.77629],[-102.46537,29.78404],[-102.45919,29.77689],[-102.44751,29.77689],[-102.43721,29.77331],[-102.43241,29.77808],[-102.42142,29.77033],[-102.40563,29.76318],[-102.39876,29.76795],[-102.38778,29.76199],[-102.38846,29.78047],[-102.37885,29.79],[-102.37542,29.80371],[-102.36306,29.83528],[-102.3658,29.8454],[-102.35207,29.85493],[-102.34795,29.86267],[-102.34108,29.86982],[-102.33284,29.86684],[-102.3301,29.86327],[-102.32392,29.86565],[-102.3246,29.87339],[-102.32186,29.88054],[-102.28203,29.86565],[-102.27242,29.86863],[-102.26281,29.86684],[-102.26418,29.85672],[-102.25045,29.85493],[-102.24839,29.86565],[-102.24427,29.85791],[-102.24152,29.846],[-102.22985,29.84957],[-102.22504,29.84183],[-102.21611,29.84362],[-102.20376,29.84302],[-102.19895,29.83766],[-102.19346,29.83885],[-102.19002,29.84898],[-102.18178,29.84481],[-102.17972,29.83707],[-102.18178,29.83111],[-102.17904,29.82754],[-102.16874,29.82694],[-102.15569,29.81205],[-102.1502,29.81026],[-102.14196,29.80371],[-102.12822,29.79834],[-102.11792,29.8043],[-102.11792,29.79477],[-102.09046,29.79477],[-102.07535,29.79238],[-102.07398,29.78881],[-102.05132,29.78642],[-102.04308,29.79],[-102.03896,29.79119],[-102.04171,29.80132],[-102.01905,29.80132],[-102.01561,29.79655],[-102.00943,29.80013],[-101.99501,29.80609],[-101.9854,29.79477],[-101.98197,29.81562],[-101.96618,29.81205],[-101.96412,29.80192],[-101.95862,29.79715],[-101.94764,29.80192],[-101.93734,29.79834],[-101.93322,29.79119],[-101.93253,29.78344],[-101.92566,29.78523],[-101.91811,29.79477],[-101.91056,29.80073],[-101.87554,29.79477],[-101.85425,29.80788],[-101.84739,29.80728],[-101.8261,29.7894],[-101.81992,29.79536],[-101.82679,29.80728],[-101.8158,29.81443],[-101.80344,29.80371],[-101.81237,29.79477],[-101.80962,29.78344],[-101.79177,29.77927],[-101.78559,29.78702],[-101.75332,29.77868],[-101.74439,29.77749],[-101.73615,29.77212],[-101.72928,29.77093],[-101.72585,29.77331],[-101.71898,29.7751],[-101.70937,29.76258],[-101.68808,29.77153],[-101.68053,29.7602],[-101.67229,29.76139],[-101.67366,29.76556],[-101.66062,29.77153],[-101.64551,29.75484],[-101.63315,29.76258],[-101.62697,29.77212],[-101.57685,29.77093],[-101.5741,29.79119],[-101.56929,29.80013],[-101.55213,29.8043],[-101.54664,29.81383],[-101.53634,29.80251],[-101.53771,29.78762],[-101.53702,29.76258],[-101.51436,29.76318],[-101.50063,29.76497],[-101.48621,29.7757],[-101.47866,29.78344],[-101.456,29.78762],[-101.45531,29.76855],[-101.45119,29.75126],[-101.43883,29.74828],[-101.42922,29.75782],[-101.40725,29.77212],[-101.39626,29.76676],[-101.40107,29.76139],[-101.41549,29.75305],[-101.4148,29.74351],[-101.40244,29.73934],[-101.39626,29.73337],[-101.40038,29.72264],[-101.3942,29.71131],[-101.37978,29.70356],[-101.3736,29.69401],[-101.37291,29.68805],[-101.37085,29.67612],[-101.35918,29.64867],[-101.35712,29.64986],[-101.35437,29.65822],[-101.34888,29.6618],[-101.3118,29.65822],[-101.30219,29.64867],[-101.30082,29.63614],[-101.30768,29.6236],[-101.31318,29.60808],[-101.31112,29.5848],[-101.29189,29.57226],[-101.28296,29.5854],[-101.27747,29.60749],[-101.28159,29.61465],[-101.26854,29.63256],[-101.25481,29.62778],[-101.24794,29.61704],[-101.25206,29.60211],[-101.24176,29.56569],[-101.26168,29.53881],[-101.25687,29.52029],[-101.23833,29.52507],[-101.17379,29.51491],[-101.14975,29.47666],[-101.13945,29.47248],[-101.12778,29.47965],[-101.11542,29.46949],[-101.08727,29.46829],[-101.06049,29.45813],[-101.05774,29.44318],[-101.04195,29.43002],[-101.03852,29.40969],[-101.02341,29.39234],[-101.02272,29.39773],[-101.0138,29.38217],[-101.0138,29.37559],[-101.00899,29.36781],[-100.99801,29.36482],[-100.97329,29.35464],[-100.96848,29.34986],[-100.96299,29.34627],[-100.95063,29.34746],[-100.94239,29.34507],[-100.94101,29.33549],[-100.92728,29.32891],[-100.88883,29.30735],[-100.87853,29.28041],[-100.83802,29.26304],[-100.8181,29.26543],[-100.81467,29.26004],[-100.81879,29.25585],[-100.81398,29.25345],[-100.80849,29.25225],[-100.79613,29.24626],[-100.79682,29.23668],[-100.79545,29.22709],[-100.79201,29.22709],[-100.78446,29.22769],[-100.77485,29.21271],[-100.77553,29.20611],[-100.77485,29.20192],[-100.77004,29.19952],[-100.76592,29.19233],[-100.76867,29.17734],[-100.77485,29.17614],[-100.77004,29.16715],[-100.76455,29.16775],[-100.76111,29.16295],[-100.7618,29.15875],[-100.75562,29.15695],[-100.73708,29.14736],[-100.73983,29.14256],[-100.71854,29.12277],[-100.69588,29.11437],[-100.68558,29.11077],[-100.67391,29.10057],[-100.66636,29.07717],[-100.66086,29.04176],[-100.65674,29.01474],[-100.64988,29.00333],[-100.64438,28.98652],[-100.6437,28.9757],[-100.65056,28.94266],[-100.64438,28.93605],[-100.64026,28.93004],[-100.63202,28.92463],[-100.63134,28.92163],[-100.62928,28.91862],[-100.63477,28.91562],[-100.64026,28.91622],[-100.63202,28.90239],[-100.62378,28.909],[-100.61417,28.90239],[-100.60181,28.90239],[-100.60387,28.88616],[-100.59357,28.88857],[-100.58808,28.88616],[-100.59288,28.87895],[-100.59632,28.88015],[-100.59632,28.87353],[-100.58945,28.87353],[-100.58808,28.87053],[-100.59014,28.86452],[-100.57091,28.84707],[-100.57641,28.84046],[-100.57435,28.82903],[-100.56885,28.82542],[-100.56061,28.82723],[-100.55237,28.82723],[-100.54551,28.82181],[-100.54551,28.81279],[-100.53933,28.80617],[-100.53315,28.80376],[-100.53315,28.79293],[-100.53658,28.78511],[-100.53658,28.77849],[-100.53246,28.77307],[-100.53109,28.76645],[-100.53383,28.76224],[-100.52903,28.75983],[-100.52353,28.75501],[-100.51941,28.75562],[-100.51667,28.75321],[-100.51461,28.74177],[-100.51117,28.74117],[-100.5098,28.73996],[-100.50774,28.73695],[-100.50705,28.72672],[-100.50774,28.71588],[-100.51461,28.70504],[-100.51255,28.69359],[-100.50019,28.66287],[-100.49401,28.65745],[-100.47959,28.65504],[-100.47272,28.64721],[-100.46448,28.64118],[-100.44732,28.64299],[-100.44663,28.60924],[-100.43496,28.60803],[-100.43221,28.6014],[-100.39856,28.58391],[-100.3965,28.57849],[-100.41024,28.55014],[-100.39994,28.53024],[-100.39582,28.52963],[-100.38895,28.51455],[-100.33265,28.50188],[-100.33608,28.49343],[-100.34775,28.48438],[-100.36767,28.48317],[-100.36835,28.47714],[-100.33883,28.44575],[-100.33814,28.42341],[-100.3505,28.40408],[-100.31685,28.35817],[-100.31479,28.34608],[-100.28595,28.30861],[-100.29419,28.28382],[-100.2887,28.27052],[-100.28389,28.27173],[-100.27703,28.26326],[-100.24682,28.23302],[-100.22965,28.23423],[-100.22004,28.2312],[-100.2166,28.22031],[-100.21523,28.207],[-100.20905,28.19429],[-100.20562,28.19066],[-100.1912,28.19005],[-100.17403,28.18037],[-100.16648,28.16948],[-100.15343,28.16584],[-100.14313,28.16887],[-100.12116,28.15555],[-100.08683,28.14526],[-100.06623,28.11619],[-100.05867,28.10711],[-100.05799,28.09924],[-100.05661,28.09015],[-100.05181,28.08349],[-100.04082,28.07743],[-100.02434,28.07076],[-100.0161,28.05683],[-100.00924,28.02834],[-100.00031,28.00773],[-99.99276,27.99561],[-99.96804,27.9847],[-99.93096,27.98045],[-99.93233,27.96832],[-99.93988,27.9568],[-99.93782,27.94891],[-99.93371,27.93618],[-99.92753,27.93557],[-99.92409,27.9289],[-99.92615,27.92617],[-99.89869,27.9113],[-99.89388,27.90038],[-99.90143,27.88521],[-99.90418,27.87003],[-99.89663,27.85789],[-99.88358,27.85304],[-99.87809,27.8415],[-99.87809,27.82936],[-99.87603,27.81478],[-99.87671,27.80567],[-99.87877,27.80203],[-99.8671,27.79413],[-99.85131,27.79352],[-99.84238,27.76619],[-99.82522,27.76436],[-99.81904,27.7753],[-99.81217,27.77348],[-99.80118,27.7437],[-99.78951,27.73155],[-99.77372,27.73398],[-99.75792,27.71878],[-99.7593,27.71149],[-99.7229,27.67683],[-99.72428,27.66832],[-99.70025,27.65737],[-99.69407,27.66406],[-99.69132,27.66954],[-99.68857,27.66285],[-99.67965,27.65859],[-99.67141,27.65981],[-99.65973,27.65251],[-99.65836,27.64825],[-99.66317,27.64339],[-99.6666,27.63913],[-99.65355,27.63061],[-99.64875,27.63122],[-99.63845,27.62879],[-99.62746,27.63365],[-99.62746,27.64095],[-99.62403,27.64521],[-99.61853,27.63974],[-99.61441,27.63791],[-99.59725,27.64095],[-99.59107,27.62939],[-99.58008,27.61966],[-99.57665,27.61358],[-99.58352,27.60749],[-99.58832,27.60567],[-99.58214,27.60141],[-99.55948,27.6081],[-99.55742,27.6154],[-99.55605,27.61418],[-99.54232,27.60749],[-99.53339,27.58741],[-99.51966,27.57585],[-99.51279,27.56854],[-99.51279,27.55819],[-99.51966,27.55028],[-99.5279,27.50035],[-99.52034,27.49609],[-99.50181,27.49974],[-99.49494,27.49974],[-99.47983,27.48817],[-99.48395,27.47416],[-99.48601,27.46136],[-99.49357,27.45161],[-99.48739,27.40956],[-99.49151,27.39432],[-99.49288,27.38091],[-99.50455,27.35896],[-99.50455,27.33822],[-99.52996,27.3248],[-99.53614,27.31565],[-99.52858,27.30528],[-99.50318,27.30772],[-99.49563,27.30223],[-99.4867,27.29063],[-99.49151,27.2766],[-99.49769,27.27172],[-99.48739,27.26256],[-99.47159,27.26256],[-99.46061,27.26866],[-99.44893,27.26012],[-99.43932,27.24669],[-99.44207,27.23387],[-99.44069,27.2186],[-99.43314,27.20761],[-99.42971,27.1954],[-99.42559,27.17769],[-99.42971,27.15875],[-99.43863,27.15508],[-99.43932,27.14958],[-99.43383,27.13981],[-99.43177,27.13186],[-99.43108,27.12331],[-99.44344,27.10864],[-99.44001,27.10314],[-99.43039,27.09275],[-99.43177,27.08541],[-99.44275,27.07318],[-99.45374,27.0634],[-99.44619,27.04506],[-99.44619,27.02977],[-99.44756,27.02487],[-99.43177,27.0108],[-99.41666,27.01814],[-99.40567,26.99857],[-99.38576,26.98266],[-99.37752,26.97838],[-99.37821,26.97287],[-99.39332,26.96308],[-99.38782,26.94227],[-99.37272,26.93064],[-99.32671,26.91839],[-99.32259,26.91227],[-99.3274,26.88655],[-99.32465,26.87675],[-99.31641,26.86634],[-99.29581,26.8645],[-99.28139,26.8596],[-99.26835,26.84245],[-99.26423,26.81671],[-99.24363,26.78791],[-99.24019,26.74683],[-99.20861,26.72598],[-99.21067,26.6947],[-99.20105,26.65973],[-99.17771,26.61922],[-99.16741,26.55905],[-99.17222,26.54983],[-99.17016,26.54062],[-99.16054,26.53386],[-99.12896,26.52465],[-99.09256,26.47733],[-99.09394,26.46995],[-99.10012,26.46012],[-99.10218,26.44475],[-99.11248,26.43553],[-99.08432,26.39802],[-99.06373,26.39802],[-99.04725,26.40601],[-99.03901,26.41401],[-99.02184,26.4097],[-99.00948,26.3931],[-98.98888,26.39187],[-98.97789,26.40109],[-98.97103,26.40109],[-98.95249,26.39248],[-98.95592,26.38079],[-98.94356,26.3691],[-98.93807,26.37157],[-98.93395,26.3771],[-98.93601,26.38264],[-98.92708,26.39494],[-98.92365,26.39002],[-98.92228,26.37956],[-98.91198,26.37218],[-98.90305,26.37157],[-98.89962,26.36726],[-98.9003,26.36049],[-98.89756,26.35372],[-98.87078,26.36295],[-98.85773,26.36664],[-98.84949,26.36111],[-98.84469,26.35988],[-98.83164,26.3648],[-98.82409,26.37034],[-98.81379,26.36787],[-98.80692,26.3691],[-98.80005,26.36295],[-98.79662,26.3488],[-98.78838,26.33773],[-98.78975,26.33342],[-98.77259,26.32603],[-98.76572,26.32726],[-98.75473,26.33157],[-98.74924,26.33034],[-98.74787,26.32234],[-98.74444,26.31557],[-98.73826,26.31372],[-98.73688,26.3088],[-98.741,26.30264],[-98.74581,26.30634],[-98.75199,26.30757],[-98.75542,26.30572],[-98.75336,26.29957],[-98.74924,26.29587],[-98.74169,26.29403],[-98.73482,26.29957],[-98.72933,26.30018],[-98.71972,26.29218],[-98.71697,26.28787],[-98.70804,26.2891],[-98.70186,26.28479],[-98.70186,26.27987],[-98.70804,26.27864],[-98.71903,26.27864],[-98.7204,26.27494],[-98.69706,26.26447],[-98.68744,26.26632],[-98.6792,26.26016],[-98.68058,26.246],[-98.67234,26.23861],[-98.65929,26.23615],[-98.64624,26.23984],[-98.6332,26.24292],[-98.63251,26.25216],[-98.62359,26.26078],[-98.61878,26.24723],[-98.61466,26.24662],[-98.61191,26.25339],[-98.60848,26.25339],[-98.59749,26.2577],[-98.58239,26.2577],[-98.57964,26.25031],[-98.58445,26.24538],[-98.57964,26.23553],[-98.57415,26.23984],[-98.56797,26.24169],[-98.56522,26.23615],[-98.56385,26.22629],[-98.55973,26.22444],[-98.55767,26.23183],[-98.54805,26.23491],[-98.54805,26.24107],[-98.55767,26.24415],[-98.55629,26.24908],[-98.54462,26.24477],[-98.53569,26.22567],[-98.52883,26.22999],[-98.52334,26.23676],[-98.52059,26.2343],[-98.52608,26.22444],[-98.52196,26.22075],[-98.5151,26.22752],[-98.50274,26.22198],[-98.50686,26.21089],[-98.50205,26.21089],[-98.49106,26.21335],[-98.48351,26.20781],[-98.4842,26.20411],[-98.48008,26.20165],[-98.47733,26.20411],[-98.4842,26.21643],[-98.47939,26.22013],[-98.47252,26.22013],[-98.46634,26.22321],[-98.46085,26.22691],[-98.45673,26.22013],[-98.45398,26.21705],[-98.45261,26.22075],[-98.44506,26.22444],[-98.43888,26.2189],[-98.44025,26.21027],[-98.44574,26.20411],[-98.44025,26.19734],[-98.42995,26.19487],[-98.41897,26.18501],[-98.40729,26.18378],[-98.40317,26.1807],[-98.40317,26.17454],[-98.39837,26.16961],[-98.3915,26.16529],[-98.38601,26.1579],[-98.37777,26.1579],[-98.36541,26.15975],[-98.36815,26.16653],[-98.36403,26.17146],[-98.3606,26.17269],[-98.35785,26.16899],[-98.35785,26.16468],[-98.35991,26.15975],[-98.35442,26.1542],[-98.35167,26.15235],[-98.34755,26.1542],[-98.34824,26.16098],[-98.34549,26.16714],[-98.34069,26.16714],[-98.33451,26.16653],[-98.33451,26.15667],[-98.33863,26.15235],[-98.33794,26.14989],[-98.33451,26.14619],[-98.32901,26.14496],[-98.32764,26.14311],[-98.33588,26.14187],[-98.33588,26.13694],[-98.33451,26.13386],[-98.32077,26.11906],[-98.31185,26.1166],[-98.30842,26.10673],[-98.30498,26.10303],[-98.29812,26.10365],[-98.29812,26.10673],[-98.30361,26.1092],[-98.30224,26.11352],[-98.29674,26.12153],[-98.27271,26.11783],[-98.26516,26.12153],[-98.2655,26.11706],[-98.27134,26.11413],[-98.27134,26.10673],[-98.28713,26.10735],[-98.28799,26.10488],[-98.28507,26.10242],[-98.27906,26.09933],[-98.27271,26.09625],[-98.26653,26.09132],[-98.26567,26.087],[-98.26378,26.08515],[-98.25211,26.07898],[-98.24936,26.07343],[-98.24387,26.07282],[-98.22945,26.07652],[-98.2164,26.07528],[-98.20885,26.06911],[-98.20199,26.06233],[-98.19855,26.05616],[-98.19306,26.05616],[-98.18894,26.06356],[-98.18413,26.06233],[-98.1807,26.06048],[-98.17864,26.06233],[-98.17933,26.06665],[-98.1807,26.07405],[-98.17521,26.07467],[-98.16971,26.07035],[-98.17109,26.06726],[-98.16765,26.06356],[-98.16353,26.0648],[-98.15873,26.0648],[-98.15735,26.06171],[-98.1601,26.06048],[-98.16353,26.0574],[-98.16216,26.05431],[-98.15735,26.05369],[-98.15186,26.05925],[-98.14843,26.05554],[-98.14911,26.05431],[-98.14843,26.05123],[-98.14499,26.04999],[-98.13675,26.06295],[-98.13675,26.06973],[-98.13195,26.07405],[-98.12783,26.0722],[-98.12989,26.0685],[-98.13057,26.06418],[-98.12508,26.06356],[-98.11959,26.06418],[-98.11135,26.06665],[-98.10654,26.06788],[-98.10036,26.06356],[-98.09281,26.05925],[-98.08526,26.0611],[-98.08114,26.0648],[-98.08526,26.06973],[-98.0832,26.07282],[-98.07702,26.06973],[-98.07496,26.06295],[-98.07015,26.04938],[-98.07152,26.04382],[-98.07839,26.04197],[-98.07702,26.03642],[-98.0729,26.03642],[-98.06328,26.04629],[-98.04543,26.04506],[-98.03994,26.04136],[-98.03307,26.06171],[-98.02758,26.06665],[-98.02414,26.06295],[-98.02208,26.05863],[-98.01659,26.06233],[-98.01453,26.06541],[-98.01178,26.06541],[-98.01178,26.05801],[-98.00629,26.06233],[-98.0008,26.06418],[-97.99668,26.06356],[-97.99393,26.05986],[-97.9905,26.05863],[-97.98707,26.06557],[-97.98295,26.06726],[-97.97951,26.06603],[-97.97883,26.06233],[-97.97677,26.05925],[-97.96647,26.05123],[-97.95205,26.06171],[-97.94449,26.06048],[-97.93557,26.05431],[-97.93213,26.05616],[-97.93625,26.06233],[-97.93351,26.0648],[-97.92733,26.0574],[-97.92664,26.05616],[-97.91909,26.05925],[-97.91359,26.05616],[-97.90261,26.0611],[-97.89093,26.06171],[-97.88819,26.06788],[-97.87514,26.06418],[-97.8724,26.05986],[-97.87102,26.05801],[-97.86347,26.06973],[-97.85935,26.06665],[-97.86141,26.06048],[-97.86072,26.05369],[-97.84012,26.05431],[-97.83463,26.04691],[-97.8257,26.05678],[-97.81609,26.05493],[-97.81609,26.04567],[-97.81197,26.04629],[-97.81266,26.05493],[-97.8003,26.06048],[-97.79961,26.05369],[-97.79343,26.05308],[-97.79,26.04814],[-97.79618,26.04691],[-97.79549,26.04259],[-97.79686,26.03889],[-97.79137,26.03395],[-97.78244,26.03457],[-97.77901,26.02963],[-97.7742,26.03457],[-97.76871,26.0358],[-97.77695,26.04074],[-97.77695,26.04506],[-97.77009,26.04753],[-97.76391,26.04321],[-97.76391,26.02778],[-97.76047,26.02655],[-97.75498,26.03087],[-97.74949,26.02963],[-97.74949,26.02655],[-97.74605,26.02778],[-97.74331,26.03087],[-97.73713,26.02902],[-97.73781,26.02285],[-97.73301,26.02285],[-97.72751,26.02346],[-97.72683,26.02902],[-97.73301,26.02963],[-97.73575,26.0321],[-97.71927,26.0321],[-97.72202,26.02408],[-97.70897,26.02655],[-97.7076,26.03704],[-97.70279,26.0321],[-97.6973,26.03087],[-97.69661,26.0247],[-97.69249,26.01853],[-97.69043,26.02408],[-97.69318,26.03148],[-97.68769,26.02778],[-97.67601,26.02655],[-97.67464,26.02902],[-97.67601,26.03334],[-97.67121,26.03519],[-97.66846,26.0284],[-97.66434,26.03334],[-97.66297,26.03951],[-97.66091,26.02963],[-97.66777,26.02408],[-97.66709,26.01914],[-97.65954,26.02038],[-97.65061,26.01729],[-97.64512,26.0284],[-97.63619,26.01668],[-97.63962,26.01297],[-97.64718,26.01297],[-97.65061,26.01112],[-97.64649,26.00804],[-97.6355,26.00125],[-97.63138,26.00619],[-97.62658,26.00433],[-97.62726,26.00001],[-97.62383,25.99755],[-97.61971,26.00248],[-97.61696,25.99508],[-97.62314,25.99384],[-97.63001,25.99631],[-97.63276,25.99446],[-97.63276,25.98952],[-97.62932,25.98829],[-97.62246,25.9889],[-97.61765,25.97903],[-97.60804,25.97656],[-97.61147,25.96607],[-97.59911,25.95742],[-97.59362,25.96298],[-97.58332,25.9636],[-97.58332,25.95742],[-97.5792,25.9426],[-97.57439,25.94631],[-97.57439,25.9531],[-97.56684,25.95248],[-97.56684,25.94507],[-97.58126,25.9389],[-97.58263,25.93705],[-97.584,25.93334],[-97.5804,25.93218],[-97.57439,25.93473],[-97.56546,25.93149],[-97.5689,25.92779],[-97.56134,25.92593],[-97.5586,25.93581],[-97.55173,25.93705],[-97.54555,25.93273],[-97.54555,25.92531],[-97.53869,25.93334],[-97.53525,25.92779],[-97.54281,25.92037],[-97.53113,25.92099],[-97.53182,25.9179],[-97.53251,25.91173],[-97.53113,25.90802],[-97.52427,25.89752],[-97.52015,25.88579],[-97.51122,25.88887],[-97.49817,25.89938],[-97.49749,25.88146],[-97.48925,25.8864],[-97.48787,25.88084],[-97.47139,25.89011],[-97.46796,25.88702],[-97.4762,25.88331],[-97.47483,25.87899],[-97.47071,25.8759],[-97.4659,25.88208],[-97.45491,25.88455],[-97.45697,25.86849],[-97.45217,25.86787],[-97.44805,25.87405],[-97.4453,25.86725],[-97.44736,25.86169],[-97.45354,25.85675],[-97.45285,25.85366],[-97.44736,25.85737],[-97.44462,25.85428],[-97.44736,25.85057],[-97.44393,25.84871],[-97.43569,25.8518],[-97.42539,25.84068],[-97.41303,25.84253],[-97.41372,25.8586],[-97.40891,25.86293],[-97.40822,25.85428],[-97.41097,25.84995],[-97.40685,25.84439],[-97.40273,25.85304],[-97.40136,25.84624],[-97.40754,25.84068],[-97.40342,25.83759],[-97.39037,25.84068],[-97.38625,25.84439],[-97.38213,25.84192],[-97.37183,25.84253],[-97.37046,25.84995],[-97.36565,25.85057],[-97.37664,25.85613],[-97.37114,25.85922],[-97.3629,25.86972],[-97.35947,25.86725],[-97.35672,25.86849],[-97.35878,25.87961],[-97.37389,25.87899],[-97.36771,25.88579],[-97.35741,25.88702],[-97.35878,25.89134],[-97.36908,25.89196],[-97.36771,25.90493],[-97.37458,25.90802],[-97.36977,25.91111],[-97.36771,25.91605],[-97.36222,25.91543],[-97.34848,25.93149],[-97.3423,25.92902],[-97.33681,25.92964],[-97.33887,25.92099],[-97.33544,25.92037],[-97.33475,25.92655],[-97.32926,25.91667],[-97.3272,25.91852],[-97.32239,25.9284],[-97.31278,25.93273],[-97.31072,25.92779],[-97.30248,25.93087],[-97.30385,25.93705],[-97.29767,25.93705],[-97.2963,25.93334],[-97.29081,25.93767],[-97.27639,25.9352],[-97.28119,25.94384],[-97.27982,25.94754],[-97.29012,25.95372],[-97.28394,25.95927],[-97.27707,25.9531],[-97.26059,25.95125],[-97.2448,25.95001],[-97.22695,25.95866],[-97.22489,25.95866],[-97.22214,25.95619],[-97.21116,25.96174],[-97.2091,25.96421],[-97.20566,25.96236],[-97.20498,25.95866],[-97.1885,25.95495],[-97.18644,25.95866],[-97.1782,25.96174],[-97.17751,25.96607],[-97.17408,25.96483],[-97.16927,25.96113],[-97.16103,25.9636],[-97.15691,25.96236],[-97.16103,25.95063],[-97.15142,25.95248],[-97.1473,25.95681],[-89.91211,25.04081],[-85.93506,24.55327],[-86.04493,18.39623],[-87.84119,18.1876],[-87.85492,18.18499],[-87.86591,18.19543],[-87.89612,18.16673],[-87.98127,18.16933],[-88.00049,18.37016],[-88.05268,18.41447],[-88.31498,18.49133],[-88.33283,18.49133],[-88.35206,18.48481],[-88.36579,18.48742],[-88.37815,18.48091],[-88.40287,18.49393],[-88.44956,18.47439],[-88.45917,18.49002],[-88.4784,18.49654],[-88.52097,18.46007],[-88.53058,18.40926],[-88.54432,18.38971],[-88.55256,18.37537],[-88.54294,18.36234],[-88.60611,18.29195],[-88.59787,18.29064],[-88.60886,18.26717],[-88.60199,18.2463],[-88.6171,18.22674],[-88.63358,18.21761],[-88.64045,18.215],[-88.6583,18.20456],[-88.66654,18.20587],[-88.67066,18.19673],[-88.68439,18.19673],[-88.69675,18.18369],[-88.68439,18.17716],[-88.68165,18.1589],[-88.71872,18.108],[-88.71186,18.09495],[-88.71598,18.06231],[-88.76954,18.03358],[-88.77091,18.00877],[-88.78739,17.9944],[-88.7819,17.98265],[-88.81897,17.9513],[-88.85468,17.93039],[-88.85331,17.89642],[-88.88077,17.90034],[-88.88764,17.90818],[-88.91922,17.92124],[-88.94532,17.95913],[-88.98926,17.9526],[-89.00162,17.98526],[-89.03733,18.00355],[-89.05518,17.99963],[-89.06067,17.98787],[-89.0799,17.99179],[-89.09775,17.98265],[-89.10737,17.98526],[-89.11286,17.97481],[-89.12247,17.9735],[-89.12522,17.97742],[-89.13208,17.9722],[-89.1362,17.95391],[-89.14444,17.94868],[-89.15268,17.93954],[-89.15268,17.81537],[-90.98809,17.81603],[-90.98809,17.2523],[-91.4399,17.25099],[-91.4296,17.2241],[-91.41861,17.20967],[-91.40419,17.20376],[-91.38566,17.20573],[-91.3733,17.20573],[-91.35407,17.19065],[-91.3472,17.17621],[-91.35132,17.16178],[-91.33896,17.16047],[-91.33004,17.18015],[-91.3218,17.18474],[-91.31218,17.18146],[-91.28197,17.17884],[-91.2806,17.18146],[-91.27579,17.17818],[-91.27099,17.17359],[-91.26275,17.16637],[-91.26206,17.1585],[-91.27236,17.14603],[-91.26755,17.10863],[-91.25519,17.10273],[-91.24283,17.10076],[-91.23391,17.1001],[-91.22635,17.09419],[-91.21743,17.07713],[-91.21605,17.06663],[-91.21537,17.0535],[-91.21056,17.05218],[-91.20163,17.04234],[-91.19408,17.03971],[-91.17829,17.01804],[-91.15494,17.00491],[-91.14808,17.00491],[-91.13572,17.00688],[-91.12748,17.00623],[-91.12198,17.00097],[-91.1213,16.99178],[-91.12336,16.98259],[-91.11924,16.97668],[-91.11718,16.97536],[-91.1055,16.97077],[-91.09932,16.96289],[-91.09658,16.95369],[-91.07872,16.94252],[-91.06911,16.92873],[-91.06431,16.92545],[-91.06636,16.92216],[-91.07529,16.91231],[-91.05744,16.89917],[-91.01075,16.88734],[-90.99564,16.87814],[-90.99015,16.86369],[-90.98328,16.86763],[-90.98465,16.88208],[-90.98603,16.8926],[-90.98053,16.89917],[-90.97435,16.90245],[-90.95787,16.89917],[-90.95376,16.88668],[-90.95993,16.87749],[-90.97023,16.87223],[-90.97641,16.86566],[-90.97023,16.86106],[-90.95925,16.86369],[-90.95307,16.86566],[-90.93453,16.85974],[-90.93247,16.85186],[-90.93453,16.84331],[-90.92629,16.83411],[-90.92354,16.82426],[-90.91805,16.82031],[-90.90088,16.82426],[-90.8844,16.82557],[-90.8638,16.8144],[-90.85831,16.80585],[-90.85694,16.79796],[-90.83222,16.79599],[-90.80544,16.79862],[-90.80132,16.79402],[-90.80407,16.78547],[-90.80407,16.7789],[-90.80063,16.7743],[-90.79239,16.77101],[-90.76149,16.76181],[-90.75737,16.75655],[-90.75806,16.75129],[-90.72167,16.72959],[-90.71686,16.72893],[-90.71068,16.72367],[-90.70725,16.71512],[-90.71,16.7092],[-90.70725,16.70262],[-90.70244,16.70065],[-90.69077,16.69407],[-90.68253,16.68881],[-90.67978,16.67632],[-90.67635,16.66053],[-90.66674,16.65066],[-90.65781,16.63816],[-90.66193,16.63158],[-90.66193,16.62105],[-90.65575,16.60921],[-90.65644,16.60461],[-90.65369,16.59539],[-90.66742,16.58947],[-90.66811,16.58157],[-90.66124,16.57763],[-90.64957,16.57763],[-90.6427,16.58157],[-90.64133,16.58881],[-90.64339,16.59605],[-90.6379,16.59408],[-90.63241,16.5875],[-90.62623,16.57697],[-90.64202,16.56775],[-90.6482,16.55854],[-90.64682,16.5513],[-90.64957,16.54472],[-90.64408,16.5355],[-90.64614,16.52036],[-90.64408,16.51641],[-90.63996,16.51444],[-90.63309,16.51444],[-90.62005,16.52234],[-90.61181,16.51839],[-90.60769,16.50851],[-90.60837,16.49798],[-90.61661,16.49074],[-90.62279,16.48876],[-90.63172,16.49008],[-90.63584,16.48679],[-90.63584,16.48218],[-90.62897,16.47888],[-90.61867,16.47954],[-90.61593,16.48613],[-90.61318,16.49008],[-90.60494,16.48744],[-90.59807,16.49139],[-90.59327,16.48876],[-90.59533,16.47954],[-90.59258,16.47098],[-90.58777,16.46967],[-90.56992,16.47493],[-90.55893,16.47954],[-90.54451,16.48086],[-90.54795,16.47427],[-90.54657,16.46703],[-90.52872,16.45913],[-90.52392,16.46045],[-90.5246,16.46835],[-90.51568,16.47098],[-90.50332,16.46769],[-90.4992,16.46374],[-90.49851,16.45584],[-90.4937,16.45386],[-90.48958,16.45979],[-90.48134,16.46176],[-90.4786,16.45649],[-90.48066,16.45189],[-90.47928,16.44398],[-90.48134,16.43674],[-90.4889,16.42884],[-90.48546,16.42357],[-90.47791,16.42554],[-90.46967,16.42423],[-90.46074,16.42159],[-90.42504,16.42554],[-90.41886,16.42488],[-90.41199,16.4071],[-90.40787,16.40447],[-90.40169,16.40908],[-90.39963,16.41566],[-90.38933,16.41303],[-90.38865,16.4071],[-90.39139,16.40381],[-90.40169,16.39986],[-90.40444,16.39524],[-90.40238,16.39063],[-90.38521,16.3768],[-90.37354,16.37482],[-90.37148,16.36758],[-90.37491,16.36099],[-90.38453,16.36165],[-90.3859,16.36889],[-90.39277,16.37416],[-90.39895,16.37285],[-90.41337,16.36099],[-90.41405,16.3511],[-90.41062,16.34649],[-90.40787,16.34649],[-90.40719,16.34979],[-90.40925,16.35506],[-90.40787,16.35967],[-90.40581,16.36165],[-90.40238,16.35901],[-90.40307,16.35242],[-90.39963,16.34979],[-90.38659,16.34649],[-90.38315,16.3432],[-90.38384,16.33793],[-90.38659,16.33529],[-90.39071,16.33661],[-90.39551,16.33859],[-90.40169,16.33859],[-90.40444,16.33134],[-90.41199,16.32936],[-90.41337,16.32409],[-90.41062,16.31355],[-90.4168,16.30498],[-90.42641,16.3063],[-90.4374,16.303],[-90.44014,16.29575],[-90.43396,16.2918],[-90.43877,16.2885],[-90.4422,16.28191],[-90.43877,16.27598],[-90.43259,16.27466],[-90.42435,16.26148],[-90.4271,16.25489],[-90.43465,16.25554],[-90.44152,16.26214],[-90.44907,16.2595],[-90.45594,16.24895],[-90.45456,16.24302],[-90.44838,16.24236],[-90.44358,16.24632],[-90.44014,16.24632],[-90.43877,16.23972],[-90.43122,16.23577],[-90.42984,16.23181],[-90.44014,16.23181],[-90.45182,16.22588],[-90.458,16.21533],[-90.458,16.20742],[-90.45525,16.19489],[-90.45525,16.1883],[-90.4477,16.1817],[-90.43671,16.18038],[-90.4271,16.17181],[-90.42641,16.16455],[-90.43808,16.1573],[-90.44701,16.15598],[-90.4525,16.15004],[-90.44838,16.14411],[-90.43877,16.14279],[-90.43396,16.14147],[-90.42984,16.13949],[-90.4319,16.1296],[-90.42984,16.11904],[-90.43877,16.11838],[-90.45044,16.12564],[-90.45662,16.12168],[-90.45662,16.1164],[-90.45937,16.10717],[-90.45662,16.10255],[-90.45868,16.09463],[-90.45319,16.09331],[-90.44564,16.09529],[-90.44426,16.10189],[-90.4319,16.10717],[-90.42641,16.10321],[-90.42778,16.09727],[-90.43534,16.09859],[-90.43671,16.09661],[-90.44014,16.09265],[-90.44014,16.09134],[-90.44632,16.08408],[-90.44632,16.08012],[-90.44358,16.07748],[-90.4422,16.07484],[-91.73172,16.07418],[-92.211,15.26166],[-92.05925,15.07079],[-92.06543,15.06947],[-92.07367,15.05886],[-92.06955,15.05753],[-92.0723,15.0509],[-92.0723,15.04825],[-92.07917,15.0456],[-92.07779,15.03499],[-92.07917,15.03101],[-92.08741,15.02305],[-92.09427,15.02172],[-92.09839,15.00979],[-92.12311,15.01642],[-92.1341,15.01376],[-92.13685,15.00581],[-92.15058,14.98856],[-92.14783,14.97928],[-92.14646,14.96866],[-92.1492,14.95009],[-92.14234,14.9408],[-92.1492,14.93151],[-92.14234,14.91559],[-92.14234,14.91426],[-92.14509,14.91028],[-92.13685,14.89568],[-92.13685,14.88639],[-92.14097,14.88241],[-92.1492,14.87046],[-92.16706,14.85985],[-92.17392,14.86117],[-92.17392,14.85454],[-92.18354,14.84923],[-92.18079,14.83728],[-92.18491,14.82931],[-92.17804,14.81737],[-92.17667,14.80409],[-92.1698,14.78683],[-92.17118,14.78152],[-92.16156,14.77488],[-92.16156,14.76293],[-92.17255,14.75496],[-92.17118,14.74832],[-92.16294,14.73637],[-92.15882,14.73902],[-92.14646,14.71644],[-92.14783,14.69785],[-92.14783,14.66065],[-92.15882,14.65135],[-92.16019,14.63939],[-92.16843,14.63939],[-92.17942,14.61547],[-92.17392,14.61016],[-92.18491,14.57959],[-92.19452,14.57029],[-92.20551,14.56231],[-92.2165,14.55567],[-92.22336,14.53706],[-92.23435,14.53706],[-92.24212,14.54275],[-93,14]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central American Zone","cq_zone_number":7,"cq_zone_name_loc":[10,-91]},"geometry":{"type":"Polygon","coordinates":[[[-130,14],[-130,4],[-82,4],[-77.89333,7.22057],[-77.81787,7.45806],[-77.81383,7.45566],[-77.80958,7.4529],[-77.8069,7.45351],[-77.80526,7.46041],[-77.80361,7.46289],[-77.7926,7.47385],[-77.78332,7.46978],[-77.77953,7.46163],[-77.76098,7.45894],[-77.74208,7.45114],[-77.74705,7.44316],[-77.73692,7.4379],[-77.72246,7.43321],[-77.71145,7.44077],[-77.71142,7.44969],[-77.70177,7.45452],[-77.70037,7.46616],[-77.70602,7.46884],[-77.70403,7.49604],[-77.71029,7.5001],[-77.70237,7.50817],[-77.7057,7.51971],[-77.71591,7.53671],[-77.7268,7.56391],[-77.73083,7.56661],[-77.73888,7.58562],[-77.7387,7.60054],[-77.74598,7.60656],[-77.7519,7.6153],[-77.74038,7.63005],[-77.7426,7.64005],[-77.74893,7.65276],[-77.74188,7.65867],[-77.74522,7.66911],[-77.74169,7.67682],[-77.73445,7.68864],[-77.7277,7.68783],[-77.72781,7.6979],[-77.70898,7.69035],[-77.70114,7.69504],[-77.68684,7.68538],[-77.68163,7.67684],[-77.67642,7.67647],[-77.6715,7.66756],[-77.65754,7.66198],[-77.64609,7.6481],[-77.63676,7.61444],[-77.62194,7.57535],[-77.61124,7.56007],[-77.61153,7.54479],[-77.59258,7.5353],[-77.58463,7.51084],[-77.57599,7.5136],[-77.5646,7.50547],[-77.53255,7.54706],[-77.5266,7.55814],[-77.52477,7.57602],[-77.50097,7.56668],[-77.48815,7.56959],[-77.49444,7.58834],[-77.48151,7.60846],[-77.46445,7.6347],[-77.46937,7.65413],[-77.44099,7.65723],[-77.43733,7.68075],[-77.43206,7.69148],[-77.41719,7.70222],[-77.41627,7.71961],[-77.41278,7.72421],[-77.40654,7.72065],[-77.39681,7.73394],[-77.39384,7.76052],[-77.37793,7.75816],[-77.37713,7.77076],[-77.35985,7.76568],[-77.34668,7.76196],[-77.33728,7.76974],[-77.34847,7.77751],[-77.34318,7.78189],[-77.34202,7.78762],[-77.35754,7.8127],[-77.35569,7.82184],[-77.36344,7.8337],[-77.34161,7.84984],[-77.33928,7.8671],[-77.32438,7.88388],[-77.32321,7.89523],[-77.30677,7.89859],[-77.29444,7.90738],[-77.27525,7.90666],[-77.26156,7.9175],[-77.23773,7.91983],[-77.21528,7.91673],[-77.20886,7.923],[-77.1887,7.92246],[-77.17611,7.91785],[-77.16007,7.92956],[-77.18322,7.95523],[-77.16801,7.96602],[-77.16653,7.97273],[-77.1821,7.98633],[-77.19081,7.98769],[-77.19998,7.99993],[-77.21486,8.01149],[-77.21406,8.01931],[-77.2215,8.02713],[-77.23342,8.02305],[-77.22547,8.03528],[-77.22851,8.05704],[-77.22743,8.06724],[-77.21811,8.08152],[-77.22184,8.10158],[-77.2338,8.11619],[-77.23272,8.13013],[-77.22615,8.13591],[-77.2565,8.15564],[-77.24795,8.16091],[-77.24627,8.17434],[-77.25161,8.18886],[-77.2597,8.19388],[-77.25939,8.20799],[-77.26735,8.21377],[-77.28081,8.21684],[-77.27989,8.22423],[-77.28995,8.2425],[-77.28397,8.25321],[-77.28614,8.26162],[-77.29654,8.26324],[-77.30248,8.27063],[-77.29743,8.28618],[-77.30499,8.28893],[-77.31118,8.27129],[-77.3208,8.2754],[-77.33179,8.27271],[-77.33643,8.28683],[-77.35342,8.30366],[-77.35463,8.32185],[-77.34897,8.3346],[-77.34983,8.34668],[-77.3452,8.34857],[-77.34872,8.35936],[-77.35769,8.36442],[-77.36185,8.37763],[-77.35541,8.38774],[-77.35928,8.40193],[-77.37388,8.41202],[-77.37942,8.42541],[-77.38597,8.43109],[-77.38496,8.43744],[-77.3929,8.44811],[-77.39878,8.46218],[-77.40415,8.46657],[-77.40059,8.47708],[-77.41729,8.47841],[-77.43731,8.47093],[-77.44703,8.47228],[-77.44794,8.47667],[-77.44541,8.4797],[-77.44861,8.48716],[-77.44769,8.49462],[-77.45054,8.5014],[-77.45408,8.50546],[-77.45787,8.5097],[-77.44518,8.51461],[-77.43849,8.5298],[-77.43768,8.53937],[-77.43961,8.54215],[-77.43663,8.54761],[-77.44051,8.55647],[-77.43729,8.56061],[-77.43468,8.56364],[-77.42725,8.55785],[-77.42406,8.56378],[-77.41812,8.56767],[-77.40966,8.56731],[-77.41185,8.57154],[-77.4113,8.57644],[-77.41325,8.58143],[-77.41795,8.58371],[-77.41842,8.58692],[-77.41409,8.58931],[-77.40495,8.58424],[-77.39993,8.5863],[-77.39536,8.58393],[-77.3901,8.58496],[-77.39315,8.58974],[-77.39208,8.59383],[-77.39959,8.6003],[-77.40367,8.61152],[-77.40325,8.61513],[-77.40007,8.6167],[-77.40329,8.62597],[-77.40857,8.63524],[-77.41076,8.64078],[-77.40883,8.64496],[-77.39545,8.65149],[-77.3897,8.6499],[-77.38395,8.64356],[-77.3785,8.64225],[-77.37168,8.63755],[-77.3649,8.64105],[-77.36937,8.65332],[-77.3704,8.66286],[-77.36354,8.66664],[-77.36388,8.6709],[-77.35667,8.67584],[-77,10],[-77,15],[-86.04493,18.39623],[-87.84119,18.1876],[-87.85492,18.18499],[-87.86591,18.19543],[-87.89612,18.16673],[-87.98127,18.16933],[-88.00049,18.37016],[-88.05268,18.41447],[-88.31498,18.49133],[-88.33283,18.49133],[-88.35206,18.48481],[-88.36579,18.48742],[-88.37815,18.48091],[-88.40287,18.49393],[-88.44956,18.47439],[-88.45917,18.49002],[-88.4784,18.49654],[-88.52097,18.46007],[-88.53058,18.40926],[-88.54432,18.38971],[-88.55256,18.37537],[-88.54294,18.36234],[-88.60611,18.29195],[-88.59787,18.29064],[-88.60886,18.26717],[-88.60199,18.2463],[-88.6171,18.22674],[-88.63358,18.21761],[-88.64045,18.215],[-88.6583,18.20456],[-88.66654,18.20587],[-88.67066,18.19673],[-88.68439,18.19673],[-88.69675,18.18369],[-88.68439,18.17716],[-88.68165,18.1589],[-88.71872,18.108],[-88.71186,18.09495],[-88.71598,18.06231],[-88.76954,18.03358],[-88.77091,18.00877],[-88.78739,17.9944],[-88.7819,17.98265],[-88.81897,17.9513],[-88.85468,17.93039],[-88.85331,17.89642],[-88.88077,17.90034],[-88.88764,17.90818],[-88.91922,17.92124],[-88.94532,17.95913],[-88.98926,17.9526],[-89.00162,17.98526],[-89.03733,18.00355],[-89.05518,17.99963],[-89.06067,17.98787],[-89.0799,17.99179],[-89.09775,17.98265],[-89.10737,17.98526],[-89.11286,17.97481],[-89.12247,17.9735],[-89.12522,17.97742],[-89.13208,17.9722],[-89.1362,17.95391],[-89.14444,17.94868],[-89.15268,17.93954],[-89.15268,17.81537],[-90.98809,17.81603],[-90.98809,17.2523],[-91.4399,17.25099],[-91.4296,17.2241],[-91.41861,17.20967],[-91.40419,17.20376],[-91.38566,17.20573],[-91.3733,17.20573],[-91.35407,17.19065],[-91.3472,17.17621],[-91.35132,17.16178],[-91.33896,17.16047],[-91.33004,17.18015],[-91.3218,17.18474],[-91.31218,17.18146],[-91.28197,17.17884],[-91.2806,17.18146],[-91.27579,17.17818],[-91.27099,17.17359],[-91.26275,17.16637],[-91.26206,17.1585],[-91.27236,17.14603],[-91.26755,17.10863],[-91.25519,17.10273],[-91.24283,17.10076],[-91.23391,17.1001],[-91.22635,17.09419],[-91.21743,17.07713],[-91.21605,17.06663],[-91.21537,17.0535],[-91.21056,17.05218],[-91.20163,17.04234],[-91.19408,17.03971],[-91.17829,17.01804],[-91.15494,17.00491],[-91.14808,17.00491],[-91.13572,17.00688],[-91.12748,17.00623],[-91.12198,17.00097],[-91.1213,16.99178],[-91.12336,16.98259],[-91.11924,16.97668],[-91.11718,16.97536],[-91.1055,16.97077],[-91.09932,16.96289],[-91.09658,16.95369],[-91.07872,16.94252],[-91.06911,16.92873],[-91.06431,16.92545],[-91.06636,16.92216],[-91.07529,16.91231],[-91.05744,16.89917],[-91.01075,16.88734],[-90.99564,16.87814],[-90.99015,16.86369],[-90.98328,16.86763],[-90.98465,16.88208],[-90.98603,16.8926],[-90.98053,16.89917],[-90.97435,16.90245],[-90.95787,16.89917],[-90.95376,16.88668],[-90.95993,16.87749],[-90.97023,16.87223],[-90.97641,16.86566],[-90.97023,16.86106],[-90.95925,16.86369],[-90.95307,16.86566],[-90.93453,16.85974],[-90.93247,16.85186],[-90.93453,16.84331],[-90.92629,16.83411],[-90.92354,16.82426],[-90.91805,16.82031],[-90.90088,16.82426],[-90.8844,16.82557],[-90.8638,16.8144],[-90.85831,16.80585],[-90.85694,16.79796],[-90.83222,16.79599],[-90.80544,16.79862],[-90.80132,16.79402],[-90.80407,16.78547],[-90.80407,16.7789],[-90.80063,16.7743],[-90.79239,16.77101],[-90.76149,16.76181],[-90.75737,16.75655],[-90.75806,16.75129],[-90.72167,16.72959],[-90.71686,16.72893],[-90.71068,16.72367],[-90.70725,16.71512],[-90.71,16.7092],[-90.70725,16.70262],[-90.70244,16.70065],[-90.69077,16.69407],[-90.68253,16.68881],[-90.67978,16.67632],[-90.67635,16.66053],[-90.66674,16.65066],[-90.65781,16.63816],[-90.66193,16.63158],[-90.66193,16.62105],[-90.65575,16.60921],[-90.65644,16.60461],[-90.65369,16.59539],[-90.66742,16.58947],[-90.66811,16.58157],[-90.66124,16.57763],[-90.64957,16.57763],[-90.6427,16.58157],[-90.64133,16.58881],[-90.64339,16.59605],[-90.6379,16.59408],[-90.63241,16.5875],[-90.62623,16.57697],[-90.64202,16.56775],[-90.6482,16.55854],[-90.64682,16.5513],[-90.64957,16.54472],[-90.64408,16.5355],[-90.64614,16.52036],[-90.64408,16.51641],[-90.63996,16.51444],[-90.63309,16.51444],[-90.62005,16.52234],[-90.61181,16.51839],[-90.60769,16.50851],[-90.60837,16.49798],[-90.61661,16.49074],[-90.62279,16.48876],[-90.63172,16.49008],[-90.63584,16.48679],[-90.63584,16.48218],[-90.62897,16.47888],[-90.61867,16.47954],[-90.61593,16.48613],[-90.61318,16.49008],[-90.60494,16.48744],[-90.59807,16.49139],[-90.59327,16.48876],[-90.59533,16.47954],[-90.59258,16.47098],[-90.58777,16.46967],[-90.56992,16.47493],[-90.55893,16.47954],[-90.54451,16.48086],[-90.54795,16.47427],[-90.54657,16.46703],[-90.52872,16.45913],[-90.52392,16.46045],[-90.5246,16.46835],[-90.51568,16.47098],[-90.50332,16.46769],[-90.4992,16.46374],[-90.49851,16.45584],[-90.4937,16.45386],[-90.48958,16.45979],[-90.48134,16.46176],[-90.4786,16.45649],[-90.48066,16.45189],[-90.47928,16.44398],[-90.48134,16.43674],[-90.4889,16.42884],[-90.48546,16.42357],[-90.47791,16.42554],[-90.46967,16.42423],[-90.46074,16.42159],[-90.42504,16.42554],[-90.41886,16.42488],[-90.41199,16.4071],[-90.40787,16.40447],[-90.40169,16.40908],[-90.39963,16.41566],[-90.38933,16.41303],[-90.38865,16.4071],[-90.39139,16.40381],[-90.40169,16.39986],[-90.40444,16.39524],[-90.40238,16.39063],[-90.38521,16.3768],[-90.37354,16.37482],[-90.37148,16.36758],[-90.37491,16.36099],[-90.38453,16.36165],[-90.3859,16.36889],[-90.39277,16.37416],[-90.39895,16.37285],[-90.41337,16.36099],[-90.41405,16.3511],[-90.41062,16.34649],[-90.40787,16.34649],[-90.40719,16.34979],[-90.40925,16.35506],[-90.40787,16.35967],[-90.40581,16.36165],[-90.40238,16.35901],[-90.40307,16.35242],[-90.39963,16.34979],[-90.38659,16.34649],[-90.38315,16.3432],[-90.38384,16.33793],[-90.38659,16.33529],[-90.39071,16.33661],[-90.39551,16.33859],[-90.40169,16.33859],[-90.40444,16.33134],[-90.41199,16.32936],[-90.41337,16.32409],[-90.41062,16.31355],[-90.4168,16.30498],[-90.42641,16.3063],[-90.4374,16.303],[-90.44014,16.29575],[-90.43396,16.2918],[-90.43877,16.2885],[-90.4422,16.28191],[-90.43877,16.27598],[-90.43259,16.27466],[-90.42435,16.26148],[-90.4271,16.25489],[-90.43465,16.25554],[-90.44152,16.26214],[-90.44907,16.2595],[-90.45594,16.24895],[-90.45456,16.24302],[-90.44838,16.24236],[-90.44358,16.24632],[-90.44014,16.24632],[-90.43877,16.23972],[-90.43122,16.23577],[-90.42984,16.23181],[-90.44014,16.23181],[-90.45182,16.22588],[-90.458,16.21533],[-90.458,16.20742],[-90.45525,16.19489],[-90.45525,16.1883],[-90.4477,16.1817],[-90.43671,16.18038],[-90.4271,16.17181],[-90.42641,16.16455],[-90.43808,16.1573],[-90.44701,16.15598],[-90.4525,16.15004],[-90.44838,16.14411],[-90.43877,16.14279],[-90.43396,16.14147],[-90.42984,16.13949],[-90.4319,16.1296],[-90.42984,16.11904],[-90.43877,16.11838],[-90.45044,16.12564],[-90.45662,16.12168],[-90.45662,16.1164],[-90.45937,16.10717],[-90.45662,16.10255],[-90.45868,16.09463],[-90.45319,16.09331],[-90.44564,16.09529],[-90.44426,16.10189],[-90.4319,16.10717],[-90.42641,16.10321],[-90.42778,16.09727],[-90.43534,16.09859],[-90.43671,16.09661],[-90.44014,16.09265],[-90.44014,16.09134],[-90.44632,16.08408],[-90.44632,16.08012],[-90.44358,16.07748],[-90.4422,16.07484],[-91.73172,16.07418],[-92.211,15.26166],[-92.05925,15.07079],[-92.06543,15.06947],[-92.07367,15.05886],[-92.06955,15.05753],[-92.0723,15.0509],[-92.0723,15.04825],[-92.07917,15.0456],[-92.07779,15.03499],[-92.07917,15.03101],[-92.08741,15.02305],[-92.09427,15.02172],[-92.09839,15.00979],[-92.12311,15.01642],[-92.1341,15.01376],[-92.13685,15.00581],[-92.15058,14.98856],[-92.14783,14.97928],[-92.14646,14.96866],[-92.1492,14.95009],[-92.14234,14.9408],[-92.1492,14.93151],[-92.14234,14.91559],[-92.14234,14.91426],[-92.14509,14.91028],[-92.13685,14.89568],[-92.13685,14.88639],[-92.14097,14.88241],[-92.1492,14.87046],[-92.16706,14.85985],[-92.17392,14.86117],[-92.17392,14.85454],[-92.18354,14.84923],[-92.18079,14.83728],[-92.18491,14.82931],[-92.17804,14.81737],[-92.17667,14.80409],[-92.1698,14.78683],[-92.17118,14.78152],[-92.16156,14.77488],[-92.16156,14.76293],[-92.17255,14.75496],[-92.17118,14.74832],[-92.16294,14.73637],[-92.15882,14.73902],[-92.14646,14.71644],[-92.14783,14.69785],[-92.14783,14.66065],[-92.15882,14.65135],[-92.16019,14.63939],[-92.16843,14.63939],[-92.17942,14.61547],[-92.17392,14.61016],[-92.18491,14.57959],[-92.19452,14.57029],[-92.20551,14.56231],[-92.2165,14.55567],[-92.22336,14.53706],[-92.23435,14.53706],[-92.24212,14.54275],[-93,14],[-130,14]]]}},{"type":"Feature","properties":{"cq_zone_name":"West Indies Zone","cq_zone_number":8,"cq_zone_name_loc":[22,-60]},"geometry":{"type":"Polygon","coordinates":[[[-35,28],[-35,20.5],[-26,20.5],[-26,11.5],[-62,11.5],[-77,15],[-86.04493,18.39623],[-85.93506,24.55327],[-79.5,24],[-79.5,28],[-35,28]]]}},{"type":"Feature","properties":{"cq_zone_name":"Northern Zone of South America","cq_zone_number":9,"cq_zone_name_loc":[9,-70]},"geometry":{"type":"Polygon","coordinates":[[[-26,11.5],[-26,5],[-51.66667,5],[-51.66667,4.45833],[-51.62045,4.22076],[-51.61955,4.15839],[-51.66261,4.05219],[-51.77158,3.97886],[-51.80366,3.87266],[-51.88379,3.80482],[-51.91449,3.7863],[-51.92091,3.72702],[-51.95755,3.72804],[-51.99236,3.6369],[-52.23245,3.24215],[-52.26612,3.25547],[-52.302,3.21698],[-52.29797,3.1758],[-52.32689,3.16752],[-52.34922,3.12345],[-52.3268,3.07565],[-52.38769,2.94339],[-52.38243,2.90743],[-52.41562,2.89342],[-52.5429,2.63986],[-52.53102,2.57168],[-52.6034,2.47095],[-52.65381,2.38668],[-52.84252,2.27852],[-52.92961,2.17035],[-53.03207,2.17202],[-53.09334,2.2176],[-53.28179,2.19074],[-53.23404,2.26131],[-53.32912,2.34561],[-53.47806,2.25622],[-53.74944,2.31003],[-53.72694,2.34738],[-53.75884,2.37267],[-53.82361,2.33377],[-53.81147,2.31134],[-53.88059,2.3049],[-53.88698,2.27007],[-53.93272,2.27725],[-53.9418,2.22574],[-54.0149,2.1831],[-54.06053,2.17889],[-54.11715,2.10332],[-54.19811,2.17309],[-54.26258,2.1413],[-54.35309,2.17654],[-54.3612,2.20904],[-54.41325,2.19762],[-54.53906,2.26172],[-54.54899,2.32955],[-54.6073,2.3225],[-54.69276,2.32445],[-54.71077,2.37757],[-54.69307,2.41423],[-54.69177,2.46411],[-54.75639,2.47558],[-54.8417,2.4107],[-54.96545,2.55985],[-54.93532,2.58779],[-54.93814,2.62669],[-55.07494,2.53644],[-55.12081,2.5228],[-55.12824,2.56951],[-55.18153,2.55869],[-55.19225,2.51081],[-55.25516,2.49313],[-55.31506,2.5236],[-55.36354,2.46887],[-55.34611,2.43609],[-55.38266,2.40894],[-55.42196,2.43531],[-55.49971,2.43972],[-55.72006,2.40522],[-55.76374,2.42183],[-55.77721,2.46039],[-55.83161,2.46617],[-55.94591,2.53261],[-55.98307,2.51011],[-56.00924,2.4492],[-55.99175,2.42163],[-56.02919,2.36661],[-56.04365,2.32792],[-56.08355,2.37129],[-56.1388,2.26484],[-56.04446,2.22931],[-56.04673,2.17587],[-55.99957,2.16634],[-55.9684,2.08689],[-55.94458,2.09109],[-55.90428,2.0349],[-55.93196,1.98762],[-55.9047,1.90741],[-55.93259,1.87326],[-55.99661,1.83789],[-56.05642,1.85807],[-56.08221,1.84894],[-56.11349,1.85628],[-56.13103,1.86156],[-56.15682,1.89429],[-56.17544,1.90486],[-56.1865,1.89003],[-56.23602,1.9054],[-56.24441,1.8785],[-56.32849,1.93311],[-56.36186,1.9351],[-56.40074,1.92062],[-56.42862,1.94457],[-56.45377,1.95204],[-56.48104,1.94847],[-56.50282,1.93117],[-56.57954,1.90152],[-56.60141,1.92787],[-56.62329,1.94049],[-56.66361,1.90466],[-56.72591,1.92374],[-56.79557,1.84933],[-56.80005,1.8669],[-56.82376,1.88447],[-56.85744,1.88941],[-56.90211,1.89984],[-56.90797,1.91878],[-56.92206,1.92674],[-56.97295,1.91877],[-56.97715,1.90257],[-57.00606,1.90834],[-57.04871,1.93606],[-57.07004,1.9561],[-57.07763,2.00084],[-57.09831,2.01346],[-57.1376,2.0044],[-57.1696,1.97516],[-57.19886,1.96789],[-57.21988,1.95718],[-57.24914,1.93],[-57.28664,1.97419],[-57.32964,1.97995],[-57.3576,1.95305],[-57.38281,1.9179],[-57.40803,1.90884],[-57.43325,1.89154],[-57.46121,1.82483],[-57.49192,1.78282],[-57.53087,1.70375],[-57.55883,1.68508],[-57.59676,1.68831],[-57.63882,1.67918],[-57.74421,1.70827],[-57.78814,1.70409],[-57.79964,1.69703],[-57.80565,1.68037],[-57.83277,1.66489],[-57.87463,1.65926],[-57.93573,1.62892],[-57.96625,1.64442],[-57.98509,1.651],[-57.99065,1.64056],[-57.98523,1.58482],[-58.00116,1.54473],[-58.0028,1.51259],[-58.01687,1.50428],[-58.03643,1.50009],[-58.07624,1.50407],[-58.1325,1.4983],[-58.14571,1.50547],[-58.14657,1.52362],[-58.15102,1.55169],[-58.1875,1.55425],[-58.2226,1.54994],[-58.24672,1.5573],[-58.26534,1.56741],[-58.29572,1.56223],[-58.31228,1.59052],[-58.32061,1.59548],[-58.33176,1.58996],[-58.33742,1.56109],[-58.3575,1.54664],[-58.37964,1.54317],[-58.38846,1.52105],[-58.37742,1.49283],[-58.38973,1.46667],[-58.42813,1.4556],[-58.47889,1.46033],[-58.49051,1.45819],[-58.49801,1.45056],[-58.50399,1.43971],[-58.5086,1.42886],[-58.50451,1.40753],[-58.49425,1.39237],[-58.47098,1.35657],[-58.46563,1.32341],[-58.47676,1.2978],[-58.49476,1.27219],[-58.5032,1.26338],[-58.51234,1.27037],[-58.52168,1.26717],[-58.5184,1.25392],[-58.52499,1.25047],[-58.53021,1.26487],[-58.53997,1.26345],[-58.54149,1.28229],[-58.55056,1.2874],[-58.55779,1.2821],[-58.56777,1.28985],[-58.57259,1.28283],[-58.57948,1.27856],[-58.57814,1.26967],[-58.58711,1.25804],[-58.59281,1.26717],[-58.60607,1.27013],[-58.62036,1.27995],[-58.6319,1.28084],[-58.64121,1.27848],[-58.65464,1.28023],[-58.67292,1.27379],[-58.68077,1.28129],[-58.6845,1.29291],[-58.7002,1.29145],[-58.71225,1.28453],[-58.71882,1.26389],[-58.72401,1.24256],[-58.71958,1.23085],[-58.74034,1.19633],[-58.75274,1.20521],[-58.76377,1.19349],[-58.77479,1.17902],[-58.78445,1.18378],[-58.79822,1.18168],[-58.80101,1.1727],[-58.80791,1.17609],[-58.82444,1.16437],[-58.8294,1.16895],[-58.82708,1.17605],[-58.82888,1.18315],[-58.85668,1.17447],[-58.85615,1.18523],[-58.86001,1.18649],[-58.86112,1.19874],[-58.87107,1.19967],[-58.87226,1.20974],[-58.87757,1.21982],[-58.88847,1.22417],[-58.90074,1.22303],[-58.91155,1.23173],[-58.90484,1.23769],[-58.90364,1.24639],[-58.89213,1.25029],[-58.89161,1.25556],[-58.89897,1.27193],[-58.91501,1.27532],[-58.92557,1.28419],[-58.91439,1.30262],[-58.92108,1.31007],[-58.95797,1.30963],[-58.97023,1.30735],[-58.9825,1.29409],[-58.98987,1.31492],[-58.99586,1.31929],[-59.0125,1.31661],[-59.02639,1.32355],[-59.04783,1.31744],[-59.0661,1.33086],[-59.07614,1.32506],[-59.09568,1.33825],[-59.10619,1.34196],[-59.11807,1.33743],[-59.13223,1.34484],[-59.15093,1.3432],[-59.16053,1.35185],[-59.17699,1.35364],[-59.18247,1.36298],[-59.1907,1.3682],[-59.19893,1.37149],[-59.21265,1.36655],[-59.22775,1.36903],[-59.23391,1.37768],[-59.24661,1.38063],[-59.27991,1.40418],[-59.27566,1.41285],[-59.28927,1.438],[-59.28572,1.4453],[-59.30688,1.46221],[-59.31363,1.46172],[-59.31626,1.45574],[-59.32701,1.45338],[-59.32964,1.46799],[-59.32129,1.47711],[-59.32941,1.49241],[-59.32867,1.5028],[-59.33342,1.51045],[-59.35424,1.51329],[-59.36081,1.51022],[-59.3619,1.50167],[-59.3833,1.50103],[-59.37807,1.50851],[-59.38507,1.515],[-59.38384,1.52424],[-59.39372,1.52898],[-59.39811,1.53784],[-59.3937,1.54995],[-59.40385,1.55257],[-59.41538,1.54695],[-59.42882,1.55769],[-59.43058,1.56842],[-59.42823,1.57778],[-59.44236,1.59675],[-59.44825,1.61572],[-59.46465,1.61248],[-59.48518,1.62296],[-59.49441,1.63816],[-59.49353,1.66017],[-59.49953,1.67257],[-59.50441,1.67139],[-59.51066,1.66472],[-59.51417,1.67727],[-59.52593,1.6857],[-59.53363,1.70394],[-59.5331,1.71668],[-59.54321,1.71502],[-59.55195,1.72158],[-59.57629,1.73335],[-59.60475,1.7204],[-59.61536,1.71295],[-59.62735,1.72174],[-59.63523,1.73878],[-59.65135,1.73934],[-59.66198,1.73441],[-59.66881,1.75063],[-59.69075,1.7545],[-59.69217,1.75872],[-59.68466,1.76843],[-59.6854,1.78397],[-59.67858,1.79265],[-59.67829,1.80184],[-59.67388,1.80623],[-59.665,1.80924],[-59.65715,1.80814],[-59.6566,1.81218],[-59.65948,1.81829],[-59.65015,1.83736],[-59.65093,1.84785],[-59.6575,1.85378],[-59.66158,1.86235],[-59.66565,1.86475],[-59.66839,1.85904],[-59.66701,1.84373],[-59.67044,1.83643],[-59.67678,1.83416],[-59.69137,1.84561],[-59.70115,1.84917],[-59.70887,1.85032],[-59.71663,1.84807],[-59.72302,1.84856],[-59.73512,1.84509],[-59.74489,1.84775],[-59.75226,1.85898],[-59.75003,1.87022],[-59.74523,1.87535],[-59.7528,1.88734],[-59.75693,1.89728],[-59.75351,1.90652],[-59.75232,1.91749],[-59.74427,1.92639],[-59.7448,1.9353],[-59.73778,1.94969],[-59.73982,1.95679],[-59.73568,1.96319],[-59.7377,1.96915],[-59.73595,1.97716],[-59.73077,1.98174],[-59.73344,1.98644],[-59.73337,2.00281],[-59.73107,2.00768],[-59.73472,2.01424],[-59.73289,2.0201],[-59.72372,2.02258],[-59.72142,2.02711],[-59.73153,2.03333],[-59.73273,2.04642],[-59.73701,2.05058],[-59.73709,2.0561],[-59.74057,2.06675],[-59.74404,2.0719],[-59.73407,2.09053],[-59.72273,2.09886],[-59.72323,2.12147],[-59.72923,2.12177],[-59.72407,2.13302],[-59.72801,2.13453],[-59.73032,2.1418],[-59.73813,2.14907],[-59.73796,2.15847],[-59.7419,2.16512],[-59.7382,2.17561],[-59.73863,2.18198],[-59.73467,2.18237],[-59.73638,2.18933],[-59.72605,2.20325],[-59.72832,2.21649],[-59.73196,2.22286],[-59.73101,2.23217],[-59.7195,2.23639],[-59.72185,2.24644],[-59.72009,2.25033],[-59.72519,2.25421],[-59.72824,2.26427],[-59.72188,2.27501],[-59.73807,2.29047],[-59.75303,2.28723],[-59.76937,2.29359],[-59.77978,2.28404],[-59.79666,2.29453],[-59.80259,2.29921],[-59.80304,2.30527],[-59.8139,2.3155],[-59.82476,2.32024],[-59.83002,2.32835],[-59.84227,2.31962],[-59.84565,2.33034],[-59.85453,2.33146],[-59.85295,2.33869],[-59.86764,2.34766],[-59.87368,2.36148],[-59.88109,2.35198],[-59.89674,2.36031],[-59.91016,2.3912],[-59.89764,2.40184],[-59.89748,2.41248],[-59.89757,2.4226],[-59.88943,2.42861],[-59.89923,2.44062],[-59.89273,2.46328],[-59.89853,2.47305],[-59.89608,2.47871],[-59.91081,2.49398],[-59.91867,2.50924],[-59.91714,2.52503],[-59.93742,2.55249],[-59.92856,2.56624],[-59.93822,2.58308],[-59.9685,2.59306],[-59.97163,2.60008],[-59.96377,2.60985],[-59.95631,2.60743],[-59.96258,2.6153],[-59.95924,2.62179],[-59.96903,2.62999],[-59.97607,2.64229],[-59.96855,2.66135],[-59.97577,2.67224],[-59.98437,2.67628],[-59.99471,2.7022],[-59.98652,2.92592],[-59.95222,2.98292],[-59.95362,3.08381],[-59.90561,3.1567],[-59.91182,3.21234],[-59.88746,3.22645],[-59.82833,3.33366],[-59.83237,3.35313],[-59.80199,3.35779],[-59.81609,3.42371],[-59.8405,3.43411],[-59.80279,3.49672],[-59.80883,3.51312],[-59.82997,3.52266],[-59.84493,3.55311],[-59.86951,3.56025],[-59.84579,3.60288],[-59.76646,3.62837],[-59.74733,3.65593],[-59.72409,3.6643],[-59.70496,3.68467],[-59.6673,3.70641],[-59.67436,3.75673],[-59.66838,3.78239],[-59.58756,3.80634],[-59.58835,3.88682],[-59.51498,3.94539],[-59.58318,3.99992],[-59.65139,4.0709],[-59.61935,4.13297],[-59.64813,4.14698],[-59.6673,4.14455],[-59.68647,4.14828],[-59.718,4.16572],[-59.72979,4.18315],[-59.72647,4.18962],[-59.73906,4.21011],[-59.73312,4.22129],[-59.73817,4.23658],[-59.70913,4.26442],[-59.71384,4.27423],[-59.73091,4.27171],[-59.72875,4.28906],[-59.7105,4.308],[-59.70045,4.30829],[-59.70413,4.31953],[-59.68927,4.33419],[-59.67578,4.34475],[-59.68293,4.36482],[-59.66812,4.3712],[-59.68218,4.38318],[-59.69349,4.37872],[-59.71681,4.39856],[-59.73461,4.42181],[-59.75097,4.42176],[-59.78233,4.44494],[-59.79512,4.44994],[-59.7928,4.46315],[-59.80326,4.46836],[-59.81046,4.44728],[-59.82658,4.44879],[-59.83172,4.45578],[-59.86209,4.45243],[-59.8705,4.46003],[-59.86259,4.4725],[-59.89862,4.4788],[-59.90307,4.45841],[-59.91603,4.46422],[-59.91182,4.47825],[-59.92881,4.48234],[-59.9257,4.48916],[-59.96893,4.50827],[-59.97268,4.48871],[-59.96956,4.48009],[-60.00693,4.49453],[-60.03193,4.49117],[-60.06959,4.49677],[-60.06465,4.52266],[-60.0762,4.52527],[-60.08395,4.51771],[-60.0871,4.53545],[-60.10575,4.52439],[-60.09706,4.51117],[-60.11926,4.50273],[-60.1346,4.51278],[-60.15955,4.51462],[-60.15222,4.54981],[-60.16001,4.56174],[-60.1481,4.58011],[-60.14696,4.57184],[-60.1362,4.56494],[-60.13632,4.58168],[-60.12133,4.57789],[-60.13037,4.596],[-60.12156,4.60316],[-60.09536,4.60714],[-60.06915,4.6166],[-60.07476,4.63638],[-60.06727,4.64696],[-60.07488,4.65753],[-60.04479,4.69101],[-60.02431,4.70395],[-60.02522,4.71487],[-60.03392,4.71964],[-60.03713,4.72852],[-60.02385,4.74215],[-60.02159,4.78149],[-60.03444,4.78935],[-60.03198,4.80507],[-60.02197,4.80985],[-60.02569,4.82009],[-60.0218,4.83751],[-60.01173,4.84056],[-60.00157,4.90946],[-59.98867,4.9551],[-59.98813,4.99526],[-59.98347,5.01901],[-59.97758,5.01999],[-59.97601,5.04442],[-59.96894,5.07296],[-59.98621,5.08116],[-60.01927,5.088],[-60.03595,5.10578],[-60.04597,5.10851],[-60.06464,5.13448],[-60.07725,5.13856],[-60.08899,5.14581],[-60.10072,5.18864],[-60.10909,5.2011],[-60.12994,5.24929],[-60.1541,5.23235],[-60.17689,5.23045],[-60.20736,5.27383],[-60.22763,5.25923],[-60.25477,5.24737],[-60.29083,5.21807],[-60.32003,5.20108],[-60.34069,5.20423],[-60.36828,5.19276],[-60.37609,5.21562],[-60.40269,5.21212],[-60.43897,5.17698],[-60.46427,5.19381],[-60.49358,5.19396],[-60.51807,5.20263],[-60.54943,5.18532],[-60.57976,5.19433],[-60.59911,5.2136],[-60.62406,5.21111],[-60.64787,5.22047],[-60.68815,5.22845],[-60.70837,5.21641],[-60.72171,5.20983],[-60.73879,5.19941],[-60.736,5.18822],[-60.70711,5.1866],[-60.68093,5.17105],[-60.66717,5.1416],[-60.66303,5.11216],[-60.64925,5.09635],[-60.65058,5.06139],[-60.64367,5.04148],[-60.59552,4.99892],[-60.59067,4.97867],[-60.59392,4.97292],[-60.58755,4.95349],[-60.59355,4.94364],[-60.59268,4.92832],[-60.6104,4.92529],[-60.6227,4.90839],[-60.62813,4.89148],[-60.65258,4.8827],[-60.64524,4.87318],[-60.65713,4.85955],[-60.65756,4.85146],[-60.67352,4.84142],[-60.67574,4.83138],[-60.68569,4.82705],[-60.68602,4.82134],[-60.70934,4.8072],[-60.72855,4.79031],[-60.72022,4.78026],[-60.73659,4.77381],[-60.75159,4.75779],[-60.76286,4.76072],[-60.8071,4.7486],[-60.81562,4.73033],[-60.83239,4.72847],[-60.8522,4.70475],[-60.87681,4.71661],[-60.89994,4.7198],[-60.91322,4.70155],[-60.90864,4.69082],[-60.91734,4.66664],[-60.92776,4.66265],[-60.94573,4.65797],[-60.95118,4.64443],[-60.93948,4.63705],[-60.93323,4.62023],[-60.94132,4.60028],[-60.93431,4.59745],[-60.9328,4.5864],[-60.94281,4.58072],[-60.95558,4.58463],[-60.95157,4.56233],[-60.95718,4.54825],[-60.9821,4.54388],[-60.99465,4.53062],[-60.99367,4.52051],[-61.01574,4.51947],[-61.05291,4.52801],[-61.08115,4.52013],[-61.09114,4.52418],[-61.096,4.50901],[-61.11286,4.51271],[-61.12421,4.50958],[-61.13045,4.49783],[-61.16834,4.50547],[-61.17492,4.51443],[-61.18699,4.52339],[-61.20144,4.52374],[-61.21452,4.53093],[-61.22141,4.52512],[-61.24616,4.53437],[-61.25308,4.53096],[-61.26825,4.5385],[-61.27523,4.52895],[-61.28358,4.53719],[-61.30327,4.54005],[-61.3193,4.5348],[-61.32972,4.52671],[-61.31885,4.50218],[-61.30935,4.50572],[-61.29445,4.49292],[-61.29328,4.48148],[-61.28249,4.47484],[-61.29014,4.46878],[-61.28406,4.45587],[-61.29697,4.46044],[-61.30617,4.45108],[-61.32361,4.4472],[-61.31783,4.43443],[-61.33883,4.42918],[-61.34472,4.42119],[-61.37042,4.4273],[-61.4016,4.42793],[-61.40827,4.43441],[-61.42318,4.4354],[-61.43396,4.4275],[-61.4475,4.42508],[-61.43628,4.43786],[-61.4462,4.44168],[-61.46024,4.43865],[-61.46223,4.42848],[-61.49574,4.41156],[-61.5133,4.40922],[-61.51729,4.38997],[-61.52127,4.37414],[-61.51138,4.35343],[-61.52319,4.34488],[-61.51934,4.32915],[-61.50341,4.32096],[-61.52483,4.29718],[-61.52084,4.29051],[-61.52922,4.28932],[-61.54721,4.26896],[-61.54775,4.26146],[-61.59004,4.24601],[-61.60693,4.26273],[-61.61832,4.25344],[-61.62421,4.2551],[-61.6312,4.24268],[-61.63818,4.24121],[-61.64666,4.26019],[-61.66888,4.26684],[-61.67807,4.25783],[-61.70059,4.259],[-61.72365,4.24763],[-61.7272,4.25502],[-61.72113,4.26104],[-61.72056,4.27117],[-61.73659,4.26541],[-61.73338,4.26103],[-61.77545,4.25044],[-61.76326,4.23711],[-61.78146,4.22552],[-61.78937,4.23173],[-61.79727,4.22973],[-61.80966,4.20391],[-61.82136,4.20411],[-61.81521,4.19336],[-61.8167,4.17774],[-61.81551,4.1672],[-61.83139,4.16467],[-61.84728,4.16762],[-61.85313,4.17667],[-61.86448,4.17819],[-61.87445,4.17286],[-61.86902,4.16251],[-61.87191,4.1555],[-61.89552,4.16476],[-61.92086,4.16067],[-61.9222,4.14595],[-61.92903,4.12165],[-61.93646,4.13484],[-61.94801,4.13434],[-61.96974,4.16346],[-61.9798,4.16519],[-61.98024,4.18472],[-61.98948,4.18113],[-62.00147,4.16658],[-62.02613,4.15391],[-62.0315,4.16146],[-62.04636,4.15462],[-62.06235,4.16151],[-62.07249,4.15555],[-62.0785,4.14548],[-62.06786,4.13083],[-62.07818,4.12206],[-62.08646,4.12782],[-62.09614,4.12838],[-62.09552,4.12278],[-62.10532,4.11761],[-62.10825,4.12203],[-62.11687,4.11718],[-62.11028,4.09203],[-62.1387,4.08605],[-62.14241,4.07734],[-62.15954,4.09157],[-62.18596,4.09731],[-62.20552,4.11265],[-62.21427,4.11212],[-62.23401,4.12117],[-62.24482,4.11995],[-62.24601,4.12969],[-62.25648,4.12951],[-62.26695,4.13479],[-62.2781,4.13255],[-62.29475,4.14537],[-62.29604,4.13963],[-62.31243,4.13936],[-62.31637,4.14568],[-62.33336,4.1472],[-62.35035,4.15557],[-62.3524,4.16851],[-62.36019,4.17367],[-62.36523,4.16651],[-62.3895,4.18058],[-62.40026,4.17803],[-62.41789,4.18643],[-62.42846,4.18382],[-62.43546,4.17634],[-62.44657,4.18257],[-62.44808,4.17852],[-62.46332,4.18132],[-62.46888,4.16808],[-62.4538,4.16146],[-62.46208,4.15484],[-62.45946,4.14617],[-62.47841,4.13482],[-62.49255,4.14538],[-62.50985,4.14732],[-62.50776,4.13422],[-62.53109,4.13965],[-62.52008,4.12591],[-62.52413,4.11613],[-62.55146,4.11165],[-62.54294,4.09996],[-62.54885,4.09716],[-62.55475,4.08341],[-62.55069,4.07856],[-62.5384,4.0833],[-62.54259,4.06201],[-62.53167,4.05169],[-62.53631,4.04372],[-62.54619,4.04932],[-62.56143,4.03842],[-62.56156,4.03163],[-62.55147,4.02005],[-62.57845,4.01668],[-62.57886,4.02913],[-62.60852,4.0458],[-62.62938,4.0449],[-62.64165,4.04811],[-62.65735,4.04722],[-62.65717,4.03722],[-62.67603,4.04188],[-62.69215,4.0342],[-62.73161,4.0416],[-62.75351,4.03419],[-62.74854,4.02519],[-62.76692,4.01277],[-62.76204,3.98772],[-62.74067,3.97912],[-62.75111,3.96574],[-62.76428,3.94003],[-62.7824,3.93656],[-62.78335,3.92007],[-62.78568,3.91729],[-62.78758,3.89528],[-62.77598,3.88252],[-62.77537,3.87661],[-62.75492,3.86067],[-62.75317,3.8514],[-62.77094,3.83766],[-62.73691,3.80955],[-62.72623,3.8061],[-62.72986,3.79841],[-62.73897,3.79073],[-62.73299,3.78133],[-62.73799,3.76919],[-62.73906,3.75107],[-62.73326,3.73981],[-62.73205,3.70708],[-62.73512,3.69097],[-62.74438,3.68652],[-62.74334,3.67863],[-62.75087,3.67246],[-62.75626,3.68058],[-62.76578,3.68458],[-62.7697,3.69396],[-62.78852,3.70312],[-62.79018,3.72051],[-62.80832,3.72419],[-62.81575,3.73292],[-62.83555,3.73617],[-62.84831,3.72161],[-62.85282,3.71528],[-62.87225,3.70252],[-62.88069,3.6925],[-62.88638,3.68864],[-62.88795,3.68205],[-62.90552,3.67246],[-62.92102,3.67931],[-62.91966,3.67178],[-62.92242,3.66424],[-62.92245,3.65191],[-62.94067,3.62416],[-62.95184,3.61302],[-62.96027,3.60874],[-62.99208,3.61113],[-63.01072,3.63939],[-63.01573,3.64543],[-63.02486,3.65147],[-63.03075,3.66492],[-63.04826,3.67184],[-63.06165,3.6815],[-63.07298,3.68568],[-63.08157,3.69397],[-63.06784,3.69631],[-63.06236,3.70509],[-63.06239,3.73772],[-63.05832,3.73994],[-63.05843,3.75125],[-63.06687,3.75167],[-63.08424,3.76923],[-63.08463,3.77694],[-63.12251,3.80469],[-63.13209,3.80091],[-63.15265,3.80536],[-63.16562,3.80398],[-63.17622,3.81151],[-63.19369,3.81356],[-63.20666,3.81081],[-63.22478,3.83563],[-63.23055,3.84949],[-63.23314,3.88131],[-63.22269,3.89601],[-63.21128,3.93213],[-63.204,3.95181],[-63.21714,3.95072],[-63.24676,3.95373],[-63.25107,3.96113],[-63.26636,3.96031],[-63.28166,3.95401],[-63.2841,3.96402],[-63.28791,3.97128],[-63.31277,3.98115],[-63.31634,3.97185],[-63.31167,3.96117],[-63.32774,3.9638],[-63.33969,3.95683],[-63.36977,3.96345],[-63.39161,3.98103],[-63.41551,3.97601],[-63.42843,3.97647],[-63.4522,3.95614],[-63.439,3.94875],[-63.44228,3.93862],[-63.43595,3.93465],[-63.41768,3.93472],[-63.41953,3.92311],[-63.41039,3.91287],[-63.41864,3.89959],[-63.43238,3.89226],[-63.43788,3.88219],[-63.43308,3.87678],[-63.43653,3.86589],[-63.45249,3.85665],[-63.46918,3.86359],[-63.47214,3.86916],[-63.48493,3.87618],[-63.49633,3.86766],[-63.50085,3.86668],[-63.49412,3.84827],[-63.49987,3.84022],[-63.50337,3.85054],[-63.51236,3.84853],[-63.52074,3.85547],[-63.532,3.85838],[-63.53942,3.86558],[-63.54876,3.8649],[-63.55371,3.87313],[-63.554,3.89233],[-63.57106,3.88416],[-63.59282,3.88835],[-63.58272,3.89916],[-63.59254,3.90587],[-63.58745,3.91927],[-63.59271,3.93135],[-63.6062,3.94344],[-63.6245,3.96785],[-63.63639,3.97732],[-63.64279,3.97857],[-63.65227,4.00411],[-63.67822,4.02006],[-63.68868,4.01606],[-63.68747,3.99836],[-63.6974,3.95748],[-63.70135,3.94689],[-63.69156,3.93493],[-63.6816,3.93567],[-63.67266,3.92482],[-63.66302,3.9223],[-63.68328,3.90741],[-63.69598,3.91306],[-63.70902,3.91342],[-63.71313,3.90317],[-63.72546,3.91555],[-63.73503,3.91428],[-63.74395,3.9209],[-63.73913,3.93026],[-63.75621,3.94159],[-63.76612,3.93629],[-63.77191,3.93922],[-63.79508,3.93448],[-63.81834,3.9417],[-63.83473,3.9407],[-63.83692,3.94482],[-63.8494,3.94963],[-63.85927,3.94829],[-63.87017,3.93744],[-63.89068,3.93207],[-63.90149,3.93504],[-63.9147,3.92705],[-63.92517,3.9259],[-63.93688,3.91795],[-63.9383,3.90108],[-63.94662,3.90024],[-63.95091,3.8876],[-63.95811,3.88971],[-63.96291,3.87064],[-63.97951,3.90156],[-63.98504,3.89661],[-63.99743,3.90263],[-63.99887,3.92426],[-64.01273,3.93668],[-64.04032,3.95185],[-64.07186,4.01153],[-64.08832,4.02905],[-64.09104,4.03698],[-64.08207,4.0453],[-64.09338,4.07274],[-64.09354,4.07893],[-64.10743,4.10293],[-64.14601,4.11912],[-64.15781,4.13531],[-64.17882,4.1208],[-64.21218,4.12],[-64.22361,4.12707],[-64.24191,4.13415],[-64.25369,4.12924],[-64.26271,4.13391],[-64.26449,4.14852],[-64.28138,4.14736],[-64.29188,4.13515],[-64.30651,4.13526],[-64.32586,4.13159],[-64.37708,4.14225],[-64.38847,4.13648],[-64.40576,4.13726],[-64.42586,4.13929],[-64.4487,4.12489],[-64.49266,4.11749],[-64.49894,4.1206],[-64.50213,4.11532],[-64.51262,4.11845],[-64.54326,4.11573],[-64.55578,4.10447],[-64.58048,4.11243],[-64.61617,4.13272],[-64.6272,4.14197],[-64.63958,4.17742],[-64.65333,4.21012],[-64.67539,4.24027],[-64.69753,4.25401],[-64.72439,4.26123],[-64.74987,4.27529],[-64.78712,4.28834],[-64.81282,4.26992],[-64.8193,4.25424],[-64.81396,4.20462],[-64.80449,4.17692],[-64.78156,4.15674],[-64.75177,4.14204],[-64.72789,4.12564],[-64.71791,4.11112],[-64.70399,4.07304],[-64.69282,4.05551],[-64.67561,4.04565],[-64.67061,4.03371],[-64.6711,4.02313],[-64.65676,3.9925],[-64.63143,3.9605],[-64.60953,3.94665],[-64.58626,3.93143],[-64.57207,3.91785],[-64.56155,3.89805],[-64.54416,3.8577],[-64.51967,3.84412],[-64.47986,3.79313],[-64.45905,3.78311],[-64.43703,3.78937],[-64.41433,3.78399],[-64.40587,3.77488],[-64.36696,3.76107],[-64.35369,3.74937],[-64.32668,3.73905],[-64.3235,3.72905],[-64.28004,3.70905],[-64.27092,3.66919],[-64.25073,3.66095],[-64.23328,3.63079],[-64.21309,3.61604],[-64.18465,3.58896],[-64.17117,3.56286],[-64.17648,3.50913],[-64.18899,3.48854],[-64.22484,3.45835],[-64.24437,3.43292],[-64.24497,3.41291],[-64.22874,3.40044],[-64.22213,3.38935],[-64.22657,3.37552],[-64.23101,3.3425],[-64.23096,3.31896],[-64.20139,3.24881],[-64.20481,3.23059],[-64.19725,3.1918],[-64.22881,3.1293],[-64.22293,3.11399],[-64.18291,3.08233],[-64.16633,3.07062],[-64.15187,3.04008],[-64.14564,3.0356],[-64.14459,3.02263],[-64.15933,3.00623],[-64.15722,2.98303],[-64.14724,2.98155],[-64.13452,2.99241],[-64.12349,2.98944],[-64.10448,2.97231],[-64.10769,2.95998],[-64.10539,2.95038],[-64.09875,2.94903],[-64.092,2.93737],[-64.09211,2.92984],[-64.06829,2.91892],[-64.07557,2.89984],[-64.06981,2.89927],[-64.06679,2.88636],[-64.07999,2.87356],[-64.0616,2.86625],[-64.05314,2.85574],[-64.03919,2.82946],[-64.02672,2.8249],[-64.01426,2.8121],[-64.01827,2.79245],[-64.01275,2.78445],[-64.01409,2.77507],[-63.99759,2.77325],[-63.9962,2.75999],[-64.00168,2.75496],[-63.99977,2.7365],[-63.99517,2.73223],[-63.97959,2.72796],[-63.98117,2.71478],[-63.99158,2.71573],[-63.99472,2.70934],[-64.00198,2.7057],[-63.99423,2.68794],[-63.98418,2.68728],[-63.99083,2.66706],[-63.98385,2.65833],[-63.98997,2.63715],[-64.00434,2.62558],[-64.01013,2.61428],[-64.00905,2.60298],[-64.02474,2.58724],[-64.02602,2.57698],[-64.03902,2.57871],[-64.04378,2.57221],[-64.04591,2.56333],[-64.04354,2.54928],[-64.04667,2.54896],[-64.04396,2.53045],[-64.04949,2.52018],[-64.05846,2.50579],[-64.05643,2.49415],[-64.04266,2.49531],[-64.03629,2.48514],[-64.0313,2.48183],[-64.02769,2.47166],[-64.0172,2.46149],[-64.00473,2.48109],[-63.97647,2.46433],[-63.96675,2.46679],[-63.95977,2.47335],[-63.95131,2.45905],[-63.93816,2.46013],[-63.93187,2.45572],[-63.92113,2.47033],[-63.9034,2.46872],[-63.89116,2.46436],[-63.88158,2.46781],[-63.86789,2.48086],[-63.84324,2.49187],[-63.83425,2.48322],[-63.81564,2.4828],[-63.81626,2.48032],[-63.80833,2.47153],[-63.79819,2.4788],[-63.796,2.47445],[-63.79655,2.45911],[-63.77376,2.45064],[-63.77266,2.44023],[-63.7592,2.44217],[-63.74634,2.43832],[-63.73648,2.44326],[-63.73485,2.44957],[-63.72817,2.44915],[-63.72149,2.4405],[-63.71124,2.44432],[-63.71058,2.44897],[-63.69344,2.45363],[-63.68388,2.43961],[-63.65309,2.43833],[-63.6447,2.44179],[-63.63494,2.43701],[-63.62244,2.44252],[-63.61756,2.43841],[-63.61325,2.44425],[-63.60482,2.44597],[-63.60444,2.45078],[-63.59605,2.45173],[-63.5904,2.44719],[-63.56675,2.43949],[-63.56507,2.44551],[-63.5579,2.44055],[-63.55736,2.41729],[-63.54805,2.42292],[-63.52528,2.41701],[-63.50663,2.42482],[-63.50229,2.42123],[-63.49498,2.43053],[-63.49042,2.41924],[-63.48449,2.42854],[-63.47467,2.41648],[-63.47629,2.4029],[-63.46143,2.39619],[-63.4576,2.40706],[-63.45171,2.40627],[-63.44581,2.41372],[-63.4457,2.42449],[-63.43049,2.44349],[-63.42593,2.43718],[-63.42245,2.45237],[-63.41521,2.4339],[-63.40267,2.42261],[-63.39012,2.42503],[-63.37355,2.41015],[-63.3755,2.3816],[-63.36445,2.38208],[-63.36302,2.3757],[-63.3834,2.3495],[-63.38295,2.33756],[-63.36831,2.32054],[-63.37404,2.30585],[-63.36878,2.2994],[-63.37382,2.28952],[-63.36788,2.26866],[-63.37387,2.25986],[-63.37575,2.24283],[-63.38655,2.22786],[-63.38088,2.21014],[-63.39321,2.2042],[-63.40143,2.20238],[-63.404,2.19058],[-63.39557,2.18427],[-63.40207,2.17164],[-63.40134,2.15188],[-63.41356,2.14506],[-63.42852,2.13138],[-63.43648,2.13764],[-63.43825,2.12606],[-63.44414,2.12408],[-63.46137,2.13514],[-63.46898,2.14209],[-63.47596,2.14088],[-63.47641,2.12508],[-63.48488,2.1213],[-63.49323,2.11667],[-63.49747,2.11752],[-63.51166,2.11133],[-63.51663,2.1229],[-63.53859,2.13155],[-63.54511,2.14055],[-63.5518,2.12952],[-63.56639,2.13514],[-63.56579,2.1301],[-63.58578,2.11837],[-63.59007,2.12322],[-63.60261,2.11937],[-63.60415,2.11253],[-63.61685,2.1172],[-63.63469,2.10012],[-63.63111,2.08518],[-63.63645,2.07367],[-63.64866,2.068],[-63.65469,2.07398],[-63.66301,2.06637],[-63.66181,2.02506],[-63.66721,2.01831],[-63.68772,2.02802],[-63.68819,2.04403],[-63.69897,2.04905],[-63.71227,2.04813],[-63.7186,2.03582],[-63.7311,2.029],[-63.73278,2.0181],[-63.74161,2.01827],[-63.7428,2.01037],[-63.74106,2.0028],[-63.75544,1.99726],[-63.76221,2.00403],[-63.77242,1.99914],[-63.78126,1.99013],[-63.78227,1.98291],[-63.7898,1.97944],[-63.79909,1.98949],[-63.80855,1.98765],[-63.8235,1.99542],[-63.82181,1.9866],[-63.82715,1.98151],[-63.83248,1.9819],[-63.83535,1.97132],[-63.83146,1.96662],[-63.84978,1.97096],[-63.85415,1.98375],[-63.86768,1.97502],[-63.87691,1.98089],[-63.88849,1.98166],[-63.8938,1.99211],[-63.90168,1.9931],[-63.90781,1.98549],[-63.92081,1.98268],[-63.9297,1.98399],[-63.94051,1.9906],[-63.94428,1.98322],[-63.95594,1.99181],[-63.96141,1.98839],[-63.97373,1.99117],[-63.98463,1.97751],[-63.99072,1.98306],[-63.99308,1.97486],[-64.00093,1.97352],[-64.0047,1.96416],[-64.00229,1.95754],[-64.01224,1.96054],[-64.01358,1.95467],[-64.03466,1.93466],[-64.05437,1.92974],[-64.06092,1.92441],[-64.05857,1.92072],[-64.06274,1.91532],[-64.05654,1.9109],[-64.06031,1.90552],[-64.05687,1.90377],[-64.06236,1.90116],[-64.05717,1.88323],[-64.06924,1.85234],[-64.06284,1.83956],[-64.05095,1.83502],[-64.05005,1.82224],[-64.05223,1.81836],[-64.05028,1.81174],[-64.05464,1.8026],[-64.05936,1.8045],[-64.05893,1.8016],[-64.06167,1.79956],[-64.06029,1.79753],[-64.06199,1.79454],[-64.05989,1.79198],[-64.06084,1.79031],[-64.06823,1.79176],[-64.07203,1.78747],[-64.07154,1.78455],[-64.0762,1.78231],[-64.07526,1.77766],[-64.07122,1.77781],[-64.06864,1.77332],[-64.06417,1.77222],[-64.06759,1.76659],[-64.06996,1.76768],[-64.07265,1.76437],[-64.07287,1.75912],[-64.07927,1.758],[-64.07983,1.75515],[-64.07669,1.75356],[-64.07663,1.74889],[-64.06592,1.74424],[-64.06666,1.74167],[-64.06466,1.73943],[-64.06408,1.73324],[-64.06591,1.73049],[-64.06808,1.73048],[-64.07345,1.72463],[-64.07193,1.71734],[-64.06618,1.71593],[-64.06628,1.70869],[-64.06098,1.70243],[-64.06312,1.69252],[-64.06938,1.69016],[-64.06603,1.68094],[-64.07323,1.64678],[-64.0861,1.64468],[-64.09965,1.60894],[-64.11184,1.60958],[-64.11166,1.59238],[-64.12462,1.58095],[-64.13621,1.57638],[-64.14496,1.58714],[-64.17207,1.57298],[-64.19624,1.53843],[-64.1915,1.52733],[-64.21835,1.508],[-64.24046,1.50845],[-64.25289,1.49907],[-64.25983,1.4993],[-64.26578,1.4841],[-64.27632,1.48267],[-64.27861,1.47576],[-64.28365,1.47693],[-64.3116,1.45593],[-64.30796,1.44867],[-64.31943,1.44003],[-64.32822,1.42327],[-64.32054,1.40445],[-64.32864,1.4021],[-64.32439,1.39564],[-64.33759,1.389],[-64.34202,1.37435],[-64.33615,1.36451],[-64.34264,1.36291],[-64.35686,1.37692],[-64.35665,1.38819],[-64.36329,1.38843],[-64.36994,1.38318],[-64.38322,1.39053],[-64.38645,1.38601],[-64.4108,1.40457],[-64.40219,1.41146],[-64.40556,1.41838],[-64.39171,1.42673],[-64.39296,1.43989],[-64.38741,1.44372],[-64.38188,1.44426],[-64.37294,1.44934],[-64.37224,1.45716],[-64.37887,1.46356],[-64.36954,1.47546],[-64.35609,1.48324],[-64.34704,1.49605],[-64.34513,1.51894],[-64.3487,1.52948],[-64.36203,1.52173],[-64.37084,1.52544],[-64.38158,1.52052],[-64.39484,1.52852],[-64.40809,1.51318],[-64.41232,1.50002],[-64.41654,1.49784],[-64.43398,1.47027],[-64.44731,1.46946],[-64.45198,1.48021],[-64.48336,1.46268],[-64.48384,1.45546],[-64.50815,1.43689],[-64.52834,1.44441],[-64.52655,1.42859],[-64.53864,1.41473],[-64.55588,1.41425],[-64.57587,1.3774],[-64.58123,1.36171],[-64.57491,1.35701],[-64.57924,1.34157],[-64.58907,1.33711],[-64.60941,1.33917],[-64.61876,1.32819],[-64.6336,1.31721],[-64.64492,1.30075],[-64.67304,1.28705],[-64.68124,1.28707],[-64.69631,1.28161],[-64.70967,1.2655],[-64.71067,1.25214],[-64.71922,1.25114],[-64.72364,1.23916],[-64.73686,1.23199],[-64.74322,1.22757],[-64.7573,1.22697],[-64.7676,1.25461],[-64.77242,1.25221],[-64.79029,1.27213],[-64.78346,1.27901],[-64.78628,1.29827],[-64.79116,1.29763],[-64.80153,1.31345],[-64.82468,1.29191],[-64.85744,1.26968],[-64.85107,1.26255],[-64.86941,1.23346],[-64.87099,1.22438],[-64.88356,1.22904],[-64.88535,1.24109],[-64.89676,1.25108],[-64.90816,1.2501],[-64.90434,1.24369],[-64.90877,1.2318],[-64.91693,1.23479],[-64.91953,1.22154],[-64.93433,1.21289],[-64.9447,1.22169],[-64.97643,1.19946],[-64.96947,1.18124],[-64.97674,1.16154],[-64.98538,1.15556],[-64.99169,1.14704],[-64.99056,1.13825],[-65.00753,1.12751],[-65.01126,1.11017],[-65.02151,1.10847],[-65.03313,1.11845],[-65.05226,1.11643],[-65.06305,1.11239],[-65.06656,1.11998],[-65.06182,1.14131],[-65.07227,1.15237],[-65.08686,1.14329],[-65.10419,1.15481],[-65.11963,1.1449],[-65.1299,1.12645],[-65.15869,1.12523],[-65.16273,1.11745],[-65.15097,1.1083],[-65.15768,1.08312],[-65.15735,1.05199],[-65.16356,1.04602],[-65.16499,1.0286],[-65.17336,1.02258],[-65.1736,1.01604],[-65.16368,1.00827],[-65.14965,1.01012],[-65.14934,1.00372],[-65.16139,0.99733],[-65.1636,0.98273],[-65.16801,0.97277],[-65.17272,0.94186],[-65.1841,0.93109],[-65.19823,0.91346],[-65.21274,0.90154],[-65.21294,0.92645],[-65.2353,0.92546],[-65.24982,0.91798],[-65.2609,0.92492],[-65.27061,0.92363],[-65.27149,0.93408],[-65.27375,0.93903],[-65.28688,0.93278],[-65.29118,0.94085],[-65.30398,0.93974],[-65.31677,0.93314],[-65.32725,0.93504],[-65.34758,0.88916],[-65.35665,0.87978],[-65.35557,0.86651],[-65.37127,0.86332],[-65.3904,0.84022],[-65.39991,0.82124],[-65.41051,0.82358],[-65.41355,0.81533],[-65.39599,0.79336],[-65.40178,0.78065],[-65.39521,0.77343],[-65.40198,0.76929],[-65.39227,0.75967],[-65.39809,0.75031],[-65.41696,0.75057],[-65.41351,0.74009],[-65.42172,0.73236],[-65.42582,0.72326],[-65.43671,0.72393],[-65.44475,0.69232],[-65.45896,0.68385],[-65.48254,0.68236],[-65.50612,0.66851],[-65.52822,0.66759],[-65.54208,0.64882],[-65.55507,0.65297],[-65.55845,0.6681],[-65.56732,0.66882],[-65.56933,0.68189],[-65.5904,0.6923],[-65.60095,0.68977],[-65.60565,0.71094],[-65.58877,0.73251],[-65.57734,0.74786],[-65.57553,0.76183],[-65.56341,0.77237],[-65.55129,0.77605],[-65.54215,0.78748],[-65.55155,0.79343],[-65.53496,0.80258],[-65.52255,0.81951],[-65.52733,0.82386],[-65.52079,0.83153],[-65.51065,0.82918],[-65.50464,0.83919],[-65.50288,0.86934],[-65.49494,0.87408],[-65.50018,0.88328],[-65.51172,0.87758],[-65.51269,0.89533],[-65.50805,0.9035],[-65.51439,0.92265],[-65.52437,0.92332],[-65.52336,0.93086],[-65.53718,0.94177],[-65.53205,0.94699],[-65.53415,0.95467],[-65.54723,0.95618],[-65.54246,0.97073],[-65.55772,0.96783],[-65.56336,0.97179],[-65.56351,0.97851],[-65.55448,0.98956],[-65.57077,0.99588],[-65.58548,0.98243],[-65.58762,1.00425],[-65.59455,0.99723],[-65.62216,1.01341],[-65.63206,1.01144],[-65.63235,1.00191],[-65.627,0.99441],[-65.62852,0.98964],[-65.64282,1.00286],[-65.65988,1.01059],[-65.66767,1.00305],[-65.67912,0.99895],[-65.68556,0.98664],[-65.69568,1.00184],[-65.71953,1.00074],[-65.74476,0.99965],[-65.75158,0.99122],[-65.75291,0.98279],[-65.76243,0.97967],[-65.77324,0.9597],[-65.78764,0.96356],[-65.82659,0.95021],[-65.86143,0.93687],[-65.88234,0.94038],[-65.89053,0.93231],[-65.88914,0.90974],[-65.9135,0.88624],[-65.91453,0.89982],[-65.92654,0.89452],[-65.9413,0.89197],[-65.94291,0.86601],[-65.95414,0.85996],[-65.95302,0.84944],[-65.96837,0.83344],[-65.9666,0.81472],[-65.98063,0.8221],[-65.9974,0.81575],[-66.00983,0.80304],[-66.036,0.81642],[-66.04843,0.81195],[-66.07047,0.81297],[-66.07388,0.80145],[-66.07112,0.79329],[-66.0766,0.78788],[-66.07654,0.76279],[-66.0911,0.75926],[-66.09674,0.76465],[-66.11351,0.76582],[-66.11683,0.75031],[-66.14356,0.74856],[-66.17028,0.76398],[-66.17978,0.76461],[-66.18379,0.77897],[-66.19054,0.78371],[-66.3105,0.74478],[-66.84456,1.22755],[-66.86246,1.22703],[-66.90473,1.21827],[-67.08966,1.16754],[-67.0926,1.17153],[-67.08644,1.17809],[-67.09024,1.18688],[-67.08167,1.1986],[-67.10246,1.24086],[-67.09852,1.24774],[-67.10042,1.25909],[-67.12167,1.2712],[-67.12472,1.28055],[-67.13768,1.29241],[-67.14713,1.31611],[-67.15642,1.32096],[-67.15021,1.35009],[-67.13338,1.34725],[-67.11243,1.33754],[-67.08667,1.35152],[-67.08684,1.36125],[-67.07328,1.36824],[-67.08271,1.38054],[-67.0784,1.39489],[-67.08097,1.40787],[-67.08628,1.41536],[-67.08454,1.44682],[-67.07731,1.45357],[-67.07859,1.47368],[-67.09017,1.4787],[-67.09489,1.49744],[-67.10826,1.50652],[-67.10307,1.51486],[-67.09787,1.54791],[-67.10671,1.57557],[-67.10104,1.58423],[-67.11441,1.5837],[-67.11372,1.59476],[-67.13774,1.6072],[-67.14734,1.60461],[-67.13855,1.62318],[-67.13251,1.63557],[-67.13828,1.66721],[-67.1306,1.68795],[-67.14133,1.70472],[-67.13944,1.74786],[-67.1494,1.74629],[-67.14596,1.77885],[-67.13497,1.78493],[-67.13902,1.79578],[-67.15203,1.80189],[-67.16093,1.81623],[-67.18215,1.81301],[-67.18689,1.82077],[-67.1777,1.83945],[-67.18802,1.85201],[-67.20247,1.84948],[-67.20114,1.85744],[-67.2122,1.86103],[-67.21589,1.87679],[-67.20928,1.88569],[-67.21984,1.89459],[-67.21941,1.92133],[-67.24501,1.93625],[-67.25345,1.92988],[-67.25934,1.92128],[-67.2725,1.92328],[-67.27537,1.93969],[-67.28234,1.93964],[-67.29378,1.9298],[-67.3098,1.92798],[-67.32475,1.94157],[-67.32597,1.95379],[-67.33459,1.98029],[-67.34497,1.9784],[-67.34913,1.99804],[-67.3423,2.02591],[-67.35199,2.02608],[-67.35748,2.03632],[-67.35199,2.04382],[-67.35747,2.0547],[-67.35059,2.06755],[-67.35881,2.0754],[-67.35739,2.0856],[-67.3573,2.11424],[-67.34338,2.12898],[-67.35555,2.14287],[-67.37802,2.14989],[-67.37628,2.16256],[-67.36104,2.17688],[-67.35995,2.18713],[-67.37122,2.19463],[-67.36491,2.22062],[-67.3827,2.22245],[-67.39363,2.22977],[-67.42234,2.22795],[-67.42559,2.21927],[-67.44806,2.21334],[-67.45886,2.19746],[-67.46966,2.18981],[-67.47028,2.1702],[-67.50014,2.16564],[-67.52999,2.15559],[-67.5485,2.15059],[-67.56907,2.16171],[-67.58002,2.15637],[-67.58188,2.13507],[-67.5858,2.12543],[-67.57967,2.10652],[-67.57354,2.10407],[-67.577,2.09462],[-67.58527,2.08859],[-67.58875,2.06899],[-67.59788,2.06332],[-67.60654,2.03963],[-67.62133,2.03723],[-67.64506,2.02864],[-67.65543,2.03069],[-67.65574,2.00596],[-67.66567,1.9977],[-67.67749,2.00863],[-67.68408,2.00175],[-67.69617,2.00172],[-67.70196,2.01124],[-67.72865,2.01106],[-67.73396,2.02718],[-67.74198,2.02837],[-67.74725,2.03369],[-67.7539,2.0294],[-67.75917,2.03471],[-67.77341,2.03538],[-67.78024,2.028],[-67.77609,2.01308],[-67.78361,2.0105],[-67.78563,2.00106],[-67.79099,2.0031],[-67.8072,1.98249],[-67.80529,1.97557],[-67.81437,1.97209],[-67.82482,1.96174],[-67.82855,1.94996],[-67.83777,1.93819],[-67.85406,1.93634],[-67.85602,1.93061],[-67.87034,1.92213],[-67.87084,1.90518],[-67.86858,1.90196],[-67.87781,1.90306],[-67.88429,1.89592],[-67.89647,1.89347],[-67.89749,1.88855],[-67.90537,1.89599],[-67.91463,1.89793],[-67.92283,1.89336],[-67.91999,1.88422],[-67.90629,1.86109],[-67.91318,1.85991],[-67.91873,1.86305],[-67.92435,1.85423],[-67.91497,1.83659],[-67.91681,1.82739],[-67.92187,1.82134],[-67.90805,1.81632],[-67.9059,1.80512],[-67.94059,1.82037],[-67.95056,1.81641],[-67.96364,1.81947],[-67.98087,1.81528],[-67.98786,1.82064],[-67.99361,1.81352],[-68.00647,1.82535],[-68.00473,1.83254],[-68.01223,1.83732],[-68.02725,1.80843],[-68.03804,1.81792],[-68.03629,1.82867],[-68.04926,1.84467],[-68.04224,1.85059],[-68.05018,1.85556],[-68.04821,1.86689],[-68.05388,1.86896],[-68.0556,1.8772],[-68.06042,1.87586],[-68.0632,1.89375],[-68.07149,1.89111],[-68.08528,1.89738],[-68.09358,1.89817],[-68.10479,1.91093],[-68.10936,1.92959],[-68.1185,1.93946],[-68.12168,1.94684],[-68.13215,1.95474],[-68.1282,1.9599],[-68.13996,1.9714],[-68.14485,1.97192],[-68.16647,1.96336],[-68.1766,1.97246],[-68.17205,1.97907],[-68.18282,1.9762],[-68.18615,1.97957],[-68.18507,1.98743],[-68.1881,1.99117],[-68.19359,2.03929],[-68.19906,2.03945],[-68.20178,2.01438],[-68.20246,2.00262],[-68.20588,1.98537],[-68.21,1.98322],[-68.20999,1.97597],[-68.21205,1.9646],[-68.22098,1.9594],[-68.24707,1.92225],[-68.24295,1.91632],[-68.25531,1.87973],[-68.27385,1.85731],[-68.28552,1.84451],[-68.27484,1.84708],[-68.28323,1.8367],[-68.28468,1.82945],[-68.27717,1.83269],[-68.27479,1.8199],[-68.2505,1.82494],[-68.23995,1.82174],[-68.22871,1.83021],[-68.22796,1.82272],[-68.23751,1.81111],[-68.24603,1.78372],[-68.23724,1.76796],[-68.23422,1.77793],[-68.22997,1.78222],[-68.22509,1.77339],[-68.21167,1.77103],[-68.20633,1.78358],[-68.19401,1.77848],[-68.17757,1.76515],[-68.18997,1.76005],[-68.19205,1.73828],[-68.18553,1.7322],[-68.17815,1.73465],[-68.17035,1.74274],[-68.16254,1.7275],[-69.39097,1.7275],[-69.40318,1.73316],[-69.40921,1.73881],[-69.42506,1.74263],[-69.44502,1.74508],[-69.46709,1.75271],[-69.47484,1.74601],[-69.49211,1.75862],[-69.50868,1.75888],[-69.51438,1.769],[-69.52584,1.7693],[-69.5325,1.76342],[-69.5362,1.775],[-69.55734,1.77346],[-69.5701,1.76007],[-69.58835,1.7556],[-69.60866,1.73878],[-69.63034,1.7247],[-69.64188,1.72777],[-69.65617,1.71848],[-69.66583,1.72791],[-69.67444,1.72199],[-69.67756,1.72979],[-69.69235,1.72902],[-69.70302,1.73373],[-69.72002,1.73403],[-69.73566,1.73158],[-69.73687,1.72571],[-69.74358,1.72944],[-69.75365,1.72051],[-69.74999,1.71159],[-69.75914,1.7157],[-69.7803,1.70248],[-69.78145,1.7005],[-69.77996,1.69797],[-69.78224,1.69269],[-69.78698,1.69394],[-69.78499,1.69854],[-69.79051,1.69638],[-69.79055,1.70005],[-69.79738,1.69827],[-69.80461,1.70487],[-69.80252,1.70041],[-69.80593,1.69938],[-69.80844,1.6956],[-69.81417,1.69521],[-69.81646,1.70031],[-69.81927,1.69854],[-69.82173,1.69952],[-69.81957,1.70276],[-69.8276,1.70717],[-69.82616,1.70949],[-69.82878,1.71153],[-69.83538,1.70979],[-69.83828,1.71421],[-69.83962,1.71892],[-69.84584,1.71358],[-69.84584,1.07638],[-69.83232,1.08112],[-69.81663,1.06152],[-69.80398,1.06476],[-69.79697,1.07188],[-69.79278,1.08779],[-69.77009,1.10399],[-69.73778,1.11744],[-69.7253,1.10609],[-69.70796,1.11928],[-69.7016,1.11737],[-69.70686,1.0885],[-69.7025,1.07611],[-69.69344,1.07501],[-69.68411,1.06965],[-69.67203,1.07116],[-69.66984,1.08105],[-69.65676,1.08283],[-69.64368,1.09011],[-69.63301,1.08503],[-69.6221,1.09646],[-69.60844,1.09965],[-69.59235,1.09026],[-69.57213,1.07264],[-69.56191,1.07034],[-69.54993,1.07367],[-69.52765,1.06876],[-69.48102,1.07955],[-69.47423,1.07111],[-69.46468,1.07777],[-69.44972,1.07187],[-69.43338,1.07422],[-69.43256,1.04651],[-69.41308,1.03917],[-69.39956,1.05815],[-69.38387,1.07039],[-69.37643,1.084],[-69.37087,1.07959],[-69.36395,1.08342],[-69.35771,1.07833],[-69.34598,1.08422],[-69.33899,1.07815],[-69.32102,1.08856],[-69.30568,1.07231],[-69.30316,1.06384],[-69.28919,1.06201],[-69.28839,1.05217],[-69.24502,1.05605],[-69.24684,1.04509],[-69.19509,0.9998],[-69.21933,0.97582],[-69.20648,0.96968],[-69.206,0.96217],[-69.17276,0.95196],[-69.16575,0.9393],[-69.17088,0.93343],[-69.18151,0.93716],[-69.19315,0.92816],[-69.18896,0.91428],[-69.18015,0.90004],[-69.17005,0.89613],[-69.15309,0.87987],[-69.13887,0.88146],[-69.13566,0.86263],[-69.14481,0.84655],[-69.1622,0.85107],[-69.16586,0.84396],[-69.16402,0.83548],[-69.16768,0.82082],[-69.15509,0.80593],[-69.14468,0.7676],[-69.16439,0.75492],[-69.17312,0.75872],[-69.1892,0.74299],[-69.18051,0.71382],[-69.1542,0.7109],[-69.12593,0.66344],[-69.11729,0.65482],[-69.11504,0.64158],[-69.12376,0.63521],[-69.13665,0.64389],[-69.15092,0.64433],[-69.16107,0.6537],[-69.16709,0.65071],[-69.18158,0.65384],[-69.19545,0.64913],[-69.19826,0.64026],[-69.20245,0.63275],[-69.19909,0.61838],[-69.20122,0.60539],[-69.21591,0.61141],[-69.2361,0.59959],[-69.24132,0.60861],[-69.26549,0.60603],[-69.27126,0.60226],[-69.2979,0.60433],[-69.28389,0.61808],[-69.29049,0.63939],[-69.28472,0.64696],[-69.30149,0.64704],[-69.31717,0.63209],[-69.31969,0.62417],[-69.32335,0.63853],[-69.3396,0.6446],[-69.33663,0.63179],[-69.34395,0.62653],[-69.35403,0.61442],[-69.36616,0.63389],[-69.40175,0.66147],[-69.40444,0.67183],[-69.41471,0.68457],[-69.43015,0.69231],[-69.43649,0.7003],[-69.4328,0.70978],[-69.44149,0.71387],[-69.45751,0.71798],[-69.45979,0.73032],[-69.46481,0.73575],[-69.47878,0.73487],[-69.48468,0.72778],[-69.50156,0.72207],[-69.50588,0.71303],[-69.51295,0.71361],[-69.53031,0.70389],[-69.53225,0.69837],[-69.53116,0.6908],[-69.53419,0.67911],[-69.55673,0.68046],[-69.56319,0.68457],[-69.56745,0.67529],[-69.57817,0.66207],[-69.58215,0.66233],[-69.59719,0.65559],[-69.59992,0.65081],[-69.58754,0.63917],[-69.60469,0.63577],[-69.60571,0.61038],[-69.61927,0.63442],[-69.62467,0.63477],[-69.62806,0.62739],[-69.63887,0.63962],[-69.64015,0.6478],[-69.64692,0.66421],[-69.66803,0.66408],[-69.66828,0.66883],[-69.68832,0.66296],[-69.6846,0.65316],[-69.68961,0.64894],[-69.69555,0.65576],[-69.71225,0.64132],[-69.72404,0.61487],[-69.73748,0.60783],[-69.74818,0.61864],[-69.75387,0.61221],[-69.7623,0.60785],[-69.76183,0.60341],[-69.76975,0.60248],[-69.77372,0.5988],[-69.77822,0.59899],[-69.78462,0.59271],[-69.78929,0.58505],[-69.79402,0.58398],[-69.79419,0.57834],[-69.80208,0.57837],[-69.80346,0.57089],[-69.81067,0.57697],[-69.8117,0.58477],[-69.82269,0.59055],[-69.8323,0.58975],[-69.83643,0.58403],[-69.8439,0.58647],[-69.8524,0.58719],[-69.85696,0.58434],[-69.85912,0.57771],[-69.86549,0.57828],[-69.86946,0.58227],[-69.88031,0.57722],[-69.88739,0.57663],[-69.89263,0.58112],[-69.89717,0.58526],[-69.90231,0.57987],[-69.91602,0.58898],[-69.91796,0.58769],[-69.91406,0.58022],[-69.91622,0.57936],[-69.91968,0.5706],[-69.92934,0.56406],[-69.92926,0.55939],[-69.93648,0.55245],[-69.96089,0.56157],[-69.96353,0.57054],[-69.96802,0.57254],[-69.97183,0.57626],[-69.97773,0.57819],[-69.9849,0.57383],[-69.98829,0.576],[-69.98863,0.57189],[-69.98519,0.57087],[-69.98622,0.56711],[-69.99703,0.57596],[-70.00281,0.5703],[-70.00516,0.55554],[-70.01329,0.54593],[-70.02022,0.54405],[-70.022,0.54697],[-70.02071,0.55657],[-70.02663,0.56204],[-70.03822,0.56644],[-70.0437,0.56328],[-70.0437,-0.12525],[-70.05116,-0.144],[-70.05352,-0.14513],[-70.06549,-0.16412],[-70.05296,-0.18896],[-70.03502,-0.19863],[-70.02573,-0.20791],[-70.00133,-0.22132],[-69.99204,-0.24159],[-69.98053,-0.24829],[-69.9734,-0.26812],[-69.95541,-0.27735],[-69.94642,-0.29227],[-69.93849,-0.29217],[-69.93521,-0.30105],[-69.91984,-0.32609],[-69.88881,-0.34135],[-69.88222,-0.33319],[-69.86931,-0.33941],[-69.85187,-0.33566],[-69.83697,-0.34545],[-69.82884,-0.36477],[-69.82894,-0.3731],[-69.81023,-0.37253],[-69.78576,-0.39354],[-69.77559,-0.39374],[-69.75334,-0.40894],[-69.73535,-0.43715],[-69.70919,-0.45193],[-69.69267,-0.45452],[-69.68098,-0.46268],[-69.66621,-0.46676],[-69.6444,-0.48116],[-69.639,-0.49111],[-69.60749,-0.5038],[-69.61496,-0.53262],[-69.5929,-0.55595],[-69.60096,-0.59436],[-69.56353,-0.63549],[-69.59546,-0.68829],[-69.62326,-0.74109],[-69.5963,-0.78325],[-69.56223,-0.81463],[-69.55954,-0.82213],[-69.57197,-0.83375],[-69.56654,-0.84538],[-69.53498,-0.86423],[-69.52332,-0.87478],[-69.52538,-0.89906],[-69.53295,-0.90206],[-69.52643,-0.92553],[-69.4648,-0.96267],[-69.4642,-0.98467],[-69.44948,-0.99704],[-69.438,-0.9895],[-69.43364,-1.00152],[-69.41772,-0.9986],[-69.41938,-1.00538],[-69.43188,-1.00671],[-69.42027,-1.01218],[-69.444,-1.0259],[-69.44213,-1.03551],[-69.42059,-1.04581],[-69.42974,-1.06194],[-69.42058,-1.07138],[-69.43339,-1.0712],[-69.42322,-1.07872],[-69.39383,-1.11918],[-69.39739,-1.14042],[-69.40644,-1.14656],[-69.41314,-1.15945],[-69.41572,-1.1895],[-69.43066,-1.2223],[-69.42346,-1.25425],[-69.41299,-1.27297],[-69.40665,-1.29169],[-69.40804,-1.3302],[-69.3974,-1.35906],[-69.39982,-1.36733],[-69.42497,-1.37912],[-69.43846,-1.40258],[-69.43546,-1.43359],[-69.45993,-1.47558],[-69.45482,-1.51313],[-69.93334,-4.21972],[-69.93584,-4.21945],[-69.93798,-4.22172],[-69.94039,-4.22274],[-69.94032,-4.22309],[-69.94156,-4.22489],[-69.94188,-4.22516],[-69.94194,-4.22515],[-69.94196,-4.22491],[-69.94201,-4.22489],[-69.94209,-4.22498],[-69.94215,-4.22508],[-69.9422,-4.22509],[-69.94227,-4.22503],[-69.94231,-4.22493],[-69.94236,-4.22493],[-69.94243,-4.22504],[-69.9425,-4.2251],[-69.94251,-4.22554],[-69.94259,-4.22557],[-69.94277,-4.22538],[-69.94278,-4.22525],[-69.94286,-4.22526],[-69.9429,-4.22531],[-69.94303,-4.2253],[-69.94316,-4.22522],[-69.94334,-4.22525],[-69.94338,-4.22536],[-69.94351,-4.22539],[-69.94355,-4.2253],[-69.94368,-4.22526],[-69.94381,-4.22529],[-69.94385,-4.22537],[-69.9442,-4.22541],[-69.94429,-4.22551],[-69.94435,-4.22551],[-69.94733,-4.22711],[-69.94777,-4.22336],[-69.94986,-4.21986],[-69.95764,-4.20895],[-69.96397,-4.20095],[-69.97949,-4.1849],[-69.99244,-4.17519],[-70.01226,-4.1576],[-70.0536,-4.10188],[-70.06274,-4.0817],[-70.06775,-4.07556],[-70.08107,-4.06658],[-70.08959,-4.06308],[-70.09639,-4.06147],[-70.10628,-4.0578],[-70.133,-4.02304],[-70.14739,-4.01012],[-70.15801,-3.99651],[-70.16881,-3.97506],[-70.17274,-3.96526],[-70.17615,-3.95422],[-70.1787,-3.93633],[-70.18125,-3.9294],[-70.18697,-3.92422],[-70.20794,-3.91624],[-70.2205,-3.90945],[-70.24602,-3.89191],[-70.25827,-3.87834],[-70.26537,-3.86683],[-70.27006,-3.85258],[-70.27647,-3.83696],[-70.28904,-3.82397],[-70.30042,-3.8163],[-70.31059,-3.81376],[-70.33999,-3.8006],[-70.35008,-3.79875],[-70.36016,-3.79895],[-70.37072,-3.80039],[-70.38111,-3.80326],[-70.39218,-3.80751],[-70.40343,-3.81296],[-70.4133,-3.82047],[-70.42703,-3.83359],[-70.44025,-3.85094],[-70.44618,-3.85773],[-70.45176,-3.86144],[-70.48255,-3.86965],[-70.49237,-3.87367],[-70.49995,-3.87512],[-70.51931,-3.87304],[-70.53199,-3.86875],[-70.54124,-3.86206],[-70.54757,-3.85486],[-70.55236,-3.8468],[-70.55619,-3.83626],[-70.56088,-3.82863],[-70.56814,-3.82443],[-70.57592,-3.82023],[-70.5829,-3.81953],[-70.58901,-3.82192],[-70.61588,-3.84277],[-70.6197,-3.83922],[-70.62084,-3.83857],[-70.62153,-3.83798],[-70.62295,-3.83574],[-70.62428,-3.83332],[-70.62523,-3.83245],[-70.62652,-3.83159],[-70.62892,-3.83071],[-70.63284,-3.83073],[-70.6339,-3.83091],[-70.63496,-3.83075],[-70.63722,-3.83105],[-70.63787,-3.83096],[-70.63926,-3.8312],[-70.64153,-3.83108],[-70.64603,-3.8305],[-70.65053,-3.82941],[-70.65411,-3.82674],[-70.65718,-3.82338],[-70.66193,-3.8165],[-70.66534,-3.81178],[-70.66642,-3.81085],[-70.66901,-3.80735],[-70.67057,-3.80514],[-70.67351,-3.80243],[-70.6771,-3.79877],[-70.68052,-3.79563],[-70.68518,-3.79288],[-70.69018,-3.79142],[-70.69813,-3.79116],[-70.70076,-3.79148],[-70.70588,-3.7924],[-70.7077,-3.79331],[-70.70994,-3.79397],[-70.71349,-3.79607],[-70.71694,-3.79876],[-70.05553,-2.75926],[-70.0646,-2.7533],[-70.07229,-2.72401],[-70.06488,-2.69541],[-70.06433,-2.6723],[-70.08686,-2.64706],[-70.09758,-2.64872],[-70.10421,-2.66233],[-70.10809,-2.68281],[-70.1186,-2.70181],[-70.13276,-2.70415],[-70.16124,-2.68814],[-70.15419,-2.66915],[-70.15264,-2.64743],[-70.17409,-2.63016],[-70.1818,-2.63484],[-70.19166,-2.65873],[-70.20633,-2.6593],[-70.21919,-2.6426],[-70.22567,-2.57215],[-70.24348,-2.54833],[-70.26404,-2.54234],[-70.30381,-2.57476],[-70.33261,-2.57975],[-70.35037,-2.5712],[-70.35715,-2.56265],[-70.35679,-2.54904],[-70.33857,-2.53886],[-70.30525,-2.53347],[-70.29562,-2.5226],[-70.2956,-2.50556],[-70.30243,-2.49891],[-70.34883,-2.48961],[-70.37176,-2.49153],[-70.40018,-2.51814],[-70.41582,-2.52747],[-70.43613,-2.52279],[-70.44653,-2.50795],[-70.45084,-2.47552],[-70.45584,-2.45407],[-70.46634,-2.44771],[-70.49427,-2.47003],[-70.50846,-2.47315],[-70.52174,-2.46429],[-70.53594,-2.43833],[-70.54946,-2.42267],[-70.56435,-2.41798],[-70.59233,-2.41708],[-70.59696,-2.42303],[-70.59335,-2.43036],[-70.55968,-2.44182],[-70.55142,-2.44848],[-70.55072,-2.46004],[-70.55414,-2.46886],[-70.58427,-2.48178],[-70.60745,-2.48431],[-70.6368,-2.46968],[-70.64006,-2.4523],[-70.62976,-2.4226],[-70.62908,-2.39633],[-70.63663,-2.39749],[-70.64694,-2.40943],[-70.66685,-2.41177],[-70.68059,-2.40066],[-70.67648,-2.38818],[-70.66138,-2.37282],[-70.66139,-2.35884],[-70.67721,-2.34596],[-70.72049,-2.33309],[-70.74985,-2.33064],[-70.75904,-2.31775],[-70.76548,-2.298],[-70.78575,-2.29174],[-70.81906,-2.29508],[-70.83452,-2.29156],[-70.84106,-2.28152],[-70.85584,-2.23168],[-70.87249,-2.22426],[-70.89464,-2.2237],[-70.90736,-2.23219],[-70.91618,-2.24796],[-70.93324,-2.25688],[-70.95786,-2.24177],[-70.966,-2.21844],[-70.97804,-2.21166],[-71.00383,-2.20762],[-71.01694,-2.22014],[-71.0212,-2.23693],[-70.9929,-2.27804],[-70.98987,-2.29851],[-71.00166,-2.30789],[-71.01447,-2.30109],[-71.02521,-2.28194],[-71.03847,-2.26697],[-71.04987,-2.26447],[-71.0919,-2.28005],[-71.11607,-2.27916],[-71.13613,-2.28651],[-71.14494,-2.30355],[-71.13252,-2.32236],[-71.12835,-2.33843],[-71.13647,-2.34449],[-71.15114,-2.33522],[-71.16306,-2.33281],[-71.17041,-2.34856],[-71.17022,-2.37462],[-71.17689,-2.38146],[-71.19258,-2.38138],[-71.21055,-2.36419],[-71.21548,-2.35111],[-71.22809,-2.34006],[-71.24691,-2.33837],[-71.25248,-2.35219],[-71.26079,-2.36051],[-71.27054,-2.3854],[-71.27907,-2.38851],[-71.28857,-2.38514],[-71.28845,-2.37628],[-71.27426,-2.35708],[-71.27793,-2.33789],[-71.28914,-2.33447],[-71.29898,-2.33929],[-71.30837,-2.35098],[-71.31089,-2.36679],[-71.31936,-2.37989],[-71.33607,-2.382],[-71.35393,-2.37772],[-71.36904,-2.38792],[-71.37728,-2.40087],[-71.39377,-2.41014],[-71.40546,-2.40019],[-71.40616,-2.38476],[-71.39249,-2.35459],[-71.40222,-2.3409],[-71.42581,-2.32587],[-71.45008,-2.28066],[-71.47023,-2.26838],[-71.49452,-2.27276],[-71.4987,-2.28431],[-71.47816,-2.33702],[-71.48372,-2.35406],[-71.49751,-2.35601],[-71.51011,-2.3391],[-71.51882,-2.30115],[-71.51518,-2.25531],[-71.52115,-2.24721],[-71.54029,-2.24714],[-71.55532,-2.2402],[-71.57951,-2.23983],[-71.61056,-2.22849],[-71.63284,-2.20444],[-71.65542,-2.1975],[-71.67861,-2.20935],[-71.70317,-2.22532],[-71.72208,-2.22844],[-71.73107,-2.21615],[-71.73044,-2.20112],[-71.71709,-2.16229],[-71.72518,-2.13979],[-71.73464,-2.13924],[-71.76974,-2.15902],[-71.7699,-2.16974],[-71.78997,-2.18185],[-71.79494,-2.19669],[-71.80075,-2.20648],[-71.80794,-2.20392],[-71.82163,-2.18714],[-71.83119,-2.18683],[-71.84346,-2.2157],[-71.85435,-2.23085],[-71.87133,-2.2934],[-71.88557,-2.31478],[-71.92365,-2.30747],[-71.93289,-2.30975],[-71.94138,-2.32204],[-71.91827,-2.36451],[-71.92538,-2.38365],[-71.93661,-2.37809],[-71.93985,-2.35807],[-71.95132,-2.35725],[-71.96397,-2.3563],[-71.97799,-2.36907],[-72.00799,-2.36938],[-72.03421,-2.3378],[-72.05013,-2.33296],[-72.06742,-2.34666],[-72.08197,-2.36858],[-72.09733,-2.3699],[-72.10951,-2.38625],[-72.12581,-2.39711],[-72.14193,-2.40237],[-72.14844,-2.41312],[-72.13603,-2.44789],[-72.13998,-2.46507],[-72.15424,-2.47197],[-72.16765,-2.46107],[-72.16151,-2.43926],[-72.16635,-2.42637],[-72.18218,-2.42858],[-72.20354,-2.44602],[-72.22628,-2.44837],[-72.23894,-2.43171],[-72.25709,-2.43151],[-72.26288,-2.43679],[-72.25524,-2.45217],[-72.25996,-2.45932],[-72.27557,-2.45097],[-72.28432,-2.4536],[-72.28946,-2.47052],[-72.29872,-2.47509],[-72.3179,-2.47417],[-72.359,-2.48743],[-72.3753,-2.49198],[-72.38042,-2.47638],[-72.37592,-2.46422],[-72.37967,-2.45069],[-72.38992,-2.44489],[-72.40977,-2.41576],[-72.42276,-2.435],[-72.44262,-2.43503],[-72.46997,-2.42],[-72.4898,-2.42076],[-72.49864,-2.41193],[-72.51504,-2.41338],[-72.5383,-2.40386],[-72.57023,-2.40145],[-72.59222,-2.36918],[-72.6046,-2.36162],[-72.62109,-2.36091],[-72.63554,-2.35812],[-72.64313,-2.36494],[-72.63632,-2.38063],[-72.63776,-2.38672],[-72.66398,-2.41262],[-72.66547,-2.43989],[-72.6797,-2.45362],[-72.69324,-2.45088],[-72.69305,-2.44333],[-72.68679,-2.42688],[-72.68946,-2.41318],[-72.70586,-2.38986],[-72.71928,-2.3858],[-72.73101,-2.39689],[-72.73387,-2.42181],[-72.74154,-2.42752],[-72.7547,-2.42637],[-72.75928,-2.39844],[-72.77072,-2.38424],[-72.78491,-2.3865],[-72.80025,-2.41091],[-72.82932,-2.42023],[-72.84629,-2.4362],[-72.86876,-2.43982],[-72.89172,-2.43198],[-72.93078,-2.45676],[-72.93887,-2.44869],[-72.93031,-2.43393],[-72.93242,-2.41263],[-72.95514,-2.3982],[-72.95588,-2.37554],[-72.96709,-2.36583],[-72.97028,-2.34917],[-72.98078,-2.33916],[-72.99158,-2.35808],[-73.00376,-2.36053],[-73.01438,-2.34758],[-73.02051,-2.32033],[-73.03002,-2.3111],[-73.04081,-2.3146],[-73.04247,-2.35041],[-73.04922,-2.36029],[-73.06546,-2.35947],[-73.06912,-2.33862],[-73.06179,-2.32394],[-73.06854,-2.31307],[-73.08627,-2.31043],[-73.09428,-2.32298],[-73.11944,-2.32999],[-73.12402,-2.32111],[-73.12447,-2.31359],[-73.11325,-2.29442],[-73.12126,-2.28211],[-73.14938,-2.26537],[-73.16514,-2.23903],[-73.16781,-2.21516],[-73.17454,-2.19212],[-73.16464,-2.18584],[-73.13737,-2.19027],[-73.12647,-2.17739],[-73.11691,-2.13596],[-73.11009,-2.12471],[-73.06977,-2.1065],[-73.06927,-2.08281],[-73.10711,-2.0827],[-73.11405,-2.07642],[-73.11274,-2.06602],[-73.09106,-2.04091],[-73.09567,-2.02732],[-73.11675,-2.0151],[-73.12871,-1.99067],[-73.11744,-1.97001],[-73.11352,-1.93738],[-73.11784,-1.91023],[-73.10766,-1.89362],[-73.11201,-1.86999],[-73.13581,-1.87353],[-73.15413,-1.86197],[-73.15458,-1.84903],[-73.1424,-1.81476],[-73.15012,-1.80108],[-73.16832,-1.80254],[-73.1951,-1.78898],[-73.21158,-1.74953],[-73.2205,-1.74644],[-73.22943,-1.75159],[-73.23217,-1.77151],[-73.22874,-1.78901],[-73.23492,-1.80103],[-73.2514,-1.80998],[-73.25827,-1.80247],[-73.25689,-1.79564],[-73.24453,-1.79166],[-73.24247,-1.78563],[-73.25002,-1.77959],[-73.26925,-1.7829],[-73.29533,-1.77442],[-73.30905,-1.78354],[-73.3111,-1.79953],[-73.29941,-1.81688],[-73.30622,-1.82866],[-73.32396,-1.82201],[-73.33291,-1.80314],[-73.35558,-1.79525],[-73.3817,-1.77433],[-73.39407,-1.77262],[-73.41745,-1.7891],[-73.4326,-1.78775],[-73.43267,-1.7713],[-73.43549,-1.76172],[-73.46324,-1.73437],[-73.49443,-1.73242],[-73.53886,-1.70125],[-73.54072,-1.68792],[-73.53195,-1.67743],[-73.51905,-1.66832],[-73.51028,-1.64822],[-73.50795,-1.6265],[-73.50151,-1.61851],[-73.46336,-1.5917],[-73.45657,-1.57694],[-73.45939,-1.56629],[-73.46835,-1.56783],[-73.48144,-1.57898],[-73.48976,-1.5697],[-73.48113,-1.55799],[-73.48213,-1.54216],[-73.47862,-1.52286],[-73.49219,-1.51859],[-73.49616,-1.51019],[-73.48555,-1.49408],[-73.49005,-1.48347],[-73.51553,-1.48077],[-73.53002,-1.46435],[-73.53223,-1.4363],[-73.53855,-1.43022],[-73.58278,-1.42836],[-73.58582,-1.41964],[-73.578,-1.41413],[-73.55988,-1.42166],[-73.54905,-1.40859],[-73.55882,-1.37972],[-73.57821,-1.36046],[-73.57953,-1.3411],[-73.56574,-1.32792],[-73.56912,-1.3161],[-73.59933,-1.32997],[-73.61374,-1.31501],[-73.61854,-1.26105],[-73.62677,-1.26161],[-73.63843,-1.26903],[-73.65146,-1.26683],[-73.66379,-1.24735],[-73.68025,-1.23885],[-73.71448,-1.25152],[-73.72879,-1.24909],[-73.74036,-1.23979],[-73.74268,-1.2081],[-73.74185,-1.20239],[-73.74566,-1.19782],[-73.75329,-1.20242],[-73.75344,-1.23358],[-73.76474,-1.26021],[-73.78183,-1.25718],[-73.78108,-1.24523],[-73.78719,-1.24014],[-73.79767,-1.24914],[-73.81091,-1.24991],[-73.82364,-1.23633],[-73.85423,-1.23374],[-73.86696,-1.22566],[-73.86709,-1.2002],[-73.88438,-1.18572],[-73.89617,-1.16713],[-73.8953,-1.15178],[-73.90266,-1.12545],[-73.9114,-1.11697],[-73.92269,-1.1206],[-73.93536,-1.13248],[-73.96063,-1.13122],[-73.96866,-1.11782],[-73.95128,-1.09686],[-73.95451,-1.0862],[-73.96048,-1.08378],[-73.97092,-1.08617],[-73.9786,-1.10365],[-73.98437,-1.10705],[-74.00468,-1.10004],[-74.01784,-1.08052],[-74.01668,-1.06071],[-74.02537,-1.04993],[-74.01389,-1.01738],[-74.01978,-1.0017],[-74.03155,-1.00331],[-74.04264,-1.01796],[-74.04337,-1.04244],[-74.05578,-1.05595],[-74.13564,-1.02895],[-74.15749,-1.01019],[-74.17935,-1.00378],[-74.21013,-1.01179],[-74.22444,-1.00744],[-74.24755,-0.98914],[-74.27341,-0.98044],[-74.27667,-0.96225],[-74.26619,-0.95641],[-74.2615,-0.94429],[-74.27107,-0.92857],[-74.26966,-0.91696],[-74.27988,-0.89376],[-74.31132,-0.89678],[-74.32009,-0.88814],[-74.31925,-0.874],[-74.30354,-0.86275],[-74.28302,-0.87279],[-74.27619,-0.88398],[-74.26662,-0.88008],[-74.26533,-0.86849],[-74.2709,-0.85827],[-74.26617,-0.84119],[-74.24458,-0.82647],[-74.24634,-0.81587],[-74.25488,-0.81599],[-74.27852,-0.82848],[-74.29147,-0.81637],[-74.28559,-0.79625],[-74.27971,-0.7871],[-74.28275,-0.77522],[-74.29541,-0.77706],[-74.30459,-0.79482],[-74.31879,-0.79203],[-74.31926,-0.78649],[-74.30877,-0.7616],[-74.31555,-0.75297],[-74.3443,-0.75945],[-74.35794,-0.74533],[-74.36747,-0.74219],[-74.37622,-0.72768],[-74.37673,-0.71455],[-74.34513,-0.7051],[-74.33791,-0.69111],[-74.33894,-0.67712],[-74.37108,-0.65959],[-74.37301,-0.64892],[-74.35901,-0.63308],[-74.36536,-0.61377],[-74.37805,-0.60398],[-74.3897,-0.57616],[-74.38791,-0.54818],[-74.39779,-0.53737],[-74.40767,-0.55402],[-74.41618,-0.55969],[-74.42275,-0.55764],[-74.42628,-0.54804],[-74.4196,-0.50276],[-74.42684,-0.49596],[-74.44132,-0.50021],[-74.45106,-0.4895],[-74.46367,-0.48866],[-74.47078,-0.47615],[-74.4779,-0.47189],[-74.49125,-0.48914],[-74.50149,-0.48246],[-74.49449,-0.47322],[-74.4971,-0.46329],[-74.50521,-0.46023],[-74.51979,-0.4727],[-74.53658,-0.45782],[-74.5417,-0.43676],[-74.54957,-0.42257],[-74.55711,-0.4177],[-74.56602,-0.41696],[-74.57423,-0.41134],[-74.57418,-0.39463],[-74.58631,-0.38406],[-74.61011,-0.38311],[-74.61607,-0.37667],[-74.606,-0.35554],[-74.61241,-0.34953],[-74.62571,-0.35757],[-74.64587,-0.3615],[-74.66285,-0.37623],[-74.67228,-0.37104],[-74.67347,-0.36723],[-74.6892,-0.36501],[-74.68909,-0.35716],[-74.67787,-0.34831],[-74.67971,-0.33397],[-74.68429,-0.32925],[-74.69303,-0.32942],[-74.71001,-0.35157],[-74.73161,-0.33957],[-74.73361,-0.32242],[-74.72663,-0.30873],[-74.7319,-0.29782],[-74.74678,-0.28966],[-74.74872,-0.27322],[-74.7438,-0.27189],[-74.76039,-0.22739],[-74.78523,-0.198],[-74.80056,-0.19827],[-74.80788,-0.18782],[-74.83082,-0.20581],[-74.84965,-0.23478],[-74.88043,-0.24192],[-74.8953,-0.23422],[-74.90582,-0.20611],[-74.91772,-0.20135],[-74.92021,-0.22273],[-74.92958,-0.22625],[-74.9382,-0.20053],[-74.96095,-0.1944],[-74.97759,-0.18078],[-74.97105,-0.16451],[-74.97445,-0.1505],[-75.00994,-0.14802],[-75.02414,-0.13044],[-75.0507,-0.10667],[-75.06078,-0.09939],[-75.086,-0.07711],[-75.10793,-0.08029],[-75.14908,-0.06013],[-75.16547,-0.04453],[-75.18176,-0.03804],[-75.21485,-0.04401],[-75.22117,-0.0534],[-75.21718,-0.06417],[-75.21862,-0.07642],[-75.22281,-0.08455],[-75.24258,-0.10428],[-75.24938,-0.10282],[-75.25617,-0.10959],[-75.26015,-0.11765],[-75.27132,-0.12665],[-75.2976,-0.10545],[-75.33505,-0.10629],[-75.36132,-0.08783],[-75.37524,-0.09478],[-75.39191,-0.09761],[-75.40857,-0.09357],[-75.42167,-0.08047],[-75.44094,-0.07837],[-75.46851,-0.04806],[-75.49401,-0.04797],[-75.53463,-0.01629],[-75.55886,-0.02366],[-75.57485,-0.02554],[-75.58254,-0.01262],[-75.57924,0.00166],[-75.58363,0.0165],[-75.60752,0.01598],[-75.61973,0.02918],[-75.63882,0.04788],[-75.6506,0.03066],[-75.67141,0.04154],[-75.6897,0.03583],[-75.70704,0.04227],[-75.73212,0.03867],[-75.75651,0.03851],[-75.77815,0.04246],[-75.7823,0.05174],[-75.78782,0.05553],[-75.80742,0.04971],[-75.81809,0.0789],[-75.8463,0.11532],[-75.84778,0.12773],[-75.86137,0.13453],[-75.87359,0.11936],[-75.88291,0.11923],[-75.8789,0.13544],[-75.88806,0.14179],[-75.90224,0.13663],[-75.90589,0.14416],[-75.89396,0.15097],[-75.89619,0.16186],[-75.91575,0.17265],[-75.93703,0.19834],[-75.9535,0.20304],[-75.95898,0.21107],[-75.95207,0.21339],[-75.94375,0.22764],[-75.94633,0.23142],[-75.95149,0.22112],[-75.95907,0.22525],[-75.95913,0.23626],[-76.00456,0.24867],[-76.00493,0.25617],[-75.98608,0.25406],[-75.98408,0.26357],[-75.99793,0.27023],[-75.9968,0.28492],[-76.00826,0.30057],[-76.04081,0.30715],[-76.05784,0.33542],[-76.0864,0.33565],[-76.09917,0.31321],[-76.11194,0.31413],[-76.12181,0.32191],[-76.11822,0.34296],[-76.13438,0.37133],[-76.16121,0.38825],[-76.17118,0.37257],[-76.19488,0.37062],[-76.20658,0.38457],[-76.22891,0.37404],[-76.23338,0.40333],[-76.2451,0.40588],[-76.25544,0.40156],[-76.26103,0.40802],[-76.26258,0.42919],[-76.27804,0.4372],[-76.29063,0.42483],[-76.30322,0.41933],[-76.3133,0.43579],[-76.3323,0.41448],[-76.33482,0.38631],[-76.35315,0.378],[-76.37059,0.39433],[-76.40958,0.37893],[-76.41003,0.24212],[-76.42641,0.23265],[-76.42701,0.25682],[-76.44501,0.25538],[-76.44532,0.24015],[-76.48545,0.24002],[-76.5062,0.23549],[-76.53107,0.25637],[-76.56876,0.24101],[-76.58929,0.21912],[-76.62813,0.26307],[-76.65328,0.2514],[-76.65413,0.27133],[-76.678,0.26928],[-76.70151,0.27925],[-76.71285,0.26831],[-76.73311,0.28729],[-76.7647,0.26363],[-76.74479,0.26415],[-76.75268,0.25158],[-76.76951,0.24382],[-76.7853,0.26399],[-76.8162,0.25681],[-76.83611,0.26146],[-76.83165,0.24936],[-76.84573,0.23932],[-76.87938,0.25247],[-76.9055,0.24393],[-76.9337,0.26393],[-76.92282,0.26548],[-76.94422,0.29041],[-76.96521,0.28502],[-76.97522,0.29337],[-76.99525,0.28808],[-77.01527,0.29104],[-77.02945,0.27814],[-77.04681,0.28531],[-77.09802,0.28866],[-77.08233,0.31185],[-77.11961,0.38018],[-77.1491,0.37384],[-77.16485,0.38947],[-77.17713,0.38778],[-77.20993,0.36379],[-77.29749,0.36525],[-77.32156,0.38465],[-77.38068,0.39873],[-77.38357,0.38294],[-77.40857,0.40356],[-77.47304,0.43439],[-77.5277,0.40306],[-77.5223,0.42382],[-77.51965,0.45282],[-77.52533,0.46962],[-77.51747,0.50047],[-77.52373,0.51823],[-77.50801,0.56345],[-77.50202,0.57819],[-77.48504,0.58744],[-77.48043,0.60905],[-77.47856,0.64164],[-77.48059,0.64412],[-77.48193,0.646],[-77.4814,0.64827],[-77.48139,0.65054],[-77.48015,0.65079],[-77.48147,0.65353],[-77.48277,0.65413],[-77.48441,0.65619],[-77.48571,0.65902],[-77.48901,0.66073],[-77.49059,0.66218],[-77.49394,0.66114],[-77.49601,0.66027],[-77.49949,0.65928],[-77.50151,0.6582],[-77.50223,0.65808],[-77.50202,0.6605],[-77.50357,0.66046],[-77.50462,0.65795],[-77.50705,0.65562],[-77.50861,0.65586],[-77.51095,0.65704],[-77.51189,0.65637],[-77.5191,0.65719],[-77.52184,0.65715],[-77.52224,0.65539],[-77.52711,0.65526],[-77.52953,0.65393],[-77.53117,0.6518],[-77.53513,0.65182],[-77.53999,0.64963],[-77.54203,0.65027],[-77.54548,0.64954],[-77.54781,0.64881],[-77.54981,0.64977],[-77.55427,0.6488],[-77.55861,0.64875],[-77.56329,0.65033],[-77.56634,0.65331],[-77.56789,0.65617],[-77.57157,0.65711],[-77.57365,0.65836],[-77.57748,0.65948],[-77.57966,0.66162],[-77.58028,0.66411],[-77.58205,0.66652],[-77.58468,0.66802],[-77.58748,0.66901],[-77.58742,0.67322],[-77.59539,0.67307],[-77.59829,0.67558],[-77.60119,0.67543],[-77.60427,0.6781],[-77.60615,0.68043],[-77.60621,0.68244],[-77.60678,0.68497],[-77.60998,0.68797],[-77.61199,0.68909],[-77.61536,0.68805],[-77.6165,0.68994],[-77.61842,0.69079],[-77.62462,0.69508],[-77.62755,0.69498],[-77.62979,0.69607],[-77.63273,0.69792],[-77.63542,0.69784],[-77.63721,0.69887],[-77.63786,0.70146],[-77.63929,0.70173],[-77.64037,0.70286],[-77.64479,0.70369],[-77.64634,0.70337],[-77.64788,0.70411],[-77.64942,0.70422],[-77.65043,0.70392],[-77.6523,0.70434],[-77.65339,0.70579],[-77.65414,0.70587],[-77.65641,0.70582],[-77.65771,0.70554],[-77.65868,0.70594],[-77.66038,0.70549],[-77.66278,0.70581],[-77.66344,0.70671],[-77.66514,0.70744],[-77.66506,0.70899],[-77.66558,0.7095],[-77.66629,0.71174],[-77.66495,0.71244],[-77.66502,0.71486],[-77.66432,0.71677],[-77.66362,0.7173],[-77.66425,0.71926],[-77.66366,0.72016],[-77.66361,0.72143],[-77.66461,0.72237],[-77.66521,0.72357],[-77.66571,0.72373],[-77.66604,0.72509],[-77.66646,0.72602],[-77.66765,0.72635],[-77.66841,0.72605],[-77.66898,0.72701],[-77.6698,0.72754],[-77.67046,0.72824],[-77.67136,0.7283],[-77.67283,0.72909],[-77.67318,0.73118],[-77.67327,0.73292],[-77.67311,0.73366],[-77.67268,0.73431],[-77.67295,0.73492],[-77.67455,0.73547],[-77.67577,0.73691],[-77.67837,0.73723],[-77.67981,0.73778],[-77.68046,0.73828],[-77.6827,0.73868],[-77.6843,0.73973],[-77.68583,0.73986],[-77.68751,0.73926],[-77.68916,0.73936],[-77.69118,0.74058],[-77.6944,0.74051],[-77.6964,0.73993],[-77.69676,0.7401],[-77.6977,0.74089],[-77.69706,0.74313],[-77.69719,0.74509],[-77.69655,0.74753],[-77.6959,0.74962],[-77.69141,0.75121],[-77.69193,0.7567],[-77.69125,0.76002],[-77.69005,0.763],[-77.69038,0.76493],[-77.68951,0.76569],[-77.68919,0.76796],[-77.68801,0.76931],[-77.68566,0.77033],[-77.68423,0.77183],[-77.684,0.77299],[-77.68247,0.77554],[-77.67747,0.77757],[-77.67329,0.77999],[-77.67149,0.77938],[-77.67008,0.7816],[-77.66764,0.78273],[-77.66545,0.78446],[-77.66376,0.78757],[-77.66207,0.79016],[-77.6769,0.7905],[-77.67691,0.79278],[-77.67644,0.79341],[-77.67632,0.79421],[-77.67689,0.79685],[-77.67571,0.79822],[-77.67418,0.79942],[-77.67401,0.80037],[-77.67435,0.80131],[-77.67417,0.802],[-77.67288,0.80204],[-77.67167,0.80345],[-77.66988,0.80378],[-77.66878,0.8035],[-77.66738,0.8056],[-77.66632,0.80821],[-77.66475,0.80941],[-77.66395,0.81096],[-77.66364,0.81349],[-77.66471,0.81511],[-77.66526,0.81631],[-77.66455,0.81726],[-77.66444,0.81805],[-77.66928,0.81796],[-77.67067,0.82011],[-77.67024,0.82091],[-77.67016,0.82136],[-77.67361,0.82414],[-77.6759,0.82447],[-77.67653,0.82317],[-77.67822,0.82331],[-77.67923,0.82196],[-77.68102,0.82465],[-77.68306,0.82588],[-77.68453,0.82546],[-77.68502,0.82608],[-77.68429,0.82934],[-77.68636,0.82907],[-77.68818,0.83045],[-77.69001,0.83106],[-77.69417,0.83339],[-77.69418,0.83572],[-77.69571,0.8384],[-77.69558,0.83956],[-77.6967,0.84034],[-77.69858,0.83967],[-77.69999,0.84145],[-77.70387,0.84173],[-77.70422,0.84209],[-77.70527,0.84212],[-77.70539,0.84338],[-77.70675,0.84351],[-77.70674,0.84527],[-77.70738,0.84612],[-77.70863,0.84662],[-77.70867,0.84833],[-77.71133,0.84827],[-77.71335,0.85027],[-77.71433,0.85098],[-77.71508,0.85068],[-77.71548,0.84934],[-77.71663,0.84856],[-77.71841,0.85044],[-77.7195,0.84939],[-77.72043,0.84972],[-77.72099,0.84849],[-77.72208,0.84794],[-77.72287,0.84668],[-77.72532,0.84691],[-77.72674,0.84497],[-77.72876,0.84397],[-77.72962,0.84206],[-77.73203,0.84058],[-77.73341,0.83996],[-77.73737,0.83678],[-77.74136,0.83644],[-77.74271,0.83464],[-77.74424,0.83404],[-77.74591,0.83456],[-77.74668,0.83389],[-77.74882,0.83426],[-77.75088,0.83679],[-77.7538,0.83687],[-77.7545,0.83772],[-77.75725,0.83823],[-77.75811,0.83925],[-77.75975,0.83941],[-77.76071,0.84025],[-77.76176,0.84039],[-77.76246,0.84156],[-77.76426,0.8416],[-77.76543,0.84067],[-77.76677,0.84],[-77.76715,0.83952],[-77.76732,0.839],[-77.76786,0.83865],[-77.76835,0.83998],[-77.76985,0.83998],[-77.77108,0.83982],[-77.77265,0.83997],[-77.77401,0.83992],[-77.77459,0.8405],[-77.77567,0.83957],[-77.77697,0.83923],[-77.77737,0.83835],[-77.7776,0.8373],[-77.77841,0.8365],[-77.77899,0.83473],[-77.78037,0.83526],[-77.78406,0.83368],[-77.78579,0.83393],[-77.7864,0.83482],[-77.78754,0.83479],[-77.78867,0.83579],[-77.78951,0.83572],[-77.78994,0.83539],[-77.79127,0.83507],[-77.79209,0.8353],[-77.79307,0.83523],[-77.79415,0.83425],[-77.79544,0.83408],[-77.79703,0.83323],[-77.79723,0.83256],[-77.79718,0.83156],[-77.79779,0.831],[-77.79828,0.83013],[-77.79909,0.83052],[-77.79972,0.83004],[-77.80095,0.83044],[-77.80427,0.83118],[-77.805,0.83052],[-77.80425,0.82887],[-77.80505,0.82752],[-77.80588,0.82724],[-77.80657,0.82682],[-77.80759,0.82669],[-77.80915,0.82358],[-77.81155,0.82145],[-77.81189,0.82028],[-77.81412,0.81932],[-77.81334,0.8175],[-77.81359,0.81637],[-77.81478,0.81583],[-77.8158,0.81479],[-77.81613,0.81338],[-77.81659,0.81289],[-77.81699,0.81209],[-77.81864,0.81032],[-77.81875,0.80915],[-77.81971,0.80866],[-77.82032,0.80724],[-77.82226,0.80693],[-77.82352,0.80732],[-77.82467,0.80654],[-77.82765,0.80601],[-77.82829,0.8065],[-77.83026,0.80628],[-77.83111,0.80669],[-77.83212,0.80614],[-77.83397,0.80589],[-77.83439,0.80455],[-77.83749,0.80341],[-77.83882,0.80408],[-77.84015,0.80407],[-77.84127,0.80302],[-77.84226,0.80308],[-77.84308,0.80281],[-77.8449,0.80394],[-77.84598,0.80278],[-77.85169,0.8023],[-77.85294,0.8032],[-77.85466,0.80276],[-77.8569,0.80301],[-77.85831,0.80125],[-77.86077,0.80283],[-77.86271,0.80279],[-77.86387,0.80233],[-77.86588,0.80127],[-77.86715,0.8019],[-77.86798,0.80178],[-77.87015,0.80361],[-77.87073,0.80365],[-77.87385,0.80529],[-77.87521,0.80444],[-77.87688,0.80445],[-77.87801,0.80517],[-77.87854,0.8066],[-77.87995,0.80655],[-77.88155,0.808],[-77.88265,0.8079],[-77.88374,0.80849],[-77.88503,0.80775],[-77.88624,0.80919],[-77.8871,0.80917],[-77.88762,0.80967],[-77.88849,0.8096],[-77.88937,0.80996],[-77.89062,0.81001],[-77.89346,0.81079],[-77.89571,0.81082],[-77.90208,0.81204],[-77.90543,0.81132],[-77.91033,0.81111],[-77.9133,0.81217],[-77.9149,0.81221],[-77.91758,0.81315],[-77.92192,0.81296],[-77.92323,0.81445],[-77.92431,0.81451],[-77.92591,0.81611],[-77.92837,0.81579],[-77.93014,0.81683],[-77.93111,0.81773],[-77.93267,0.81702],[-77.93476,0.81683],[-77.93617,0.81628],[-77.93712,0.81656],[-77.93867,0.81882],[-77.94401,0.82198],[-77.94661,0.82245],[-77.94775,0.82189],[-77.95009,0.82185],[-77.95191,0.82323],[-77.95459,0.82341],[-77.95692,0.82496],[-77.96007,0.82393],[-77.96167,0.82359],[-77.9635,0.82532],[-77.96545,0.8244],[-77.98128,0.83724],[-77.98354,0.8403],[-77.98455,0.84351],[-77.98917,0.84423],[-77.98966,0.84491],[-77.99115,0.84437],[-77.99207,0.84586],[-77.99119,0.84821],[-77.99047,0.84885],[-77.9914,0.8507],[-77.99429,0.85269],[-77.99491,0.85461],[-77.99649,0.85674],[-77.99795,0.85791],[-77.99983,0.85871],[-78.00083,0.85978],[-78.0037,0.86061],[-78.00617,0.86153],[-78.0107,0.86418],[-78.01249,0.86669],[-78.01298,0.86896],[-78.0149,0.86877],[-78.01631,0.87029],[-78.01809,0.87007],[-78.02089,0.87156],[-78.02069,0.87339],[-78.02118,0.8742],[-78.02231,0.87466],[-78.02374,0.87377],[-78.02465,0.87375],[-78.02554,0.87587],[-78.02658,0.87679],[-78.02779,0.87702],[-78.029,0.87782],[-78.03125,0.87803],[-78.03419,0.87995],[-78.04082,0.87993],[-78.04075,0.88025],[-78.04234,0.88038],[-78.04315,0.88119],[-78.04396,0.88115],[-78.04601,0.88193],[-78.04755,0.88322],[-78.05027,0.88563],[-78.05073,0.88701],[-78.05372,0.88876],[-78.05659,0.8883],[-78.05771,0.88893],[-78.05978,0.8876],[-78.0603,0.88843],[-78.06151,0.8884],[-78.06495,0.88962],[-78.066,0.89084],[-78.06519,0.89314],[-78.06685,0.89535],[-78.07204,0.89651],[-78.07368,0.89557],[-78.07867,0.8978],[-78.08031,0.89687],[-78.08109,0.89731],[-78.08522,0.89647],[-78.08867,0.89668],[-78.09073,0.89948],[-78.09201,0.89998],[-78.09278,0.90167],[-78.09527,0.90239],[-78.09742,0.90395],[-78.0993,0.90641],[-78.09905,0.90804],[-78.10044,0.90933],[-78.10458,0.91122],[-78.10496,0.91244],[-78.10592,0.9137],[-78.10534,0.91479],[-78.10555,0.91629],[-78.10598,0.91791],[-78.10571,0.92065],[-78.1058,0.9227],[-78.1077,0.92534],[-78.10754,0.9279],[-78.10825,0.92923],[-78.11245,0.93145],[-78.1157,0.93282],[-78.11758,0.93417],[-78.11945,0.93431],[-78.12147,0.93595],[-78.12551,0.9364],[-78.12714,0.93566],[-78.13213,0.93606],[-78.13359,0.93557],[-78.13505,0.93577],[-78.13582,0.93493],[-78.13746,0.93445],[-78.14194,0.93089],[-78.14505,0.92664],[-78.14761,0.92591],[-78.14859,0.92484],[-78.15096,0.92524],[-78.15171,0.92501],[-78.15375,0.92419],[-78.15693,0.92548],[-78.15861,0.92517],[-78.1605,0.92701],[-78.16269,0.92852],[-78.16431,0.92935],[-78.16596,0.93099],[-78.16814,0.93143],[-78.17035,0.93308],[-78.17199,0.93312],[-78.17279,0.93338],[-78.17337,0.93451],[-78.17452,0.93457],[-78.1764,0.9353],[-78.17762,0.93722],[-78.17878,0.93631],[-78.18075,0.9363],[-78.1823,0.9379],[-78.18393,0.93733],[-78.18514,0.93791],[-78.18947,0.94202],[-78.19157,0.94336],[-78.19374,0.94527],[-78.19599,0.94442],[-78.1963,0.94616],[-78.19864,0.94662],[-78.19897,0.9475],[-78.19748,0.94818],[-78.19778,0.94965],[-78.20003,0.94947],[-78.20003,0.95069],[-78.19958,0.95211],[-78.19951,0.95358],[-78.19717,0.95431],[-78.19572,0.95578],[-78.19446,0.95547],[-78.19357,0.95634],[-78.19381,0.95695],[-78.19329,0.95804],[-78.19173,0.95934],[-78.19172,0.96165],[-78.19214,0.96435],[-78.19387,0.96662],[-78.19377,0.96807],[-78.19227,0.96881],[-78.19184,0.97031],[-78.19382,0.9721],[-78.19375,0.97361],[-78.19514,0.97574],[-78.19513,0.97785],[-78.1955,0.98107],[-78.19497,0.98376],[-78.19568,0.98543],[-78.19797,0.98721],[-78.19896,0.98936],[-78.20225,0.99269],[-78.20276,0.99394],[-78.20238,0.99517],[-78.20144,0.99661],[-78.20202,0.9974],[-78.203,0.99713],[-78.20384,0.99716],[-78.20387,0.99905],[-78.20627,1.00215],[-78.20836,1.00366],[-78.20928,1.00513],[-78.21086,1.00532],[-78.21319,1.00452],[-78.21453,1.00607],[-78.21592,1.00655],[-78.2176,1.00838],[-78.2197,1.00953],[-78.2213,1.00926],[-78.22142,1.01041],[-78.2227,1.01141],[-78.22411,1.01211],[-78.22654,1.01267],[-78.2279,1.0124],[-78.228,1.01339],[-78.22892,1.01361],[-78.23043,1.01305],[-78.23158,1.01458],[-78.23355,1.01508],[-78.23483,1.0163],[-78.23485,1.0174],[-78.23646,1.0182],[-78.23793,1.01861],[-78.23812,1.02093],[-78.23717,1.02157],[-78.23813,1.02294],[-78.23625,1.02344],[-78.23748,1.02491],[-78.23881,1.02586],[-78.23899,1.0274],[-78.24072,1.02769],[-78.24198,1.02887],[-78.24349,1.02984],[-78.24514,1.02884],[-78.24652,1.02938],[-78.24715,1.02886],[-78.24864,1.02894],[-78.25035,1.02863],[-78.25159,1.03071],[-78.2533,1.03207],[-78.25238,1.03573],[-78.25345,1.03688],[-78.25612,1.03699],[-78.25771,1.03795],[-78.25729,1.03954],[-78.25824,1.0401],[-78.25955,1.04023],[-78.26139,1.04223],[-78.26376,1.0421],[-78.2654,1.04271],[-78.26597,1.04341],[-78.26617,1.04545],[-78.26718,1.04633],[-78.26909,1.04658],[-78.27151,1.04721],[-78.27461,1.05031],[-78.27483,1.05289],[-78.27775,1.05406],[-78.28011,1.05471],[-78.28147,1.05619],[-78.28192,1.05723],[-78.28137,1.05821],[-78.27992,1.05851],[-78.27944,1.05964],[-78.27566,1.06168],[-78.27634,1.06309],[-78.27865,1.06536],[-78.27976,1.06784],[-78.2777,1.06994],[-78.2777,1.07148],[-78.27706,1.07238],[-78.27586,1.07229],[-78.27423,1.07362],[-78.27367,1.07495],[-78.2726,1.07516],[-78.2708,1.07473],[-78.26913,1.07648],[-78.26771,1.07681],[-78.26597,1.07796],[-78.26516,1.07971],[-78.26395,1.08077],[-78.26226,1.08118],[-78.26215,1.08209],[-78.26042,1.08201],[-78.2587,1.08065],[-78.25737,1.0801],[-78.2551,1.08039],[-78.25416,1.07943],[-78.25398,1.0779],[-78.25238,1.07829],[-78.2515,1.07959],[-78.25184,1.08135],[-78.25184,1.08256],[-78.25122,1.08314],[-78.2491,1.08324],[-78.24941,1.08431],[-78.2507,1.08581],[-78.2506,1.08733],[-78.25166,1.08868],[-78.25328,1.08898],[-78.25527,1.08633],[-78.25598,1.08721],[-78.25612,1.08839],[-78.25557,1.09065],[-78.2539,1.09154],[-78.25266,1.09276],[-78.25256,1.0939],[-78.25276,1.09504],[-78.2518,1.09558],[-78.25067,1.09768],[-78.25086,1.09931],[-78.25285,1.1015],[-78.25368,1.10108],[-78.25428,1.09968],[-78.25423,1.09793],[-78.2563,1.09775],[-78.25858,1.09705],[-78.26055,1.09779],[-78.26101,1.09891],[-78.26204,1.09986],[-78.26265,1.09905],[-78.26348,1.09902],[-78.26509,1.09991],[-78.26522,1.10159],[-78.26623,1.10359],[-78.26746,1.10521],[-78.26609,1.10536],[-78.26383,1.10501],[-78.26179,1.10708],[-78.26271,1.10928],[-78.26367,1.11097],[-78.26723,1.11179],[-78.26938,1.11178],[-78.27114,1.11327],[-78.27424,1.11404],[-78.27434,1.11257],[-78.2746,1.1111],[-78.27701,1.10841],[-78.27817,1.1085],[-78.27884,1.10996],[-78.28178,1.1109],[-78.28267,1.11226],[-78.28039,1.1135],[-78.27958,1.11451],[-78.27978,1.1161],[-78.2806,1.11676],[-78.28082,1.11759],[-78.27929,1.1194],[-78.27982,1.11997],[-78.28168,1.11969],[-78.28282,1.12004],[-78.28296,1.12117],[-78.28232,1.12234],[-78.2815,1.12316],[-78.28407,1.12276],[-78.28527,1.12343],[-78.28586,1.12477],[-78.28688,1.12559],[-78.28793,1.12578],[-78.28866,1.12663],[-78.28795,1.12729],[-78.28737,1.12906],[-78.29123,1.13352],[-78.29021,1.13492],[-78.29091,1.13688],[-78.29109,1.13927],[-78.29171,1.14075],[-78.29272,1.14223],[-78.29278,1.14399],[-78.29318,1.14554],[-78.29482,1.14531],[-78.29539,1.14598],[-78.29485,1.14771],[-78.29552,1.14834],[-78.29788,1.14762],[-78.29924,1.14857],[-78.29895,1.14961],[-78.29801,1.15008],[-78.29695,1.14938],[-78.29631,1.14954],[-78.29736,1.15117],[-78.29756,1.15221],[-78.29702,1.15347],[-78.29713,1.15428],[-78.29852,1.15575],[-78.2982,1.15624],[-78.29642,1.15659],[-78.29501,1.15722],[-78.29521,1.15853],[-78.29689,1.15905],[-78.29836,1.15856],[-78.29908,1.15951],[-78.29742,1.16041],[-78.29551,1.16108],[-78.2968,1.16293],[-78.29483,1.16459],[-78.29438,1.16825],[-78.29467,1.17007],[-78.29718,1.1723],[-78.29889,1.17155],[-78.30006,1.16997],[-78.30169,1.17116],[-78.30372,1.17145],[-78.30512,1.17277],[-78.30483,1.17364],[-78.30394,1.17416],[-78.3035,1.17543],[-78.30492,1.17677],[-78.30483,1.17798],[-78.30799,1.17957],[-78.30946,1.18069],[-78.30965,1.18221],[-78.31137,1.18218],[-78.31195,1.18343],[-78.31053,1.18642],[-78.31139,1.18718],[-78.31068,1.18923],[-78.31094,1.19042],[-78.3125,1.19031],[-78.31336,1.18946],[-78.31691,1.19186],[-78.31846,1.19401],[-78.31908,1.19404],[-78.3218,1.19085],[-78.32363,1.19169],[-78.3231,1.19296],[-78.32267,1.19475],[-78.32458,1.19529],[-78.32599,1.19496],[-78.32673,1.19362],[-78.32634,1.19146],[-78.32704,1.18995],[-78.32749,1.18808],[-78.32705,1.18632],[-78.32819,1.18473],[-78.33044,1.18334],[-78.33662,1.18287],[-78.33826,1.18224],[-78.33733,1.18048],[-78.33691,1.17857],[-78.34084,1.17889],[-78.34118,1.17992],[-78.34088,1.18138],[-78.34215,1.18254],[-78.3441,1.18335],[-78.34544,1.18327],[-78.3463,1.18216],[-78.35161,1.18171],[-78.3535,1.18028],[-78.35477,1.1804],[-78.35533,1.18182],[-78.35701,1.18185],[-78.35703,1.18122],[-78.35648,1.17964],[-78.35674,1.17807],[-78.35805,1.17665],[-78.35918,1.17621],[-78.35977,1.1749],[-78.3607,1.17487],[-78.36159,1.17618],[-78.36351,1.17674],[-78.36437,1.17605],[-78.365,1.17431],[-78.36806,1.17556],[-78.37405,1.17432],[-78.37509,1.17386],[-78.37597,1.17218],[-78.3784,1.17195],[-78.38014,1.17139],[-78.38106,1.17007],[-78.38017,1.16765],[-78.37945,1.16677],[-78.38067,1.16575],[-78.38276,1.16285],[-78.38261,1.16098],[-78.38229,1.15963],[-78.38276,1.15932],[-78.38701,1.15935],[-78.388,1.15793],[-78.38951,1.15634],[-78.392,1.15504],[-78.39338,1.15375],[-78.39578,1.15245],[-78.39897,1.15321],[-78.40021,1.15264],[-78.40249,1.15242],[-78.40286,1.15319],[-78.40247,1.15492],[-78.40274,1.15685],[-78.40392,1.15709],[-78.40582,1.15801],[-78.40711,1.15885],[-78.40818,1.16033],[-78.40928,1.15992],[-78.41158,1.15944],[-78.41519,1.15958],[-78.41786,1.16033],[-78.41887,1.15818],[-78.42129,1.15576],[-78.42312,1.15505],[-78.42501,1.15419],[-78.42544,1.15262],[-78.42431,1.15134],[-78.41915,1.14932],[-78.41701,1.14805],[-78.417,1.145],[-78.41669,1.14374],[-78.41733,1.14179],[-78.41601,1.14034],[-78.41556,1.1393],[-78.41674,1.13849],[-78.4189,1.13807],[-78.42206,1.13788],[-78.4263,1.13835],[-78.42965,1.13936],[-78.43212,1.14153],[-78.43346,1.14414],[-78.43359,1.14822],[-78.43407,1.15178],[-78.43546,1.15401],[-78.43856,1.15813],[-78.43822,1.15916],[-78.43659,1.15874],[-78.43513,1.15918],[-78.43547,1.16195],[-78.43367,1.1636],[-78.43255,1.16842],[-78.4335,1.1701],[-78.43277,1.17128],[-78.43154,1.17144],[-78.43025,1.17032],[-78.42822,1.16933],[-78.42687,1.16978],[-78.42654,1.17058],[-78.42693,1.17232],[-78.42766,1.17406],[-78.4274,1.17565],[-78.4255,1.17755],[-78.42601,1.17913],[-78.42718,1.17884],[-78.42863,1.18076],[-78.42904,1.18216],[-78.42902,1.18343],[-78.42845,1.18466],[-78.42857,1.18659],[-78.43127,1.18913],[-78.43686,1.18985],[-78.43759,1.19111],[-78.43746,1.19263],[-78.4379,1.19394],[-78.43946,1.19423],[-78.4419,1.19001],[-78.44266,1.18706],[-78.44247,1.18389],[-78.44328,1.18289],[-78.44439,1.18242],[-78.44609,1.18217],[-78.4476,1.18322],[-78.44995,1.18378],[-78.45139,1.1828],[-78.45215,1.18096],[-78.4535,1.17729],[-78.45498,1.17561],[-78.45754,1.17768],[-78.45893,1.1773],[-78.46065,1.17605],[-78.46205,1.17562],[-78.46346,1.17666],[-78.46328,1.18035],[-78.46505,1.18097],[-78.46674,1.17995],[-78.46877,1.17945],[-78.47001,1.18076],[-78.47091,1.18275],[-78.47065,1.1845],[-78.46987,1.18651],[-78.46977,1.18801],[-78.47052,1.18838],[-78.47384,1.18978],[-78.47652,1.1912],[-78.47899,1.19354],[-78.47992,1.19299],[-78.48017,1.19141],[-78.48128,1.19059],[-78.48256,1.19064],[-78.48362,1.18902],[-78.48605,1.1886],[-78.48771,1.18625],[-78.4892,1.18527],[-78.49045,1.18538],[-78.49138,1.18672],[-78.4923,1.18909],[-78.49465,1.19125],[-78.49473,1.19266],[-78.49231,1.19496],[-78.49246,1.19648],[-78.49415,1.19757],[-78.49721,1.19797],[-78.50035,1.19512],[-78.50204,1.19509],[-78.50452,1.19714],[-78.50579,1.19696],[-78.50683,1.19419],[-78.50788,1.18987],[-78.50928,1.18845],[-78.51092,1.18871],[-78.51566,1.18726],[-78.51706,1.18778],[-78.51763,1.18952],[-78.51666,1.19143],[-78.51412,1.19418],[-78.51252,1.19548],[-78.51276,1.19968],[-78.5119,1.20165],[-78.51172,1.20345],[-78.51307,1.20404],[-78.51442,1.20343],[-78.51558,1.20357],[-78.51617,1.20456],[-78.51573,1.20717],[-78.51413,1.20959],[-78.51385,1.21192],[-78.51443,1.21338],[-78.51622,1.21368],[-78.5187,1.2126],[-78.52091,1.21302],[-78.52164,1.21456],[-78.52167,1.21628],[-78.52089,1.21868],[-78.52138,1.2209],[-78.5236,1.22136],[-78.52471,1.22039],[-78.52651,1.21959],[-78.52888,1.22069],[-78.52968,1.22254],[-78.5306,1.22383],[-78.53542,1.22511],[-78.53749,1.22613],[-78.53855,1.22835],[-78.53981,1.229],[-78.54134,1.22849],[-78.54314,1.22669],[-78.54597,1.22541],[-78.54747,1.22619],[-78.54811,1.22713],[-78.54802,1.22834],[-78.54429,1.23138],[-78.54109,1.23493],[-78.54212,1.23677],[-78.54367,1.23827],[-78.5438,1.23992],[-78.54318,1.24126],[-78.54308,1.2426],[-78.5442,1.24418],[-78.54587,1.24391],[-78.54805,1.24296],[-78.54983,1.2426],[-78.55118,1.24377],[-78.55146,1.24491],[-78.55065,1.24735],[-78.55092,1.2489],[-78.55205,1.24994],[-78.55386,1.25072],[-78.5555,1.25082],[-78.55796,1.24983],[-78.62132,1.24988],[-78.62237,1.25208],[-78.62379,1.25306],[-78.62452,1.25336],[-78.62582,1.25429],[-78.6266,1.25582],[-78.62704,1.2589],[-78.62688,1.26127],[-78.62918,1.26186],[-78.63035,1.26062],[-78.63337,1.26056],[-78.63375,1.26163],[-78.6297,1.26395],[-78.62983,1.26516],[-78.63217,1.26546],[-78.63529,1.26842],[-78.63663,1.26808],[-78.63818,1.26602],[-78.64009,1.26414],[-78.64117,1.26484],[-78.63993,1.26665],[-78.6388,1.2673],[-78.63887,1.26795],[-78.64224,1.26878],[-78.64424,1.27209],[-78.64606,1.27381],[-78.64805,1.27638],[-78.64927,1.27931],[-78.64727,1.28593],[-78.64609,1.28727],[-78.64595,1.28878],[-78.64931,1.29002],[-78.65131,1.2904],[-78.65272,1.29152],[-78.65335,1.29426],[-78.65348,1.297],[-78.65534,1.3011],[-78.65694,1.30256],[-78.65682,1.30384],[-78.65762,1.30537],[-78.65904,1.30482],[-78.65948,1.30546],[-78.65795,1.30706],[-78.65954,1.30752],[-78.65874,1.30884],[-78.65906,1.30941],[-78.66093,1.31033],[-78.66049,1.31159],[-78.65935,1.31216],[-78.66006,1.31266],[-78.66129,1.31163],[-78.6627,1.31229],[-78.66228,1.315],[-78.66057,1.31836],[-78.66041,1.3194],[-78.66163,1.31959],[-78.6625,1.32133],[-78.66374,1.32069],[-78.66807,1.32023],[-78.66917,1.31966],[-78.67045,1.3208],[-78.67172,1.32125],[-78.67119,1.32207],[-78.67099,1.32323],[-78.67274,1.32315],[-78.67484,1.32205],[-78.67533,1.32226],[-78.67525,1.3248],[-78.6762,1.32632],[-78.67914,1.32627],[-78.67926,1.32909],[-78.68239,1.33208],[-78.68709,1.33351],[-78.68859,1.33439],[-78.68991,1.33459],[-78.69048,1.33146],[-78.69243,1.3309],[-78.69426,1.32995],[-78.69518,1.33011],[-78.69438,1.33302],[-78.69427,1.33473],[-78.6954,1.33477],[-78.69671,1.33583],[-78.69674,1.3371],[-78.69892,1.33573],[-78.69938,1.33624],[-78.69944,1.33846],[-78.70076,1.33999],[-78.70208,1.33744],[-78.70255,1.33799],[-78.70284,1.34004],[-78.70348,1.34149],[-78.70347,1.34627],[-78.70427,1.34702],[-78.70437,1.34777],[-78.70355,1.34857],[-78.70363,1.34984],[-78.70595,1.35056],[-78.70708,1.35466],[-78.70953,1.35689],[-78.70924,1.35825],[-78.71048,1.36017],[-78.71378,1.36191],[-78.71485,1.36091],[-78.71717,1.36273],[-78.71828,1.36454],[-78.71897,1.36663],[-78.72085,1.36926],[-78.72536,1.36917],[-78.72642,1.36844],[-78.72765,1.36823],[-78.72891,1.36866],[-78.72817,1.37022],[-78.72959,1.37024],[-78.73091,1.36804],[-78.73404,1.37044],[-78.73958,1.37643],[-78.74218,1.37742],[-78.74352,1.37616],[-78.74743,1.37902],[-78.74737,1.38146],[-78.75097,1.38759],[-78.75407,1.39166],[-78.7587,1.39309],[-78.76335,1.39271],[-78.76456,1.39181],[-78.76543,1.39023],[-78.76775,1.39057],[-78.77153,1.39014],[-78.77566,1.39049],[-78.7782,1.3913],[-78.77989,1.39281],[-78.77953,1.4002],[-78.77969,1.40383],[-78.78182,1.40575],[-78.78412,1.40664],[-78.79091,1.40609],[-78.79865,1.41494],[-78.79892,1.42068],[-78.7997,1.42624],[-78.80075,1.42861],[-78.81054,1.42911],[-78.81414,1.43012],[-78.81759,1.43275],[-78.82013,1.43683],[-78.82387,1.44143],[-78.8347,1.44093],[-78.83927,1.44369],[-79.75,2],[-82,4],[-77.89333,7.22057],[-77.81787,7.45806],[-77.81383,7.45566],[-77.80958,7.4529],[-77.8069,7.45351],[-77.80526,7.46041],[-77.80361,7.46289],[-77.7926,7.47385],[-77.78332,7.46978],[-77.77953,7.46163],[-77.76098,7.45894],[-77.74208,7.45114],[-77.74705,7.44316],[-77.73692,7.4379],[-77.72246,7.43321],[-77.71145,7.44077],[-77.71142,7.44969],[-77.70177,7.45452],[-77.70037,7.46616],[-77.70602,7.46884],[-77.70403,7.49604],[-77.71029,7.5001],[-77.70237,7.50817],[-77.7057,7.51971],[-77.71591,7.53671],[-77.7268,7.56391],[-77.73083,7.56661],[-77.73888,7.58562],[-77.7387,7.60054],[-77.74598,7.60656],[-77.7519,7.6153],[-77.74038,7.63005],[-77.7426,7.64005],[-77.74893,7.65276],[-77.74188,7.65867],[-77.74522,7.66911],[-77.74169,7.67682],[-77.73445,7.68864],[-77.7277,7.68783],[-77.72781,7.6979],[-77.70898,7.69035],[-77.70114,7.69504],[-77.68684,7.68538],[-77.68163,7.67684],[-77.67642,7.67647],[-77.6715,7.66756],[-77.65754,7.66198],[-77.64609,7.6481],[-77.63676,7.61444],[-77.62194,7.57535],[-77.61124,7.56007],[-77.61153,7.54479],[-77.59258,7.5353],[-77.58463,7.51084],[-77.57599,7.5136],[-77.5646,7.50547],[-77.53255,7.54706],[-77.5266,7.55814],[-77.52477,7.57602],[-77.50097,7.56668],[-77.48815,7.56959],[-77.49444,7.58834],[-77.48151,7.60846],[-77.46445,7.6347],[-77.46937,7.65413],[-77.44099,7.65723],[-77.43733,7.68075],[-77.43206,7.69148],[-77.41719,7.70222],[-77.41627,7.71961],[-77.41278,7.72421],[-77.40654,7.72065],[-77.39681,7.73394],[-77.39384,7.76052],[-77.37793,7.75816],[-77.37713,7.77076],[-77.35985,7.76568],[-77.34668,7.76196],[-77.33728,7.76974],[-77.34847,7.77751],[-77.34318,7.78189],[-77.34202,7.78762],[-77.35754,7.8127],[-77.35569,7.82184],[-77.36344,7.8337],[-77.34161,7.84984],[-77.33928,7.8671],[-77.32438,7.88388],[-77.32321,7.89523],[-77.30677,7.89859],[-77.29444,7.90738],[-77.27525,7.90666],[-77.26156,7.9175],[-77.23773,7.91983],[-77.21528,7.91673],[-77.20886,7.923],[-77.1887,7.92246],[-77.17611,7.91785],[-77.16007,7.92956],[-77.18322,7.95523],[-77.16801,7.96602],[-77.16653,7.97273],[-77.1821,7.98633],[-77.19081,7.98769],[-77.19998,7.99993],[-77.21486,8.01149],[-77.21406,8.01931],[-77.2215,8.02713],[-77.23342,8.02305],[-77.22547,8.03528],[-77.22851,8.05704],[-77.22743,8.06724],[-77.21811,8.08152],[-77.22184,8.10158],[-77.2338,8.11619],[-77.23272,8.13013],[-77.22615,8.13591],[-77.2565,8.15564],[-77.24795,8.16091],[-77.24627,8.17434],[-77.25161,8.18886],[-77.2597,8.19388],[-77.25939,8.20799],[-77.26735,8.21377],[-77.28081,8.21684],[-77.27989,8.22423],[-77.28995,8.2425],[-77.28397,8.25321],[-77.28614,8.26162],[-77.29654,8.26324],[-77.30248,8.27063],[-77.29743,8.28618],[-77.30499,8.28893],[-77.31118,8.27129],[-77.3208,8.2754],[-77.33179,8.27271],[-77.33643,8.28683],[-77.35342,8.30366],[-77.35463,8.32185],[-77.34897,8.3346],[-77.34983,8.34668],[-77.3452,8.34857],[-77.34872,8.35936],[-77.35769,8.36442],[-77.36185,8.37763],[-77.35541,8.38774],[-77.35928,8.40193],[-77.37388,8.41202],[-77.37942,8.42541],[-77.38597,8.43109],[-77.38496,8.43744],[-77.3929,8.44811],[-77.39878,8.46218],[-77.40415,8.46657],[-77.40059,8.47708],[-77.41729,8.47841],[-77.43731,8.47093],[-77.44703,8.47228],[-77.44794,8.47667],[-77.44541,8.4797],[-77.44861,8.48716],[-77.44769,8.49462],[-77.45054,8.5014],[-77.45408,8.50546],[-77.45787,8.5097],[-77.44518,8.51461],[-77.43849,8.5298],[-77.43768,8.53937],[-77.43961,8.54215],[-77.43663,8.54761],[-77.44051,8.55647],[-77.43729,8.56061],[-77.43468,8.56364],[-77.42725,8.55785],[-77.42406,8.56378],[-77.41812,8.56767],[-77.40966,8.56731],[-77.41185,8.57154],[-77.4113,8.57644],[-77.41325,8.58143],[-77.41795,8.58371],[-77.41842,8.58692],[-77.41409,8.58931],[-77.40495,8.58424],[-77.39993,8.5863],[-77.39536,8.58393],[-77.3901,8.58496],[-77.39315,8.58974],[-77.39208,8.59383],[-77.39959,8.6003],[-77.40367,8.61152],[-77.40325,8.61513],[-77.40007,8.6167],[-77.40329,8.62597],[-77.40857,8.63524],[-77.41076,8.64078],[-77.40883,8.64496],[-77.39545,8.65149],[-77.3897,8.6499],[-77.38395,8.64356],[-77.3785,8.64225],[-77.37168,8.63755],[-77.3649,8.64105],[-77.36937,8.65332],[-77.3704,8.66286],[-77.36354,8.66664],[-77.36388,8.6709],[-77.35667,8.67584],[-77,10],[-77,15],[-62,11.5],[-26,11.5]]]}},{"type":"Feature","properties":{"cq_zone_name":"Western Zone of South America","cq_zone_number":10,"cq_zone_name_loc":[-5,-100]},"geometry":{"type":"Polygon","coordinates":[[[-130,4],[-82,4],[-79.75,2],[-78.83927,1.44369],[-78.8347,1.44093],[-78.82387,1.44143],[-78.82013,1.43683],[-78.81759,1.43275],[-78.81414,1.43012],[-78.81054,1.42911],[-78.80075,1.42861],[-78.7997,1.42624],[-78.79892,1.42068],[-78.79865,1.41494],[-78.79091,1.40609],[-78.78412,1.40664],[-78.78182,1.40575],[-78.77969,1.40383],[-78.77953,1.4002],[-78.77989,1.39281],[-78.7782,1.3913],[-78.77566,1.39049],[-78.77153,1.39014],[-78.76775,1.39057],[-78.76543,1.39023],[-78.76456,1.39181],[-78.76335,1.39271],[-78.7587,1.39309],[-78.75407,1.39166],[-78.75097,1.38759],[-78.74737,1.38146],[-78.74743,1.37902],[-78.74352,1.37616],[-78.74218,1.37742],[-78.73958,1.37643],[-78.73404,1.37044],[-78.73091,1.36804],[-78.72959,1.37024],[-78.72817,1.37022],[-78.72891,1.36866],[-78.72765,1.36823],[-78.72642,1.36844],[-78.72536,1.36917],[-78.72085,1.36926],[-78.71897,1.36663],[-78.71828,1.36454],[-78.71717,1.36273],[-78.71485,1.36091],[-78.71378,1.36191],[-78.71048,1.36017],[-78.70924,1.35825],[-78.70953,1.35689],[-78.70708,1.35466],[-78.70595,1.35056],[-78.70363,1.34984],[-78.70355,1.34857],[-78.70437,1.34777],[-78.70427,1.34702],[-78.70347,1.34627],[-78.70348,1.34149],[-78.70284,1.34004],[-78.70255,1.33799],[-78.70208,1.33744],[-78.70076,1.33999],[-78.69944,1.33846],[-78.69938,1.33624],[-78.69892,1.33573],[-78.69674,1.3371],[-78.69671,1.33583],[-78.6954,1.33477],[-78.69427,1.33473],[-78.69438,1.33302],[-78.69518,1.33011],[-78.69426,1.32995],[-78.69243,1.3309],[-78.69048,1.33146],[-78.68991,1.33459],[-78.68859,1.33439],[-78.68709,1.33351],[-78.68239,1.33208],[-78.67926,1.32909],[-78.67914,1.32627],[-78.6762,1.32632],[-78.67525,1.3248],[-78.67533,1.32226],[-78.67484,1.32205],[-78.67274,1.32315],[-78.67099,1.32323],[-78.67119,1.32207],[-78.67172,1.32125],[-78.67045,1.3208],[-78.66917,1.31966],[-78.66807,1.32023],[-78.66374,1.32069],[-78.6625,1.32133],[-78.66163,1.31959],[-78.66041,1.3194],[-78.66057,1.31836],[-78.66228,1.315],[-78.6627,1.31229],[-78.66129,1.31163],[-78.66006,1.31266],[-78.65935,1.31216],[-78.66049,1.31159],[-78.66093,1.31033],[-78.65906,1.30941],[-78.65874,1.30884],[-78.65954,1.30752],[-78.65795,1.30706],[-78.65948,1.30546],[-78.65904,1.30482],[-78.65762,1.30537],[-78.65682,1.30384],[-78.65694,1.30256],[-78.65534,1.3011],[-78.65348,1.297],[-78.65335,1.29426],[-78.65272,1.29152],[-78.65131,1.2904],[-78.64931,1.29002],[-78.64595,1.28878],[-78.64609,1.28727],[-78.64727,1.28593],[-78.64927,1.27931],[-78.64805,1.27638],[-78.64606,1.27381],[-78.64424,1.27209],[-78.64224,1.26878],[-78.63887,1.26795],[-78.6388,1.2673],[-78.63993,1.26665],[-78.64117,1.26484],[-78.64009,1.26414],[-78.63818,1.26602],[-78.63663,1.26808],[-78.63529,1.26842],[-78.63217,1.26546],[-78.62983,1.26516],[-78.6297,1.26395],[-78.63375,1.26163],[-78.63337,1.26056],[-78.63035,1.26062],[-78.62918,1.26186],[-78.62688,1.26127],[-78.62704,1.2589],[-78.6266,1.25582],[-78.62582,1.25429],[-78.62452,1.25336],[-78.62379,1.25306],[-78.62237,1.25208],[-78.62132,1.24988],[-78.55796,1.24983],[-78.5555,1.25082],[-78.55386,1.25072],[-78.55205,1.24994],[-78.55092,1.2489],[-78.55065,1.24735],[-78.55146,1.24491],[-78.55118,1.24377],[-78.54983,1.2426],[-78.54805,1.24296],[-78.54587,1.24391],[-78.5442,1.24418],[-78.54308,1.2426],[-78.54318,1.24126],[-78.5438,1.23992],[-78.54367,1.23827],[-78.54212,1.23677],[-78.54109,1.23493],[-78.54429,1.23138],[-78.54802,1.22834],[-78.54811,1.22713],[-78.54747,1.22619],[-78.54597,1.22541],[-78.54314,1.22669],[-78.54134,1.22849],[-78.53981,1.229],[-78.53855,1.22835],[-78.53749,1.22613],[-78.53542,1.22511],[-78.5306,1.22383],[-78.52968,1.22254],[-78.52888,1.22069],[-78.52651,1.21959],[-78.52471,1.22039],[-78.5236,1.22136],[-78.52138,1.2209],[-78.52089,1.21868],[-78.52167,1.21628],[-78.52164,1.21456],[-78.52091,1.21302],[-78.5187,1.2126],[-78.51622,1.21368],[-78.51443,1.21338],[-78.51385,1.21192],[-78.51413,1.20959],[-78.51573,1.20717],[-78.51617,1.20456],[-78.51558,1.20357],[-78.51442,1.20343],[-78.51307,1.20404],[-78.51172,1.20345],[-78.5119,1.20165],[-78.51276,1.19968],[-78.51252,1.19548],[-78.51412,1.19418],[-78.51666,1.19143],[-78.51763,1.18952],[-78.51706,1.18778],[-78.51566,1.18726],[-78.51092,1.18871],[-78.50928,1.18845],[-78.50788,1.18987],[-78.50683,1.19419],[-78.50579,1.19696],[-78.50452,1.19714],[-78.50204,1.19509],[-78.50035,1.19512],[-78.49721,1.19797],[-78.49415,1.19757],[-78.49246,1.19648],[-78.49231,1.19496],[-78.49473,1.19266],[-78.49465,1.19125],[-78.4923,1.18909],[-78.49138,1.18672],[-78.49045,1.18538],[-78.4892,1.18527],[-78.48771,1.18625],[-78.48605,1.1886],[-78.48362,1.18902],[-78.48256,1.19064],[-78.48128,1.19059],[-78.48017,1.19141],[-78.47992,1.19299],[-78.47899,1.19354],[-78.47652,1.1912],[-78.47384,1.18978],[-78.47052,1.18838],[-78.46977,1.18801],[-78.46987,1.18651],[-78.47065,1.1845],[-78.47091,1.18275],[-78.47001,1.18076],[-78.46877,1.17945],[-78.46674,1.17995],[-78.46505,1.18097],[-78.46328,1.18035],[-78.46346,1.17666],[-78.46205,1.17562],[-78.46065,1.17605],[-78.45893,1.1773],[-78.45754,1.17768],[-78.45498,1.17561],[-78.4535,1.17729],[-78.45215,1.18096],[-78.45139,1.1828],[-78.44995,1.18378],[-78.4476,1.18322],[-78.44609,1.18217],[-78.44439,1.18242],[-78.44328,1.18289],[-78.44247,1.18389],[-78.44266,1.18706],[-78.4419,1.19001],[-78.43946,1.19423],[-78.4379,1.19394],[-78.43746,1.19263],[-78.43759,1.19111],[-78.43686,1.18985],[-78.43127,1.18913],[-78.42857,1.18659],[-78.42845,1.18466],[-78.42902,1.18343],[-78.42904,1.18216],[-78.42863,1.18076],[-78.42718,1.17884],[-78.42601,1.17913],[-78.4255,1.17755],[-78.4274,1.17565],[-78.42766,1.17406],[-78.42693,1.17232],[-78.42654,1.17058],[-78.42687,1.16978],[-78.42822,1.16933],[-78.43025,1.17032],[-78.43154,1.17144],[-78.43277,1.17128],[-78.4335,1.1701],[-78.43255,1.16842],[-78.43367,1.1636],[-78.43547,1.16195],[-78.43513,1.15918],[-78.43659,1.15874],[-78.43822,1.15916],[-78.43856,1.15813],[-78.43546,1.15401],[-78.43407,1.15178],[-78.43359,1.14822],[-78.43346,1.14414],[-78.43212,1.14153],[-78.42965,1.13936],[-78.4263,1.13835],[-78.42206,1.13788],[-78.4189,1.13807],[-78.41674,1.13849],[-78.41556,1.1393],[-78.41601,1.14034],[-78.41733,1.14179],[-78.41669,1.14374],[-78.417,1.145],[-78.41701,1.14805],[-78.41915,1.14932],[-78.42431,1.15134],[-78.42544,1.15262],[-78.42501,1.15419],[-78.42312,1.15505],[-78.42129,1.15576],[-78.41887,1.15818],[-78.41786,1.16033],[-78.41519,1.15958],[-78.41158,1.15944],[-78.40928,1.15992],[-78.40818,1.16033],[-78.40711,1.15885],[-78.40582,1.15801],[-78.40392,1.15709],[-78.40274,1.15685],[-78.40247,1.15492],[-78.40286,1.15319],[-78.40249,1.15242],[-78.40021,1.15264],[-78.39897,1.15321],[-78.39578,1.15245],[-78.39338,1.15375],[-78.392,1.15504],[-78.38951,1.15634],[-78.388,1.15793],[-78.38701,1.15935],[-78.38276,1.15932],[-78.38229,1.15963],[-78.38261,1.16098],[-78.38276,1.16285],[-78.38067,1.16575],[-78.37945,1.16677],[-78.38017,1.16765],[-78.38106,1.17007],[-78.38014,1.17139],[-78.3784,1.17195],[-78.37597,1.17218],[-78.37509,1.17386],[-78.37405,1.17432],[-78.36806,1.17556],[-78.365,1.17431],[-78.36437,1.17605],[-78.36351,1.17674],[-78.36159,1.17618],[-78.3607,1.17487],[-78.35977,1.1749],[-78.35918,1.17621],[-78.35805,1.17665],[-78.35674,1.17807],[-78.35648,1.17964],[-78.35703,1.18122],[-78.35701,1.18185],[-78.35533,1.18182],[-78.35477,1.1804],[-78.3535,1.18028],[-78.35161,1.18171],[-78.3463,1.18216],[-78.34544,1.18327],[-78.3441,1.18335],[-78.34215,1.18254],[-78.34088,1.18138],[-78.34118,1.17992],[-78.34084,1.17889],[-78.33691,1.17857],[-78.33733,1.18048],[-78.33826,1.18224],[-78.33662,1.18287],[-78.33044,1.18334],[-78.32819,1.18473],[-78.32705,1.18632],[-78.32749,1.18808],[-78.32704,1.18995],[-78.32634,1.19146],[-78.32673,1.19362],[-78.32599,1.19496],[-78.32458,1.19529],[-78.32267,1.19475],[-78.3231,1.19296],[-78.32363,1.19169],[-78.3218,1.19085],[-78.31908,1.19404],[-78.31846,1.19401],[-78.31691,1.19186],[-78.31336,1.18946],[-78.3125,1.19031],[-78.31094,1.19042],[-78.31068,1.18923],[-78.31139,1.18718],[-78.31053,1.18642],[-78.31195,1.18343],[-78.31137,1.18218],[-78.30965,1.18221],[-78.30946,1.18069],[-78.30799,1.17957],[-78.30483,1.17798],[-78.30492,1.17677],[-78.3035,1.17543],[-78.30394,1.17416],[-78.30483,1.17364],[-78.30512,1.17277],[-78.30372,1.17145],[-78.30169,1.17116],[-78.30006,1.16997],[-78.29889,1.17155],[-78.29718,1.1723],[-78.29467,1.17007],[-78.29438,1.16825],[-78.29483,1.16459],[-78.2968,1.16293],[-78.29551,1.16108],[-78.29742,1.16041],[-78.29908,1.15951],[-78.29836,1.15856],[-78.29689,1.15905],[-78.29521,1.15853],[-78.29501,1.15722],[-78.29642,1.15659],[-78.2982,1.15624],[-78.29852,1.15575],[-78.29713,1.15428],[-78.29702,1.15347],[-78.29756,1.15221],[-78.29736,1.15117],[-78.29631,1.14954],[-78.29695,1.14938],[-78.29801,1.15008],[-78.29895,1.14961],[-78.29924,1.14857],[-78.29788,1.14762],[-78.29552,1.14834],[-78.29485,1.14771],[-78.29539,1.14598],[-78.29482,1.14531],[-78.29318,1.14554],[-78.29278,1.14399],[-78.29272,1.14223],[-78.29171,1.14075],[-78.29109,1.13927],[-78.29091,1.13688],[-78.29021,1.13492],[-78.29123,1.13352],[-78.28737,1.12906],[-78.28795,1.12729],[-78.28866,1.12663],[-78.28793,1.12578],[-78.28688,1.12559],[-78.28586,1.12477],[-78.28527,1.12343],[-78.28407,1.12276],[-78.2815,1.12316],[-78.28232,1.12234],[-78.28296,1.12117],[-78.28282,1.12004],[-78.28168,1.11969],[-78.27982,1.11997],[-78.27929,1.1194],[-78.28082,1.11759],[-78.2806,1.11676],[-78.27978,1.1161],[-78.27958,1.11451],[-78.28039,1.1135],[-78.28267,1.11226],[-78.28178,1.1109],[-78.27884,1.10996],[-78.27817,1.1085],[-78.27701,1.10841],[-78.2746,1.1111],[-78.27434,1.11257],[-78.27424,1.11404],[-78.27114,1.11327],[-78.26938,1.11178],[-78.26723,1.11179],[-78.26367,1.11097],[-78.26271,1.10928],[-78.26179,1.10708],[-78.26383,1.10501],[-78.26609,1.10536],[-78.26746,1.10521],[-78.26623,1.10359],[-78.26522,1.10159],[-78.26509,1.09991],[-78.26348,1.09902],[-78.26265,1.09905],[-78.26204,1.09986],[-78.26101,1.09891],[-78.26055,1.09779],[-78.25858,1.09705],[-78.2563,1.09775],[-78.25423,1.09793],[-78.25428,1.09968],[-78.25368,1.10108],[-78.25285,1.1015],[-78.25086,1.09931],[-78.25067,1.09768],[-78.2518,1.09558],[-78.25276,1.09504],[-78.25256,1.0939],[-78.25266,1.09276],[-78.2539,1.09154],[-78.25557,1.09065],[-78.25612,1.08839],[-78.25598,1.08721],[-78.25527,1.08633],[-78.25328,1.08898],[-78.25166,1.08868],[-78.2506,1.08733],[-78.2507,1.08581],[-78.24941,1.08431],[-78.2491,1.08324],[-78.25122,1.08314],[-78.25184,1.08256],[-78.25184,1.08135],[-78.2515,1.07959],[-78.25238,1.07829],[-78.25398,1.0779],[-78.25416,1.07943],[-78.2551,1.08039],[-78.25737,1.0801],[-78.2587,1.08065],[-78.26042,1.08201],[-78.26215,1.08209],[-78.26226,1.08118],[-78.26395,1.08077],[-78.26516,1.07971],[-78.26597,1.07796],[-78.26771,1.07681],[-78.26913,1.07648],[-78.2708,1.07473],[-78.2726,1.07516],[-78.27367,1.07495],[-78.27423,1.07362],[-78.27586,1.07229],[-78.27706,1.07238],[-78.2777,1.07148],[-78.2777,1.06994],[-78.27976,1.06784],[-78.27865,1.06536],[-78.27634,1.06309],[-78.27566,1.06168],[-78.27944,1.05964],[-78.27992,1.05851],[-78.28137,1.05821],[-78.28192,1.05723],[-78.28147,1.05619],[-78.28011,1.05471],[-78.27775,1.05406],[-78.27483,1.05289],[-78.27461,1.05031],[-78.27151,1.04721],[-78.26909,1.04658],[-78.26718,1.04633],[-78.26617,1.04545],[-78.26597,1.04341],[-78.2654,1.04271],[-78.26376,1.0421],[-78.26139,1.04223],[-78.25955,1.04023],[-78.25824,1.0401],[-78.25729,1.03954],[-78.25771,1.03795],[-78.25612,1.03699],[-78.25345,1.03688],[-78.25238,1.03573],[-78.2533,1.03207],[-78.25159,1.03071],[-78.25035,1.02863],[-78.24864,1.02894],[-78.24715,1.02886],[-78.24652,1.02938],[-78.24514,1.02884],[-78.24349,1.02984],[-78.24198,1.02887],[-78.24072,1.02769],[-78.23899,1.0274],[-78.23881,1.02586],[-78.23748,1.02491],[-78.23625,1.02344],[-78.23813,1.02294],[-78.23717,1.02157],[-78.23812,1.02093],[-78.23793,1.01861],[-78.23646,1.0182],[-78.23485,1.0174],[-78.23483,1.0163],[-78.23355,1.01508],[-78.23158,1.01458],[-78.23043,1.01305],[-78.22892,1.01361],[-78.228,1.01339],[-78.2279,1.0124],[-78.22654,1.01267],[-78.22411,1.01211],[-78.2227,1.01141],[-78.22142,1.01041],[-78.2213,1.00926],[-78.2197,1.00953],[-78.2176,1.00838],[-78.21592,1.00655],[-78.21453,1.00607],[-78.21319,1.00452],[-78.21086,1.00532],[-78.20928,1.00513],[-78.20836,1.00366],[-78.20627,1.00215],[-78.20387,0.99905],[-78.20384,0.99716],[-78.203,0.99713],[-78.20202,0.9974],[-78.20144,0.99661],[-78.20238,0.99517],[-78.20276,0.99394],[-78.20225,0.99269],[-78.19896,0.98936],[-78.19797,0.98721],[-78.19568,0.98543],[-78.19497,0.98376],[-78.1955,0.98107],[-78.19513,0.97785],[-78.19514,0.97574],[-78.19375,0.97361],[-78.19382,0.9721],[-78.19184,0.97031],[-78.19227,0.96881],[-78.19377,0.96807],[-78.19387,0.96662],[-78.19214,0.96435],[-78.19172,0.96165],[-78.19173,0.95934],[-78.19329,0.95804],[-78.19381,0.95695],[-78.19357,0.95634],[-78.19446,0.95547],[-78.19572,0.95578],[-78.19717,0.95431],[-78.19951,0.95358],[-78.19958,0.95211],[-78.20003,0.95069],[-78.20003,0.94947],[-78.19778,0.94965],[-78.19748,0.94818],[-78.19897,0.9475],[-78.19864,0.94662],[-78.1963,0.94616],[-78.19599,0.94442],[-78.19374,0.94527],[-78.19157,0.94336],[-78.18947,0.94202],[-78.18514,0.93791],[-78.18393,0.93733],[-78.1823,0.9379],[-78.18075,0.9363],[-78.17878,0.93631],[-78.17762,0.93722],[-78.1764,0.9353],[-78.17452,0.93457],[-78.17337,0.93451],[-78.17279,0.93338],[-78.17199,0.93312],[-78.17035,0.93308],[-78.16814,0.93143],[-78.16596,0.93099],[-78.16431,0.92935],[-78.16269,0.92852],[-78.1605,0.92701],[-78.15861,0.92517],[-78.15693,0.92548],[-78.15375,0.92419],[-78.15171,0.92501],[-78.15096,0.92524],[-78.14859,0.92484],[-78.14761,0.92591],[-78.14505,0.92664],[-78.14194,0.93089],[-78.13746,0.93445],[-78.13582,0.93493],[-78.13505,0.93577],[-78.13359,0.93557],[-78.13213,0.93606],[-78.12714,0.93566],[-78.12551,0.9364],[-78.12147,0.93595],[-78.11945,0.93431],[-78.11758,0.93417],[-78.1157,0.93282],[-78.11245,0.93145],[-78.10825,0.92923],[-78.10754,0.9279],[-78.1077,0.92534],[-78.1058,0.9227],[-78.10571,0.92065],[-78.10598,0.91791],[-78.10555,0.91629],[-78.10534,0.91479],[-78.10592,0.9137],[-78.10496,0.91244],[-78.10458,0.91122],[-78.10044,0.90933],[-78.09905,0.90804],[-78.0993,0.90641],[-78.09742,0.90395],[-78.09527,0.90239],[-78.09278,0.90167],[-78.09201,0.89998],[-78.09073,0.89948],[-78.08867,0.89668],[-78.08522,0.89647],[-78.08109,0.89731],[-78.08031,0.89687],[-78.07867,0.8978],[-78.07368,0.89557],[-78.07204,0.89651],[-78.06685,0.89535],[-78.06519,0.89314],[-78.066,0.89084],[-78.06495,0.88962],[-78.06151,0.8884],[-78.0603,0.88843],[-78.05978,0.8876],[-78.05771,0.88893],[-78.05659,0.8883],[-78.05372,0.88876],[-78.05073,0.88701],[-78.05027,0.88563],[-78.04755,0.88322],[-78.04601,0.88193],[-78.04396,0.88115],[-78.04315,0.88119],[-78.04234,0.88038],[-78.04075,0.88025],[-78.04082,0.87993],[-78.03419,0.87995],[-78.03125,0.87803],[-78.029,0.87782],[-78.02779,0.87702],[-78.02658,0.87679],[-78.02554,0.87587],[-78.02465,0.87375],[-78.02374,0.87377],[-78.02231,0.87466],[-78.02118,0.8742],[-78.02069,0.87339],[-78.02089,0.87156],[-78.01809,0.87007],[-78.01631,0.87029],[-78.0149,0.86877],[-78.01298,0.86896],[-78.01249,0.86669],[-78.0107,0.86418],[-78.00617,0.86153],[-78.0037,0.86061],[-78.00083,0.85978],[-77.99983,0.85871],[-77.99795,0.85791],[-77.99649,0.85674],[-77.99491,0.85461],[-77.99429,0.85269],[-77.9914,0.8507],[-77.99047,0.84885],[-77.99119,0.84821],[-77.99207,0.84586],[-77.99115,0.84437],[-77.98966,0.84491],[-77.98917,0.84423],[-77.98455,0.84351],[-77.98354,0.8403],[-77.98128,0.83724],[-77.96545,0.8244],[-77.9635,0.82532],[-77.96167,0.82359],[-77.96007,0.82393],[-77.95692,0.82496],[-77.95459,0.82341],[-77.95191,0.82323],[-77.95009,0.82185],[-77.94775,0.82189],[-77.94661,0.82245],[-77.94401,0.82198],[-77.93867,0.81882],[-77.93712,0.81656],[-77.93617,0.81628],[-77.93476,0.81683],[-77.93267,0.81702],[-77.93111,0.81773],[-77.93014,0.81683],[-77.92837,0.81579],[-77.92591,0.81611],[-77.92431,0.81451],[-77.92323,0.81445],[-77.92192,0.81296],[-77.91758,0.81315],[-77.9149,0.81221],[-77.9133,0.81217],[-77.91033,0.81111],[-77.90543,0.81132],[-77.90208,0.81204],[-77.89571,0.81082],[-77.89346,0.81079],[-77.89062,0.81001],[-77.88937,0.80996],[-77.88849,0.8096],[-77.88762,0.80967],[-77.8871,0.80917],[-77.88624,0.80919],[-77.88503,0.80775],[-77.88374,0.80849],[-77.88265,0.8079],[-77.88155,0.808],[-77.87995,0.80655],[-77.87854,0.8066],[-77.87801,0.80517],[-77.87688,0.80445],[-77.87521,0.80444],[-77.87385,0.80529],[-77.87073,0.80365],[-77.87015,0.80361],[-77.86798,0.80178],[-77.86715,0.8019],[-77.86588,0.80127],[-77.86387,0.80233],[-77.86271,0.80279],[-77.86077,0.80283],[-77.85831,0.80125],[-77.8569,0.80301],[-77.85466,0.80276],[-77.85294,0.8032],[-77.85169,0.8023],[-77.84598,0.80278],[-77.8449,0.80394],[-77.84308,0.80281],[-77.84226,0.80308],[-77.84127,0.80302],[-77.84015,0.80407],[-77.83882,0.80408],[-77.83749,0.80341],[-77.83439,0.80455],[-77.83397,0.80589],[-77.83212,0.80614],[-77.83111,0.80669],[-77.83026,0.80628],[-77.82829,0.8065],[-77.82765,0.80601],[-77.82467,0.80654],[-77.82352,0.80732],[-77.82226,0.80693],[-77.82032,0.80724],[-77.81971,0.80866],[-77.81875,0.80915],[-77.81864,0.81032],[-77.81699,0.81209],[-77.81659,0.81289],[-77.81613,0.81338],[-77.8158,0.81479],[-77.81478,0.81583],[-77.81359,0.81637],[-77.81334,0.8175],[-77.81412,0.81932],[-77.81189,0.82028],[-77.81155,0.82145],[-77.80915,0.82358],[-77.80759,0.82669],[-77.80657,0.82682],[-77.80588,0.82724],[-77.80505,0.82752],[-77.80425,0.82887],[-77.805,0.83052],[-77.80427,0.83118],[-77.80095,0.83044],[-77.79972,0.83004],[-77.79909,0.83052],[-77.79828,0.83013],[-77.79779,0.831],[-77.79718,0.83156],[-77.79723,0.83256],[-77.79703,0.83323],[-77.79544,0.83408],[-77.79415,0.83425],[-77.79307,0.83523],[-77.79209,0.8353],[-77.79127,0.83507],[-77.78994,0.83539],[-77.78951,0.83572],[-77.78867,0.83579],[-77.78754,0.83479],[-77.7864,0.83482],[-77.78579,0.83393],[-77.78406,0.83368],[-77.78037,0.83526],[-77.77899,0.83473],[-77.77841,0.8365],[-77.7776,0.8373],[-77.77737,0.83835],[-77.77697,0.83923],[-77.77567,0.83957],[-77.77459,0.8405],[-77.77401,0.83992],[-77.77265,0.83997],[-77.77108,0.83982],[-77.76985,0.83998],[-77.76835,0.83998],[-77.76786,0.83865],[-77.76732,0.839],[-77.76715,0.83952],[-77.76677,0.84],[-77.76543,0.84067],[-77.76426,0.8416],[-77.76246,0.84156],[-77.76176,0.84039],[-77.76071,0.84025],[-77.75975,0.83941],[-77.75811,0.83925],[-77.75725,0.83823],[-77.7545,0.83772],[-77.7538,0.83687],[-77.75088,0.83679],[-77.74882,0.83426],[-77.74668,0.83389],[-77.74591,0.83456],[-77.74424,0.83404],[-77.74271,0.83464],[-77.74136,0.83644],[-77.73737,0.83678],[-77.73341,0.83996],[-77.73203,0.84058],[-77.72962,0.84206],[-77.72876,0.84397],[-77.72674,0.84497],[-77.72532,0.84691],[-77.72287,0.84668],[-77.72208,0.84794],[-77.72099,0.84849],[-77.72043,0.84972],[-77.7195,0.84939],[-77.71841,0.85044],[-77.71663,0.84856],[-77.71548,0.84934],[-77.71508,0.85068],[-77.71433,0.85098],[-77.71335,0.85027],[-77.71133,0.84827],[-77.70867,0.84833],[-77.70863,0.84662],[-77.70738,0.84612],[-77.70674,0.84527],[-77.70675,0.84351],[-77.70539,0.84338],[-77.70527,0.84212],[-77.70422,0.84209],[-77.70387,0.84173],[-77.69999,0.84145],[-77.69858,0.83967],[-77.6967,0.84034],[-77.69558,0.83956],[-77.69571,0.8384],[-77.69418,0.83572],[-77.69417,0.83339],[-77.69001,0.83106],[-77.68818,0.83045],[-77.68636,0.82907],[-77.68429,0.82934],[-77.68502,0.82608],[-77.68453,0.82546],[-77.68306,0.82588],[-77.68102,0.82465],[-77.67923,0.82196],[-77.67822,0.82331],[-77.67653,0.82317],[-77.6759,0.82447],[-77.67361,0.82414],[-77.67016,0.82136],[-77.67024,0.82091],[-77.67067,0.82011],[-77.66928,0.81796],[-77.66444,0.81805],[-77.66455,0.81726],[-77.66526,0.81631],[-77.66471,0.81511],[-77.66364,0.81349],[-77.66395,0.81096],[-77.66475,0.80941],[-77.66632,0.80821],[-77.66738,0.8056],[-77.66878,0.8035],[-77.66988,0.80378],[-77.67167,0.80345],[-77.67288,0.80204],[-77.67417,0.802],[-77.67435,0.80131],[-77.67401,0.80037],[-77.67418,0.79942],[-77.67571,0.79822],[-77.67689,0.79685],[-77.67632,0.79421],[-77.67644,0.79341],[-77.67691,0.79278],[-77.6769,0.7905],[-77.66207,0.79016],[-77.66376,0.78757],[-77.66545,0.78446],[-77.66764,0.78273],[-77.67008,0.7816],[-77.67149,0.77938],[-77.67329,0.77999],[-77.67747,0.77757],[-77.68247,0.77554],[-77.684,0.77299],[-77.68423,0.77183],[-77.68566,0.77033],[-77.68801,0.76931],[-77.68919,0.76796],[-77.68951,0.76569],[-77.69038,0.76493],[-77.69005,0.763],[-77.69125,0.76002],[-77.69193,0.7567],[-77.69141,0.75121],[-77.6959,0.74962],[-77.69655,0.74753],[-77.69719,0.74509],[-77.69706,0.74313],[-77.6977,0.74089],[-77.69676,0.7401],[-77.6964,0.73993],[-77.6944,0.74051],[-77.69118,0.74058],[-77.68916,0.73936],[-77.68751,0.73926],[-77.68583,0.73986],[-77.6843,0.73973],[-77.6827,0.73868],[-77.68046,0.73828],[-77.67981,0.73778],[-77.67837,0.73723],[-77.67577,0.73691],[-77.67455,0.73547],[-77.67295,0.73492],[-77.67268,0.73431],[-77.67311,0.73366],[-77.67327,0.73292],[-77.67318,0.73118],[-77.67283,0.72909],[-77.67136,0.7283],[-77.67046,0.72824],[-77.6698,0.72754],[-77.66898,0.72701],[-77.66841,0.72605],[-77.66765,0.72635],[-77.66646,0.72602],[-77.66604,0.72509],[-77.66571,0.72373],[-77.66521,0.72357],[-77.66461,0.72237],[-77.66361,0.72143],[-77.66366,0.72016],[-77.66425,0.71926],[-77.66362,0.7173],[-77.66432,0.71677],[-77.66502,0.71486],[-77.66495,0.71244],[-77.66629,0.71174],[-77.66558,0.7095],[-77.66506,0.70899],[-77.66514,0.70744],[-77.66344,0.70671],[-77.66278,0.70581],[-77.66038,0.70549],[-77.65868,0.70594],[-77.65771,0.70554],[-77.65641,0.70582],[-77.65414,0.70587],[-77.65339,0.70579],[-77.6523,0.70434],[-77.65043,0.70392],[-77.64942,0.70422],[-77.64788,0.70411],[-77.64634,0.70337],[-77.64479,0.70369],[-77.64037,0.70286],[-77.63929,0.70173],[-77.63786,0.70146],[-77.63721,0.69887],[-77.63542,0.69784],[-77.63273,0.69792],[-77.62979,0.69607],[-77.62755,0.69498],[-77.62462,0.69508],[-77.61842,0.69079],[-77.6165,0.68994],[-77.61536,0.68805],[-77.61199,0.68909],[-77.60998,0.68797],[-77.60678,0.68497],[-77.60621,0.68244],[-77.60615,0.68043],[-77.60427,0.6781],[-77.60119,0.67543],[-77.59829,0.67558],[-77.59539,0.67307],[-77.58742,0.67322],[-77.58748,0.66901],[-77.58468,0.66802],[-77.58205,0.66652],[-77.58028,0.66411],[-77.57966,0.66162],[-77.57748,0.65948],[-77.57365,0.65836],[-77.57157,0.65711],[-77.56789,0.65617],[-77.56634,0.65331],[-77.56329,0.65033],[-77.55861,0.64875],[-77.55427,0.6488],[-77.54981,0.64977],[-77.54781,0.64881],[-77.54548,0.64954],[-77.54203,0.65027],[-77.53999,0.64963],[-77.53513,0.65182],[-77.53117,0.6518],[-77.52953,0.65393],[-77.52711,0.65526],[-77.52224,0.65539],[-77.52184,0.65715],[-77.5191,0.65719],[-77.51189,0.65637],[-77.51095,0.65704],[-77.50861,0.65586],[-77.50705,0.65562],[-77.50462,0.65795],[-77.50357,0.66046],[-77.50202,0.6605],[-77.50223,0.65808],[-77.50151,0.6582],[-77.49949,0.65928],[-77.49601,0.66027],[-77.49394,0.66114],[-77.49059,0.66218],[-77.48901,0.66073],[-77.48571,0.65902],[-77.48441,0.65619],[-77.48277,0.65413],[-77.48147,0.65353],[-77.48015,0.65079],[-77.48139,0.65054],[-77.4814,0.64827],[-77.48193,0.646],[-77.48059,0.64412],[-77.47856,0.64164],[-77.48043,0.60905],[-77.48504,0.58744],[-77.50202,0.57819],[-77.50801,0.56345],[-77.52373,0.51823],[-77.51747,0.50047],[-77.52533,0.46962],[-77.51965,0.45282],[-77.5223,0.42382],[-77.5277,0.40306],[-77.47304,0.43439],[-77.40857,0.40356],[-77.38357,0.38294],[-77.38068,0.39873],[-77.32156,0.38465],[-77.29749,0.36525],[-77.20993,0.36379],[-77.17713,0.38778],[-77.16485,0.38947],[-77.1491,0.37384],[-77.11961,0.38018],[-77.08233,0.31185],[-77.09802,0.28866],[-77.04681,0.28531],[-77.02945,0.27814],[-77.01527,0.29104],[-76.99525,0.28808],[-76.97522,0.29337],[-76.96521,0.28502],[-76.94422,0.29041],[-76.92282,0.26548],[-76.9337,0.26393],[-76.9055,0.24393],[-76.87938,0.25247],[-76.84573,0.23932],[-76.83165,0.24936],[-76.83611,0.26146],[-76.8162,0.25681],[-76.7853,0.26399],[-76.76951,0.24382],[-76.75268,0.25158],[-76.74479,0.26415],[-76.7647,0.26363],[-76.73311,0.28729],[-76.71285,0.26831],[-76.70151,0.27925],[-76.678,0.26928],[-76.65413,0.27133],[-76.65328,0.2514],[-76.62813,0.26307],[-76.58929,0.21912],[-76.56876,0.24101],[-76.53107,0.25637],[-76.5062,0.23549],[-76.48545,0.24002],[-76.44532,0.24015],[-76.44501,0.25538],[-76.42701,0.25682],[-76.42641,0.23265],[-76.41003,0.24212],[-76.40958,0.37893],[-76.37059,0.39433],[-76.35315,0.378],[-76.33482,0.38631],[-76.3323,0.41448],[-76.3133,0.43579],[-76.30322,0.41933],[-76.29063,0.42483],[-76.27804,0.4372],[-76.26258,0.42919],[-76.26103,0.40802],[-76.25544,0.40156],[-76.2451,0.40588],[-76.23338,0.40333],[-76.22891,0.37404],[-76.20658,0.38457],[-76.19488,0.37062],[-76.17118,0.37257],[-76.16121,0.38825],[-76.13438,0.37133],[-76.11822,0.34296],[-76.12181,0.32191],[-76.11194,0.31413],[-76.09917,0.31321],[-76.0864,0.33565],[-76.05784,0.33542],[-76.04081,0.30715],[-76.00826,0.30057],[-75.9968,0.28492],[-75.99793,0.27023],[-75.98408,0.26357],[-75.98608,0.25406],[-76.00493,0.25617],[-76.00456,0.24867],[-75.95913,0.23626],[-75.95907,0.22525],[-75.95149,0.22112],[-75.94633,0.23142],[-75.94375,0.22764],[-75.95207,0.21339],[-75.95898,0.21107],[-75.9535,0.20304],[-75.93703,0.19834],[-75.91575,0.17265],[-75.89619,0.16186],[-75.89396,0.15097],[-75.90589,0.14416],[-75.90224,0.13663],[-75.88806,0.14179],[-75.8789,0.13544],[-75.88291,0.11923],[-75.87359,0.11936],[-75.86137,0.13453],[-75.84778,0.12773],[-75.8463,0.11532],[-75.81809,0.0789],[-75.80742,0.04971],[-75.78782,0.05553],[-75.7823,0.05174],[-75.77815,0.04246],[-75.75651,0.03851],[-75.73212,0.03867],[-75.70704,0.04227],[-75.6897,0.03583],[-75.67141,0.04154],[-75.6506,0.03066],[-75.63882,0.04788],[-75.61973,0.02918],[-75.60752,0.01598],[-75.58363,0.0165],[-75.57924,0.00166],[-75.58254,-0.01262],[-75.57485,-0.02554],[-75.55886,-0.02366],[-75.53463,-0.01629],[-75.49401,-0.04797],[-75.46851,-0.04806],[-75.44094,-0.07837],[-75.42167,-0.08047],[-75.40857,-0.09357],[-75.39191,-0.09761],[-75.37524,-0.09478],[-75.36132,-0.08783],[-75.33505,-0.10629],[-75.2976,-0.10545],[-75.27132,-0.12665],[-75.26015,-0.11765],[-75.25617,-0.10959],[-75.24938,-0.10282],[-75.24258,-0.10428],[-75.22281,-0.08455],[-75.21862,-0.07642],[-75.21718,-0.06417],[-75.22117,-0.0534],[-75.21485,-0.04401],[-75.18176,-0.03804],[-75.16547,-0.04453],[-75.14908,-0.06013],[-75.10793,-0.08029],[-75.086,-0.07711],[-75.06078,-0.09939],[-75.0507,-0.10667],[-75.02414,-0.13044],[-75.00994,-0.14802],[-74.97445,-0.1505],[-74.97105,-0.16451],[-74.97759,-0.18078],[-74.96095,-0.1944],[-74.9382,-0.20053],[-74.92958,-0.22625],[-74.92021,-0.22273],[-74.91772,-0.20135],[-74.90582,-0.20611],[-74.8953,-0.23422],[-74.88043,-0.24192],[-74.84965,-0.23478],[-74.83082,-0.20581],[-74.80788,-0.18782],[-74.80056,-0.19827],[-74.78523,-0.198],[-74.76039,-0.22739],[-74.7438,-0.27189],[-74.74872,-0.27322],[-74.74678,-0.28966],[-74.7319,-0.29782],[-74.72663,-0.30873],[-74.73361,-0.32242],[-74.73161,-0.33957],[-74.71001,-0.35157],[-74.69303,-0.32942],[-74.68429,-0.32925],[-74.67971,-0.33397],[-74.67787,-0.34831],[-74.68909,-0.35716],[-74.6892,-0.36501],[-74.67347,-0.36723],[-74.67228,-0.37104],[-74.66285,-0.37623],[-74.64587,-0.3615],[-74.62571,-0.35757],[-74.61241,-0.34953],[-74.606,-0.35554],[-74.61607,-0.37667],[-74.61011,-0.38311],[-74.58631,-0.38406],[-74.57418,-0.39463],[-74.57423,-0.41134],[-74.56602,-0.41696],[-74.55711,-0.4177],[-74.54957,-0.42257],[-74.5417,-0.43676],[-74.53658,-0.45782],[-74.51979,-0.4727],[-74.50521,-0.46023],[-74.4971,-0.46329],[-74.49449,-0.47322],[-74.50149,-0.48246],[-74.49125,-0.48914],[-74.4779,-0.47189],[-74.47078,-0.47615],[-74.46367,-0.48866],[-74.45106,-0.4895],[-74.44132,-0.50021],[-74.42684,-0.49596],[-74.4196,-0.50276],[-74.42628,-0.54804],[-74.42275,-0.55764],[-74.41618,-0.55969],[-74.40767,-0.55402],[-74.39779,-0.53737],[-74.38791,-0.54818],[-74.3897,-0.57616],[-74.37805,-0.60398],[-74.36536,-0.61377],[-74.35901,-0.63308],[-74.37301,-0.64892],[-74.37108,-0.65959],[-74.33894,-0.67712],[-74.33791,-0.69111],[-74.34513,-0.7051],[-74.37673,-0.71455],[-74.37622,-0.72768],[-74.36747,-0.74219],[-74.35794,-0.74533],[-74.3443,-0.75945],[-74.31555,-0.75297],[-74.30877,-0.7616],[-74.31926,-0.78649],[-74.31879,-0.79203],[-74.30459,-0.79482],[-74.29541,-0.77706],[-74.28275,-0.77522],[-74.27971,-0.7871],[-74.28559,-0.79625],[-74.29147,-0.81637],[-74.27852,-0.82848],[-74.25488,-0.81599],[-74.24634,-0.81587],[-74.24458,-0.82647],[-74.26617,-0.84119],[-74.2709,-0.85827],[-74.26533,-0.86849],[-74.26662,-0.88008],[-74.27619,-0.88398],[-74.28302,-0.87279],[-74.30354,-0.86275],[-74.31925,-0.874],[-74.32009,-0.88814],[-74.31132,-0.89678],[-74.27988,-0.89376],[-74.26966,-0.91696],[-74.27107,-0.92857],[-74.2615,-0.94429],[-74.26619,-0.95641],[-74.27667,-0.96225],[-74.27341,-0.98044],[-74.24755,-0.98914],[-74.22444,-1.00744],[-74.21013,-1.01179],[-74.17935,-1.00378],[-74.15749,-1.01019],[-74.13564,-1.02895],[-74.05578,-1.05595],[-74.04337,-1.04244],[-74.04264,-1.01796],[-74.03155,-1.00331],[-74.01978,-1.0017],[-74.01389,-1.01738],[-74.02537,-1.04993],[-74.01668,-1.06071],[-74.01784,-1.08052],[-74.00468,-1.10004],[-73.98437,-1.10705],[-73.9786,-1.10365],[-73.97092,-1.08617],[-73.96048,-1.08378],[-73.95451,-1.0862],[-73.95128,-1.09686],[-73.96866,-1.11782],[-73.96063,-1.13122],[-73.93536,-1.13248],[-73.92269,-1.1206],[-73.9114,-1.11697],[-73.90266,-1.12545],[-73.8953,-1.15178],[-73.89617,-1.16713],[-73.88438,-1.18572],[-73.86709,-1.2002],[-73.86696,-1.22566],[-73.85423,-1.23374],[-73.82364,-1.23633],[-73.81091,-1.24991],[-73.79767,-1.24914],[-73.78719,-1.24014],[-73.78108,-1.24523],[-73.78183,-1.25718],[-73.76474,-1.26021],[-73.75344,-1.23358],[-73.75329,-1.20242],[-73.74566,-1.19782],[-73.74185,-1.20239],[-73.74268,-1.2081],[-73.74036,-1.23979],[-73.72879,-1.24909],[-73.71448,-1.25152],[-73.68025,-1.23885],[-73.66379,-1.24735],[-73.65146,-1.26683],[-73.63843,-1.26903],[-73.62677,-1.26161],[-73.61854,-1.26105],[-73.61374,-1.31501],[-73.59933,-1.32997],[-73.56912,-1.3161],[-73.56574,-1.32792],[-73.57953,-1.3411],[-73.57821,-1.36046],[-73.55882,-1.37972],[-73.54905,-1.40859],[-73.55988,-1.42166],[-73.578,-1.41413],[-73.58582,-1.41964],[-73.58278,-1.42836],[-73.53855,-1.43022],[-73.53223,-1.4363],[-73.53002,-1.46435],[-73.51553,-1.48077],[-73.49005,-1.48347],[-73.48555,-1.49408],[-73.49616,-1.51019],[-73.49219,-1.51859],[-73.47862,-1.52286],[-73.48213,-1.54216],[-73.48113,-1.55799],[-73.48976,-1.5697],[-73.48144,-1.57898],[-73.46835,-1.56783],[-73.45939,-1.56629],[-73.45657,-1.57694],[-73.46336,-1.5917],[-73.50151,-1.61851],[-73.50795,-1.6265],[-73.51028,-1.64822],[-73.51905,-1.66832],[-73.53195,-1.67743],[-73.54072,-1.68792],[-73.53886,-1.70125],[-73.49443,-1.73242],[-73.46324,-1.73437],[-73.43549,-1.76172],[-73.43267,-1.7713],[-73.4326,-1.78775],[-73.41745,-1.7891],[-73.39407,-1.77262],[-73.3817,-1.77433],[-73.35558,-1.79525],[-73.33291,-1.80314],[-73.32396,-1.82201],[-73.30622,-1.82866],[-73.29941,-1.81688],[-73.3111,-1.79953],[-73.30905,-1.78354],[-73.29533,-1.77442],[-73.26925,-1.7829],[-73.25002,-1.77959],[-73.24247,-1.78563],[-73.24453,-1.79166],[-73.25689,-1.79564],[-73.25827,-1.80247],[-73.2514,-1.80998],[-73.23492,-1.80103],[-73.22874,-1.78901],[-73.23217,-1.77151],[-73.22943,-1.75159],[-73.2205,-1.74644],[-73.21158,-1.74953],[-73.1951,-1.78898],[-73.16832,-1.80254],[-73.15012,-1.80108],[-73.1424,-1.81476],[-73.15458,-1.84903],[-73.15413,-1.86197],[-73.13581,-1.87353],[-73.11201,-1.86999],[-73.10766,-1.89362],[-73.11784,-1.91023],[-73.11352,-1.93738],[-73.11744,-1.97001],[-73.12871,-1.99067],[-73.11675,-2.0151],[-73.09567,-2.02732],[-73.09106,-2.04091],[-73.11274,-2.06602],[-73.11405,-2.07642],[-73.10711,-2.0827],[-73.06927,-2.08281],[-73.06977,-2.1065],[-73.11009,-2.12471],[-73.11691,-2.13596],[-73.12647,-2.17739],[-73.13737,-2.19027],[-73.16464,-2.18584],[-73.17454,-2.19212],[-73.16781,-2.21516],[-73.16514,-2.23903],[-73.14938,-2.26537],[-73.12126,-2.28211],[-73.11325,-2.29442],[-73.12447,-2.31359],[-73.12402,-2.32111],[-73.11944,-2.32999],[-73.09428,-2.32298],[-73.08627,-2.31043],[-73.06854,-2.31307],[-73.06179,-2.32394],[-73.06912,-2.33862],[-73.06546,-2.35947],[-73.04922,-2.36029],[-73.04247,-2.35041],[-73.04081,-2.3146],[-73.03002,-2.3111],[-73.02051,-2.32033],[-73.01438,-2.34758],[-73.00376,-2.36053],[-72.99158,-2.35808],[-72.98078,-2.33916],[-72.97028,-2.34917],[-72.96709,-2.36583],[-72.95588,-2.37554],[-72.95514,-2.3982],[-72.93242,-2.41263],[-72.93031,-2.43393],[-72.93887,-2.44869],[-72.93078,-2.45676],[-72.89172,-2.43198],[-72.86876,-2.43982],[-72.84629,-2.4362],[-72.82932,-2.42023],[-72.80025,-2.41091],[-72.78491,-2.3865],[-72.77072,-2.38424],[-72.75928,-2.39844],[-72.7547,-2.42637],[-72.74154,-2.42752],[-72.73387,-2.42181],[-72.73101,-2.39689],[-72.71928,-2.3858],[-72.70586,-2.38986],[-72.68946,-2.41318],[-72.68679,-2.42688],[-72.69305,-2.44333],[-72.69324,-2.45088],[-72.6797,-2.45362],[-72.66547,-2.43989],[-72.66398,-2.41262],[-72.63776,-2.38672],[-72.63632,-2.38063],[-72.64313,-2.36494],[-72.63554,-2.35812],[-72.62109,-2.36091],[-72.6046,-2.36162],[-72.59222,-2.36918],[-72.57023,-2.40145],[-72.5383,-2.40386],[-72.51504,-2.41338],[-72.49864,-2.41193],[-72.4898,-2.42076],[-72.46997,-2.42],[-72.44262,-2.43503],[-72.42276,-2.435],[-72.40977,-2.41576],[-72.38992,-2.44489],[-72.37967,-2.45069],[-72.37592,-2.46422],[-72.38042,-2.47638],[-72.3753,-2.49198],[-72.359,-2.48743],[-72.3179,-2.47417],[-72.29872,-2.47509],[-72.28946,-2.47052],[-72.28432,-2.4536],[-72.27557,-2.45097],[-72.25996,-2.45932],[-72.25524,-2.45217],[-72.26288,-2.43679],[-72.25709,-2.43151],[-72.23894,-2.43171],[-72.22628,-2.44837],[-72.20354,-2.44602],[-72.18218,-2.42858],[-72.16635,-2.42637],[-72.16151,-2.43926],[-72.16765,-2.46107],[-72.15424,-2.47197],[-72.13998,-2.46507],[-72.13603,-2.44789],[-72.14844,-2.41312],[-72.14193,-2.40237],[-72.12581,-2.39711],[-72.10951,-2.38625],[-72.09733,-2.3699],[-72.08197,-2.36858],[-72.06742,-2.34666],[-72.05013,-2.33296],[-72.03421,-2.3378],[-72.00799,-2.36938],[-71.97799,-2.36907],[-71.96397,-2.3563],[-71.95132,-2.35725],[-71.93985,-2.35807],[-71.93661,-2.37809],[-71.92538,-2.38365],[-71.91827,-2.36451],[-71.94138,-2.32204],[-71.93289,-2.30975],[-71.92365,-2.30747],[-71.88557,-2.31478],[-71.87133,-2.2934],[-71.85435,-2.23085],[-71.84346,-2.2157],[-71.83119,-2.18683],[-71.82163,-2.18714],[-71.80794,-2.20392],[-71.80075,-2.20648],[-71.79494,-2.19669],[-71.78997,-2.18185],[-71.7699,-2.16974],[-71.76974,-2.15902],[-71.73464,-2.13924],[-71.72518,-2.13979],[-71.71709,-2.16229],[-71.73044,-2.20112],[-71.73107,-2.21615],[-71.72208,-2.22844],[-71.70317,-2.22532],[-71.67861,-2.20935],[-71.65542,-2.1975],[-71.63284,-2.20444],[-71.61056,-2.22849],[-71.57951,-2.23983],[-71.55532,-2.2402],[-71.54029,-2.24714],[-71.52115,-2.24721],[-71.51518,-2.25531],[-71.51882,-2.30115],[-71.51011,-2.3391],[-71.49751,-2.35601],[-71.48372,-2.35406],[-71.47816,-2.33702],[-71.4987,-2.28431],[-71.49452,-2.27276],[-71.47023,-2.26838],[-71.45008,-2.28066],[-71.42581,-2.32587],[-71.40222,-2.3409],[-71.39249,-2.35459],[-71.40616,-2.38476],[-71.40546,-2.40019],[-71.39377,-2.41014],[-71.37728,-2.40087],[-71.36904,-2.38792],[-71.35393,-2.37772],[-71.33607,-2.382],[-71.31936,-2.37989],[-71.31089,-2.36679],[-71.30837,-2.35098],[-71.29898,-2.33929],[-71.28914,-2.33447],[-71.27793,-2.33789],[-71.27426,-2.35708],[-71.28845,-2.37628],[-71.28857,-2.38514],[-71.27907,-2.38851],[-71.27054,-2.3854],[-71.26079,-2.36051],[-71.25248,-2.35219],[-71.24691,-2.33837],[-71.22809,-2.34006],[-71.21548,-2.35111],[-71.21055,-2.36419],[-71.19258,-2.38138],[-71.17689,-2.38146],[-71.17022,-2.37462],[-71.17041,-2.34856],[-71.16306,-2.33281],[-71.15114,-2.33522],[-71.13647,-2.34449],[-71.12835,-2.33843],[-71.13252,-2.32236],[-71.14494,-2.30355],[-71.13613,-2.28651],[-71.11607,-2.27916],[-71.0919,-2.28005],[-71.04987,-2.26447],[-71.03847,-2.26697],[-71.02521,-2.28194],[-71.01447,-2.30109],[-71.00166,-2.30789],[-70.98987,-2.29851],[-70.9929,-2.27804],[-71.0212,-2.23693],[-71.01694,-2.22014],[-71.00383,-2.20762],[-70.97804,-2.21166],[-70.966,-2.21844],[-70.95786,-2.24177],[-70.93324,-2.25688],[-70.91618,-2.24796],[-70.90736,-2.23219],[-70.89464,-2.2237],[-70.87249,-2.22426],[-70.85584,-2.23168],[-70.84106,-2.28152],[-70.83452,-2.29156],[-70.81906,-2.29508],[-70.78575,-2.29174],[-70.76548,-2.298],[-70.75904,-2.31775],[-70.74985,-2.33064],[-70.72049,-2.33309],[-70.67721,-2.34596],[-70.66139,-2.35884],[-70.66138,-2.37282],[-70.67648,-2.38818],[-70.68059,-2.40066],[-70.66685,-2.41177],[-70.64694,-2.40943],[-70.63663,-2.39749],[-70.62908,-2.39633],[-70.62976,-2.4226],[-70.64006,-2.4523],[-70.6368,-2.46968],[-70.60745,-2.48431],[-70.58427,-2.48178],[-70.55414,-2.46886],[-70.55072,-2.46004],[-70.55142,-2.44848],[-70.55968,-2.44182],[-70.59335,-2.43036],[-70.59696,-2.42303],[-70.59233,-2.41708],[-70.56435,-2.41798],[-70.54946,-2.42267],[-70.53594,-2.43833],[-70.52174,-2.46429],[-70.50846,-2.47315],[-70.49427,-2.47003],[-70.46634,-2.44771],[-70.45584,-2.45407],[-70.45084,-2.47552],[-70.44653,-2.50795],[-70.43613,-2.52279],[-70.41582,-2.52747],[-70.40018,-2.51814],[-70.37176,-2.49153],[-70.34883,-2.48961],[-70.30243,-2.49891],[-70.2956,-2.50556],[-70.29562,-2.5226],[-70.30525,-2.53347],[-70.33857,-2.53886],[-70.35679,-2.54904],[-70.35715,-2.56265],[-70.35037,-2.5712],[-70.33261,-2.57975],[-70.30381,-2.57476],[-70.26404,-2.54234],[-70.24348,-2.54833],[-70.22567,-2.57215],[-70.21919,-2.6426],[-70.20633,-2.6593],[-70.19166,-2.65873],[-70.1818,-2.63484],[-70.17409,-2.63016],[-70.15264,-2.64743],[-70.15419,-2.66915],[-70.16124,-2.68814],[-70.13276,-2.70415],[-70.1186,-2.70181],[-70.10809,-2.68281],[-70.10421,-2.66233],[-70.09758,-2.64872],[-70.08686,-2.64706],[-70.06433,-2.6723],[-70.06488,-2.69541],[-70.07229,-2.72401],[-70.0646,-2.7533],[-70.05553,-2.75926],[-70.71694,-3.79876],[-70.71349,-3.79607],[-70.70994,-3.79397],[-70.7077,-3.79331],[-70.70588,-3.7924],[-70.70076,-3.79148],[-70.69813,-3.79116],[-70.69018,-3.79142],[-70.68518,-3.79288],[-70.68052,-3.79563],[-70.6771,-3.79877],[-70.67351,-3.80243],[-70.67057,-3.80514],[-70.66901,-3.80735],[-70.66642,-3.81085],[-70.66534,-3.81178],[-70.66193,-3.8165],[-70.65718,-3.82338],[-70.65411,-3.82674],[-70.65053,-3.82941],[-70.64603,-3.8305],[-70.64153,-3.83108],[-70.63926,-3.8312],[-70.63787,-3.83096],[-70.63722,-3.83105],[-70.63496,-3.83075],[-70.6339,-3.83091],[-70.63284,-3.83073],[-70.62892,-3.83071],[-70.62652,-3.83159],[-70.62523,-3.83245],[-70.62428,-3.83332],[-70.62295,-3.83574],[-70.62153,-3.83798],[-70.62084,-3.83857],[-70.6197,-3.83922],[-70.61588,-3.84277],[-70.58901,-3.82192],[-70.5829,-3.81953],[-70.57592,-3.82023],[-70.56814,-3.82443],[-70.56088,-3.82863],[-70.55619,-3.83626],[-70.55236,-3.8468],[-70.54757,-3.85486],[-70.54124,-3.86206],[-70.53199,-3.86875],[-70.51931,-3.87304],[-70.49995,-3.87512],[-70.49237,-3.87367],[-70.48255,-3.86965],[-70.45176,-3.86144],[-70.44618,-3.85773],[-70.44025,-3.85094],[-70.42703,-3.83359],[-70.4133,-3.82047],[-70.40343,-3.81296],[-70.39218,-3.80751],[-70.38111,-3.80326],[-70.37072,-3.80039],[-70.36016,-3.79895],[-70.35008,-3.79875],[-70.33999,-3.8006],[-70.31059,-3.81376],[-70.30042,-3.8163],[-70.28904,-3.82397],[-70.27647,-3.83696],[-70.27006,-3.85258],[-70.26537,-3.86683],[-70.25827,-3.87834],[-70.24602,-3.89191],[-70.2205,-3.90945],[-70.20794,-3.91624],[-70.18697,-3.92422],[-70.18125,-3.9294],[-70.1787,-3.93633],[-70.17615,-3.95422],[-70.17274,-3.96526],[-70.16881,-3.97506],[-70.15801,-3.99651],[-70.14739,-4.01012],[-70.133,-4.02304],[-70.10628,-4.0578],[-70.09639,-4.06147],[-70.08959,-4.06308],[-70.08107,-4.06658],[-70.06775,-4.07556],[-70.06274,-4.0817],[-70.0536,-4.10188],[-70.01226,-4.1576],[-69.99244,-4.17519],[-69.97949,-4.1849],[-69.96397,-4.20095],[-69.95764,-4.20895],[-69.94986,-4.21986],[-69.94777,-4.22336],[-69.94733,-4.22711],[-69.94927,-4.24097],[-69.95202,-4.25056],[-69.94446,-4.29027],[-69.95064,-4.30944],[-69.96232,-4.32519],[-69.9939,-4.35395],[-70.00077,-4.35189],[-70.00626,-4.33957],[-70.02068,-4.34779],[-70.0248,-4.35737],[-70.02549,-4.3649],[-70.03304,-4.3738],[-70.04197,-4.37449],[-70.05158,-4.36148],[-70.04128,-4.34779],[-70.04059,-4.33888],[-70.04952,-4.32519],[-70.07699,-4.31971],[-70.08042,-4.31013],[-70.07424,-4.30328],[-70.04883,-4.30465],[-70.04059,-4.29643],[-70.04403,-4.29096],[-70.05982,-4.29369],[-70.07493,-4.28479],[-70.09209,-4.28822],[-70.10033,-4.28411],[-70.10239,-4.25877],[-70.11544,-4.25672],[-70.11338,-4.27452],[-70.12093,-4.28411],[-70.12848,-4.28479],[-70.14016,-4.27521],[-70.1532,-4.27178],[-70.16076,-4.28342],[-70.17174,-4.30465],[-70.15389,-4.3204],[-70.1532,-4.32998],[-70.17586,-4.33272],[-70.18067,-4.35532],[-70.19646,-4.36011],[-70.20264,-4.35532],[-70.20401,-4.32656],[-70.21225,-4.31287],[-70.21225,-4.29849],[-70.21775,-4.2978],[-70.21981,-4.31287],[-70.22667,-4.31698],[-70.26032,-4.30876],[-70.26925,-4.29506],[-70.24659,-4.28548],[-70.2459,-4.27521],[-70.25757,-4.27041],[-70.28092,-4.28616],[-70.29191,-4.28479],[-70.28435,-4.27315],[-70.30289,-4.26357],[-70.31044,-4.25124],[-70.30495,-4.24165],[-70.27955,-4.23412],[-70.27886,-4.2259],[-70.28916,-4.1944],[-70.2871,-4.17044],[-70.29534,-4.15742],[-70.30701,-4.15742],[-70.31937,-4.14304],[-70.32555,-4.14236],[-70.33036,-4.14921],[-70.3283,-4.1677],[-70.33379,-4.17728],[-70.3434,-4.17797],[-70.36126,-4.15811],[-70.36538,-4.14304],[-70.38254,-4.13345],[-70.39696,-4.13688],[-70.43335,-4.13003],[-70.44159,-4.13688],[-70.43335,-4.15126],[-70.43335,-4.15948],[-70.43747,-4.1629],[-70.45395,-4.15879],[-70.46013,-4.17523],[-70.46769,-4.17523],[-70.47524,-4.16153],[-70.48829,-4.16222],[-70.49309,-4.19235],[-70.50751,-4.19851],[-70.51026,-4.18482],[-70.50133,-4.16153],[-70.50957,-4.14647],[-70.52537,-4.13482],[-70.53292,-4.14236],[-70.54734,-4.13414],[-70.55283,-4.13962],[-70.54116,-4.14852],[-70.54047,-4.15537],[-70.5542,-4.16222],[-70.55626,-4.17112],[-70.55077,-4.18824],[-70.55764,-4.20468],[-70.57274,-4.20947],[-70.57412,-4.20125],[-70.56244,-4.18345],[-70.5645,-4.17044],[-70.58373,-4.18139],[-70.61532,-4.18961],[-70.63454,-4.17317],[-70.61394,-4.13277],[-70.61806,-4.12318],[-70.64484,-4.12455],[-70.64759,-4.16222],[-70.65926,-4.1403],[-70.66819,-4.1403],[-70.66544,-4.16633],[-70.67711,-4.20262],[-70.68398,-4.20262],[-70.6881,-4.18687],[-70.69909,-4.18345],[-70.71831,-4.18687],[-70.73067,-4.17865],[-70.75402,-4.15605],[-70.77256,-4.16496],[-70.78354,-4.18345],[-70.80208,-4.17934],[-70.80346,-4.18961],[-70.81719,-4.19509],[-70.82131,-4.20536],[-70.84603,-4.21769],[-70.84328,-4.22453],[-70.83298,-4.21906],[-70.82337,-4.21426],[-70.81444,-4.22453],[-70.82337,-4.23549],[-70.82886,-4.2485],[-70.83985,-4.24987],[-70.84603,-4.24234],[-70.85633,-4.24302],[-70.86113,-4.24782],[-70.85633,-4.25946],[-70.84397,-4.26836],[-70.84397,-4.27521],[-70.87624,-4.29027],[-70.87212,-4.31287],[-70.87693,-4.32108],[-70.89478,-4.31903],[-70.90027,-4.32451],[-70.91332,-4.35737],[-70.92225,-4.35258],[-70.93255,-4.35395],[-70.93255,-4.37859],[-70.93804,-4.38133],[-70.94559,-4.3738],[-70.96482,-4.37791],[-70.97031,-4.36832],[-70.97169,-4.35874],[-70.98816,-4.34299],[-70.9964,-4.34505],[-70.9861,-4.35737],[-70.9861,-4.3738],[-70.99434,-4.38476],[-71.00739,-4.38681],[-71.01838,-4.37996],[-71.02181,-4.38886],[-71.03623,-4.39982],[-71.04447,-4.39776],[-71.04722,-4.39023],[-71.0431,-4.37586],[-71.04859,-4.36832],[-71.05614,-4.37106],[-71.05889,-4.38749],[-71.07743,-4.39503],[-71.08429,-4.39023],[-71.07743,-4.38065],[-71.07949,-4.37243],[-71.10833,-4.37723],[-71.10901,-4.40256],[-71.11245,-4.40666],[-71.11931,-4.40803],[-71.13099,-4.38886],[-71.14815,-4.38065],[-71.15227,-4.38681],[-71.14815,-4.39845],[-71.15433,-4.40461],[-71.15914,-4.39229],[-71.18523,-4.39571],[-71.18866,-4.41899],[-71.1969,-4.42309],[-71.2072,-4.39776],[-71.19896,-4.38818],[-71.19896,-4.37928],[-71.21407,-4.37654],[-71.21956,-4.38476],[-71.21956,-4.40461],[-71.22849,-4.40461],[-71.22574,-4.39092],[-71.22849,-4.38476],[-71.23673,-4.3827],[-71.24634,-4.39092],[-71.2642,-4.38339],[-71.2793,-4.38886],[-71.2793,-4.39845],[-71.26832,-4.39297],[-71.26145,-4.39366],[-71.26214,-4.39982],[-71.26832,-4.40666],[-71.26214,-4.42789],[-71.2793,-4.44021],[-71.29303,-4.43747],[-71.30677,-4.41556],[-71.31981,-4.41625],[-71.31707,-4.42926],[-71.30127,-4.44569],[-71.3102,-4.46349],[-71.31432,-4.44158],[-71.34247,-4.44089],[-71.3411,-4.43199],[-71.34591,-4.42652],[-71.36101,-4.43473],[-71.3823,-4.42446],[-71.39328,-4.42926],[-71.40084,-4.44295],[-71.40977,-4.44911],[-71.41594,-4.46006],[-71.43311,-4.47649],[-71.43929,-4.47033],[-71.43036,-4.46759],[-71.42693,-4.46349],[-71.4338,-4.45459],[-71.42762,-4.44226],[-71.41251,-4.44089],[-71.41182,-4.43473],[-71.42212,-4.43679],[-71.43105,-4.42789],[-71.43792,-4.42926],[-71.43311,-4.44363],[-71.43723,-4.44911],[-71.45234,-4.44569],[-71.44959,-4.43268],[-71.46126,-4.43953],[-71.47912,-4.43336],[-71.47637,-4.44911],[-71.48186,-4.45732],[-71.50521,-4.43816],[-71.5107,-4.44295],[-71.50589,-4.45732],[-71.49216,-4.47718],[-71.49491,-4.48539],[-71.50383,-4.47581],[-71.51894,-4.47033],[-71.51619,-4.46143],[-71.54023,-4.46417],[-71.53611,-4.48128],[-71.54435,-4.47718],[-71.56083,-4.47855],[-71.5519,-4.48539],[-71.56014,-4.49155],[-71.56632,-4.50456],[-71.59379,-4.52578],[-71.61782,-4.52852],[-71.63498,-4.51072],[-71.624,-4.50456],[-71.61232,-4.47238],[-71.61919,-4.46622],[-71.62743,-4.47649],[-71.62331,-4.48813],[-71.65146,-4.50251],[-71.64734,-4.47649],[-71.65833,-4.47102],[-71.66176,-4.47855],[-71.6549,-4.48813],[-71.65833,-4.50045],[-71.67206,-4.5073],[-71.67481,-4.50114],[-71.69266,-4.49703],[-71.70639,-4.50935],[-71.71807,-4.50524],[-71.72356,-4.49703],[-71.73661,-4.49566],[-71.74004,-4.49155],[-71.73935,-4.48402],[-71.74485,-4.47102],[-71.75171,-4.46759],[-71.75377,-4.4717],[-71.74828,-4.48128],[-71.74965,-4.49224],[-71.77025,-4.50319],[-71.77025,-4.49703],[-71.77369,-4.48676],[-71.78742,-4.48197],[-71.78879,-4.48676],[-71.78261,-4.49292],[-71.78605,-4.49703],[-71.7936,-4.49498],[-71.7936,-4.48471],[-71.81145,-4.49429],[-71.80665,-4.50251],[-71.82175,-4.49908],[-71.8293,-4.49566],[-71.83411,-4.49908],[-71.82793,-4.50524],[-71.83205,-4.51483],[-71.83617,-4.51277],[-71.83892,-4.50387],[-71.85814,-4.5114],[-71.8657,-4.52578],[-71.87188,-4.51893],[-71.88561,-4.51551],[-71.90621,-4.51551],[-71.90758,-4.5203],[-71.89454,-4.52236],[-71.8863,-4.52989],[-71.88561,-4.5381],[-71.89179,-4.53878],[-71.8966,-4.52852],[-71.91788,-4.52852],[-71.92681,-4.54631],[-71.922,-4.55042],[-71.91926,-4.56274],[-71.92887,-4.56],[-71.9323,-4.56479],[-71.9275,-4.56822],[-71.93574,-4.57848],[-71.94947,-4.5778],[-71.95015,-4.58601],[-71.94397,-4.59423],[-71.95084,-4.60039],[-71.94741,-4.60654],[-71.97762,-4.60928],[-71.98517,-4.60312],[-71.99616,-4.61134],[-71.98723,-4.6127],[-71.98243,-4.62502],[-72.00234,-4.62845],[-72.00577,-4.64419],[-72.01539,-4.63255],[-72.04285,-4.62297],[-72.03736,-4.64145],[-72.04628,-4.6435],[-72.04491,-4.65377],[-72.05727,-4.64829],[-72.06757,-4.65788],[-72.05727,-4.66951],[-72.06414,-4.67567],[-72.07032,-4.66198],[-72.08199,-4.66951],[-72.07581,-4.67772],[-72.0813,-4.6832],[-72.08886,-4.68114],[-72.10122,-4.70441],[-72.11426,-4.70646],[-72.12456,-4.71673],[-72.12044,-4.73042],[-72.13006,-4.73521],[-72.13486,-4.72768],[-72.12937,-4.7222],[-72.14104,-4.71194],[-72.14653,-4.72426],[-72.16164,-4.72905],[-72.15958,-4.73658],[-72.17263,-4.73315],[-72.19323,-4.74684],[-72.18773,-4.74821],[-72.19391,-4.76395],[-72.20833,-4.74752],[-72.22207,-4.75573],[-72.21314,-4.76052],[-72.22344,-4.77216],[-72.22893,-4.76874],[-72.24472,-4.78242],[-72.25228,-4.76463],[-72.26189,-4.78037],[-72.25502,-4.78721],[-72.25571,-4.79268],[-72.26464,-4.78584],[-72.26876,-4.79747],[-72.28455,-4.79542],[-72.27768,-4.78995],[-72.27837,-4.77147],[-72.28318,-4.78174],[-72.3024,-4.77626],[-72.30584,-4.78995],[-72.31339,-4.78584],[-72.30927,-4.779],[-72.31202,-4.77353],[-72.32987,-4.78037],[-72.32918,-4.78721],[-72.32026,-4.78789],[-72.32232,-4.79542],[-72.32163,-4.805],[-72.32438,-4.81184],[-72.32575,-4.80158],[-72.33948,-4.80363],[-72.33605,-4.79679],[-72.34017,-4.79405],[-72.34429,-4.80568],[-72.36832,-4.80226],[-72.37244,-4.80774],[-72.36077,-4.81937],[-72.35871,-4.82484],[-72.3642,-4.82553],[-72.37313,-4.82211],[-72.38274,-4.82621],[-72.37176,-4.83237],[-72.39029,-4.83305],[-72.37588,-4.83716],[-72.38343,-4.84674],[-72.38206,-4.85905],[-72.38961,-4.86042],[-72.38137,-4.87137],[-72.3848,-4.87479],[-72.39029,-4.86863],[-72.40197,-4.87547],[-72.40265,-4.88574],[-72.40883,-4.88779],[-72.41433,-4.87547],[-72.42463,-4.87684],[-72.4157,-4.88642],[-72.41501,-4.89942],[-72.43012,-4.90147],[-72.43149,-4.91036],[-72.43836,-4.90831],[-72.44317,-4.89805],[-72.45347,-4.90079],[-72.45621,-4.89189],[-72.47063,-4.89053],[-72.46926,-4.90421],[-72.45209,-4.91242],[-72.45965,-4.92473],[-72.47132,-4.92199],[-72.47818,-4.93157],[-72.47406,-4.94047],[-72.48505,-4.95278],[-72.48917,-4.95004],[-72.48505,-4.94115],[-72.48917,-4.93294],[-72.49535,-4.94936],[-72.5084,-4.94525],[-72.50428,-4.93704],[-72.52419,-4.93226],[-72.52213,-4.95962],[-72.52831,-4.95483],[-72.53998,-4.96509],[-72.53724,-4.95278],[-72.55303,-4.95483],[-72.55097,-4.96372],[-72.56676,-4.97467],[-72.56745,-4.98425],[-72.58324,-4.98083],[-72.58393,-4.99793],[-72.59079,-4.99519],[-72.58942,-4.98493],[-72.59972,-4.98425],[-72.59903,-4.99382],[-72.60933,-4.99451],[-72.61002,-4.99929],[-72.60109,-4.99998],[-72.60247,-5.00887],[-72.61414,-5.01434],[-72.60659,-5.02802],[-72.61895,-5.03486],[-72.62101,-5.05128],[-72.62856,-5.0376],[-72.62993,-5.04991],[-72.64229,-5.06427],[-72.63955,-5.05196],[-72.64229,-5.04376],[-72.65259,-5.04923],[-72.65328,-5.06017],[-72.66015,-5.06154],[-72.65946,-5.05196],[-72.66701,-5.05675],[-72.67182,-5.04581],[-72.68555,-5.0506],[-72.68967,-5.0588],[-72.71164,-5.04649],[-72.71576,-5.05812],[-72.72812,-5.04991],[-72.72675,-5.06154],[-72.73774,-5.0588],[-72.73774,-5.06633],[-72.73156,-5.06906],[-72.73156,-5.0759],[-72.73774,-5.07317],[-72.7398,-5.08958],[-72.75559,-5.07522],[-72.76383,-5.08479],[-72.7604,-5.09026],[-72.76864,-5.09847],[-72.78443,-5.09095],[-72.781,-5.10189],[-72.78717,-5.11352],[-72.78992,-5.10531],[-72.80091,-5.11078],[-72.81602,-5.10052],[-72.82082,-5.106],[-72.81396,-5.13404],[-72.81533,-5.13951],[-72.82082,-5.13198],[-72.82631,-5.13404],[-72.82288,-5.13882],[-72.85172,-5.14361],[-72.84829,-5.13404],[-72.86683,-5.14361],[-72.86477,-5.15045],[-72.88949,-5.16207],[-72.88331,-5.17507],[-72.86957,-5.20379],[-72.86545,-5.27011],[-72.89773,-5.33438],[-72.89017,-5.35147],[-72.91077,-5.36173],[-72.95472,-5.47657],[-72.94922,-5.54492],[-72.97257,-5.61804],[-72.96433,-5.65836],[-72.98768,-5.66587],[-72.98562,-5.69184],[-73.0069,-5.72942],[-73.02681,-5.73146],[-73.01789,-5.73966],[-73.04673,-5.75811],[-73.04329,-5.77382],[-73.05428,-5.77587],[-73.04741,-5.78134],[-73.11676,-5.83599],[-73.11333,-5.86331],[-73.15522,-5.87356],[-73.1717,-5.92205],[-73.17994,-5.9282],[-73.18337,-5.95961],[-73.17925,-5.96986],[-73.1923,-5.98966],[-73.18818,-6.004],[-73.23555,-6.03746],[-73.23006,-6.07843],[-73.24105,-6.07706],[-73.23349,-6.09072],[-73.25135,-6.12759],[-73.21633,-6.18971],[-73.21907,-6.21838],[-73.18749,-6.26275],[-73.16208,-6.28254],[-73.15522,-6.32691],[-73.12844,-6.39446],[-73.11814,-6.38696],[-73.10509,-6.40675],[-73.12363,-6.42995],[-73.11127,-6.45383],[-73.14011,-6.48999],[-73.13462,-6.50841],[-73.1408,-6.51523],[-73.14354,-6.505],[-73.16483,-6.52751],[-73.17101,-6.51728],[-73.18749,-6.52478],[-73.17925,-6.53365],[-73.2026,-6.55207],[-73.19916,-6.56162],[-73.21084,-6.57526],[-73.21907,-6.56503],[-73.23006,-6.57526],[-73.21976,-6.58686],[-73.24105,-6.58345],[-73.23761,-6.59163],[-73.25272,-6.5814],[-73.29255,-6.58754],[-73.29667,-6.59777],[-73.30353,-6.59231],[-73.35091,-6.59504],[-73.3825,-6.62233],[-73.38044,-6.63528],[-73.42164,-6.6462],[-73.42438,-6.6537],[-73.43537,-6.64961],[-73.45459,-6.66461],[-73.48206,-6.67007],[-73.53905,-6.68507],[-73.54043,-6.6953],[-73.55416,-6.70485],[-73.56102,-6.71985],[-73.60016,-6.7294],[-73.63862,-6.75667],[-73.64548,-6.77577],[-73.66539,-6.80304],[-73.68187,-6.81395],[-73.69355,-6.83849],[-73.71003,-6.83986],[-73.72307,-6.88417],[-73.74711,-6.90803],[-73.74985,-6.91961],[-73.76152,-6.93597],[-73.74367,-6.96596],[-73.76015,-6.97891],[-73.75946,-7.00004],[-73.76358,-7.00618],[-73.75603,-7.01708],[-73.76358,-7.03616],[-73.75672,-7.04434],[-73.76084,-7.06001],[-73.78693,-7.09068],[-73.78556,-7.1043],[-73.79792,-7.11452],[-73.79517,-7.12951],[-73.78487,-7.12747],[-73.78281,-7.13769],[-73.79105,-7.14042],[-73.76839,-7.15609],[-73.76908,-7.17176],[-73.75741,-7.17244],[-73.7526,-7.20377],[-73.74024,-7.22012],[-73.71895,-7.22625],[-73.7217,-7.23851],[-73.71277,-7.23783],[-73.71621,-7.27257],[-73.69561,-7.29982],[-73.70247,-7.32093],[-73.71209,-7.32365],[-73.7217,-7.33591],[-73.72307,-7.34136],[-73.75741,-7.35362],[-73.75191,-7.34068],[-73.78007,-7.33796],[-73.78831,-7.34613],[-73.82195,-7.33932],[-73.8295,-7.35089],[-73.85285,-7.3543],[-73.86315,-7.38767],[-73.88855,-7.3795],[-73.89611,-7.38562],[-73.90572,-7.38494],[-73.90572,-7.37201],[-73.91602,-7.36996],[-73.92151,-7.36043],[-73.93525,-7.37677],[-73.94761,-7.35702],[-73.95173,-7.35839],[-73.95516,-7.37064],[-73.94898,-7.37745],[-73.93868,-7.40265],[-73.94005,-7.40673],[-73.9222,-7.41899],[-73.92495,-7.42512],[-73.91671,-7.44486],[-73.91602,-7.45712],[-73.91053,-7.46665],[-73.91053,-7.47618],[-73.92632,-7.48163],[-73.91671,-7.50137],[-73.92563,-7.50818],[-73.94211,-7.53405],[-73.9531,-7.5286],[-73.98262,-7.53473],[-73.9785,-7.56059],[-73.95653,-7.564],[-73.94623,-7.57693],[-73.92563,-7.58101],[-73.91121,-7.59667],[-73.88855,-7.60415],[-73.89542,-7.61572],[-73.89336,-7.63342],[-73.90023,-7.63954],[-73.87894,-7.65588],[-73.86864,-7.67493],[-73.85628,-7.67697],[-73.84392,-7.66677],[-73.83706,-7.66813],[-73.83706,-7.69194],[-73.82195,-7.70011],[-73.82195,-7.71168],[-73.80822,-7.72256],[-73.80272,-7.7144],[-73.7732,-7.72733],[-73.74299,-7.73413],[-73.73612,-7.7457],[-73.73131,-7.74434],[-73.72719,-7.74093],[-73.71483,-7.74093],[-73.71277,-7.76135],[-73.70316,-7.7593],[-73.69973,-7.76747],[-73.69011,-7.76747],[-73.67981,-7.78244],[-73.67707,-7.8008],[-73.68256,-7.81577],[-73.67844,-7.8559],[-73.68874,-7.86747],[-73.69629,-7.86883],[-73.70591,-7.87563],[-73.71895,-7.87223],[-73.73543,-7.87835],[-73.74436,-7.87019],[-73.75603,-7.87155],[-73.76084,-7.85999],[-73.76565,-7.86407],[-73.75603,-7.89331],[-73.76496,-7.89467],[-73.77251,-7.9076],[-73.75603,-7.9246],[-73.73887,-7.92936],[-73.74505,-7.94772],[-73.73269,-7.95112],[-73.72651,-7.9654],[-73.72033,-7.95792],[-73.70728,-7.95588],[-73.69973,-7.97628],[-73.69286,-7.97492],[-73.68119,-7.9858],[-73.68325,-7.99532],[-73.66814,-8.01096],[-73.65578,-8.01368],[-73.6393,-8.00688],[-73.61527,-8.03612],[-73.62832,-8.05448],[-73.61046,-8.07963],[-73.60978,-8.09119],[-73.60222,-8.09459],[-73.60085,-8.10342],[-73.59055,-8.11362],[-73.58231,-8.13537],[-73.58986,-8.14489],[-73.58918,-8.15305],[-73.59604,-8.15984],[-73.58918,-8.17683],[-73.58712,-8.19858],[-73.57819,-8.20538],[-73.57064,-8.22305],[-73.583,-8.22984],[-73.5878,-8.24072],[-73.56514,-8.24344],[-73.55553,-8.25227],[-73.54248,-8.25567],[-73.53768,-8.2645],[-73.52463,-8.26654],[-73.53013,-8.28353],[-73.53768,-8.29576],[-73.52395,-8.32158],[-73.54248,-8.34671],[-73.52189,-8.35962],[-73.51845,-8.37117],[-73.48618,-8.38068],[-73.47657,-8.39223],[-73.46901,-8.39223],[-73.44292,-8.42687],[-73.43399,-8.42415],[-73.4237,-8.43434],[-73.40653,-8.43095],[-73.39966,-8.44046],[-73.39829,-8.45064],[-73.39142,-8.4554],[-73.38799,-8.46966],[-73.377,-8.46219],[-73.3722,-8.46966],[-73.34336,-8.47577],[-73.33924,-8.46966],[-73.331,-8.47374],[-73.32825,-8.52263],[-73.33512,-8.53214],[-73.33855,-8.57627],[-73.34405,-8.60004],[-73.33581,-8.61972],[-73.3207,-8.6109],[-73.31109,-8.62448],[-73.31109,-8.6333],[-73.30628,-8.62855],[-73.3001,-8.63262],[-73.29598,-8.64009],[-73.29598,-8.64688],[-73.28293,-8.66521],[-73.25478,-8.67946],[-73.25478,-8.68896],[-73.23693,-8.68557],[-73.21701,-8.691],[-73.20534,-8.68761],[-73.19092,-8.69304],[-73.1868,-8.68557],[-73.18062,-8.68625],[-73.17582,-8.69507],[-73.16689,-8.69779],[-73.14835,-8.72494],[-73.14286,-8.72697],[-73.1353,-8.7419],[-73.1408,-8.75005],[-73.13462,-8.75955],[-73.13462,-8.76566],[-73.1147,-8.78398],[-73.11402,-8.80095],[-73.11058,-8.80502],[-73.11196,-8.81859],[-73.09548,-8.83555],[-73.07694,-8.84233],[-73.07969,-8.86065],[-73.07145,-8.86133],[-73.06939,-8.87626],[-73.05977,-8.89593],[-73.05977,-8.90475],[-73.04947,-8.90746],[-73.04947,-8.91221],[-73.03368,-8.9156],[-73.01857,-8.91153],[-73.01102,-8.91832],[-72.99935,-8.91696],[-72.98356,-8.9407],[-72.9815,-8.95901],[-72.97394,-8.96376],[-72.96845,-8.98072],[-72.94304,-8.98208],[-72.94442,-8.99293],[-72.95746,-9.00785],[-72.95609,-9.0187],[-72.94785,-9.02209],[-72.93961,-9.07227],[-72.93961,-9.09397],[-72.95128,-9.12719],[-72.95952,-9.14549],[-72.98768,-9.16176],[-73.00347,-9.16108],[-73.01102,-9.17464],[-73.02338,-9.17464],[-73.02681,-9.18074],[-73.01171,-9.19498],[-73.00553,-9.19498],[-73.00965,-9.22344],[-73.02269,-9.22141],[-73.03505,-9.23496],[-73.06321,-9.22751],[-73.08037,-9.24242],[-73.0893,-9.26072],[-73.10921,-9.27698],[-73.1099,-9.28647],[-73.10029,-9.30409],[-73.11539,-9.31696],[-73.13187,-9.31832],[-73.13462,-9.32916],[-73.14972,-9.33864],[-73.15247,-9.3461],[-73.14835,-9.35423],[-73.17101,-9.36168],[-73.17582,-9.35491],[-73.18818,-9.36303],[-73.19024,-9.39759],[-73.20534,-9.40707],[-73.20057,-9.41126],[-73.20057,-9.41165],[-72.71614,-9.41163],[-72.71851,-9.42062],[-72.69516,-9.43755],[-72.67045,-9.44026],[-72.65465,-9.44974],[-72.64229,-9.44432],[-72.61963,-9.45042],[-72.58255,-9.45923],[-72.54342,-9.46803],[-72.52076,-9.49038],[-72.51526,-9.48496],[-72.48711,-9.48158],[-72.45415,-9.48632],[-72.44179,-9.47887],[-72.4157,-9.48158],[-72.40815,-9.47751],[-72.37656,-9.49377],[-72.36626,-9.49106],[-72.34223,-9.50528],[-72.34223,-9.51815],[-72.31476,-9.54456],[-72.29828,-9.53237],[-72.28249,-9.54185],[-72.28661,-9.60143],[-72.26807,-9.62039],[-72.25434,-9.61362],[-72.25983,-9.63934],[-72.24884,-9.65627],[-72.25159,-9.70162],[-72.25846,-9.71109],[-72.25502,-9.7341],[-72.26464,-9.74628],[-72.2612,-9.7517],[-72.24404,-9.7517],[-72.24129,-9.76185],[-72.23511,-9.76523],[-72.23237,-9.76253],[-72.21932,-9.772],[-72.21589,-9.77809],[-72.19254,-9.77741],[-72.17606,-9.78486],[-72.16851,-9.78418],[-72.16301,-9.79298],[-72.1534,-9.79568],[-72.15477,-9.81733],[-72.16027,-9.81869],[-72.16233,-9.83019],[-72.15615,-9.83154],[-72.15271,-9.84034],[-72.15546,-9.84575],[-72.14859,-9.87281],[-72.13623,-9.87349],[-72.13967,-9.88566],[-72.14722,-9.88837],[-72.15065,-9.90663],[-72.16301,-9.91204],[-72.17469,-9.93166],[-72.16645,-9.94113],[-72.15615,-9.94316],[-72.16164,-9.95465],[-72.14997,-9.96074],[-72.15134,-9.97224],[-72.15683,-9.97224],[-72.15752,-9.97968],[-72.17537,-9.98373],[-72.18052,-10.00043],[-71.37627,-10.00018],[-71.35895,-9.98238],[-71.35003,-9.98441],[-71.35071,-9.97765],[-71.34316,-9.96615],[-71.32874,-9.97427],[-71.31226,-9.9905],[-71.30814,-9.98779],[-71.29853,-9.99117],[-71.29029,-9.98238],[-71.28823,-9.98509],[-71.269,-9.97629],[-71.25939,-9.979],[-71.25184,-9.97224],[-71.2539,-9.96344],[-71.22231,-9.96953],[-71.21064,-9.96412],[-71.21064,-9.9533],[-71.2024,-9.94316],[-71.19347,-9.94248],[-71.19004,-9.92084],[-71.17974,-9.91678],[-71.18042,-9.90663],[-71.15708,-9.87213],[-71.14472,-9.86604],[-71.13511,-9.85251],[-71.10146,-9.85048],[-71.07674,-9.82748],[-71.05957,-9.8241],[-71.05271,-9.81666],[-70.99503,-9.81598],[-70.99228,-9.79298],[-70.97786,-9.76726],[-70.95315,-9.74358],[-70.92499,-9.74019],[-70.88723,-9.68943],[-70.88105,-9.6874],[-70.86869,-9.66439],[-70.83847,-9.65424],[-70.83504,-9.64205],[-70.81238,-9.63934],[-70.7959,-9.63799],[-70.78629,-9.61362],[-70.75814,-9.60211],[-70.75745,-9.5818],[-70.7499,-9.56216],[-70.74028,-9.56013],[-70.72861,-9.5669],[-70.72381,-9.55674],[-70.65651,-9.51544],[-70.64965,-9.49986],[-70.63385,-9.49512],[-70.63591,-9.48496],[-70.62355,-9.47074],[-70.61532,-9.46803],[-70.61326,-9.45855],[-70.59746,-9.4572],[-70.59678,-9.44297],[-70.58785,-9.44432],[-70.56382,-9.43078],[-70.52674,-9.43213],[-70.51026,-9.42468],[-70.49584,-9.42604],[-70.49447,-9.44094],[-70.51095,-9.44636],[-70.50408,-9.46261],[-70.51438,-9.46532],[-70.51644,-9.4572],[-70.52468,-9.45855],[-70.52125,-9.4748],[-70.50545,-9.49445],[-70.50683,-9.50596],[-70.51095,-9.49377],[-70.52331,-9.50528],[-70.53155,-9.50189],[-70.53155,-9.51408],[-70.54459,-9.51205],[-70.54802,-9.52424],[-70.5391,-9.52966],[-70.54116,-9.53575],[-70.55626,-9.53778],[-70.56656,-9.5283],[-70.57206,-9.53101],[-70.56519,-9.53982],[-70.57068,-9.55336],[-70.55764,-9.55742],[-70.55352,-9.56893],[-70.55901,-9.57435],[-70.56794,-9.57164],[-70.57549,-9.56284],[-70.58442,-9.5669],[-70.58922,-9.56419],[-70.5851,-9.55404],[-70.58991,-9.54794],[-70.59884,-9.55336],[-70.60158,-9.56284],[-70.58716,-9.57232],[-70.58854,-9.60008],[-70.59815,-9.60685],[-70.56588,-9.6671],[-70.55283,-9.66913],[-70.54802,-9.67996],[-70.54184,-9.67996],[-70.53017,-9.71109],[-70.52605,-9.71515],[-70.53498,-9.7341],[-70.53292,-9.74493],[-70.53978,-9.74899],[-70.54047,-9.75576],[-70.53566,-9.7632],[-70.5597,-9.78824],[-70.57618,-9.77809],[-70.58579,-9.78553],[-70.59197,-9.80177],[-70.60158,-9.79974],[-70.6112,-9.80245],[-70.61669,-9.81666],[-70.62424,-9.82072],[-70.62149,-9.82681],[-70.62087,-10.9999],[-70.52965,-10.93463],[-70.5264,-10.93395],[-70.51953,-10.93462],[-70.51507,-10.94726],[-70.50339,-10.95063],[-70.49721,-10.96142],[-70.48554,-10.96614],[-70.46975,-10.98704],[-70.45464,-10.99647],[-70.43953,-11.02613],[-70.44297,-11.03287],[-70.43885,-11.03691],[-70.40863,-11.045],[-70.38529,-11.04702],[-70.3743,-11.05983],[-70.35302,-11.0578],[-70.34821,-11.06522],[-70.33585,-11.06791],[-70.32967,-11.06454],[-70.30838,-11.06993],[-70.28092,-11.05578],[-70.27199,-11.05848],[-70.26375,-11.05174],[-70.24178,-11.04702],[-70.19989,-11.05443],[-70.18754,-11.04433],[-70.16213,-11.03826],[-70.14153,-11.02882],[-70.10857,-11.00523],[-70.11063,-10.99445],[-70.06737,-10.99041],[-70.03647,-10.9749],[-69.99253,-10.95401],[-69.95476,-10.92771],[-69.92455,-10.92299],[-69.92249,-10.93176],[-69.917,-10.93176],[-69.917,-10.92299],[-69.87854,-10.92367],[-69.87442,-10.93041],[-69.86412,-10.92704],[-69.85932,-10.93243],[-69.8552,-10.92232],[-69.83185,-10.93243],[-69.81194,-10.92771],[-69.80027,-10.92636],[-69.79546,-10.93243],[-69.77005,-10.93108],[-69.77143,-10.93985],[-69.7625,-10.94052],[-69.73916,-10.97221],[-69.72336,-10.96547],[-69.71718,-10.9749],[-69.7007,-10.96749],[-69.66156,-10.95266],[-69.63616,-10.95872],[-69.62243,-10.94996],[-69.61007,-10.95738],[-69.61075,-10.94592],[-69.59702,-10.9412],[-69.55514,-10.94457],[-69.5517,-10.95333],[-69.54071,-10.94996],[-69.5414,-10.93783],[-69.52149,-10.9385],[-69.50638,-10.94187],[-69.49883,-10.93715],[-69.49402,-10.94861],[-69.47754,-10.95198],[-69.47754,-10.94457],[-69.45488,-10.94524],[-69.44939,-10.93378],[-69.42879,-10.93445],[-69.4233,-10.92569],[-69.37386,-10.94052],[-69.3203,-10.94187],[-69.28803,-10.94726],[-69.25164,-10.9412],[-69.23241,-10.93917],[-69.21456,-10.95535],[-69.19602,-10.94794],[-69.16375,-10.96277],[-69.10744,-10.97558],[-69.07242,-10.96884],[-69.06006,-10.98164],[-69.04702,-10.9776],[-69.01268,-10.99041],[-69.00994,-11.00052],[-68.98659,-11.00186],[-68.97011,-10.98704],[-68.95432,-10.98973],[-68.94677,-11.00726],[-68.93578,-11.00523],[-68.90694,-11.02074],[-68.89595,-11.00321],[-68.86094,-11.01467],[-68.84789,-10.9931],[-68.82729,-10.99715],[-68.82866,-11.00254],[-68.806,-11.00052],[-68.81218,-10.99175],[-68.79296,-10.98973],[-68.79021,-11.01063],[-68.78197,-10.99782],[-68.76069,-11.00321],[-68.75107,-11.01063],[-68.75176,-11.03624],[-68.76343,-11.04635],[-68.76137,-11.05511],[-68.76412,-11.06589],[-68.75725,-11.07937],[-68.74833,-11.09284],[-68.74215,-11.09689],[-68.73322,-11.09284],[-68.72773,-11.10093],[-68.72429,-11.10363],[-68.72223,-11.11441],[-68.71193,-11.12923],[-68.71674,-11.14674],[-68.65769,-11.13731],[-68.61786,-11.12384],[-68.6007,-11.12047],[-68.57872,-11.11238],[-68.54302,-11.10969],[-68.54439,-11.10026],[-68.5389,-11.09352],[-68.52173,-11.08745],[-68.50663,-11.06319],[-68.4874,-11.05106],[-68.44277,-11.0423],[-68.43659,-11.03219],[-68.42835,-11.03152],[-68.42286,-11.04096],[-68.41256,-11.04028],[-68.40432,-11.05174],[-68.3899,-11.04298],[-68.38784,-11.01939],[-68.35968,-11.00523],[-68.33909,-11.00726],[-68.33634,-11.01265],[-68.32535,-11.00861],[-68.32055,-10.99917],[-68.29102,-10.98704],[-68.28141,-10.98906],[-68.26836,-10.97895],[-68.23609,-10.95198],[-68.22854,-10.9176],[-68.20931,-10.90209],[-68.20382,-10.88052],[-68.1997,-10.87647],[-68.19626,-10.85894],[-68.18528,-10.85557],[-68.17154,-10.83871],[-68.13858,-10.80903],[-68.11867,-10.78273],[-68.10563,-10.77733],[-68.107,-10.76249],[-68.09876,-10.74967],[-68.10151,-10.74023],[-68.10494,-10.7409],[-68.107,-10.72066],[-68.07679,-10.6849],[-68.06511,-10.68288],[-68.0555,-10.67006],[-68.03147,-10.66466],[-68.03284,-10.65521],[-68.01499,-10.64847],[-67.99576,-10.64982],[-67.97791,-10.66061],[-67.96006,-10.64914],[-67.93465,-10.65521],[-67.90993,-10.64037],[-67.89689,-10.64644],[-67.89071,-10.63969],[-67.87629,-10.64104],[-67.8653,-10.64037],[-67.85294,-10.64914],[-67.81723,-10.65791],[-67.76505,-10.68558],[-67.75887,-10.68355],[-67.7575,-10.6957],[-67.74582,-10.6957],[-67.74239,-10.70582],[-67.73072,-10.71054],[-67.70875,-10.70987],[-67.70531,-10.7011],[-67.67647,-10.60595],[-67.67098,-10.60662],[-67.66068,-10.61472],[-67.63733,-10.59245],[-67.63459,-10.58098],[-67.62497,-10.5722],[-67.60987,-10.56275],[-67.60437,-10.53305],[-67.60094,-10.53372],[-67.59957,-10.52495],[-67.58996,-10.52022],[-67.56936,-10.51145],[-67.56798,-10.49997],[-67.53571,-10.48647],[-67.5206,-10.49119],[-67.51305,-10.47701],[-67.50412,-10.47094],[-67.49245,-10.47229],[-67.47735,-10.46689],[-67.47254,-10.46081],[-67.44919,-10.45676],[-67.43615,-10.44528],[-67.43683,-10.43717],[-67.42859,-10.42772],[-67.41829,-10.4284],[-67.41211,-10.42502],[-67.41417,-10.39733],[-67.42379,-10.39395],[-67.40525,-10.37166],[-67.37709,-10.37977],[-67.3668,-10.37639],[-67.35581,-10.39328],[-67.34963,-10.39328],[-67.35375,-10.38247],[-67.3462,-10.37572],[-67.33727,-10.37707],[-67.32834,-10.38112],[-67.31186,-10.37302],[-67.31736,-10.36491],[-67.31736,-10.34667],[-67.32903,-10.33451],[-67.31942,-10.31965],[-67.29538,-10.32235],[-67.26998,-10.32371],[-67.26449,-10.33249],[-67.23496,-10.31695],[-67.22329,-10.31627],[-67.21779,-10.32303],[-67.19719,-10.32438],[-67.18827,-10.33789],[-67.1711,-10.33789],[-67.16561,-10.33046],[-67.13128,-10.31425],[-67.13883,-10.30682],[-67.1354,-10.29533],[-67.12716,-10.2906],[-67.09145,-10.28317],[-67.08664,-10.28858],[-67.04888,-10.27439],[-67.05231,-10.26898],[-67.01867,-10.25344],[-67.01455,-10.25682],[-67.00493,-10.24331],[-67.00562,-10.23047],[-66.99395,-10.22844],[-66.98914,-10.21763],[-66.99875,-10.2156],[-66.97678,-10.18654],[-66.95481,-10.18857],[-66.94657,-10.15883],[-66.92322,-10.14058],[-66.91086,-10.14599],[-66.91155,-10.1372],[-66.91704,-10.1318],[-66.87447,-10.09665],[-66.87447,-10.08245],[-66.83739,-10.08177],[-66.83533,-10.06284],[-66.80512,-10.04459],[-66.80787,-10.03648],[-66.7804,-10.01484],[-66.77216,-10.01957],[-66.77147,-10.00943],[-66.7495,-9.99455],[-66.74195,-9.99523],[-66.73577,-9.9817],[-66.67946,-9.96344],[-66.67054,-9.95871],[-66.66436,-9.93707],[-66.65062,-9.93504],[-66.6417,-9.94721],[-66.62659,-9.93098],[-66.63483,-9.92422],[-66.62865,-9.91678],[-66.63483,-9.91137],[-66.62522,-9.90393],[-66.62453,-9.89649],[-66.61972,-9.89446],[-66.58539,-9.90122],[-66.58196,-9.9046],[-66.57441,-9.89107],[-66.56823,-9.89243],[-66.56205,-9.88093],[-66.549,-9.88702],[-66.54488,-9.87822],[-66.52771,-9.88566],[-66.49956,-9.87619],[-66.503,-9.88296],[-66.4927,-9.88499],[-66.48858,-9.86943],[-66.45836,-9.87687],[-66.43364,-9.8674],[-66.42609,-9.87349],[-66.43158,-9.89649],[-66.4151,-9.89716],[-66.42266,-9.88769],[-66.41373,-9.88093],[-66.40412,-9.86469],[-66.3588,-9.86537],[-66.35193,-9.84169],[-66.31554,-9.83154],[-66.28464,-9.84237],[-66.27915,-9.82884],[-66.25649,-9.83357],[-66.23658,-9.81395],[-66.2098,-9.83492],[-66.18851,-9.81936],[-66.19469,-9.80448],[-66.15418,-9.78553],[-66.09925,-9.7835],[-66.09925,-9.80989],[-66.08963,-9.8126],[-66.07933,-9.79365],[-66.08689,-9.78959],[-66.06904,-9.78418],[-66.03333,-9.78892],[-66.02509,-9.81192],[-66.00037,-9.79433],[-65.99694,-9.80177],[-65.96467,-9.80245],[-65.97359,-9.79568],[-65.97428,-9.78012],[-65.96741,-9.77065],[-65.94338,-9.75914],[-65.93445,-9.76862],[-65.92003,-9.75305],[-65.90493,-9.76523],[-65.88501,-9.75238],[-65.87128,-9.75508],[-65.86167,-9.76997],[-65.87128,-9.79095],[-65.84656,-9.79298],[-65.8294,-9.76591],[-65.81704,-9.7544],[-65.80124,-9.75779],[-65.81292,-9.77268],[-65.80262,-9.78756],[-65.78339,-9.78621],[-65.77584,-9.76523],[-65.78065,-9.74019],[-65.77034,-9.73546],[-65.76828,-9.74019],[-65.77034,-9.75711],[-65.74494,-9.78215],[-65.73189,-9.7632],[-65.7058,-9.75711],[-65.6852,-9.74831],[-65.67902,-9.76523],[-65.70649,-9.76388],[-65.70855,-9.77403],[-65.70031,-9.78824],[-65.70923,-9.80854],[-65.68932,-9.81192],[-65.68726,-9.8011],[-65.66872,-9.78215],[-65.65911,-9.79298],[-65.64469,-9.7923],[-65.65293,-9.80515],[-65.64881,-9.81463],[-65.63782,-9.8038],[-65.62684,-9.8356],[-65.60212,-9.82342],[-65.59731,-9.84034],[-65.57053,-9.83628],[-65.55748,-9.84575],[-65.55268,-9.83154],[-65.56572,-9.81327],[-65.54032,-9.80245],[-65.53139,-9.78147],[-65.51285,-9.79298],[-65.49843,-9.77606],[-65.50324,-9.76794],[-65.50118,-9.73004],[-65.48264,-9.72666],[-65.48745,-9.70906],[-65.47303,-9.7138],[-65.44213,-9.69079],[-65.44762,-9.67116],[-65.38308,-9.69146],[-65.35012,-9.7341],[-65.32746,-9.78012],[-65.32059,-9.81124],[-65.28763,-9.83898],[-65.29175,-9.87552],[-65.33433,-9.93572],[-65.32128,-9.9817],[-65.32196,-10.0047],[-65.33158,-10.05744],[-65.30205,-10.09665],[-65.30137,-10.14329],[-65.30686,-10.17168],[-65.28763,-10.21628],[-65.32265,-10.29466],[-65.33433,-10.31425],[-65.392,-10.37369],[-65.37758,-10.41286],[-65.4023,-10.46148],[-65.42702,-10.46419],[-65.42908,-10.48647],[-65.41192,-10.50537],[-65.42084,-10.52967],[-65.40505,-10.55128],[-65.39818,-10.58908],[-65.41535,-10.61742],[-65.40436,-10.63969],[-65.36385,-10.65117],[-65.34394,-10.69435],[-65.34463,-10.77126],[-65.36316,-10.778],[-65.36591,-10.79824],[-65.34394,-10.80633],[-65.27527,-10.8704],[-65.26703,-10.91827],[-65.27253,-10.94457],[-65.25124,-10.98367],[-65.26841,-10.99715],[-65.29931,-11.03085],[-65.28008,-11.07061],[-65.28832,-11.09419],[-65.35561,-11.12586],[-65.36042,-11.15281],[-65.35355,-11.18177],[-65.32815,-11.18043],[-65.31441,-11.18851],[-65.31922,-11.20535],[-65.35355,-11.21478],[-65.36248,-11.23296],[-65.34463,-11.30637],[-65.29587,-11.3131],[-65.29244,-11.32791],[-65.32746,-11.33262],[-65.33501,-11.3508],[-65.30823,-11.49483],[-65.29725,-11.50291],[-65.21828,-11.51838],[-65.21073,-11.53857],[-65.23064,-11.55404],[-65.22721,-11.61727],[-65.21828,-11.64686],[-65.26154,-11.702],[-65.24987,-11.72217],[-65.18532,-11.75579],[-65.1764,-11.74436],[-65.1867,-11.72419],[-65.12421,-11.71948],[-65.09675,-11.70335],[-65.08233,-11.72015],[-65.07958,-11.74234],[-65.06035,-11.77999],[-65.06241,-11.82233],[-65.07409,-11.85929],[-65.06447,-11.88012],[-65.03083,-11.88684],[-65.01503,-11.90028],[-65.02053,-11.9285],[-65.0425,-11.96141],[-65.04113,-11.97216],[-65.03289,-11.96612],[-65.02671,-11.97149],[-65.03701,-11.98425],[-65.03495,-11.99298],[-65.02053,-11.99903],[-65.00199,-11.99366],[-64.98551,-12.01381],[-64.97452,-12.01649],[-64.96422,-11.99769],[-64.94912,-11.99366],[-64.9292,-12.01985],[-64.91478,-12.02522],[-64.84955,-12.00843],[-64.82621,-12.02119],[-64.81179,-12.05141],[-64.81179,-12.06753],[-64.83376,-12.08096],[-64.84475,-12.09909],[-64.8317,-12.1199],[-64.8214,-12.11654],[-64.80217,-12.08431],[-64.75892,-12.10244],[-64.76647,-12.13802],[-64.7651,-12.15346],[-64.74793,-12.15413],[-64.73488,-12.1199],[-64.73969,-12.10244],[-64.71634,-12.08499],[-64.6978,-12.09573],[-64.71428,-12.12795],[-64.71497,-12.1642],[-64.69574,-12.18971],[-64.61197,-12.21521],[-64.57901,-12.21186],[-64.55636,-12.2387],[-64.53988,-12.23669],[-64.51241,-12.22259],[-64.5028,-12.23669],[-64.49524,-12.28097],[-64.50005,-12.32458],[-64.51584,-12.34604],[-64.50142,-12.36549],[-64.45954,-12.38763],[-64.43001,-12.42317],[-64.40323,-12.44865],[-64.35929,-12.46005],[-64.29337,-12.45737],[-64.29131,-12.46876],[-64.29955,-12.48955],[-64.29337,-12.50094],[-64.27826,-12.49759],[-64.23638,-12.45737],[-64.22883,-12.45468],[-64.21853,-12.46139],[-64.20891,-12.46139],[-64.19655,-12.47279],[-64.18282,-12.46541],[-64.17252,-12.46742],[-64.17458,-12.50363],[-64.16497,-12.51301],[-64.14711,-12.50161],[-64.14162,-12.47882],[-64.12926,-12.47681],[-64.12171,-12.49022],[-64.12308,-12.50564],[-64.09836,-12.48553],[-64.08944,-12.48351],[-64.08669,-12.49759],[-64.0757,-12.4996],[-64.06678,-12.48955],[-64.05373,-12.49491],[-64.04137,-12.51435],[-64.02215,-12.50899],[-64.01116,-12.5177],[-64.00017,-12.50296],[-63.95966,-12.52977],[-63.93837,-12.52575],[-63.91983,-12.50899],[-63.90404,-12.50698],[-63.89718,-12.50094],[-63.90061,-12.4815],[-63.89031,-12.46407],[-63.88962,-12.44798],[-63.87589,-12.44463],[-63.83332,-12.4634],[-63.81752,-12.44597],[-63.80448,-12.44597],[-63.78869,-12.42786],[-63.76465,-12.43993],[-63.73856,-12.43725],[-63.68638,-12.45066],[-63.67539,-12.46072],[-63.65548,-12.46407],[-63.62252,-12.47346],[-63.61496,-12.48553],[-63.59024,-12.49022],[-63.57583,-12.50094],[-63.55179,-12.50832],[-63.53119,-12.53982],[-63.51471,-12.55457],[-63.5051,-12.56596],[-63.47695,-12.5606],[-63.43575,-12.56596],[-63.4385,-12.58071],[-63.42751,-12.59612],[-63.43987,-12.60081],[-63.44056,-12.60684],[-63.41309,-12.60885],[-63.4021,-12.63364],[-63.37258,-12.65843],[-63.34992,-12.65776],[-63.33344,-12.66915],[-63.28606,-12.68389],[-63.25928,-12.68456],[-63.23937,-12.69059],[-63.23182,-12.68389],[-63.24486,-12.66513],[-63.2428,-12.66044],[-63.2325,-12.66446],[-63.21808,-12.65374],[-63.20023,-12.65441],[-63.18856,-12.64302],[-63.19748,-12.63029],[-63.19336,-12.62359],[-63.18238,-12.62962],[-63.17208,-12.64235],[-63.16178,-12.63498],[-63.16727,-12.61756],[-63.15629,-12.61555],[-63.15217,-12.63297],[-63.13775,-12.639],[-63.13912,-12.64503],[-63.12951,-12.64503],[-63.12264,-12.65508],[-63.11234,-12.6591],[-63.09929,-12.65508],[-63.09243,-12.66111],[-63.09792,-12.67719],[-63.09449,-12.68255],[-63.08007,-12.68389],[-63.06839,-12.68188],[-63.06359,-12.68791],[-63.06427,-12.69327],[-63.08144,-12.70599],[-63.08075,-12.72676],[-63.06977,-12.73011],[-63.05947,-12.72743],[-63.04505,-12.73881],[-63.03956,-12.76493],[-63.03406,-12.781],[-63.0217,-12.7877],[-63.02239,-12.80578],[-63.01072,-12.8098],[-63.01346,-12.82921],[-63.00728,-12.83993],[-62.98394,-12.84193],[-62.98188,-12.85465],[-62.97501,-12.85867],[-62.96196,-12.84461],[-62.95166,-12.84863],[-62.9496,-12.85666],[-62.94342,-12.85398],[-62.94068,-12.84461],[-62.91939,-12.84126],[-62.90635,-12.85398],[-62.89124,-12.858],[-62.89399,-12.87407],[-62.88025,-12.88879],[-62.87339,-12.90954],[-62.84317,-12.9236],[-62.85279,-12.94033],[-62.84661,-12.94702],[-62.83974,-12.94568],[-62.82944,-12.93497],[-62.8061,-12.941],[-62.80816,-12.96241],[-62.7958,-12.99319],[-62.78,-13.00925],[-62.75872,-13.01928],[-62.7491,-13.00055],[-62.74292,-13.00055],[-62.73468,-13.02062],[-62.72576,-13.0166],[-62.72782,-13.00791],[-62.72576,-13.00256],[-62.7134,-13.00389],[-62.70928,-12.99988],[-62.69898,-13.00256],[-62.69555,-12.99185],[-62.67357,-12.98784],[-62.65778,-12.96709],[-62.64611,-12.96509],[-62.64611,-12.97312],[-62.65229,-12.98449],[-62.64542,-12.99252],[-62.63649,-12.9885],[-62.62825,-12.98984],[-62.63375,-13.00858],[-62.62894,-13.01527],[-62.62139,-13.01594],[-62.60697,-13.01125],[-62.60079,-13.01393],[-62.61384,-13.02597],[-62.61315,-13.03868],[-62.54242,-13.07547],[-62.52388,-13.06611],[-62.50191,-13.08416],[-62.48406,-13.07681],[-62.48337,-13.05808],[-62.47513,-13.05607],[-62.47307,-13.07748],[-62.46621,-13.07815],[-62.45934,-13.0641],[-62.45385,-13.06744],[-62.46071,-13.08082],[-62.45522,-13.08751],[-62.44217,-13.07881],[-62.43256,-13.08416],[-62.43462,-13.09821],[-62.41471,-13.12563],[-62.39892,-13.11225],[-62.39686,-13.11627],[-62.39686,-13.12697],[-62.39274,-13.13365],[-62.38175,-13.13098],[-62.37832,-13.13766],[-62.35085,-13.14301],[-62.34673,-13.137],[-62.33918,-13.13766],[-62.34124,-13.14903],[-62.32956,-13.14101],[-62.32682,-13.14569],[-62.3227,-13.15171],[-62.31789,-13.13566],[-62.30622,-13.13833],[-62.30072,-13.1497],[-62.29386,-13.15037],[-62.29043,-13.139],[-62.28287,-13.14636],[-62.27738,-13.15572],[-62.24717,-13.14435],[-62.24305,-13.12897],[-62.24785,-13.11961],[-62.2403,-13.11426],[-62.23,-13.12162],[-62.22245,-13.11292],[-62.21489,-13.11092],[-62.20253,-13.12295],[-62.20116,-13.14903],[-62.19292,-13.15304],[-62.17713,-13.14034],[-62.18331,-13.12697],[-62.17782,-13.11493],[-62.16683,-13.1176],[-62.17164,-13.13165],[-62.16065,-13.14769],[-62.15172,-13.1497],[-62.15104,-13.16107],[-62.14554,-13.16107],[-62.13593,-13.14903],[-62.12426,-13.1497],[-62.1167,-13.15973],[-62.11602,-13.20586],[-62.10846,-13.2199],[-62.11052,-13.25198],[-62.1167,-13.258],[-62.09336,-13.28072],[-62.08512,-13.28272],[-62.08374,-13.29007],[-62.07482,-13.29342],[-62.0707,-13.29542],[-62.05765,-13.28807],[-62.05765,-13.31146],[-62.04667,-13.3148],[-62.03499,-13.33284],[-62.01989,-13.32749],[-62.01302,-13.33017],[-62.01577,-13.35021],[-62.00066,-13.36892],[-61.98487,-13.36624],[-61.97388,-13.37426],[-61.97731,-13.38762],[-61.9629,-13.38962],[-61.97113,-13.40566],[-61.95328,-13.40699],[-61.94916,-13.41434],[-61.93955,-13.40699],[-61.92925,-13.42636],[-61.90796,-13.43504],[-61.89972,-13.42569],[-61.89011,-13.43304],[-61.8805,-13.46509],[-61.88187,-13.49714],[-61.87088,-13.51183],[-61.86676,-13.52986],[-61.85372,-13.5372],[-61.84685,-13.52852],[-61.84136,-13.52786],[-61.84136,-13.54855],[-61.82282,-13.53386],[-61.81252,-13.53854],[-61.81801,-13.52719],[-61.79192,-13.53787],[-61.77681,-13.53119],[-61.77613,-13.51651],[-61.76857,-13.51784],[-61.76377,-13.53587],[-61.75621,-13.53921],[-61.75415,-13.53186],[-61.7569,-13.52452],[-61.74935,-13.51918],[-61.74592,-13.52385],[-61.7315,-13.52452],[-61.69579,-13.50783],[-61.69442,-13.49915],[-61.68549,-13.5085],[-61.66764,-13.50516],[-61.65322,-13.51651],[-61.64635,-13.51651],[-61.64566,-13.50649],[-61.62507,-13.5145],[-61.62644,-13.49848],[-61.62095,-13.49848],[-61.61614,-13.50916],[-61.60653,-13.5105],[-61.60172,-13.50315],[-61.58593,-13.50249],[-61.58593,-13.48846],[-61.57631,-13.48913],[-61.57357,-13.49381],[-61.57975,-13.50716],[-61.56876,-13.51918],[-61.55503,-13.51851],[-61.53649,-13.52786],[-61.53374,-13.53386],[-61.52207,-13.53653],[-61.50971,-13.54521],[-61.49186,-13.54922],[-61.47881,-13.55322],[-61.46851,-13.55589],[-61.41427,-13.53854],[-61.40397,-13.53787],[-61.40465,-13.52719],[-61.39367,-13.51985],[-61.35178,-13.52185],[-61.33942,-13.51584],[-61.33942,-13.50516],[-61.3044,-13.50182],[-61.30166,-13.4918],[-61.30578,-13.48246],[-61.2996,-13.47778],[-61.28655,-13.48379],[-61.28518,-13.50182],[-61.27694,-13.50649],[-61.26183,-13.49781],[-61.24466,-13.49915],[-61.24192,-13.5125],[-61.23162,-13.52452],[-61.222,-13.52986],[-61.20896,-13.52519],[-61.19179,-13.53587],[-61.18149,-13.52519],[-61.18767,-13.51517],[-61.18424,-13.5105],[-61.15746,-13.51584],[-61.14922,-13.53053],[-61.14647,-13.51851],[-61.14373,-13.5125],[-61.13686,-13.51784],[-61.13892,-13.52852],[-61.12587,-13.52051],[-61.10459,-13.53186],[-61.09978,-13.52852],[-61.10459,-13.51784],[-61.09429,-13.50382],[-61.09704,-13.49247],[-61.06476,-13.50249],[-61.05858,-13.5125],[-61.04004,-13.50649],[-61.03592,-13.49648],[-61.05172,-13.49247],[-61.04622,-13.48446],[-61.02562,-13.49114],[-61.01532,-13.48646],[-60.98855,-13.49848],[-60.99129,-13.50716],[-61.00159,-13.49848],[-61.00983,-13.50649],[-60.99816,-13.52585],[-61.00159,-13.53053],[-61.00846,-13.52118],[-61.01258,-13.52786],[-61.00502,-13.55055],[-60.9858,-13.54655],[-60.98511,-13.53854],[-60.97756,-13.53921],[-60.96932,-13.53587],[-60.95971,-13.54922],[-60.95215,-13.55055],[-60.93361,-13.54054],[-60.92057,-13.53987],[-60.91576,-13.54521],[-60.924,-13.55456],[-60.92263,-13.56791],[-60.90958,-13.58393],[-60.89035,-13.59527],[-60.88006,-13.6173],[-60.8622,-13.62464],[-60.84641,-13.63131],[-60.83748,-13.62731],[-60.82306,-13.63198],[-60.80796,-13.65333],[-60.7901,-13.65467],[-60.77088,-13.66401],[-60.77019,-13.68202],[-60.73998,-13.68602],[-60.70771,-13.69336],[-60.70427,-13.70537],[-60.69535,-13.71471],[-60.69741,-13.7007],[-60.68848,-13.69937],[-60.68505,-13.71604],[-60.65621,-13.73539],[-60.63149,-13.72738],[-60.62394,-13.72005],[-60.61158,-13.72738],[-60.61158,-13.73739],[-60.60128,-13.74739],[-60.59098,-13.74339],[-60.57724,-13.74806],[-60.57587,-13.75673],[-60.56626,-13.75606],[-60.56694,-13.76673],[-60.54772,-13.77874],[-60.54703,-13.76874],[-60.52231,-13.76807],[-60.51888,-13.77607],[-60.52918,-13.79074],[-60.50652,-13.79341],[-60.50034,-13.78808],[-60.49004,-13.79474],[-60.47081,-13.79274],[-60.46669,-13.80008],[-60.47974,-13.80075],[-60.48043,-13.80741],[-60.46807,-13.81341],[-60.47562,-13.82408],[-60.48455,-13.81675],[-60.49141,-13.82142],[-60.48111,-13.83275],[-60.47356,-13.82875],[-60.46669,-13.83142],[-60.49347,-13.85009],[-60.48935,-13.85875],[-60.47493,-13.85075],[-60.46738,-13.85809],[-60.4612,-13.85275],[-60.45639,-13.86075],[-60.46463,-13.86342],[-60.47562,-13.88075],[-60.46807,-13.89075],[-60.46326,-13.88142],[-60.45433,-13.88142],[-60.4509,-13.88475],[-60.45639,-13.89408],[-60.44884,-13.92941],[-60.42893,-13.94007],[-60.42069,-13.93674],[-60.41863,-13.9454],[-60.40833,-13.94807],[-60.41794,-13.95406],[-60.41794,-13.96073],[-60.42481,-13.96206],[-60.4152,-13.98005],[-60.3946,-13.97805],[-60.38704,-13.98138],[-60.38018,-13.99271],[-60.39597,-13.99404],[-60.40215,-13.99937],[-60.40078,-14.0127],[-60.40627,-14.02402],[-60.40558,-14.02935],[-60.42618,-14.048],[-60.43168,-14.06599],[-60.44404,-14.08331],[-60.46669,-14.09529],[-60.47013,-14.08797],[-60.47974,-14.09529],[-60.47425,-14.10928],[-60.48317,-14.11594],[-60.47425,-14.12726],[-60.48249,-14.13259],[-60.47562,-14.15789],[-60.48249,-14.16454],[-60.48867,-14.17187],[-60.49141,-14.18984],[-60.4715,-14.19384],[-60.46807,-14.21381],[-60.46395,-14.22246],[-60.46532,-14.23311],[-60.44884,-14.24243],[-60.44953,-14.25108],[-60.46532,-14.26572],[-60.45502,-14.3123],[-60.42481,-14.34756],[-60.39803,-14.36884],[-60.39528,-14.38813],[-60.40284,-14.38547],[-60.40352,-14.41407],[-60.39391,-14.43535],[-60.3843,-14.442],[-60.37743,-14.4666],[-60.36644,-14.46926],[-60.36026,-14.48256],[-60.3685,-14.48655],[-60.33967,-14.51048],[-60.34173,-14.53175],[-60.32868,-14.56232],[-60.32387,-14.60884],[-60.29366,-14.62478],[-60.27215,-14.6203],[-60.24507,-15.09718],[-60.57498,-15.09775],[-60.2391,-15.47452],[-60.17368,-16.26666],[-58.4307,-16.32267],[-58.42392,-16.31751],[-58.4095,-16.31059],[-58.40058,-16.30466],[-58.39406,-16.29543],[-58.39097,-16.27434],[-58.392,-16.27006],[-58.38959,-16.26247],[-58.36659,-16.27434],[-58.35423,-16.27071],[-58.34668,-16.27467],[-58.32779,-16.27038],[-58.32299,-16.26643],[-58.31784,-16.29181],[-58.30754,-16.30367],[-58.30342,-16.31026],[-58.30376,-16.33102],[-58.30685,-16.34024],[-58.30925,-16.36231],[-58.30719,-16.37154],[-58.31063,-16.37384],[-58.31612,-16.37286],[-58.31955,-16.37681],[-58.32848,-16.3801],[-58.33397,-16.38801],[-58.33638,-16.38933],[-58.34015,-16.38768],[-58.34427,-16.38933],[-58.34633,-16.39426],[-58.34427,-16.39492],[-58.34462,-16.39921],[-58.35663,-16.42588],[-58.34771,-16.45453],[-58.33432,-16.47791],[-58.33329,-16.48482],[-58.33397,-16.48943],[-58.34359,-16.51741],[-58.35389,-16.52333],[-58.35766,-16.52959],[-58.3865,-16.54341],[-58.39406,-16.5625],[-58.42152,-16.57303],[-58.42839,-16.58553],[-58.43628,-16.59244],[-58.46306,-16.65067],[-58.46032,-16.66646],[-58.47062,-16.70198],[-58.46718,-16.72039],[-58.46787,-16.73025],[-58.47405,-16.74341],[-58.46581,-16.75721],[-58.46375,-16.78022],[-58.45894,-16.78548],[-58.46238,-16.7914],[-58.47199,-16.79008],[-58.47611,-16.80849],[-58.4768,-16.82624],[-58.46238,-16.84004],[-58.46856,-16.84792],[-58.46238,-16.84858],[-58.46512,-16.85778],[-58.46032,-16.86238],[-58.4665,-16.8683],[-58.46444,-16.87224],[-58.46718,-16.88407],[-58.46581,-16.88801],[-58.46787,-16.89721],[-58.45963,-16.89983],[-58.4665,-16.91035],[-58.47336,-16.91297],[-58.46856,-16.9248],[-58.47542,-16.93268],[-58.46856,-16.94122],[-58.46032,-16.93794],[-58.45757,-16.93991],[-58.46169,-16.95436],[-58.461,-16.96487],[-58.45688,-16.96946],[-58.44864,-16.96815],[-58.4459,-16.97997],[-58.43216,-16.99048],[-58.42392,-16.98916],[-58.42736,-16.99901],[-58.43491,-17.00689],[-58.43422,-17.02659],[-58.42118,-17.0279],[-58.41637,-17.03447],[-58.42049,-17.03709],[-58.43148,-17.03644],[-58.43354,-17.04563],[-58.42324,-17.04891],[-58.43285,-17.05876],[-58.4301,-17.06992],[-58.43491,-17.07976],[-58.43422,-17.08501],[-58.4253,-17.09092],[-58.42873,-17.10536],[-58.42392,-17.11389],[-58.40676,-17.1093],[-58.39646,-17.10273],[-58.38822,-17.10864],[-58.38685,-17.11849],[-58.39715,-17.13686],[-58.39715,-17.18147],[-58.36693,-17.19853],[-58.36281,-17.21689],[-58.35663,-17.21099],[-58.34565,-17.23198],[-58.33947,-17.23394],[-58.33672,-17.24378],[-58.31955,-17.25493],[-58.32024,-17.26739],[-58.30376,-17.27001],[-58.30307,-17.27722],[-58.29209,-17.28706],[-58.29964,-17.29165],[-58.29827,-17.29886],[-58.29277,-17.30214],[-58.27767,-17.29886],[-58.27561,-17.30476],[-58.27836,-17.31459],[-58.27698,-17.32311],[-58.26394,-17.33032],[-58.26325,-17.34475],[-58.25707,-17.3454],[-58.25501,-17.35261],[-58.24677,-17.35326],[-58.2399,-17.34868],[-58.23304,-17.34999],[-58.22686,-17.34737],[-58.22823,-17.35523],[-58.21862,-17.35982],[-58.20351,-17.35523],[-58.19664,-17.36834],[-58.20008,-17.38145],[-58.19321,-17.38931],[-58.17536,-17.39193],[-58.1527,-17.38341],[-58.15201,-17.39914],[-58.14721,-17.41224],[-58.13073,-17.41027],[-58.1218,-17.41552],[-58.12043,-17.44631],[-58.08884,-17.46006],[-58.07305,-17.45286],[-58.06138,-17.45155],[-58.0497,-17.46203],[-58.04352,-17.49215],[-58.0291,-17.49674],[-58.0243,-17.49477],[-58.01743,-17.4987],[-58.01194,-17.4987],[-58.00507,-17.50525],[-57.99958,-17.50394],[-57.99889,-17.51442],[-57.99546,-17.51508],[-57.98035,-17.50984],[-57.97692,-17.50591],[-57.96387,-17.50067],[-57.88344,-17.44955],[-57.7523,-17.56447],[-57.76749,-17.55894],[-57.77848,-17.55763],[-57.7929,-17.55501],[-57.79496,-17.56418],[-57.78122,-17.57596],[-57.79152,-17.58513],[-57.77779,-17.58578],[-57.78534,-17.59494],[-57.77573,-17.59691],[-57.78466,-17.60738],[-57.78054,-17.61458],[-57.77298,-17.61065],[-57.77504,-17.6257],[-57.78466,-17.63748],[-57.77642,-17.65515],[-57.76268,-17.66006],[-57.74895,-17.6931],[-57.74071,-17.69342],[-57.73144,-17.71861],[-57.72492,-17.72122],[-57.72011,-17.72024],[-57.71016,-17.72973],[-57.72011,-17.77125],[-57.68544,-17.8059],[-57.68475,-17.83009],[-57.72217,-17.83107],[-57.59961,-18.04828],[-57.57489,-18.13215],[-57.50725,-18.19805],[-57.50313,-18.1974],[-57.50245,-18.19479],[-57.49421,-18.19935],[-57.49146,-18.20261],[-57.48322,-18.19674],[-57.4791,-18.20196],[-57.48185,-18.20783],[-57.47567,-18.20849],[-57.47361,-18.21435],[-57.47567,-18.21696],[-57.47017,-18.21827],[-57.46811,-18.22218],[-57.46331,-18.22349],[-57.46193,-18.22609],[-57.45644,-18.22479],[-57.4585,-18.2274],[-57.45438,-18.2287],[-57.45389,-18.23142],[-57.56028,-18.24145],[-57.76668,-18.89929],[-57.71984,-18.89907],[-57.71932,-18.97806],[-57.71256,-18.97773],[-57.70844,-18.98358],[-57.70363,-18.98682],[-57.70226,-18.99331],[-57.69677,-18.99656],[-57.69883,-19.00435],[-57.69865,-19.00727],[-57.69127,-19.01068],[-57.69711,-19.01117],[-57.69934,-19.01523],[-57.70174,-19.01685],[-57.70192,-19.01831],[-57.70466,-19.02058],[-57.70363,-19.02221],[-57.70569,-19.02302],[-57.70604,-19.02448],[-57.70724,-19.02529],[-57.70741,-19.02691],[-57.70861,-19.02788],[-57.70844,-19.03016],[-57.70998,-19.03162],[-57.71076,-19.03484],[-57.78332,-19.03508],[-58.13116,-19.75845],[-57.85924,-19.97079],[-57.86568,-19.98803],[-57.88731,-20.0153],[-57.90225,-20.04223],[-57.90688,-20.04255],[-57.92799,-20.02288],[-57.94671,-20.01836],[-57.95838,-20.02175],[-57.96627,-20.03062],[-57.97245,-20.04803],[-57.98705,-20.05852],[-58.02807,-20.05997],[-58.03408,-20.06464],[-58.03734,-20.07125],[-58.04696,-20.1043],[-58.05657,-20.10898],[-58.07253,-20.10495],[-58.09176,-20.10801],[-58.11545,-20.14589],[-58.13382,-20.15217],[-58.14961,-20.15201],[-58.15716,-20.15556],[-58.16798,-20.16958],[-58.17021,-20.16555],[-58.16866,-20.15427],[-58.1642,-20.14895],[-58.16025,-20.14412],[-58.14583,-20.13848],[-58.14412,-20.13525],[-58.14377,-20.12929],[-58.13776,-20.12236],[-58.14377,-20.09979],[-58.15476,-20.08496],[-58.15476,-20.07657],[-58.16163,-20.07657],[-58.16643,-20.04884],[-58.16163,-20.0482],[-58.15613,-20.04304],[-58.17536,-20.0282],[-58.17399,-20.01917],[-58.17811,-20.01465],[-58.17742,-19.99916],[-58.18634,-19.97206],[-58.19458,-19.9598],[-58.21518,-19.95399],[-58.19733,-19.92559],[-58.20145,-19.90041],[-58.2042,-19.89718],[-58.20145,-19.86231],[-58.18566,-19.84811],[-58.17536,-19.84294],[-58.17399,-19.83454],[-58.16386,-19.82732],[-58.2351,-19.77575],[-59.069,-19.28766],[-59.9749,-19.29449],[-60.60436,-19.45662],[-61.73506,-19.63441],[-61.92247,-20.08923],[-62.26636,-20.56316],[-62.26092,-21.05867],[-62.63814,-22.2313],[-62.63993,-22.23356],[-62.64084,-22.23399],[-62.64748,-22.23826],[-62.65297,-22.25034],[-62.6619,-22.25098],[-62.68456,-22.2122],[-62.72301,-22.2014],[-62.73674,-22.17533],[-62.77039,-22.15116],[-62.77932,-22.15244],[-62.78138,-22.16643],[-62.80884,-22.14226],[-62.81708,-22.09519],[-62.79786,-22.06465],[-62.81571,-22.04619],[-62.81708,-22.01627],[-62.81159,-22.00482],[-62.81339,-21.99875],[-63.66541,-21.99941],[-63.66672,-22.00366],[-63.67058,-22.01277],[-63.66612,-22.01468],[-63.66681,-22.0185],[-63.6699,-22.02041],[-63.67093,-22.02391],[-63.6699,-22.02773],[-63.67196,-22.02932],[-63.67264,-22.03155],[-63.67402,-22.03282],[-63.6735,-22.0407],[-63.67711,-22.0411],[-63.67642,-22.0446],[-63.67951,-22.04969],[-63.67951,-22.0516],[-63.68363,-22.05383],[-63.68638,-22.03919],[-63.685,-22.03442],[-63.68157,-22.03123],[-63.68672,-22.02582],[-63.68809,-22.01723],[-63.68912,-22.01118],[-63.69668,-22.01468],[-63.69736,-22.01341],[-63.70045,-22.01468],[-63.70526,-22.01405],[-63.70594,-22.01182],[-63.70629,-22.00864],[-63.70946,-22.00474],[-63.70873,-22.00139],[-63.70895,-21.99942],[-63.93142,-21.99935],[-63.94455,-22.01182],[-63.93837,-22.01564],[-63.94455,-22.02455],[-63.94249,-22.03028],[-63.95348,-22.03664],[-63.94936,-22.04428],[-63.95554,-22.04428],[-63.94936,-22.05128],[-63.95691,-22.05574],[-63.95005,-22.05574],[-63.96172,-22.06401],[-63.95897,-22.06592],[-63.96035,-22.08119],[-63.96378,-22.09328],[-63.97477,-22.08755],[-63.97545,-22.08055],[-63.98232,-22.08501],[-63.97889,-22.09073],[-63.99811,-22.10664],[-63.99262,-22.11555],[-63.99811,-22.12509],[-63.99468,-22.13018],[-64.00429,-22.15116],[-64.00223,-22.15816],[-64.02455,-22.17596],[-64.017,-22.17883],[-64.01665,-22.18646],[-64.02489,-22.18741],[-64.03382,-22.19631],[-64.02626,-22.20903],[-64.03107,-22.21792],[-64.04,-22.2211],[-64.03862,-22.22619],[-64.02764,-22.23064],[-64.03931,-22.23509],[-64.0345,-22.24144],[-64.04274,-22.24589],[-64.05716,-22.24462],[-64.05716,-22.23763],[-64.06197,-22.23763],[-64.06815,-22.2586],[-64.07639,-22.26496],[-64.08738,-22.29672],[-64.08257,-22.298],[-64.08669,-22.30752],[-64.09081,-22.31197],[-64.09424,-22.3107],[-64.10248,-22.33674],[-64.09768,-22.34055],[-64.10592,-22.3577],[-64.11759,-22.36469],[-64.10935,-22.38246],[-64.12102,-22.38183],[-64.1169,-22.40405],[-64.14162,-22.40722],[-64.14505,-22.41738],[-64.14299,-22.42627],[-64.15329,-22.43769],[-64.15192,-22.45419],[-64.16428,-22.45483],[-64.1684,-22.46625],[-64.18282,-22.47323],[-64.18831,-22.4929],[-64.20205,-22.50305],[-64.19655,-22.51066],[-64.19999,-22.51573],[-64.21715,-22.51637],[-64.21784,-22.52588],[-64.22471,-22.54491],[-64.21578,-22.56266],[-64.24256,-22.5652],[-64.23912,-22.57661],[-64.25011,-22.58993],[-64.23638,-22.60387],[-64.25354,-22.61148],[-64.2508,-22.62606],[-64.26247,-22.63873],[-64.26178,-22.64634],[-64.26865,-22.65394],[-64.26934,-22.66662],[-64.25972,-22.67992],[-64.26934,-22.70146],[-64.26796,-22.72996],[-64.28032,-22.74073],[-64.2762,-22.75529],[-64.27895,-22.77302],[-64.27002,-22.78252],[-64.2865,-22.78758],[-64.292,-22.811],[-64.28101,-22.8167],[-64.28376,-22.82682],[-64.30642,-22.83822],[-64.30848,-22.84454],[-64.30092,-22.84644],[-64.29749,-22.8534],[-64.30367,-22.86922],[-64.31054,-22.87302],[-64.30848,-22.86542],[-64.31328,-22.86416],[-64.32496,-22.86859],[-64.33938,-22.86416],[-64.32427,-22.85087],[-64.33045,-22.84265],[-64.32702,-22.82682],[-64.33114,-22.811],[-64.34075,-22.80404],[-64.338,-22.79138],[-64.33938,-22.78442],[-64.33457,-22.76036],[-64.34212,-22.74959],[-64.34967,-22.73313],[-64.36272,-22.72426],[-64.37165,-22.72806],[-64.37371,-22.72173],[-64.38469,-22.71666],[-64.38744,-22.72236],[-64.40323,-22.71856],[-64.39431,-22.71096],[-64.40117,-22.69703],[-64.39499,-22.68942],[-64.39843,-22.68309],[-64.41559,-22.68119],[-64.41903,-22.66978],[-64.41353,-22.65521],[-64.43345,-22.64887],[-64.43413,-22.62226],[-64.42383,-22.60578],[-64.43139,-22.59817],[-64.42452,-22.58739],[-64.43001,-22.58676],[-64.43139,-22.57978],[-64.41697,-22.57344],[-64.40941,-22.55822],[-64.41971,-22.55505],[-64.41079,-22.53666],[-64.41971,-22.53476],[-64.42727,-22.52905],[-64.42727,-22.52017],[-64.43551,-22.51954],[-64.44993,-22.52208],[-64.45473,-22.51446],[-64.44375,-22.50622],[-64.44924,-22.50241],[-64.45611,-22.50432],[-64.45885,-22.50051],[-64.45954,-22.4929],[-64.46915,-22.48528],[-64.47396,-22.48972],[-64.48426,-22.47894],[-64.48357,-22.47196],[-64.47464,-22.46815],[-64.49112,-22.45673],[-64.49044,-22.43706],[-64.49524,-22.43388],[-64.50692,-22.44213],[-64.5234,-22.44213],[-64.52477,-22.43515],[-64.5131,-22.42246],[-64.51241,-22.41421],[-64.52614,-22.40722],[-64.52958,-22.39707],[-64.54125,-22.38881],[-64.54949,-22.38691],[-64.56803,-22.37104],[-64.56391,-22.35389],[-64.56665,-22.33801],[-64.56254,-22.3215],[-64.54812,-22.31832],[-64.54606,-22.30689],[-64.53919,-22.30435],[-64.53301,-22.28465],[-64.56048,-22.26368],[-64.59481,-22.24208],[-64.60305,-22.22619],[-64.61884,-22.20775],[-64.63669,-22.20076],[-64.63875,-22.19313],[-64.65317,-22.18995],[-64.65867,-22.19504],[-64.67583,-22.18677],[-64.71154,-22.18995],[-64.72115,-22.1944],[-64.73557,-22.1925],[-64.74587,-22.18805],[-64.74587,-22.18296],[-64.75411,-22.17914],[-64.77951,-22.17596],[-64.78981,-22.16579],[-64.81659,-22.14735],[-64.83307,-22.14162],[-64.86191,-22.12254],[-64.87221,-22.12127],[-64.87771,-22.11745],[-64.88663,-22.12827],[-64.90243,-22.11936],[-64.9244,-22.12],[-64.93538,-22.11682],[-64.93882,-22.10918],[-64.9601,-22.10346],[-64.96972,-22.10028],[-64.98688,-22.09392],[-64.98963,-22.08819],[-64.99581,-22.08564],[-64.99338,-22.08242],[-65.47084,-22.0891],[-65.47333,-22.08855],[-65.47599,-22.09022],[-65.47646,-22.09252],[-65.48178,-22.09431],[-65.4835,-22.09563],[-65.48487,-22.09555],[-65.57439,-22.07623],[-65.58358,-22.0831],[-65.58426,-22.09582],[-65.60555,-22.09582],[-65.62821,-22.10091],[-65.67353,-22.11236],[-65.68657,-22.10918],[-65.69275,-22.10282],[-65.7161,-22.09773],[-65.73121,-22.10918],[-65.74975,-22.10918],[-65.75798,-22.10155],[-65.77721,-22.09201],[-65.77996,-22.08755],[-65.79438,-22.07419],[-65.80489,-22.0753],[-65.92478,-21.93357],[-66.04818,-21.91903],[-66.04327,-21.87188],[-66.0763,-21.83496],[-66.19412,-21.79601],[-66.22143,-21.78105],[-66.22628,-21.78756],[-66.2407,-21.78756],[-66.24344,-21.79202],[-66.24138,-21.80095],[-66.23795,-21.81816],[-66.24207,-21.83219],[-66.23864,-21.84685],[-66.23452,-21.85131],[-66.23864,-21.85449],[-66.24138,-21.86214],[-66.24138,-21.8666],[-66.2455,-21.87297],[-66.24619,-21.88062],[-66.24894,-21.88763],[-66.24825,-21.89782],[-66.25168,-21.90483],[-66.25786,-21.90356],[-66.26267,-21.92585],[-66.25855,-21.93159],[-66.26061,-21.93732],[-66.26679,-21.93668],[-66.27366,-21.94369],[-66.27572,-21.97489],[-66.2819,-21.98317],[-66.28396,-21.9889],[-66.27846,-21.9959],[-66.2819,-22.01691],[-66.27846,-22.02009],[-66.28327,-22.02901],[-66.29014,-22.03092],[-66.29082,-22.03792],[-66.28739,-22.0411],[-66.29288,-22.05065],[-66.28602,-22.04874],[-66.28464,-22.0551],[-66.29357,-22.06083],[-66.28602,-22.0691],[-66.29082,-22.07355],[-66.28808,-22.08755],[-66.30044,-22.0901],[-66.30868,-22.09392],[-66.3176,-22.08628],[-66.32378,-22.08819],[-66.32859,-22.10791],[-66.33202,-22.11809],[-66.33683,-22.11936],[-66.34163,-22.11682],[-66.34919,-22.12],[-66.34785,-22.1282],[-66.62316,-22.19747],[-66.63824,-22.22558],[-66.65247,-22.21657],[-66.68614,-22.20969],[-66.73918,-22.2384],[-66.75963,-22.32539],[-66.76158,-22.34588],[-66.78428,-22.40175],[-66.78515,-22.41708],[-66.78512,-22.42385],[-66.78313,-22.43247],[-66.78242,-22.43809],[-66.80169,-22.44713],[-66.92846,-22.49218],[-66.97283,-22.54039],[-67.02716,-22.54079],[-67.01403,-22.65458],[-67.12776,-22.72204],[-67.1807,-22.8138],[-67.19382,-22.81702],[-67.22995,-22.82511],[-67.26736,-22.83322],[-67.35556,-22.85213],[-67.56698,-22.89786],[-67.79881,-22.88136],[-67.82314,-22.85879],[-67.82987,-22.85624],[-67.82459,-22.85164],[-67.82574,-22.84491],[-67.83308,-22.84402],[-67.84112,-22.8484],[-67.85483,-22.84281],[-67.85971,-22.8374],[-67.86803,-22.83326],[-67.88275,-22.8341],[-67.88326,-22.82936],[-67.87905,-22.81417],[-67.88205,-22.8072],[-67.87891,-22.80285],[-67.87786,-22.79356],[-67.87509,-22.78838],[-67.87586,-22.78236],[-67.8739,-22.77888],[-67.87288,-22.76559],[-67.87667,-22.75514],[-67.87188,-22.7515],[-67.86744,-22.74153],[-67.87516,-22.73841],[-67.881,-22.72753],[-67.88597,-22.72762],[-67.88571,-22.72375],[-67.89042,-22.71862],[-67.8868,-22.7169],[-67.88731,-22.70504],[-67.88463,-22.70019],[-67.87012,-22.69344],[-67.87198,-22.69072],[-67.86764,-22.6809],[-67.87155,-22.67189],[-67.88887,-22.66575],[-67.87765,-22.66621],[-67.87515,-22.66031],[-67.87745,-22.65884],[-67.87612,-22.65122],[-67.87718,-22.64708],[-67.87535,-22.64319],[-67.87454,-22.63835],[-67.87945,-22.63882],[-67.87993,-22.63636],[-67.8787,-22.63453],[-67.88412,-22.62818],[-67.8837,-22.62696],[-67.87916,-22.62606],[-67.8766,-22.62456],[-67.87232,-22.62497],[-67.8701,-22.62633],[-67.86535,-22.62701],[-67.86186,-22.62355],[-67.85734,-22.62104],[-67.85934,-22.61901],[-67.85863,-22.6164],[-67.85482,-22.61475],[-67.85923,-22.61089],[-67.86363,-22.60766],[-67.86392,-22.603],[-67.86283,-22.59898],[-67.86003,-22.59607],[-67.85796,-22.59653],[-67.85022,-22.5947],[-67.84661,-22.59319],[-67.84334,-22.59413],[-67.84277,-22.59143],[-67.83809,-22.58841],[-67.83752,-22.5846],[-67.83214,-22.58141],[-67.83426,-22.57821],[-67.83861,-22.57961],[-67.84038,-22.57783],[-67.8405,-22.57445],[-67.84439,-22.57296],[-67.8464,-22.56987],[-67.84222,-22.56662],[-67.84199,-22.56337],[-67.84446,-22.56035],[-67.85256,-22.55742],[-67.85276,-22.55639],[-67.849,-22.55358],[-67.84782,-22.55235],[-67.84322,-22.54895],[-67.84268,-22.54656],[-67.84455,-22.54453],[-67.84703,-22.54371],[-67.84711,-22.54274],[-67.84291,-22.53879],[-67.84115,-22.53899],[-67.83965,-22.53805],[-67.8397,-22.53544],[-67.84072,-22.53442],[-67.84106,-22.53288],[-67.84234,-22.53285],[-67.84567,-22.53071],[-67.84837,-22.53065],[-67.85141,-22.52996],[-67.85613,-22.5304],[-67.85806,-22.5316],[-67.85921,-22.5337],[-67.86026,-22.53462],[-67.86411,-22.53419],[-67.86637,-22.53269],[-67.87015,-22.53232],[-67.87123,-22.53155],[-67.87324,-22.52474],[-67.87654,-22.52183],[-67.87715,-22.51978],[-67.87639,-22.51578],[-67.87683,-22.51503],[-67.88205,-22.51185],[-67.8871,-22.50807],[-67.88701,-22.50672],[-67.88837,-22.50441],[-67.88982,-22.50329],[-67.89122,-22.50038],[-67.89284,-22.49938],[-67.89249,-22.44685],[-67.88814,-22.44636],[-67.88405,-22.44444],[-67.88412,-22.44028],[-67.88819,-22.43672],[-67.89446,-22.43675],[-67.89755,-22.43391],[-67.89738,-22.42853],[-67.90004,-22.42688],[-67.90006,-22.42488],[-67.89766,-22.4234],[-67.89828,-22.42216],[-67.90115,-22.423],[-67.90488,-22.41819],[-67.90372,-22.41179],[-67.90011,-22.40947],[-67.90268,-22.4061],[-67.90319,-22.40146],[-67.91657,-22.39757],[-67.92463,-22.39181],[-67.93338,-22.3905],[-67.94294,-22.38065],[-67.93256,-22.37514],[-67.93337,-22.36445],[-67.94105,-22.3582],[-67.93024,-22.34369],[-67.94182,-22.33664],[-67.94311,-22.32815],[-67.93946,-22.3232],[-67.93925,-22.31157],[-67.93264,-22.30389],[-67.93822,-22.29374],[-67.93328,-22.2866],[-67.93487,-22.27343],[-67.92156,-22.27466],[-67.915,-22.27297],[-67.91736,-22.26811],[-67.92525,-22.26274],[-67.9213,-22.24213],[-67.93614,-22.2164],[-67.93279,-22.20259],[-67.93974,-22.19646],[-67.94047,-22.18783],[-67.95527,-22.17635],[-67.95732,-22.15185],[-67.94968,-22.14736],[-67.94715,-22.13748],[-67.94118,-22.13014],[-67.94221,-22.12199],[-67.93946,-22.10748],[-67.94838,-22.09499],[-67.94838,-22.08791],[-67.96277,-22.08117],[-67.9673,-22.0658],[-67.96428,-22.05376],[-67.97764,-22.04376],[-68.00731,-22.03918],[-68.01586,-22.02328],[-68.07213,-21.97905],[-68.06228,-21.85264],[-68.06135,-21.79408],[-68.06205,-21.79274],[-68.06074,-21.79112],[-68.06056,-21.78892],[-68.0597,-21.78592],[-68.05977,-21.78509],[-68.06062,-21.78393],[-68.06093,-21.78234],[-68.0598,-21.78052],[-68.0597,-21.77925],[-68.06122,-21.77711],[-68.06046,-21.77011],[-68.06156,-21.76885],[-68.06284,-21.76814],[-68.06591,-21.76569],[-68.06682,-21.76422],[-68.07195,-21.76204],[-68.07206,-21.75968],[-68.07149,-21.75597],[-68.07189,-21.75381],[-68.07757,-21.75091],[-68.08231,-21.75136],[-68.08433,-21.74999],[-68.08652,-21.74736],[-68.08991,-21.74073],[-68.09314,-21.73837],[-68.0928,-21.73599],[-68.09409,-21.73261],[-68.09589,-21.73047],[-68.09602,-21.72497],[-68.09787,-21.72354],[-68.098,-21.72179],[-68.09976,-21.71932],[-68.10002,-21.71694],[-68.10688,-21.7058],[-68.10748,-21.7037],[-68.11009,-21.69961],[-68.1124,-21.69516],[-68.11282,-21.69263],[-68.11538,-21.68986],[-68.11524,-21.68733],[-68.11673,-21.68632],[-68.11774,-21.67851],[-68.13802,-21.65684],[-68.1807,-21.60437],[-68.17967,-21.50322],[-68.18002,-21.49899],[-68.1795,-21.41236],[-68.17899,-21.30207],[-68.29445,-21.09842],[-68.41249,-20.93467],[-68.41398,-20.94052],[-68.42122,-20.9415],[-68.42777,-20.94633],[-68.44547,-20.9457],[-68.45973,-20.94506],[-68.47487,-20.94604],[-68.47913,-20.94055],[-68.48202,-20.94596],[-68.49188,-20.94546],[-68.50174,-20.94175],[-68.5139,-20.93561],[-68.51522,-20.92911],[-68.53439,-20.90978],[-68.53978,-20.90961],[-68.54258,-20.90376],[-68.53989,-20.89856],[-68.54232,-20.8905],[-68.55231,-20.87667],[-68.55511,-20.86634],[-68.55059,-20.85609],[-68.54745,-20.84134],[-68.55471,-20.83301],[-68.54756,-20.83109],[-68.54539,-20.81618],[-68.54115,-20.81025],[-68.5407,-20.79617],[-68.54601,-20.78291],[-68.54101,-20.77575],[-68.54682,-20.77009],[-68.55295,-20.74851],[-68.55445,-20.728],[-68.53033,-20.72195],[-68.52772,-20.69789],[-68.50397,-20.6771],[-68.50377,-20.67233],[-68.50014,-20.66948],[-68.47709,-20.66492],[-68.46522,-20.65637],[-68.45984,-20.65664],[-68.45035,-20.64792],[-68.43823,-20.64318],[-68.44121,-20.63587],[-68.45928,-20.63035],[-68.46316,-20.62317],[-68.47459,-20.61791],[-68.48534,-20.60687],[-68.51596,-20.60384],[-68.52186,-20.5849],[-68.53463,-20.56982],[-68.54756,-20.57346],[-68.56462,-20.56456],[-68.5699,-20.5757],[-68.57924,-20.57162],[-68.57663,-20.56769],[-68.57745,-20.5612],[-68.58871,-20.55978],[-68.59482,-20.55434],[-68.59269,-20.55083],[-68.6012,-20.55005],[-68.60285,-20.54285],[-68.60827,-20.54705],[-68.61164,-20.53775],[-68.62578,-20.52886],[-68.64548,-20.52296],[-68.65177,-20.52454],[-68.66356,-20.51519],[-68.66723,-20.51642],[-68.73899,-20.4558],[-68.74148,-20.36867],[-68.73914,-20.37058],[-68.72392,-20.3663],[-68.70923,-20.36676],[-68.70278,-20.36376],[-68.69217,-20.36188],[-68.68877,-20.35919],[-68.67955,-20.35912],[-68.67134,-20.35426],[-68.66261,-20.34425],[-68.66031,-20.33735],[-68.66145,-20.32739],[-68.66037,-20.32532],[-68.66258,-20.32219],[-68.66032,-20.31906],[-68.66252,-20.31762],[-68.6642,-20.31778],[-68.66533,-20.31538],[-68.66897,-20.31347],[-68.6694,-20.31107],[-68.6705,-20.30868],[-68.66955,-20.30669],[-68.67083,-20.30518],[-68.67477,-20.30434],[-68.67836,-20.30172],[-68.6797,-20.29408],[-68.68426,-20.29491],[-68.6878,-20.29389],[-68.69228,-20.29538],[-68.69723,-20.28952],[-68.69522,-20.2876],[-68.69493,-20.27859],[-68.69296,-20.27539],[-68.69549,-20.272],[-68.69716,-20.26208],[-68.69723,-20.25762],[-68.70132,-20.24871],[-68.70562,-20.25114],[-68.71061,-20.2518],[-68.71268,-20.24879],[-68.71011,-20.24096],[-68.71314,-20.23775],[-68.71231,-20.23115],[-68.71414,-20.22963],[-68.71503,-20.22738],[-68.71326,-20.22587],[-68.71202,-20.22505],[-68.71043,-20.22387],[-68.70812,-20.22186],[-68.70662,-20.22083],[-68.704,-20.21872],[-68.70197,-20.21683],[-68.70046,-20.21521],[-68.69879,-20.2138],[-68.69868,-20.21297],[-68.699,-20.21142],[-68.70065,-20.21084],[-68.70264,-20.21097],[-68.70416,-20.21047],[-68.70551,-20.21084],[-68.70875,-20.20962],[-68.71045,-20.20775],[-68.71172,-20.20581],[-68.71279,-20.20024],[-68.71362,-20.19946],[-68.71401,-20.19804],[-68.71236,-20.19433],[-68.70874,-20.19114],[-68.7106,-20.18786],[-68.70967,-20.1843],[-68.7078,-20.18339],[-68.70691,-20.17993],[-68.70603,-20.17805],[-68.70394,-20.17706],[-68.70125,-20.17736],[-68.69444,-20.17533],[-68.69146,-20.17663],[-68.69192,-20.17552],[-68.69449,-20.174],[-68.69567,-20.17155],[-68.69657,-20.17078],[-68.69845,-20.16763],[-68.69865,-20.16596],[-68.6998,-20.16412],[-68.70062,-20.16094],[-68.70347,-20.15945],[-68.70465,-20.15833],[-68.70408,-20.15374],[-68.70179,-20.1528],[-68.70019,-20.14832],[-68.70063,-20.14581],[-68.70178,-20.14496],[-68.7024,-20.13929],[-68.70381,-20.13731],[-68.70435,-20.13518],[-68.70595,-20.13299],[-68.70809,-20.1326],[-68.70895,-20.1331],[-68.70891,-20.13372],[-68.7111,-20.13441],[-68.7115,-20.13258],[-68.71753,-20.13542],[-68.71793,-20.13697],[-68.72008,-20.13716],[-68.72229,-20.13556],[-68.73384,-20.13443],[-68.7407,-20.12569],[-68.74791,-20.12247],[-68.75607,-20.12666],[-68.76182,-20.13408],[-68.76748,-20.13054],[-68.77366,-20.12974],[-68.76225,-20.07814],[-68.69474,-20.06911],[-68.63994,-20.04879],[-68.56668,-20.05002],[-68.55111,-20.02124],[-68.52162,-19.92406],[-68.54259,-19.88951],[-68.52802,-19.84543],[-68.59937,-19.82804],[-68.62067,-19.78965],[-68.62615,-19.78382],[-68.62983,-19.78312],[-68.63215,-19.78146],[-68.65703,-19.76813],[-68.65749,-19.75828],[-68.66004,-19.75821],[-68.66603,-19.75264],[-68.68051,-19.74944],[-68.68857,-19.75014],[-68.69389,-19.7531],[-68.69627,-19.75288],[-68.69281,-19.74914],[-68.69175,-19.74636],[-68.69599,-19.74227],[-68.69518,-19.73925],[-68.68751,-19.74019],[-68.68668,-19.73727],[-68.68344,-19.73532],[-68.68561,-19.73106],[-68.68226,-19.71791],[-68.65865,-19.7096],[-68.64279,-19.70696],[-68.63895,-19.70399],[-68.62302,-19.7013],[-68.62165,-19.69736],[-68.61718,-19.69471],[-68.62151,-19.69105],[-68.62293,-19.68447],[-68.61858,-19.68005],[-68.61732,-19.67725],[-68.61846,-19.67574],[-68.61577,-19.67305],[-68.60724,-19.6731],[-68.60352,-19.66564],[-68.59977,-19.66191],[-68.59653,-19.65349],[-68.60138,-19.64481],[-68.57234,-19.6056],[-68.55673,-19.59639],[-68.44115,-19.44076],[-68.41257,-19.43128],[-68.41236,-19.42136],[-68.40459,-19.41598],[-68.45025,-19.3692],[-68.5196,-19.31433],[-68.54265,-19.29687],[-68.61954,-19.27644],[-68.62754,-19.25119],[-68.71325,-19.17018],[-68.73618,-19.15572],[-68.75079,-19.13319],[-68.79039,-19.09964],[-68.80654,-19.0831],[-68.85173,-19.06445],[-68.87199,-19.06019],[-68.88932,-19.04334],[-68.91926,-18.97806],[-68.95019,-18.93602],[-68.9414,-18.92925],[-68.93989,-18.92162],[-68.93541,-18.91595],[-68.93162,-18.91543],[-68.92517,-18.90777],[-68.9256,-18.90179],[-68.92073,-18.89315],[-68.9112,-18.89028],[-68.91603,-18.89015],[-68.92021,-18.8848],[-68.92016,-18.88025],[-68.91843,-18.87406],[-68.92137,-18.86122],[-68.92269,-18.86024],[-68.92416,-18.855],[-68.92426,-18.85188],[-68.92529,-18.84949],[-68.9253,-18.84304],[-68.97804,-18.7378],[-68.97617,-18.73608],[-68.97499,-18.73371],[-68.9763,-18.73014],[-68.97693,-18.72315],[-68.97852,-18.71752],[-68.9808,-18.71383],[-68.98506,-18.71161],[-68.98735,-18.705],[-68.98596,-18.70145],[-68.98432,-18.69894],[-68.9832,-18.6987],[-68.98338,-18.69684],[-68.98476,-18.69481],[-68.98475,-18.69272],[-68.98302,-18.69064],[-68.98333,-18.68875],[-68.98549,-18.68221],[-68.98399,-18.67775],[-68.98618,-18.67674],[-68.98785,-18.67443],[-68.98909,-18.67039],[-68.99101,-18.66732],[-68.99401,-18.66314],[-68.99404,-18.66157],[-68.99448,-18.65992],[-68.99767,-18.65775],[-68.99775,-18.65575],[-69.00015,-18.65634],[-69.00022,-18.65225],[-69.00329,-18.64974],[-69.00448,-18.64633],[-69.00589,-18.64573],[-69.00868,-18.64545],[-69.00864,-18.64363],[-69.00722,-18.64214],[-69.00791,-18.63763],[-69.01428,-18.63352],[-69.01704,-18.63315],[-69.02241,-18.6311],[-69.0239,-18.62955],[-69.02607,-18.62833],[-69.02751,-18.62881],[-69.03021,-18.63009],[-69.03377,-18.62932],[-69.03712,-18.62146],[-69.03559,-18.61762],[-69.03682,-18.6133],[-69.03186,-18.61203],[-69.02879,-18.60994],[-69.02868,-18.60849],[-69.02925,-18.60492],[-69.02834,-18.60136],[-69.0255,-18.60026],[-69.02207,-18.60029],[-69.02,-18.59947],[-69.01775,-18.59955],[-69.01507,-18.59831],[-69.00878,-18.60179],[-69.00646,-18.60104],[-69.01684,-18.57256],[-69.01622,-18.56974],[-69.0137,-18.56448],[-69.01425,-18.56331],[-69.01385,-18.56005],[-69.01275,-18.55727],[-69.01283,-18.55186],[-69.01463,-18.55069],[-69.01063,-18.54478],[-69.01067,-18.54361],[-69.01156,-18.54244],[-69.01266,-18.54206],[-69.0116,-18.53814],[-69.01117,-18.53433],[-69.00844,-18.53061],[-69.0059,-18.52565],[-69.00598,-18.5248],[-69.00447,-18.52454],[-69.00536,-18.5233],[-69.00447,-18.51948],[-69.00769,-18.51824],[-69.01004,-18.51511],[-69.00891,-18.51363],[-69.00813,-18.51086],[-69.00816,-18.49384],[-69.0087,-18.4896],[-69.00863,-18.48831],[-69.0077,-18.48528],[-69.00298,-18.48295],[-69.00448,-18.47997],[-69.00435,-18.47909],[-69.00451,-18.47796],[-69.00419,-18.4761],[-69.00792,-18.474],[-69.01175,-18.47057],[-69.01349,-18.46857],[-69.01712,-18.46628],[-69.0194,-18.46431],[-69.02061,-18.46356],[-69.02132,-18.46229],[-69.02288,-18.46124],[-69.02393,-18.46081],[-69.02557,-18.46093],[-69.02657,-18.45915],[-69.02996,-18.45599],[-69.02943,-18.4545],[-69.02941,-18.45217],[-69.02822,-18.44866],[-69.02804,-18.44641],[-69.0297,-18.44575],[-69.03058,-18.44561],[-69.03228,-18.44614],[-69.03333,-18.44668],[-69.03539,-18.44681],[-69.0364,-18.44578],[-69.03833,-18.44275],[-69.03931,-18.43969],[-69.04011,-18.43561],[-69.03975,-18.43349],[-69.03982,-18.43251],[-69.04093,-18.43079],[-69.04084,-18.43008],[-69.04182,-18.42853],[-69.04589,-18.42828],[-69.04802,-18.42639],[-69.04723,-18.42379],[-69.04703,-18.42177],[-69.04786,-18.41841],[-69.04537,-18.41593],[-69.04723,-18.41528],[-69.04848,-18.41437],[-69.04853,-18.4124],[-69.04739,-18.40938],[-69.04735,-18.40297],[-69.04748,-18.3995],[-69.04643,-18.39475],[-69.04587,-18.38973],[-69.04673,-18.38723],[-69.04789,-18.38276],[-69.04958,-18.38285],[-69.05164,-18.38235],[-69.0532,-18.38106],[-69.05418,-18.3799],[-69.05533,-18.37545],[-69.05525,-18.37368],[-69.05483,-18.37279],[-69.05451,-18.37245],[-69.05394,-18.37221],[-69.05232,-18.37175],[-69.04951,-18.37031],[-69.04845,-18.36892],[-69.04758,-18.36772],[-69.04821,-18.36478],[-69.04922,-18.363],[-69.05,-18.36017],[-69.04931,-18.35621],[-69.04939,-18.35546],[-69.0501,-18.35327],[-69.0502,-18.35195],[-69.05135,-18.35034],[-69.05313,-18.34835],[-69.05365,-18.34756],[-69.05181,-18.34355],[-69.05209,-18.34271],[-69.05188,-18.34122],[-69.05129,-18.33775],[-69.04659,-18.33522],[-69.04482,-18.33262],[-69.04484,-18.33226],[-69.04354,-18.33119],[-69.04366,-18.33041],[-69.04274,-18.32879],[-69.04151,-18.32715],[-69.04115,-18.32567],[-69.03805,-18.32323],[-69.03859,-18.32155],[-69.0402,-18.32034],[-69.04203,-18.31874],[-69.04286,-18.31783],[-69.04319,-18.31686],[-69.04431,-18.31528],[-69.04452,-18.31366],[-69.04509,-18.31312],[-69.04541,-18.31252],[-69.04624,-18.31248],[-69.0483,-18.31287],[-69.04911,-18.31246],[-69.05179,-18.31198],[-69.0526,-18.31166],[-69.05439,-18.3101],[-69.05806,-18.30819],[-69.06133,-18.30526],[-69.06407,-18.30118],[-69.06777,-18.29888],[-69.0701,-18.29528],[-69.07624,-18.29178],[-69.07405,-18.28534],[-69.07393,-18.27639],[-69.07278,-18.27134],[-69.07258,-18.26376],[-69.07174,-18.26199],[-69.07132,-18.25932],[-69.07047,-18.25804],[-69.06997,-18.25209],[-69.0655,-18.24613],[-69.06471,-18.24416],[-69.06426,-18.2429],[-69.06507,-18.24157],[-69.06513,-18.23956],[-69.06273,-18.23737],[-69.06295,-18.2347],[-69.06383,-18.23365],[-69.06363,-18.23307],[-69.06658,-18.23043],[-69.06902,-18.22812],[-69.07185,-18.22495],[-69.07314,-18.22326],[-69.076,-18.2223],[-69.07611,-18.22089],[-69.07971,-18.2191],[-69.08542,-18.21502],[-69.09055,-18.21234],[-69.09474,-18.21117],[-69.1019,-18.21066],[-69.1028,-18.20895],[-69.10482,-18.20891],[-69.10696,-18.20549],[-69.10962,-18.20322],[-69.11082,-18.20112],[-69.11486,-18.19612],[-69.11778,-18.19349],[-69.11979,-18.18928],[-69.12178,-18.18792],[-69.12728,-18.18142],[-69.1333,-18.17808],[-69.1382,-18.1745],[-69.1422,-18.1664],[-69.14348,-18.16641],[-69.14477,-18.16593],[-69.14578,-18.16499],[-69.14619,-18.16258],[-69.14511,-18.16096],[-69.14366,-18.16022],[-69.14245,-18.16039],[-69.14244,-18.158],[-69.14156,-18.15577],[-69.14189,-18.1535],[-69.14175,-18.14928],[-69.14101,-18.1454],[-69.13635,-18.14348],[-69.13528,-18.1412],[-69.13258,-18.14034],[-69.12911,-18.13883],[-69.12836,-18.1377],[-69.12684,-18.13177],[-69.12696,-18.13056],[-69.12743,-18.12967],[-69.12707,-18.12872],[-69.12901,-18.12762],[-69.12811,-18.12608],[-69.12808,-18.12528],[-69.12525,-18.1263],[-69.1219,-18.12563],[-69.11778,-18.12391],[-69.11597,-18.12213],[-69.11321,-18.12142],[-69.10998,-18.11956],[-69.10684,-18.11827],[-69.10317,-18.11896],[-69.10294,-18.11807],[-69.10159,-18.11751],[-69.10083,-18.1161],[-69.09962,-18.11493],[-69.09745,-18.11401],[-69.09784,-18.11229],[-69.09753,-18.11025],[-69.09843,-18.10841],[-69.09951,-18.10763],[-69.0998,-18.10467],[-69.09878,-18.10285],[-69.09637,-18.1023],[-69.09401,-18.1023],[-69.08921,-18.09944],[-69.08739,-18.0987],[-69.08514,-18.09674],[-69.08361,-18.09701],[-69.08148,-18.09711],[-69.08101,-18.09557],[-69.08128,-18.09498],[-69.08087,-18.09301],[-69.08074,-18.09175],[-69.08129,-18.08634],[-69.08058,-18.08567],[-69.07851,-18.08632],[-69.07593,-18.08346],[-69.07481,-18.08126],[-69.07558,-18.07902],[-69.07553,-18.07765],[-69.07354,-18.0755],[-69.07202,-18.07565],[-69.07034,-18.07498],[-69.0675,-18.0703],[-69.06758,-18.06887],[-69.06676,-18.06696],[-69.06491,-18.06619],[-69.06255,-18.06428],[-69.06019,-18.06384],[-69.05429,-18.05825],[-69.05079,-18.05608],[-69.05412,-18.05467],[-69.05953,-18.0541],[-69.06258,-18.0543],[-69.06404,-18.05232],[-69.065,-18.04835],[-69.0693,-18.04604],[-69.07446,-18.04127],[-69.07876,-18.04274],[-69.08395,-18.04095],[-69.08639,-18.03882],[-69.08631,-18.0358],[-69.08935,-18.03016],[-69.09374,-18.02577],[-69.09641,-18.02153],[-69.10038,-18.02121],[-69.10468,-18.02193],[-69.10845,-18.0185],[-69.11206,-18.01311],[-69.12056,-18.00487],[-69.1224,-18.00503],[-69.12716,-18.00258],[-69.13394,-18.00218],[-69.13867,-18.00283],[-69.14622,-18.0003],[-69.15274,-17.99965],[-69.15824,-18.00046],[-69.16288,-18.00136],[-69.16534,-17.99953],[-69.16832,-17.99884],[-69.16837,-17.9966],[-69.17048,-17.99567],[-69.17033,-17.99176],[-69.17553,-17.99295],[-69.17834,-17.99249],[-69.18274,-17.99311],[-69.18725,-17.99222],[-69.18939,-17.99083],[-69.19988,-17.9909],[-69.2065,-17.98836],[-69.21002,-17.98575],[-69.212,-17.98624],[-69.21677,-17.98307],[-69.21699,-17.98096],[-69.22096,-17.98018],[-69.22297,-17.98145],[-69.2291,-17.98337],[-69.2302,-17.98477],[-69.23096,-17.98869],[-69.23226,-17.98831],[-69.23579,-17.98353],[-69.24094,-17.98462],[-69.24624,-17.98309],[-69.25,-17.9809],[-69.25236,-17.97774],[-69.25668,-17.97483],[-69.25364,-17.96732],[-69.25447,-17.96519],[-69.25428,-17.96193],[-69.25581,-17.95374],[-69.25746,-17.96013],[-69.2608,-17.9624],[-69.26501,-17.96385],[-69.26621,-17.96691],[-69.27539,-17.96964],[-69.2808,-17.97042],[-69.28929,-17.96006],[-69.29087,-17.95541],[-69.29551,-17.94911],[-69.29856,-17.9424],[-69.29756,-17.94118],[-69.29809,-17.93979],[-69.30007,-17.93961],[-69.30069,-17.93524],[-69.30424,-17.92819],[-69.30941,-17.92033],[-69.31205,-17.91359],[-69.31285,-17.90877],[-69.31046,-17.90431],[-69.31038,-17.90053],[-69.31098,-17.89953],[-69.30872,-17.89757],[-69.30914,-17.89627],[-69.30784,-17.8948],[-69.30845,-17.89312],[-69.30735,-17.89227],[-69.30823,-17.89087],[-69.30755,-17.8898],[-69.30809,-17.88635],[-69.30603,-17.88474],[-69.30612,-17.8828],[-69.30517,-17.88069],[-69.30653,-17.87983],[-69.30652,-17.87718],[-69.30779,-17.87567],[-69.30718,-17.87302],[-69.30859,-17.87123],[-69.30733,-17.86855],[-69.30215,-17.86581],[-69.30202,-17.86338],[-69.30017,-17.86128],[-69.30008,-17.8518],[-69.30618,-17.84208],[-69.30618,-17.8299],[-69.30918,-17.82271],[-69.30859,-17.80608],[-69.31489,-17.78782],[-69.32855,-17.77247],[-69.33558,-17.75872],[-69.33919,-17.74538],[-69.33514,-17.73771],[-69.34334,-17.72422],[-69.46781,-17.60495],[-69.46845,-17.49833],[-69.48673,-17.5144],[-69.50976,-17.53744],[-69.5517,-17.57633],[-69.58743,-17.60088],[-69.61904,-17.62331],[-69.66595,-17.66016],[-69.68525,-17.65847],[-69.74575,-17.65073],[-69.79654,-17.64719],[-69.81894,-17.69357],[-69.8252,-17.70543],[-69.82251,-17.72736],[-69.82145,-17.74471],[-69.81083,-17.7539],[-69.80005,-17.76245],[-69.80281,-17.78908],[-69.80164,-17.81294],[-69.8008,-17.83811],[-69.79927,-17.86591],[-69.78041,-17.91186],[-69.75081,-17.94705],[-69.75539,-17.9889],[-69.77492,-18.02971],[-69.79099,-18.06296],[-69.8166,-18.1166],[-69.86004,-18.1702],[-69.90597,-18.2025],[-69.96728,-18.2626],[-69.985,-18.26987],[-70.0391,-18.26957],[-70.05114,-18.26977],[-70.0795,-18.28521],[-70.10992,-18.30083],[-70.14952,-18.31976],[-70.1985,-18.32248],[-70.22928,-18.31777],[-70.25655,-18.31289],[-70.28142,-18.30942],[-70.29831,-18.30892],[-70.30846,-18.30965],[-70.31782,-18.3113],[-70.32668,-18.31336],[-70.33579,-18.31696],[-70.34481,-18.32141],[-70.35178,-18.32571],[-70.35784,-18.33032],[-70.36443,-18.33612],[-70.37075,-18.3429],[-70.37624,-18.35016],[-70.37988,-18.35],[-72,-20],[-120,-20],[-120,-12],[-130,-12],[-130,4]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central Zone of South America","cq_zone_number":11,"cq_zone_name_loc":[-9,-45]},"geometry":{"type":"Polygon","coordinates":[[[-26,5],[-51.66667,5],[-51.66667,4.45833],[-51.62045,4.22076],[-51.61955,4.15839],[-51.66261,4.05219],[-51.77158,3.97886],[-51.80366,3.87266],[-51.88379,3.80482],[-51.91449,3.7863],[-51.92091,3.72702],[-51.95755,3.72804],[-51.99236,3.6369],[-52.23245,3.24215],[-52.26612,3.25547],[-52.302,3.21698],[-52.29797,3.1758],[-52.32689,3.16752],[-52.34922,3.12345],[-52.3268,3.07565],[-52.38769,2.94339],[-52.38243,2.90743],[-52.41562,2.89342],[-52.5429,2.63986],[-52.53102,2.57168],[-52.6034,2.47095],[-52.65381,2.38668],[-52.84252,2.27852],[-52.92961,2.17035],[-53.03207,2.17202],[-53.09334,2.2176],[-53.28179,2.19074],[-53.23404,2.26131],[-53.32912,2.34561],[-53.47806,2.25622],[-53.74944,2.31003],[-53.72694,2.34738],[-53.75884,2.37267],[-53.82361,2.33377],[-53.81147,2.31134],[-53.88059,2.3049],[-53.88698,2.27007],[-53.93272,2.27725],[-53.9418,2.22574],[-54.0149,2.1831],[-54.06053,2.17889],[-54.11715,2.10332],[-54.19811,2.17309],[-54.26258,2.1413],[-54.35309,2.17654],[-54.3612,2.20904],[-54.41325,2.19762],[-54.53906,2.26172],[-54.54899,2.32955],[-54.6073,2.3225],[-54.69276,2.32445],[-54.71077,2.37757],[-54.69307,2.41423],[-54.69177,2.46411],[-54.75639,2.47558],[-54.8417,2.4107],[-54.96545,2.55985],[-54.93532,2.58779],[-54.93814,2.62669],[-55.07494,2.53644],[-55.12081,2.5228],[-55.12824,2.56951],[-55.18153,2.55869],[-55.19225,2.51081],[-55.25516,2.49313],[-55.31506,2.5236],[-55.36354,2.46887],[-55.34611,2.43609],[-55.38266,2.40894],[-55.42196,2.43531],[-55.49971,2.43972],[-55.72006,2.40522],[-55.76374,2.42183],[-55.77721,2.46039],[-55.83161,2.46617],[-55.94591,2.53261],[-55.98307,2.51011],[-56.00924,2.4492],[-55.99175,2.42163],[-56.02919,2.36661],[-56.04365,2.32792],[-56.08355,2.37129],[-56.1388,2.26484],[-56.04446,2.22931],[-56.04673,2.17587],[-55.99957,2.16634],[-55.9684,2.08689],[-55.94458,2.09109],[-55.90428,2.0349],[-55.93196,1.98762],[-55.9047,1.90741],[-55.93259,1.87326],[-55.99661,1.83789],[-56.05642,1.85807],[-56.08221,1.84894],[-56.11349,1.85628],[-56.13103,1.86156],[-56.15682,1.89429],[-56.17544,1.90486],[-56.1865,1.89003],[-56.23602,1.9054],[-56.24441,1.8785],[-56.32849,1.93311],[-56.36186,1.9351],[-56.40074,1.92062],[-56.42862,1.94457],[-56.45377,1.95204],[-56.48104,1.94847],[-56.50282,1.93117],[-56.57954,1.90152],[-56.60141,1.92787],[-56.62329,1.94049],[-56.66361,1.90466],[-56.72591,1.92374],[-56.79557,1.84933],[-56.80005,1.8669],[-56.82376,1.88447],[-56.85744,1.88941],[-56.90211,1.89984],[-56.90797,1.91878],[-56.92206,1.92674],[-56.97295,1.91877],[-56.97715,1.90257],[-57.00606,1.90834],[-57.04871,1.93606],[-57.07004,1.9561],[-57.07763,2.00084],[-57.09831,2.01346],[-57.1376,2.0044],[-57.1696,1.97516],[-57.19886,1.96789],[-57.21988,1.95718],[-57.24914,1.93],[-57.28664,1.97419],[-57.32964,1.97995],[-57.3576,1.95305],[-57.38281,1.9179],[-57.40803,1.90884],[-57.43325,1.89154],[-57.46121,1.82483],[-57.49192,1.78282],[-57.53087,1.70375],[-57.55883,1.68508],[-57.59676,1.68831],[-57.63882,1.67918],[-57.74421,1.70827],[-57.78814,1.70409],[-57.79964,1.69703],[-57.80565,1.68037],[-57.83277,1.66489],[-57.87463,1.65926],[-57.93573,1.62892],[-57.96625,1.64442],[-57.98509,1.651],[-57.99065,1.64056],[-57.98523,1.58482],[-58.00116,1.54473],[-58.0028,1.51259],[-58.01687,1.50428],[-58.03643,1.50009],[-58.07624,1.50407],[-58.1325,1.4983],[-58.14571,1.50547],[-58.14657,1.52362],[-58.15102,1.55169],[-58.1875,1.55425],[-58.2226,1.54994],[-58.24672,1.5573],[-58.26534,1.56741],[-58.29572,1.56223],[-58.31228,1.59052],[-58.32061,1.59548],[-58.33176,1.58996],[-58.33742,1.56109],[-58.3575,1.54664],[-58.37964,1.54317],[-58.38846,1.52105],[-58.37742,1.49283],[-58.38973,1.46667],[-58.42813,1.4556],[-58.47889,1.46033],[-58.49051,1.45819],[-58.49801,1.45056],[-58.50399,1.43971],[-58.5086,1.42886],[-58.50451,1.40753],[-58.49425,1.39237],[-58.47098,1.35657],[-58.46563,1.32341],[-58.47676,1.2978],[-58.49476,1.27219],[-58.5032,1.26338],[-58.51234,1.27037],[-58.52168,1.26717],[-58.5184,1.25392],[-58.52499,1.25047],[-58.53021,1.26487],[-58.53997,1.26345],[-58.54149,1.28229],[-58.55056,1.2874],[-58.55779,1.2821],[-58.56777,1.28985],[-58.57259,1.28283],[-58.57948,1.27856],[-58.57814,1.26967],[-58.58711,1.25804],[-58.59281,1.26717],[-58.60607,1.27013],[-58.62036,1.27995],[-58.6319,1.28084],[-58.64121,1.27848],[-58.65464,1.28023],[-58.67292,1.27379],[-58.68077,1.28129],[-58.6845,1.29291],[-58.7002,1.29145],[-58.71225,1.28453],[-58.71882,1.26389],[-58.72401,1.24256],[-58.71958,1.23085],[-58.74034,1.19633],[-58.75274,1.20521],[-58.76377,1.19349],[-58.77479,1.17902],[-58.78445,1.18378],[-58.79822,1.18168],[-58.80101,1.1727],[-58.80791,1.17609],[-58.82444,1.16437],[-58.8294,1.16895],[-58.82708,1.17605],[-58.82888,1.18315],[-58.85668,1.17447],[-58.85615,1.18523],[-58.86001,1.18649],[-58.86112,1.19874],[-58.87107,1.19967],[-58.87226,1.20974],[-58.87757,1.21982],[-58.88847,1.22417],[-58.90074,1.22303],[-58.91155,1.23173],[-58.90484,1.23769],[-58.90364,1.24639],[-58.89213,1.25029],[-58.89161,1.25556],[-58.89897,1.27193],[-58.91501,1.27532],[-58.92557,1.28419],[-58.91439,1.30262],[-58.92108,1.31007],[-58.95797,1.30963],[-58.97023,1.30735],[-58.9825,1.29409],[-58.98987,1.31492],[-58.99586,1.31929],[-59.0125,1.31661],[-59.02639,1.32355],[-59.04783,1.31744],[-59.0661,1.33086],[-59.07614,1.32506],[-59.09568,1.33825],[-59.10619,1.34196],[-59.11807,1.33743],[-59.13223,1.34484],[-59.15093,1.3432],[-59.16053,1.35185],[-59.17699,1.35364],[-59.18247,1.36298],[-59.1907,1.3682],[-59.19893,1.37149],[-59.21265,1.36655],[-59.22775,1.36903],[-59.23391,1.37768],[-59.24661,1.38063],[-59.27991,1.40418],[-59.27566,1.41285],[-59.28927,1.438],[-59.28572,1.4453],[-59.30688,1.46221],[-59.31363,1.46172],[-59.31626,1.45574],[-59.32701,1.45338],[-59.32964,1.46799],[-59.32129,1.47711],[-59.32941,1.49241],[-59.32867,1.5028],[-59.33342,1.51045],[-59.35424,1.51329],[-59.36081,1.51022],[-59.3619,1.50167],[-59.3833,1.50103],[-59.37807,1.50851],[-59.38507,1.515],[-59.38384,1.52424],[-59.39372,1.52898],[-59.39811,1.53784],[-59.3937,1.54995],[-59.40385,1.55257],[-59.41538,1.54695],[-59.42882,1.55769],[-59.43058,1.56842],[-59.42823,1.57778],[-59.44236,1.59675],[-59.44825,1.61572],[-59.46465,1.61248],[-59.48518,1.62296],[-59.49441,1.63816],[-59.49353,1.66017],[-59.49953,1.67257],[-59.50441,1.67139],[-59.51066,1.66472],[-59.51417,1.67727],[-59.52593,1.6857],[-59.53363,1.70394],[-59.5331,1.71668],[-59.54321,1.71502],[-59.55195,1.72158],[-59.57629,1.73335],[-59.60475,1.7204],[-59.61536,1.71295],[-59.62735,1.72174],[-59.63523,1.73878],[-59.65135,1.73934],[-59.66198,1.73441],[-59.66881,1.75063],[-59.69075,1.7545],[-59.69217,1.75872],[-59.68466,1.76843],[-59.6854,1.78397],[-59.67858,1.79265],[-59.67829,1.80184],[-59.67388,1.80623],[-59.665,1.80924],[-59.65715,1.80814],[-59.6566,1.81218],[-59.65948,1.81829],[-59.65015,1.83736],[-59.65093,1.84785],[-59.6575,1.85378],[-59.66158,1.86235],[-59.66565,1.86475],[-59.66839,1.85904],[-59.66701,1.84373],[-59.67044,1.83643],[-59.67678,1.83416],[-59.69137,1.84561],[-59.70115,1.84917],[-59.70887,1.85032],[-59.71663,1.84807],[-59.72302,1.84856],[-59.73512,1.84509],[-59.74489,1.84775],[-59.75226,1.85898],[-59.75003,1.87022],[-59.74523,1.87535],[-59.7528,1.88734],[-59.75693,1.89728],[-59.75351,1.90652],[-59.75232,1.91749],[-59.74427,1.92639],[-59.7448,1.9353],[-59.73778,1.94969],[-59.73982,1.95679],[-59.73568,1.96319],[-59.7377,1.96915],[-59.73595,1.97716],[-59.73077,1.98174],[-59.73344,1.98644],[-59.73337,2.00281],[-59.73107,2.00768],[-59.73472,2.01424],[-59.73289,2.0201],[-59.72372,2.02258],[-59.72142,2.02711],[-59.73153,2.03333],[-59.73273,2.04642],[-59.73701,2.05058],[-59.73709,2.0561],[-59.74057,2.06675],[-59.74404,2.0719],[-59.73407,2.09053],[-59.72273,2.09886],[-59.72323,2.12147],[-59.72923,2.12177],[-59.72407,2.13302],[-59.72801,2.13453],[-59.73032,2.1418],[-59.73813,2.14907],[-59.73796,2.15847],[-59.7419,2.16512],[-59.7382,2.17561],[-59.73863,2.18198],[-59.73467,2.18237],[-59.73638,2.18933],[-59.72605,2.20325],[-59.72832,2.21649],[-59.73196,2.22286],[-59.73101,2.23217],[-59.7195,2.23639],[-59.72185,2.24644],[-59.72009,2.25033],[-59.72519,2.25421],[-59.72824,2.26427],[-59.72188,2.27501],[-59.73807,2.29047],[-59.75303,2.28723],[-59.76937,2.29359],[-59.77978,2.28404],[-59.79666,2.29453],[-59.80259,2.29921],[-59.80304,2.30527],[-59.8139,2.3155],[-59.82476,2.32024],[-59.83002,2.32835],[-59.84227,2.31962],[-59.84565,2.33034],[-59.85453,2.33146],[-59.85295,2.33869],[-59.86764,2.34766],[-59.87368,2.36148],[-59.88109,2.35198],[-59.89674,2.36031],[-59.91016,2.3912],[-59.89764,2.40184],[-59.89748,2.41248],[-59.89757,2.4226],[-59.88943,2.42861],[-59.89923,2.44062],[-59.89273,2.46328],[-59.89853,2.47305],[-59.89608,2.47871],[-59.91081,2.49398],[-59.91867,2.50924],[-59.91714,2.52503],[-59.93742,2.55249],[-59.92856,2.56624],[-59.93822,2.58308],[-59.9685,2.59306],[-59.97163,2.60008],[-59.96377,2.60985],[-59.95631,2.60743],[-59.96258,2.6153],[-59.95924,2.62179],[-59.96903,2.62999],[-59.97607,2.64229],[-59.96855,2.66135],[-59.97577,2.67224],[-59.98437,2.67628],[-59.99471,2.7022],[-59.98652,2.92592],[-59.95222,2.98292],[-59.95362,3.08381],[-59.90561,3.1567],[-59.91182,3.21234],[-59.88746,3.22645],[-59.82833,3.33366],[-59.83237,3.35313],[-59.80199,3.35779],[-59.81609,3.42371],[-59.8405,3.43411],[-59.80279,3.49672],[-59.80883,3.51312],[-59.82997,3.52266],[-59.84493,3.55311],[-59.86951,3.56025],[-59.84579,3.60288],[-59.76646,3.62837],[-59.74733,3.65593],[-59.72409,3.6643],[-59.70496,3.68467],[-59.6673,3.70641],[-59.67436,3.75673],[-59.66838,3.78239],[-59.58756,3.80634],[-59.58835,3.88682],[-59.51498,3.94539],[-59.58318,3.99992],[-59.65139,4.0709],[-59.61935,4.13297],[-59.64813,4.14698],[-59.6673,4.14455],[-59.68647,4.14828],[-59.718,4.16572],[-59.72979,4.18315],[-59.72647,4.18962],[-59.73906,4.21011],[-59.73312,4.22129],[-59.73817,4.23658],[-59.70913,4.26442],[-59.71384,4.27423],[-59.73091,4.27171],[-59.72875,4.28906],[-59.7105,4.308],[-59.70045,4.30829],[-59.70413,4.31953],[-59.68927,4.33419],[-59.67578,4.34475],[-59.68293,4.36482],[-59.66812,4.3712],[-59.68218,4.38318],[-59.69349,4.37872],[-59.71681,4.39856],[-59.73461,4.42181],[-59.75097,4.42176],[-59.78233,4.44494],[-59.79512,4.44994],[-59.7928,4.46315],[-59.80326,4.46836],[-59.81046,4.44728],[-59.82658,4.44879],[-59.83172,4.45578],[-59.86209,4.45243],[-59.8705,4.46003],[-59.86259,4.4725],[-59.89862,4.4788],[-59.90307,4.45841],[-59.91603,4.46422],[-59.91182,4.47825],[-59.92881,4.48234],[-59.9257,4.48916],[-59.96893,4.50827],[-59.97268,4.48871],[-59.96956,4.48009],[-60.00693,4.49453],[-60.03193,4.49117],[-60.06959,4.49677],[-60.06465,4.52266],[-60.0762,4.52527],[-60.08395,4.51771],[-60.0871,4.53545],[-60.10575,4.52439],[-60.09706,4.51117],[-60.11926,4.50273],[-60.1346,4.51278],[-60.15955,4.51462],[-60.15222,4.54981],[-60.16001,4.56174],[-60.1481,4.58011],[-60.14696,4.57184],[-60.1362,4.56494],[-60.13632,4.58168],[-60.12133,4.57789],[-60.13037,4.596],[-60.12156,4.60316],[-60.09536,4.60714],[-60.06915,4.6166],[-60.07476,4.63638],[-60.06727,4.64696],[-60.07488,4.65753],[-60.04479,4.69101],[-60.02431,4.70395],[-60.02522,4.71487],[-60.03392,4.71964],[-60.03713,4.72852],[-60.02385,4.74215],[-60.02159,4.78149],[-60.03444,4.78935],[-60.03198,4.80507],[-60.02197,4.80985],[-60.02569,4.82009],[-60.0218,4.83751],[-60.01173,4.84056],[-60.00157,4.90946],[-59.98867,4.9551],[-59.98813,4.99526],[-59.98347,5.01901],[-59.97758,5.01999],[-59.97601,5.04442],[-59.96894,5.07296],[-59.98621,5.08116],[-60.01927,5.088],[-60.03595,5.10578],[-60.04597,5.10851],[-60.06464,5.13448],[-60.07725,5.13856],[-60.08899,5.14581],[-60.10072,5.18864],[-60.10909,5.2011],[-60.12994,5.24929],[-60.1541,5.23235],[-60.17689,5.23045],[-60.20736,5.27383],[-60.22763,5.25923],[-60.25477,5.24737],[-60.29083,5.21807],[-60.32003,5.20108],[-60.34069,5.20423],[-60.36828,5.19276],[-60.37609,5.21562],[-60.40269,5.21212],[-60.43897,5.17698],[-60.46427,5.19381],[-60.49358,5.19396],[-60.51807,5.20263],[-60.54943,5.18532],[-60.57976,5.19433],[-60.59911,5.2136],[-60.62406,5.21111],[-60.64787,5.22047],[-60.68815,5.22845],[-60.70837,5.21641],[-60.72171,5.20983],[-60.73879,5.19941],[-60.736,5.18822],[-60.70711,5.1866],[-60.68093,5.17105],[-60.66717,5.1416],[-60.66303,5.11216],[-60.64925,5.09635],[-60.65058,5.06139],[-60.64367,5.04148],[-60.59552,4.99892],[-60.59067,4.97867],[-60.59392,4.97292],[-60.58755,4.95349],[-60.59355,4.94364],[-60.59268,4.92832],[-60.6104,4.92529],[-60.6227,4.90839],[-60.62813,4.89148],[-60.65258,4.8827],[-60.64524,4.87318],[-60.65713,4.85955],[-60.65756,4.85146],[-60.67352,4.84142],[-60.67574,4.83138],[-60.68569,4.82705],[-60.68602,4.82134],[-60.70934,4.8072],[-60.72855,4.79031],[-60.72022,4.78026],[-60.73659,4.77381],[-60.75159,4.75779],[-60.76286,4.76072],[-60.8071,4.7486],[-60.81562,4.73033],[-60.83239,4.72847],[-60.8522,4.70475],[-60.87681,4.71661],[-60.89994,4.7198],[-60.91322,4.70155],[-60.90864,4.69082],[-60.91734,4.66664],[-60.92776,4.66265],[-60.94573,4.65797],[-60.95118,4.64443],[-60.93948,4.63705],[-60.93323,4.62023],[-60.94132,4.60028],[-60.93431,4.59745],[-60.9328,4.5864],[-60.94281,4.58072],[-60.95558,4.58463],[-60.95157,4.56233],[-60.95718,4.54825],[-60.9821,4.54388],[-60.99465,4.53062],[-60.99367,4.52051],[-61.01574,4.51947],[-61.05291,4.52801],[-61.08115,4.52013],[-61.09114,4.52418],[-61.096,4.50901],[-61.11286,4.51271],[-61.12421,4.50958],[-61.13045,4.49783],[-61.16834,4.50547],[-61.17492,4.51443],[-61.18699,4.52339],[-61.20144,4.52374],[-61.21452,4.53093],[-61.22141,4.52512],[-61.24616,4.53437],[-61.25308,4.53096],[-61.26825,4.5385],[-61.27523,4.52895],[-61.28358,4.53719],[-61.30327,4.54005],[-61.3193,4.5348],[-61.32972,4.52671],[-61.31885,4.50218],[-61.30935,4.50572],[-61.29445,4.49292],[-61.29328,4.48148],[-61.28249,4.47484],[-61.29014,4.46878],[-61.28406,4.45587],[-61.29697,4.46044],[-61.30617,4.45108],[-61.32361,4.4472],[-61.31783,4.43443],[-61.33883,4.42918],[-61.34472,4.42119],[-61.37042,4.4273],[-61.4016,4.42793],[-61.40827,4.43441],[-61.42318,4.4354],[-61.43396,4.4275],[-61.4475,4.42508],[-61.43628,4.43786],[-61.4462,4.44168],[-61.46024,4.43865],[-61.46223,4.42848],[-61.49574,4.41156],[-61.5133,4.40922],[-61.51729,4.38997],[-61.52127,4.37414],[-61.51138,4.35343],[-61.52319,4.34488],[-61.51934,4.32915],[-61.50341,4.32096],[-61.52483,4.29718],[-61.52084,4.29051],[-61.52922,4.28932],[-61.54721,4.26896],[-61.54775,4.26146],[-61.59004,4.24601],[-61.60693,4.26273],[-61.61832,4.25344],[-61.62421,4.2551],[-61.6312,4.24268],[-61.63818,4.24121],[-61.64666,4.26019],[-61.66888,4.26684],[-61.67807,4.25783],[-61.70059,4.259],[-61.72365,4.24763],[-61.7272,4.25502],[-61.72113,4.26104],[-61.72056,4.27117],[-61.73659,4.26541],[-61.73338,4.26103],[-61.77545,4.25044],[-61.76326,4.23711],[-61.78146,4.22552],[-61.78937,4.23173],[-61.79727,4.22973],[-61.80966,4.20391],[-61.82136,4.20411],[-61.81521,4.19336],[-61.8167,4.17774],[-61.81551,4.1672],[-61.83139,4.16467],[-61.84728,4.16762],[-61.85313,4.17667],[-61.86448,4.17819],[-61.87445,4.17286],[-61.86902,4.16251],[-61.87191,4.1555],[-61.89552,4.16476],[-61.92086,4.16067],[-61.9222,4.14595],[-61.92903,4.12165],[-61.93646,4.13484],[-61.94801,4.13434],[-61.96974,4.16346],[-61.9798,4.16519],[-61.98024,4.18472],[-61.98948,4.18113],[-62.00147,4.16658],[-62.02613,4.15391],[-62.0315,4.16146],[-62.04636,4.15462],[-62.06235,4.16151],[-62.07249,4.15555],[-62.0785,4.14548],[-62.06786,4.13083],[-62.07818,4.12206],[-62.08646,4.12782],[-62.09614,4.12838],[-62.09552,4.12278],[-62.10532,4.11761],[-62.10825,4.12203],[-62.11687,4.11718],[-62.11028,4.09203],[-62.1387,4.08605],[-62.14241,4.07734],[-62.15954,4.09157],[-62.18596,4.09731],[-62.20552,4.11265],[-62.21427,4.11212],[-62.23401,4.12117],[-62.24482,4.11995],[-62.24601,4.12969],[-62.25648,4.12951],[-62.26695,4.13479],[-62.2781,4.13255],[-62.29475,4.14537],[-62.29604,4.13963],[-62.31243,4.13936],[-62.31637,4.14568],[-62.33336,4.1472],[-62.35035,4.15557],[-62.3524,4.16851],[-62.36019,4.17367],[-62.36523,4.16651],[-62.3895,4.18058],[-62.40026,4.17803],[-62.41789,4.18643],[-62.42846,4.18382],[-62.43546,4.17634],[-62.44657,4.18257],[-62.44808,4.17852],[-62.46332,4.18132],[-62.46888,4.16808],[-62.4538,4.16146],[-62.46208,4.15484],[-62.45946,4.14617],[-62.47841,4.13482],[-62.49255,4.14538],[-62.50985,4.14732],[-62.50776,4.13422],[-62.53109,4.13965],[-62.52008,4.12591],[-62.52413,4.11613],[-62.55146,4.11165],[-62.54294,4.09996],[-62.54885,4.09716],[-62.55475,4.08341],[-62.55069,4.07856],[-62.5384,4.0833],[-62.54259,4.06201],[-62.53167,4.05169],[-62.53631,4.04372],[-62.54619,4.04932],[-62.56143,4.03842],[-62.56156,4.03163],[-62.55147,4.02005],[-62.57845,4.01668],[-62.57886,4.02913],[-62.60852,4.0458],[-62.62938,4.0449],[-62.64165,4.04811],[-62.65735,4.04722],[-62.65717,4.03722],[-62.67603,4.04188],[-62.69215,4.0342],[-62.73161,4.0416],[-62.75351,4.03419],[-62.74854,4.02519],[-62.76692,4.01277],[-62.76204,3.98772],[-62.74067,3.97912],[-62.75111,3.96574],[-62.76428,3.94003],[-62.7824,3.93656],[-62.78335,3.92007],[-62.78568,3.91729],[-62.78758,3.89528],[-62.77598,3.88252],[-62.77537,3.87661],[-62.75492,3.86067],[-62.75317,3.8514],[-62.77094,3.83766],[-62.73691,3.80955],[-62.72623,3.8061],[-62.72986,3.79841],[-62.73897,3.79073],[-62.73299,3.78133],[-62.73799,3.76919],[-62.73906,3.75107],[-62.73326,3.73981],[-62.73205,3.70708],[-62.73512,3.69097],[-62.74438,3.68652],[-62.74334,3.67863],[-62.75087,3.67246],[-62.75626,3.68058],[-62.76578,3.68458],[-62.7697,3.69396],[-62.78852,3.70312],[-62.79018,3.72051],[-62.80832,3.72419],[-62.81575,3.73292],[-62.83555,3.73617],[-62.84831,3.72161],[-62.85282,3.71528],[-62.87225,3.70252],[-62.88069,3.6925],[-62.88638,3.68864],[-62.88795,3.68205],[-62.90552,3.67246],[-62.92102,3.67931],[-62.91966,3.67178],[-62.92242,3.66424],[-62.92245,3.65191],[-62.94067,3.62416],[-62.95184,3.61302],[-62.96027,3.60874],[-62.99208,3.61113],[-63.01072,3.63939],[-63.01573,3.64543],[-63.02486,3.65147],[-63.03075,3.66492],[-63.04826,3.67184],[-63.06165,3.6815],[-63.07298,3.68568],[-63.08157,3.69397],[-63.06784,3.69631],[-63.06236,3.70509],[-63.06239,3.73772],[-63.05832,3.73994],[-63.05843,3.75125],[-63.06687,3.75167],[-63.08424,3.76923],[-63.08463,3.77694],[-63.12251,3.80469],[-63.13209,3.80091],[-63.15265,3.80536],[-63.16562,3.80398],[-63.17622,3.81151],[-63.19369,3.81356],[-63.20666,3.81081],[-63.22478,3.83563],[-63.23055,3.84949],[-63.23314,3.88131],[-63.22269,3.89601],[-63.21128,3.93213],[-63.204,3.95181],[-63.21714,3.95072],[-63.24676,3.95373],[-63.25107,3.96113],[-63.26636,3.96031],[-63.28166,3.95401],[-63.2841,3.96402],[-63.28791,3.97128],[-63.31277,3.98115],[-63.31634,3.97185],[-63.31167,3.96117],[-63.32774,3.9638],[-63.33969,3.95683],[-63.36977,3.96345],[-63.39161,3.98103],[-63.41551,3.97601],[-63.42843,3.97647],[-63.4522,3.95614],[-63.439,3.94875],[-63.44228,3.93862],[-63.43595,3.93465],[-63.41768,3.93472],[-63.41953,3.92311],[-63.41039,3.91287],[-63.41864,3.89959],[-63.43238,3.89226],[-63.43788,3.88219],[-63.43308,3.87678],[-63.43653,3.86589],[-63.45249,3.85665],[-63.46918,3.86359],[-63.47214,3.86916],[-63.48493,3.87618],[-63.49633,3.86766],[-63.50085,3.86668],[-63.49412,3.84827],[-63.49987,3.84022],[-63.50337,3.85054],[-63.51236,3.84853],[-63.52074,3.85547],[-63.532,3.85838],[-63.53942,3.86558],[-63.54876,3.8649],[-63.55371,3.87313],[-63.554,3.89233],[-63.57106,3.88416],[-63.59282,3.88835],[-63.58272,3.89916],[-63.59254,3.90587],[-63.58745,3.91927],[-63.59271,3.93135],[-63.6062,3.94344],[-63.6245,3.96785],[-63.63639,3.97732],[-63.64279,3.97857],[-63.65227,4.00411],[-63.67822,4.02006],[-63.68868,4.01606],[-63.68747,3.99836],[-63.6974,3.95748],[-63.70135,3.94689],[-63.69156,3.93493],[-63.6816,3.93567],[-63.67266,3.92482],[-63.66302,3.9223],[-63.68328,3.90741],[-63.69598,3.91306],[-63.70902,3.91342],[-63.71313,3.90317],[-63.72546,3.91555],[-63.73503,3.91428],[-63.74395,3.9209],[-63.73913,3.93026],[-63.75621,3.94159],[-63.76612,3.93629],[-63.77191,3.93922],[-63.79508,3.93448],[-63.81834,3.9417],[-63.83473,3.9407],[-63.83692,3.94482],[-63.8494,3.94963],[-63.85927,3.94829],[-63.87017,3.93744],[-63.89068,3.93207],[-63.90149,3.93504],[-63.9147,3.92705],[-63.92517,3.9259],[-63.93688,3.91795],[-63.9383,3.90108],[-63.94662,3.90024],[-63.95091,3.8876],[-63.95811,3.88971],[-63.96291,3.87064],[-63.97951,3.90156],[-63.98504,3.89661],[-63.99743,3.90263],[-63.99887,3.92426],[-64.01273,3.93668],[-64.04032,3.95185],[-64.07186,4.01153],[-64.08832,4.02905],[-64.09104,4.03698],[-64.08207,4.0453],[-64.09338,4.07274],[-64.09354,4.07893],[-64.10743,4.10293],[-64.14601,4.11912],[-64.15781,4.13531],[-64.17882,4.1208],[-64.21218,4.12],[-64.22361,4.12707],[-64.24191,4.13415],[-64.25369,4.12924],[-64.26271,4.13391],[-64.26449,4.14852],[-64.28138,4.14736],[-64.29188,4.13515],[-64.30651,4.13526],[-64.32586,4.13159],[-64.37708,4.14225],[-64.38847,4.13648],[-64.40576,4.13726],[-64.42586,4.13929],[-64.4487,4.12489],[-64.49266,4.11749],[-64.49894,4.1206],[-64.50213,4.11532],[-64.51262,4.11845],[-64.54326,4.11573],[-64.55578,4.10447],[-64.58048,4.11243],[-64.61617,4.13272],[-64.6272,4.14197],[-64.63958,4.17742],[-64.65333,4.21012],[-64.67539,4.24027],[-64.69753,4.25401],[-64.72439,4.26123],[-64.74987,4.27529],[-64.78712,4.28834],[-64.81282,4.26992],[-64.8193,4.25424],[-64.81396,4.20462],[-64.80449,4.17692],[-64.78156,4.15674],[-64.75177,4.14204],[-64.72789,4.12564],[-64.71791,4.11112],[-64.70399,4.07304],[-64.69282,4.05551],[-64.67561,4.04565],[-64.67061,4.03371],[-64.6711,4.02313],[-64.65676,3.9925],[-64.63143,3.9605],[-64.60953,3.94665],[-64.58626,3.93143],[-64.57207,3.91785],[-64.56155,3.89805],[-64.54416,3.8577],[-64.51967,3.84412],[-64.47986,3.79313],[-64.45905,3.78311],[-64.43703,3.78937],[-64.41433,3.78399],[-64.40587,3.77488],[-64.36696,3.76107],[-64.35369,3.74937],[-64.32668,3.73905],[-64.3235,3.72905],[-64.28004,3.70905],[-64.27092,3.66919],[-64.25073,3.66095],[-64.23328,3.63079],[-64.21309,3.61604],[-64.18465,3.58896],[-64.17117,3.56286],[-64.17648,3.50913],[-64.18899,3.48854],[-64.22484,3.45835],[-64.24437,3.43292],[-64.24497,3.41291],[-64.22874,3.40044],[-64.22213,3.38935],[-64.22657,3.37552],[-64.23101,3.3425],[-64.23096,3.31896],[-64.20139,3.24881],[-64.20481,3.23059],[-64.19725,3.1918],[-64.22881,3.1293],[-64.22293,3.11399],[-64.18291,3.08233],[-64.16633,3.07062],[-64.15187,3.04008],[-64.14564,3.0356],[-64.14459,3.02263],[-64.15933,3.00623],[-64.15722,2.98303],[-64.14724,2.98155],[-64.13452,2.99241],[-64.12349,2.98944],[-64.10448,2.97231],[-64.10769,2.95998],[-64.10539,2.95038],[-64.09875,2.94903],[-64.092,2.93737],[-64.09211,2.92984],[-64.06829,2.91892],[-64.07557,2.89984],[-64.06981,2.89927],[-64.06679,2.88636],[-64.07999,2.87356],[-64.0616,2.86625],[-64.05314,2.85574],[-64.03919,2.82946],[-64.02672,2.8249],[-64.01426,2.8121],[-64.01827,2.79245],[-64.01275,2.78445],[-64.01409,2.77507],[-63.99759,2.77325],[-63.9962,2.75999],[-64.00168,2.75496],[-63.99977,2.7365],[-63.99517,2.73223],[-63.97959,2.72796],[-63.98117,2.71478],[-63.99158,2.71573],[-63.99472,2.70934],[-64.00198,2.7057],[-63.99423,2.68794],[-63.98418,2.68728],[-63.99083,2.66706],[-63.98385,2.65833],[-63.98997,2.63715],[-64.00434,2.62558],[-64.01013,2.61428],[-64.00905,2.60298],[-64.02474,2.58724],[-64.02602,2.57698],[-64.03902,2.57871],[-64.04378,2.57221],[-64.04591,2.56333],[-64.04354,2.54928],[-64.04667,2.54896],[-64.04396,2.53045],[-64.04949,2.52018],[-64.05846,2.50579],[-64.05643,2.49415],[-64.04266,2.49531],[-64.03629,2.48514],[-64.0313,2.48183],[-64.02769,2.47166],[-64.0172,2.46149],[-64.00473,2.48109],[-63.97647,2.46433],[-63.96675,2.46679],[-63.95977,2.47335],[-63.95131,2.45905],[-63.93816,2.46013],[-63.93187,2.45572],[-63.92113,2.47033],[-63.9034,2.46872],[-63.89116,2.46436],[-63.88158,2.46781],[-63.86789,2.48086],[-63.84324,2.49187],[-63.83425,2.48322],[-63.81564,2.4828],[-63.81626,2.48032],[-63.80833,2.47153],[-63.79819,2.4788],[-63.796,2.47445],[-63.79655,2.45911],[-63.77376,2.45064],[-63.77266,2.44023],[-63.7592,2.44217],[-63.74634,2.43832],[-63.73648,2.44326],[-63.73485,2.44957],[-63.72817,2.44915],[-63.72149,2.4405],[-63.71124,2.44432],[-63.71058,2.44897],[-63.69344,2.45363],[-63.68388,2.43961],[-63.65309,2.43833],[-63.6447,2.44179],[-63.63494,2.43701],[-63.62244,2.44252],[-63.61756,2.43841],[-63.61325,2.44425],[-63.60482,2.44597],[-63.60444,2.45078],[-63.59605,2.45173],[-63.5904,2.44719],[-63.56675,2.43949],[-63.56507,2.44551],[-63.5579,2.44055],[-63.55736,2.41729],[-63.54805,2.42292],[-63.52528,2.41701],[-63.50663,2.42482],[-63.50229,2.42123],[-63.49498,2.43053],[-63.49042,2.41924],[-63.48449,2.42854],[-63.47467,2.41648],[-63.47629,2.4029],[-63.46143,2.39619],[-63.4576,2.40706],[-63.45171,2.40627],[-63.44581,2.41372],[-63.4457,2.42449],[-63.43049,2.44349],[-63.42593,2.43718],[-63.42245,2.45237],[-63.41521,2.4339],[-63.40267,2.42261],[-63.39012,2.42503],[-63.37355,2.41015],[-63.3755,2.3816],[-63.36445,2.38208],[-63.36302,2.3757],[-63.3834,2.3495],[-63.38295,2.33756],[-63.36831,2.32054],[-63.37404,2.30585],[-63.36878,2.2994],[-63.37382,2.28952],[-63.36788,2.26866],[-63.37387,2.25986],[-63.37575,2.24283],[-63.38655,2.22786],[-63.38088,2.21014],[-63.39321,2.2042],[-63.40143,2.20238],[-63.404,2.19058],[-63.39557,2.18427],[-63.40207,2.17164],[-63.40134,2.15188],[-63.41356,2.14506],[-63.42852,2.13138],[-63.43648,2.13764],[-63.43825,2.12606],[-63.44414,2.12408],[-63.46137,2.13514],[-63.46898,2.14209],[-63.47596,2.14088],[-63.47641,2.12508],[-63.48488,2.1213],[-63.49323,2.11667],[-63.49747,2.11752],[-63.51166,2.11133],[-63.51663,2.1229],[-63.53859,2.13155],[-63.54511,2.14055],[-63.5518,2.12952],[-63.56639,2.13514],[-63.56579,2.1301],[-63.58578,2.11837],[-63.59007,2.12322],[-63.60261,2.11937],[-63.60415,2.11253],[-63.61685,2.1172],[-63.63469,2.10012],[-63.63111,2.08518],[-63.63645,2.07367],[-63.64866,2.068],[-63.65469,2.07398],[-63.66301,2.06637],[-63.66181,2.02506],[-63.66721,2.01831],[-63.68772,2.02802],[-63.68819,2.04403],[-63.69897,2.04905],[-63.71227,2.04813],[-63.7186,2.03582],[-63.7311,2.029],[-63.73278,2.0181],[-63.74161,2.01827],[-63.7428,2.01037],[-63.74106,2.0028],[-63.75544,1.99726],[-63.76221,2.00403],[-63.77242,1.99914],[-63.78126,1.99013],[-63.78227,1.98291],[-63.7898,1.97944],[-63.79909,1.98949],[-63.80855,1.98765],[-63.8235,1.99542],[-63.82181,1.9866],[-63.82715,1.98151],[-63.83248,1.9819],[-63.83535,1.97132],[-63.83146,1.96662],[-63.84978,1.97096],[-63.85415,1.98375],[-63.86768,1.97502],[-63.87691,1.98089],[-63.88849,1.98166],[-63.8938,1.99211],[-63.90168,1.9931],[-63.90781,1.98549],[-63.92081,1.98268],[-63.9297,1.98399],[-63.94051,1.9906],[-63.94428,1.98322],[-63.95594,1.99181],[-63.96141,1.98839],[-63.97373,1.99117],[-63.98463,1.97751],[-63.99072,1.98306],[-63.99308,1.97486],[-64.00093,1.97352],[-64.0047,1.96416],[-64.00229,1.95754],[-64.01224,1.96054],[-64.01358,1.95467],[-64.03466,1.93466],[-64.05437,1.92974],[-64.06092,1.92441],[-64.05857,1.92072],[-64.06274,1.91532],[-64.05654,1.9109],[-64.06031,1.90552],[-64.05687,1.90377],[-64.06236,1.90116],[-64.05717,1.88323],[-64.06924,1.85234],[-64.06284,1.83956],[-64.05095,1.83502],[-64.05005,1.82224],[-64.05223,1.81836],[-64.05028,1.81174],[-64.05464,1.8026],[-64.05936,1.8045],[-64.05893,1.8016],[-64.06167,1.79956],[-64.06029,1.79753],[-64.06199,1.79454],[-64.05989,1.79198],[-64.06084,1.79031],[-64.06823,1.79176],[-64.07203,1.78747],[-64.07154,1.78455],[-64.0762,1.78231],[-64.07526,1.77766],[-64.07122,1.77781],[-64.06864,1.77332],[-64.06417,1.77222],[-64.06759,1.76659],[-64.06996,1.76768],[-64.07265,1.76437],[-64.07287,1.75912],[-64.07927,1.758],[-64.07983,1.75515],[-64.07669,1.75356],[-64.07663,1.74889],[-64.06592,1.74424],[-64.06666,1.74167],[-64.06466,1.73943],[-64.06408,1.73324],[-64.06591,1.73049],[-64.06808,1.73048],[-64.07345,1.72463],[-64.07193,1.71734],[-64.06618,1.71593],[-64.06628,1.70869],[-64.06098,1.70243],[-64.06312,1.69252],[-64.06938,1.69016],[-64.06603,1.68094],[-64.07323,1.64678],[-64.0861,1.64468],[-64.09965,1.60894],[-64.11184,1.60958],[-64.11166,1.59238],[-64.12462,1.58095],[-64.13621,1.57638],[-64.14496,1.58714],[-64.17207,1.57298],[-64.19624,1.53843],[-64.1915,1.52733],[-64.21835,1.508],[-64.24046,1.50845],[-64.25289,1.49907],[-64.25983,1.4993],[-64.26578,1.4841],[-64.27632,1.48267],[-64.27861,1.47576],[-64.28365,1.47693],[-64.3116,1.45593],[-64.30796,1.44867],[-64.31943,1.44003],[-64.32822,1.42327],[-64.32054,1.40445],[-64.32864,1.4021],[-64.32439,1.39564],[-64.33759,1.389],[-64.34202,1.37435],[-64.33615,1.36451],[-64.34264,1.36291],[-64.35686,1.37692],[-64.35665,1.38819],[-64.36329,1.38843],[-64.36994,1.38318],[-64.38322,1.39053],[-64.38645,1.38601],[-64.4108,1.40457],[-64.40219,1.41146],[-64.40556,1.41838],[-64.39171,1.42673],[-64.39296,1.43989],[-64.38741,1.44372],[-64.38188,1.44426],[-64.37294,1.44934],[-64.37224,1.45716],[-64.37887,1.46356],[-64.36954,1.47546],[-64.35609,1.48324],[-64.34704,1.49605],[-64.34513,1.51894],[-64.3487,1.52948],[-64.36203,1.52173],[-64.37084,1.52544],[-64.38158,1.52052],[-64.39484,1.52852],[-64.40809,1.51318],[-64.41232,1.50002],[-64.41654,1.49784],[-64.43398,1.47027],[-64.44731,1.46946],[-64.45198,1.48021],[-64.48336,1.46268],[-64.48384,1.45546],[-64.50815,1.43689],[-64.52834,1.44441],[-64.52655,1.42859],[-64.53864,1.41473],[-64.55588,1.41425],[-64.57587,1.3774],[-64.58123,1.36171],[-64.57491,1.35701],[-64.57924,1.34157],[-64.58907,1.33711],[-64.60941,1.33917],[-64.61876,1.32819],[-64.6336,1.31721],[-64.64492,1.30075],[-64.67304,1.28705],[-64.68124,1.28707],[-64.69631,1.28161],[-64.70967,1.2655],[-64.71067,1.25214],[-64.71922,1.25114],[-64.72364,1.23916],[-64.73686,1.23199],[-64.74322,1.22757],[-64.7573,1.22697],[-64.7676,1.25461],[-64.77242,1.25221],[-64.79029,1.27213],[-64.78346,1.27901],[-64.78628,1.29827],[-64.79116,1.29763],[-64.80153,1.31345],[-64.82468,1.29191],[-64.85744,1.26968],[-64.85107,1.26255],[-64.86941,1.23346],[-64.87099,1.22438],[-64.88356,1.22904],[-64.88535,1.24109],[-64.89676,1.25108],[-64.90816,1.2501],[-64.90434,1.24369],[-64.90877,1.2318],[-64.91693,1.23479],[-64.91953,1.22154],[-64.93433,1.21289],[-64.9447,1.22169],[-64.97643,1.19946],[-64.96947,1.18124],[-64.97674,1.16154],[-64.98538,1.15556],[-64.99169,1.14704],[-64.99056,1.13825],[-65.00753,1.12751],[-65.01126,1.11017],[-65.02151,1.10847],[-65.03313,1.11845],[-65.05226,1.11643],[-65.06305,1.11239],[-65.06656,1.11998],[-65.06182,1.14131],[-65.07227,1.15237],[-65.08686,1.14329],[-65.10419,1.15481],[-65.11963,1.1449],[-65.1299,1.12645],[-65.15869,1.12523],[-65.16273,1.11745],[-65.15097,1.1083],[-65.15768,1.08312],[-65.15735,1.05199],[-65.16356,1.04602],[-65.16499,1.0286],[-65.17336,1.02258],[-65.1736,1.01604],[-65.16368,1.00827],[-65.14965,1.01012],[-65.14934,1.00372],[-65.16139,0.99733],[-65.1636,0.98273],[-65.16801,0.97277],[-65.17272,0.94186],[-65.1841,0.93109],[-65.19823,0.91346],[-65.21274,0.90154],[-65.21294,0.92645],[-65.2353,0.92546],[-65.24982,0.91798],[-65.2609,0.92492],[-65.27061,0.92363],[-65.27149,0.93408],[-65.27375,0.93903],[-65.28688,0.93278],[-65.29118,0.94085],[-65.30398,0.93974],[-65.31677,0.93314],[-65.32725,0.93504],[-65.34758,0.88916],[-65.35665,0.87978],[-65.35557,0.86651],[-65.37127,0.86332],[-65.3904,0.84022],[-65.39991,0.82124],[-65.41051,0.82358],[-65.41355,0.81533],[-65.39599,0.79336],[-65.40178,0.78065],[-65.39521,0.77343],[-65.40198,0.76929],[-65.39227,0.75967],[-65.39809,0.75031],[-65.41696,0.75057],[-65.41351,0.74009],[-65.42172,0.73236],[-65.42582,0.72326],[-65.43671,0.72393],[-65.44475,0.69232],[-65.45896,0.68385],[-65.48254,0.68236],[-65.50612,0.66851],[-65.52822,0.66759],[-65.54208,0.64882],[-65.55507,0.65297],[-65.55845,0.6681],[-65.56732,0.66882],[-65.56933,0.68189],[-65.5904,0.6923],[-65.60095,0.68977],[-65.60565,0.71094],[-65.58877,0.73251],[-65.57734,0.74786],[-65.57553,0.76183],[-65.56341,0.77237],[-65.55129,0.77605],[-65.54215,0.78748],[-65.55155,0.79343],[-65.53496,0.80258],[-65.52255,0.81951],[-65.52733,0.82386],[-65.52079,0.83153],[-65.51065,0.82918],[-65.50464,0.83919],[-65.50288,0.86934],[-65.49494,0.87408],[-65.50018,0.88328],[-65.51172,0.87758],[-65.51269,0.89533],[-65.50805,0.9035],[-65.51439,0.92265],[-65.52437,0.92332],[-65.52336,0.93086],[-65.53718,0.94177],[-65.53205,0.94699],[-65.53415,0.95467],[-65.54723,0.95618],[-65.54246,0.97073],[-65.55772,0.96783],[-65.56336,0.97179],[-65.56351,0.97851],[-65.55448,0.98956],[-65.57077,0.99588],[-65.58548,0.98243],[-65.58762,1.00425],[-65.59455,0.99723],[-65.62216,1.01341],[-65.63206,1.01144],[-65.63235,1.00191],[-65.627,0.99441],[-65.62852,0.98964],[-65.64282,1.00286],[-65.65988,1.01059],[-65.66767,1.00305],[-65.67912,0.99895],[-65.68556,0.98664],[-65.69568,1.00184],[-65.71953,1.00074],[-65.74476,0.99965],[-65.75158,0.99122],[-65.75291,0.98279],[-65.76243,0.97967],[-65.77324,0.9597],[-65.78764,0.96356],[-65.82659,0.95021],[-65.86143,0.93687],[-65.88234,0.94038],[-65.89053,0.93231],[-65.88914,0.90974],[-65.9135,0.88624],[-65.91453,0.89982],[-65.92654,0.89452],[-65.9413,0.89197],[-65.94291,0.86601],[-65.95414,0.85996],[-65.95302,0.84944],[-65.96837,0.83344],[-65.9666,0.81472],[-65.98063,0.8221],[-65.9974,0.81575],[-66.00983,0.80304],[-66.036,0.81642],[-66.04843,0.81195],[-66.07047,0.81297],[-66.07388,0.80145],[-66.07112,0.79329],[-66.0766,0.78788],[-66.07654,0.76279],[-66.0911,0.75926],[-66.09674,0.76465],[-66.11351,0.76582],[-66.11683,0.75031],[-66.14356,0.74856],[-66.17028,0.76398],[-66.17978,0.76461],[-66.18379,0.77897],[-66.19054,0.78371],[-66.3105,0.74478],[-66.84456,1.22755],[-66.86246,1.22703],[-66.90473,1.21827],[-67.08966,1.16754],[-67.0926,1.17153],[-67.08644,1.17809],[-67.09024,1.18688],[-67.08167,1.1986],[-67.10246,1.24086],[-67.09852,1.24774],[-67.10042,1.25909],[-67.12167,1.2712],[-67.12472,1.28055],[-67.13768,1.29241],[-67.14713,1.31611],[-67.15642,1.32096],[-67.15021,1.35009],[-67.13338,1.34725],[-67.11243,1.33754],[-67.08667,1.35152],[-67.08684,1.36125],[-67.07328,1.36824],[-67.08271,1.38054],[-67.0784,1.39489],[-67.08097,1.40787],[-67.08628,1.41536],[-67.08454,1.44682],[-67.07731,1.45357],[-67.07859,1.47368],[-67.09017,1.4787],[-67.09489,1.49744],[-67.10826,1.50652],[-67.10307,1.51486],[-67.09787,1.54791],[-67.10671,1.57557],[-67.10104,1.58423],[-67.11441,1.5837],[-67.11372,1.59476],[-67.13774,1.6072],[-67.14734,1.60461],[-67.13855,1.62318],[-67.13251,1.63557],[-67.13828,1.66721],[-67.1306,1.68795],[-67.14133,1.70472],[-67.13944,1.74786],[-67.1494,1.74629],[-67.14596,1.77885],[-67.13497,1.78493],[-67.13902,1.79578],[-67.15203,1.80189],[-67.16093,1.81623],[-67.18215,1.81301],[-67.18689,1.82077],[-67.1777,1.83945],[-67.18802,1.85201],[-67.20247,1.84948],[-67.20114,1.85744],[-67.2122,1.86103],[-67.21589,1.87679],[-67.20928,1.88569],[-67.21984,1.89459],[-67.21941,1.92133],[-67.24501,1.93625],[-67.25345,1.92988],[-67.25934,1.92128],[-67.2725,1.92328],[-67.27537,1.93969],[-67.28234,1.93964],[-67.29378,1.9298],[-67.3098,1.92798],[-67.32475,1.94157],[-67.32597,1.95379],[-67.33459,1.98029],[-67.34497,1.9784],[-67.34913,1.99804],[-67.3423,2.02591],[-67.35199,2.02608],[-67.35748,2.03632],[-67.35199,2.04382],[-67.35747,2.0547],[-67.35059,2.06755],[-67.35881,2.0754],[-67.35739,2.0856],[-67.3573,2.11424],[-67.34338,2.12898],[-67.35555,2.14287],[-67.37802,2.14989],[-67.37628,2.16256],[-67.36104,2.17688],[-67.35995,2.18713],[-67.37122,2.19463],[-67.36491,2.22062],[-67.3827,2.22245],[-67.39363,2.22977],[-67.42234,2.22795],[-67.42559,2.21927],[-67.44806,2.21334],[-67.45886,2.19746],[-67.46966,2.18981],[-67.47028,2.1702],[-67.50014,2.16564],[-67.52999,2.15559],[-67.5485,2.15059],[-67.56907,2.16171],[-67.58002,2.15637],[-67.58188,2.13507],[-67.5858,2.12543],[-67.57967,2.10652],[-67.57354,2.10407],[-67.577,2.09462],[-67.58527,2.08859],[-67.58875,2.06899],[-67.59788,2.06332],[-67.60654,2.03963],[-67.62133,2.03723],[-67.64506,2.02864],[-67.65543,2.03069],[-67.65574,2.00596],[-67.66567,1.9977],[-67.67749,2.00863],[-67.68408,2.00175],[-67.69617,2.00172],[-67.70196,2.01124],[-67.72865,2.01106],[-67.73396,2.02718],[-67.74198,2.02837],[-67.74725,2.03369],[-67.7539,2.0294],[-67.75917,2.03471],[-67.77341,2.03538],[-67.78024,2.028],[-67.77609,2.01308],[-67.78361,2.0105],[-67.78563,2.00106],[-67.79099,2.0031],[-67.8072,1.98249],[-67.80529,1.97557],[-67.81437,1.97209],[-67.82482,1.96174],[-67.82855,1.94996],[-67.83777,1.93819],[-67.85406,1.93634],[-67.85602,1.93061],[-67.87034,1.92213],[-67.87084,1.90518],[-67.86858,1.90196],[-67.87781,1.90306],[-67.88429,1.89592],[-67.89647,1.89347],[-67.89749,1.88855],[-67.90537,1.89599],[-67.91463,1.89793],[-67.92283,1.89336],[-67.91999,1.88422],[-67.90629,1.86109],[-67.91318,1.85991],[-67.91873,1.86305],[-67.92435,1.85423],[-67.91497,1.83659],[-67.91681,1.82739],[-67.92187,1.82134],[-67.90805,1.81632],[-67.9059,1.80512],[-67.94059,1.82037],[-67.95056,1.81641],[-67.96364,1.81947],[-67.98087,1.81528],[-67.98786,1.82064],[-67.99361,1.81352],[-68.00647,1.82535],[-68.00473,1.83254],[-68.01223,1.83732],[-68.02725,1.80843],[-68.03804,1.81792],[-68.03629,1.82867],[-68.04926,1.84467],[-68.04224,1.85059],[-68.05018,1.85556],[-68.04821,1.86689],[-68.05388,1.86896],[-68.0556,1.8772],[-68.06042,1.87586],[-68.0632,1.89375],[-68.07149,1.89111],[-68.08528,1.89738],[-68.09358,1.89817],[-68.10479,1.91093],[-68.10936,1.92959],[-68.1185,1.93946],[-68.12168,1.94684],[-68.13215,1.95474],[-68.1282,1.9599],[-68.13996,1.9714],[-68.14485,1.97192],[-68.16647,1.96336],[-68.1766,1.97246],[-68.17205,1.97907],[-68.18282,1.9762],[-68.18615,1.97957],[-68.18507,1.98743],[-68.1881,1.99117],[-68.19359,2.03929],[-68.19906,2.03945],[-68.20178,2.01438],[-68.20246,2.00262],[-68.20588,1.98537],[-68.21,1.98322],[-68.20999,1.97597],[-68.21205,1.9646],[-68.22098,1.9594],[-68.24707,1.92225],[-68.24295,1.91632],[-68.25531,1.87973],[-68.27385,1.85731],[-68.28552,1.84451],[-68.27484,1.84708],[-68.28323,1.8367],[-68.28468,1.82945],[-68.27717,1.83269],[-68.27479,1.8199],[-68.2505,1.82494],[-68.23995,1.82174],[-68.22871,1.83021],[-68.22796,1.82272],[-68.23751,1.81111],[-68.24603,1.78372],[-68.23724,1.76796],[-68.23422,1.77793],[-68.22997,1.78222],[-68.22509,1.77339],[-68.21167,1.77103],[-68.20633,1.78358],[-68.19401,1.77848],[-68.17757,1.76515],[-68.18997,1.76005],[-68.19205,1.73828],[-68.18553,1.7322],[-68.17815,1.73465],[-68.17035,1.74274],[-68.16254,1.7275],[-69.39097,1.7275],[-69.40318,1.73316],[-69.40921,1.73881],[-69.42506,1.74263],[-69.44502,1.74508],[-69.46709,1.75271],[-69.47484,1.74601],[-69.49211,1.75862],[-69.50868,1.75888],[-69.51438,1.769],[-69.52584,1.7693],[-69.5325,1.76342],[-69.5362,1.775],[-69.55734,1.77346],[-69.5701,1.76007],[-69.58835,1.7556],[-69.60866,1.73878],[-69.63034,1.7247],[-69.64188,1.72777],[-69.65617,1.71848],[-69.66583,1.72791],[-69.67444,1.72199],[-69.67756,1.72979],[-69.69235,1.72902],[-69.70302,1.73373],[-69.72002,1.73403],[-69.73566,1.73158],[-69.73687,1.72571],[-69.74358,1.72944],[-69.75365,1.72051],[-69.74999,1.71159],[-69.75914,1.7157],[-69.7803,1.70248],[-69.78145,1.7005],[-69.77996,1.69797],[-69.78224,1.69269],[-69.78698,1.69394],[-69.78499,1.69854],[-69.79051,1.69638],[-69.79055,1.70005],[-69.79738,1.69827],[-69.80461,1.70487],[-69.80252,1.70041],[-69.80593,1.69938],[-69.80844,1.6956],[-69.81417,1.69521],[-69.81646,1.70031],[-69.81927,1.69854],[-69.82173,1.69952],[-69.81957,1.70276],[-69.8276,1.70717],[-69.82616,1.70949],[-69.82878,1.71153],[-69.83538,1.70979],[-69.83828,1.71421],[-69.83962,1.71892],[-69.84584,1.71358],[-69.84584,1.07638],[-69.83232,1.08112],[-69.81663,1.06152],[-69.80398,1.06476],[-69.79697,1.07188],[-69.79278,1.08779],[-69.77009,1.10399],[-69.73778,1.11744],[-69.7253,1.10609],[-69.70796,1.11928],[-69.7016,1.11737],[-69.70686,1.0885],[-69.7025,1.07611],[-69.69344,1.07501],[-69.68411,1.06965],[-69.67203,1.07116],[-69.66984,1.08105],[-69.65676,1.08283],[-69.64368,1.09011],[-69.63301,1.08503],[-69.6221,1.09646],[-69.60844,1.09965],[-69.59235,1.09026],[-69.57213,1.07264],[-69.56191,1.07034],[-69.54993,1.07367],[-69.52765,1.06876],[-69.48102,1.07955],[-69.47423,1.07111],[-69.46468,1.07777],[-69.44972,1.07187],[-69.43338,1.07422],[-69.43256,1.04651],[-69.41308,1.03917],[-69.39956,1.05815],[-69.38387,1.07039],[-69.37643,1.084],[-69.37087,1.07959],[-69.36395,1.08342],[-69.35771,1.07833],[-69.34598,1.08422],[-69.33899,1.07815],[-69.32102,1.08856],[-69.30568,1.07231],[-69.30316,1.06384],[-69.28919,1.06201],[-69.28839,1.05217],[-69.24502,1.05605],[-69.24684,1.04509],[-69.19509,0.9998],[-69.21933,0.97582],[-69.20648,0.96968],[-69.206,0.96217],[-69.17276,0.95196],[-69.16575,0.9393],[-69.17088,0.93343],[-69.18151,0.93716],[-69.19315,0.92816],[-69.18896,0.91428],[-69.18015,0.90004],[-69.17005,0.89613],[-69.15309,0.87987],[-69.13887,0.88146],[-69.13566,0.86263],[-69.14481,0.84655],[-69.1622,0.85107],[-69.16586,0.84396],[-69.16402,0.83548],[-69.16768,0.82082],[-69.15509,0.80593],[-69.14468,0.7676],[-69.16439,0.75492],[-69.17312,0.75872],[-69.1892,0.74299],[-69.18051,0.71382],[-69.1542,0.7109],[-69.12593,0.66344],[-69.11729,0.65482],[-69.11504,0.64158],[-69.12376,0.63521],[-69.13665,0.64389],[-69.15092,0.64433],[-69.16107,0.6537],[-69.16709,0.65071],[-69.18158,0.65384],[-69.19545,0.64913],[-69.19826,0.64026],[-69.20245,0.63275],[-69.19909,0.61838],[-69.20122,0.60539],[-69.21591,0.61141],[-69.2361,0.59959],[-69.24132,0.60861],[-69.26549,0.60603],[-69.27126,0.60226],[-69.2979,0.60433],[-69.28389,0.61808],[-69.29049,0.63939],[-69.28472,0.64696],[-69.30149,0.64704],[-69.31717,0.63209],[-69.31969,0.62417],[-69.32335,0.63853],[-69.3396,0.6446],[-69.33663,0.63179],[-69.34395,0.62653],[-69.35403,0.61442],[-69.36616,0.63389],[-69.40175,0.66147],[-69.40444,0.67183],[-69.41471,0.68457],[-69.43015,0.69231],[-69.43649,0.7003],[-69.4328,0.70978],[-69.44149,0.71387],[-69.45751,0.71798],[-69.45979,0.73032],[-69.46481,0.73575],[-69.47878,0.73487],[-69.48468,0.72778],[-69.50156,0.72207],[-69.50588,0.71303],[-69.51295,0.71361],[-69.53031,0.70389],[-69.53225,0.69837],[-69.53116,0.6908],[-69.53419,0.67911],[-69.55673,0.68046],[-69.56319,0.68457],[-69.56745,0.67529],[-69.57817,0.66207],[-69.58215,0.66233],[-69.59719,0.65559],[-69.59992,0.65081],[-69.58754,0.63917],[-69.60469,0.63577],[-69.60571,0.61038],[-69.61927,0.63442],[-69.62467,0.63477],[-69.62806,0.62739],[-69.63887,0.63962],[-69.64015,0.6478],[-69.64692,0.66421],[-69.66803,0.66408],[-69.66828,0.66883],[-69.68832,0.66296],[-69.6846,0.65316],[-69.68961,0.64894],[-69.69555,0.65576],[-69.71225,0.64132],[-69.72404,0.61487],[-69.73748,0.60783],[-69.74818,0.61864],[-69.75387,0.61221],[-69.7623,0.60785],[-69.76183,0.60341],[-69.76975,0.60248],[-69.77372,0.5988],[-69.77822,0.59899],[-69.78462,0.59271],[-69.78929,0.58505],[-69.79402,0.58398],[-69.79419,0.57834],[-69.80208,0.57837],[-69.80346,0.57089],[-69.81067,0.57697],[-69.8117,0.58477],[-69.82269,0.59055],[-69.8323,0.58975],[-69.83643,0.58403],[-69.8439,0.58647],[-69.8524,0.58719],[-69.85696,0.58434],[-69.85912,0.57771],[-69.86549,0.57828],[-69.86946,0.58227],[-69.88031,0.57722],[-69.88739,0.57663],[-69.89263,0.58112],[-69.89717,0.58526],[-69.90231,0.57987],[-69.91602,0.58898],[-69.91796,0.58769],[-69.91406,0.58022],[-69.91622,0.57936],[-69.91968,0.5706],[-69.92934,0.56406],[-69.92926,0.55939],[-69.93648,0.55245],[-69.96089,0.56157],[-69.96353,0.57054],[-69.96802,0.57254],[-69.97183,0.57626],[-69.97773,0.57819],[-69.9849,0.57383],[-69.98829,0.576],[-69.98863,0.57189],[-69.98519,0.57087],[-69.98622,0.56711],[-69.99703,0.57596],[-70.00281,0.5703],[-70.00516,0.55554],[-70.01329,0.54593],[-70.02022,0.54405],[-70.022,0.54697],[-70.02071,0.55657],[-70.02663,0.56204],[-70.03822,0.56644],[-70.0437,0.56328],[-70.0437,-0.12525],[-70.05116,-0.144],[-70.05352,-0.14513],[-70.06549,-0.16412],[-70.05296,-0.18896],[-70.03502,-0.19863],[-70.02573,-0.20791],[-70.00133,-0.22132],[-69.99204,-0.24159],[-69.98053,-0.24829],[-69.9734,-0.26812],[-69.95541,-0.27735],[-69.94642,-0.29227],[-69.93849,-0.29217],[-69.93521,-0.30105],[-69.91984,-0.32609],[-69.88881,-0.34135],[-69.88222,-0.33319],[-69.86931,-0.33941],[-69.85187,-0.33566],[-69.83697,-0.34545],[-69.82884,-0.36477],[-69.82894,-0.3731],[-69.81023,-0.37253],[-69.78576,-0.39354],[-69.77559,-0.39374],[-69.75334,-0.40894],[-69.73535,-0.43715],[-69.70919,-0.45193],[-69.69267,-0.45452],[-69.68098,-0.46268],[-69.66621,-0.46676],[-69.6444,-0.48116],[-69.639,-0.49111],[-69.60749,-0.5038],[-69.61496,-0.53262],[-69.5929,-0.55595],[-69.60096,-0.59436],[-69.56353,-0.63549],[-69.59546,-0.68829],[-69.62326,-0.74109],[-69.5963,-0.78325],[-69.56223,-0.81463],[-69.55954,-0.82213],[-69.57197,-0.83375],[-69.56654,-0.84538],[-69.53498,-0.86423],[-69.52332,-0.87478],[-69.52538,-0.89906],[-69.53295,-0.90206],[-69.52643,-0.92553],[-69.4648,-0.96267],[-69.4642,-0.98467],[-69.44948,-0.99704],[-69.438,-0.9895],[-69.43364,-1.00152],[-69.41772,-0.9986],[-69.41938,-1.00538],[-69.43188,-1.00671],[-69.42027,-1.01218],[-69.444,-1.0259],[-69.44213,-1.03551],[-69.42059,-1.04581],[-69.42974,-1.06194],[-69.42058,-1.07138],[-69.43339,-1.0712],[-69.42322,-1.07872],[-69.39383,-1.11918],[-69.39739,-1.14042],[-69.40644,-1.14656],[-69.41314,-1.15945],[-69.41572,-1.1895],[-69.43066,-1.2223],[-69.42346,-1.25425],[-69.41299,-1.27297],[-69.40665,-1.29169],[-69.40804,-1.3302],[-69.3974,-1.35906],[-69.39982,-1.36733],[-69.42497,-1.37912],[-69.43846,-1.40258],[-69.43546,-1.43359],[-69.45993,-1.47558],[-69.45482,-1.51313],[-69.93334,-4.21972],[-69.93584,-4.21945],[-69.93798,-4.22172],[-69.94039,-4.22274],[-69.94032,-4.22309],[-69.94156,-4.22489],[-69.94188,-4.22516],[-69.94194,-4.22515],[-69.94196,-4.22491],[-69.94201,-4.22489],[-69.94209,-4.22498],[-69.94215,-4.22508],[-69.9422,-4.22509],[-69.94227,-4.22503],[-69.94231,-4.22493],[-69.94236,-4.22493],[-69.94243,-4.22504],[-69.9425,-4.2251],[-69.94251,-4.22554],[-69.94259,-4.22557],[-69.94277,-4.22538],[-69.94278,-4.22525],[-69.94286,-4.22526],[-69.9429,-4.22531],[-69.94303,-4.2253],[-69.94316,-4.22522],[-69.94334,-4.22525],[-69.94338,-4.22536],[-69.94351,-4.22539],[-69.94355,-4.2253],[-69.94368,-4.22526],[-69.94381,-4.22529],[-69.94385,-4.22537],[-69.9442,-4.22541],[-69.94429,-4.22551],[-69.94435,-4.22551],[-69.94733,-4.22711],[-69.94927,-4.24097],[-69.95202,-4.25056],[-69.94446,-4.29027],[-69.95064,-4.30944],[-69.96232,-4.32519],[-69.9939,-4.35395],[-70.00077,-4.35189],[-70.00626,-4.33957],[-70.02068,-4.34779],[-70.0248,-4.35737],[-70.02549,-4.3649],[-70.03304,-4.3738],[-70.04197,-4.37449],[-70.05158,-4.36148],[-70.04128,-4.34779],[-70.04059,-4.33888],[-70.04952,-4.32519],[-70.07699,-4.31971],[-70.08042,-4.31013],[-70.07424,-4.30328],[-70.04883,-4.30465],[-70.04059,-4.29643],[-70.04403,-4.29096],[-70.05982,-4.29369],[-70.07493,-4.28479],[-70.09209,-4.28822],[-70.10033,-4.28411],[-70.10239,-4.25877],[-70.11544,-4.25672],[-70.11338,-4.27452],[-70.12093,-4.28411],[-70.12848,-4.28479],[-70.14016,-4.27521],[-70.1532,-4.27178],[-70.16076,-4.28342],[-70.17174,-4.30465],[-70.15389,-4.3204],[-70.1532,-4.32998],[-70.17586,-4.33272],[-70.18067,-4.35532],[-70.19646,-4.36011],[-70.20264,-4.35532],[-70.20401,-4.32656],[-70.21225,-4.31287],[-70.21225,-4.29849],[-70.21775,-4.2978],[-70.21981,-4.31287],[-70.22667,-4.31698],[-70.26032,-4.30876],[-70.26925,-4.29506],[-70.24659,-4.28548],[-70.2459,-4.27521],[-70.25757,-4.27041],[-70.28092,-4.28616],[-70.29191,-4.28479],[-70.28435,-4.27315],[-70.30289,-4.26357],[-70.31044,-4.25124],[-70.30495,-4.24165],[-70.27955,-4.23412],[-70.27886,-4.2259],[-70.28916,-4.1944],[-70.2871,-4.17044],[-70.29534,-4.15742],[-70.30701,-4.15742],[-70.31937,-4.14304],[-70.32555,-4.14236],[-70.33036,-4.14921],[-70.3283,-4.1677],[-70.33379,-4.17728],[-70.3434,-4.17797],[-70.36126,-4.15811],[-70.36538,-4.14304],[-70.38254,-4.13345],[-70.39696,-4.13688],[-70.43335,-4.13003],[-70.44159,-4.13688],[-70.43335,-4.15126],[-70.43335,-4.15948],[-70.43747,-4.1629],[-70.45395,-4.15879],[-70.46013,-4.17523],[-70.46769,-4.17523],[-70.47524,-4.16153],[-70.48829,-4.16222],[-70.49309,-4.19235],[-70.50751,-4.19851],[-70.51026,-4.18482],[-70.50133,-4.16153],[-70.50957,-4.14647],[-70.52537,-4.13482],[-70.53292,-4.14236],[-70.54734,-4.13414],[-70.55283,-4.13962],[-70.54116,-4.14852],[-70.54047,-4.15537],[-70.5542,-4.16222],[-70.55626,-4.17112],[-70.55077,-4.18824],[-70.55764,-4.20468],[-70.57274,-4.20947],[-70.57412,-4.20125],[-70.56244,-4.18345],[-70.5645,-4.17044],[-70.58373,-4.18139],[-70.61532,-4.18961],[-70.63454,-4.17317],[-70.61394,-4.13277],[-70.61806,-4.12318],[-70.64484,-4.12455],[-70.64759,-4.16222],[-70.65926,-4.1403],[-70.66819,-4.1403],[-70.66544,-4.16633],[-70.67711,-4.20262],[-70.68398,-4.20262],[-70.6881,-4.18687],[-70.69909,-4.18345],[-70.71831,-4.18687],[-70.73067,-4.17865],[-70.75402,-4.15605],[-70.77256,-4.16496],[-70.78354,-4.18345],[-70.80208,-4.17934],[-70.80346,-4.18961],[-70.81719,-4.19509],[-70.82131,-4.20536],[-70.84603,-4.21769],[-70.84328,-4.22453],[-70.83298,-4.21906],[-70.82337,-4.21426],[-70.81444,-4.22453],[-70.82337,-4.23549],[-70.82886,-4.2485],[-70.83985,-4.24987],[-70.84603,-4.24234],[-70.85633,-4.24302],[-70.86113,-4.24782],[-70.85633,-4.25946],[-70.84397,-4.26836],[-70.84397,-4.27521],[-70.87624,-4.29027],[-70.87212,-4.31287],[-70.87693,-4.32108],[-70.89478,-4.31903],[-70.90027,-4.32451],[-70.91332,-4.35737],[-70.92225,-4.35258],[-70.93255,-4.35395],[-70.93255,-4.37859],[-70.93804,-4.38133],[-70.94559,-4.3738],[-70.96482,-4.37791],[-70.97031,-4.36832],[-70.97169,-4.35874],[-70.98816,-4.34299],[-70.9964,-4.34505],[-70.9861,-4.35737],[-70.9861,-4.3738],[-70.99434,-4.38476],[-71.00739,-4.38681],[-71.01838,-4.37996],[-71.02181,-4.38886],[-71.03623,-4.39982],[-71.04447,-4.39776],[-71.04722,-4.39023],[-71.0431,-4.37586],[-71.04859,-4.36832],[-71.05614,-4.37106],[-71.05889,-4.38749],[-71.07743,-4.39503],[-71.08429,-4.39023],[-71.07743,-4.38065],[-71.07949,-4.37243],[-71.10833,-4.37723],[-71.10901,-4.40256],[-71.11245,-4.40666],[-71.11931,-4.40803],[-71.13099,-4.38886],[-71.14815,-4.38065],[-71.15227,-4.38681],[-71.14815,-4.39845],[-71.15433,-4.40461],[-71.15914,-4.39229],[-71.18523,-4.39571],[-71.18866,-4.41899],[-71.1969,-4.42309],[-71.2072,-4.39776],[-71.19896,-4.38818],[-71.19896,-4.37928],[-71.21407,-4.37654],[-71.21956,-4.38476],[-71.21956,-4.40461],[-71.22849,-4.40461],[-71.22574,-4.39092],[-71.22849,-4.38476],[-71.23673,-4.3827],[-71.24634,-4.39092],[-71.2642,-4.38339],[-71.2793,-4.38886],[-71.2793,-4.39845],[-71.26832,-4.39297],[-71.26145,-4.39366],[-71.26214,-4.39982],[-71.26832,-4.40666],[-71.26214,-4.42789],[-71.2793,-4.44021],[-71.29303,-4.43747],[-71.30677,-4.41556],[-71.31981,-4.41625],[-71.31707,-4.42926],[-71.30127,-4.44569],[-71.3102,-4.46349],[-71.31432,-4.44158],[-71.34247,-4.44089],[-71.3411,-4.43199],[-71.34591,-4.42652],[-71.36101,-4.43473],[-71.3823,-4.42446],[-71.39328,-4.42926],[-71.40084,-4.44295],[-71.40977,-4.44911],[-71.41594,-4.46006],[-71.43311,-4.47649],[-71.43929,-4.47033],[-71.43036,-4.46759],[-71.42693,-4.46349],[-71.4338,-4.45459],[-71.42762,-4.44226],[-71.41251,-4.44089],[-71.41182,-4.43473],[-71.42212,-4.43679],[-71.43105,-4.42789],[-71.43792,-4.42926],[-71.43311,-4.44363],[-71.43723,-4.44911],[-71.45234,-4.44569],[-71.44959,-4.43268],[-71.46126,-4.43953],[-71.47912,-4.43336],[-71.47637,-4.44911],[-71.48186,-4.45732],[-71.50521,-4.43816],[-71.5107,-4.44295],[-71.50589,-4.45732],[-71.49216,-4.47718],[-71.49491,-4.48539],[-71.50383,-4.47581],[-71.51894,-4.47033],[-71.51619,-4.46143],[-71.54023,-4.46417],[-71.53611,-4.48128],[-71.54435,-4.47718],[-71.56083,-4.47855],[-71.5519,-4.48539],[-71.56014,-4.49155],[-71.56632,-4.50456],[-71.59379,-4.52578],[-71.61782,-4.52852],[-71.63498,-4.51072],[-71.624,-4.50456],[-71.61232,-4.47238],[-71.61919,-4.46622],[-71.62743,-4.47649],[-71.62331,-4.48813],[-71.65146,-4.50251],[-71.64734,-4.47649],[-71.65833,-4.47102],[-71.66176,-4.47855],[-71.6549,-4.48813],[-71.65833,-4.50045],[-71.67206,-4.5073],[-71.67481,-4.50114],[-71.69266,-4.49703],[-71.70639,-4.50935],[-71.71807,-4.50524],[-71.72356,-4.49703],[-71.73661,-4.49566],[-71.74004,-4.49155],[-71.73935,-4.48402],[-71.74485,-4.47102],[-71.75171,-4.46759],[-71.75377,-4.4717],[-71.74828,-4.48128],[-71.74965,-4.49224],[-71.77025,-4.50319],[-71.77025,-4.49703],[-71.77369,-4.48676],[-71.78742,-4.48197],[-71.78879,-4.48676],[-71.78261,-4.49292],[-71.78605,-4.49703],[-71.7936,-4.49498],[-71.7936,-4.48471],[-71.81145,-4.49429],[-71.80665,-4.50251],[-71.82175,-4.49908],[-71.8293,-4.49566],[-71.83411,-4.49908],[-71.82793,-4.50524],[-71.83205,-4.51483],[-71.83617,-4.51277],[-71.83892,-4.50387],[-71.85814,-4.5114],[-71.8657,-4.52578],[-71.87188,-4.51893],[-71.88561,-4.51551],[-71.90621,-4.51551],[-71.90758,-4.5203],[-71.89454,-4.52236],[-71.8863,-4.52989],[-71.88561,-4.5381],[-71.89179,-4.53878],[-71.8966,-4.52852],[-71.91788,-4.52852],[-71.92681,-4.54631],[-71.922,-4.55042],[-71.91926,-4.56274],[-71.92887,-4.56],[-71.9323,-4.56479],[-71.9275,-4.56822],[-71.93574,-4.57848],[-71.94947,-4.5778],[-71.95015,-4.58601],[-71.94397,-4.59423],[-71.95084,-4.60039],[-71.94741,-4.60654],[-71.97762,-4.60928],[-71.98517,-4.60312],[-71.99616,-4.61134],[-71.98723,-4.6127],[-71.98243,-4.62502],[-72.00234,-4.62845],[-72.00577,-4.64419],[-72.01539,-4.63255],[-72.04285,-4.62297],[-72.03736,-4.64145],[-72.04628,-4.6435],[-72.04491,-4.65377],[-72.05727,-4.64829],[-72.06757,-4.65788],[-72.05727,-4.66951],[-72.06414,-4.67567],[-72.07032,-4.66198],[-72.08199,-4.66951],[-72.07581,-4.67772],[-72.0813,-4.6832],[-72.08886,-4.68114],[-72.10122,-4.70441],[-72.11426,-4.70646],[-72.12456,-4.71673],[-72.12044,-4.73042],[-72.13006,-4.73521],[-72.13486,-4.72768],[-72.12937,-4.7222],[-72.14104,-4.71194],[-72.14653,-4.72426],[-72.16164,-4.72905],[-72.15958,-4.73658],[-72.17263,-4.73315],[-72.19323,-4.74684],[-72.18773,-4.74821],[-72.19391,-4.76395],[-72.20833,-4.74752],[-72.22207,-4.75573],[-72.21314,-4.76052],[-72.22344,-4.77216],[-72.22893,-4.76874],[-72.24472,-4.78242],[-72.25228,-4.76463],[-72.26189,-4.78037],[-72.25502,-4.78721],[-72.25571,-4.79268],[-72.26464,-4.78584],[-72.26876,-4.79747],[-72.28455,-4.79542],[-72.27768,-4.78995],[-72.27837,-4.77147],[-72.28318,-4.78174],[-72.3024,-4.77626],[-72.30584,-4.78995],[-72.31339,-4.78584],[-72.30927,-4.779],[-72.31202,-4.77353],[-72.32987,-4.78037],[-72.32918,-4.78721],[-72.32026,-4.78789],[-72.32232,-4.79542],[-72.32163,-4.805],[-72.32438,-4.81184],[-72.32575,-4.80158],[-72.33948,-4.80363],[-72.33605,-4.79679],[-72.34017,-4.79405],[-72.34429,-4.80568],[-72.36832,-4.80226],[-72.37244,-4.80774],[-72.36077,-4.81937],[-72.35871,-4.82484],[-72.3642,-4.82553],[-72.37313,-4.82211],[-72.38274,-4.82621],[-72.37176,-4.83237],[-72.39029,-4.83305],[-72.37588,-4.83716],[-72.38343,-4.84674],[-72.38206,-4.85905],[-72.38961,-4.86042],[-72.38137,-4.87137],[-72.3848,-4.87479],[-72.39029,-4.86863],[-72.40197,-4.87547],[-72.40265,-4.88574],[-72.40883,-4.88779],[-72.41433,-4.87547],[-72.42463,-4.87684],[-72.4157,-4.88642],[-72.41501,-4.89942],[-72.43012,-4.90147],[-72.43149,-4.91036],[-72.43836,-4.90831],[-72.44317,-4.89805],[-72.45347,-4.90079],[-72.45621,-4.89189],[-72.47063,-4.89053],[-72.46926,-4.90421],[-72.45209,-4.91242],[-72.45965,-4.92473],[-72.47132,-4.92199],[-72.47818,-4.93157],[-72.47406,-4.94047],[-72.48505,-4.95278],[-72.48917,-4.95004],[-72.48505,-4.94115],[-72.48917,-4.93294],[-72.49535,-4.94936],[-72.5084,-4.94525],[-72.50428,-4.93704],[-72.52419,-4.93226],[-72.52213,-4.95962],[-72.52831,-4.95483],[-72.53998,-4.96509],[-72.53724,-4.95278],[-72.55303,-4.95483],[-72.55097,-4.96372],[-72.56676,-4.97467],[-72.56745,-4.98425],[-72.58324,-4.98083],[-72.58393,-4.99793],[-72.59079,-4.99519],[-72.58942,-4.98493],[-72.59972,-4.98425],[-72.59903,-4.99382],[-72.60933,-4.99451],[-72.61002,-4.99929],[-72.60109,-4.99998],[-72.60247,-5.00887],[-72.61414,-5.01434],[-72.60659,-5.02802],[-72.61895,-5.03486],[-72.62101,-5.05128],[-72.62856,-5.0376],[-72.62993,-5.04991],[-72.64229,-5.06427],[-72.63955,-5.05196],[-72.64229,-5.04376],[-72.65259,-5.04923],[-72.65328,-5.06017],[-72.66015,-5.06154],[-72.65946,-5.05196],[-72.66701,-5.05675],[-72.67182,-5.04581],[-72.68555,-5.0506],[-72.68967,-5.0588],[-72.71164,-5.04649],[-72.71576,-5.05812],[-72.72812,-5.04991],[-72.72675,-5.06154],[-72.73774,-5.0588],[-72.73774,-5.06633],[-72.73156,-5.06906],[-72.73156,-5.0759],[-72.73774,-5.07317],[-72.7398,-5.08958],[-72.75559,-5.07522],[-72.76383,-5.08479],[-72.7604,-5.09026],[-72.76864,-5.09847],[-72.78443,-5.09095],[-72.781,-5.10189],[-72.78717,-5.11352],[-72.78992,-5.10531],[-72.80091,-5.11078],[-72.81602,-5.10052],[-72.82082,-5.106],[-72.81396,-5.13404],[-72.81533,-5.13951],[-72.82082,-5.13198],[-72.82631,-5.13404],[-72.82288,-5.13882],[-72.85172,-5.14361],[-72.84829,-5.13404],[-72.86683,-5.14361],[-72.86477,-5.15045],[-72.88949,-5.16207],[-72.88331,-5.17507],[-72.86957,-5.20379],[-72.86545,-5.27011],[-72.89773,-5.33438],[-72.89017,-5.35147],[-72.91077,-5.36173],[-72.95472,-5.47657],[-72.94922,-5.54492],[-72.97257,-5.61804],[-72.96433,-5.65836],[-72.98768,-5.66587],[-72.98562,-5.69184],[-73.0069,-5.72942],[-73.02681,-5.73146],[-73.01789,-5.73966],[-73.04673,-5.75811],[-73.04329,-5.77382],[-73.05428,-5.77587],[-73.04741,-5.78134],[-73.11676,-5.83599],[-73.11333,-5.86331],[-73.15522,-5.87356],[-73.1717,-5.92205],[-73.17994,-5.9282],[-73.18337,-5.95961],[-73.17925,-5.96986],[-73.1923,-5.98966],[-73.18818,-6.004],[-73.23555,-6.03746],[-73.23006,-6.07843],[-73.24105,-6.07706],[-73.23349,-6.09072],[-73.25135,-6.12759],[-73.21633,-6.18971],[-73.21907,-6.21838],[-73.18749,-6.26275],[-73.16208,-6.28254],[-73.15522,-6.32691],[-73.12844,-6.39446],[-73.11814,-6.38696],[-73.10509,-6.40675],[-73.12363,-6.42995],[-73.11127,-6.45383],[-73.14011,-6.48999],[-73.13462,-6.50841],[-73.1408,-6.51523],[-73.14354,-6.505],[-73.16483,-6.52751],[-73.17101,-6.51728],[-73.18749,-6.52478],[-73.17925,-6.53365],[-73.2026,-6.55207],[-73.19916,-6.56162],[-73.21084,-6.57526],[-73.21907,-6.56503],[-73.23006,-6.57526],[-73.21976,-6.58686],[-73.24105,-6.58345],[-73.23761,-6.59163],[-73.25272,-6.5814],[-73.29255,-6.58754],[-73.29667,-6.59777],[-73.30353,-6.59231],[-73.35091,-6.59504],[-73.3825,-6.62233],[-73.38044,-6.63528],[-73.42164,-6.6462],[-73.42438,-6.6537],[-73.43537,-6.64961],[-73.45459,-6.66461],[-73.48206,-6.67007],[-73.53905,-6.68507],[-73.54043,-6.6953],[-73.55416,-6.70485],[-73.56102,-6.71985],[-73.60016,-6.7294],[-73.63862,-6.75667],[-73.64548,-6.77577],[-73.66539,-6.80304],[-73.68187,-6.81395],[-73.69355,-6.83849],[-73.71003,-6.83986],[-73.72307,-6.88417],[-73.74711,-6.90803],[-73.74985,-6.91961],[-73.76152,-6.93597],[-73.74367,-6.96596],[-73.76015,-6.97891],[-73.75946,-7.00004],[-73.76358,-7.00618],[-73.75603,-7.01708],[-73.76358,-7.03616],[-73.75672,-7.04434],[-73.76084,-7.06001],[-73.78693,-7.09068],[-73.78556,-7.1043],[-73.79792,-7.11452],[-73.79517,-7.12951],[-73.78487,-7.12747],[-73.78281,-7.13769],[-73.79105,-7.14042],[-73.76839,-7.15609],[-73.76908,-7.17176],[-73.75741,-7.17244],[-73.7526,-7.20377],[-73.74024,-7.22012],[-73.71895,-7.22625],[-73.7217,-7.23851],[-73.71277,-7.23783],[-73.71621,-7.27257],[-73.69561,-7.29982],[-73.70247,-7.32093],[-73.71209,-7.32365],[-73.7217,-7.33591],[-73.72307,-7.34136],[-73.75741,-7.35362],[-73.75191,-7.34068],[-73.78007,-7.33796],[-73.78831,-7.34613],[-73.82195,-7.33932],[-73.8295,-7.35089],[-73.85285,-7.3543],[-73.86315,-7.38767],[-73.88855,-7.3795],[-73.89611,-7.38562],[-73.90572,-7.38494],[-73.90572,-7.37201],[-73.91602,-7.36996],[-73.92151,-7.36043],[-73.93525,-7.37677],[-73.94761,-7.35702],[-73.95173,-7.35839],[-73.95516,-7.37064],[-73.94898,-7.37745],[-73.93868,-7.40265],[-73.94005,-7.40673],[-73.9222,-7.41899],[-73.92495,-7.42512],[-73.91671,-7.44486],[-73.91602,-7.45712],[-73.91053,-7.46665],[-73.91053,-7.47618],[-73.92632,-7.48163],[-73.91671,-7.50137],[-73.92563,-7.50818],[-73.94211,-7.53405],[-73.9531,-7.5286],[-73.98262,-7.53473],[-73.9785,-7.56059],[-73.95653,-7.564],[-73.94623,-7.57693],[-73.92563,-7.58101],[-73.91121,-7.59667],[-73.88855,-7.60415],[-73.89542,-7.61572],[-73.89336,-7.63342],[-73.90023,-7.63954],[-73.87894,-7.65588],[-73.86864,-7.67493],[-73.85628,-7.67697],[-73.84392,-7.66677],[-73.83706,-7.66813],[-73.83706,-7.69194],[-73.82195,-7.70011],[-73.82195,-7.71168],[-73.80822,-7.72256],[-73.80272,-7.7144],[-73.7732,-7.72733],[-73.74299,-7.73413],[-73.73612,-7.7457],[-73.73131,-7.74434],[-73.72719,-7.74093],[-73.71483,-7.74093],[-73.71277,-7.76135],[-73.70316,-7.7593],[-73.69973,-7.76747],[-73.69011,-7.76747],[-73.67981,-7.78244],[-73.67707,-7.8008],[-73.68256,-7.81577],[-73.67844,-7.8559],[-73.68874,-7.86747],[-73.69629,-7.86883],[-73.70591,-7.87563],[-73.71895,-7.87223],[-73.73543,-7.87835],[-73.74436,-7.87019],[-73.75603,-7.87155],[-73.76084,-7.85999],[-73.76565,-7.86407],[-73.75603,-7.89331],[-73.76496,-7.89467],[-73.77251,-7.9076],[-73.75603,-7.9246],[-73.73887,-7.92936],[-73.74505,-7.94772],[-73.73269,-7.95112],[-73.72651,-7.9654],[-73.72033,-7.95792],[-73.70728,-7.95588],[-73.69973,-7.97628],[-73.69286,-7.97492],[-73.68119,-7.9858],[-73.68325,-7.99532],[-73.66814,-8.01096],[-73.65578,-8.01368],[-73.6393,-8.00688],[-73.61527,-8.03612],[-73.62832,-8.05448],[-73.61046,-8.07963],[-73.60978,-8.09119],[-73.60222,-8.09459],[-73.60085,-8.10342],[-73.59055,-8.11362],[-73.58231,-8.13537],[-73.58986,-8.14489],[-73.58918,-8.15305],[-73.59604,-8.15984],[-73.58918,-8.17683],[-73.58712,-8.19858],[-73.57819,-8.20538],[-73.57064,-8.22305],[-73.583,-8.22984],[-73.5878,-8.24072],[-73.56514,-8.24344],[-73.55553,-8.25227],[-73.54248,-8.25567],[-73.53768,-8.2645],[-73.52463,-8.26654],[-73.53013,-8.28353],[-73.53768,-8.29576],[-73.52395,-8.32158],[-73.54248,-8.34671],[-73.52189,-8.35962],[-73.51845,-8.37117],[-73.48618,-8.38068],[-73.47657,-8.39223],[-73.46901,-8.39223],[-73.44292,-8.42687],[-73.43399,-8.42415],[-73.4237,-8.43434],[-73.40653,-8.43095],[-73.39966,-8.44046],[-73.39829,-8.45064],[-73.39142,-8.4554],[-73.38799,-8.46966],[-73.377,-8.46219],[-73.3722,-8.46966],[-73.34336,-8.47577],[-73.33924,-8.46966],[-73.331,-8.47374],[-73.32825,-8.52263],[-73.33512,-8.53214],[-73.33855,-8.57627],[-73.34405,-8.60004],[-73.33581,-8.61972],[-73.3207,-8.6109],[-73.31109,-8.62448],[-73.31109,-8.6333],[-73.30628,-8.62855],[-73.3001,-8.63262],[-73.29598,-8.64009],[-73.29598,-8.64688],[-73.28293,-8.66521],[-73.25478,-8.67946],[-73.25478,-8.68896],[-73.23693,-8.68557],[-73.21701,-8.691],[-73.20534,-8.68761],[-73.19092,-8.69304],[-73.1868,-8.68557],[-73.18062,-8.68625],[-73.17582,-8.69507],[-73.16689,-8.69779],[-73.14835,-8.72494],[-73.14286,-8.72697],[-73.1353,-8.7419],[-73.1408,-8.75005],[-73.13462,-8.75955],[-73.13462,-8.76566],[-73.1147,-8.78398],[-73.11402,-8.80095],[-73.11058,-8.80502],[-73.11196,-8.81859],[-73.09548,-8.83555],[-73.07694,-8.84233],[-73.07969,-8.86065],[-73.07145,-8.86133],[-73.06939,-8.87626],[-73.05977,-8.89593],[-73.05977,-8.90475],[-73.04947,-8.90746],[-73.04947,-8.91221],[-73.03368,-8.9156],[-73.01857,-8.91153],[-73.01102,-8.91832],[-72.99935,-8.91696],[-72.98356,-8.9407],[-72.9815,-8.95901],[-72.97394,-8.96376],[-72.96845,-8.98072],[-72.94304,-8.98208],[-72.94442,-8.99293],[-72.95746,-9.00785],[-72.95609,-9.0187],[-72.94785,-9.02209],[-72.93961,-9.07227],[-72.93961,-9.09397],[-72.95128,-9.12719],[-72.95952,-9.14549],[-72.98768,-9.16176],[-73.00347,-9.16108],[-73.01102,-9.17464],[-73.02338,-9.17464],[-73.02681,-9.18074],[-73.01171,-9.19498],[-73.00553,-9.19498],[-73.00965,-9.22344],[-73.02269,-9.22141],[-73.03505,-9.23496],[-73.06321,-9.22751],[-73.08037,-9.24242],[-73.0893,-9.26072],[-73.10921,-9.27698],[-73.1099,-9.28647],[-73.10029,-9.30409],[-73.11539,-9.31696],[-73.13187,-9.31832],[-73.13462,-9.32916],[-73.14972,-9.33864],[-73.15247,-9.3461],[-73.14835,-9.35423],[-73.17101,-9.36168],[-73.17582,-9.35491],[-73.18818,-9.36303],[-73.19024,-9.39759],[-73.20534,-9.40707],[-73.20057,-9.41126],[-73.20057,-9.41165],[-72.71614,-9.41163],[-72.71851,-9.42062],[-72.69516,-9.43755],[-72.67045,-9.44026],[-72.65465,-9.44974],[-72.64229,-9.44432],[-72.61963,-9.45042],[-72.58255,-9.45923],[-72.54342,-9.46803],[-72.52076,-9.49038],[-72.51526,-9.48496],[-72.48711,-9.48158],[-72.45415,-9.48632],[-72.44179,-9.47887],[-72.4157,-9.48158],[-72.40815,-9.47751],[-72.37656,-9.49377],[-72.36626,-9.49106],[-72.34223,-9.50528],[-72.34223,-9.51815],[-72.31476,-9.54456],[-72.29828,-9.53237],[-72.28249,-9.54185],[-72.28661,-9.60143],[-72.26807,-9.62039],[-72.25434,-9.61362],[-72.25983,-9.63934],[-72.24884,-9.65627],[-72.25159,-9.70162],[-72.25846,-9.71109],[-72.25502,-9.7341],[-72.26464,-9.74628],[-72.2612,-9.7517],[-72.24404,-9.7517],[-72.24129,-9.76185],[-72.23511,-9.76523],[-72.23237,-9.76253],[-72.21932,-9.772],[-72.21589,-9.77809],[-72.19254,-9.77741],[-72.17606,-9.78486],[-72.16851,-9.78418],[-72.16301,-9.79298],[-72.1534,-9.79568],[-72.15477,-9.81733],[-72.16027,-9.81869],[-72.16233,-9.83019],[-72.15615,-9.83154],[-72.15271,-9.84034],[-72.15546,-9.84575],[-72.14859,-9.87281],[-72.13623,-9.87349],[-72.13967,-9.88566],[-72.14722,-9.88837],[-72.15065,-9.90663],[-72.16301,-9.91204],[-72.17469,-9.93166],[-72.16645,-9.94113],[-72.15615,-9.94316],[-72.16164,-9.95465],[-72.14997,-9.96074],[-72.15134,-9.97224],[-72.15683,-9.97224],[-72.15752,-9.97968],[-72.17537,-9.98373],[-72.18052,-10.00043],[-71.37627,-10.00018],[-71.35895,-9.98238],[-71.35003,-9.98441],[-71.35071,-9.97765],[-71.34316,-9.96615],[-71.32874,-9.97427],[-71.31226,-9.9905],[-71.30814,-9.98779],[-71.29853,-9.99117],[-71.29029,-9.98238],[-71.28823,-9.98509],[-71.269,-9.97629],[-71.25939,-9.979],[-71.25184,-9.97224],[-71.2539,-9.96344],[-71.22231,-9.96953],[-71.21064,-9.96412],[-71.21064,-9.9533],[-71.2024,-9.94316],[-71.19347,-9.94248],[-71.19004,-9.92084],[-71.17974,-9.91678],[-71.18042,-9.90663],[-71.15708,-9.87213],[-71.14472,-9.86604],[-71.13511,-9.85251],[-71.10146,-9.85048],[-71.07674,-9.82748],[-71.05957,-9.8241],[-71.05271,-9.81666],[-70.99503,-9.81598],[-70.99228,-9.79298],[-70.97786,-9.76726],[-70.95315,-9.74358],[-70.92499,-9.74019],[-70.88723,-9.68943],[-70.88105,-9.6874],[-70.86869,-9.66439],[-70.83847,-9.65424],[-70.83504,-9.64205],[-70.81238,-9.63934],[-70.7959,-9.63799],[-70.78629,-9.61362],[-70.75814,-9.60211],[-70.75745,-9.5818],[-70.7499,-9.56216],[-70.74028,-9.56013],[-70.72861,-9.5669],[-70.72381,-9.55674],[-70.65651,-9.51544],[-70.64965,-9.49986],[-70.63385,-9.49512],[-70.63591,-9.48496],[-70.62355,-9.47074],[-70.61532,-9.46803],[-70.61326,-9.45855],[-70.59746,-9.4572],[-70.59678,-9.44297],[-70.58785,-9.44432],[-70.56382,-9.43078],[-70.52674,-9.43213],[-70.51026,-9.42468],[-70.49584,-9.42604],[-70.49447,-9.44094],[-70.51095,-9.44636],[-70.50408,-9.46261],[-70.51438,-9.46532],[-70.51644,-9.4572],[-70.52468,-9.45855],[-70.52125,-9.4748],[-70.50545,-9.49445],[-70.50683,-9.50596],[-70.51095,-9.49377],[-70.52331,-9.50528],[-70.53155,-9.50189],[-70.53155,-9.51408],[-70.54459,-9.51205],[-70.54802,-9.52424],[-70.5391,-9.52966],[-70.54116,-9.53575],[-70.55626,-9.53778],[-70.56656,-9.5283],[-70.57206,-9.53101],[-70.56519,-9.53982],[-70.57068,-9.55336],[-70.55764,-9.55742],[-70.55352,-9.56893],[-70.55901,-9.57435],[-70.56794,-9.57164],[-70.57549,-9.56284],[-70.58442,-9.5669],[-70.58922,-9.56419],[-70.5851,-9.55404],[-70.58991,-9.54794],[-70.59884,-9.55336],[-70.60158,-9.56284],[-70.58716,-9.57232],[-70.58854,-9.60008],[-70.59815,-9.60685],[-70.56588,-9.6671],[-70.55283,-9.66913],[-70.54802,-9.67996],[-70.54184,-9.67996],[-70.53017,-9.71109],[-70.52605,-9.71515],[-70.53498,-9.7341],[-70.53292,-9.74493],[-70.53978,-9.74899],[-70.54047,-9.75576],[-70.53566,-9.7632],[-70.5597,-9.78824],[-70.57618,-9.77809],[-70.58579,-9.78553],[-70.59197,-9.80177],[-70.60158,-9.79974],[-70.6112,-9.80245],[-70.61669,-9.81666],[-70.62424,-9.82072],[-70.62149,-9.82681],[-70.62087,-10.9999],[-70.52965,-10.93463],[-70.5264,-10.93395],[-70.51953,-10.93462],[-70.51507,-10.94726],[-70.50339,-10.95063],[-70.49721,-10.96142],[-70.48554,-10.96614],[-70.46975,-10.98704],[-70.45464,-10.99647],[-70.43953,-11.02613],[-70.44297,-11.03287],[-70.43885,-11.03691],[-70.40863,-11.045],[-70.38529,-11.04702],[-70.3743,-11.05983],[-70.35302,-11.0578],[-70.34821,-11.06522],[-70.33585,-11.06791],[-70.32967,-11.06454],[-70.30838,-11.06993],[-70.28092,-11.05578],[-70.27199,-11.05848],[-70.26375,-11.05174],[-70.24178,-11.04702],[-70.19989,-11.05443],[-70.18754,-11.04433],[-70.16213,-11.03826],[-70.14153,-11.02882],[-70.10857,-11.00523],[-70.11063,-10.99445],[-70.06737,-10.99041],[-70.03647,-10.9749],[-69.99253,-10.95401],[-69.95476,-10.92771],[-69.92455,-10.92299],[-69.92249,-10.93176],[-69.917,-10.93176],[-69.917,-10.92299],[-69.87854,-10.92367],[-69.87442,-10.93041],[-69.86412,-10.92704],[-69.85932,-10.93243],[-69.8552,-10.92232],[-69.83185,-10.93243],[-69.81194,-10.92771],[-69.80027,-10.92636],[-69.79546,-10.93243],[-69.77005,-10.93108],[-69.77143,-10.93985],[-69.7625,-10.94052],[-69.73916,-10.97221],[-69.72336,-10.96547],[-69.71718,-10.9749],[-69.7007,-10.96749],[-69.66156,-10.95266],[-69.63616,-10.95872],[-69.62243,-10.94996],[-69.61007,-10.95738],[-69.61075,-10.94592],[-69.59702,-10.9412],[-69.55514,-10.94457],[-69.5517,-10.95333],[-69.54071,-10.94996],[-69.5414,-10.93783],[-69.52149,-10.9385],[-69.50638,-10.94187],[-69.49883,-10.93715],[-69.49402,-10.94861],[-69.47754,-10.95198],[-69.47754,-10.94457],[-69.45488,-10.94524],[-69.44939,-10.93378],[-69.42879,-10.93445],[-69.4233,-10.92569],[-69.37386,-10.94052],[-69.3203,-10.94187],[-69.28803,-10.94726],[-69.25164,-10.9412],[-69.23241,-10.93917],[-69.21456,-10.95535],[-69.19602,-10.94794],[-69.16375,-10.96277],[-69.10744,-10.97558],[-69.07242,-10.96884],[-69.06006,-10.98164],[-69.04702,-10.9776],[-69.01268,-10.99041],[-69.00994,-11.00052],[-68.98659,-11.00186],[-68.97011,-10.98704],[-68.95432,-10.98973],[-68.94677,-11.00726],[-68.93578,-11.00523],[-68.90694,-11.02074],[-68.89595,-11.00321],[-68.86094,-11.01467],[-68.84789,-10.9931],[-68.82729,-10.99715],[-68.82866,-11.00254],[-68.806,-11.00052],[-68.81218,-10.99175],[-68.79296,-10.98973],[-68.79021,-11.01063],[-68.78197,-10.99782],[-68.76069,-11.00321],[-68.75107,-11.01063],[-68.75176,-11.03624],[-68.76343,-11.04635],[-68.76137,-11.05511],[-68.76412,-11.06589],[-68.75725,-11.07937],[-68.74833,-11.09284],[-68.74215,-11.09689],[-68.73322,-11.09284],[-68.72773,-11.10093],[-68.72429,-11.10363],[-68.72223,-11.11441],[-68.71193,-11.12923],[-68.71674,-11.14674],[-68.65769,-11.13731],[-68.61786,-11.12384],[-68.6007,-11.12047],[-68.57872,-11.11238],[-68.54302,-11.10969],[-68.54439,-11.10026],[-68.5389,-11.09352],[-68.52173,-11.08745],[-68.50663,-11.06319],[-68.4874,-11.05106],[-68.44277,-11.0423],[-68.43659,-11.03219],[-68.42835,-11.03152],[-68.42286,-11.04096],[-68.41256,-11.04028],[-68.40432,-11.05174],[-68.3899,-11.04298],[-68.38784,-11.01939],[-68.35968,-11.00523],[-68.33909,-11.00726],[-68.33634,-11.01265],[-68.32535,-11.00861],[-68.32055,-10.99917],[-68.29102,-10.98704],[-68.28141,-10.98906],[-68.26836,-10.97895],[-68.23609,-10.95198],[-68.22854,-10.9176],[-68.20931,-10.90209],[-68.20382,-10.88052],[-68.1997,-10.87647],[-68.19626,-10.85894],[-68.18528,-10.85557],[-68.17154,-10.83871],[-68.13858,-10.80903],[-68.11867,-10.78273],[-68.10563,-10.77733],[-68.107,-10.76249],[-68.09876,-10.74967],[-68.10151,-10.74023],[-68.10494,-10.7409],[-68.107,-10.72066],[-68.07679,-10.6849],[-68.06511,-10.68288],[-68.0555,-10.67006],[-68.03147,-10.66466],[-68.03284,-10.65521],[-68.01499,-10.64847],[-67.99576,-10.64982],[-67.97791,-10.66061],[-67.96006,-10.64914],[-67.93465,-10.65521],[-67.90993,-10.64037],[-67.89689,-10.64644],[-67.89071,-10.63969],[-67.87629,-10.64104],[-67.8653,-10.64037],[-67.85294,-10.64914],[-67.81723,-10.65791],[-67.76505,-10.68558],[-67.75887,-10.68355],[-67.7575,-10.6957],[-67.74582,-10.6957],[-67.74239,-10.70582],[-67.73072,-10.71054],[-67.70875,-10.70987],[-67.70531,-10.7011],[-67.67647,-10.60595],[-67.67098,-10.60662],[-67.66068,-10.61472],[-67.63733,-10.59245],[-67.63459,-10.58098],[-67.62497,-10.5722],[-67.60987,-10.56275],[-67.60437,-10.53305],[-67.60094,-10.53372],[-67.59957,-10.52495],[-67.58996,-10.52022],[-67.56936,-10.51145],[-67.56798,-10.49997],[-67.53571,-10.48647],[-67.5206,-10.49119],[-67.51305,-10.47701],[-67.50412,-10.47094],[-67.49245,-10.47229],[-67.47735,-10.46689],[-67.47254,-10.46081],[-67.44919,-10.45676],[-67.43615,-10.44528],[-67.43683,-10.43717],[-67.42859,-10.42772],[-67.41829,-10.4284],[-67.41211,-10.42502],[-67.41417,-10.39733],[-67.42379,-10.39395],[-67.40525,-10.37166],[-67.37709,-10.37977],[-67.3668,-10.37639],[-67.35581,-10.39328],[-67.34963,-10.39328],[-67.35375,-10.38247],[-67.3462,-10.37572],[-67.33727,-10.37707],[-67.32834,-10.38112],[-67.31186,-10.37302],[-67.31736,-10.36491],[-67.31736,-10.34667],[-67.32903,-10.33451],[-67.31942,-10.31965],[-67.29538,-10.32235],[-67.26998,-10.32371],[-67.26449,-10.33249],[-67.23496,-10.31695],[-67.22329,-10.31627],[-67.21779,-10.32303],[-67.19719,-10.32438],[-67.18827,-10.33789],[-67.1711,-10.33789],[-67.16561,-10.33046],[-67.13128,-10.31425],[-67.13883,-10.30682],[-67.1354,-10.29533],[-67.12716,-10.2906],[-67.09145,-10.28317],[-67.08664,-10.28858],[-67.04888,-10.27439],[-67.05231,-10.26898],[-67.01867,-10.25344],[-67.01455,-10.25682],[-67.00493,-10.24331],[-67.00562,-10.23047],[-66.99395,-10.22844],[-66.98914,-10.21763],[-66.99875,-10.2156],[-66.97678,-10.18654],[-66.95481,-10.18857],[-66.94657,-10.15883],[-66.92322,-10.14058],[-66.91086,-10.14599],[-66.91155,-10.1372],[-66.91704,-10.1318],[-66.87447,-10.09665],[-66.87447,-10.08245],[-66.83739,-10.08177],[-66.83533,-10.06284],[-66.80512,-10.04459],[-66.80787,-10.03648],[-66.7804,-10.01484],[-66.77216,-10.01957],[-66.77147,-10.00943],[-66.7495,-9.99455],[-66.74195,-9.99523],[-66.73577,-9.9817],[-66.67946,-9.96344],[-66.67054,-9.95871],[-66.66436,-9.93707],[-66.65062,-9.93504],[-66.6417,-9.94721],[-66.62659,-9.93098],[-66.63483,-9.92422],[-66.62865,-9.91678],[-66.63483,-9.91137],[-66.62522,-9.90393],[-66.62453,-9.89649],[-66.61972,-9.89446],[-66.58539,-9.90122],[-66.58196,-9.9046],[-66.57441,-9.89107],[-66.56823,-9.89243],[-66.56205,-9.88093],[-66.549,-9.88702],[-66.54488,-9.87822],[-66.52771,-9.88566],[-66.49956,-9.87619],[-66.503,-9.88296],[-66.4927,-9.88499],[-66.48858,-9.86943],[-66.45836,-9.87687],[-66.43364,-9.8674],[-66.42609,-9.87349],[-66.43158,-9.89649],[-66.4151,-9.89716],[-66.42266,-9.88769],[-66.41373,-9.88093],[-66.40412,-9.86469],[-66.3588,-9.86537],[-66.35193,-9.84169],[-66.31554,-9.83154],[-66.28464,-9.84237],[-66.27915,-9.82884],[-66.25649,-9.83357],[-66.23658,-9.81395],[-66.2098,-9.83492],[-66.18851,-9.81936],[-66.19469,-9.80448],[-66.15418,-9.78553],[-66.09925,-9.7835],[-66.09925,-9.80989],[-66.08963,-9.8126],[-66.07933,-9.79365],[-66.08689,-9.78959],[-66.06904,-9.78418],[-66.03333,-9.78892],[-66.02509,-9.81192],[-66.00037,-9.79433],[-65.99694,-9.80177],[-65.96467,-9.80245],[-65.97359,-9.79568],[-65.97428,-9.78012],[-65.96741,-9.77065],[-65.94338,-9.75914],[-65.93445,-9.76862],[-65.92003,-9.75305],[-65.90493,-9.76523],[-65.88501,-9.75238],[-65.87128,-9.75508],[-65.86167,-9.76997],[-65.87128,-9.79095],[-65.84656,-9.79298],[-65.8294,-9.76591],[-65.81704,-9.7544],[-65.80124,-9.75779],[-65.81292,-9.77268],[-65.80262,-9.78756],[-65.78339,-9.78621],[-65.77584,-9.76523],[-65.78065,-9.74019],[-65.77034,-9.73546],[-65.76828,-9.74019],[-65.77034,-9.75711],[-65.74494,-9.78215],[-65.73189,-9.7632],[-65.7058,-9.75711],[-65.6852,-9.74831],[-65.67902,-9.76523],[-65.70649,-9.76388],[-65.70855,-9.77403],[-65.70031,-9.78824],[-65.70923,-9.80854],[-65.68932,-9.81192],[-65.68726,-9.8011],[-65.66872,-9.78215],[-65.65911,-9.79298],[-65.64469,-9.7923],[-65.65293,-9.80515],[-65.64881,-9.81463],[-65.63782,-9.8038],[-65.62684,-9.8356],[-65.60212,-9.82342],[-65.59731,-9.84034],[-65.57053,-9.83628],[-65.55748,-9.84575],[-65.55268,-9.83154],[-65.56572,-9.81327],[-65.54032,-9.80245],[-65.53139,-9.78147],[-65.51285,-9.79298],[-65.49843,-9.77606],[-65.50324,-9.76794],[-65.50118,-9.73004],[-65.48264,-9.72666],[-65.48745,-9.70906],[-65.47303,-9.7138],[-65.44213,-9.69079],[-65.44762,-9.67116],[-65.38308,-9.69146],[-65.35012,-9.7341],[-65.32746,-9.78012],[-65.32059,-9.81124],[-65.28763,-9.83898],[-65.29175,-9.87552],[-65.33433,-9.93572],[-65.32128,-9.9817],[-65.32196,-10.0047],[-65.33158,-10.05744],[-65.30205,-10.09665],[-65.30137,-10.14329],[-65.30686,-10.17168],[-65.28763,-10.21628],[-65.32265,-10.29466],[-65.33433,-10.31425],[-65.392,-10.37369],[-65.37758,-10.41286],[-65.4023,-10.46148],[-65.42702,-10.46419],[-65.42908,-10.48647],[-65.41192,-10.50537],[-65.42084,-10.52967],[-65.40505,-10.55128],[-65.39818,-10.58908],[-65.41535,-10.61742],[-65.40436,-10.63969],[-65.36385,-10.65117],[-65.34394,-10.69435],[-65.34463,-10.77126],[-65.36316,-10.778],[-65.36591,-10.79824],[-65.34394,-10.80633],[-65.27527,-10.8704],[-65.26703,-10.91827],[-65.27253,-10.94457],[-65.25124,-10.98367],[-65.26841,-10.99715],[-65.29931,-11.03085],[-65.28008,-11.07061],[-65.28832,-11.09419],[-65.35561,-11.12586],[-65.36042,-11.15281],[-65.35355,-11.18177],[-65.32815,-11.18043],[-65.31441,-11.18851],[-65.31922,-11.20535],[-65.35355,-11.21478],[-65.36248,-11.23296],[-65.34463,-11.30637],[-65.29587,-11.3131],[-65.29244,-11.32791],[-65.32746,-11.33262],[-65.33501,-11.3508],[-65.30823,-11.49483],[-65.29725,-11.50291],[-65.21828,-11.51838],[-65.21073,-11.53857],[-65.23064,-11.55404],[-65.22721,-11.61727],[-65.21828,-11.64686],[-65.26154,-11.702],[-65.24987,-11.72217],[-65.18532,-11.75579],[-65.1764,-11.74436],[-65.1867,-11.72419],[-65.12421,-11.71948],[-65.09675,-11.70335],[-65.08233,-11.72015],[-65.07958,-11.74234],[-65.06035,-11.77999],[-65.06241,-11.82233],[-65.07409,-11.85929],[-65.06447,-11.88012],[-65.03083,-11.88684],[-65.01503,-11.90028],[-65.02053,-11.9285],[-65.0425,-11.96141],[-65.04113,-11.97216],[-65.03289,-11.96612],[-65.02671,-11.97149],[-65.03701,-11.98425],[-65.03495,-11.99298],[-65.02053,-11.99903],[-65.00199,-11.99366],[-64.98551,-12.01381],[-64.97452,-12.01649],[-64.96422,-11.99769],[-64.94912,-11.99366],[-64.9292,-12.01985],[-64.91478,-12.02522],[-64.84955,-12.00843],[-64.82621,-12.02119],[-64.81179,-12.05141],[-64.81179,-12.06753],[-64.83376,-12.08096],[-64.84475,-12.09909],[-64.8317,-12.1199],[-64.8214,-12.11654],[-64.80217,-12.08431],[-64.75892,-12.10244],[-64.76647,-12.13802],[-64.7651,-12.15346],[-64.74793,-12.15413],[-64.73488,-12.1199],[-64.73969,-12.10244],[-64.71634,-12.08499],[-64.6978,-12.09573],[-64.71428,-12.12795],[-64.71497,-12.1642],[-64.69574,-12.18971],[-64.61197,-12.21521],[-64.57901,-12.21186],[-64.55636,-12.2387],[-64.53988,-12.23669],[-64.51241,-12.22259],[-64.5028,-12.23669],[-64.49524,-12.28097],[-64.50005,-12.32458],[-64.51584,-12.34604],[-64.50142,-12.36549],[-64.45954,-12.38763],[-64.43001,-12.42317],[-64.40323,-12.44865],[-64.35929,-12.46005],[-64.29337,-12.45737],[-64.29131,-12.46876],[-64.29955,-12.48955],[-64.29337,-12.50094],[-64.27826,-12.49759],[-64.23638,-12.45737],[-64.22883,-12.45468],[-64.21853,-12.46139],[-64.20891,-12.46139],[-64.19655,-12.47279],[-64.18282,-12.46541],[-64.17252,-12.46742],[-64.17458,-12.50363],[-64.16497,-12.51301],[-64.14711,-12.50161],[-64.14162,-12.47882],[-64.12926,-12.47681],[-64.12171,-12.49022],[-64.12308,-12.50564],[-64.09836,-12.48553],[-64.08944,-12.48351],[-64.08669,-12.49759],[-64.0757,-12.4996],[-64.06678,-12.48955],[-64.05373,-12.49491],[-64.04137,-12.51435],[-64.02215,-12.50899],[-64.01116,-12.5177],[-64.00017,-12.50296],[-63.95966,-12.52977],[-63.93837,-12.52575],[-63.91983,-12.50899],[-63.90404,-12.50698],[-63.89718,-12.50094],[-63.90061,-12.4815],[-63.89031,-12.46407],[-63.88962,-12.44798],[-63.87589,-12.44463],[-63.83332,-12.4634],[-63.81752,-12.44597],[-63.80448,-12.44597],[-63.78869,-12.42786],[-63.76465,-12.43993],[-63.73856,-12.43725],[-63.68638,-12.45066],[-63.67539,-12.46072],[-63.65548,-12.46407],[-63.62252,-12.47346],[-63.61496,-12.48553],[-63.59024,-12.49022],[-63.57583,-12.50094],[-63.55179,-12.50832],[-63.53119,-12.53982],[-63.51471,-12.55457],[-63.5051,-12.56596],[-63.47695,-12.5606],[-63.43575,-12.56596],[-63.4385,-12.58071],[-63.42751,-12.59612],[-63.43987,-12.60081],[-63.44056,-12.60684],[-63.41309,-12.60885],[-63.4021,-12.63364],[-63.37258,-12.65843],[-63.34992,-12.65776],[-63.33344,-12.66915],[-63.28606,-12.68389],[-63.25928,-12.68456],[-63.23937,-12.69059],[-63.23182,-12.68389],[-63.24486,-12.66513],[-63.2428,-12.66044],[-63.2325,-12.66446],[-63.21808,-12.65374],[-63.20023,-12.65441],[-63.18856,-12.64302],[-63.19748,-12.63029],[-63.19336,-12.62359],[-63.18238,-12.62962],[-63.17208,-12.64235],[-63.16178,-12.63498],[-63.16727,-12.61756],[-63.15629,-12.61555],[-63.15217,-12.63297],[-63.13775,-12.639],[-63.13912,-12.64503],[-63.12951,-12.64503],[-63.12264,-12.65508],[-63.11234,-12.6591],[-63.09929,-12.65508],[-63.09243,-12.66111],[-63.09792,-12.67719],[-63.09449,-12.68255],[-63.08007,-12.68389],[-63.06839,-12.68188],[-63.06359,-12.68791],[-63.06427,-12.69327],[-63.08144,-12.70599],[-63.08075,-12.72676],[-63.06977,-12.73011],[-63.05947,-12.72743],[-63.04505,-12.73881],[-63.03956,-12.76493],[-63.03406,-12.781],[-63.0217,-12.7877],[-63.02239,-12.80578],[-63.01072,-12.8098],[-63.01346,-12.82921],[-63.00728,-12.83993],[-62.98394,-12.84193],[-62.98188,-12.85465],[-62.97501,-12.85867],[-62.96196,-12.84461],[-62.95166,-12.84863],[-62.9496,-12.85666],[-62.94342,-12.85398],[-62.94068,-12.84461],[-62.91939,-12.84126],[-62.90635,-12.85398],[-62.89124,-12.858],[-62.89399,-12.87407],[-62.88025,-12.88879],[-62.87339,-12.90954],[-62.84317,-12.9236],[-62.85279,-12.94033],[-62.84661,-12.94702],[-62.83974,-12.94568],[-62.82944,-12.93497],[-62.8061,-12.941],[-62.80816,-12.96241],[-62.7958,-12.99319],[-62.78,-13.00925],[-62.75872,-13.01928],[-62.7491,-13.00055],[-62.74292,-13.00055],[-62.73468,-13.02062],[-62.72576,-13.0166],[-62.72782,-13.00791],[-62.72576,-13.00256],[-62.7134,-13.00389],[-62.70928,-12.99988],[-62.69898,-13.00256],[-62.69555,-12.99185],[-62.67357,-12.98784],[-62.65778,-12.96709],[-62.64611,-12.96509],[-62.64611,-12.97312],[-62.65229,-12.98449],[-62.64542,-12.99252],[-62.63649,-12.9885],[-62.62825,-12.98984],[-62.63375,-13.00858],[-62.62894,-13.01527],[-62.62139,-13.01594],[-62.60697,-13.01125],[-62.60079,-13.01393],[-62.61384,-13.02597],[-62.61315,-13.03868],[-62.54242,-13.07547],[-62.52388,-13.06611],[-62.50191,-13.08416],[-62.48406,-13.07681],[-62.48337,-13.05808],[-62.47513,-13.05607],[-62.47307,-13.07748],[-62.46621,-13.07815],[-62.45934,-13.0641],[-62.45385,-13.06744],[-62.46071,-13.08082],[-62.45522,-13.08751],[-62.44217,-13.07881],[-62.43256,-13.08416],[-62.43462,-13.09821],[-62.41471,-13.12563],[-62.39892,-13.11225],[-62.39686,-13.11627],[-62.39686,-13.12697],[-62.39274,-13.13365],[-62.38175,-13.13098],[-62.37832,-13.13766],[-62.35085,-13.14301],[-62.34673,-13.137],[-62.33918,-13.13766],[-62.34124,-13.14903],[-62.32956,-13.14101],[-62.32682,-13.14569],[-62.3227,-13.15171],[-62.31789,-13.13566],[-62.30622,-13.13833],[-62.30072,-13.1497],[-62.29386,-13.15037],[-62.29043,-13.139],[-62.28287,-13.14636],[-62.27738,-13.15572],[-62.24717,-13.14435],[-62.24305,-13.12897],[-62.24785,-13.11961],[-62.2403,-13.11426],[-62.23,-13.12162],[-62.22245,-13.11292],[-62.21489,-13.11092],[-62.20253,-13.12295],[-62.20116,-13.14903],[-62.19292,-13.15304],[-62.17713,-13.14034],[-62.18331,-13.12697],[-62.17782,-13.11493],[-62.16683,-13.1176],[-62.17164,-13.13165],[-62.16065,-13.14769],[-62.15172,-13.1497],[-62.15104,-13.16107],[-62.14554,-13.16107],[-62.13593,-13.14903],[-62.12426,-13.1497],[-62.1167,-13.15973],[-62.11602,-13.20586],[-62.10846,-13.2199],[-62.11052,-13.25198],[-62.1167,-13.258],[-62.09336,-13.28072],[-62.08512,-13.28272],[-62.08374,-13.29007],[-62.07482,-13.29342],[-62.0707,-13.29542],[-62.05765,-13.28807],[-62.05765,-13.31146],[-62.04667,-13.3148],[-62.03499,-13.33284],[-62.01989,-13.32749],[-62.01302,-13.33017],[-62.01577,-13.35021],[-62.00066,-13.36892],[-61.98487,-13.36624],[-61.97388,-13.37426],[-61.97731,-13.38762],[-61.9629,-13.38962],[-61.97113,-13.40566],[-61.95328,-13.40699],[-61.94916,-13.41434],[-61.93955,-13.40699],[-61.92925,-13.42636],[-61.90796,-13.43504],[-61.89972,-13.42569],[-61.89011,-13.43304],[-61.8805,-13.46509],[-61.88187,-13.49714],[-61.87088,-13.51183],[-61.86676,-13.52986],[-61.85372,-13.5372],[-61.84685,-13.52852],[-61.84136,-13.52786],[-61.84136,-13.54855],[-61.82282,-13.53386],[-61.81252,-13.53854],[-61.81801,-13.52719],[-61.79192,-13.53787],[-61.77681,-13.53119],[-61.77613,-13.51651],[-61.76857,-13.51784],[-61.76377,-13.53587],[-61.75621,-13.53921],[-61.75415,-13.53186],[-61.7569,-13.52452],[-61.74935,-13.51918],[-61.74592,-13.52385],[-61.7315,-13.52452],[-61.69579,-13.50783],[-61.69442,-13.49915],[-61.68549,-13.5085],[-61.66764,-13.50516],[-61.65322,-13.51651],[-61.64635,-13.51651],[-61.64566,-13.50649],[-61.62507,-13.5145],[-61.62644,-13.49848],[-61.62095,-13.49848],[-61.61614,-13.50916],[-61.60653,-13.5105],[-61.60172,-13.50315],[-61.58593,-13.50249],[-61.58593,-13.48846],[-61.57631,-13.48913],[-61.57357,-13.49381],[-61.57975,-13.50716],[-61.56876,-13.51918],[-61.55503,-13.51851],[-61.53649,-13.52786],[-61.53374,-13.53386],[-61.52207,-13.53653],[-61.50971,-13.54521],[-61.49186,-13.54922],[-61.47881,-13.55322],[-61.46851,-13.55589],[-61.41427,-13.53854],[-61.40397,-13.53787],[-61.40465,-13.52719],[-61.39367,-13.51985],[-61.35178,-13.52185],[-61.33942,-13.51584],[-61.33942,-13.50516],[-61.3044,-13.50182],[-61.30166,-13.4918],[-61.30578,-13.48246],[-61.2996,-13.47778],[-61.28655,-13.48379],[-61.28518,-13.50182],[-61.27694,-13.50649],[-61.26183,-13.49781],[-61.24466,-13.49915],[-61.24192,-13.5125],[-61.23162,-13.52452],[-61.222,-13.52986],[-61.20896,-13.52519],[-61.19179,-13.53587],[-61.18149,-13.52519],[-61.18767,-13.51517],[-61.18424,-13.5105],[-61.15746,-13.51584],[-61.14922,-13.53053],[-61.14647,-13.51851],[-61.14373,-13.5125],[-61.13686,-13.51784],[-61.13892,-13.52852],[-61.12587,-13.52051],[-61.10459,-13.53186],[-61.09978,-13.52852],[-61.10459,-13.51784],[-61.09429,-13.50382],[-61.09704,-13.49247],[-61.06476,-13.50249],[-61.05858,-13.5125],[-61.04004,-13.50649],[-61.03592,-13.49648],[-61.05172,-13.49247],[-61.04622,-13.48446],[-61.02562,-13.49114],[-61.01532,-13.48646],[-60.98855,-13.49848],[-60.99129,-13.50716],[-61.00159,-13.49848],[-61.00983,-13.50649],[-60.99816,-13.52585],[-61.00159,-13.53053],[-61.00846,-13.52118],[-61.01258,-13.52786],[-61.00502,-13.55055],[-60.9858,-13.54655],[-60.98511,-13.53854],[-60.97756,-13.53921],[-60.96932,-13.53587],[-60.95971,-13.54922],[-60.95215,-13.55055],[-60.93361,-13.54054],[-60.92057,-13.53987],[-60.91576,-13.54521],[-60.924,-13.55456],[-60.92263,-13.56791],[-60.90958,-13.58393],[-60.89035,-13.59527],[-60.88006,-13.6173],[-60.8622,-13.62464],[-60.84641,-13.63131],[-60.83748,-13.62731],[-60.82306,-13.63198],[-60.80796,-13.65333],[-60.7901,-13.65467],[-60.77088,-13.66401],[-60.77019,-13.68202],[-60.73998,-13.68602],[-60.70771,-13.69336],[-60.70427,-13.70537],[-60.69535,-13.71471],[-60.69741,-13.7007],[-60.68848,-13.69937],[-60.68505,-13.71604],[-60.65621,-13.73539],[-60.63149,-13.72738],[-60.62394,-13.72005],[-60.61158,-13.72738],[-60.61158,-13.73739],[-60.60128,-13.74739],[-60.59098,-13.74339],[-60.57724,-13.74806],[-60.57587,-13.75673],[-60.56626,-13.75606],[-60.56694,-13.76673],[-60.54772,-13.77874],[-60.54703,-13.76874],[-60.52231,-13.76807],[-60.51888,-13.77607],[-60.52918,-13.79074],[-60.50652,-13.79341],[-60.50034,-13.78808],[-60.49004,-13.79474],[-60.47081,-13.79274],[-60.46669,-13.80008],[-60.47974,-13.80075],[-60.48043,-13.80741],[-60.46807,-13.81341],[-60.47562,-13.82408],[-60.48455,-13.81675],[-60.49141,-13.82142],[-60.48111,-13.83275],[-60.47356,-13.82875],[-60.46669,-13.83142],[-60.49347,-13.85009],[-60.48935,-13.85875],[-60.47493,-13.85075],[-60.46738,-13.85809],[-60.4612,-13.85275],[-60.45639,-13.86075],[-60.46463,-13.86342],[-60.47562,-13.88075],[-60.46807,-13.89075],[-60.46326,-13.88142],[-60.45433,-13.88142],[-60.4509,-13.88475],[-60.45639,-13.89408],[-60.44884,-13.92941],[-60.42893,-13.94007],[-60.42069,-13.93674],[-60.41863,-13.9454],[-60.40833,-13.94807],[-60.41794,-13.95406],[-60.41794,-13.96073],[-60.42481,-13.96206],[-60.4152,-13.98005],[-60.3946,-13.97805],[-60.38704,-13.98138],[-60.38018,-13.99271],[-60.39597,-13.99404],[-60.40215,-13.99937],[-60.40078,-14.0127],[-60.40627,-14.02402],[-60.40558,-14.02935],[-60.42618,-14.048],[-60.43168,-14.06599],[-60.44404,-14.08331],[-60.46669,-14.09529],[-60.47013,-14.08797],[-60.47974,-14.09529],[-60.47425,-14.10928],[-60.48317,-14.11594],[-60.47425,-14.12726],[-60.48249,-14.13259],[-60.47562,-14.15789],[-60.48249,-14.16454],[-60.48867,-14.17187],[-60.49141,-14.18984],[-60.4715,-14.19384],[-60.46807,-14.21381],[-60.46395,-14.22246],[-60.46532,-14.23311],[-60.44884,-14.24243],[-60.44953,-14.25108],[-60.46532,-14.26572],[-60.45502,-14.3123],[-60.42481,-14.34756],[-60.39803,-14.36884],[-60.39528,-14.38813],[-60.40284,-14.38547],[-60.40352,-14.41407],[-60.39391,-14.43535],[-60.3843,-14.442],[-60.37743,-14.4666],[-60.36644,-14.46926],[-60.36026,-14.48256],[-60.3685,-14.48655],[-60.33967,-14.51048],[-60.34173,-14.53175],[-60.32868,-14.56232],[-60.32387,-14.60884],[-60.29366,-14.62478],[-60.27215,-14.6203],[-60.24507,-15.09718],[-60.57498,-15.09775],[-60.2391,-15.47452],[-60.17368,-16.26666],[-58.4307,-16.32267],[-58.42392,-16.31751],[-58.4095,-16.31059],[-58.40058,-16.30466],[-58.39406,-16.29543],[-58.39097,-16.27434],[-58.392,-16.27006],[-58.38959,-16.26247],[-58.36659,-16.27434],[-58.35423,-16.27071],[-58.34668,-16.27467],[-58.32779,-16.27038],[-58.32299,-16.26643],[-58.31784,-16.29181],[-58.30754,-16.30367],[-58.30342,-16.31026],[-58.30376,-16.33102],[-58.30685,-16.34024],[-58.30925,-16.36231],[-58.30719,-16.37154],[-58.31063,-16.37384],[-58.31612,-16.37286],[-58.31955,-16.37681],[-58.32848,-16.3801],[-58.33397,-16.38801],[-58.33638,-16.38933],[-58.34015,-16.38768],[-58.34427,-16.38933],[-58.34633,-16.39426],[-58.34427,-16.39492],[-58.34462,-16.39921],[-58.35663,-16.42588],[-58.34771,-16.45453],[-58.33432,-16.47791],[-58.33329,-16.48482],[-58.33397,-16.48943],[-58.34359,-16.51741],[-58.35389,-16.52333],[-58.35766,-16.52959],[-58.3865,-16.54341],[-58.39406,-16.5625],[-58.42152,-16.57303],[-58.42839,-16.58553],[-58.43628,-16.59244],[-58.46306,-16.65067],[-58.46032,-16.66646],[-58.47062,-16.70198],[-58.46718,-16.72039],[-58.46787,-16.73025],[-58.47405,-16.74341],[-58.46581,-16.75721],[-58.46375,-16.78022],[-58.45894,-16.78548],[-58.46238,-16.7914],[-58.47199,-16.79008],[-58.47611,-16.80849],[-58.4768,-16.82624],[-58.46238,-16.84004],[-58.46856,-16.84792],[-58.46238,-16.84858],[-58.46512,-16.85778],[-58.46032,-16.86238],[-58.4665,-16.8683],[-58.46444,-16.87224],[-58.46718,-16.88407],[-58.46581,-16.88801],[-58.46787,-16.89721],[-58.45963,-16.89983],[-58.4665,-16.91035],[-58.47336,-16.91297],[-58.46856,-16.9248],[-58.47542,-16.93268],[-58.46856,-16.94122],[-58.46032,-16.93794],[-58.45757,-16.93991],[-58.46169,-16.95436],[-58.461,-16.96487],[-58.45688,-16.96946],[-58.44864,-16.96815],[-58.4459,-16.97997],[-58.43216,-16.99048],[-58.42392,-16.98916],[-58.42736,-16.99901],[-58.43491,-17.00689],[-58.43422,-17.02659],[-58.42118,-17.0279],[-58.41637,-17.03447],[-58.42049,-17.03709],[-58.43148,-17.03644],[-58.43354,-17.04563],[-58.42324,-17.04891],[-58.43285,-17.05876],[-58.4301,-17.06992],[-58.43491,-17.07976],[-58.43422,-17.08501],[-58.4253,-17.09092],[-58.42873,-17.10536],[-58.42392,-17.11389],[-58.40676,-17.1093],[-58.39646,-17.10273],[-58.38822,-17.10864],[-58.38685,-17.11849],[-58.39715,-17.13686],[-58.39715,-17.18147],[-58.36693,-17.19853],[-58.36281,-17.21689],[-58.35663,-17.21099],[-58.34565,-17.23198],[-58.33947,-17.23394],[-58.33672,-17.24378],[-58.31955,-17.25493],[-58.32024,-17.26739],[-58.30376,-17.27001],[-58.30307,-17.27722],[-58.29209,-17.28706],[-58.29964,-17.29165],[-58.29827,-17.29886],[-58.29277,-17.30214],[-58.27767,-17.29886],[-58.27561,-17.30476],[-58.27836,-17.31459],[-58.27698,-17.32311],[-58.26394,-17.33032],[-58.26325,-17.34475],[-58.25707,-17.3454],[-58.25501,-17.35261],[-58.24677,-17.35326],[-58.2399,-17.34868],[-58.23304,-17.34999],[-58.22686,-17.34737],[-58.22823,-17.35523],[-58.21862,-17.35982],[-58.20351,-17.35523],[-58.19664,-17.36834],[-58.20008,-17.38145],[-58.19321,-17.38931],[-58.17536,-17.39193],[-58.1527,-17.38341],[-58.15201,-17.39914],[-58.14721,-17.41224],[-58.13073,-17.41027],[-58.1218,-17.41552],[-58.12043,-17.44631],[-58.08884,-17.46006],[-58.07305,-17.45286],[-58.06138,-17.45155],[-58.0497,-17.46203],[-58.04352,-17.49215],[-58.0291,-17.49674],[-58.0243,-17.49477],[-58.01743,-17.4987],[-58.01194,-17.4987],[-58.00507,-17.50525],[-57.99958,-17.50394],[-57.99889,-17.51442],[-57.99546,-17.51508],[-57.98035,-17.50984],[-57.97692,-17.50591],[-57.96387,-17.50067],[-57.88344,-17.44955],[-57.7523,-17.56447],[-57.76749,-17.55894],[-57.77848,-17.55763],[-57.7929,-17.55501],[-57.79496,-17.56418],[-57.78122,-17.57596],[-57.79152,-17.58513],[-57.77779,-17.58578],[-57.78534,-17.59494],[-57.77573,-17.59691],[-57.78466,-17.60738],[-57.78054,-17.61458],[-57.77298,-17.61065],[-57.77504,-17.6257],[-57.78466,-17.63748],[-57.77642,-17.65515],[-57.76268,-17.66006],[-57.74895,-17.6931],[-57.74071,-17.69342],[-57.73144,-17.71861],[-57.72492,-17.72122],[-57.72011,-17.72024],[-57.71016,-17.72973],[-57.72011,-17.77125],[-57.68544,-17.8059],[-57.68475,-17.83009],[-57.72217,-17.83107],[-57.59961,-18.04828],[-57.57489,-18.13215],[-57.50725,-18.19805],[-57.50313,-18.1974],[-57.50245,-18.19479],[-57.49421,-18.19935],[-57.49146,-18.20261],[-57.48322,-18.19674],[-57.4791,-18.20196],[-57.48185,-18.20783],[-57.47567,-18.20849],[-57.47361,-18.21435],[-57.47567,-18.21696],[-57.47017,-18.21827],[-57.46811,-18.22218],[-57.46331,-18.22349],[-57.46193,-18.22609],[-57.45644,-18.22479],[-57.4585,-18.2274],[-57.45438,-18.2287],[-57.45389,-18.23142],[-57.56028,-18.24145],[-57.76668,-18.89929],[-57.71984,-18.89907],[-57.71932,-18.97806],[-57.71256,-18.97773],[-57.70844,-18.98358],[-57.70363,-18.98682],[-57.70226,-18.99331],[-57.69677,-18.99656],[-57.69883,-19.00435],[-57.69865,-19.00727],[-57.69127,-19.01068],[-57.69711,-19.01117],[-57.69934,-19.01523],[-57.70174,-19.01685],[-57.70192,-19.01831],[-57.70466,-19.02058],[-57.70363,-19.02221],[-57.70569,-19.02302],[-57.70604,-19.02448],[-57.70724,-19.02529],[-57.70741,-19.02691],[-57.70861,-19.02788],[-57.70844,-19.03016],[-57.70998,-19.03162],[-57.71076,-19.03484],[-57.78332,-19.03508],[-58.13116,-19.75845],[-57.85924,-19.97079],[-57.86568,-19.98803],[-57.88731,-20.0153],[-57.90225,-20.04223],[-57.90688,-20.04255],[-57.92799,-20.02288],[-57.94671,-20.01836],[-57.95838,-20.02175],[-57.96627,-20.03062],[-57.97245,-20.04803],[-57.98705,-20.05852],[-58.02807,-20.05997],[-58.03408,-20.06464],[-58.03734,-20.07125],[-58.04696,-20.1043],[-58.05657,-20.10898],[-58.07253,-20.10495],[-58.09176,-20.10801],[-58.11545,-20.14589],[-58.13382,-20.15217],[-58.14961,-20.15201],[-58.15716,-20.15556],[-58.16798,-20.16958],[-58.17021,-20.16555],[-58.16866,-20.15427],[-58.1642,-20.14895],[-58.16025,-20.14412],[-58.14583,-20.13848],[-58.14412,-20.13525],[-58.14377,-20.12929],[-58.13776,-20.12236],[-58.14377,-20.09979],[-58.15476,-20.08496],[-58.15476,-20.07657],[-58.16163,-20.07657],[-58.16643,-20.04884],[-58.16163,-20.0482],[-58.15613,-20.04304],[-58.17536,-20.0282],[-58.17399,-20.01917],[-58.17811,-20.01465],[-58.17742,-19.99916],[-58.18634,-19.97206],[-58.19458,-19.9598],[-58.21518,-19.95399],[-58.19733,-19.92559],[-58.20145,-19.90041],[-58.2042,-19.89718],[-58.20145,-19.86231],[-58.18566,-19.84811],[-58.17536,-19.84294],[-58.17399,-19.83454],[-58.16386,-19.82732],[-58.2351,-19.77575],[-59.069,-19.28766],[-59.9749,-19.29449],[-60.60436,-19.45662],[-61.73506,-19.63441],[-61.92247,-20.08923],[-62.26636,-20.56316],[-62.26092,-21.05867],[-62.63814,-22.2313],[-62.63805,-22.23355],[-62.62688,-22.2389],[-62.61795,-22.25415],[-62.62825,-22.26114],[-62.62757,-22.27512],[-62.62963,-22.28719],[-62.62001,-22.27766],[-62.61521,-22.27957],[-62.61795,-22.30117],[-62.58843,-22.31705],[-62.58774,-22.30689],[-62.5644,-22.3107],[-62.56302,-22.31515],[-62.56852,-22.31959],[-62.57607,-22.32277],[-62.55684,-22.33547],[-62.5486,-22.33039],[-62.5383,-22.34436],[-62.54105,-22.35389],[-62.52869,-22.35834],[-62.528,-22.37104],[-62.52045,-22.37739],[-62.49917,-22.37612],[-62.47719,-22.36913],[-62.46895,-22.38627],[-62.46003,-22.38818],[-62.45865,-22.40469],[-62.44835,-22.40722],[-62.44217,-22.39643],[-62.43599,-22.40024],[-62.4408,-22.41294],[-62.43668,-22.42182],[-62.42432,-22.41992],[-62.41127,-22.44023],[-62.39548,-22.44023],[-62.39892,-22.45229],[-62.37008,-22.46054],[-62.37145,-22.45038],[-62.35772,-22.45736],[-62.35085,-22.45134],[-62.34055,-22.47703],[-62.32682,-22.4764],[-62.31514,-22.48846],[-62.2966,-22.4929],[-62.30004,-22.50178],[-62.29592,-22.51256],[-62.29043,-22.50939],[-62.29317,-22.50241],[-62.28562,-22.50051],[-62.27738,-22.52588],[-62.25609,-22.51954],[-62.25403,-22.53286],[-62.23755,-22.54301],[-62.24305,-22.56964],[-62.25884,-22.59563],[-62.27395,-22.60324],[-62.25335,-22.61402],[-62.23618,-22.61148],[-62.22725,-22.62669],[-62.22863,-22.63303],[-62.2197,-22.64761],[-62.20253,-22.64951],[-62.21558,-22.65584],[-62.20391,-22.68372],[-62.19704,-22.68879],[-62.19773,-22.69956],[-62.17576,-22.71413],[-62.1579,-22.76099],[-62.15104,-22.76162],[-62.13524,-22.77872],[-62.13662,-22.79138],[-62.12769,-22.80214],[-62.12151,-22.79518],[-62.12494,-22.79138],[-62.11396,-22.79075],[-62.10434,-22.82429],[-62.08374,-22.811],[-62.07139,-22.82366],[-62.07756,-22.84265],[-62.07139,-22.85277],[-62.05765,-22.83695],[-62.05971,-22.85277],[-62.05422,-22.86353],[-62.04186,-22.86606],[-62.03431,-22.88567],[-62.02401,-22.88314],[-62.01439,-22.90591],[-62.02469,-22.90591],[-62.03362,-22.92425],[-62.02401,-22.93184],[-61.99929,-22.92741],[-62.00409,-22.94133],[-62.00066,-22.98305],[-62.00753,-22.9919],[-61.99791,-22.99127],[-61.99105,-23.00454],[-61.98281,-23.0254],[-61.96907,-23.02982],[-61.9526,-23.04688],[-61.9162,-23.04815],[-61.92719,-23.07089],[-61.9162,-23.06268],[-61.88599,-23.069],[-61.87844,-23.081],[-61.85578,-23.08479],[-61.84411,-23.09995],[-61.84548,-23.10879],[-61.84067,-23.11195],[-61.82488,-23.12584],[-61.81733,-23.14857],[-61.79192,-23.16372],[-61.75347,-23.17193],[-61.73287,-23.21359],[-61.74042,-23.21485],[-61.73424,-23.24009],[-61.72257,-23.24324],[-61.71708,-23.23883],[-61.70815,-23.24261],[-61.69373,-23.25902],[-61.6745,-23.28046],[-61.6594,-23.28172],[-61.65116,-23.27226],[-61.60309,-23.28362],[-61.60035,-23.29497],[-61.58593,-23.28992],[-61.57906,-23.30127],[-61.56807,-23.30254],[-61.56121,-23.3101],[-61.56601,-23.32019],[-61.55228,-23.35109],[-61.53031,-23.34352],[-61.52344,-23.35046],[-61.51452,-23.34856],[-61.51452,-23.36054],[-61.52413,-23.36685],[-61.5207,-23.38134],[-61.50078,-23.40277],[-61.49323,-23.4223],[-61.48362,-23.41915],[-61.44722,-23.42608],[-61.41839,-23.44939],[-61.40259,-23.44624],[-61.38817,-23.45506],[-61.38611,-23.4475],[-61.36414,-23.45506],[-61.35247,-23.44687],[-61.34835,-23.46703],[-61.31882,-23.46703],[-61.30509,-23.48529],[-61.28106,-23.48655],[-61.26938,-23.51111],[-61.279,-23.51489],[-61.26801,-23.52874],[-61.24535,-23.5363],[-61.2426,-23.547],[-61.22338,-23.55392],[-61.17943,-23.54951],[-61.15059,-23.57847],[-61.13617,-23.58161],[-61.13068,-23.59231],[-61.10116,-23.60364],[-61.08811,-23.61307],[-61.0991,-23.62754],[-61.09017,-23.63635],[-61.09704,-23.65648],[-61.07918,-23.6722],[-61.08605,-23.67472],[-61.08948,-23.67849],[-61.06614,-23.70301],[-61.05858,-23.70616],[-61.04004,-23.73005],[-61.0421,-23.74136],[-61.01395,-23.75959],[-61.01807,-23.77215],[-60.9858,-23.81236],[-60.97687,-23.80671],[-60.96726,-23.80922],[-60.97069,-23.81613],[-60.95215,-23.81236],[-60.95696,-23.80483],[-60.95078,-23.80483],[-60.93911,-23.81048],[-60.93705,-23.80106],[-60.90958,-23.81299],[-60.90134,-23.82556],[-60.86701,-23.85193],[-60.85946,-23.84879],[-60.84435,-23.86952],[-60.80521,-23.87015],[-60.79079,-23.87831],[-60.79079,-23.87328],[-60.73517,-23.87956],[-60.73174,-23.88459],[-60.71663,-23.88082],[-60.69191,-23.90342],[-60.68367,-23.89526],[-60.65484,-23.90154],[-60.65415,-23.90656],[-60.63698,-23.90781],[-60.61364,-23.90216],[-60.59166,-23.91472],[-60.59029,-23.94296],[-60.58205,-23.95426],[-60.58823,-23.95677],[-60.57793,-23.96116],[-60.56008,-23.95489],[-60.55665,-23.96304],[-60.50721,-23.96744],[-60.48661,-23.95112],[-60.43923,-23.96493],[-60.41245,-23.98626],[-60.38842,-23.99504],[-60.37674,-24.02138],[-60.36576,-24.01888],[-60.33349,-24.02138],[-60.32525,-24.03205],[-60.27581,-24.04333],[-60.21744,-24.04521],[-60.15908,-24.04082],[-60.10689,-24.02703],[-60.10483,-24.01762],[-60.09179,-24.02389],[-60.07531,-24.0126],[-60.04784,-24.01323],[-60.03945,-24.01154],[-59.47378,-24.33426],[-59.469,-24.34085],[-59.47037,-24.34835],[-59.4587,-24.35648],[-59.45801,-24.37025],[-59.44909,-24.37775],[-59.44153,-24.39026],[-59.42643,-24.39464],[-59.42093,-24.40839],[-59.3969,-24.41089],[-59.38385,-24.42027],[-59.37493,-24.42027],[-59.36532,-24.44903],[-59.35845,-24.45465],[-59.35296,-24.47965],[-59.34128,-24.48903],[-59.32,-24.49153],[-59.31313,-24.50277],[-59.3042,-24.50152],[-59.29596,-24.51402],[-59.28223,-24.51902],[-59.27811,-24.51652],[-59.25751,-24.51964],[-59.24103,-24.54588],[-59.18541,-24.56337],[-59.18129,-24.57086],[-59.18061,-24.57586],[-59.15726,-24.58585],[-59.15314,-24.59896],[-59.13529,-24.60645],[-59.12911,-24.61769],[-59.11057,-24.62393],[-59.10096,-24.61769],[-59.07967,-24.62081],[-59.05701,-24.63267],[-59.05083,-24.64265],[-59.03573,-24.64702],[-59.02543,-24.6595],[-59.00551,-24.6595],[-58.99796,-24.66262],[-58.98491,-24.6595],[-58.97118,-24.66325],[-58.96637,-24.67136],[-58.94371,-24.68009],[-58.92724,-24.69507],[-58.9135,-24.69819],[-58.90458,-24.70442],[-58.88604,-24.72127],[-58.87917,-24.73374],[-58.87024,-24.7275],[-58.84827,-24.73499],[-58.82218,-24.76055],[-58.80982,-24.77053],[-58.76931,-24.77489],[-58.74527,-24.78051],[-58.72879,-24.77365],[-58.70957,-24.79858],[-58.70957,-24.80856],[-58.70339,-24.81354],[-58.68691,-24.81043],[-58.67318,-24.83037],[-58.65944,-24.82975],[-58.64846,-24.82414],[-58.63678,-24.82975],[-58.60863,-24.82975],[-58.58185,-24.82164],[-58.55095,-24.8285],[-58.52555,-24.85031],[-58.51387,-24.84345],[-58.50426,-24.84906],[-58.49396,-24.86028],[-58.47199,-24.86277],[-58.45139,-24.87834],[-58.44246,-24.87834],[-58.42873,-24.89765],[-58.43285,-24.91447],[-58.42804,-24.92256],[-58.41362,-24.92069],[-58.39165,-24.95183],[-58.34908,-24.9705],[-58.34015,-24.99602],[-58.32917,-24.99913],[-58.32299,-24.98917],[-58.31406,-24.98668],[-58.31406,-24.9842],[-58.29621,-24.9705],[-58.29003,-24.96303],[-58.2866,-24.95681],[-58.27767,-24.95432],[-58.25432,-24.93315],[-58.22617,-24.92754],[-58.22205,-24.93875],[-58.21244,-24.94996],[-58.20145,-24.95058],[-58.19115,-24.96988],[-58.16918,-24.96926],[-58.14995,-24.9761],[-58.15064,-24.98295],[-58.13965,-24.99042],[-58.13553,-25.01033],[-58.12043,-25.01531],[-58.11631,-25.0178],[-58.09365,-25.01033],[-58.07923,-25.02589],[-58.06893,-25.04393],[-58.05039,-25.03895],[-58.04284,-25.04331],[-58.02842,-25.03584],[-58.01262,-25.03833],[-58.00713,-25.03335],[-58.00438,-25.03958],[-57.99614,-25.0657],[-58.00026,-25.06757],[-57.99683,-25.07379],[-57.99065,-25.07938],[-57.97692,-25.08436],[-57.95701,-25.07379],[-57.95426,-25.07876],[-57.94327,-25.07565],[-57.93984,-25.07254],[-57.90825,-25.07441],[-57.90688,-25.07814],[-57.89521,-25.08063],[-57.88285,-25.0769],[-57.86019,-25.08498],[-57.84508,-25.11545],[-57.81968,-25.14218],[-57.77848,-25.15461],[-57.76886,-25.17077],[-57.75307,-25.17885],[-57.75307,-25.21551],[-57.75582,-25.21986],[-57.73728,-25.23911],[-57.73797,-25.25153],[-57.72698,-25.24843],[-57.73041,-25.25898],[-57.72149,-25.27451],[-57.71119,-25.27389],[-57.71187,-25.2832],[-57.69608,-25.28755],[-57.69677,-25.295],[-57.70501,-25.2981],[-57.69745,-25.30865],[-57.70226,-25.32169],[-57.69333,-25.32479],[-57.68647,-25.33224],[-57.67617,-25.34713],[-57.64939,-25.36699],[-57.64321,-25.38374],[-57.61162,-25.39056],[-57.57592,-25.42344],[-57.55944,-25.4563],[-57.56081,-25.47242],[-57.57729,-25.50403],[-57.57935,-25.52324],[-57.56974,-25.54121],[-57.58347,-25.56846],[-57.60407,-25.57032],[-57.61094,-25.60872],[-57.62261,-25.61677],[-57.63978,-25.61491],[-57.65969,-25.59571],[-57.67754,-25.59819],[-57.67136,-25.65205],[-57.67823,-25.6601],[-57.69196,-25.66134],[-57.72629,-25.64339],[-57.7517,-25.66072],[-57.76612,-25.69228],[-57.76062,-25.70899],[-57.73247,-25.70713],[-57.72629,-25.71703],[-57.77367,-25.75661],[-57.78672,-25.76156],[-57.82174,-25.75105],[-57.82723,-25.75971],[-57.81762,-25.78073],[-57.79496,-25.8135],[-57.81006,-25.84193],[-57.82517,-25.84872],[-57.85607,-25.8512],[-57.86637,-25.86602],[-57.85881,-25.88888],[-57.83684,-25.90556],[-57.83959,-25.91853],[-57.87255,-25.92779],[-57.89727,-25.9562],[-57.8547,-25.98953],[-57.85195,-26.00496],[-57.88834,-26.01545],[-57.91787,-26.00373],[-57.92611,-26.00743],[-57.92336,-26.01607],[-57.93023,-26.02717],[-57.92611,-26.03766],[-57.94877,-26.06727],[-57.98172,-26.08454],[-58.04146,-26.11167],[-58.06481,-26.10859],[-58.08884,-26.11352],[-58.09571,-26.13264],[-58.11631,-26.14866],[-58.11837,-26.18256],[-58.12455,-26.18687],[-58.13622,-26.18071],[-58.15545,-26.18009],[-58.15819,-26.18502],[-58.14583,-26.19611],[-58.10601,-26.21891],[-58.10532,-26.23492],[-58.1115,-26.24293],[-58.16437,-26.26387],[-58.16712,-26.29034],[-58.15545,-26.31004],[-58.15476,-26.33897],[-58.17467,-26.36235],[-58.21312,-26.38142],[-58.22342,-26.40479],[-58.21312,-26.42262],[-58.18772,-26.44783],[-58.18017,-26.4546],[-58.18634,-26.4632],[-58.22274,-26.46382],[-58.23372,-26.47058],[-58.23166,-26.4798],[-58.21038,-26.4927],[-58.209,-26.50254],[-58.22411,-26.53387],[-58.21587,-26.54861],[-58.19802,-26.56213],[-58.1939,-26.60327],[-58.20969,-26.61677],[-58.20832,-26.62721],[-58.19184,-26.63948],[-58.19596,-26.65237],[-58.2193,-26.65483],[-58.25295,-26.64133],[-58.266,-26.64869],[-58.25913,-26.66526],[-58.25295,-26.72844],[-58.24402,-26.75052],[-58.25432,-26.76156],[-58.27286,-26.76278],[-58.28591,-26.75481],[-58.29621,-26.76217],[-58.28248,-26.79037],[-58.30788,-26.8063],[-58.34771,-26.8063],[-58.35663,-26.81182],[-58.35114,-26.83265],[-58.31818,-26.84552],[-58.32161,-26.86267],[-58.33603,-26.87186],[-58.36831,-26.86329],[-58.38273,-26.8884],[-58.42461,-26.91167],[-58.4665,-26.91656],[-58.47336,-26.92085],[-58.48298,-26.93126],[-58.48504,-26.94901],[-58.47062,-26.98328],[-58.4713,-26.99919],[-58.47611,-27.00347],[-58.49259,-26.99858],[-58.51593,-26.99735],[-58.52143,-27.00959],[-58.50426,-27.03222],[-58.49877,-27.0524],[-58.51319,-27.06219],[-58.52005,-27.05852],[-58.51662,-27.04507],[-58.53447,-27.03222],[-58.56057,-27.03711],[-58.56057,-27.04935],[-58.55301,-27.06769],[-58.55851,-27.08787],[-58.55301,-27.1062],[-58.56057,-27.11171],[-58.57361,-27.10743],[-58.63953,-27.1166],[-58.65326,-27.13371],[-58.66356,-27.17892],[-58.65326,-27.19602],[-58.59833,-27.21922],[-58.59147,-27.23388],[-58.59421,-27.24975],[-58.5949,-27.26684],[-58.61001,-27.28454],[-58.60589,-27.29735],[-58.57224,-27.30102],[-58.52829,-27.29613],[-58.44452,-27.2644],[-58.37517,-27.27661],[-58.27218,-27.24609],[-58.16437,-27.25647],[-58.14652,-27.2583],[-58.12798,-27.26928],[-58.09227,-27.2583],[-58.05794,-27.26196],[-57.99134,-27.2644],[-57.94396,-27.28881],[-57.92679,-27.28393],[-57.91993,-27.2943],[-57.90139,-27.2882],[-57.88765,-27.29308],[-57.85607,-27.29613],[-57.83066,-27.31871],[-57.75513,-27.3181],[-57.72423,-27.32725],[-57.64801,-27.35897],[-57.59926,-27.38458],[-57.55875,-27.38336],[-57.54708,-27.39128],[-57.52648,-27.39494],[-57.40769,-27.40835],[-57.31705,-27.4175],[-57.24427,-27.4565],[-57.23877,-27.45345],[-57.21405,-27.46929],[-57.1296,-27.48696],[-57.0472,-27.48269],[-56.99295,-27.4632],[-56.98746,-27.44614],[-56.95176,-27.43639],[-56.94901,-27.42786],[-56.90644,-27.41993],[-56.8927,-27.42481],[-56.88103,-27.41689],[-56.75812,-27.49792],[-56.72379,-27.49183],[-56.72104,-27.46746],[-56.605,-27.42847],[-56.53359,-27.45954],[-56.4608,-27.5649],[-56.41205,-27.58133],[-56.37154,-27.57525],[-56.36261,-27.54116],[-56.3015,-27.49427],[-56.28365,-27.44492],[-56.3015,-27.41445],[-56.19988,-27.37604],[-56.14495,-27.30285],[-56.04744,-27.30712],[-55.98015,-27.34067],[-55.93003,-27.32176],[-55.8751,-27.35592],[-55.83046,-27.43334],[-55.73021,-27.44431],[-55.7103,-27.40652],[-55.67666,-27.37421],[-55.62928,-27.35592],[-55.58876,-27.32237],[-55.60181,-27.27966],[-55.57984,-27.26562],[-55.57641,-27.24059],[-55.62722,-27.1948],[-55.61005,-27.16181],[-55.58739,-27.16181],[-55.57984,-27.16914],[-55.56679,-27.16609],[-55.56267,-27.10682],[-55.51598,-27.10437],[-55.4741,-27.11232],[-55.45075,-27.0952],[-55.45556,-27.05363],[-55.43358,-27.00286],[-55.37865,-26.96553],[-55.30724,-26.96309],[-55.27497,-26.94228],[-55.25506,-26.93799],[-55.2118,-26.96676],[-55.19875,-26.97104],[-55.14039,-26.95085],[-55.13146,-26.94166],[-55.13146,-26.93187],[-55.15069,-26.8933],[-55.14245,-26.86696],[-55.11017,-26.84307],[-55.09026,-26.8351],[-55.06211,-26.8014],[-55.02228,-26.78914],[-54.97696,-26.79098],[-54.95636,-26.78179],[-54.94606,-26.75665],[-54.94469,-26.72538],[-54.944,-26.68367],[-54.90075,-26.66403],[-54.85955,-26.65667],[-54.83139,-26.67446],[-54.8156,-26.67017],[-54.78745,-26.63089],[-54.7847,-26.60756],[-54.80736,-26.56028],[-54.79226,-26.52158],[-54.77372,-26.50315],[-54.75106,-26.49393],[-54.73526,-26.47427],[-54.70849,-26.45091],[-54.69613,-26.42754],[-54.69956,-26.38019],[-54.66248,-26.33035],[-54.64875,-26.3125],[-54.66317,-26.28726],[-54.67896,-26.27495],[-54.67827,-26.25894],[-54.62471,-26.22199],[-54.61853,-26.21275],[-54.62609,-26.19611],[-54.65905,-26.17701],[-54.67278,-26.15544],[-54.67209,-26.1388],[-54.64943,-26.11414],[-54.64325,-26.09194],[-54.64943,-26.06727],[-54.67896,-26.0136],[-54.67965,-25.99323],[-54.66866,-25.98151],[-54.64943,-25.97842],[-54.62265,-25.98336],[-54.6103,-25.97595],[-54.60686,-25.96114],[-54.61853,-25.94323],[-54.62334,-25.91606],[-54.61167,-25.88641],[-54.59725,-25.86232],[-54.58695,-25.83266],[-54.59176,-25.81844],[-54.61922,-25.78939],[-54.63364,-25.76218],[-54.6357,-25.73187],[-54.6563,-25.68919],[-54.65493,-25.66815],[-54.63845,-25.65948],[-54.61991,-25.66196],[-54.59656,-25.66876],[-54.5842,-25.66443],[-54.58077,-25.65453],[-54.58626,-25.64896],[-54.59656,-25.62482],[-54.5945,-25.592],[-54.58283,-25.59262],[-54.57459,-25.59138],[-54.56635,-25.59138],[-54.55605,-25.58704],[-54.53545,-25.59819],[-54.53476,-25.60686],[-54.53751,-25.61677],[-54.5279,-25.62667],[-54.51554,-25.62358],[-54.50386,-25.61429],[-54.49425,-25.61677],[-54.48327,-25.62667],[-54.46679,-25.63967],[-54.44825,-25.66072],[-54.44069,-25.68609],[-54.43451,-25.69414],[-54.42696,-25.6929],[-54.42627,-25.65948],[-54.38851,-25.63039],[-54.39194,-25.60376],[-54.37615,-25.59386],[-54.34662,-25.60624],[-54.3274,-25.5697],[-54.28757,-25.55546],[-54.25118,-25.59571],[-54.23882,-25.5951],[-54.23607,-25.56537],[-54.22646,-25.56351],[-54.20037,-25.58147],[-54.17702,-25.58457],[-54.17359,-25.57466],[-54.1832,-25.56475],[-54.20861,-25.55422],[-54.20792,-25.54059],[-54.19144,-25.53377],[-54.16398,-25.54121],[-54.10904,-25.49349],[-54.09462,-25.49659],[-54.09531,-25.51394],[-54.1214,-25.55608],[-54.12415,-25.57156],[-54.09943,-25.61924],[-54.08982,-25.61429],[-54.08364,-25.56041],[-54.07334,-25.55917],[-54.04999,-25.58457],[-54.02596,-25.56537],[-54.00948,-25.56599],[-53.99918,-25.58209],[-53.98888,-25.5889],[-53.96965,-25.60191],[-53.97858,-25.605],[-53.97583,-25.61553],[-53.96553,-25.61119],[-53.95936,-25.62977],[-53.96347,-25.63596],[-53.9621,-25.64339],[-53.95249,-25.64648],[-53.94562,-25.63225],[-53.95455,-25.62358],[-53.94768,-25.61986],[-53.94837,-25.61181],[-53.94219,-25.61119],[-53.94082,-25.61986],[-53.93326,-25.62234],[-53.92708,-25.62048],[-53.91747,-25.61615],[-53.91541,-25.6211],[-53.92159,-25.63163],[-53.91404,-25.62853],[-53.91335,-25.63596],[-53.90992,-25.63534],[-53.90786,-25.63163],[-53.89412,-25.62172],[-53.88932,-25.62605],[-53.89138,-25.62977],[-53.89481,-25.64215],[-53.88726,-25.64401],[-53.8797,-25.63967],[-53.87627,-25.64586],[-53.88314,-25.64834],[-53.89,-25.65948],[-53.88726,-25.66072],[-53.87627,-25.65391],[-53.86254,-25.65824],[-53.85567,-25.67372],[-53.85979,-25.67867],[-53.85498,-25.68362],[-53.84194,-25.68733],[-53.8543,-25.69104],[-53.85087,-25.70465],[-53.85636,-25.70589],[-53.85979,-25.70032],[-53.87284,-25.6929],[-53.86528,-25.70342],[-53.87833,-25.70775],[-53.86803,-25.7195],[-53.86254,-25.71641],[-53.85842,-25.72507],[-53.86391,-25.73002],[-53.86597,-25.74486],[-53.84881,-25.74053],[-53.84469,-25.7461],[-53.83507,-25.74919],[-53.84125,-25.75167],[-53.83919,-25.76156],[-53.84812,-25.75785],[-53.85636,-25.76774],[-53.83851,-25.77269],[-53.83233,-25.78011],[-53.83439,-25.78629],[-53.84331,-25.79],[-53.82409,-25.79124],[-53.82134,-25.7999],[-53.82752,-25.8036],[-53.82889,-25.80855],[-53.82065,-25.81102],[-53.82134,-25.81659],[-53.83164,-25.81288],[-53.83782,-25.81782],[-53.83507,-25.824],[-53.84469,-25.82771],[-53.85018,-25.84007],[-53.84881,-25.84316],[-53.84194,-25.84069],[-53.8337,-25.8512],[-53.84537,-25.85861],[-53.84194,-25.86108],[-53.83439,-25.85799],[-53.83645,-25.86726],[-53.82203,-25.87159],[-53.83027,-25.879],[-53.83851,-25.87776],[-53.83919,-25.88209],[-53.85155,-25.88332],[-53.84743,-25.8895],[-53.83507,-25.88641],[-53.83507,-25.89506],[-53.81928,-25.89753],[-53.82134,-25.90309],[-53.83507,-25.90988],[-53.83301,-25.91668],[-53.82821,-25.9105],[-53.81859,-25.91297],[-53.8234,-25.91791],[-53.81997,-25.92718],[-53.82615,-25.92718],[-53.83301,-25.92162],[-53.83164,-25.93088],[-53.84263,-25.9315],[-53.83919,-25.95373],[-53.82889,-25.96175],[-53.83439,-25.96669],[-53.83713,-25.97287],[-53.81447,-25.97904],[-53.81859,-25.98336],[-53.81722,-25.98891],[-53.80967,-25.99015],[-53.80623,-25.98583],[-53.80005,-25.99015],[-53.80486,-25.99509],[-53.79868,-26.00126],[-53.79181,-25.99755],[-53.79181,-26.00619],[-53.77877,-26.0099],[-53.78357,-26.01483],[-53.77739,-26.01669],[-53.78014,-26.02286],[-53.77327,-26.02532],[-53.7719,-26.03149],[-53.76435,-26.03581],[-53.76023,-26.03026],[-53.75473,-26.03334],[-53.75885,-26.0389],[-53.75473,-26.04198],[-53.7513,-26.0389],[-53.74718,-26.04507],[-53.74375,-26.04013],[-53.73551,-26.04322],[-53.72658,-26.06542],[-53.73894,-26.07961],[-53.73757,-26.09934],[-53.74306,-26.10921],[-53.74169,-26.11661],[-53.72315,-26.12894],[-53.7156,-26.12647],[-53.69912,-26.15298],[-53.68195,-26.16345],[-53.65242,-26.19488],[-53.65174,-26.20535],[-53.64006,-26.21398],[-53.65311,-26.23677],[-53.63835,-26.25032],[-53.64659,-26.24847],[-53.64212,-26.26202],[-53.6459,-26.27772],[-53.64693,-26.28788],[-53.65242,-26.29157],[-53.67714,-26.33527],[-53.68676,-26.33712],[-53.68882,-26.3525],[-53.69362,-26.3525],[-53.69156,-26.35989],[-53.69912,-26.36481],[-53.70324,-26.37281],[-53.69843,-26.37773],[-53.70186,-26.38695],[-53.70942,-26.38818],[-53.70667,-26.39556],[-53.69637,-26.40295],[-53.6998,-26.40725],[-53.70667,-26.40787],[-53.70461,-26.41463],[-53.69019,-26.43],[-53.68744,-26.44107],[-53.70186,-26.44168],[-53.70118,-26.45029],[-53.69568,-26.45828],[-53.69774,-26.4675],[-53.70392,-26.4632],[-53.7156,-26.47058],[-53.70873,-26.47488],[-53.70804,-26.48103],[-53.70118,-26.47304],[-53.695,-26.47549],[-53.6998,-26.4798],[-53.69431,-26.49024],[-53.70118,-26.48963],[-53.70667,-26.50008],[-53.70324,-26.50807],[-53.71491,-26.50376],[-53.7204,-26.50684],[-53.72727,-26.49946],[-53.73002,-26.51421],[-53.72452,-26.52588],[-53.71834,-26.52465],[-53.71697,-26.52834],[-53.72384,-26.53203],[-53.71972,-26.53633],[-53.72178,-26.54247],[-53.73139,-26.53817],[-53.74169,-26.5437],[-53.72727,-26.54984],[-53.72521,-26.55783],[-53.73482,-26.55967],[-53.7362,-26.56704],[-53.71354,-26.55476],[-53.70736,-26.56274],[-53.72109,-26.56397],[-53.72521,-26.58792],[-53.73345,-26.58608],[-53.7307,-26.60572],[-53.73551,-26.60879],[-53.72933,-26.618],[-53.73345,-26.62966],[-53.741,-26.62905],[-53.73963,-26.64194],[-53.7513,-26.63519],[-53.76023,-26.6401],[-53.74306,-26.6493],[-53.73482,-26.64685],[-53.73276,-26.6536],[-53.7259,-26.6579],[-53.72521,-26.64808],[-53.72178,-26.64992],[-53.71903,-26.6671],[-53.72727,-26.66771],[-53.73276,-26.67692],[-53.71697,-26.68121],[-53.72727,-26.69287],[-53.74238,-26.67999],[-53.74238,-26.69041],[-53.73345,-26.69962],[-53.73414,-26.71802],[-53.74855,-26.71924],[-53.75405,-26.70882],[-53.75817,-26.72108],[-53.74306,-26.72844],[-53.74993,-26.73826],[-53.73757,-26.74132],[-53.73345,-26.7309],[-53.72727,-26.74194],[-53.71491,-26.74929],[-53.71834,-26.75849],[-53.7307,-26.76462],[-53.74169,-26.75972],[-53.74375,-26.76462],[-53.73276,-26.7732],[-53.7156,-26.7732],[-53.71285,-26.76585],[-53.69843,-26.76891],[-53.70873,-26.7732],[-53.71628,-26.78117],[-53.7101,-26.79711],[-53.70049,-26.79711],[-53.69774,-26.81121],[-53.69912,-26.81366],[-53.71079,-26.80814],[-53.7101,-26.81366],[-53.70049,-26.81795],[-53.69019,-26.83756],[-53.695,-26.84552],[-53.68126,-26.84246],[-53.67302,-26.85103],[-53.66066,-26.85532],[-53.66272,-26.86512],[-53.69637,-26.859],[-53.67989,-26.86941],[-53.68813,-26.87186],[-53.69568,-26.88717],[-53.67096,-26.89391],[-53.6792,-26.90064],[-53.68058,-26.90983],[-53.67302,-26.91228],[-53.69637,-26.9282],[-53.67096,-26.94105],[-53.67371,-26.94656],[-53.70667,-26.93309],[-53.71079,-26.93922],[-53.70118,-26.95391],[-53.7101,-26.96492],[-53.72658,-26.96003],[-53.7307,-26.97288],[-53.73757,-26.9741],[-53.71697,-26.98695],[-53.7259,-26.99307],[-53.74238,-26.99124],[-53.73345,-27.0047],[-53.74032,-27.01509],[-53.7513,-27.00653],[-53.76366,-27.00775],[-53.74855,-27.02305],[-53.74718,-27.031],[-53.75954,-27.03345],[-53.76229,-27.04445],[-53.77808,-27.02794],[-53.78563,-27.02549],[-53.77671,-27.04873],[-53.75885,-27.05974],[-53.76366,-27.06647],[-53.79593,-27.04078],[-53.80143,-27.03895],[-53.79662,-27.05913],[-53.7822,-27.07136],[-53.77259,-27.07258],[-53.78014,-27.07808],[-53.79662,-27.06708],[-53.80623,-27.08114],[-53.77739,-27.10315],[-53.79593,-27.11109],[-53.80417,-27.10743],[-53.8131,-27.09581],[-53.81859,-27.10254],[-53.80692,-27.11293],[-53.80623,-27.12515],[-53.81447,-27.12882],[-53.82546,-27.12698],[-53.82409,-27.13371],[-53.81791,-27.13921],[-53.80005,-27.13554],[-53.79937,-27.14532],[-53.82683,-27.14471],[-53.83645,-27.15387],[-53.83233,-27.16487],[-53.83851,-27.1667],[-53.85018,-27.15082],[-53.86391,-27.12637],[-53.88176,-27.12821],[-53.88932,-27.15326],[-53.90236,-27.17403],[-53.91884,-27.17342],[-53.93464,-27.15448],[-53.95249,-27.15387],[-53.96073,-27.16303],[-53.95936,-27.19235],[-53.97171,-27.19785],[-53.99781,-27.19541],[-54.01154,-27.2009],[-54.01703,-27.23937],[-54.03008,-27.25463],[-54.05411,-27.26257],[-54.07471,-27.2943],[-54.09737,-27.30285],[-54.15642,-27.29674],[-54.15848,-27.28454],[-54.15574,-27.27783],[-54.1578,-27.25952],[-54.17016,-27.25341],[-54.18663,-27.26562],[-54.19281,-27.29308],[-54.19281,-27.30773],[-54.21273,-27.3486],[-54.21547,-27.38458],[-54.26217,-27.39677],[-54.26903,-27.41384],[-54.2656,-27.43395],[-54.28277,-27.44675],[-54.29581,-27.44431],[-54.32671,-27.40652],[-54.34113,-27.40226],[-54.3425,-27.41628],[-54.33358,-27.44675],[-54.33838,-27.4632],[-54.35555,-27.46686],[-54.39126,-27.4181],[-54.41323,-27.40652],[-54.43451,-27.42237],[-54.46541,-27.42298],[-54.47159,-27.43151],[-54.44275,-27.46015],[-54.4455,-27.47112],[-54.47091,-27.48026],[-54.50592,-27.47965],[-54.52309,-27.50523],[-54.53614,-27.50401],[-54.54781,-27.47782],[-54.5794,-27.45284],[-54.59382,-27.46381],[-54.6,-27.49549],[-54.61785,-27.53568],[-54.63364,-27.54542],[-54.64875,-27.53933],[-54.65905,-27.5101],[-54.67484,-27.50523],[-54.67827,-27.53507],[-54.67278,-27.56855],[-54.68102,-27.57403],[-54.7435,-27.56186],[-54.76273,-27.58316],[-54.78333,-27.58012],[-54.79638,-27.53202],[-54.81217,-27.53142],[-54.82865,-27.56612],[-54.84925,-27.62149],[-54.86573,-27.62758],[-54.89525,-27.62758],[-54.9083,-27.64279],[-54.90418,-27.7267],[-54.94194,-27.77349],[-54.97422,-27.77531],[-54.98246,-27.77106],[-54.99619,-27.77956],[-55.00443,-27.79596],[-55.02846,-27.79293],[-55.05661,-27.76741],[-55.07653,-27.77652],[-55.08271,-27.79657],[-55.02778,-27.82997],[-55.02434,-27.84576],[-55.03602,-27.85912],[-55.08957,-27.84333],[-55.12665,-27.85851],[-55.12322,-27.88886],[-55.13627,-27.89796],[-55.17884,-27.85912],[-55.20424,-27.85912],[-55.25437,-27.92162],[-55.27771,-27.93194],[-55.31479,-27.92162],[-55.33265,-27.93619],[-55.33745,-27.96773],[-55.38277,-27.98046],[-55.36835,-28.02714],[-55.42466,-28.0629],[-55.44457,-28.09622],[-55.46723,-28.09198],[-55.49126,-28.07562],[-55.51049,-28.11196],[-55.5407,-28.12165],[-55.55237,-28.1598],[-55.56336,-28.16343],[-55.58945,-28.14588],[-55.58396,-28.12347],[-55.597,-28.11439],[-55.62035,-28.12953],[-55.62928,-28.17251],[-55.65743,-28.18522],[-55.70137,-28.22032],[-55.77897,-28.24452],[-55.78103,-28.26387],[-55.77004,-28.27476],[-55.72884,-28.29108],[-55.67391,-28.32615],[-55.66979,-28.34005],[-55.6897,-28.39201],[-55.69176,-28.41496],[-55.70069,-28.42583],[-55.71785,-28.421],[-55.73433,-28.38053],[-55.76661,-28.36845],[-55.82154,-28.36422],[-55.86136,-28.35274],[-55.88128,-28.36724],[-55.90256,-28.40288],[-55.88059,-28.47171],[-55.89089,-28.48016],[-55.95063,-28.49404],[-56.01105,-28.5037],[-56.02753,-28.53326],[-56.00213,-28.58091],[-56.00625,-28.60502],[-56.04676,-28.62311],[-56.1319,-28.6924],[-56.18546,-28.76827],[-56.21224,-28.77308],[-56.26374,-28.7791],[-56.29876,-28.80437],[-56.29876,-28.88858],[-56.34201,-28.93846],[-56.40175,-28.9667],[-56.41686,-28.99613],[-56.39901,-29.01595],[-56.42235,-29.07538],[-56.50956,-29.09158],[-56.54526,-29.11498],[-56.58646,-29.11558],[-56.65169,-29.22051],[-56.64895,-29.25885],[-56.71349,-29.36543],[-56.7698,-29.37859],[-56.78078,-29.43841],[-56.80962,-29.47727],[-56.90506,-29.53583],[-56.99433,-29.63436],[-57.07261,-29.72563],[-57.15912,-29.77928],[-57.22367,-29.77869],[-57.29714,-29.83588],[-57.33078,-29.88471],[-57.32872,-29.98349],[-57.36649,-30.01382],[-57.42074,-30.04176],[-57.46056,-30.0994],[-57.53472,-30.15641],[-57.60201,-30.17838],[-57.61162,-30.18787],[-57.57729,-30.20212],[-57.55669,-30.21399],[-57.56836,-30.25314],[-57.56562,-30.26085],[-57.54845,-30.2733],[-57.52442,-30.28516],[-57.4997,-30.28754],[-57.48734,-30.26737],[-57.46193,-30.265],[-57.45369,-30.27508],[-57.4173,-30.27805],[-57.42074,-30.30117],[-57.40632,-30.30117],[-57.39327,-30.30591],[-57.38366,-30.28694],[-57.3658,-30.27153],[-57.35756,-30.2733],[-57.35756,-30.2822],[-57.35413,-30.28457],[-57.32254,-30.27212],[-57.31705,-30.25848],[-57.31087,-30.25848],[-57.29989,-30.27449],[-57.28341,-30.29406],[-57.26967,-30.28398],[-57.26967,-30.27212],[-57.26143,-30.26678],[-57.25319,-30.2739],[-57.25594,-30.28101],[-57.24907,-30.28931],[-57.21817,-30.28813],[-57.20444,-30.28398],[-57.1962,-30.265],[-57.17766,-30.25077],[-57.16736,-30.2478],[-57.16874,-30.24306],[-57.16324,-30.24187],[-57.155,-30.23416],[-57.16668,-30.22348],[-57.16599,-30.195],[-57.15912,-30.19203],[-57.15912,-30.18431],[-57.14402,-30.17244],[-57.1447,-30.16532],[-57.13578,-30.1576],[-57.1296,-30.14157],[-57.12273,-30.14098],[-57.11792,-30.14513],[-57.10625,-30.13622],[-57.10488,-30.12494],[-57.10831,-30.12494],[-57.11106,-30.1285],[-57.11586,-30.12078],[-57.11518,-30.11366],[-57.09733,-30.11366],[-57.09527,-30.12078],[-57.08909,-30.12078],[-57.08359,-30.11069],[-57.09252,-30.11187],[-57.08634,-30.10059],[-57.07055,-30.08514],[-57.06093,-30.08811],[-57.0678,-30.0893],[-57.06849,-30.09999],[-57.05887,-30.09821],[-57.05132,-30.10059],[-57.0472,-30.10475],[-57.03072,-30.10118],[-57.02935,-30.09108],[-57.02385,-30.08633],[-56.9957,-30.08633],[-56.98266,-30.08871],[-56.97716,-30.09762],[-56.95656,-30.10118],[-56.93459,-30.09346],[-56.91742,-30.09702],[-56.91193,-30.10296],[-56.91605,-30.1089],[-56.90712,-30.10653],[-56.90438,-30.11366],[-56.89133,-30.09999],[-56.88996,-30.08752],[-56.87485,-30.08692],[-56.87279,-30.09405],[-56.86318,-30.08989],[-56.84739,-30.08989],[-56.82335,-30.09584],[-56.81923,-30.10653],[-56.81305,-30.10831],[-56.81031,-30.10296],[-56.80344,-30.10831],[-56.80138,-30.12078],[-56.78009,-30.12553],[-56.77872,-30.13919],[-56.78559,-30.14988],[-56.77529,-30.16472],[-56.76087,-30.15938],[-56.72928,-30.17125],[-56.71967,-30.18016],[-56.7128,-30.176],[-56.70456,-30.176],[-56.70868,-30.18906],[-56.6977,-30.20449],[-56.6819,-30.19322],[-56.67778,-30.19974],[-56.66131,-30.19737],[-56.65238,-30.20627],[-56.64757,-30.2039],[-56.6462,-30.20805],[-56.66748,-30.21636],[-56.66337,-30.22111],[-56.65032,-30.21992],[-56.64277,-30.23416],[-56.6256,-30.24543],[-56.63178,-30.25373],[-56.63933,-30.25433],[-56.63933,-30.25848],[-56.62766,-30.26678],[-56.61461,-30.26085],[-56.60775,-30.2822],[-56.62079,-30.29228],[-56.61942,-30.30058],[-56.60569,-30.29228],[-56.59813,-30.29584],[-56.57547,-30.28931],[-56.57685,-30.30414],[-56.56311,-30.31184],[-56.55831,-30.32014],[-56.54732,-30.31184],[-56.5432,-30.31362],[-56.54046,-30.32785],[-56.53634,-30.33555],[-56.55144,-30.34029],[-56.54526,-30.35333],[-56.5487,-30.35925],[-56.51917,-30.35985],[-56.50544,-30.36933],[-56.5075,-30.38177],[-56.49582,-30.38769],[-56.49102,-30.39835],[-56.48346,-30.39953],[-56.47797,-30.38947],[-56.46149,-30.38532],[-56.45668,-30.39243],[-56.45462,-30.4025],[-56.44364,-30.41197],[-56.45462,-30.42263],[-56.4457,-30.425],[-56.44089,-30.4321],[-56.42785,-30.43388],[-56.41755,-30.43033],[-56.4148,-30.43743],[-56.40656,-30.44749],[-56.39763,-30.44749],[-56.40175,-30.45992],[-56.40725,-30.45992],[-56.40587,-30.4688],[-56.40175,-30.47531],[-56.39695,-30.46999],[-56.3942,-30.48419],[-56.3839,-30.49129],[-56.38939,-30.49425],[-56.37978,-30.50076],[-56.36467,-30.50312],[-56.35987,-30.49721],[-56.36467,-30.49543],[-56.36467,-30.49247],[-56.35918,-30.4907],[-56.35025,-30.49721],[-56.34819,-30.50431],[-56.33584,-30.51259],[-56.33446,-30.51673],[-56.33652,-30.52264],[-56.32966,-30.52915],[-56.31043,-30.53033],[-56.29326,-30.52146],[-56.28777,-30.52738],[-56.29052,-30.52915],[-56.28846,-30.54216],[-56.27953,-30.55221],[-56.28159,-30.55931],[-56.27472,-30.5599],[-56.26648,-30.55399],[-56.25618,-30.56522],[-56.26168,-30.57232],[-56.26236,-30.58532],[-56.25344,-30.58769],[-56.25,-30.57586],[-56.23627,-30.5735],[-56.22597,-30.57882],[-56.22391,-30.58532],[-56.2349,-30.5865],[-56.23421,-30.59301],[-56.2246,-30.59714],[-56.22185,-30.6066],[-56.21499,-30.60955],[-56.19164,-30.60424],[-56.17104,-30.61428],[-56.17173,-30.62019],[-56.18271,-30.62374],[-56.18134,-30.6326],[-56.16486,-30.64146],[-56.17035,-30.65328],[-56.16349,-30.6704],[-56.15181,-30.67985],[-56.13877,-30.68281],[-56.13877,-30.68812],[-56.14907,-30.69284],[-56.15044,-30.70583],[-56.13739,-30.71115],[-56.13053,-30.71882],[-56.12847,-30.74007],[-56.1065,-30.73122],[-56.0962,-30.75305],[-56.08521,-30.756],[-56.07354,-30.74597],[-56.06324,-30.75305],[-56.06667,-30.76308],[-56.06392,-30.7737],[-56.03783,-30.77665],[-56.03577,-30.78314],[-56.02272,-30.7855],[-56.02204,-30.7914],[-56.02478,-30.79966],[-56.01311,-30.80615],[-56.01723,-30.81853],[-56.01037,-30.81912],[-56.00487,-30.83799],[-55.99389,-30.84801],[-55.99045,-30.85921],[-55.99801,-30.87277],[-56.00831,-30.89339],[-56.00968,-30.91048],[-56.00487,-30.92049],[-56.01037,-30.92638],[-56.01449,-30.94287],[-56.01105,-30.94817],[-56.01037,-30.96937],[-56.00693,-30.97526],[-56.01174,-30.98056],[-56.00693,-30.98468],[-56.01243,-30.98821],[-56.0035,-31.00057],[-56.00281,-31.02176],[-56.00281,-31.05117],[-56.00007,-31.06764],[-55.99045,-31.08176],[-55.9829,-31.07352],[-55.9623,-31.07352],[-55.93415,-31.08646],[-55.92385,-31.0747],[-55.90943,-31.07529],[-55.89844,-31.06647],[-55.89226,-31.07529],[-55.88128,-31.07647],[-55.86823,-31.06706],[-55.85656,-31.04764],[-55.84351,-31.04235],[-55.83184,-31.04353],[-55.82085,-31.03117],[-55.81261,-31.02293],[-55.8133,-31.01587],[-55.77965,-31.01646],[-55.76592,-31.00999],[-55.76592,-31.00292],[-55.77416,-31.00116],[-55.77347,-30.99586],[-55.75013,-30.9988],[-55.74601,-30.97938],[-55.73021,-30.97879],[-55.72266,-30.94287],[-55.71854,-30.94228],[-55.70961,-30.95524],[-55.70481,-30.95642],[-55.69313,-30.94523],[-55.68764,-30.94582],[-55.68833,-30.95112],[-55.67254,-30.95701],[-55.6588,-30.94405],[-55.66361,-30.93345],[-55.6437,-30.91283],[-55.654,-30.89752],[-55.65331,-30.8822],[-55.66292,-30.87218],[-55.654,-30.86334],[-55.64919,-30.86569],[-55.64644,-30.85155],[-55.63477,-30.84506],[-55.62859,-30.84683],[-55.62172,-30.8427],[-55.61348,-30.84388],[-55.60662,-30.85037],[-55.57847,-30.83268],[-55.57709,-30.84211],[-55.56817,-30.84683],[-55.56336,-30.85744],[-55.56199,-30.86805],[-55.551,-30.87218],[-55.55169,-30.8822],[-55.54619,-30.88927],[-55.53452,-30.89634],[-55.53246,-30.90105],[-55.52353,-30.89752],[-55.50774,-30.904],[-55.51049,-30.90989],[-55.50637,-30.92285],[-55.49813,-30.92638],[-55.49332,-30.92403],[-55.48645,-30.92874],[-55.4892,-30.93816],[-55.48577,-30.94758],[-55.47821,-30.9523],[-55.46654,-30.95288],[-55.46242,-30.94876],[-55.45212,-30.95642],[-55.45075,-30.96054],[-55.44388,-30.95701],[-55.42603,-30.98232],[-55.43564,-30.99174],[-55.43564,-31.00528],[-55.42397,-31.01528],[-55.40886,-31.01881],[-55.40543,-31.02764],[-55.39513,-31.02588],[-55.38826,-31.02117],[-55.38002,-31.02352],[-55.37247,-31.01881],[-55.37041,-31.02411],[-55.37384,-31.03235],[-55.35668,-31.04058],[-55.34981,-31.03823],[-55.35325,-31.05647],[-55.3608,-31.06764],[-55.35187,-31.06882],[-55.34089,-31.08293],[-55.32715,-31.08705],[-55.33333,-31.1041],[-55.33059,-31.10763],[-55.33127,-31.11645],[-55.33814,-31.11997],[-55.33883,-31.13173],[-55.32166,-31.1382],[-55.31754,-31.14407],[-55.31205,-31.14701],[-55.30587,-31.14231],[-55.29145,-31.1429],[-55.28595,-31.15759],[-55.29076,-31.1617],[-55.27085,-31.17169],[-55.27016,-31.17698],[-55.28389,-31.18285],[-55.28252,-31.19225],[-55.26261,-31.19401],[-55.25162,-31.20576],[-55.24682,-31.25097],[-55.24064,-31.26095],[-55.23652,-31.25919],[-55.21317,-31.26271],[-55.1706,-31.26917],[-55.16442,-31.27621],[-55.16373,-31.28501],[-55.15,-31.29088],[-55.12459,-31.30437],[-55.12253,-31.31259],[-55.10743,-31.30789],[-55.10193,-31.31493],[-55.07172,-31.33253],[-55.05661,-31.33077],[-55.06005,-31.31552],[-55.04425,-31.30613],[-55.03602,-31.29147],[-55.03464,-31.27269],[-55.00512,-31.26858],[-55.00031,-31.28266],[-54.9955,-31.28325],[-54.98314,-31.2944],[-54.98108,-31.31141],[-54.97696,-31.31787],[-54.95499,-31.3249],[-54.95156,-31.34015],[-54.95911,-31.34191],[-54.95911,-31.35247],[-54.93645,-31.3554],[-54.93439,-31.36713],[-54.94194,-31.38002],[-54.93096,-31.38471],[-54.92066,-31.38002],[-54.90418,-31.38354],[-54.89663,-31.37944],[-54.89869,-31.37533],[-54.88495,-31.38002],[-54.88839,-31.38296],[-54.87671,-31.39761],[-54.85886,-31.40581],[-54.86023,-31.41695],[-54.83551,-31.44156],[-54.8108,-31.43511],[-54.81011,-31.42984],[-54.7902,-31.43277],[-54.76822,-31.42632],[-54.73938,-31.42632],[-54.72565,-31.42984],[-54.71947,-31.43863],[-54.70368,-31.43804],[-54.70162,-31.43453],[-54.69269,-31.44683],[-54.67759,-31.44683],[-54.67072,-31.45386],[-54.58764,-31.4562],[-54.58008,-31.46909],[-54.57802,-31.47904],[-54.55674,-31.49368],[-54.52446,-31.5048],[-54.51554,-31.51007],[-54.50867,-31.52178],[-54.50181,-31.537],[-54.49082,-31.55046],[-54.49425,-31.55806],[-54.48395,-31.56801],[-54.47297,-31.56976],[-54.46816,-31.59316],[-54.46404,-31.5879],[-54.45237,-31.60018],[-54.4661,-31.61071],[-54.4558,-31.62883],[-54.45099,-31.63936],[-54.4558,-31.65222],[-54.15505,-31.87581],[-54.14338,-31.88339],[-54.14269,-31.88864],[-54.13582,-31.89738],[-54.13376,-31.89389],[-54.1063,-31.91137],[-54.10904,-31.91953],[-54.08913,-31.93236],[-54.07402,-31.91953],[-54.06785,-31.92245],[-54.05961,-31.91837],[-54.05686,-31.90904],[-54.04175,-31.89738],[-54.02459,-31.89738],[-54.00605,-31.90788],[-54.00742,-31.91196],[-53.96759,-31.91953],[-53.96279,-31.9242],[-53.96691,-31.93527],[-53.97103,-31.93818],[-53.96004,-31.95508],[-53.9518,-31.95741],[-53.94562,-31.9545],[-53.92983,-31.96207],[-53.91335,-31.96673],[-53.89893,-31.9778],[-53.89275,-31.99585],[-53.87284,-31.9976],[-53.86528,-31.99352],[-53.85018,-31.99935],[-53.85155,-32.0302],[-53.83988,-32.03428],[-53.84057,-32.04126],[-53.83507,-32.04534],[-53.8337,-32.05756],[-53.81722,-32.05989],[-53.80349,-32.0692],[-53.79044,-32.06862],[-53.7719,-32.07269],[-53.76435,-32.07909],[-53.74512,-32.07792],[-53.74512,-32.09014],[-53.72658,-32.09654],[-53.73139,-32.10643],[-53.73894,-32.10061],[-53.741,-32.10934],[-53.74444,-32.11515],[-53.72658,-32.13899],[-53.72658,-32.14539],[-53.73482,-32.15004],[-53.72864,-32.15353],[-53.72521,-32.1512],[-53.71697,-32.15295],[-53.72109,-32.16632],[-53.72452,-32.17271],[-53.71354,-32.17678],[-53.71354,-32.1884],[-53.70461,-32.18724],[-53.70461,-32.19247],[-53.71148,-32.19654],[-53.70461,-32.20758],[-53.695,-32.20351],[-53.69362,-32.21048],[-53.68401,-32.22094],[-53.67714,-32.23604],[-53.6792,-32.25753],[-53.66478,-32.27495],[-53.65723,-32.27843],[-53.65517,-32.29004],[-53.64281,-32.29584],[-53.6483,-32.31151],[-53.65586,-32.31151],[-53.65792,-32.3179],[-53.64556,-32.32312],[-53.6435,-32.33589],[-53.63389,-32.34923],[-53.6435,-32.36779],[-53.6435,-32.38518],[-53.62565,-32.38924],[-53.61123,-32.40084],[-53.61603,-32.41475],[-53.59955,-32.43156],[-53.58857,-32.43446],[-53.58101,-32.45184],[-53.56659,-32.45937],[-53.55355,-32.47444],[-53.53981,-32.4727],[-53.5405,-32.47965],[-53.52883,-32.48313],[-53.52814,-32.48834],[-53.51922,-32.48718],[-53.52059,-32.48313],[-53.51578,-32.48255],[-53.51647,-32.48776],[-53.50823,-32.48834],[-53.5048,-32.48371],[-53.49381,-32.48081],[-53.48008,-32.48428],[-53.46978,-32.48081],[-53.46291,-32.4866],[-53.46497,-32.49355],[-53.45673,-32.5225],[-53.44506,-32.53408],[-53.43544,-32.55145],[-53.43338,-32.56592],[-53.42583,-32.56592],[-53.42514,-32.55666],[-53.41691,-32.56302],[-53.41622,-32.56997],[-53.38738,-32.5879],[-53.37914,-32.57228],[-53.37227,-32.56939],[-53.35579,-32.59137],[-53.34755,-32.59253],[-53.33794,-32.58501],[-53.33176,-32.58501],[-53.31871,-32.59774],[-53.29468,-32.61972],[-53.28301,-32.6203],[-53.26172,-32.60237],[-53.24456,-32.60699],[-53.24112,-32.6255],[-53.21091,-32.64111],[-53.19237,-32.64458],[-53.18207,-32.6573],[-53.07839,-32.73589],[-53.44918,-33.05242],[-53.5199,-33.1525],[-53.50892,-33.45608],[-53.52677,-33.59518],[-53.53638,-33.61291],[-53.52883,-33.61977],[-53.52746,-33.62434],[-53.52951,-33.64035],[-53.53363,-33.6495],[-53.53226,-33.66722],[-53.52608,-33.67407],[-53.53089,-33.67922],[-53.5302,-33.68836],[-53.44162,-33.69407],[-53.43682,-33.70207],[-53.42995,-33.73805],[-53.41759,-33.74718],[-53.39905,-33.74833],[-53.39356,-33.75118],[-53.38601,-33.74547],[-53.37983,-33.74718],[-53.37296,-33.74205],[-53.36953,-33.7449],[-53,-34],[-26,-34],[-26,5]]]}},{"type":"Feature","properties":{"cq_zone_name":"Southwest Zone of South America","cq_zone_number":12,"cq_zone_name_loc":[-45,-100]},"geometry":{"type":"Polygon","coordinates":[[[-120,-20],[-120,-85],[-70,-85],[-70,-57],[-66,-56],[-66,-55.22643],[-66.38764,-55.12492],[-66.42815,-55.11629],[-66.46351,-55.1153],[-66.52291,-55.11118],[-66.67603,-55.11138],[-66.82709,-54.99023],[-66.96442,-54.96501],[-67.04957,-54.96501],[-67.12647,-54.92241],[-67.26517,-54.91373],[-67.48902,-54.92004],[-67.68815,-54.90741],[-67.98409,-54.87306],[-68.23815,-54.88096],[-68.60691,-54.91389],[-68.60623,-52.62036],[-68.4326,-52.39749],[-68.43092,-52.39472],[-68.41865,-52.38634],[-68.41882,-52.33241],[-68.51358,-52.32926],[-68.57306,-52.32496],[-68.58559,-52.30654],[-68.70979,-52.28549],[-68.83836,-52.27772],[-68.98702,-52.20356],[-69.07895,-52.18515],[-69.19061,-52.15056],[-69.48638,-52.15172],[-69.99536,-52.00079],[-71.91695,-51.99981],[-71.9172,-51.99757],[-71.93299,-51.98911],[-71.93368,-51.98362],[-71.94054,-51.98066],[-71.93917,-51.9777],[-71.94397,-51.97473],[-71.96183,-51.97135],[-71.9632,-51.97473],[-71.97281,-51.97304],[-71.9838,-51.97516],[-71.99341,-51.98066],[-72.00783,-51.97854],[-72.01676,-51.9722],[-72.01745,-51.96881],[-72.04354,-51.96204],[-72.03873,-51.95866],[-72.03324,-51.95908],[-72.02569,-51.95824],[-72.02088,-51.95443],[-71.99204,-51.94088],[-71.98105,-51.94088],[-71.98105,-51.93496],[-71.97281,-51.92776],[-71.94603,-51.91463],[-71.94054,-51.91717],[-71.92956,-51.91378],[-71.93917,-51.9087],[-71.94123,-51.89938],[-71.94466,-51.89472],[-71.94603,-51.88667],[-71.95221,-51.87395],[-71.99341,-51.84002],[-71.9941,-51.83833],[-72.01607,-51.81796],[-72.03873,-51.8014],[-72.04834,-51.79716],[-72.04972,-51.79206],[-72.06139,-51.78569],[-72.07375,-51.78314],[-72.08062,-51.78229],[-72.0813,-51.77974],[-72.07787,-51.77804],[-72.07924,-51.77294],[-72.10259,-51.77082],[-72.1074,-51.76784],[-72.11907,-51.76699],[-72.11907,-51.75467],[-72.12456,-51.74829],[-72.11701,-51.74022],[-72.15271,-51.74532],[-72.15958,-51.74149],[-72.16782,-51.74107],[-72.18705,-51.73554],[-72.17606,-51.73214],[-72.174,-51.72873],[-72.16164,-51.72873],[-72.15752,-51.72406],[-72.16919,-51.71725],[-72.17537,-51.71257],[-72.18293,-51.71002],[-72.19048,-51.71257],[-72.1946,-51.71682],[-72.21451,-51.70917],[-72.22619,-51.70746],[-72.22756,-51.70108],[-72.24678,-51.70661],[-72.2509,-51.70534],[-72.27837,-51.70449],[-72.29622,-51.69853],[-72.29966,-51.69342],[-72.29691,-51.6832],[-72.28867,-51.6781],[-72.28936,-51.64871],[-72.2921,-51.6453],[-72.28524,-51.63848],[-72.2873,-51.63337],[-72.29622,-51.63081],[-72.30172,-51.63251],[-72.32026,-51.62655],[-72.3182,-51.61546],[-72.3285,-51.58603],[-72.3388,-51.58433],[-72.34704,-51.58689],[-72.36146,-51.58646],[-72.38206,-51.58817],[-72.37931,-51.59414],[-72.38068,-51.59883],[-72.39441,-51.58945],[-72.41982,-51.58518],[-72.42875,-51.58475],[-72.44248,-51.58262],[-72.43424,-51.56342],[-72.426,-51.54591],[-72.42394,-51.54549],[-72.39304,-51.52627],[-72.40609,-51.51558],[-72.38823,-51.51516],[-72.36077,-51.52328],[-72.34704,-51.519],[-72.35253,-51.50319],[-72.3539,-51.49208],[-72.34841,-51.47711],[-72.3182,-51.47882],[-72.33674,-51.45957],[-72.34017,-51.44631],[-72.34017,-51.42748],[-72.32987,-51.41463],[-72.32506,-51.41163],[-72.32094,-51.40649],[-72.30996,-51.40264],[-72.31133,-51.39664],[-72.30927,-51.37993],[-72.31064,-51.36535],[-72.31751,-51.35335],[-72.33124,-51.34349],[-72.33536,-51.34906],[-72.35116,-51.34949],[-72.35184,-51.34349],[-72.36764,-51.34177],[-72.37107,-51.33448],[-72.36558,-51.33362],[-72.3642,-51.32332],[-72.36077,-51.31903],[-72.3333,-51.31345],[-72.32438,-51.31517],[-72.32575,-51.30658],[-72.3127,-51.30014],[-72.3024,-51.29156],[-72.28592,-51.28769],[-72.27974,-51.28769],[-72.27219,-51.28512],[-72.27082,-51.28168],[-72.26464,-51.27996],[-72.26326,-51.27309],[-72.26601,-51.2645],[-72.26052,-51.25504],[-72.25914,-51.24473],[-72.28524,-51.22753],[-72.29554,-51.21635],[-72.30378,-51.2013],[-72.31614,-51.21033],[-72.33399,-51.20904],[-72.34635,-51.20259],[-72.34978,-51.19613],[-72.34841,-51.18968],[-72.3539,-51.18107],[-72.36008,-51.18064],[-72.36008,-51.16859],[-72.37038,-51.1617],[-72.37725,-51.1617],[-72.38,-51.15567],[-72.3848,-51.15481],[-72.39167,-51.14533],[-72.39647,-51.1449],[-72.39853,-51.13585],[-72.40403,-51.13456],[-72.40128,-51.12594],[-72.40471,-51.12292],[-72.41021,-51.10741],[-72.40677,-51.1031],[-72.40746,-51.09576],[-72.40265,-51.09059],[-72.38617,-51.0824],[-72.37656,-51.08024],[-72.3745,-51.02369],[-72.36558,-51.02197],[-72.35665,-51.02801],[-72.3436,-51.02844],[-72.32712,-51.02542],[-72.31751,-51.02931],[-72.2976,-51.03104],[-72.28798,-51.03147],[-72.28318,-51.02758],[-72.27356,-51.03363],[-72.26601,-51.03449],[-72.26464,-51.00555],[-72.2667,-50.96103],[-72.25914,-50.94762],[-72.26464,-50.94199],[-72.2564,-50.92209],[-72.25983,-50.91862],[-72.25022,-50.91083],[-72.24816,-50.9065],[-72.2461,-50.89654],[-72.2564,-50.88918],[-72.24816,-50.87662],[-72.2564,-50.87358],[-72.26532,-50.86708],[-72.26807,-50.85711],[-72.25983,-50.8363],[-72.26876,-50.83067],[-72.26876,-50.8259],[-72.28043,-50.81245],[-72.28112,-50.80854],[-72.29691,-50.79075],[-72.31751,-50.77469],[-72.33262,-50.76209],[-72.34978,-50.75471],[-72.3491,-50.73994],[-72.34704,-50.72994],[-72.33948,-50.72299],[-72.33742,-50.7182],[-72.31888,-50.71647],[-72.31202,-50.70777],[-72.30378,-50.70516],[-72.2976,-50.67776],[-72.28936,-50.6721],[-72.29073,-50.66383],[-72.2873,-50.65991],[-72.29966,-50.65121],[-72.3079,-50.65077],[-72.3182,-50.65338],[-72.32712,-50.65121],[-72.33811,-50.65077],[-72.34154,-50.63684],[-72.33948,-50.63379],[-72.34429,-50.63118],[-72.34635,-50.62421],[-72.35871,-50.61593],[-72.3745,-50.6229],[-72.38274,-50.62508],[-72.38686,-50.629],[-72.40128,-50.63335],[-72.40128,-50.63553],[-72.41501,-50.63248],[-72.41501,-50.62159],[-72.42737,-50.61724],[-72.45278,-50.61724],[-72.47887,-50.60198],[-72.49054,-50.59981],[-72.4981,-50.60591],[-72.50222,-50.61375],[-72.51801,-50.61506],[-72.5235,-50.61941],[-72.54067,-50.61811],[-72.54616,-50.62203],[-72.56196,-50.64598],[-72.57569,-50.64816],[-72.58049,-50.65556],[-72.58187,-50.66862],[-72.57706,-50.67776],[-72.59491,-50.68211],[-72.61139,-50.67427],[-72.61483,-50.6647],[-72.62787,-50.65643],[-72.64229,-50.65382],[-72.65259,-50.66296],[-72.67251,-50.65512],[-72.67868,-50.64293],[-72.68624,-50.64293],[-72.68692,-50.64903],[-72.69242,-50.64903],[-72.7137,-50.63597],[-72.71988,-50.62682],[-72.72606,-50.61419],[-72.73362,-50.61636],[-72.73911,-50.62638],[-72.76246,-50.62856],[-72.76795,-50.62595],[-72.77962,-50.6303],[-72.79129,-50.6303],[-72.80159,-50.63553],[-72.80778,-50.64424],[-72.81396,-50.64511],[-72.83181,-50.65295],[-72.84623,-50.65077],[-72.86614,-50.66296],[-72.87232,-50.66992],[-72.88811,-50.66775],[-72.89979,-50.68211],[-72.90596,-50.69603],[-72.91489,-50.70255],[-72.92588,-50.70386],[-72.92794,-50.70168],[-72.9403,-50.70646],[-72.94579,-50.7269],[-72.94991,-50.7282],[-72.94579,-50.74167],[-72.95403,-50.74211],[-72.95678,-50.7395],[-72.96914,-50.74037],[-72.98081,-50.74428],[-72.98218,-50.75123],[-73.00278,-50.75688],[-73.00347,-50.76209],[-73.02681,-50.76035],[-73.03162,-50.75688],[-73.05085,-50.76687],[-73.06801,-50.78901],[-73.09548,-50.77338],[-73.14354,-50.7799],[-73.16964,-50.80203],[-73.19161,-50.81115],[-73.20054,-50.82069],[-73.20054,-50.81115],[-73.15041,-50.76687],[-73.15728,-50.76035],[-73.16689,-50.75645],[-73.17444,-50.75905],[-73.17582,-50.7521],[-73.18062,-50.74993],[-73.18749,-50.74515],[-73.19779,-50.74037],[-73.18818,-50.72603],[-73.18406,-50.70646],[-73.17101,-50.70212],[-73.17307,-50.69255],[-73.16483,-50.68733],[-73.16346,-50.67515],[-73.15178,-50.66731],[-73.15384,-50.6573],[-73.14698,-50.65469],[-73.14423,-50.65121],[-73.16826,-50.64163],[-73.16964,-50.63814],[-73.19436,-50.61549],[-73.21976,-50.60678],[-73.23006,-50.60939],[-73.23555,-50.60939],[-73.23212,-50.60373],[-73.23967,-50.59588],[-73.25615,-50.59458],[-73.27675,-50.59196],[-73.28156,-50.58847],[-73.28774,-50.58891],[-73.3001,-50.57234],[-73.31383,-50.57321],[-73.31658,-50.57103],[-73.33237,-50.57016],[-73.331,-50.56275],[-73.33924,-50.55577],[-73.33924,-50.55009],[-73.34885,-50.54573],[-73.34748,-50.537],[-73.35503,-50.53569],[-73.35503,-50.52871],[-73.35091,-50.5226],[-73.35846,-50.51168],[-73.35984,-50.50295],[-73.35022,-50.49247],[-73.36396,-50.48635],[-73.3516,-50.47237],[-73.36464,-50.4527],[-73.35572,-50.42952],[-73.37563,-50.41684],[-73.38868,-50.39189],[-73.37975,-50.3827],[-73.37769,-50.377],[-73.36876,-50.37262],[-73.3976,-50.37087],[-73.40722,-50.37963],[-73.41752,-50.38094],[-73.43537,-50.36168],[-73.42919,-50.35554],[-73.43743,-50.34371],[-73.42576,-50.33582],[-73.40447,-50.33582],[-73.3619,-50.30163],[-73.42782,-50.25248],[-73.4285,-50.24809],[-73.44223,-50.24809],[-73.45047,-50.24414],[-73.45459,-50.2336],[-73.44841,-50.22701],[-73.45253,-50.22481],[-73.44704,-50.21602],[-73.43194,-50.21031],[-73.42713,-50.21031],[-73.41958,-50.19932],[-73.42782,-50.19097],[-73.43262,-50.18174],[-73.44429,-50.17998],[-73.46352,-50.18658],[-73.47725,-50.17382],[-73.47725,-50.16635],[-73.49099,-50.16195],[-73.49717,-50.15491],[-73.50472,-50.15579],[-73.51708,-50.15359],[-73.52326,-50.14831],[-73.51571,-50.13863],[-73.51502,-50.10209],[-73.50129,-50.10209],[-73.49373,-50.08579],[-73.48137,-50.08711],[-73.48,-50.07433],[-73.48549,-50.06596],[-73.50129,-50.05935],[-73.49717,-50.04877],[-73.46215,-50.05362],[-73.4594,-50.0448],[-73.43674,-50.02495],[-73.44292,-50.01304],[-73.43605,-50.00907],[-73.44635,-49.98612],[-73.44498,-49.96624],[-73.4594,-49.95829],[-73.47176,-49.96845],[-73.50129,-49.96757],[-73.53219,-49.95122],[-73.55828,-49.94813],[-73.55965,-49.94106],[-73.55553,-49.93885],[-73.55347,-49.9225],[-73.55828,-49.91896],[-73.55347,-49.90835],[-73.55278,-49.89729],[-73.5109,-49.88756],[-73.51159,-49.88004],[-73.5006,-49.86101],[-73.48961,-49.8557],[-73.48961,-49.84551],[-73.48206,-49.84374],[-73.49099,-49.8309],[-73.48824,-49.81229],[-73.47931,-49.80698],[-73.13599,-49.26781],[-73.1456,-49.24719],[-73.14423,-49.23061],[-73.14766,-49.2194],[-73.14011,-49.2028],[-73.14972,-49.18575],[-73.1202,-49.17183],[-73.11676,-49.15791],[-73.10509,-49.14624],[-73.09136,-49.14354],[-73.08655,-49.14534],[-73.08037,-49.14489],[-73.08312,-49.13321],[-73.06939,-49.12782],[-73.06252,-49.12782],[-73.05909,-49.11928],[-73.06183,-49.11389],[-73.05565,-49.10715],[-73.05565,-49.0986],[-73.0481,-49.08871],[-73.0481,-49.08152],[-73.03093,-49.07432],[-73.03093,-49.06667],[-73.01789,-49.06307],[-73.00347,-49.06307],[-73.00484,-49.05047],[-73.01308,-49.04102],[-73.00759,-49.03022],[-72.98287,-49.02752],[-72.99042,-48.99824],[-72.98562,-48.98878],[-72.9609,-48.98112],[-72.95266,-48.95002],[-72.9245,-48.93468],[-72.91283,-48.94235],[-72.88331,-48.94641],[-72.86477,-48.94821],[-72.85859,-48.95859],[-72.84829,-48.96445],[-72.82425,-48.9658],[-72.81876,-48.96084],[-72.79541,-48.9694],[-72.78992,-48.96129],[-72.78443,-48.95949],[-72.76452,-48.9437],[-72.75353,-48.91483],[-72.74048,-48.90536],[-72.724,-48.9049],[-72.71233,-48.90671],[-72.7034,-48.90084],[-72.69104,-48.89588],[-72.68349,-48.8602],[-72.63268,-48.8602],[-72.52488,-48.79059],[-72.54273,-48.7322],[-72.54204,-48.62247],[-72.57843,-48.50569],[-72.58805,-48.49386],[-72.58873,-48.48749],[-72.54788,-48.4793],[-72.54685,-48.4818],[-72.53689,-48.48522],[-72.52488,-48.50342],[-72.5029,-48.51752],[-72.4926,-48.51342],[-72.47956,-48.51388],[-72.47475,-48.51615],[-72.44317,-48.51297],[-72.42669,-48.49432],[-72.41364,-48.49432],[-72.39373,-48.48157],[-72.39304,-48.46974],[-72.3848,-48.46018],[-72.38617,-48.45608],[-72.37862,-48.45061],[-72.37244,-48.44743],[-72.37244,-48.44378],[-72.40952,-48.43239],[-72.40677,-48.41143],[-72.39579,-48.41143],[-72.38549,-48.4014],[-72.35733,-48.39867],[-72.36008,-48.39183],[-72.34566,-48.38499],[-72.37725,-48.37085],[-72.38068,-48.34667],[-72.34704,-48.34485],[-72.33742,-48.35078],[-72.32026,-48.35853],[-72.31064,-48.35306],[-72.28455,-48.35717],[-72.27494,-48.36492],[-72.26601,-48.35899],[-72.26395,-48.35215],[-72.25228,-48.34713],[-72.24816,-48.34895],[-72.24061,-48.34713],[-72.23717,-48.32704],[-72.22962,-48.31928],[-72.24129,-48.30787],[-72.24541,-48.29279],[-72.2612,-48.29096],[-72.2667,-48.27406],[-72.28524,-48.26492],[-72.30584,-48.24343],[-72.32438,-48.21553],[-72.31682,-48.20546],[-72.30858,-48.19997],[-72.31339,-48.18029],[-72.30927,-48.17845],[-72.30858,-48.16517],[-72.29966,-48.15922],[-72.3079,-48.13906],[-72.32163,-48.13311],[-72.32712,-48.11752],[-72.34566,-48.10377],[-72.35733,-48.10423],[-72.36214,-48.09093],[-72.3697,-48.08955],[-72.36901,-48.08175],[-72.3594,-48.07533],[-72.36077,-48.07304],[-72.37107,-48.07579],[-72.38411,-48.07166],[-72.42257,-48.07762],[-72.42119,-48.07074],[-72.44179,-48.0657],[-72.44385,-48.04734],[-72.42875,-48.04091],[-72.42806,-48.0106],[-72.41776,-48.00095],[-72.42394,-47.9959],[-72.42325,-47.98901],[-72.42325,-47.98027],[-72.43012,-47.97522],[-72.42257,-47.96924],[-72.43012,-47.96373],[-72.43424,-47.96694],[-72.44317,-47.96373],[-72.45278,-47.96327],[-72.45965,-47.95591],[-72.47544,-47.96327],[-72.47956,-47.95821],[-72.50496,-47.95637],[-72.51938,-47.94671],[-72.52762,-47.92417],[-72.52625,-47.9053],[-72.50359,-47.88919],[-72.4981,-47.87445],[-72.49123,-47.86985],[-72.47612,-47.87537],[-72.47269,-47.81316],[-72.4981,-47.79517],[-72.50496,-47.76426],[-72.52488,-47.75226],[-72.52419,-47.74348],[-72.51046,-47.74025],[-72.49535,-47.75456],[-72.48986,-47.75456],[-72.47544,-47.76057],[-72.47269,-47.7481],[-72.46514,-47.73748],[-72.44111,-47.74441],[-72.43561,-47.73425],[-72.44935,-47.71762],[-72.44935,-47.70468],[-72.42943,-47.69914],[-72.41501,-47.68989],[-72.40952,-47.67926],[-72.42188,-47.66169],[-72.40128,-47.65799],[-72.40334,-47.65105],[-72.38343,-47.63579],[-72.36832,-47.63579],[-72.36077,-47.63856],[-72.34635,-47.63533],[-72.3333,-47.6108],[-72.31202,-47.59506],[-72.32438,-47.5844],[-72.32781,-47.57097],[-72.31339,-47.558],[-72.2921,-47.51164],[-72.29554,-47.49772],[-72.30721,-47.49077],[-72.30721,-47.47731],[-72.323,-47.48334],[-72.3436,-47.45503],[-72.33193,-47.45038],[-72.29554,-47.44713],[-72.28661,-47.43738],[-72.29485,-47.43738],[-72.28386,-47.43134],[-72.26876,-47.41508],[-72.2509,-47.41462],[-72.24678,-47.40486],[-72.22619,-47.40347],[-72.20147,-47.41462],[-72.18636,-47.403],[-72.16988,-47.39464],[-72.16164,-47.39464],[-72.15958,-47.38766],[-72.16233,-47.37929],[-72.1431,-47.36302],[-72.14447,-47.35232],[-72.13349,-47.33324],[-72.12525,-47.32859],[-72.07924,-47.33557],[-72.071,-47.34255],[-72.04697,-47.34069],[-72.0456,-47.33278],[-72.02843,-47.31556],[-71.99753,-47.29507],[-72.00646,-47.26759],[-72.01539,-47.25128],[-72.01401,-47.24242],[-72.00509,-47.23543],[-71.99959,-47.22703],[-72.00783,-47.20885],[-72.02019,-47.19858],[-72.00165,-47.20745],[-71.97007,-47.21024],[-71.90484,-47.22517],[-71.86776,-47.23449],[-71.86364,-47.2233],[-71.87668,-47.22144],[-71.8911,-47.21351],[-71.88355,-47.20838],[-71.89042,-47.20185],[-71.89042,-47.18132],[-71.88218,-47.17945],[-71.86707,-47.16498],[-71.85883,-47.16731],[-71.85196,-47.16311],[-71.86295,-47.1449],[-71.8657,-47.11968],[-71.88286,-47.10659],[-71.95015,-47.08509],[-71.95359,-47.0734],[-71.92956,-47.05797],[-71.91582,-47.05937],[-71.89797,-47.04065],[-71.88012,-47.01117],[-71.88904,-47.00508],[-71.89522,-46.99431],[-71.91102,-46.99665],[-71.93024,-46.99384],[-71.92132,-46.98635],[-71.9323,-46.97651],[-71.95427,-46.97791],[-71.95839,-46.96011],[-71.95153,-46.95495],[-71.95839,-46.93714],[-71.97144,-46.90384],[-71.95977,-46.89821],[-71.93093,-46.86865],[-71.93574,-46.85268],[-71.93162,-46.84423],[-71.94603,-46.8245],[-71.95977,-46.81792],[-71.9378,-46.80664],[-71.90758,-46.79865],[-71.85883,-46.80335],[-71.83686,-46.79724],[-71.81282,-46.78361],[-71.77025,-46.76527],[-71.75652,-46.75398],[-71.74759,-46.73939],[-71.70571,-46.71209],[-71.70296,-46.71398],[-71.68923,-46.70126],[-71.64872,-46.68902],[-71.64734,-46.63577],[-71.66863,-46.61078],[-71.66726,-46.57916],[-71.67,-46.52817],[-71.75858,-46.34978],[-71.75583,-46.34077],[-71.75171,-46.33698],[-71.74828,-46.33793],[-71.74485,-46.33366],[-71.74553,-46.32939],[-71.73798,-46.32465],[-71.73386,-46.29999],[-71.72699,-46.29382],[-71.73043,-46.28908],[-71.72562,-46.28955],[-71.72425,-46.28053],[-71.72699,-46.28053],[-71.72768,-46.27057],[-71.73729,-46.27152],[-71.73661,-46.2663],[-71.74347,-46.25775],[-71.74141,-46.25015],[-71.74897,-46.24351],[-71.7524,-46.23448],[-71.7524,-46.22831],[-71.76476,-46.21596],[-71.773,-46.21548],[-71.77781,-46.19742],[-71.79703,-46.19077],[-71.80665,-46.19742],[-71.82244,-46.20123],[-71.83136,-46.1979],[-71.83342,-46.19219],[-71.84372,-46.18982],[-71.8602,-46.1941],[-71.86501,-46.18459],[-71.86982,-46.18126],[-71.87943,-46.16509],[-71.876,-46.16462],[-71.86638,-46.15701],[-71.8808,-46.16224],[-71.90003,-46.16272],[-71.90278,-46.15986],[-71.90964,-46.15939],[-71.9117,-46.15606],[-71.90758,-46.15416],[-71.90827,-46.14559],[-71.91651,-46.13941],[-71.91651,-46.13798],[-71.90346,-46.13655],[-71.88836,-46.12704],[-71.85814,-46.11847],[-71.84578,-46.1199],[-71.82518,-46.1099],[-71.81557,-46.1099],[-71.80459,-46.11942],[-71.79566,-46.11752],[-71.7833,-46.11942],[-71.76339,-46.11228],[-71.75927,-46.10657],[-71.76064,-46.0999],[-71.75103,-46.09181],[-71.73043,-46.09562],[-71.71463,-46.088],[-71.7112,-46.0699],[-71.69816,-46.0699],[-71.69816,-46.06275],[-71.67344,-46.04703],[-71.67206,-46.04131],[-71.66863,-46.04131],[-71.66657,-46.02796],[-71.65696,-46.0232],[-71.65627,-46.01604],[-71.6494,-46.01557],[-71.64597,-46.00984],[-71.64872,-46.00841],[-71.64528,-45.99124],[-71.64803,-45.98599],[-71.63567,-45.97741],[-71.63086,-45.97788],[-71.63086,-45.98313],[-71.62537,-45.98361],[-71.61438,-45.9755],[-71.61644,-45.96022],[-71.6185,-45.9459],[-71.62606,-45.9354],[-71.64185,-45.92394],[-71.64528,-45.91725],[-71.64528,-45.90913],[-71.65558,-45.89623],[-71.6549,-45.88953],[-71.67138,-45.87519],[-71.68099,-45.87376],[-71.71875,-45.85511],[-71.76476,-45.84937],[-71.76957,-45.83694],[-71.75377,-45.82258],[-71.75515,-45.81923],[-71.74965,-45.8111],[-71.74073,-45.80727],[-71.74553,-45.79817],[-71.75858,-45.79147],[-71.76133,-45.78764],[-71.75309,-45.77375],[-71.77163,-45.74884],[-71.77231,-45.74405],[-71.79497,-45.73111],[-71.80184,-45.71865],[-71.7936,-45.70618],[-71.77849,-45.70618],[-71.77163,-45.69755],[-71.77369,-45.6798],[-71.79429,-45.66541],[-71.78124,-45.65581],[-71.78536,-45.65293],[-71.77918,-45.64813],[-71.76613,-45.64909],[-71.773,-45.63613],[-71.79154,-45.63421],[-71.79429,-45.62893],[-71.79978,-45.62797],[-71.79841,-45.62413],[-71.77712,-45.61548],[-71.75927,-45.61644],[-71.75515,-45.6078],[-71.74279,-45.60732],[-71.74416,-45.59723],[-71.73386,-45.59387],[-71.73249,-45.58377],[-71.72768,-45.57705],[-71.72768,-45.57224],[-71.74279,-45.57801],[-71.76407,-45.57512],[-71.76407,-45.56022],[-71.74691,-45.54291],[-71.72356,-45.53522],[-71.69404,-45.53329],[-71.68923,-45.52848],[-71.68992,-45.52127],[-71.6803,-45.51405],[-71.66314,-45.51694],[-71.64528,-45.51742],[-71.62537,-45.5102],[-71.60958,-45.51261],[-71.60546,-45.5102],[-71.58829,-45.51405],[-71.59173,-45.51838],[-71.58417,-45.52223],[-71.57662,-45.5179],[-71.56083,-45.52319],[-71.53885,-45.5179],[-71.53542,-45.51405],[-71.52924,-45.51213],[-71.52855,-45.51549],[-71.5107,-45.51357],[-71.50246,-45.50298],[-71.46882,-45.49336],[-71.47706,-45.48517],[-71.4695,-45.48084],[-71.4853,-45.4688],[-71.49491,-45.47025],[-71.5107,-45.46014],[-71.50246,-45.45436],[-71.51001,-45.45339],[-71.51001,-45.44424],[-71.51413,-45.4399],[-71.53061,-45.43846],[-71.53336,-45.43268],[-71.52237,-45.42593],[-71.53817,-45.40087],[-71.52375,-45.38929],[-71.48324,-45.38592],[-71.46607,-45.38833],[-71.45989,-45.38447],[-71.45508,-45.38495],[-71.4386,-45.39412],[-71.43586,-45.38929],[-71.44478,-45.38302],[-71.44616,-45.37724],[-71.43998,-45.37145],[-71.44753,-45.36759],[-71.44066,-45.36132],[-71.41251,-45.35263],[-71.40221,-45.35263],[-71.38504,-45.34925],[-71.32462,-45.30581],[-71.3205,-45.29325],[-71.3308,-45.27779],[-71.34316,-45.27586],[-71.35209,-45.26716],[-71.33286,-45.25024],[-71.33904,-45.25073],[-71.33423,-45.24106],[-71.33767,-45.23767],[-71.35758,-45.22752],[-71.36651,-45.22558],[-71.40565,-45.19027],[-71.40633,-45.17914],[-71.42418,-45.17236],[-71.45989,-45.15057],[-71.48667,-45.14379],[-71.48598,-45.1312],[-71.48873,-45.10794],[-71.50109,-45.10213],[-71.51963,-45.10213],[-71.521,-45.09922],[-71.51413,-45.09777],[-71.50589,-45.0808],[-71.51207,-45.06043],[-71.52169,-45.05801],[-71.52993,-45.04685],[-71.54023,-45.04151],[-71.54641,-45.0352],[-71.55602,-45.03084],[-71.55121,-45.01628],[-71.54572,-45.01434],[-71.5519,-45.00851],[-71.54984,-45.00463],[-71.5416,-45.00268],[-71.53885,-44.99929],[-71.54709,-44.99929],[-71.55671,-44.99006],[-71.55945,-44.97646],[-71.57868,-44.98035],[-71.60408,-44.9716],[-71.63155,-44.97549],[-71.63361,-44.96917],[-71.65833,-44.97598],[-71.66863,-44.97209],[-71.68786,-44.96675],[-71.70022,-44.95363],[-71.7421,-44.95654],[-71.75377,-44.92592],[-71.76133,-44.92592],[-71.77849,-44.94148],[-71.79223,-44.9303],[-71.80665,-44.93078],[-71.80665,-44.92398],[-71.81626,-44.92009],[-71.85196,-44.93127],[-71.85814,-44.94051],[-71.86776,-44.94585],[-71.87806,-44.95994],[-71.88355,-44.94439],[-71.89248,-44.94294],[-71.90964,-44.9478],[-71.91239,-44.94342],[-71.92544,-44.94537],[-71.93505,-44.94099],[-71.93505,-44.9337],[-71.93986,-44.93078],[-71.94535,-44.92106],[-71.97556,-44.92106],[-71.98037,-44.90404],[-72.00028,-44.89821],[-72.02225,-44.89577],[-72.03255,-44.90404],[-72.04491,-44.89431],[-72.05109,-44.88167],[-72.06414,-44.87777],[-72.06208,-44.87145],[-72.0401,-44.86317],[-72.04628,-44.85831],[-72.06757,-44.85052],[-72.06482,-44.83835],[-72.04628,-44.8364],[-72.04628,-44.82423],[-72.0401,-44.82082],[-72.03736,-44.81205],[-72.04148,-44.80913],[-72.03392,-44.80669],[-72.03255,-44.80182],[-72.05109,-44.79354],[-72.07581,-44.77989],[-72.071,-44.77355],[-72.0662,-44.77307],[-72.06688,-44.75893],[-72.04285,-44.75747],[-72.0298,-44.76624],[-72.025,-44.75747],[-72.01539,-44.75747],[-72.01401,-44.76332],[-72.0044,-44.76673],[-72.00715,-44.77404],[-72.00715,-44.7833],[-71.99685,-44.78623],[-71.98586,-44.77989],[-71.95771,-44.78574],[-71.92887,-44.80328],[-71.92269,-44.79987],[-71.92544,-44.77989],[-71.91514,-44.77745],[-71.89179,-44.7872],[-71.88424,-44.79743],[-71.84716,-44.80084],[-71.83548,-44.79159],[-71.819,-44.79207],[-71.80939,-44.78623],[-71.82312,-44.78086],[-71.82518,-44.77355],[-71.80871,-44.76088],[-71.78536,-44.75161],[-71.7627,-44.76234],[-71.74897,-44.76234],[-71.73798,-44.76722],[-71.72425,-44.76527],[-71.70571,-44.76819],[-71.69129,-44.76332],[-71.67412,-44.77112],[-71.66588,-44.78866],[-71.6597,-44.78818],[-71.6597,-44.78476],[-71.62262,-44.77745],[-71.59584,-44.77989],[-71.59241,-44.77258],[-71.59928,-44.76478],[-71.59241,-44.76332],[-71.58211,-44.75259],[-71.57044,-44.75844],[-71.54915,-44.75308],[-71.53817,-44.74625],[-71.52443,-44.74235],[-71.51894,-44.74625],[-71.49834,-44.73845],[-71.47225,-44.73698],[-71.45028,-44.75161],[-71.43242,-44.756],[-71.42899,-44.7677],[-71.40702,-44.77648],[-71.39466,-44.79061],[-71.37063,-44.79597],[-71.36582,-44.79305],[-71.34797,-44.79305],[-71.33561,-44.79938],[-71.32874,-44.80766],[-71.30539,-44.80669],[-71.29235,-44.81351],[-71.28891,-44.80961],[-71.27449,-44.80864],[-71.26008,-44.80279],[-71.23604,-44.79012],[-71.23948,-44.78428],[-71.23261,-44.77599],[-71.22368,-44.77355],[-71.22506,-44.76527],[-71.2072,-44.75113],[-71.20789,-44.74332],[-71.2024,-44.73747],[-71.20652,-44.71552],[-71.2127,-44.71405],[-71.21064,-44.69941],[-71.19553,-44.68623],[-71.20308,-44.67549],[-71.22025,-44.67452],[-71.22574,-44.65498],[-71.23948,-44.64668],[-71.23536,-44.63642],[-71.21338,-44.63398],[-71.21338,-44.6154],[-71.19072,-44.60465],[-71.1921,-44.59341],[-71.18523,-44.59292],[-71.1763,-44.59976],[-71.16669,-44.59341],[-71.1509,-44.59047],[-71.12275,-44.59487],[-71.10009,-44.58803],[-71.10489,-44.57776],[-71.09528,-44.55379],[-71.09322,-44.53274],[-71.13442,-44.50679],[-71.15777,-44.50386],[-71.16051,-44.49847],[-71.15502,-44.49602],[-71.13442,-44.47104],[-71.16738,-44.44947],[-71.17081,-44.44212],[-71.17974,-44.44163],[-71.20583,-44.43378],[-71.22094,-44.43526],[-71.23261,-44.43035],[-71.23261,-44.42251],[-71.24085,-44.41711],[-71.26008,-44.4176],[-71.26076,-44.42251],[-71.30471,-44.42447],[-71.31089,-44.43084],[-71.33149,-44.42888],[-71.33492,-44.42103],[-71.35003,-44.423],[-71.35689,-44.41123],[-71.35552,-44.40387],[-71.36101,-44.39945],[-71.36582,-44.38866],[-71.37269,-44.39111],[-71.39466,-44.38719],[-71.42006,-44.38768],[-71.42556,-44.39209],[-71.44959,-44.39749],[-71.46332,-44.38964],[-71.47362,-44.38964],[-71.48392,-44.397],[-71.47843,-44.40142],[-71.48873,-44.40387],[-71.49628,-44.41172],[-71.50383,-44.40485],[-71.49971,-44.40142],[-71.50933,-44.39406],[-71.52306,-44.38964],[-71.52855,-44.39111],[-71.52443,-44.39798],[-71.53885,-44.4073],[-71.5725,-44.40828],[-71.58692,-44.39994],[-71.61576,-44.39553],[-71.62468,-44.39945],[-71.63979,-44.39847],[-71.6549,-44.41123],[-71.69198,-44.39847],[-71.69816,-44.38817],[-71.69678,-44.38277],[-71.71807,-44.38081],[-71.72013,-44.39062],[-71.74141,-44.40289],[-71.74691,-44.39896],[-71.76339,-44.40436],[-71.76682,-44.41024],[-71.77231,-44.40828],[-71.80253,-44.42005],[-71.81282,-44.4176],[-71.80939,-44.39847],[-71.81351,-44.3916],[-71.82175,-44.39013],[-71.81832,-44.37786],[-71.82587,-44.37099],[-71.83342,-44.36952],[-71.83823,-44.35135],[-71.83205,-44.34595],[-71.81832,-44.34546],[-71.81351,-44.34055],[-71.8039,-44.33662],[-71.80253,-44.34104],[-71.78879,-44.33319],[-71.79429,-44.30567],[-71.80321,-44.29241],[-71.80871,-44.28897],[-71.80459,-44.27963],[-71.80665,-44.27028],[-71.8293,-44.26586],[-71.8245,-44.25897],[-71.81076,-44.26045],[-71.80596,-44.2575],[-71.81145,-44.25012],[-71.8039,-44.24324],[-71.81076,-44.23733],[-71.80733,-44.22946],[-71.78399,-44.22356],[-71.78055,-44.21667],[-71.79635,-44.21224],[-71.80321,-44.19944],[-71.79978,-44.19156],[-71.81969,-44.18172],[-71.82106,-44.17334],[-71.83411,-44.16103],[-71.84235,-44.16349],[-71.84922,-44.1561],[-71.84304,-44.15167],[-71.84166,-44.14231],[-71.85265,-44.13048],[-71.85128,-44.12408],[-71.84922,-44.11077],[-71.83617,-44.10731],[-71.81969,-44.1152],[-71.80184,-44.11175],[-71.77918,-44.11027],[-71.76064,-44.1014],[-71.74965,-44.09055],[-71.74965,-44.07723],[-71.73661,-44.07279],[-71.73661,-44.0644],[-71.71532,-44.03874],[-71.71807,-44.02788],[-71.69747,-44.00813],[-71.69678,-44.00072],[-71.68442,-43.98837],[-71.68099,-43.97207],[-71.67412,-43.97059],[-71.66314,-43.96465],[-71.6549,-43.94933],[-71.6494,-43.94735],[-71.65078,-43.92016],[-71.66657,-43.90186],[-71.67824,-43.90482],[-71.6961,-43.90235],[-71.69953,-43.89493],[-71.70708,-43.89344],[-71.70571,-43.8781],[-71.7112,-43.85731],[-71.7318,-43.85929],[-71.74279,-43.84988],[-71.76339,-43.83948],[-71.75927,-43.82215],[-71.75446,-43.82017],[-71.75652,-43.81472],[-71.75034,-43.80827],[-71.75171,-43.78994],[-71.75309,-43.78845],[-71.73729,-43.77854],[-71.73111,-43.76118],[-71.70365,-43.73985],[-71.69747,-43.72546],[-71.67275,-43.72149],[-71.66657,-43.72298],[-71.65902,-43.71653],[-71.66176,-43.70114],[-71.65078,-43.70015],[-71.63292,-43.7071],[-71.63018,-43.69866],[-71.61026,-43.70114],[-71.60134,-43.69668],[-71.6034,-43.68675],[-71.61232,-43.67731],[-71.58898,-43.67533],[-71.58074,-43.65248],[-71.59173,-43.63707],[-71.6082,-43.62813],[-71.62537,-43.62415],[-71.65284,-43.62018],[-71.67344,-43.62515],[-71.68854,-43.62515],[-71.70228,-43.62415],[-71.70365,-43.61421],[-71.70914,-43.60327],[-71.70708,-43.58636],[-71.71807,-43.57791],[-71.73317,-43.57841],[-71.74141,-43.58636],[-71.76133,-43.58189],[-71.75995,-43.56647],[-71.76751,-43.56298],[-71.76613,-43.55651],[-71.77094,-43.55054],[-71.76957,-43.54905],[-71.77781,-43.5381],[-71.78467,-43.54208],[-71.79429,-43.53959],[-71.82862,-43.54955],[-71.84853,-43.54756],[-71.87188,-43.55204],[-71.87806,-43.54706],[-71.87531,-43.54507],[-71.87943,-43.52964],[-71.87531,-43.52267],[-71.86913,-43.52366],[-71.8705,-43.51868],[-71.86707,-43.51868],[-71.86364,-43.51122],[-71.85677,-43.50574],[-71.85334,-43.49478],[-71.84784,-43.48482],[-71.8705,-43.46239],[-71.87806,-43.46339],[-71.88149,-43.45242],[-71.8911,-43.44993],[-71.90346,-43.45591],[-71.91926,-43.45591],[-71.92475,-43.45791],[-71.93162,-43.45691],[-71.93436,-43.44744],[-71.92818,-43.44245],[-71.92818,-43.43797],[-71.92406,-43.43298],[-71.92406,-43.427],[-71.91857,-43.4255],[-71.92063,-43.41952],[-71.91308,-43.41553],[-71.93024,-43.39956],[-71.93162,-43.38609],[-71.92132,-43.3821],[-71.91308,-43.38509],[-71.90552,-43.3846],[-71.9069,-43.3821],[-71.90415,-43.3801],[-71.89385,-43.3801],[-71.89728,-43.37012],[-71.89797,-43.36463],[-71.88973,-43.35714],[-71.89385,-43.35415],[-71.89591,-43.34915],[-71.90346,-43.34366],[-71.8966,-43.33817],[-71.90484,-43.32169],[-71.89797,-43.31869],[-71.88904,-43.32518],[-71.87325,-43.32668],[-71.8657,-43.33367],[-71.85334,-43.33217],[-71.84922,-43.33617],[-71.83686,-43.33417],[-71.8245,-43.32468],[-71.81008,-43.31919],[-71.81008,-43.31319],[-71.80184,-43.31169],[-71.8039,-43.3052],[-71.79429,-43.2972],[-71.77918,-43.2962],[-71.76201,-43.3047],[-71.76201,-43.31319],[-71.74897,-43.31869],[-71.73455,-43.31269],[-71.73523,-43.28721],[-71.7318,-43.28171],[-71.73867,-43.27221],[-71.73867,-43.26171],[-71.74828,-43.25921],[-71.74759,-43.24971],[-71.7524,-43.24221],[-71.75515,-43.24071],[-71.75721,-43.2287],[-71.74347,-43.22219],[-71.73043,-43.20218],[-71.73935,-43.17965],[-71.75377,-43.17614],[-71.76064,-43.16362],[-71.77369,-43.16362],[-71.78467,-43.16763],[-71.78536,-43.16312],[-71.79909,-43.1521],[-71.80665,-43.15461],[-71.80733,-43.1511],[-71.81763,-43.14609],[-71.8245,-43.1506],[-71.83754,-43.14359],[-71.86089,-43.14259],[-71.8554,-43.13457],[-71.85334,-43.12755],[-71.86158,-43.13056],[-71.88836,-43.12455],[-71.89316,-43.10801],[-71.92544,-43.09948],[-71.93162,-43.10049],[-71.94191,-43.09146],[-71.93574,-43.08043],[-71.93574,-43.05334],[-71.9426,-43.05133],[-71.94191,-43.04632],[-71.96457,-43.03979],[-71.9735,-43.04581],[-71.97899,-43.04581],[-71.98105,-43.03728],[-71.98929,-43.03477],[-72.00234,-43.03879],[-72.01264,-43.03126],[-72.02088,-43.01771],[-72.03804,-43.00867],[-72.04079,-43.00164],[-72.03942,-42.99963],[-72.03942,-42.99109],[-72.05796,-42.98205],[-72.05658,-42.97502],[-72.06139,-42.97251],[-72.06002,-42.96899],[-72.07375,-42.9509],[-72.08474,-42.94839],[-72.08611,-42.9514],[-72.09366,-42.9514],[-72.1019,-42.93532],[-72.11289,-42.93833],[-72.1177,-42.93582],[-72.11907,-42.92928],[-72.11426,-42.92275],[-72.13212,-42.91269],[-72.1328,-42.90766],[-72.14447,-42.89861],[-72.1328,-42.88452],[-72.11976,-42.8815],[-72.12113,-42.87496],[-72.13555,-42.86892],[-72.13555,-42.85282],[-72.14791,-42.8503],[-72.15134,-42.83016],[-72.16095,-42.82462],[-72.15615,-42.81858],[-72.16576,-42.79944],[-72.14791,-42.79843],[-72.14035,-42.7944],[-72.13692,-42.78785],[-72.14173,-42.78079],[-72.13212,-42.77676],[-72.13486,-42.75912],[-72.14791,-42.74147],[-72.13006,-42.73189],[-72.13692,-42.72533],[-72.13761,-42.71221],[-72.17881,-42.69809],[-72.17263,-42.69203],[-72.17469,-42.6885],[-72.17194,-42.67083],[-72.16095,-42.6779],[-72.14722,-42.68143],[-72.13555,-42.67992],[-72.13418,-42.67588],[-72.13143,-42.67234],[-72.12319,-42.67335],[-72.12113,-42.66578],[-72.11632,-42.65871],[-72.09778,-42.64154],[-72.10396,-42.62992],[-72.1177,-42.63093],[-72.11426,-42.61679],[-72.1177,-42.60314],[-72.09366,-42.60162],[-72.09778,-42.58848],[-72.07512,-42.56573],[-72.06551,-42.5718],[-72.05384,-42.56371],[-72.05452,-42.54449],[-72.04285,-42.53639],[-72.03392,-42.52425],[-72.02774,-42.5202],[-72.02843,-42.50552],[-72.02088,-42.49641],[-72.01264,-42.49641],[-72.01333,-42.48577],[-72.03255,-42.4645],[-72.03598,-42.45285],[-72.0456,-42.45133],[-72.04628,-42.44779],[-72.03942,-42.44424],[-72.03324,-42.42853],[-72.0353,-42.41687],[-72.02706,-42.41079],[-72.04079,-42.39811],[-72.06894,-42.39152],[-72.0765,-42.38138],[-72.08748,-42.39558],[-72.11289,-42.39761],[-72.13074,-42.38594],[-72.13006,-42.37681],[-72.13555,-42.3687],[-72.13074,-42.35753],[-72.13967,-42.34586],[-72.13623,-42.32657],[-72.12868,-42.32708],[-72.12113,-42.32353],[-72.128,-42.30931],[-72.13418,-42.30322],[-72.14104,-42.29052],[-72.16851,-42.26055],[-72.16988,-42.25241],[-72.1534,-42.24733],[-72.16027,-42.22496],[-72.16713,-42.21276],[-72.15752,-42.20564],[-72.15683,-42.19394],[-72.18636,-42.1746],[-72.18911,-42.15883],[-72.18155,-42.15577],[-72.174,-42.13897],[-72.12456,-42.15577],[-72.11701,-42.1461],[-72.10534,-42.14406],[-72.06757,-42.14763],[-72.06551,-42.13846],[-72.06894,-42.13134],[-72.07718,-42.13286],[-72.08062,-42.12828],[-72.0662,-42.12268],[-72.06826,-42.11606],[-72.05452,-42.11402],[-72.04628,-42.12421],[-72.03667,-42.12573],[-72.03049,-42.12217],[-72.02157,-42.1293],[-72.01333,-42.13388],[-72.00921,-42.13897],[-71.98586,-42.13948],[-71.97007,-42.14457],[-71.96595,-42.14305],[-71.96663,-42.13846],[-71.95565,-42.14203],[-71.95496,-42.15577],[-71.95015,-42.15832],[-71.95427,-42.16443],[-71.94741,-42.16697],[-71.93848,-42.17969],[-71.92612,-42.18834],[-71.91651,-42.18834],[-71.89591,-42.17969],[-71.87943,-42.16595],[-71.8808,-42.16188],[-71.87325,-42.15526],[-71.85952,-42.15883],[-71.84647,-42.15272],[-71.84029,-42.16086],[-71.83136,-42.16188],[-71.82862,-42.15883],[-71.81763,-42.1573],[-71.81008,-42.1517],[-71.80665,-42.14661],[-71.80184,-42.14508],[-71.79017,-42.14916],[-71.78124,-42.14814],[-71.77575,-42.14101],[-71.77506,-42.13032],[-71.74759,-42.1293],[-71.74073,-42.12522],[-71.72699,-42.12319],[-71.72699,-42.11351],[-71.72562,-42.10893],[-71.73043,-42.10434],[-71.72837,-42.10026],[-71.74073,-42.08447],[-71.74004,-42.07377],[-71.72562,-42.05694],[-71.72905,-42.04318],[-71.75858,-42.03502],[-71.75789,-42.02431],[-71.76133,-42.01309],[-71.75995,-42.00951],[-71.76819,-41.99829],[-71.77643,-41.99778],[-71.77987,-41.98247],[-71.79429,-41.96052],[-71.79017,-41.95184],[-71.79429,-41.94264],[-71.78467,-41.94264],[-71.77369,-41.94928],[-71.77369,-41.93141],[-71.77712,-41.91914],[-71.77437,-41.91046],[-71.78948,-41.88899],[-71.79017,-41.85218],[-71.79772,-41.84348],[-71.7936,-41.83223],[-71.74897,-41.82404],[-71.75309,-41.8179],[-71.76476,-41.81585],[-71.77369,-41.79333],[-71.76819,-41.78514],[-71.75446,-41.78873],[-71.76407,-41.78105],[-71.77643,-41.76568],[-71.77506,-41.75902],[-71.78124,-41.75339],[-71.78673,-41.73853],[-71.78399,-41.73341],[-71.79017,-41.7329],[-71.79909,-41.72419],[-71.81145,-41.7206],[-71.80184,-41.71137],[-71.7936,-41.70112],[-71.79635,-41.69087],[-71.80665,-41.69138],[-71.81626,-41.68984],[-71.81694,-41.66933],[-71.82999,-41.67394],[-71.83754,-41.6642],[-71.83411,-41.6524],[-71.84578,-41.64419],[-71.85334,-41.64932],[-71.85883,-41.64881],[-71.85952,-41.63649],[-71.86776,-41.62366],[-71.8863,-41.60313],[-71.87806,-41.5985],[-71.87325,-41.58669],[-71.8657,-41.58464],[-71.86158,-41.57334],[-71.84922,-41.57128],[-71.84372,-41.56512],[-71.83823,-41.56717],[-71.83342,-41.57231],[-71.82518,-41.57693],[-71.81763,-41.57539],[-71.82999,-41.57077],[-71.83068,-41.5497],[-71.83892,-41.54765],[-71.84098,-41.53788],[-71.84784,-41.53326],[-71.84716,-41.52863],[-71.85059,-41.51424],[-71.84441,-41.50035],[-71.83823,-41.49933],[-71.84098,-41.49264],[-71.82793,-41.48184],[-71.83754,-41.47618],[-71.83686,-41.4664],[-71.84304,-41.45405],[-71.83548,-41.4417],[-71.83823,-41.44016],[-71.83617,-41.43244],[-71.84235,-41.42832],[-71.86638,-41.41905],[-71.8705,-41.40978],[-71.8657,-41.3969],[-71.87806,-41.39021],[-71.87943,-41.383],[-71.88767,-41.37836],[-71.89179,-41.36651],[-71.90964,-41.36084],[-71.90758,-41.34641],[-71.9117,-41.34125],[-71.90415,-41.33713],[-71.90003,-41.34074],[-71.89797,-41.33764],[-71.90209,-41.33042],[-71.88218,-41.32217],[-71.8863,-41.31444],[-71.876,-41.30773],[-71.87668,-41.29587],[-71.89042,-41.28968],[-71.89522,-41.27213],[-71.88904,-41.26543],[-71.90003,-41.2551],[-71.87668,-41.26026],[-71.86501,-41.25613],[-71.85952,-41.25923],[-71.85402,-41.2582],[-71.84853,-41.2613],[-71.84647,-41.26801],[-71.83686,-41.27213],[-71.85128,-41.24994],[-71.85814,-41.24787],[-71.8451,-41.24323],[-71.8499,-41.23652],[-71.86158,-41.2329],[-71.8554,-41.2267],[-71.85677,-41.21276],[-71.87462,-41.20449],[-71.87325,-41.19571],[-71.88424,-41.17246],[-71.88939,-41.16522],[-71.87737,-41.15695],[-71.84166,-41.15152],[-71.84235,-41.13084],[-71.83548,-41.12023],[-71.83617,-41.11558],[-71.84716,-41.10782],[-71.84304,-41.10316],[-71.85265,-41.09695],[-71.84304,-41.07625],[-71.82999,-41.0747],[-71.82793,-41.06693],[-71.819,-41.0659],[-71.81832,-41.06176],[-71.8245,-41.05399],[-71.83686,-41.05036],[-71.83548,-41.0426],[-71.84098,-41.03483],[-71.85128,-41.02965],[-71.85814,-41.03327],[-71.8657,-41.01514],[-71.87394,-41.01048],[-71.876,-40.99804],[-71.89797,-40.98249],[-71.9069,-40.97524],[-71.90552,-40.96487],[-71.8863,-40.96435],[-71.8657,-40.95398],[-71.8602,-40.95605],[-71.85471,-40.94516],[-71.86432,-40.93219],[-71.85814,-40.92286],[-71.86844,-40.90781],[-71.86501,-40.90314],[-71.8705,-40.89276],[-71.86158,-40.88757],[-71.86638,-40.88186],[-71.88012,-40.88186],[-71.9117,-40.85174],[-71.91102,-40.84187],[-71.92475,-40.83304],[-71.92406,-40.82732],[-71.93299,-40.82161],[-71.92612,-40.81018],[-71.92956,-40.77691],[-71.95908,-40.7587],[-71.95633,-40.75038],[-71.95702,-40.74518],[-71.96526,-40.74518],[-71.96457,-40.7176],[-71.94878,-40.71916],[-71.93093,-40.69574],[-71.90072,-40.68116],[-71.88767,-40.6671],[-71.87188,-40.66398],[-71.86501,-40.6447],[-71.85677,-40.64314],[-71.83892,-40.61031],[-71.84166,-40.59415],[-71.83274,-40.58998],[-71.8245,-40.57694],[-71.83686,-40.58685],[-71.84922,-40.58372],[-71.85471,-40.59154],[-71.87943,-40.56234],[-71.89042,-40.55607],[-71.88973,-40.5519],[-71.86707,-40.5566],[-71.85952,-40.55034],[-71.8602,-40.53312],[-71.84304,-40.52111],[-71.84784,-40.51694],[-71.85196,-40.5185],[-71.85814,-40.50649],[-71.84235,-40.48718],[-71.84922,-40.47516],[-71.83617,-40.46419],[-71.84304,-40.45322],[-71.82244,-40.43389],[-71.82381,-40.42187],[-71.81008,-40.40566],[-71.78536,-40.40932],[-71.77712,-40.42187],[-71.76407,-40.41612],[-71.75789,-40.41821],[-71.75515,-40.4318],[-71.73935,-40.4365],[-71.70845,-40.41977],[-71.70914,-40.41455],[-71.69266,-40.40409],[-71.69335,-40.37323],[-71.65558,-40.36329],[-71.66176,-40.3455],[-71.67481,-40.34132],[-71.67138,-40.33765],[-71.67,-40.33137],[-71.67687,-40.32561],[-71.67069,-40.31985],[-71.67344,-40.30886],[-71.70296,-40.28372],[-71.71807,-40.27744],[-71.71807,-40.28477],[-71.72837,-40.29367],[-71.73455,-40.30572],[-71.75652,-40.30258],[-71.75927,-40.29315],[-71.75583,-40.28582],[-71.76751,-40.27272],[-71.78811,-40.26277],[-71.7833,-40.2591],[-71.79772,-40.25595],[-71.80871,-40.23027],[-71.82244,-40.23184],[-71.82999,-40.21507],[-71.82518,-40.20405],[-71.81694,-40.20405],[-71.79841,-40.1836],[-71.819,-40.17993],[-71.8293,-40.17101],[-71.81008,-40.14949],[-71.8142,-40.14372],[-71.81008,-40.13532],[-71.80184,-40.1369],[-71.80321,-40.12587],[-71.80802,-40.12325],[-71.80115,-40.11379],[-71.81351,-40.10171],[-71.82587,-40.11117],[-71.82862,-40.09173],[-71.81282,-40.07913],[-71.80047,-40.08438],[-71.75103,-40.09384],[-71.72287,-40.10907],[-71.69953,-40.11537],[-71.67412,-40.10277],[-71.66863,-40.0828],[-71.66657,-40.07597],[-71.68923,-40.03761],[-71.6858,-40.02604],[-71.67206,-40.02394],[-71.67138,-40.00027],[-71.64322,-39.96765],[-71.62537,-39.97397],[-71.61438,-39.95607],[-71.62537,-39.93923],[-71.60546,-39.93133],[-71.59379,-39.90079],[-71.61507,-39.8755],[-71.6343,-39.87971],[-71.63773,-39.85705],[-71.6494,-39.85125],[-71.66451,-39.85969],[-71.68374,-39.85494],[-71.69198,-39.83965],[-71.69266,-39.82278],[-71.68099,-39.81118],[-71.66657,-39.80643],[-71.68236,-39.79905],[-71.68168,-39.77055],[-71.68717,-39.75577],[-71.70433,-39.74363],[-71.71257,-39.72779],[-71.69678,-39.70666],[-71.70296,-39.6998],[-71.70228,-39.69187],[-71.67412,-39.69187],[-71.67069,-39.67866],[-71.68099,-39.68025],[-71.69198,-39.67443],[-71.6961,-39.65858],[-71.71463,-39.648],[-71.71601,-39.63214],[-71.69884,-39.6205],[-71.69816,-39.58559],[-71.6906,-39.58188],[-71.68854,-39.57289],[-71.67893,-39.56442],[-71.65696,-39.57977],[-71.65696,-39.58717],[-71.63704,-39.584],[-71.61095,-39.60358],[-71.61438,-39.62315],[-71.56632,-39.6332],[-71.54503,-39.62579],[-71.52512,-39.62526],[-71.50259,-39.63725],[-71.49148,-39.61627],[-71.48118,-39.61098],[-71.47637,-39.59881],[-71.46401,-39.58665],[-71.46126,-39.57977],[-71.47362,-39.57236],[-71.4695,-39.55859],[-71.47156,-39.54906],[-71.50315,-39.55753],[-71.51482,-39.54483],[-71.53405,-39.53318],[-71.51757,-39.50987],[-71.51894,-39.50034],[-71.47637,-39.49239],[-71.46401,-39.4696],[-71.46538,-39.45847],[-71.45783,-39.45104],[-71.45028,-39.44998],[-71.45096,-39.42241],[-71.46126,-39.424],[-71.47088,-39.40808],[-71.46058,-39.40384],[-71.45096,-39.40968],[-71.44478,-39.40384],[-71.44616,-39.3927],[-71.4544,-39.39004],[-71.45783,-39.36882],[-71.42693,-39.3651],[-71.40908,-39.35183],[-71.3974,-39.34227],[-71.39397,-39.30296],[-71.38161,-39.28383],[-71.37681,-39.2833],[-71.37681,-39.26788],[-71.39122,-39.26363],[-71.39191,-39.24874],[-71.38367,-39.23598],[-71.39191,-39.21577],[-71.38161,-39.2147],[-71.39878,-39.18331],[-71.39878,-39.17373],[-71.40496,-39.16415],[-71.41457,-39.16361],[-71.42006,-39.15456],[-71.41388,-39.14338],[-71.42212,-39.12314],[-71.40633,-39.09863],[-71.418,-39.06932],[-71.41594,-39.05972],[-71.40771,-39.05972],[-71.41251,-39.05332],[-71.39947,-39.04426],[-71.40084,-39.03732],[-71.42075,-39.02292],[-71.41938,-39.01492],[-71.44204,-38.97917],[-71.43586,-38.97756],[-71.43448,-38.96208],[-71.44066,-38.93752],[-71.42899,-38.91989],[-71.4132,-38.92203],[-71.3926,-38.90867],[-71.37543,-38.9044],[-71.36033,-38.88676],[-71.33011,-38.87447],[-71.32256,-38.87928],[-71.29509,-38.87126],[-71.29303,-38.85736],[-71.26763,-38.85041],[-71.269,-38.83329],[-71.26145,-38.8226],[-71.26282,-38.81404],[-71.24772,-38.8135],[-71.23742,-38.8044],[-71.20995,-38.81725],[-71.18523,-38.8135],[-71.17974,-38.80119],[-71.14953,-38.79798],[-71.13511,-38.78086],[-71.12206,-38.77657],[-71.11725,-38.77925],[-71.10146,-38.76373],[-71.10009,-38.75837],[-71.09597,-38.75462],[-71.06781,-38.76854],[-71.05614,-38.75784],[-71.03211,-38.75784],[-71.00327,-38.76694],[-70.97306,-38.76051],[-70.92568,-38.7648],[-70.90577,-38.72784],[-70.88997,-38.72142],[-70.88448,-38.69945],[-70.89959,-38.69355],[-70.90439,-38.66943],[-70.88105,-38.63994],[-70.86663,-38.63297],[-70.83367,-38.60775],[-70.82886,-38.59649],[-70.8371,-38.58521],[-70.8371,-38.55139],[-70.84603,-38.53528],[-70.86319,-38.52454],[-70.86594,-38.51433],[-70.87624,-38.51218],[-70.8989,-38.50896],[-70.90989,-38.50305],[-70.9298,-38.48262],[-70.92705,-38.47295],[-70.96001,-38.44391],[-70.97718,-38.44122],[-70.98542,-38.42939],[-70.97924,-38.41325],[-70.98679,-38.39819],[-70.98679,-38.37451],[-70.98198,-38.36105],[-70.99709,-38.3562],[-70.9964,-38.33951],[-71.00121,-38.32712],[-71.0019,-38.30719],[-70.99778,-38.29156],[-71.0122,-38.2824],[-71.01014,-38.25922],[-71.01769,-38.24789],[-71.03417,-38.24951],[-71.01975,-38.24034],[-71.01494,-38.22632],[-71.02318,-38.21445],[-71.01357,-38.21067],[-71.00121,-38.20906],[-70.9964,-38.20312],[-70.99366,-38.16912],[-71.01151,-38.16264],[-71.01082,-38.15238],[-71.02524,-38.14914],[-71.02799,-38.13402],[-71.04378,-38.12214],[-71.02387,-38.11187],[-70.98885,-38.11079],[-70.98336,-38.10593],[-70.99022,-38.08432],[-71.0122,-38.07945],[-71.03692,-38.05621],[-71.04447,-38.05458],[-71.05477,-38.04377],[-71.05065,-38.02538],[-71.06575,-38.01619],[-71.06026,-38.0005],[-71.04859,-37.99238],[-71.06369,-37.99292],[-71.06987,-37.98101],[-71.06301,-37.97019],[-71.07605,-37.96315],[-71.09116,-37.96315],[-71.10215,-37.95395],[-71.11245,-37.95341],[-71.10764,-37.93175],[-71.11451,-37.92037],[-71.10009,-37.90087],[-71.10901,-37.89979],[-71.10833,-37.89057],[-71.12549,-37.87919],[-71.13785,-37.85914],[-71.1612,-37.85805],[-71.16806,-37.86022],[-71.18523,-37.85643],[-71.16806,-37.85263],[-71.16051,-37.83962],[-71.12755,-37.8304],[-71.12206,-37.82064],[-71.13717,-37.81684],[-71.15365,-37.8087],[-71.15365,-37.80111],[-71.16257,-37.79026],[-71.17287,-37.78049],[-71.15777,-37.77126],[-71.15708,-37.75823],[-71.16669,-37.74683],[-71.18523,-37.73435],[-71.18248,-37.72783],[-71.18935,-37.72457],[-71.18729,-37.71208],[-71.20926,-37.69958],[-71.21201,-37.68709],[-71.20102,-37.66915],[-71.20514,-37.6485],[-71.19278,-37.62838],[-71.16944,-37.6126],[-71.16188,-37.61532],[-71.14472,-37.6088],[-71.12824,-37.58486],[-71.12481,-37.57996],[-71.13373,-37.56037],[-71.1303,-37.55438],[-71.13923,-37.54513],[-71.15021,-37.53968],[-71.13305,-37.52879],[-71.12412,-37.50319],[-71.12,-37.48957],[-71.12,-37.45906],[-71.1406,-37.4427],[-71.15365,-37.39908],[-71.18866,-37.39308],[-71.19141,-37.38435],[-71.20034,-37.38162],[-71.20171,-37.36689],[-71.19004,-37.35925],[-71.20034,-37.33905],[-71.20789,-37.3396],[-71.21064,-37.31011],[-71.2175,-37.30301],[-71.21613,-37.28171],[-71.22094,-37.27296],[-71.18798,-37.27515],[-71.18248,-37.25821],[-71.17424,-37.2593],[-71.17218,-37.25275],[-71.16326,-37.24783],[-71.15639,-37.23143],[-71.16875,-37.22432],[-71.13579,-37.21885],[-71.11382,-37.20354],[-71.12824,-37.18768],[-71.12893,-37.17072],[-71.13648,-37.16579],[-71.13579,-37.14281],[-71.12206,-37.13569],[-71.09391,-37.12639],[-71.09185,-37.1127],[-71.09871,-37.10613],[-71.10352,-37.10667],[-71.11245,-37.09353],[-71.12343,-37.0897],[-71.12,-37.07217],[-71.12824,-37.06833],[-71.13442,-37.07217],[-71.14403,-37.06285],[-71.13785,-37.05354],[-71.14403,-37.03107],[-71.16806,-36.99762],[-71.18729,-36.99598],[-71.19965,-36.98556],[-71.223,-36.98117],[-71.21956,-36.97239],[-71.20652,-36.97623],[-71.17424,-36.968],[-71.16806,-36.97678],[-71.14815,-36.98007],[-71.12893,-36.97568],[-71.12,-36.96855],[-71.10627,-36.9713],[-71.10077,-36.96471],[-71.10009,-36.95703],[-71.08635,-36.93618],[-71.09803,-36.9241],[-71.10352,-36.92794],[-71.11176,-36.9241],[-71.12,-36.93014],[-71.12687,-36.92794],[-71.14472,-36.92794],[-71.14953,-36.89994],[-71.13991,-36.895],[-71.1303,-36.87413],[-71.11931,-36.86864],[-71.1303,-36.856],[-71.14815,-36.85381],[-71.15983,-36.86095],[-71.18111,-36.84172],[-71.1715,-36.83238],[-71.16944,-36.82083],[-71.16257,-36.81754],[-71.15502,-36.82303],[-71.15365,-36.82633],[-71.14129,-36.82578],[-71.14335,-36.81808],[-71.13305,-36.81314],[-71.12755,-36.79005],[-71.12824,-36.7631],[-71.11931,-36.75374],[-71.12137,-36.74219],[-71.11107,-36.72678],[-71.11245,-36.71302],[-71.11794,-36.69651],[-71.11313,-36.67889],[-71.08773,-36.67613],[-71.08223,-36.68825],[-71.07674,-36.70697],[-71.06781,-36.71302],[-71.05614,-36.70862],[-71.02112,-36.69706],[-71.0122,-36.69981],[-71.00739,-36.68384],[-71.01082,-36.66402],[-71.02662,-36.66236],[-71.02936,-36.6508],[-71.04241,-36.64694],[-71.0431,-36.62986],[-71.05751,-36.61829],[-71.0479,-36.60616],[-71.04584,-36.57915],[-71.05408,-36.57419],[-71.04104,-36.54661],[-71.05065,-36.52123],[-71.03554,-36.50964],[-71.03898,-36.47597],[-71.02593,-36.471],[-71.01632,-36.47597],[-71.00945,-36.48756],[-70.99846,-36.48701],[-70.99022,-36.49419],[-70.97924,-36.49364],[-70.97581,-36.50247],[-70.95383,-36.50302],[-70.94285,-36.49032],[-70.93392,-36.49032],[-70.92705,-36.48259],[-70.93117,-36.47486],[-70.90165,-36.47486],[-70.88791,-36.46769],[-70.88517,-36.46216],[-70.89409,-36.45388],[-70.88654,-36.43731],[-70.89272,-36.43289],[-70.89272,-36.42405],[-70.88654,-36.41521],[-70.88997,-36.39752],[-70.86319,-36.39642],[-70.87006,-36.4025],[-70.86937,-36.40968],[-70.84877,-36.41687],[-70.83847,-36.41466],[-70.83367,-36.40526],[-70.82406,-36.40195],[-70.81925,-36.39476],[-70.79316,-36.41908],[-70.7911,-36.42571],[-70.77599,-36.42736],[-70.76157,-36.41742],[-70.75333,-36.40582],[-70.73616,-36.41521],[-70.74028,-36.42902],[-70.71351,-36.42515],[-70.70115,-36.40747],[-70.69085,-36.40968],[-70.6881,-36.39863],[-70.67917,-36.38979],[-70.67849,-36.37652],[-70.68398,-36.36823],[-70.68741,-36.36989],[-70.69222,-36.35993],[-70.70183,-36.35993],[-70.70115,-36.35053],[-70.71076,-36.34887],[-70.71145,-36.33836],[-70.70458,-36.33339],[-70.70252,-36.32066],[-70.69085,-36.31015],[-70.68673,-36.3024],[-70.68398,-36.28137],[-70.70321,-36.27805],[-70.70733,-36.27196],[-70.69016,-36.25646],[-70.66269,-36.23985],[-70.63866,-36.24317],[-70.62355,-36.22711],[-70.63248,-36.21769],[-70.60845,-36.2055],[-70.60433,-36.19387],[-70.58579,-36.18888],[-70.58236,-36.18223],[-70.56931,-36.17503],[-70.58304,-36.14731],[-70.57,-36.13289],[-70.54871,-36.14176],[-70.53223,-36.14342],[-70.52331,-36.14731],[-70.52262,-36.15285],[-70.51163,-36.15507],[-70.50614,-36.16726],[-70.49859,-36.17059],[-70.49103,-36.18001],[-70.46494,-36.1717],[-70.45189,-36.17336],[-70.44022,-36.16449],[-70.42168,-36.15729],[-70.42168,-36.14342],[-70.41825,-36.13733],[-70.41962,-36.12901],[-70.42237,-36.12457],[-70.41962,-36.11514],[-70.41619,-36.11292],[-70.41756,-36.10294],[-70.42099,-36.09683],[-70.42717,-36.09461],[-70.41825,-36.08518],[-70.40932,-36.0541],[-70.39834,-36.05188],[-70.39628,-36.05521],[-70.38735,-36.05077],[-70.38735,-36.04688],[-70.37774,-36.04633],[-70.37156,-36.043],[-70.36881,-36.03689],[-70.37087,-36.03356],[-70.38048,-36.02578],[-70.38254,-35.99912],[-70.37636,-35.99468],[-70.3798,-35.99079],[-70.3949,-35.98135],[-70.4004,-35.98412],[-70.42031,-35.9769],[-70.42305,-35.97134],[-70.41756,-35.96412],[-70.41756,-35.95856],[-70.39147,-35.95133],[-70.38735,-35.93911],[-70.37774,-35.93688],[-70.37774,-35.93243],[-70.36469,-35.92465],[-70.41069,-35.92298],[-70.41275,-35.91742],[-70.42443,-35.91575],[-70.4258,-35.90574],[-70.42305,-35.88961],[-70.42031,-35.88516],[-70.42168,-35.87626],[-70.40589,-35.86569],[-70.39765,-35.86736],[-70.3901,-35.8707],[-70.3798,-35.86457],[-70.37842,-35.85122],[-70.36881,-35.84064],[-70.36057,-35.84009],[-70.35782,-35.84231],[-70.33722,-35.83229],[-70.32692,-35.82172],[-70.318,-35.81949],[-70.3125,-35.81392],[-70.31594,-35.81002],[-70.32212,-35.81169],[-70.32898,-35.80501],[-70.33791,-35.79554],[-70.34752,-35.80111],[-70.3592,-35.80167],[-70.36469,-35.7922],[-70.37842,-35.78775],[-70.37911,-35.78552],[-70.37568,-35.78385],[-70.37705,-35.77605],[-70.38117,-35.76713],[-70.37499,-35.76491],[-70.37224,-35.75766],[-70.3592,-35.75432],[-70.36194,-35.7415],[-70.3695,-35.73704],[-70.36812,-35.7298],[-70.37018,-35.72032],[-70.37293,-35.71809],[-70.37293,-35.7075],[-70.37568,-35.69969],[-70.3798,-35.69969],[-70.38735,-35.6891],[-70.39696,-35.68742],[-70.39971,-35.68296],[-70.40383,-35.6785],[-70.40657,-35.67013],[-70.39765,-35.66344],[-70.40383,-35.65786],[-70.40932,-35.65563],[-70.40863,-35.65005],[-70.41207,-35.64335],[-70.42443,-35.64056],[-70.41756,-35.6294],[-70.40108,-35.62661],[-70.39078,-35.60819],[-70.38804,-35.60986],[-70.38529,-35.60317],[-70.39078,-35.59312],[-70.39834,-35.58697],[-70.39902,-35.57413],[-70.40383,-35.56296],[-70.41001,-35.55905],[-70.41001,-35.54788],[-70.40589,-35.54564],[-70.41344,-35.52944],[-70.41069,-35.52441],[-70.40589,-35.52608],[-70.39765,-35.52106],[-70.39765,-35.5177],[-70.38666,-35.51435],[-70.36812,-35.52161],[-70.36812,-35.51882],[-70.38392,-35.51155],[-70.39559,-35.48696],[-70.40177,-35.48975],[-70.41756,-35.48807],[-70.4464,-35.46347],[-70.44571,-35.45788],[-70.44777,-35.45228],[-70.43335,-35.44613],[-70.43541,-35.4355],[-70.44503,-35.43271],[-70.45395,-35.42655],[-70.45189,-35.42096],[-70.44571,-35.42096],[-70.43885,-35.412],[-70.44503,-35.41032],[-70.45327,-35.39297],[-70.42374,-35.3689],[-70.42511,-35.36442],[-70.41825,-35.35322],[-70.42031,-35.34762],[-70.43129,-35.34146],[-70.43747,-35.32353],[-70.43267,-35.31905],[-70.44777,-35.31457],[-70.46151,-35.32073],[-70.46906,-35.31177],[-70.49447,-35.32129],[-70.50545,-35.31961],[-70.51438,-35.30953],[-70.53086,-35.30785],[-70.54322,-35.3056],[-70.5494,-35.30056],[-70.56588,-35.3],[-70.58373,-35.26637],[-70.5803,-35.25796],[-70.57343,-35.25796],[-70.57274,-35.24787],[-70.56588,-35.24338],[-70.5645,-35.23272],[-70.56931,-35.22319],[-70.55764,-35.21758],[-70.5439,-35.20243],[-70.52949,-35.19682],[-70.52331,-35.20468],[-70.51438,-35.20243],[-70.49859,-35.20131],[-70.47249,-35.20299],[-70.47043,-35.19907],[-70.45945,-35.19514],[-70.45601,-35.19009],[-70.45395,-35.19065],[-70.44983,-35.19626],[-70.42649,-35.18728],[-70.42511,-35.18335],[-70.40795,-35.1783],[-70.40451,-35.17886],[-70.38872,-35.16932],[-70.37842,-35.17325],[-70.37636,-35.16876],[-70.37087,-35.15304],[-70.37156,-35.14967],[-70.36126,-35.13564],[-70.36812,-35.12497],[-70.37087,-35.11261],[-70.35714,-35.09857],[-70.37362,-35.08452],[-70.37293,-35.07272],[-70.37362,-35.05811],[-70.37774,-35.04855],[-70.37156,-35.03843],[-70.36057,-35.03337],[-70.36332,-35.021],[-70.36675,-35.01707],[-70.36538,-35.00413],[-70.35714,-34.99738],[-70.33516,-34.98951],[-70.33036,-34.97601],[-70.33173,-34.93943],[-70.32692,-34.93267],[-70.31937,-34.93155],[-70.30289,-34.89889],[-70.28985,-34.89326],[-70.29122,-34.88368],[-70.28367,-34.87749],[-70.2768,-34.87692],[-70.28092,-34.86904],[-70.27749,-34.8589],[-70.28023,-34.8527],[-70.26307,-34.83241],[-70.25757,-34.80648],[-70.25002,-34.79915],[-70.25277,-34.79295],[-70.26993,-34.79182],[-70.28023,-34.78618],[-70.28092,-34.78167],[-70.29397,-34.77941],[-70.30083,-34.77152],[-70.30907,-34.76983],[-70.30564,-34.74444],[-70.29122,-34.7388],[-70.27199,-34.73654],[-70.26032,-34.72977],[-70.26169,-34.72187],[-70.25826,-34.72074],[-70.25277,-34.70324],[-70.24521,-34.69251],[-70.22118,-34.68066],[-70.21637,-34.68292],[-70.21431,-34.66146],[-70.22118,-34.65863],[-70.21912,-34.6496],[-70.22393,-34.64112],[-70.21843,-34.627],[-70.21775,-34.61118],[-70.19989,-34.601],[-70.2047,-34.59479],[-70.19028,-34.58913],[-70.19371,-34.57952],[-70.18616,-34.57217],[-70.17792,-34.5733],[-70.16762,-34.56313],[-70.169,-34.55804],[-70.14977,-34.5405],[-70.14565,-34.52863],[-70.13878,-34.51448],[-70.12848,-34.49411],[-70.13192,-34.48732],[-70.11681,-34.47487],[-70.1017,-34.48336],[-70.08042,-34.4726],[-70.07905,-34.46581],[-70.07424,-34.46411],[-70.06463,-34.45052],[-70.05364,-34.44883],[-70.04197,-34.42278],[-70.02961,-34.42391],[-70.0145,-34.41258],[-70.00901,-34.39332],[-70.01587,-34.38085],[-70.0248,-34.37405],[-70.02343,-34.36045],[-70.01656,-34.35308],[-70.01999,-34.34628],[-70.0145,-34.33777],[-70.02274,-34.30828],[-70.03235,-34.28843],[-70.01931,-34.27822],[-70.01175,-34.26573],[-70.00557,-34.26517],[-70.00352,-34.26176],[-69.98635,-34.26063],[-69.98429,-34.25438],[-69.97261,-34.24871],[-69.95751,-34.25722],[-69.9424,-34.27198],[-69.93966,-34.27878],[-69.9273,-34.28389],[-69.90876,-34.2907],[-69.89708,-34.28446],[-69.89914,-34.26687],[-69.88335,-34.2629],[-69.87442,-34.26687],[-69.85245,-34.25722],[-69.82979,-34.25552],[-69.82636,-34.24871],[-69.81057,-34.247],[-69.80164,-34.24417],[-69.80507,-34.226],[-69.80095,-34.22089],[-69.79752,-34.20897],[-69.80164,-34.19363],[-69.81125,-34.18511],[-69.81606,-34.17603],[-69.8346,-34.16466],[-69.83529,-34.15841],[-69.86344,-34.13966],[-69.86893,-34.1408],[-69.87374,-34.13114],[-69.86893,-34.12261],[-69.8552,-34.11465],[-69.86001,-34.10271],[-69.84421,-34.09646],[-69.8346,-34.08565],[-69.83391,-34.0703],[-69.84833,-34.06859],[-69.8552,-34.05665],[-69.84833,-34.04925],[-69.84284,-34.03503],[-69.83735,-34.03218],[-69.82155,-34.01511],[-69.82293,-34.01055],[-69.83941,-34.00657],[-69.84147,-33.99348],[-69.84696,-33.98152],[-69.8552,-33.97184],[-69.85451,-33.96444],[-69.87374,-33.96387],[-69.88129,-33.97583],[-69.89502,-33.97412],[-69.90601,-33.9633],[-69.90052,-33.95647],[-69.9012,-33.94792],[-69.89365,-33.94223],[-69.89571,-33.93482],[-69.89228,-33.93026],[-69.89159,-33.92058],[-69.87854,-33.91374],[-69.87374,-33.9069],[-69.85589,-33.89322],[-69.85657,-33.88638],[-69.86824,-33.88125],[-69.86962,-33.86871],[-69.87374,-33.86073],[-69.88678,-33.8516],[-69.89777,-33.84875],[-69.89571,-33.80997],[-69.89365,-33.78942],[-69.90258,-33.77858],[-69.90395,-33.76888],[-69.90052,-33.76032],[-69.8806,-33.74376],[-69.8655,-33.71578],[-69.87442,-33.69179],[-69.88472,-33.68436],[-69.87992,-33.65921],[-69.86962,-33.65178],[-69.87786,-33.64607],[-69.87305,-33.63521],[-69.87717,-33.63063],[-69.8758,-33.62434],[-69.88129,-33.61805],[-69.87442,-33.60948],[-69.87511,-33.60147],[-69.86756,-33.59518],[-69.86687,-33.58088],[-69.87442,-33.55571],[-69.87236,-33.53911],[-69.85932,-33.53224],[-69.85451,-33.52423],[-69.83537,-33.51614],[-69.83237,-33.50641],[-69.82842,-33.47499],[-69.81469,-33.46754],[-69.82155,-33.45379],[-69.814,-33.44119],[-69.82224,-33.4303],[-69.80919,-33.424],[-69.79477,-33.42457],[-69.80095,-33.40336],[-69.81606,-33.39075],[-69.79546,-33.39648],[-69.78447,-33.39132],[-69.77486,-33.37412],[-69.76868,-33.34946],[-69.77143,-33.33971],[-69.80027,-33.28807],[-69.81263,-33.29036],[-69.82293,-33.28061],[-69.82842,-33.28003],[-69.83323,-33.27429],[-69.84009,-33.27314],[-69.85932,-33.28176],[-69.87374,-33.27659],[-69.88472,-33.27831],[-69.90807,-33.27027],[-69.91768,-33.24443],[-69.92249,-33.24558],[-69.917,-33.26625],[-69.9321,-33.27429],[-69.94378,-33.28405],[-69.94858,-33.28061],[-69.9527,-33.28577],[-69.96781,-33.29897],[-69.96918,-33.30988],[-70.00146,-33.3225],[-70.00901,-33.31734],[-70.01107,-33.30012],[-70.00626,-33.28635],[-70.03785,-33.26912],[-70.03304,-33.25305],[-70.02823,-33.24731],[-70.02961,-33.24099],[-70.02617,-33.2341],[-70.05501,-33.22491],[-70.06463,-33.2048],[-70.06463,-33.20021],[-70.05982,-33.19331],[-70.06531,-33.17837],[-70.05776,-33.1709],[-70.06806,-33.15365],[-70.05639,-33.14733],[-70.0557,-33.14273],[-70.05158,-33.13353],[-70.0763,-33.11915],[-70.06611,-33.10334],[-70.07287,-33.06508],[-70.09346,-33.05012],[-70.08523,-33.04551],[-70.08866,-33.03918],[-70.08248,-33.03688],[-70.08248,-33.02939],[-70.05295,-33.02939],[-70.04471,-33.02364],[-70.03441,-33.02364],[-70.02686,-33.01443],[-70.01999,-33.00809],[-70.02205,-32.98275],[-70.02892,-32.9695],[-70.02205,-32.96432],[-70.01999,-32.95625],[-70.00626,-32.95164],[-69.9994,-32.94473],[-70.00695,-32.93205],[-70.00283,-32.91937],[-69.99253,-32.91188],[-69.98909,-32.8992],[-70.00283,-32.88132],[-70.01587,-32.87959],[-70.02686,-32.8744],[-70.04471,-32.87036],[-70.05639,-32.85595],[-70.05433,-32.83287],[-70.07973,-32.82248],[-70.0866,-32.80575],[-70.10582,-32.79998],[-70.112,-32.774],[-70.12162,-32.76245],[-70.13054,-32.7561],[-70.1381,-32.72953],[-70.14702,-32.72838],[-70.14565,-32.70585],[-70.1429,-32.67696],[-70.15183,-32.63822],[-70.15938,-32.62781],[-70.17106,-32.6255],[-70.16488,-32.61509],[-70.1635,-32.59832],[-70.14977,-32.5798],[-70.12711,-32.57575],[-70.12642,-32.54682],[-70.12162,-32.53524],[-70.14222,-32.49761],[-70.13535,-32.49239],[-70.15046,-32.46285],[-70.16076,-32.46285],[-70.16488,-32.45706],[-70.1841,-32.44895],[-70.1944,-32.44895],[-70.20058,-32.44083],[-70.20951,-32.44141],[-70.21775,-32.42866],[-70.23697,-32.42924],[-70.23972,-32.40374],[-70.23148,-32.38982],[-70.22118,-32.38982],[-70.21775,-32.38287],[-70.22873,-32.36605],[-70.22736,-32.35445],[-70.21843,-32.34401],[-70.22118,-32.33995],[-70.21775,-32.3324],[-70.22324,-32.3237],[-70.23491,-32.31732],[-70.24109,-32.31674],[-70.24865,-32.30513],[-70.25757,-32.30339],[-70.26169,-32.2912],[-70.27131,-32.29352],[-70.28298,-32.29236],[-70.29259,-32.28714],[-70.2974,-32.27727],[-70.31937,-32.27146],[-70.3228,-32.26566],[-70.31937,-32.2523],[-70.30907,-32.24185],[-70.30907,-32.2343],[-70.30358,-32.23256],[-70.31182,-32.22152],[-70.30083,-32.20583],[-70.30838,-32.19828],[-70.30838,-32.18492],[-70.31662,-32.1762],[-70.31182,-32.16399],[-70.31662,-32.15876],[-70.31388,-32.14713],[-70.30289,-32.14132],[-70.30632,-32.13202],[-70.32761,-32.12737],[-70.34066,-32.10934],[-70.3386,-32.10236],[-70.34958,-32.08781],[-70.33516,-32.0756],[-70.33516,-32.0692],[-70.38872,-32.04476],[-70.38048,-32.03195],[-70.38117,-32.02555],[-70.35027,-32.02729],[-70.34615,-32.0401],[-70.33104,-32.04476],[-70.32212,-32.04941],[-70.30564,-32.04708],[-70.29603,-32.05174],[-70.28847,-32.05116],[-70.28435,-32.03835],[-70.27062,-32.03428],[-70.26375,-32.03661],[-70.25963,-32.02729],[-70.24796,-32.02322],[-70.25002,-32.01041],[-70.24727,-32.00226],[-70.25071,-31.99119],[-70.24041,-31.99119],[-70.22599,-31.97955],[-70.21706,-31.98129],[-70.21088,-31.9778],[-70.21019,-31.96091],[-70.21569,-31.95158],[-70.22255,-31.94692],[-70.23285,-31.92536],[-70.24247,-31.9207],[-70.23972,-31.9172],[-70.26307,-31.91079],[-70.26925,-31.90263],[-70.27405,-31.88922],[-70.28779,-31.88164],[-70.30014,-31.88456],[-70.31388,-31.87989],[-70.3434,-31.88631],[-70.34684,-31.88981],[-70.364,-31.88106],[-70.37362,-31.88456],[-70.3798,-31.87931],[-70.39147,-31.87873],[-70.40657,-31.87173],[-70.42786,-31.85424],[-70.43953,-31.84899],[-70.4464,-31.85307],[-70.46082,-31.84374],[-70.45189,-31.80757],[-70.45945,-31.80406],[-70.45601,-31.79648],[-70.46288,-31.79064],[-70.46975,-31.7597],[-70.45876,-31.73284],[-70.467,-31.71883],[-70.46357,-31.71299],[-70.46769,-31.7089],[-70.46631,-31.69955],[-70.48897,-31.68728],[-70.49447,-31.69429],[-70.51095,-31.6902],[-70.51095,-31.66391],[-70.50477,-31.65923],[-70.5082,-31.65105],[-70.53223,-31.63819],[-70.53361,-31.63117],[-70.5494,-31.60544],[-70.55695,-31.60544],[-70.56725,-31.59901],[-70.56244,-31.5955],[-70.56794,-31.5838],[-70.55901,-31.57445],[-70.56382,-31.56099],[-70.5597,-31.54636],[-70.55901,-31.52061],[-70.55214,-31.51124],[-70.55901,-31.50832],[-70.56794,-31.49954],[-70.56382,-31.48256],[-70.57068,-31.47611],[-70.56176,-31.45796],[-70.55283,-31.45503],[-70.54871,-31.44624],[-70.5542,-31.44097],[-70.54802,-31.43628],[-70.55214,-31.42984],[-70.55626,-31.4275],[-70.56176,-31.42105],[-70.55077,-31.40816],[-70.53361,-31.40874],[-70.54047,-31.38823],[-70.53086,-31.37533],[-70.52674,-31.36302],[-70.53292,-31.36126],[-70.53292,-31.35012],[-70.54253,-31.34485],[-70.54734,-31.31376],[-70.52811,-31.27679],[-70.52468,-31.25214],[-70.53223,-31.24451],[-70.51644,-31.23042],[-70.51987,-31.21574],[-70.51438,-31.19812],[-70.52468,-31.18814],[-70.51644,-31.17169],[-70.51644,-31.16229],[-70.50339,-31.14231],[-70.49515,-31.13349],[-70.49859,-31.12174],[-70.4876,-31.11468],[-70.47799,-31.11704],[-70.46494,-31.10293],[-70.45807,-31.08352],[-70.43473,-31.09881],[-70.42649,-31.12056],[-70.4155,-31.13408],[-70.41207,-31.14936],[-70.41275,-31.15524],[-70.40726,-31.16581],[-70.39628,-31.16346],[-70.38941,-31.15465],[-70.37636,-31.1523],[-70.36194,-31.13526],[-70.36469,-31.13114],[-70.364,-31.12115],[-70.3695,-31.11351],[-70.35645,-31.08999],[-70.3386,-31.06823],[-70.3283,-31.06176],[-70.32143,-31.04353],[-70.30907,-31.04353],[-70.29191,-31.04706],[-70.28641,-31.04294],[-70.27543,-31.04764],[-70.26925,-31.04294],[-70.27131,-31.02999],[-70.2768,-31.02176],[-70.28504,-31.0194],[-70.28847,-31.02352],[-70.29877,-31.0194],[-70.29397,-31.00999],[-70.29671,-30.99645],[-70.30358,-30.99527],[-70.29328,-30.9729],[-70.29877,-30.96231],[-70.31388,-30.95524],[-70.31594,-30.93816],[-70.32349,-30.93051],[-70.30838,-30.89752],[-70.29465,-30.84329],[-70.28435,-30.84094],[-70.27749,-30.82207],[-70.28092,-30.81794],[-70.27817,-30.81558],[-70.28573,-30.80143],[-70.29191,-30.79966],[-70.28985,-30.78845],[-70.28504,-30.78314],[-70.27955,-30.7855],[-70.27199,-30.78078],[-70.27405,-30.76249],[-70.27062,-30.74479],[-70.24659,-30.72709],[-70.2562,-30.71351],[-70.25826,-30.70052],[-70.25277,-30.67631],[-70.24315,-30.67395],[-70.23903,-30.66509],[-70.25139,-30.66095],[-70.24659,-30.63083],[-70.23835,-30.62492],[-70.23972,-30.61546],[-70.22667,-30.6066],[-70.22667,-30.60187],[-70.22049,-30.59714],[-70.22049,-30.58118],[-70.20539,-30.57054],[-70.20813,-30.55931],[-70.18959,-30.55103],[-70.19715,-30.53802],[-70.19028,-30.53329],[-70.18959,-30.52264],[-70.18479,-30.52146],[-70.1793,-30.5114],[-70.18822,-30.50371],[-70.19577,-30.49129],[-70.1484,-30.46229],[-70.13466,-30.45756],[-70.13054,-30.4469],[-70.12574,-30.44394],[-70.12436,-30.43506],[-70.1175,-30.43092],[-70.12642,-30.40664],[-70.13535,-30.4025],[-70.13398,-30.39717],[-70.14084,-30.38413],[-70.14359,-30.37169],[-70.15664,-30.36162],[-70.15252,-30.35392],[-70.15458,-30.3474],[-70.14702,-30.34088],[-70.13054,-30.34266],[-70.10445,-30.35392],[-70.10376,-30.36696],[-70.07905,-30.37525],[-70.08248,-30.3794],[-70.0763,-30.38177],[-70.06463,-30.3948],[-70.05295,-30.38947],[-70.03098,-30.39124],[-70.01999,-30.39657],[-69.99528,-30.3794],[-69.98291,-30.3794],[-69.96712,-30.38473],[-69.96026,-30.38295],[-69.95614,-30.3865],[-69.94515,-30.37762],[-69.93622,-30.35866],[-69.917,-30.34918],[-69.8964,-30.35451],[-69.89159,-30.348],[-69.9012,-30.34385],[-69.90532,-30.33733],[-69.90464,-30.32488],[-69.90738,-30.31066],[-69.90189,-30.30888],[-69.89983,-30.29939],[-69.90395,-30.29524],[-69.89708,-30.2905],[-69.89846,-30.28042],[-69.89571,-30.27271],[-69.88335,-30.27212],[-69.87786,-30.2567],[-69.88747,-30.2478],[-69.88816,-30.23712],[-69.88541,-30.23594],[-69.88816,-30.22289],[-69.88541,-30.21755],[-69.86824,-30.21043],[-69.85451,-30.21814],[-69.83529,-30.21814],[-69.82773,-30.19618],[-69.82087,-30.18609],[-69.82499,-30.18372],[-69.81675,-30.17897],[-69.82911,-30.16294],[-69.80919,-30.15344],[-69.81469,-30.13801],[-69.81881,-30.13444],[-69.81881,-30.12732],[-69.83254,-30.12316],[-69.84009,-30.1291],[-69.84765,-30.13029],[-69.87168,-30.11069],[-69.90395,-30.10534],[-69.93142,-30.12078],[-69.94584,-30.11306],[-69.9424,-30.10475],[-69.94446,-30.09168],[-69.95476,-30.09287],[-69.96506,-30.08514],[-69.95888,-30.08098],[-69.95888,-30.07504],[-69.96232,-30.07207],[-69.96232,-30.0691],[-69.94996,-30.06316],[-69.9424,-30.05127],[-69.93622,-30.05068],[-69.91494,-30.02512],[-69.92661,-30.00431],[-69.92112,-29.98409],[-69.89846,-29.95732],[-69.90052,-29.95018],[-69.89434,-29.93649],[-69.90601,-29.93768],[-69.91013,-29.92995],[-69.90395,-29.91745],[-69.88747,-29.90376],[-69.89502,-29.89543],[-69.88953,-29.88709],[-69.89571,-29.87757],[-69.87854,-29.86149],[-69.89914,-29.8472],[-69.89983,-29.83469],[-69.89365,-29.8192],[-69.89983,-29.81146],[-69.91356,-29.8061],[-69.91425,-29.79239],[-69.90601,-29.78822],[-69.89365,-29.76736],[-69.89365,-29.75783],[-69.89846,-29.75365],[-69.88404,-29.73517],[-69.87923,-29.73338],[-69.87923,-29.72444],[-69.88678,-29.72026],[-69.88335,-29.70774],[-69.89571,-29.69223],[-69.90807,-29.6982],[-69.91425,-29.68925],[-69.92318,-29.68448],[-69.92524,-29.67016],[-69.94103,-29.65166],[-69.93828,-29.62123],[-69.94172,-29.61347],[-69.93485,-29.60033],[-69.9321,-29.58361],[-69.94172,-29.55614],[-69.9479,-29.55316],[-69.9479,-29.54599],[-69.95614,-29.53464],[-69.95064,-29.53105],[-69.94996,-29.5209],[-69.94584,-29.51791],[-69.95339,-29.49998],[-69.94858,-29.49221],[-69.95202,-29.48205],[-69.96026,-29.47009],[-69.95682,-29.46651],[-69.98154,-29.45276],[-69.9733,-29.4408],[-69.97399,-29.43243],[-69.96781,-29.42824],[-69.96987,-29.41927],[-69.96712,-29.41269],[-69.97948,-29.40132],[-70.00901,-29.39534],[-70.02137,-29.38338],[-70.01313,-29.36961],[-70.02411,-29.36124],[-70.01725,-29.35346],[-70.01038,-29.35286],[-70.01931,-29.34089],[-70.01313,-29.34089],[-70.01999,-29.32892],[-70.01931,-29.32173],[-69.99665,-29.30317],[-70.00146,-29.29239],[-69.99184,-29.28101],[-69.98223,-29.27443],[-69.96918,-29.27323],[-69.96369,-29.26844],[-69.9527,-29.26604],[-69.93691,-29.24567],[-69.94103,-29.23069],[-69.94721,-29.2277],[-69.9527,-29.21571],[-69.94446,-29.20492],[-69.95339,-29.18934],[-69.92798,-29.18754],[-69.90395,-29.16955],[-69.9012,-29.15876],[-69.89159,-29.15756],[-69.87854,-29.13897],[-69.86962,-29.13957],[-69.86207,-29.13417],[-69.84627,-29.13417],[-69.84078,-29.12938],[-69.79203,-29.13477],[-69.78859,-29.12938],[-69.79203,-29.11378],[-69.78516,-29.09938],[-69.79615,-29.08138],[-69.78859,-29.04417],[-69.77967,-29.01355],[-69.76937,-28.98953],[-69.75495,-28.98232],[-69.76181,-28.97391],[-69.76319,-28.9655],[-69.75358,-28.95829],[-69.75426,-28.93666],[-69.76731,-28.92524],[-69.76593,-28.90841],[-69.7625,-28.90481],[-69.76662,-28.9006],[-69.75975,-28.88858],[-69.74671,-28.88256],[-69.75014,-28.86873],[-69.74053,-28.86392],[-69.74534,-28.84949],[-69.72954,-28.84648],[-69.72199,-28.83145],[-69.70688,-28.80618],[-69.70894,-28.78752],[-69.70414,-28.77669],[-69.69864,-28.7809],[-69.69315,-28.77368],[-69.69658,-28.76646],[-69.69658,-28.75863],[-69.70139,-28.75081],[-69.72886,-28.73636],[-69.72336,-28.72673],[-69.73298,-28.7207],[-69.72405,-28.70806],[-69.7316,-28.70445],[-69.72886,-28.67854],[-69.7268,-28.67011],[-69.70139,-28.63938],[-69.70276,-28.63275],[-69.69864,-28.62793],[-69.70414,-28.6213],[-69.69727,-28.60864],[-69.68628,-28.60382],[-69.69521,-28.59719],[-69.68285,-28.58634],[-69.67598,-28.59236],[-69.66294,-28.58332],[-69.66912,-28.57428],[-69.66912,-28.55498],[-69.66568,-28.55377],[-69.665,-28.54834],[-69.66019,-28.5399],[-69.6547,-28.5399],[-69.65264,-28.53085],[-69.665,-28.52059],[-69.665,-28.51215],[-69.65744,-28.50189],[-69.66706,-28.49525],[-69.665,-28.48258],[-69.6801,-28.47171],[-69.67255,-28.46749],[-69.67324,-28.45783],[-69.65744,-28.44334],[-69.64097,-28.44153],[-69.6341,-28.42945],[-69.65744,-28.41254],[-69.64577,-28.40469],[-69.64852,-28.39563],[-69.63753,-28.38899],[-69.62861,-28.39382],[-69.63753,-28.38355],[-69.6238,-28.37751],[-69.61625,-28.38838],[-69.59702,-28.3914],[-69.58535,-28.3763],[-69.58741,-28.35757],[-69.57299,-28.34851],[-69.52561,-28.32977],[-69.51943,-28.32071],[-69.52149,-28.31285],[-69.51188,-28.30559],[-69.50776,-28.29108],[-69.49883,-28.28504],[-69.50364,-28.26992],[-69.50226,-28.26387],[-69.48578,-28.2542],[-69.47686,-28.23786],[-69.47754,-28.22455],[-69.48235,-28.22274],[-69.48235,-28.21003],[-69.47274,-28.20277],[-69.46312,-28.19491],[-69.45488,-28.1822],[-69.43772,-28.19672],[-69.41918,-28.20822],[-69.40957,-28.20701],[-69.40545,-28.21608],[-69.3924,-28.22213],[-69.38279,-28.21306],[-69.38347,-28.2064],[-69.3821,-28.19491],[-69.38622,-28.18583],[-69.37798,-28.18099],[-69.36219,-28.17917],[-69.34777,-28.16706],[-69.33953,-28.16767],[-69.33335,-28.15738],[-69.30726,-28.12892],[-69.30245,-28.10712],[-69.29627,-28.07804],[-69.30108,-28.07198],[-69.28254,-28.05744],[-69.264,-28.04835],[-69.26194,-28.03926],[-69.26812,-28.0332],[-69.26812,-28.00956],[-69.25782,-28.01017],[-69.25095,-28.00047],[-69.25301,-27.99016],[-69.2434,-27.97743],[-69.23722,-27.97985],[-69.23722,-27.97258],[-69.23653,-27.96712],[-69.22348,-27.97197],[-69.20907,-27.96469],[-69.19465,-27.96712],[-69.18778,-27.96591],[-69.17954,-27.97015],[-69.17336,-27.97136],[-69.17267,-27.9653],[-69.16443,-27.95256],[-69.15276,-27.9465],[-69.15688,-27.93315],[-69.11912,-27.89553],[-69.12941,-27.88582],[-69.13147,-27.87186],[-69.11294,-27.85669],[-69.1095,-27.84758],[-69.11362,-27.84272],[-69.10126,-27.81783],[-69.09989,-27.80386],[-69.09508,-27.79839],[-69.09371,-27.78928],[-69.0889,-27.78624],[-69.08272,-27.72609],[-69.09028,-27.72487],[-69.0841,-27.71575],[-69.07311,-27.70907],[-69.0635,-27.70724],[-69.04496,-27.69873],[-69.04221,-27.67928],[-69.05045,-27.67563],[-69.05251,-27.67137],[-69.05732,-27.67137],[-69.05732,-27.66529],[-69.06075,-27.66347],[-69.05251,-27.62636],[-69.05388,-27.62028],[-69.03946,-27.59716],[-69.02573,-27.59411],[-69.02573,-27.5862],[-69.01337,-27.58316],[-69.0065,-27.58438],[-68.99826,-27.58255],[-68.99415,-27.57342],[-68.98385,-27.56733],[-68.97492,-27.55881],[-68.97286,-27.54603],[-68.98797,-27.52472],[-68.97286,-27.53507],[-68.96599,-27.52898],[-68.95089,-27.52715],[-68.94677,-27.52837],[-68.94127,-27.51924],[-68.94333,-27.50645],[-68.9502,-27.49975],[-68.94951,-27.49],[-68.96393,-27.47782],[-68.95913,-27.47112],[-68.96805,-27.46929],[-68.98934,-27.4504],[-68.97973,-27.43212],[-68.95981,-27.42908],[-68.93578,-27.44614],[-68.93166,-27.43273],[-68.92685,-27.43029],[-68.92548,-27.41689],[-68.93097,-27.40957],[-68.91861,-27.40835],[-68.90831,-27.39921],[-68.88909,-27.3986],[-68.89664,-27.38275],[-68.88978,-27.37543],[-68.89321,-27.35592],[-68.87673,-27.34006],[-68.88497,-27.33579],[-68.87536,-27.32847],[-68.86918,-27.31749],[-68.86162,-27.31871],[-68.84652,-27.31383],[-68.8266,-27.29552],[-68.80882,-27.2997],[-68.82815,-27.2908],[-68.83072,-27.28515],[-68.84514,-27.27294],[-68.85682,-27.27111],[-68.85956,-27.26379],[-68.86849,-27.26013],[-68.87124,-27.24792],[-68.86849,-27.23632],[-68.85544,-27.2296],[-68.85888,-27.22106],[-68.85132,-27.21068],[-68.85888,-27.20457],[-68.85613,-27.19724],[-68.86162,-27.19235],[-68.84034,-27.16487],[-68.84377,-27.15448],[-68.81493,-27.14348],[-68.80738,-27.1502],[-68.80738,-27.14226],[-68.80051,-27.12821],[-68.79296,-27.11843],[-68.79021,-27.10315],[-68.77785,-27.09826],[-68.7497,-27.11415],[-68.7394,-27.10193],[-68.72979,-27.10254],[-68.71262,-27.10376],[-68.70575,-27.09948],[-68.69202,-27.09887],[-68.68378,-27.10559],[-68.67211,-27.09887],[-68.66524,-27.10987],[-68.6625,-27.1221],[-68.65563,-27.12515],[-68.65357,-27.13798],[-68.63915,-27.14409],[-68.63297,-27.16181],[-68.6213,-27.16975],[-68.6007,-27.15754],[-68.57254,-27.17831],[-68.56705,-27.16181],[-68.57117,-27.15387],[-68.56636,-27.1502],[-68.56499,-27.14348],[-68.55401,-27.13798],[-68.56019,-27.12026],[-68.55469,-27.11415],[-68.54422,-27.11293],[-68.54147,-27.10987],[-68.51143,-27.12943],[-68.49083,-27.13493],[-68.47573,-27.11965],[-68.4771,-27.11293],[-68.47298,-27.11109],[-68.48328,-27.05913],[-68.47367,-27.08298],[-68.4517,-27.0952],[-68.44414,-27.08603],[-68.44346,-27.07686],[-68.42835,-27.06402],[-68.42148,-27.06524],[-68.4105,-27.06341],[-68.40569,-27.06586],[-68.38921,-27.05485],[-68.38509,-27.05485],[-68.38028,-27.04262],[-68.36449,-27.04445],[-68.36174,-27.03895],[-68.34664,-27.03283],[-68.32329,-27.03467],[-68.29239,-27.03834],[-68.29857,-27.01999],[-68.31231,-27.0047],[-68.31299,-26.9894],[-68.31986,-26.98206],[-68.31368,-26.97227],[-68.30201,-26.96676],[-68.29239,-26.95758],[-68.29102,-26.93677],[-68.29514,-26.93065],[-68.29102,-26.92391],[-68.28209,-26.92269],[-68.27523,-26.92636],[-68.26355,-26.91901],[-68.27111,-26.90738],[-68.28003,-26.90371],[-68.29308,-26.88595],[-68.29926,-26.88472],[-68.30338,-26.87615],[-68.29926,-26.87309],[-68.34733,-26.81366],[-68.36449,-26.79895],[-68.58628,-26.49332],[-68.56568,-26.31866],[-68.55744,-26.28726],[-68.38097,-26.17701],[-68.47847,-25.70589],[-68.47847,-25.69909],[-68.48397,-25.69909],[-68.49289,-25.68485],[-68.49221,-25.6799],[-68.49907,-25.67867],[-68.49907,-25.6731],[-68.51212,-25.67124],[-68.52723,-25.64277],[-68.54027,-25.64029],[-68.54577,-25.62977],[-68.54508,-25.61491],[-68.53959,-25.61243],[-68.54165,-25.59571],[-68.53547,-25.59014],[-68.53203,-25.57961],[-68.51487,-25.57466],[-68.52517,-25.56722],[-68.52585,-25.55669],[-68.54233,-25.5505],[-68.5389,-25.54245],[-68.54714,-25.52696],[-68.53821,-25.50961],[-68.56087,-25.50589],[-68.57392,-25.49225],[-68.57048,-25.48048],[-68.57666,-25.47676],[-68.57666,-25.47304],[-68.58422,-25.45382],[-68.58971,-25.44886],[-68.58559,-25.44328],[-68.59109,-25.41475],[-68.58353,-25.41537],[-68.57872,-25.42034],[-68.57186,-25.41785],[-68.56293,-25.40669],[-68.55675,-25.40793],[-68.54851,-25.39677],[-68.55126,-25.3918],[-68.54371,-25.3825],[-68.53409,-25.37692],[-68.5286,-25.38064],[-68.52242,-25.37443],[-68.52791,-25.36947],[-68.52517,-25.36575],[-68.52723,-25.36016],[-68.52448,-25.35954],[-68.52723,-25.35272],[-68.51967,-25.34527],[-68.52105,-25.32914],[-68.53203,-25.31983],[-68.53615,-25.32169],[-68.54508,-25.31238],[-68.54577,-25.29872],[-68.53684,-25.29686],[-68.52791,-25.28941],[-68.55057,-25.26147],[-68.54302,-25.26147],[-68.54233,-25.25153],[-68.53547,-25.24781],[-68.52723,-25.23414],[-68.51899,-25.23166],[-68.5183,-25.22296],[-68.50457,-25.21923],[-68.508,-25.19625],[-68.51006,-25.17574],[-68.50251,-25.16456],[-68.48671,-25.15958],[-68.48397,-25.15461],[-68.47092,-25.14964],[-68.46405,-25.13099],[-68.4565,-25.12478],[-68.44414,-25.1341],[-68.44071,-25.12353],[-68.43659,-25.12229],[-68.43178,-25.12975],[-68.42423,-25.13037],[-68.42286,-25.13472],[-68.40981,-25.14405],[-68.34458,-25.11048],[-68.35694,-25.09928],[-68.35488,-25.09307],[-68.36174,-25.08125],[-68.36586,-25.08187],[-68.36518,-25.06757],[-68.37067,-25.06757],[-68.37273,-25.06384],[-68.36792,-25.05886],[-68.37891,-25.04206],[-68.37548,-25.03771],[-68.37891,-25.03149],[-68.38303,-25.04206],[-68.40569,-25.03087],[-68.40638,-25.02216],[-68.41118,-25.01593],[-68.41187,-25.00847],[-68.41599,-24.99353],[-68.40912,-24.9705],[-68.42011,-24.96179],[-68.42492,-24.96303],[-68.43178,-24.92879],[-68.43865,-24.91945],[-68.43041,-24.9126],[-68.43247,-24.90513],[-68.44277,-24.90637],[-68.44552,-24.90139],[-68.45993,-24.90263],[-68.48809,-24.89454],[-68.49289,-24.87585],[-68.51899,-24.87398],[-68.52311,-24.86215],[-68.53272,-24.85592],[-68.53547,-24.84408],[-68.53409,-24.82788],[-68.54851,-24.8179],[-68.54645,-24.80731],[-68.56225,-24.80357],[-68.56362,-24.79671],[-68.56774,-24.7936],[-68.56225,-24.78113],[-68.56156,-24.76305],[-68.54645,-24.75557],[-68.54439,-24.73623],[-68.54371,-24.72438],[-68.51555,-24.70131],[-68.50594,-24.68571],[-68.50388,-24.67573],[-68.4977,-24.67573],[-68.49289,-24.66325],[-68.49289,-24.65451],[-68.48603,-24.64016],[-68.49427,-24.63704],[-68.50251,-24.61831],[-68.49427,-24.6052],[-68.49495,-24.59896],[-68.48603,-24.60021],[-68.48328,-24.60895],[-68.47779,-24.61394],[-68.47435,-24.62018],[-68.46337,-24.62268],[-68.4565,-24.61769],[-68.4517,-24.6027],[-68.43728,-24.60333],[-68.43384,-24.59646],[-68.4311,-24.5771],[-68.42011,-24.56399],[-68.40226,-24.52402],[-68.40569,-24.51589],[-68.40226,-24.51027],[-68.3947,-24.50652],[-68.38715,-24.48528],[-68.37616,-24.49153],[-68.35831,-24.48903],[-68.32192,-24.48903],[-68.3075,-24.4909],[-68.30956,-24.48215],[-68.30544,-24.48153],[-68.29857,-24.45465],[-68.29102,-24.4534],[-68.28759,-24.44528],[-68.26836,-24.43528],[-68.26081,-24.40464],[-68.24879,-24.40089],[-68.24742,-24.39636],[-67.32285,-24.03393],[-66.99051,-23.00012],[-67.06192,-22.9301],[-67.15514,-22.83885],[-67.18327,-22.81441],[-67.19382,-22.81702],[-67.22995,-22.82511],[-67.26736,-22.83322],[-67.35556,-22.85213],[-67.56698,-22.89786],[-67.79881,-22.88136],[-67.82314,-22.85879],[-67.82987,-22.85624],[-67.82459,-22.85164],[-67.82574,-22.84491],[-67.83308,-22.84402],[-67.84112,-22.8484],[-67.85483,-22.84281],[-67.85971,-22.8374],[-67.86803,-22.83326],[-67.88275,-22.8341],[-67.88326,-22.82936],[-67.87905,-22.81417],[-67.88205,-22.8072],[-67.87891,-22.80285],[-67.87786,-22.79356],[-67.87509,-22.78838],[-67.87586,-22.78236],[-67.8739,-22.77888],[-67.87288,-22.76559],[-67.87667,-22.75514],[-67.87188,-22.7515],[-67.86744,-22.74153],[-67.87516,-22.73841],[-67.881,-22.72753],[-67.88597,-22.72762],[-67.88571,-22.72375],[-67.89042,-22.71862],[-67.8868,-22.7169],[-67.88731,-22.70504],[-67.88463,-22.70019],[-67.87012,-22.69344],[-67.87198,-22.69072],[-67.86764,-22.6809],[-67.87155,-22.67189],[-67.88887,-22.66575],[-67.87765,-22.66621],[-67.87515,-22.66031],[-67.87745,-22.65884],[-67.87612,-22.65122],[-67.87718,-22.64708],[-67.87535,-22.64319],[-67.87454,-22.63835],[-67.87945,-22.63882],[-67.87993,-22.63636],[-67.8787,-22.63453],[-67.88412,-22.62818],[-67.8837,-22.62696],[-67.87916,-22.62606],[-67.8766,-22.62456],[-67.87232,-22.62497],[-67.8701,-22.62633],[-67.86535,-22.62701],[-67.86186,-22.62355],[-67.85734,-22.62104],[-67.85934,-22.61901],[-67.85863,-22.6164],[-67.85482,-22.61475],[-67.85923,-22.61089],[-67.86363,-22.60766],[-67.86392,-22.603],[-67.86283,-22.59898],[-67.86003,-22.59607],[-67.85796,-22.59653],[-67.85022,-22.5947],[-67.84661,-22.59319],[-67.84334,-22.59413],[-67.84277,-22.59143],[-67.83809,-22.58841],[-67.83752,-22.5846],[-67.83214,-22.58141],[-67.83426,-22.57821],[-67.83861,-22.57961],[-67.84038,-22.57783],[-67.8405,-22.57445],[-67.84439,-22.57296],[-67.8464,-22.56987],[-67.84222,-22.56662],[-67.84199,-22.56337],[-67.84446,-22.56035],[-67.85256,-22.55742],[-67.85276,-22.55639],[-67.849,-22.55358],[-67.84782,-22.55235],[-67.84322,-22.54895],[-67.84268,-22.54656],[-67.84455,-22.54453],[-67.84703,-22.54371],[-67.84711,-22.54274],[-67.84291,-22.53879],[-67.84115,-22.53899],[-67.83965,-22.53805],[-67.8397,-22.53544],[-67.84072,-22.53442],[-67.84106,-22.53288],[-67.84234,-22.53285],[-67.84567,-22.53071],[-67.84837,-22.53065],[-67.85141,-22.52996],[-67.85613,-22.5304],[-67.85806,-22.5316],[-67.85921,-22.5337],[-67.86026,-22.53462],[-67.86411,-22.53419],[-67.86637,-22.53269],[-67.87015,-22.53232],[-67.87123,-22.53155],[-67.87324,-22.52474],[-67.87654,-22.52183],[-67.87715,-22.51978],[-67.87639,-22.51578],[-67.87683,-22.51503],[-67.88205,-22.51185],[-67.8871,-22.50807],[-67.88701,-22.50672],[-67.88837,-22.50441],[-67.88982,-22.50329],[-67.89122,-22.50038],[-67.89284,-22.49938],[-67.89249,-22.44685],[-67.88814,-22.44636],[-67.88405,-22.44444],[-67.88412,-22.44028],[-67.88819,-22.43672],[-67.89446,-22.43675],[-67.89755,-22.43391],[-67.89738,-22.42853],[-67.90004,-22.42688],[-67.90006,-22.42488],[-67.89766,-22.4234],[-67.89828,-22.42216],[-67.90115,-22.423],[-67.90488,-22.41819],[-67.90372,-22.41179],[-67.90011,-22.40947],[-67.90268,-22.4061],[-67.90319,-22.40146],[-67.91657,-22.39757],[-67.92463,-22.39181],[-67.93338,-22.3905],[-67.94294,-22.38065],[-67.93256,-22.37514],[-67.93337,-22.36445],[-67.94105,-22.3582],[-67.93024,-22.34369],[-67.94182,-22.33664],[-67.94311,-22.32815],[-67.93946,-22.3232],[-67.93925,-22.31157],[-67.93264,-22.30389],[-67.93822,-22.29374],[-67.93328,-22.2866],[-67.93487,-22.27343],[-67.92156,-22.27466],[-67.915,-22.27297],[-67.91736,-22.26811],[-67.92525,-22.26274],[-67.9213,-22.24213],[-67.93614,-22.2164],[-67.93279,-22.20259],[-67.93974,-22.19646],[-67.94047,-22.18783],[-67.95527,-22.17635],[-67.95732,-22.15185],[-67.94968,-22.14736],[-67.94715,-22.13748],[-67.94118,-22.13014],[-67.94221,-22.12199],[-67.93946,-22.10748],[-67.94838,-22.09499],[-67.94838,-22.08791],[-67.96277,-22.08117],[-67.9673,-22.0658],[-67.96428,-22.05376],[-67.97764,-22.04376],[-68.00731,-22.03918],[-68.01586,-22.02328],[-68.07213,-21.97905],[-68.06228,-21.85264],[-68.06135,-21.79408],[-68.06205,-21.79274],[-68.06074,-21.79112],[-68.06056,-21.78892],[-68.0597,-21.78592],[-68.05977,-21.78509],[-68.06062,-21.78393],[-68.06093,-21.78234],[-68.0598,-21.78052],[-68.0597,-21.77925],[-68.06122,-21.77711],[-68.06046,-21.77011],[-68.06156,-21.76885],[-68.06284,-21.76814],[-68.06591,-21.76569],[-68.06682,-21.76422],[-68.07195,-21.76204],[-68.07206,-21.75968],[-68.07149,-21.75597],[-68.07189,-21.75381],[-68.07757,-21.75091],[-68.08231,-21.75136],[-68.08433,-21.74999],[-68.08652,-21.74736],[-68.08991,-21.74073],[-68.09314,-21.73837],[-68.0928,-21.73599],[-68.09409,-21.73261],[-68.09589,-21.73047],[-68.09602,-21.72497],[-68.09787,-21.72354],[-68.098,-21.72179],[-68.09976,-21.71932],[-68.10002,-21.71694],[-68.10688,-21.7058],[-68.10748,-21.7037],[-68.11009,-21.69961],[-68.1124,-21.69516],[-68.11282,-21.69263],[-68.11538,-21.68986],[-68.11524,-21.68733],[-68.11673,-21.68632],[-68.11774,-21.67851],[-68.13802,-21.65684],[-68.1807,-21.60437],[-68.17967,-21.50322],[-68.18002,-21.49899],[-68.1795,-21.41236],[-68.17899,-21.30207],[-68.29445,-21.09842],[-68.41249,-20.93467],[-68.41398,-20.94052],[-68.42122,-20.9415],[-68.42777,-20.94633],[-68.44547,-20.9457],[-68.45973,-20.94506],[-68.47487,-20.94604],[-68.47913,-20.94055],[-68.48202,-20.94596],[-68.49188,-20.94546],[-68.50174,-20.94175],[-68.5139,-20.93561],[-68.51522,-20.92911],[-68.53439,-20.90978],[-68.53978,-20.90961],[-68.54258,-20.90376],[-68.53989,-20.89856],[-68.54232,-20.8905],[-68.55231,-20.87667],[-68.55511,-20.86634],[-68.55059,-20.85609],[-68.54745,-20.84134],[-68.55471,-20.83301],[-68.54756,-20.83109],[-68.54539,-20.81618],[-68.54115,-20.81025],[-68.5407,-20.79617],[-68.54601,-20.78291],[-68.54101,-20.77575],[-68.54682,-20.77009],[-68.55295,-20.74851],[-68.55445,-20.728],[-68.53033,-20.72195],[-68.52772,-20.69789],[-68.50397,-20.6771],[-68.50377,-20.67233],[-68.50014,-20.66948],[-68.47709,-20.66492],[-68.46522,-20.65637],[-68.45984,-20.65664],[-68.45035,-20.64792],[-68.43823,-20.64318],[-68.44121,-20.63587],[-68.45928,-20.63035],[-68.46316,-20.62317],[-68.47459,-20.61791],[-68.48534,-20.60687],[-68.51596,-20.60384],[-68.52186,-20.5849],[-68.53463,-20.56982],[-68.54756,-20.57346],[-68.56462,-20.56456],[-68.5699,-20.5757],[-68.57924,-20.57162],[-68.57663,-20.56769],[-68.57745,-20.5612],[-68.58871,-20.55978],[-68.59482,-20.55434],[-68.59269,-20.55083],[-68.6012,-20.55005],[-68.60285,-20.54285],[-68.60827,-20.54705],[-68.61164,-20.53775],[-68.62578,-20.52886],[-68.64548,-20.52296],[-68.65177,-20.52454],[-68.66356,-20.51519],[-68.66723,-20.51642],[-68.73899,-20.4558],[-68.74148,-20.36867],[-68.73914,-20.37058],[-68.72392,-20.3663],[-68.70923,-20.36676],[-68.70278,-20.36376],[-68.69217,-20.36188],[-68.68877,-20.35919],[-68.67955,-20.35912],[-68.67134,-20.35426],[-68.66261,-20.34425],[-68.66031,-20.33735],[-68.66145,-20.32739],[-68.66037,-20.32532],[-68.66258,-20.32219],[-68.66032,-20.31906],[-68.66252,-20.31762],[-68.6642,-20.31778],[-68.66533,-20.31538],[-68.66897,-20.31347],[-68.6694,-20.31107],[-68.6705,-20.30868],[-68.66955,-20.30669],[-68.67083,-20.30518],[-68.67477,-20.30434],[-68.67836,-20.30172],[-68.6797,-20.29408],[-68.68426,-20.29491],[-68.6878,-20.29389],[-68.69228,-20.29538],[-68.69723,-20.28952],[-68.69522,-20.2876],[-68.69493,-20.27859],[-68.69296,-20.27539],[-68.69549,-20.272],[-68.69716,-20.26208],[-68.69723,-20.25762],[-68.70132,-20.24871],[-68.70562,-20.25114],[-68.71061,-20.2518],[-68.71268,-20.24879],[-68.71011,-20.24096],[-68.71314,-20.23775],[-68.71231,-20.23115],[-68.71414,-20.22963],[-68.71503,-20.22738],[-68.71326,-20.22587],[-68.71202,-20.22505],[-68.71043,-20.22387],[-68.70812,-20.22186],[-68.70662,-20.22083],[-68.704,-20.21872],[-68.70197,-20.21683],[-68.70046,-20.21521],[-68.69879,-20.2138],[-68.69868,-20.21297],[-68.699,-20.21142],[-68.70065,-20.21084],[-68.70264,-20.21097],[-68.70416,-20.21047],[-68.70551,-20.21084],[-68.70875,-20.20962],[-68.71045,-20.20775],[-68.71172,-20.20581],[-68.71279,-20.20024],[-68.71362,-20.19946],[-68.71401,-20.19804],[-68.71236,-20.19433],[-68.70874,-20.19114],[-68.7106,-20.18786],[-68.70967,-20.1843],[-68.7078,-20.18339],[-68.70691,-20.17993],[-68.70603,-20.17805],[-68.70394,-20.17706],[-68.70125,-20.17736],[-68.69444,-20.17533],[-68.69146,-20.17663],[-68.69192,-20.17552],[-68.69449,-20.174],[-68.69567,-20.17155],[-68.69657,-20.17078],[-68.69845,-20.16763],[-68.69865,-20.16596],[-68.6998,-20.16412],[-68.70062,-20.16094],[-68.70347,-20.15945],[-68.70465,-20.15833],[-68.70408,-20.15374],[-68.70179,-20.1528],[-68.70019,-20.14832],[-68.70063,-20.14581],[-68.70178,-20.14496],[-68.7024,-20.13929],[-68.70381,-20.13731],[-68.70435,-20.13518],[-68.70595,-20.13299],[-68.70809,-20.1326],[-68.70895,-20.1331],[-68.70891,-20.13372],[-68.7111,-20.13441],[-68.7115,-20.13258],[-68.71753,-20.13542],[-68.71793,-20.13697],[-68.72008,-20.13716],[-68.72229,-20.13556],[-68.73384,-20.13443],[-68.7407,-20.12569],[-68.74791,-20.12247],[-68.75607,-20.12666],[-68.76182,-20.13408],[-68.76748,-20.13054],[-68.77366,-20.12974],[-68.76225,-20.07814],[-68.69474,-20.06911],[-68.63994,-20.04879],[-68.56668,-20.05002],[-68.55111,-20.02124],[-68.52162,-19.92406],[-68.54259,-19.88951],[-68.52802,-19.84543],[-68.59937,-19.82804],[-68.62067,-19.78965],[-68.62615,-19.78382],[-68.62983,-19.78312],[-68.63215,-19.78146],[-68.65703,-19.76813],[-68.65749,-19.75828],[-68.66004,-19.75821],[-68.66603,-19.75264],[-68.68051,-19.74944],[-68.68857,-19.75014],[-68.69389,-19.7531],[-68.69627,-19.75288],[-68.69281,-19.74914],[-68.69175,-19.74636],[-68.69599,-19.74227],[-68.69518,-19.73925],[-68.68751,-19.74019],[-68.68668,-19.73727],[-68.68344,-19.73532],[-68.68561,-19.73106],[-68.68226,-19.71791],[-68.65865,-19.7096],[-68.64279,-19.70696],[-68.63895,-19.70399],[-68.62302,-19.7013],[-68.62165,-19.69736],[-68.61718,-19.69471],[-68.62151,-19.69105],[-68.62293,-19.68447],[-68.61858,-19.68005],[-68.61732,-19.67725],[-68.61846,-19.67574],[-68.61577,-19.67305],[-68.60724,-19.6731],[-68.60352,-19.66564],[-68.59977,-19.66191],[-68.59653,-19.65349],[-68.60138,-19.64481],[-68.57234,-19.6056],[-68.55673,-19.59639],[-68.44115,-19.44076],[-68.41257,-19.43128],[-68.41236,-19.42136],[-68.40459,-19.41598],[-68.45025,-19.3692],[-68.5196,-19.31433],[-68.54265,-19.29687],[-68.61954,-19.27644],[-68.62754,-19.25119],[-68.71325,-19.17018],[-68.73618,-19.15572],[-68.75079,-19.13319],[-68.79039,-19.09964],[-68.80654,-19.0831],[-68.85173,-19.06445],[-68.87199,-19.06019],[-68.88932,-19.04334],[-68.91926,-18.97806],[-68.95019,-18.93602],[-68.9414,-18.92925],[-68.93989,-18.92162],[-68.93541,-18.91595],[-68.93162,-18.91543],[-68.92517,-18.90777],[-68.9256,-18.90179],[-68.92073,-18.89315],[-68.9112,-18.89028],[-68.91603,-18.89015],[-68.92021,-18.8848],[-68.92016,-18.88025],[-68.91843,-18.87406],[-68.92137,-18.86122],[-68.92269,-18.86024],[-68.92416,-18.855],[-68.92426,-18.85188],[-68.92529,-18.84949],[-68.9253,-18.84304],[-68.97804,-18.7378],[-68.97617,-18.73608],[-68.97499,-18.73371],[-68.9763,-18.73014],[-68.97693,-18.72315],[-68.97852,-18.71752],[-68.9808,-18.71383],[-68.98506,-18.71161],[-68.98735,-18.705],[-68.98596,-18.70145],[-68.98432,-18.69894],[-68.9832,-18.6987],[-68.98338,-18.69684],[-68.98476,-18.69481],[-68.98475,-18.69272],[-68.98302,-18.69064],[-68.98333,-18.68875],[-68.98549,-18.68221],[-68.98399,-18.67775],[-68.98618,-18.67674],[-68.98785,-18.67443],[-68.98909,-18.67039],[-68.99101,-18.66732],[-68.99401,-18.66314],[-68.99404,-18.66157],[-68.99448,-18.65992],[-68.99767,-18.65775],[-68.99775,-18.65575],[-69.00015,-18.65634],[-69.00022,-18.65225],[-69.00329,-18.64974],[-69.00448,-18.64633],[-69.00589,-18.64573],[-69.00868,-18.64545],[-69.00864,-18.64363],[-69.00722,-18.64214],[-69.00791,-18.63763],[-69.01428,-18.63352],[-69.01704,-18.63315],[-69.02241,-18.6311],[-69.0239,-18.62955],[-69.02607,-18.62833],[-69.02751,-18.62881],[-69.03021,-18.63009],[-69.03377,-18.62932],[-69.03712,-18.62146],[-69.03559,-18.61762],[-69.03682,-18.6133],[-69.03186,-18.61203],[-69.02879,-18.60994],[-69.02868,-18.60849],[-69.02925,-18.60492],[-69.02834,-18.60136],[-69.0255,-18.60026],[-69.02207,-18.60029],[-69.02,-18.59947],[-69.01775,-18.59955],[-69.01507,-18.59831],[-69.00878,-18.60179],[-69.00646,-18.60104],[-69.01684,-18.57256],[-69.01622,-18.56974],[-69.0137,-18.56448],[-69.01425,-18.56331],[-69.01385,-18.56005],[-69.01275,-18.55727],[-69.01283,-18.55186],[-69.01463,-18.55069],[-69.01063,-18.54478],[-69.01067,-18.54361],[-69.01156,-18.54244],[-69.01266,-18.54206],[-69.0116,-18.53814],[-69.01117,-18.53433],[-69.00844,-18.53061],[-69.0059,-18.52565],[-69.00598,-18.5248],[-69.00447,-18.52454],[-69.00536,-18.5233],[-69.00447,-18.51948],[-69.00769,-18.51824],[-69.01004,-18.51511],[-69.00891,-18.51363],[-69.00813,-18.51086],[-69.00816,-18.49384],[-69.0087,-18.4896],[-69.00863,-18.48831],[-69.0077,-18.48528],[-69.00298,-18.48295],[-69.00448,-18.47997],[-69.00435,-18.47909],[-69.00451,-18.47796],[-69.00419,-18.4761],[-69.00792,-18.474],[-69.01175,-18.47057],[-69.01349,-18.46857],[-69.01712,-18.46628],[-69.0194,-18.46431],[-69.02061,-18.46356],[-69.02132,-18.46229],[-69.02288,-18.46124],[-69.02393,-18.46081],[-69.02557,-18.46093],[-69.02657,-18.45915],[-69.02996,-18.45599],[-69.02943,-18.4545],[-69.02941,-18.45217],[-69.02822,-18.44866],[-69.02804,-18.44641],[-69.0297,-18.44575],[-69.03058,-18.44561],[-69.03228,-18.44614],[-69.03333,-18.44668],[-69.03539,-18.44681],[-69.0364,-18.44578],[-69.03833,-18.44275],[-69.03931,-18.43969],[-69.04011,-18.43561],[-69.03975,-18.43349],[-69.03982,-18.43251],[-69.04093,-18.43079],[-69.04084,-18.43008],[-69.04182,-18.42853],[-69.04589,-18.42828],[-69.04802,-18.42639],[-69.04723,-18.42379],[-69.04703,-18.42177],[-69.04786,-18.41841],[-69.04537,-18.41593],[-69.04723,-18.41528],[-69.04848,-18.41437],[-69.04853,-18.4124],[-69.04739,-18.40938],[-69.04735,-18.40297],[-69.04748,-18.3995],[-69.04643,-18.39475],[-69.04587,-18.38973],[-69.04673,-18.38723],[-69.04789,-18.38276],[-69.04958,-18.38285],[-69.05164,-18.38235],[-69.0532,-18.38106],[-69.05418,-18.3799],[-69.05533,-18.37545],[-69.05525,-18.37368],[-69.05483,-18.37279],[-69.05451,-18.37245],[-69.05394,-18.37221],[-69.05232,-18.37175],[-69.04951,-18.37031],[-69.04845,-18.36892],[-69.04758,-18.36772],[-69.04821,-18.36478],[-69.04922,-18.363],[-69.05,-18.36017],[-69.04931,-18.35621],[-69.04939,-18.35546],[-69.0501,-18.35327],[-69.0502,-18.35195],[-69.05135,-18.35034],[-69.05313,-18.34835],[-69.05365,-18.34756],[-69.05181,-18.34355],[-69.05209,-18.34271],[-69.05188,-18.34122],[-69.05129,-18.33775],[-69.04659,-18.33522],[-69.04482,-18.33262],[-69.04484,-18.33226],[-69.04354,-18.33119],[-69.04366,-18.33041],[-69.04274,-18.32879],[-69.04151,-18.32715],[-69.04115,-18.32567],[-69.03805,-18.32323],[-69.03859,-18.32155],[-69.0402,-18.32034],[-69.04203,-18.31874],[-69.04286,-18.31783],[-69.04319,-18.31686],[-69.04431,-18.31528],[-69.04452,-18.31366],[-69.04509,-18.31312],[-69.04541,-18.31252],[-69.04624,-18.31248],[-69.0483,-18.31287],[-69.04911,-18.31246],[-69.05179,-18.31198],[-69.0526,-18.31166],[-69.05439,-18.3101],[-69.05806,-18.30819],[-69.06133,-18.30526],[-69.06407,-18.30118],[-69.06777,-18.29888],[-69.0701,-18.29528],[-69.07624,-18.29178],[-69.07405,-18.28534],[-69.07393,-18.27639],[-69.07278,-18.27134],[-69.07258,-18.26376],[-69.07174,-18.26199],[-69.07132,-18.25932],[-69.07047,-18.25804],[-69.06997,-18.25209],[-69.0655,-18.24613],[-69.06471,-18.24416],[-69.06426,-18.2429],[-69.06507,-18.24157],[-69.06513,-18.23956],[-69.06273,-18.23737],[-69.06295,-18.2347],[-69.06383,-18.23365],[-69.06363,-18.23307],[-69.06658,-18.23043],[-69.06902,-18.22812],[-69.07185,-18.22495],[-69.07314,-18.22326],[-69.076,-18.2223],[-69.07611,-18.22089],[-69.07971,-18.2191],[-69.08542,-18.21502],[-69.09055,-18.21234],[-69.09474,-18.21117],[-69.1019,-18.21066],[-69.1028,-18.20895],[-69.10482,-18.20891],[-69.10696,-18.20549],[-69.10962,-18.20322],[-69.11082,-18.20112],[-69.11486,-18.19612],[-69.11778,-18.19349],[-69.11979,-18.18928],[-69.12178,-18.18792],[-69.12728,-18.18142],[-69.1333,-18.17808],[-69.1382,-18.1745],[-69.1422,-18.1664],[-69.14348,-18.16641],[-69.14477,-18.16593],[-69.14578,-18.16499],[-69.14619,-18.16258],[-69.14511,-18.16096],[-69.14366,-18.16022],[-69.14245,-18.16039],[-69.14244,-18.158],[-69.14156,-18.15577],[-69.14189,-18.1535],[-69.14175,-18.14928],[-69.14101,-18.1454],[-69.13635,-18.14348],[-69.13528,-18.1412],[-69.13258,-18.14034],[-69.12911,-18.13883],[-69.12836,-18.1377],[-69.12684,-18.13177],[-69.12696,-18.13056],[-69.12743,-18.12967],[-69.12707,-18.12872],[-69.12901,-18.12762],[-69.12811,-18.12608],[-69.12808,-18.12528],[-69.12525,-18.1263],[-69.1219,-18.12563],[-69.11778,-18.12391],[-69.11597,-18.12213],[-69.11321,-18.12142],[-69.10998,-18.11956],[-69.10684,-18.11827],[-69.10317,-18.11896],[-69.10294,-18.11807],[-69.10159,-18.11751],[-69.10083,-18.1161],[-69.09962,-18.11493],[-69.09745,-18.11401],[-69.09784,-18.11229],[-69.09753,-18.11025],[-69.09843,-18.10841],[-69.09951,-18.10763],[-69.0998,-18.10467],[-69.09878,-18.10285],[-69.09637,-18.1023],[-69.09401,-18.1023],[-69.08921,-18.09944],[-69.08739,-18.0987],[-69.08514,-18.09674],[-69.08361,-18.09701],[-69.08148,-18.09711],[-69.08101,-18.09557],[-69.08128,-18.09498],[-69.08087,-18.09301],[-69.08074,-18.09175],[-69.08129,-18.08634],[-69.08058,-18.08567],[-69.07851,-18.08632],[-69.07593,-18.08346],[-69.07481,-18.08126],[-69.07558,-18.07902],[-69.07553,-18.07765],[-69.07354,-18.0755],[-69.07202,-18.07565],[-69.07034,-18.07498],[-69.0675,-18.0703],[-69.06758,-18.06887],[-69.06676,-18.06696],[-69.06491,-18.06619],[-69.06255,-18.06428],[-69.06019,-18.06384],[-69.05429,-18.05825],[-69.05079,-18.05608],[-69.05412,-18.05467],[-69.05953,-18.0541],[-69.06258,-18.0543],[-69.06404,-18.05232],[-69.065,-18.04835],[-69.0693,-18.04604],[-69.07446,-18.04127],[-69.07876,-18.04274],[-69.08395,-18.04095],[-69.08639,-18.03882],[-69.08631,-18.0358],[-69.08935,-18.03016],[-69.09374,-18.02577],[-69.09641,-18.02153],[-69.10038,-18.02121],[-69.10468,-18.02193],[-69.10845,-18.0185],[-69.11206,-18.01311],[-69.12056,-18.00487],[-69.1224,-18.00503],[-69.12716,-18.00258],[-69.13394,-18.00218],[-69.13867,-18.00283],[-69.14622,-18.0003],[-69.15274,-17.99965],[-69.15824,-18.00046],[-69.16288,-18.00136],[-69.16534,-17.99953],[-69.16832,-17.99884],[-69.16837,-17.9966],[-69.17048,-17.99567],[-69.17033,-17.99176],[-69.17553,-17.99295],[-69.17834,-17.99249],[-69.18274,-17.99311],[-69.18725,-17.99222],[-69.18939,-17.99083],[-69.19988,-17.9909],[-69.2065,-17.98836],[-69.21002,-17.98575],[-69.212,-17.98624],[-69.21677,-17.98307],[-69.21699,-17.98096],[-69.22096,-17.98018],[-69.22297,-17.98145],[-69.2291,-17.98337],[-69.2302,-17.98477],[-69.23096,-17.98869],[-69.23226,-17.98831],[-69.23579,-17.98353],[-69.24094,-17.98462],[-69.24624,-17.98309],[-69.25,-17.9809],[-69.25236,-17.97774],[-69.25668,-17.97483],[-69.25364,-17.96732],[-69.25447,-17.96519],[-69.25428,-17.96193],[-69.25581,-17.95374],[-69.25746,-17.96013],[-69.2608,-17.9624],[-69.26501,-17.96385],[-69.26621,-17.96691],[-69.27539,-17.96964],[-69.2808,-17.97042],[-69.28929,-17.96006],[-69.29087,-17.95541],[-69.29551,-17.94911],[-69.29856,-17.9424],[-69.29756,-17.94118],[-69.29809,-17.93979],[-69.30007,-17.93961],[-69.30069,-17.93524],[-69.30424,-17.92819],[-69.30941,-17.92033],[-69.31205,-17.91359],[-69.31285,-17.90877],[-69.31046,-17.90431],[-69.31038,-17.90053],[-69.31098,-17.89953],[-69.30872,-17.89757],[-69.30914,-17.89627],[-69.30784,-17.8948],[-69.30845,-17.89312],[-69.30735,-17.89227],[-69.30823,-17.89087],[-69.30755,-17.8898],[-69.30809,-17.88635],[-69.30603,-17.88474],[-69.30612,-17.8828],[-69.30517,-17.88069],[-69.30653,-17.87983],[-69.30652,-17.87718],[-69.30779,-17.87567],[-69.30718,-17.87302],[-69.30859,-17.87123],[-69.30733,-17.86855],[-69.30215,-17.86581],[-69.30202,-17.86338],[-69.30017,-17.86128],[-69.30008,-17.8518],[-69.30618,-17.84208],[-69.30618,-17.8299],[-69.30918,-17.82271],[-69.30859,-17.80608],[-69.31489,-17.78782],[-69.32855,-17.77247],[-69.33558,-17.75872],[-69.33919,-17.74538],[-69.33514,-17.73771],[-69.34334,-17.72422],[-69.46781,-17.60495],[-69.46845,-17.49833],[-69.48673,-17.5144],[-69.50976,-17.53744],[-69.5517,-17.57633],[-69.58743,-17.60088],[-69.61904,-17.62331],[-69.66595,-17.66016],[-69.68525,-17.65847],[-69.74575,-17.65073],[-69.79654,-17.64719],[-69.81894,-17.69357],[-69.8252,-17.70543],[-69.82251,-17.72736],[-69.82145,-17.74471],[-69.81083,-17.7539],[-69.80005,-17.76245],[-69.80281,-17.78908],[-69.80164,-17.81294],[-69.8008,-17.83811],[-69.79927,-17.86591],[-69.78041,-17.91186],[-69.75081,-17.94705],[-69.75539,-17.9889],[-69.77492,-18.02971],[-69.79099,-18.06296],[-69.8166,-18.1166],[-69.86004,-18.1702],[-69.90597,-18.2025],[-69.96728,-18.2626],[-69.985,-18.26987],[-70.0391,-18.26957],[-70.05114,-18.26977],[-70.0795,-18.28521],[-70.10992,-18.30083],[-70.14952,-18.31976],[-70.1985,-18.32248],[-70.22928,-18.31777],[-70.25655,-18.31289],[-70.28142,-18.30942],[-70.29831,-18.30892],[-70.30846,-18.30965],[-70.31782,-18.3113],[-70.32668,-18.31336],[-70.33579,-18.31696],[-70.34481,-18.32141],[-70.35178,-18.32571],[-70.35784,-18.33032],[-70.36443,-18.33612],[-70.37075,-18.3429],[-70.37624,-18.35016],[-70.37988,-18.35],[-72,-20],[-120,-20]]]}},{"type":"Feature","properties":{"cq_zone_name":"Southeast Zone of South America","cq_zone_number":13,"cq_zone_name_loc":[-45,-55]},"geometry":{"type":"Polygon","coordinates":[[[-70,-85],[-70,-57],[-66,-56],[-66,-55.22643],[-66.38764,-55.12492],[-66.42815,-55.11629],[-66.46351,-55.1153],[-66.52291,-55.11118],[-66.67603,-55.11138],[-66.82709,-54.99023],[-66.96442,-54.96501],[-67.04957,-54.96501],[-67.12647,-54.92241],[-67.26517,-54.91373],[-67.48902,-54.92004],[-67.68815,-54.90741],[-67.98409,-54.87306],[-68.23815,-54.88096],[-68.60691,-54.91389],[-68.60623,-52.62036],[-68.4326,-52.39749],[-68.43092,-52.39472],[-68.41865,-52.38634],[-68.41882,-52.33241],[-68.51358,-52.32926],[-68.57306,-52.32496],[-68.58559,-52.30654],[-68.70979,-52.28549],[-68.83836,-52.27772],[-68.98702,-52.20356],[-69.07895,-52.18515],[-69.19061,-52.15056],[-69.48638,-52.15172],[-69.99536,-52.00079],[-71.91695,-51.99981],[-71.9172,-51.99757],[-71.93299,-51.98911],[-71.93368,-51.98362],[-71.94054,-51.98066],[-71.93917,-51.9777],[-71.94397,-51.97473],[-71.96183,-51.97135],[-71.9632,-51.97473],[-71.97281,-51.97304],[-71.9838,-51.97516],[-71.99341,-51.98066],[-72.00783,-51.97854],[-72.01676,-51.9722],[-72.01745,-51.96881],[-72.04354,-51.96204],[-72.03873,-51.95866],[-72.03324,-51.95908],[-72.02569,-51.95824],[-72.02088,-51.95443],[-71.99204,-51.94088],[-71.98105,-51.94088],[-71.98105,-51.93496],[-71.97281,-51.92776],[-71.94603,-51.91463],[-71.94054,-51.91717],[-71.92956,-51.91378],[-71.93917,-51.9087],[-71.94123,-51.89938],[-71.94466,-51.89472],[-71.94603,-51.88667],[-71.95221,-51.87395],[-71.99341,-51.84002],[-71.9941,-51.83833],[-72.01607,-51.81796],[-72.03873,-51.8014],[-72.04834,-51.79716],[-72.04972,-51.79206],[-72.06139,-51.78569],[-72.07375,-51.78314],[-72.08062,-51.78229],[-72.0813,-51.77974],[-72.07787,-51.77804],[-72.07924,-51.77294],[-72.10259,-51.77082],[-72.1074,-51.76784],[-72.11907,-51.76699],[-72.11907,-51.75467],[-72.12456,-51.74829],[-72.11701,-51.74022],[-72.15271,-51.74532],[-72.15958,-51.74149],[-72.16782,-51.74107],[-72.18705,-51.73554],[-72.17606,-51.73214],[-72.174,-51.72873],[-72.16164,-51.72873],[-72.15752,-51.72406],[-72.16919,-51.71725],[-72.17537,-51.71257],[-72.18293,-51.71002],[-72.19048,-51.71257],[-72.1946,-51.71682],[-72.21451,-51.70917],[-72.22619,-51.70746],[-72.22756,-51.70108],[-72.24678,-51.70661],[-72.2509,-51.70534],[-72.27837,-51.70449],[-72.29622,-51.69853],[-72.29966,-51.69342],[-72.29691,-51.6832],[-72.28867,-51.6781],[-72.28936,-51.64871],[-72.2921,-51.6453],[-72.28524,-51.63848],[-72.2873,-51.63337],[-72.29622,-51.63081],[-72.30172,-51.63251],[-72.32026,-51.62655],[-72.3182,-51.61546],[-72.3285,-51.58603],[-72.3388,-51.58433],[-72.34704,-51.58689],[-72.36146,-51.58646],[-72.38206,-51.58817],[-72.37931,-51.59414],[-72.38068,-51.59883],[-72.39441,-51.58945],[-72.41982,-51.58518],[-72.42875,-51.58475],[-72.44248,-51.58262],[-72.43424,-51.56342],[-72.426,-51.54591],[-72.42394,-51.54549],[-72.39304,-51.52627],[-72.40609,-51.51558],[-72.38823,-51.51516],[-72.36077,-51.52328],[-72.34704,-51.519],[-72.35253,-51.50319],[-72.3539,-51.49208],[-72.34841,-51.47711],[-72.3182,-51.47882],[-72.33674,-51.45957],[-72.34017,-51.44631],[-72.34017,-51.42748],[-72.32987,-51.41463],[-72.32506,-51.41163],[-72.32094,-51.40649],[-72.30996,-51.40264],[-72.31133,-51.39664],[-72.30927,-51.37993],[-72.31064,-51.36535],[-72.31751,-51.35335],[-72.33124,-51.34349],[-72.33536,-51.34906],[-72.35116,-51.34949],[-72.35184,-51.34349],[-72.36764,-51.34177],[-72.37107,-51.33448],[-72.36558,-51.33362],[-72.3642,-51.32332],[-72.36077,-51.31903],[-72.3333,-51.31345],[-72.32438,-51.31517],[-72.32575,-51.30658],[-72.3127,-51.30014],[-72.3024,-51.29156],[-72.28592,-51.28769],[-72.27974,-51.28769],[-72.27219,-51.28512],[-72.27082,-51.28168],[-72.26464,-51.27996],[-72.26326,-51.27309],[-72.26601,-51.2645],[-72.26052,-51.25504],[-72.25914,-51.24473],[-72.28524,-51.22753],[-72.29554,-51.21635],[-72.30378,-51.2013],[-72.31614,-51.21033],[-72.33399,-51.20904],[-72.34635,-51.20259],[-72.34978,-51.19613],[-72.34841,-51.18968],[-72.3539,-51.18107],[-72.36008,-51.18064],[-72.36008,-51.16859],[-72.37038,-51.1617],[-72.37725,-51.1617],[-72.38,-51.15567],[-72.3848,-51.15481],[-72.39167,-51.14533],[-72.39647,-51.1449],[-72.39853,-51.13585],[-72.40403,-51.13456],[-72.40128,-51.12594],[-72.40471,-51.12292],[-72.41021,-51.10741],[-72.40677,-51.1031],[-72.40746,-51.09576],[-72.40265,-51.09059],[-72.38617,-51.0824],[-72.37656,-51.08024],[-72.3745,-51.02369],[-72.36558,-51.02197],[-72.35665,-51.02801],[-72.3436,-51.02844],[-72.32712,-51.02542],[-72.31751,-51.02931],[-72.2976,-51.03104],[-72.28798,-51.03147],[-72.28318,-51.02758],[-72.27356,-51.03363],[-72.26601,-51.03449],[-72.26464,-51.00555],[-72.2667,-50.96103],[-72.25914,-50.94762],[-72.26464,-50.94199],[-72.2564,-50.92209],[-72.25983,-50.91862],[-72.25022,-50.91083],[-72.24816,-50.9065],[-72.2461,-50.89654],[-72.2564,-50.88918],[-72.24816,-50.87662],[-72.2564,-50.87358],[-72.26532,-50.86708],[-72.26807,-50.85711],[-72.25983,-50.8363],[-72.26876,-50.83067],[-72.26876,-50.8259],[-72.28043,-50.81245],[-72.28112,-50.80854],[-72.29691,-50.79075],[-72.31751,-50.77469],[-72.33262,-50.76209],[-72.34978,-50.75471],[-72.3491,-50.73994],[-72.34704,-50.72994],[-72.33948,-50.72299],[-72.33742,-50.7182],[-72.31888,-50.71647],[-72.31202,-50.70777],[-72.30378,-50.70516],[-72.2976,-50.67776],[-72.28936,-50.6721],[-72.29073,-50.66383],[-72.2873,-50.65991],[-72.29966,-50.65121],[-72.3079,-50.65077],[-72.3182,-50.65338],[-72.32712,-50.65121],[-72.33811,-50.65077],[-72.34154,-50.63684],[-72.33948,-50.63379],[-72.34429,-50.63118],[-72.34635,-50.62421],[-72.35871,-50.61593],[-72.3745,-50.6229],[-72.38274,-50.62508],[-72.38686,-50.629],[-72.40128,-50.63335],[-72.40128,-50.63553],[-72.41501,-50.63248],[-72.41501,-50.62159],[-72.42737,-50.61724],[-72.45278,-50.61724],[-72.47887,-50.60198],[-72.49054,-50.59981],[-72.4981,-50.60591],[-72.50222,-50.61375],[-72.51801,-50.61506],[-72.5235,-50.61941],[-72.54067,-50.61811],[-72.54616,-50.62203],[-72.56196,-50.64598],[-72.57569,-50.64816],[-72.58049,-50.65556],[-72.58187,-50.66862],[-72.57706,-50.67776],[-72.59491,-50.68211],[-72.61139,-50.67427],[-72.61483,-50.6647],[-72.62787,-50.65643],[-72.64229,-50.65382],[-72.65259,-50.66296],[-72.67251,-50.65512],[-72.67868,-50.64293],[-72.68624,-50.64293],[-72.68692,-50.64903],[-72.69242,-50.64903],[-72.7137,-50.63597],[-72.71988,-50.62682],[-72.72606,-50.61419],[-72.73362,-50.61636],[-72.73911,-50.62638],[-72.76246,-50.62856],[-72.76795,-50.62595],[-72.77962,-50.6303],[-72.79129,-50.6303],[-72.80159,-50.63553],[-72.80778,-50.64424],[-72.81396,-50.64511],[-72.83181,-50.65295],[-72.84623,-50.65077],[-72.86614,-50.66296],[-72.87232,-50.66992],[-72.88811,-50.66775],[-72.89979,-50.68211],[-72.90596,-50.69603],[-72.91489,-50.70255],[-72.92588,-50.70386],[-72.92794,-50.70168],[-72.9403,-50.70646],[-72.94579,-50.7269],[-72.94991,-50.7282],[-72.94579,-50.74167],[-72.95403,-50.74211],[-72.95678,-50.7395],[-72.96914,-50.74037],[-72.98081,-50.74428],[-72.98218,-50.75123],[-73.00278,-50.75688],[-73.00347,-50.76209],[-73.02681,-50.76035],[-73.03162,-50.75688],[-73.05085,-50.76687],[-73.06801,-50.78901],[-73.09548,-50.77338],[-73.14354,-50.7799],[-73.16964,-50.80203],[-73.19161,-50.81115],[-73.20054,-50.82069],[-73.20054,-50.81115],[-73.15041,-50.76687],[-73.15728,-50.76035],[-73.16689,-50.75645],[-73.17444,-50.75905],[-73.17582,-50.7521],[-73.18062,-50.74993],[-73.18749,-50.74515],[-73.19779,-50.74037],[-73.18818,-50.72603],[-73.18406,-50.70646],[-73.17101,-50.70212],[-73.17307,-50.69255],[-73.16483,-50.68733],[-73.16346,-50.67515],[-73.15178,-50.66731],[-73.15384,-50.6573],[-73.14698,-50.65469],[-73.14423,-50.65121],[-73.16826,-50.64163],[-73.16964,-50.63814],[-73.19436,-50.61549],[-73.21976,-50.60678],[-73.23006,-50.60939],[-73.23555,-50.60939],[-73.23212,-50.60373],[-73.23967,-50.59588],[-73.25615,-50.59458],[-73.27675,-50.59196],[-73.28156,-50.58847],[-73.28774,-50.58891],[-73.3001,-50.57234],[-73.31383,-50.57321],[-73.31658,-50.57103],[-73.33237,-50.57016],[-73.331,-50.56275],[-73.33924,-50.55577],[-73.33924,-50.55009],[-73.34885,-50.54573],[-73.34748,-50.537],[-73.35503,-50.53569],[-73.35503,-50.52871],[-73.35091,-50.5226],[-73.35846,-50.51168],[-73.35984,-50.50295],[-73.35022,-50.49247],[-73.36396,-50.48635],[-73.3516,-50.47237],[-73.36464,-50.4527],[-73.35572,-50.42952],[-73.37563,-50.41684],[-73.38868,-50.39189],[-73.37975,-50.3827],[-73.37769,-50.377],[-73.36876,-50.37262],[-73.3976,-50.37087],[-73.40722,-50.37963],[-73.41752,-50.38094],[-73.43537,-50.36168],[-73.42919,-50.35554],[-73.43743,-50.34371],[-73.42576,-50.33582],[-73.40447,-50.33582],[-73.3619,-50.30163],[-73.42782,-50.25248],[-73.4285,-50.24809],[-73.44223,-50.24809],[-73.45047,-50.24414],[-73.45459,-50.2336],[-73.44841,-50.22701],[-73.45253,-50.22481],[-73.44704,-50.21602],[-73.43194,-50.21031],[-73.42713,-50.21031],[-73.41958,-50.19932],[-73.42782,-50.19097],[-73.43262,-50.18174],[-73.44429,-50.17998],[-73.46352,-50.18658],[-73.47725,-50.17382],[-73.47725,-50.16635],[-73.49099,-50.16195],[-73.49717,-50.15491],[-73.50472,-50.15579],[-73.51708,-50.15359],[-73.52326,-50.14831],[-73.51571,-50.13863],[-73.51502,-50.10209],[-73.50129,-50.10209],[-73.49373,-50.08579],[-73.48137,-50.08711],[-73.48,-50.07433],[-73.48549,-50.06596],[-73.50129,-50.05935],[-73.49717,-50.04877],[-73.46215,-50.05362],[-73.4594,-50.0448],[-73.43674,-50.02495],[-73.44292,-50.01304],[-73.43605,-50.00907],[-73.44635,-49.98612],[-73.44498,-49.96624],[-73.4594,-49.95829],[-73.47176,-49.96845],[-73.50129,-49.96757],[-73.53219,-49.95122],[-73.55828,-49.94813],[-73.55965,-49.94106],[-73.55553,-49.93885],[-73.55347,-49.9225],[-73.55828,-49.91896],[-73.55347,-49.90835],[-73.55278,-49.89729],[-73.5109,-49.88756],[-73.51159,-49.88004],[-73.5006,-49.86101],[-73.48961,-49.8557],[-73.48961,-49.84551],[-73.48206,-49.84374],[-73.49099,-49.8309],[-73.48824,-49.81229],[-73.47931,-49.80698],[-73.13599,-49.26781],[-73.1456,-49.24719],[-73.14423,-49.23061],[-73.14766,-49.2194],[-73.14011,-49.2028],[-73.14972,-49.18575],[-73.1202,-49.17183],[-73.11676,-49.15791],[-73.10509,-49.14624],[-73.09136,-49.14354],[-73.08655,-49.14534],[-73.08037,-49.14489],[-73.08312,-49.13321],[-73.06939,-49.12782],[-73.06252,-49.12782],[-73.05909,-49.11928],[-73.06183,-49.11389],[-73.05565,-49.10715],[-73.05565,-49.0986],[-73.0481,-49.08871],[-73.0481,-49.08152],[-73.03093,-49.07432],[-73.03093,-49.06667],[-73.01789,-49.06307],[-73.00347,-49.06307],[-73.00484,-49.05047],[-73.01308,-49.04102],[-73.00759,-49.03022],[-72.98287,-49.02752],[-72.99042,-48.99824],[-72.98562,-48.98878],[-72.9609,-48.98112],[-72.95266,-48.95002],[-72.9245,-48.93468],[-72.91283,-48.94235],[-72.88331,-48.94641],[-72.86477,-48.94821],[-72.85859,-48.95859],[-72.84829,-48.96445],[-72.82425,-48.9658],[-72.81876,-48.96084],[-72.79541,-48.9694],[-72.78992,-48.96129],[-72.78443,-48.95949],[-72.76452,-48.9437],[-72.75353,-48.91483],[-72.74048,-48.90536],[-72.724,-48.9049],[-72.71233,-48.90671],[-72.7034,-48.90084],[-72.69104,-48.89588],[-72.68349,-48.8602],[-72.63268,-48.8602],[-72.52488,-48.79059],[-72.54273,-48.7322],[-72.54204,-48.62247],[-72.57843,-48.50569],[-72.58805,-48.49386],[-72.58873,-48.48749],[-72.54788,-48.4793],[-72.54685,-48.4818],[-72.53689,-48.48522],[-72.52488,-48.50342],[-72.5029,-48.51752],[-72.4926,-48.51342],[-72.47956,-48.51388],[-72.47475,-48.51615],[-72.44317,-48.51297],[-72.42669,-48.49432],[-72.41364,-48.49432],[-72.39373,-48.48157],[-72.39304,-48.46974],[-72.3848,-48.46018],[-72.38617,-48.45608],[-72.37862,-48.45061],[-72.37244,-48.44743],[-72.37244,-48.44378],[-72.40952,-48.43239],[-72.40677,-48.41143],[-72.39579,-48.41143],[-72.38549,-48.4014],[-72.35733,-48.39867],[-72.36008,-48.39183],[-72.34566,-48.38499],[-72.37725,-48.37085],[-72.38068,-48.34667],[-72.34704,-48.34485],[-72.33742,-48.35078],[-72.32026,-48.35853],[-72.31064,-48.35306],[-72.28455,-48.35717],[-72.27494,-48.36492],[-72.26601,-48.35899],[-72.26395,-48.35215],[-72.25228,-48.34713],[-72.24816,-48.34895],[-72.24061,-48.34713],[-72.23717,-48.32704],[-72.22962,-48.31928],[-72.24129,-48.30787],[-72.24541,-48.29279],[-72.2612,-48.29096],[-72.2667,-48.27406],[-72.28524,-48.26492],[-72.30584,-48.24343],[-72.32438,-48.21553],[-72.31682,-48.20546],[-72.30858,-48.19997],[-72.31339,-48.18029],[-72.30927,-48.17845],[-72.30858,-48.16517],[-72.29966,-48.15922],[-72.3079,-48.13906],[-72.32163,-48.13311],[-72.32712,-48.11752],[-72.34566,-48.10377],[-72.35733,-48.10423],[-72.36214,-48.09093],[-72.3697,-48.08955],[-72.36901,-48.08175],[-72.3594,-48.07533],[-72.36077,-48.07304],[-72.37107,-48.07579],[-72.38411,-48.07166],[-72.42257,-48.07762],[-72.42119,-48.07074],[-72.44179,-48.0657],[-72.44385,-48.04734],[-72.42875,-48.04091],[-72.42806,-48.0106],[-72.41776,-48.00095],[-72.42394,-47.9959],[-72.42325,-47.98901],[-72.42325,-47.98027],[-72.43012,-47.97522],[-72.42257,-47.96924],[-72.43012,-47.96373],[-72.43424,-47.96694],[-72.44317,-47.96373],[-72.45278,-47.96327],[-72.45965,-47.95591],[-72.47544,-47.96327],[-72.47956,-47.95821],[-72.50496,-47.95637],[-72.51938,-47.94671],[-72.52762,-47.92417],[-72.52625,-47.9053],[-72.50359,-47.88919],[-72.4981,-47.87445],[-72.49123,-47.86985],[-72.47612,-47.87537],[-72.47269,-47.81316],[-72.4981,-47.79517],[-72.50496,-47.76426],[-72.52488,-47.75226],[-72.52419,-47.74348],[-72.51046,-47.74025],[-72.49535,-47.75456],[-72.48986,-47.75456],[-72.47544,-47.76057],[-72.47269,-47.7481],[-72.46514,-47.73748],[-72.44111,-47.74441],[-72.43561,-47.73425],[-72.44935,-47.71762],[-72.44935,-47.70468],[-72.42943,-47.69914],[-72.41501,-47.68989],[-72.40952,-47.67926],[-72.42188,-47.66169],[-72.40128,-47.65799],[-72.40334,-47.65105],[-72.38343,-47.63579],[-72.36832,-47.63579],[-72.36077,-47.63856],[-72.34635,-47.63533],[-72.3333,-47.6108],[-72.31202,-47.59506],[-72.32438,-47.5844],[-72.32781,-47.57097],[-72.31339,-47.558],[-72.2921,-47.51164],[-72.29554,-47.49772],[-72.30721,-47.49077],[-72.30721,-47.47731],[-72.323,-47.48334],[-72.3436,-47.45503],[-72.33193,-47.45038],[-72.29554,-47.44713],[-72.28661,-47.43738],[-72.29485,-47.43738],[-72.28386,-47.43134],[-72.26876,-47.41508],[-72.2509,-47.41462],[-72.24678,-47.40486],[-72.22619,-47.40347],[-72.20147,-47.41462],[-72.18636,-47.403],[-72.16988,-47.39464],[-72.16164,-47.39464],[-72.15958,-47.38766],[-72.16233,-47.37929],[-72.1431,-47.36302],[-72.14447,-47.35232],[-72.13349,-47.33324],[-72.12525,-47.32859],[-72.07924,-47.33557],[-72.071,-47.34255],[-72.04697,-47.34069],[-72.0456,-47.33278],[-72.02843,-47.31556],[-71.99753,-47.29507],[-72.00646,-47.26759],[-72.01539,-47.25128],[-72.01401,-47.24242],[-72.00509,-47.23543],[-71.99959,-47.22703],[-72.00783,-47.20885],[-72.02019,-47.19858],[-72.00165,-47.20745],[-71.97007,-47.21024],[-71.90484,-47.22517],[-71.86776,-47.23449],[-71.86364,-47.2233],[-71.87668,-47.22144],[-71.8911,-47.21351],[-71.88355,-47.20838],[-71.89042,-47.20185],[-71.89042,-47.18132],[-71.88218,-47.17945],[-71.86707,-47.16498],[-71.85883,-47.16731],[-71.85196,-47.16311],[-71.86295,-47.1449],[-71.8657,-47.11968],[-71.88286,-47.10659],[-71.95015,-47.08509],[-71.95359,-47.0734],[-71.92956,-47.05797],[-71.91582,-47.05937],[-71.89797,-47.04065],[-71.88012,-47.01117],[-71.88904,-47.00508],[-71.89522,-46.99431],[-71.91102,-46.99665],[-71.93024,-46.99384],[-71.92132,-46.98635],[-71.9323,-46.97651],[-71.95427,-46.97791],[-71.95839,-46.96011],[-71.95153,-46.95495],[-71.95839,-46.93714],[-71.97144,-46.90384],[-71.95977,-46.89821],[-71.93093,-46.86865],[-71.93574,-46.85268],[-71.93162,-46.84423],[-71.94603,-46.8245],[-71.95977,-46.81792],[-71.9378,-46.80664],[-71.90758,-46.79865],[-71.85883,-46.80335],[-71.83686,-46.79724],[-71.81282,-46.78361],[-71.77025,-46.76527],[-71.75652,-46.75398],[-71.74759,-46.73939],[-71.70571,-46.71209],[-71.70296,-46.71398],[-71.68923,-46.70126],[-71.64872,-46.68902],[-71.64734,-46.63577],[-71.66863,-46.61078],[-71.66726,-46.57916],[-71.67,-46.52817],[-71.75858,-46.34978],[-71.75583,-46.34077],[-71.75171,-46.33698],[-71.74828,-46.33793],[-71.74485,-46.33366],[-71.74553,-46.32939],[-71.73798,-46.32465],[-71.73386,-46.29999],[-71.72699,-46.29382],[-71.73043,-46.28908],[-71.72562,-46.28955],[-71.72425,-46.28053],[-71.72699,-46.28053],[-71.72768,-46.27057],[-71.73729,-46.27152],[-71.73661,-46.2663],[-71.74347,-46.25775],[-71.74141,-46.25015],[-71.74897,-46.24351],[-71.7524,-46.23448],[-71.7524,-46.22831],[-71.76476,-46.21596],[-71.773,-46.21548],[-71.77781,-46.19742],[-71.79703,-46.19077],[-71.80665,-46.19742],[-71.82244,-46.20123],[-71.83136,-46.1979],[-71.83342,-46.19219],[-71.84372,-46.18982],[-71.8602,-46.1941],[-71.86501,-46.18459],[-71.86982,-46.18126],[-71.87943,-46.16509],[-71.876,-46.16462],[-71.86638,-46.15701],[-71.8808,-46.16224],[-71.90003,-46.16272],[-71.90278,-46.15986],[-71.90964,-46.15939],[-71.9117,-46.15606],[-71.90758,-46.15416],[-71.90827,-46.14559],[-71.91651,-46.13941],[-71.91651,-46.13798],[-71.90346,-46.13655],[-71.88836,-46.12704],[-71.85814,-46.11847],[-71.84578,-46.1199],[-71.82518,-46.1099],[-71.81557,-46.1099],[-71.80459,-46.11942],[-71.79566,-46.11752],[-71.7833,-46.11942],[-71.76339,-46.11228],[-71.75927,-46.10657],[-71.76064,-46.0999],[-71.75103,-46.09181],[-71.73043,-46.09562],[-71.71463,-46.088],[-71.7112,-46.0699],[-71.69816,-46.0699],[-71.69816,-46.06275],[-71.67344,-46.04703],[-71.67206,-46.04131],[-71.66863,-46.04131],[-71.66657,-46.02796],[-71.65696,-46.0232],[-71.65627,-46.01604],[-71.6494,-46.01557],[-71.64597,-46.00984],[-71.64872,-46.00841],[-71.64528,-45.99124],[-71.64803,-45.98599],[-71.63567,-45.97741],[-71.63086,-45.97788],[-71.63086,-45.98313],[-71.62537,-45.98361],[-71.61438,-45.9755],[-71.61644,-45.96022],[-71.6185,-45.9459],[-71.62606,-45.9354],[-71.64185,-45.92394],[-71.64528,-45.91725],[-71.64528,-45.90913],[-71.65558,-45.89623],[-71.6549,-45.88953],[-71.67138,-45.87519],[-71.68099,-45.87376],[-71.71875,-45.85511],[-71.76476,-45.84937],[-71.76957,-45.83694],[-71.75377,-45.82258],[-71.75515,-45.81923],[-71.74965,-45.8111],[-71.74073,-45.80727],[-71.74553,-45.79817],[-71.75858,-45.79147],[-71.76133,-45.78764],[-71.75309,-45.77375],[-71.77163,-45.74884],[-71.77231,-45.74405],[-71.79497,-45.73111],[-71.80184,-45.71865],[-71.7936,-45.70618],[-71.77849,-45.70618],[-71.77163,-45.69755],[-71.77369,-45.6798],[-71.79429,-45.66541],[-71.78124,-45.65581],[-71.78536,-45.65293],[-71.77918,-45.64813],[-71.76613,-45.64909],[-71.773,-45.63613],[-71.79154,-45.63421],[-71.79429,-45.62893],[-71.79978,-45.62797],[-71.79841,-45.62413],[-71.77712,-45.61548],[-71.75927,-45.61644],[-71.75515,-45.6078],[-71.74279,-45.60732],[-71.74416,-45.59723],[-71.73386,-45.59387],[-71.73249,-45.58377],[-71.72768,-45.57705],[-71.72768,-45.57224],[-71.74279,-45.57801],[-71.76407,-45.57512],[-71.76407,-45.56022],[-71.74691,-45.54291],[-71.72356,-45.53522],[-71.69404,-45.53329],[-71.68923,-45.52848],[-71.68992,-45.52127],[-71.6803,-45.51405],[-71.66314,-45.51694],[-71.64528,-45.51742],[-71.62537,-45.5102],[-71.60958,-45.51261],[-71.60546,-45.5102],[-71.58829,-45.51405],[-71.59173,-45.51838],[-71.58417,-45.52223],[-71.57662,-45.5179],[-71.56083,-45.52319],[-71.53885,-45.5179],[-71.53542,-45.51405],[-71.52924,-45.51213],[-71.52855,-45.51549],[-71.5107,-45.51357],[-71.50246,-45.50298],[-71.46882,-45.49336],[-71.47706,-45.48517],[-71.4695,-45.48084],[-71.4853,-45.4688],[-71.49491,-45.47025],[-71.5107,-45.46014],[-71.50246,-45.45436],[-71.51001,-45.45339],[-71.51001,-45.44424],[-71.51413,-45.4399],[-71.53061,-45.43846],[-71.53336,-45.43268],[-71.52237,-45.42593],[-71.53817,-45.40087],[-71.52375,-45.38929],[-71.48324,-45.38592],[-71.46607,-45.38833],[-71.45989,-45.38447],[-71.45508,-45.38495],[-71.4386,-45.39412],[-71.43586,-45.38929],[-71.44478,-45.38302],[-71.44616,-45.37724],[-71.43998,-45.37145],[-71.44753,-45.36759],[-71.44066,-45.36132],[-71.41251,-45.35263],[-71.40221,-45.35263],[-71.38504,-45.34925],[-71.32462,-45.30581],[-71.3205,-45.29325],[-71.3308,-45.27779],[-71.34316,-45.27586],[-71.35209,-45.26716],[-71.33286,-45.25024],[-71.33904,-45.25073],[-71.33423,-45.24106],[-71.33767,-45.23767],[-71.35758,-45.22752],[-71.36651,-45.22558],[-71.40565,-45.19027],[-71.40633,-45.17914],[-71.42418,-45.17236],[-71.45989,-45.15057],[-71.48667,-45.14379],[-71.48598,-45.1312],[-71.48873,-45.10794],[-71.50109,-45.10213],[-71.51963,-45.10213],[-71.521,-45.09922],[-71.51413,-45.09777],[-71.50589,-45.0808],[-71.51207,-45.06043],[-71.52169,-45.05801],[-71.52993,-45.04685],[-71.54023,-45.04151],[-71.54641,-45.0352],[-71.55602,-45.03084],[-71.55121,-45.01628],[-71.54572,-45.01434],[-71.5519,-45.00851],[-71.54984,-45.00463],[-71.5416,-45.00268],[-71.53885,-44.99929],[-71.54709,-44.99929],[-71.55671,-44.99006],[-71.55945,-44.97646],[-71.57868,-44.98035],[-71.60408,-44.9716],[-71.63155,-44.97549],[-71.63361,-44.96917],[-71.65833,-44.97598],[-71.66863,-44.97209],[-71.68786,-44.96675],[-71.70022,-44.95363],[-71.7421,-44.95654],[-71.75377,-44.92592],[-71.76133,-44.92592],[-71.77849,-44.94148],[-71.79223,-44.9303],[-71.80665,-44.93078],[-71.80665,-44.92398],[-71.81626,-44.92009],[-71.85196,-44.93127],[-71.85814,-44.94051],[-71.86776,-44.94585],[-71.87806,-44.95994],[-71.88355,-44.94439],[-71.89248,-44.94294],[-71.90964,-44.9478],[-71.91239,-44.94342],[-71.92544,-44.94537],[-71.93505,-44.94099],[-71.93505,-44.9337],[-71.93986,-44.93078],[-71.94535,-44.92106],[-71.97556,-44.92106],[-71.98037,-44.90404],[-72.00028,-44.89821],[-72.02225,-44.89577],[-72.03255,-44.90404],[-72.04491,-44.89431],[-72.05109,-44.88167],[-72.06414,-44.87777],[-72.06208,-44.87145],[-72.0401,-44.86317],[-72.04628,-44.85831],[-72.06757,-44.85052],[-72.06482,-44.83835],[-72.04628,-44.8364],[-72.04628,-44.82423],[-72.0401,-44.82082],[-72.03736,-44.81205],[-72.04148,-44.80913],[-72.03392,-44.80669],[-72.03255,-44.80182],[-72.05109,-44.79354],[-72.07581,-44.77989],[-72.071,-44.77355],[-72.0662,-44.77307],[-72.06688,-44.75893],[-72.04285,-44.75747],[-72.0298,-44.76624],[-72.025,-44.75747],[-72.01539,-44.75747],[-72.01401,-44.76332],[-72.0044,-44.76673],[-72.00715,-44.77404],[-72.00715,-44.7833],[-71.99685,-44.78623],[-71.98586,-44.77989],[-71.95771,-44.78574],[-71.92887,-44.80328],[-71.92269,-44.79987],[-71.92544,-44.77989],[-71.91514,-44.77745],[-71.89179,-44.7872],[-71.88424,-44.79743],[-71.84716,-44.80084],[-71.83548,-44.79159],[-71.819,-44.79207],[-71.80939,-44.78623],[-71.82312,-44.78086],[-71.82518,-44.77355],[-71.80871,-44.76088],[-71.78536,-44.75161],[-71.7627,-44.76234],[-71.74897,-44.76234],[-71.73798,-44.76722],[-71.72425,-44.76527],[-71.70571,-44.76819],[-71.69129,-44.76332],[-71.67412,-44.77112],[-71.66588,-44.78866],[-71.6597,-44.78818],[-71.6597,-44.78476],[-71.62262,-44.77745],[-71.59584,-44.77989],[-71.59241,-44.77258],[-71.59928,-44.76478],[-71.59241,-44.76332],[-71.58211,-44.75259],[-71.57044,-44.75844],[-71.54915,-44.75308],[-71.53817,-44.74625],[-71.52443,-44.74235],[-71.51894,-44.74625],[-71.49834,-44.73845],[-71.47225,-44.73698],[-71.45028,-44.75161],[-71.43242,-44.756],[-71.42899,-44.7677],[-71.40702,-44.77648],[-71.39466,-44.79061],[-71.37063,-44.79597],[-71.36582,-44.79305],[-71.34797,-44.79305],[-71.33561,-44.79938],[-71.32874,-44.80766],[-71.30539,-44.80669],[-71.29235,-44.81351],[-71.28891,-44.80961],[-71.27449,-44.80864],[-71.26008,-44.80279],[-71.23604,-44.79012],[-71.23948,-44.78428],[-71.23261,-44.77599],[-71.22368,-44.77355],[-71.22506,-44.76527],[-71.2072,-44.75113],[-71.20789,-44.74332],[-71.2024,-44.73747],[-71.20652,-44.71552],[-71.2127,-44.71405],[-71.21064,-44.69941],[-71.19553,-44.68623],[-71.20308,-44.67549],[-71.22025,-44.67452],[-71.22574,-44.65498],[-71.23948,-44.64668],[-71.23536,-44.63642],[-71.21338,-44.63398],[-71.21338,-44.6154],[-71.19072,-44.60465],[-71.1921,-44.59341],[-71.18523,-44.59292],[-71.1763,-44.59976],[-71.16669,-44.59341],[-71.1509,-44.59047],[-71.12275,-44.59487],[-71.10009,-44.58803],[-71.10489,-44.57776],[-71.09528,-44.55379],[-71.09322,-44.53274],[-71.13442,-44.50679],[-71.15777,-44.50386],[-71.16051,-44.49847],[-71.15502,-44.49602],[-71.13442,-44.47104],[-71.16738,-44.44947],[-71.17081,-44.44212],[-71.17974,-44.44163],[-71.20583,-44.43378],[-71.22094,-44.43526],[-71.23261,-44.43035],[-71.23261,-44.42251],[-71.24085,-44.41711],[-71.26008,-44.4176],[-71.26076,-44.42251],[-71.30471,-44.42447],[-71.31089,-44.43084],[-71.33149,-44.42888],[-71.33492,-44.42103],[-71.35003,-44.423],[-71.35689,-44.41123],[-71.35552,-44.40387],[-71.36101,-44.39945],[-71.36582,-44.38866],[-71.37269,-44.39111],[-71.39466,-44.38719],[-71.42006,-44.38768],[-71.42556,-44.39209],[-71.44959,-44.39749],[-71.46332,-44.38964],[-71.47362,-44.38964],[-71.48392,-44.397],[-71.47843,-44.40142],[-71.48873,-44.40387],[-71.49628,-44.41172],[-71.50383,-44.40485],[-71.49971,-44.40142],[-71.50933,-44.39406],[-71.52306,-44.38964],[-71.52855,-44.39111],[-71.52443,-44.39798],[-71.53885,-44.4073],[-71.5725,-44.40828],[-71.58692,-44.39994],[-71.61576,-44.39553],[-71.62468,-44.39945],[-71.63979,-44.39847],[-71.6549,-44.41123],[-71.69198,-44.39847],[-71.69816,-44.38817],[-71.69678,-44.38277],[-71.71807,-44.38081],[-71.72013,-44.39062],[-71.74141,-44.40289],[-71.74691,-44.39896],[-71.76339,-44.40436],[-71.76682,-44.41024],[-71.77231,-44.40828],[-71.80253,-44.42005],[-71.81282,-44.4176],[-71.80939,-44.39847],[-71.81351,-44.3916],[-71.82175,-44.39013],[-71.81832,-44.37786],[-71.82587,-44.37099],[-71.83342,-44.36952],[-71.83823,-44.35135],[-71.83205,-44.34595],[-71.81832,-44.34546],[-71.81351,-44.34055],[-71.8039,-44.33662],[-71.80253,-44.34104],[-71.78879,-44.33319],[-71.79429,-44.30567],[-71.80321,-44.29241],[-71.80871,-44.28897],[-71.80459,-44.27963],[-71.80665,-44.27028],[-71.8293,-44.26586],[-71.8245,-44.25897],[-71.81076,-44.26045],[-71.80596,-44.2575],[-71.81145,-44.25012],[-71.8039,-44.24324],[-71.81076,-44.23733],[-71.80733,-44.22946],[-71.78399,-44.22356],[-71.78055,-44.21667],[-71.79635,-44.21224],[-71.80321,-44.19944],[-71.79978,-44.19156],[-71.81969,-44.18172],[-71.82106,-44.17334],[-71.83411,-44.16103],[-71.84235,-44.16349],[-71.84922,-44.1561],[-71.84304,-44.15167],[-71.84166,-44.14231],[-71.85265,-44.13048],[-71.85128,-44.12408],[-71.84922,-44.11077],[-71.83617,-44.10731],[-71.81969,-44.1152],[-71.80184,-44.11175],[-71.77918,-44.11027],[-71.76064,-44.1014],[-71.74965,-44.09055],[-71.74965,-44.07723],[-71.73661,-44.07279],[-71.73661,-44.0644],[-71.71532,-44.03874],[-71.71807,-44.02788],[-71.69747,-44.00813],[-71.69678,-44.00072],[-71.68442,-43.98837],[-71.68099,-43.97207],[-71.67412,-43.97059],[-71.66314,-43.96465],[-71.6549,-43.94933],[-71.6494,-43.94735],[-71.65078,-43.92016],[-71.66657,-43.90186],[-71.67824,-43.90482],[-71.6961,-43.90235],[-71.69953,-43.89493],[-71.70708,-43.89344],[-71.70571,-43.8781],[-71.7112,-43.85731],[-71.7318,-43.85929],[-71.74279,-43.84988],[-71.76339,-43.83948],[-71.75927,-43.82215],[-71.75446,-43.82017],[-71.75652,-43.81472],[-71.75034,-43.80827],[-71.75171,-43.78994],[-71.75309,-43.78845],[-71.73729,-43.77854],[-71.73111,-43.76118],[-71.70365,-43.73985],[-71.69747,-43.72546],[-71.67275,-43.72149],[-71.66657,-43.72298],[-71.65902,-43.71653],[-71.66176,-43.70114],[-71.65078,-43.70015],[-71.63292,-43.7071],[-71.63018,-43.69866],[-71.61026,-43.70114],[-71.60134,-43.69668],[-71.6034,-43.68675],[-71.61232,-43.67731],[-71.58898,-43.67533],[-71.58074,-43.65248],[-71.59173,-43.63707],[-71.6082,-43.62813],[-71.62537,-43.62415],[-71.65284,-43.62018],[-71.67344,-43.62515],[-71.68854,-43.62515],[-71.70228,-43.62415],[-71.70365,-43.61421],[-71.70914,-43.60327],[-71.70708,-43.58636],[-71.71807,-43.57791],[-71.73317,-43.57841],[-71.74141,-43.58636],[-71.76133,-43.58189],[-71.75995,-43.56647],[-71.76751,-43.56298],[-71.76613,-43.55651],[-71.77094,-43.55054],[-71.76957,-43.54905],[-71.77781,-43.5381],[-71.78467,-43.54208],[-71.79429,-43.53959],[-71.82862,-43.54955],[-71.84853,-43.54756],[-71.87188,-43.55204],[-71.87806,-43.54706],[-71.87531,-43.54507],[-71.87943,-43.52964],[-71.87531,-43.52267],[-71.86913,-43.52366],[-71.8705,-43.51868],[-71.86707,-43.51868],[-71.86364,-43.51122],[-71.85677,-43.50574],[-71.85334,-43.49478],[-71.84784,-43.48482],[-71.8705,-43.46239],[-71.87806,-43.46339],[-71.88149,-43.45242],[-71.8911,-43.44993],[-71.90346,-43.45591],[-71.91926,-43.45591],[-71.92475,-43.45791],[-71.93162,-43.45691],[-71.93436,-43.44744],[-71.92818,-43.44245],[-71.92818,-43.43797],[-71.92406,-43.43298],[-71.92406,-43.427],[-71.91857,-43.4255],[-71.92063,-43.41952],[-71.91308,-43.41553],[-71.93024,-43.39956],[-71.93162,-43.38609],[-71.92132,-43.3821],[-71.91308,-43.38509],[-71.90552,-43.3846],[-71.9069,-43.3821],[-71.90415,-43.3801],[-71.89385,-43.3801],[-71.89728,-43.37012],[-71.89797,-43.36463],[-71.88973,-43.35714],[-71.89385,-43.35415],[-71.89591,-43.34915],[-71.90346,-43.34366],[-71.8966,-43.33817],[-71.90484,-43.32169],[-71.89797,-43.31869],[-71.88904,-43.32518],[-71.87325,-43.32668],[-71.8657,-43.33367],[-71.85334,-43.33217],[-71.84922,-43.33617],[-71.83686,-43.33417],[-71.8245,-43.32468],[-71.81008,-43.31919],[-71.81008,-43.31319],[-71.80184,-43.31169],[-71.8039,-43.3052],[-71.79429,-43.2972],[-71.77918,-43.2962],[-71.76201,-43.3047],[-71.76201,-43.31319],[-71.74897,-43.31869],[-71.73455,-43.31269],[-71.73523,-43.28721],[-71.7318,-43.28171],[-71.73867,-43.27221],[-71.73867,-43.26171],[-71.74828,-43.25921],[-71.74759,-43.24971],[-71.7524,-43.24221],[-71.75515,-43.24071],[-71.75721,-43.2287],[-71.74347,-43.22219],[-71.73043,-43.20218],[-71.73935,-43.17965],[-71.75377,-43.17614],[-71.76064,-43.16362],[-71.77369,-43.16362],[-71.78467,-43.16763],[-71.78536,-43.16312],[-71.79909,-43.1521],[-71.80665,-43.15461],[-71.80733,-43.1511],[-71.81763,-43.14609],[-71.8245,-43.1506],[-71.83754,-43.14359],[-71.86089,-43.14259],[-71.8554,-43.13457],[-71.85334,-43.12755],[-71.86158,-43.13056],[-71.88836,-43.12455],[-71.89316,-43.10801],[-71.92544,-43.09948],[-71.93162,-43.10049],[-71.94191,-43.09146],[-71.93574,-43.08043],[-71.93574,-43.05334],[-71.9426,-43.05133],[-71.94191,-43.04632],[-71.96457,-43.03979],[-71.9735,-43.04581],[-71.97899,-43.04581],[-71.98105,-43.03728],[-71.98929,-43.03477],[-72.00234,-43.03879],[-72.01264,-43.03126],[-72.02088,-43.01771],[-72.03804,-43.00867],[-72.04079,-43.00164],[-72.03942,-42.99963],[-72.03942,-42.99109],[-72.05796,-42.98205],[-72.05658,-42.97502],[-72.06139,-42.97251],[-72.06002,-42.96899],[-72.07375,-42.9509],[-72.08474,-42.94839],[-72.08611,-42.9514],[-72.09366,-42.9514],[-72.1019,-42.93532],[-72.11289,-42.93833],[-72.1177,-42.93582],[-72.11907,-42.92928],[-72.11426,-42.92275],[-72.13212,-42.91269],[-72.1328,-42.90766],[-72.14447,-42.89861],[-72.1328,-42.88452],[-72.11976,-42.8815],[-72.12113,-42.87496],[-72.13555,-42.86892],[-72.13555,-42.85282],[-72.14791,-42.8503],[-72.15134,-42.83016],[-72.16095,-42.82462],[-72.15615,-42.81858],[-72.16576,-42.79944],[-72.14791,-42.79843],[-72.14035,-42.7944],[-72.13692,-42.78785],[-72.14173,-42.78079],[-72.13212,-42.77676],[-72.13486,-42.75912],[-72.14791,-42.74147],[-72.13006,-42.73189],[-72.13692,-42.72533],[-72.13761,-42.71221],[-72.17881,-42.69809],[-72.17263,-42.69203],[-72.17469,-42.6885],[-72.17194,-42.67083],[-72.16095,-42.6779],[-72.14722,-42.68143],[-72.13555,-42.67992],[-72.13418,-42.67588],[-72.13143,-42.67234],[-72.12319,-42.67335],[-72.12113,-42.66578],[-72.11632,-42.65871],[-72.09778,-42.64154],[-72.10396,-42.62992],[-72.1177,-42.63093],[-72.11426,-42.61679],[-72.1177,-42.60314],[-72.09366,-42.60162],[-72.09778,-42.58848],[-72.07512,-42.56573],[-72.06551,-42.5718],[-72.05384,-42.56371],[-72.05452,-42.54449],[-72.04285,-42.53639],[-72.03392,-42.52425],[-72.02774,-42.5202],[-72.02843,-42.50552],[-72.02088,-42.49641],[-72.01264,-42.49641],[-72.01333,-42.48577],[-72.03255,-42.4645],[-72.03598,-42.45285],[-72.0456,-42.45133],[-72.04628,-42.44779],[-72.03942,-42.44424],[-72.03324,-42.42853],[-72.0353,-42.41687],[-72.02706,-42.41079],[-72.04079,-42.39811],[-72.06894,-42.39152],[-72.0765,-42.38138],[-72.08748,-42.39558],[-72.11289,-42.39761],[-72.13074,-42.38594],[-72.13006,-42.37681],[-72.13555,-42.3687],[-72.13074,-42.35753],[-72.13967,-42.34586],[-72.13623,-42.32657],[-72.12868,-42.32708],[-72.12113,-42.32353],[-72.128,-42.30931],[-72.13418,-42.30322],[-72.14104,-42.29052],[-72.16851,-42.26055],[-72.16988,-42.25241],[-72.1534,-42.24733],[-72.16027,-42.22496],[-72.16713,-42.21276],[-72.15752,-42.20564],[-72.15683,-42.19394],[-72.18636,-42.1746],[-72.18911,-42.15883],[-72.18155,-42.15577],[-72.174,-42.13897],[-72.12456,-42.15577],[-72.11701,-42.1461],[-72.10534,-42.14406],[-72.06757,-42.14763],[-72.06551,-42.13846],[-72.06894,-42.13134],[-72.07718,-42.13286],[-72.08062,-42.12828],[-72.0662,-42.12268],[-72.06826,-42.11606],[-72.05452,-42.11402],[-72.04628,-42.12421],[-72.03667,-42.12573],[-72.03049,-42.12217],[-72.02157,-42.1293],[-72.01333,-42.13388],[-72.00921,-42.13897],[-71.98586,-42.13948],[-71.97007,-42.14457],[-71.96595,-42.14305],[-71.96663,-42.13846],[-71.95565,-42.14203],[-71.95496,-42.15577],[-71.95015,-42.15832],[-71.95427,-42.16443],[-71.94741,-42.16697],[-71.93848,-42.17969],[-71.92612,-42.18834],[-71.91651,-42.18834],[-71.89591,-42.17969],[-71.87943,-42.16595],[-71.8808,-42.16188],[-71.87325,-42.15526],[-71.85952,-42.15883],[-71.84647,-42.15272],[-71.84029,-42.16086],[-71.83136,-42.16188],[-71.82862,-42.15883],[-71.81763,-42.1573],[-71.81008,-42.1517],[-71.80665,-42.14661],[-71.80184,-42.14508],[-71.79017,-42.14916],[-71.78124,-42.14814],[-71.77575,-42.14101],[-71.77506,-42.13032],[-71.74759,-42.1293],[-71.74073,-42.12522],[-71.72699,-42.12319],[-71.72699,-42.11351],[-71.72562,-42.10893],[-71.73043,-42.10434],[-71.72837,-42.10026],[-71.74073,-42.08447],[-71.74004,-42.07377],[-71.72562,-42.05694],[-71.72905,-42.04318],[-71.75858,-42.03502],[-71.75789,-42.02431],[-71.76133,-42.01309],[-71.75995,-42.00951],[-71.76819,-41.99829],[-71.77643,-41.99778],[-71.77987,-41.98247],[-71.79429,-41.96052],[-71.79017,-41.95184],[-71.79429,-41.94264],[-71.78467,-41.94264],[-71.77369,-41.94928],[-71.77369,-41.93141],[-71.77712,-41.91914],[-71.77437,-41.91046],[-71.78948,-41.88899],[-71.79017,-41.85218],[-71.79772,-41.84348],[-71.7936,-41.83223],[-71.74897,-41.82404],[-71.75309,-41.8179],[-71.76476,-41.81585],[-71.77369,-41.79333],[-71.76819,-41.78514],[-71.75446,-41.78873],[-71.76407,-41.78105],[-71.77643,-41.76568],[-71.77506,-41.75902],[-71.78124,-41.75339],[-71.78673,-41.73853],[-71.78399,-41.73341],[-71.79017,-41.7329],[-71.79909,-41.72419],[-71.81145,-41.7206],[-71.80184,-41.71137],[-71.7936,-41.70112],[-71.79635,-41.69087],[-71.80665,-41.69138],[-71.81626,-41.68984],[-71.81694,-41.66933],[-71.82999,-41.67394],[-71.83754,-41.6642],[-71.83411,-41.6524],[-71.84578,-41.64419],[-71.85334,-41.64932],[-71.85883,-41.64881],[-71.85952,-41.63649],[-71.86776,-41.62366],[-71.8863,-41.60313],[-71.87806,-41.5985],[-71.87325,-41.58669],[-71.8657,-41.58464],[-71.86158,-41.57334],[-71.84922,-41.57128],[-71.84372,-41.56512],[-71.83823,-41.56717],[-71.83342,-41.57231],[-71.82518,-41.57693],[-71.81763,-41.57539],[-71.82999,-41.57077],[-71.83068,-41.5497],[-71.83892,-41.54765],[-71.84098,-41.53788],[-71.84784,-41.53326],[-71.84716,-41.52863],[-71.85059,-41.51424],[-71.84441,-41.50035],[-71.83823,-41.49933],[-71.84098,-41.49264],[-71.82793,-41.48184],[-71.83754,-41.47618],[-71.83686,-41.4664],[-71.84304,-41.45405],[-71.83548,-41.4417],[-71.83823,-41.44016],[-71.83617,-41.43244],[-71.84235,-41.42832],[-71.86638,-41.41905],[-71.8705,-41.40978],[-71.8657,-41.3969],[-71.87806,-41.39021],[-71.87943,-41.383],[-71.88767,-41.37836],[-71.89179,-41.36651],[-71.90964,-41.36084],[-71.90758,-41.34641],[-71.9117,-41.34125],[-71.90415,-41.33713],[-71.90003,-41.34074],[-71.89797,-41.33764],[-71.90209,-41.33042],[-71.88218,-41.32217],[-71.8863,-41.31444],[-71.876,-41.30773],[-71.87668,-41.29587],[-71.89042,-41.28968],[-71.89522,-41.27213],[-71.88904,-41.26543],[-71.90003,-41.2551],[-71.87668,-41.26026],[-71.86501,-41.25613],[-71.85952,-41.25923],[-71.85402,-41.2582],[-71.84853,-41.2613],[-71.84647,-41.26801],[-71.83686,-41.27213],[-71.85128,-41.24994],[-71.85814,-41.24787],[-71.8451,-41.24323],[-71.8499,-41.23652],[-71.86158,-41.2329],[-71.8554,-41.2267],[-71.85677,-41.21276],[-71.87462,-41.20449],[-71.87325,-41.19571],[-71.88424,-41.17246],[-71.88939,-41.16522],[-71.87737,-41.15695],[-71.84166,-41.15152],[-71.84235,-41.13084],[-71.83548,-41.12023],[-71.83617,-41.11558],[-71.84716,-41.10782],[-71.84304,-41.10316],[-71.85265,-41.09695],[-71.84304,-41.07625],[-71.82999,-41.0747],[-71.82793,-41.06693],[-71.819,-41.0659],[-71.81832,-41.06176],[-71.8245,-41.05399],[-71.83686,-41.05036],[-71.83548,-41.0426],[-71.84098,-41.03483],[-71.85128,-41.02965],[-71.85814,-41.03327],[-71.8657,-41.01514],[-71.87394,-41.01048],[-71.876,-40.99804],[-71.89797,-40.98249],[-71.9069,-40.97524],[-71.90552,-40.96487],[-71.8863,-40.96435],[-71.8657,-40.95398],[-71.8602,-40.95605],[-71.85471,-40.94516],[-71.86432,-40.93219],[-71.85814,-40.92286],[-71.86844,-40.90781],[-71.86501,-40.90314],[-71.8705,-40.89276],[-71.86158,-40.88757],[-71.86638,-40.88186],[-71.88012,-40.88186],[-71.9117,-40.85174],[-71.91102,-40.84187],[-71.92475,-40.83304],[-71.92406,-40.82732],[-71.93299,-40.82161],[-71.92612,-40.81018],[-71.92956,-40.77691],[-71.95908,-40.7587],[-71.95633,-40.75038],[-71.95702,-40.74518],[-71.96526,-40.74518],[-71.96457,-40.7176],[-71.94878,-40.71916],[-71.93093,-40.69574],[-71.90072,-40.68116],[-71.88767,-40.6671],[-71.87188,-40.66398],[-71.86501,-40.6447],[-71.85677,-40.64314],[-71.83892,-40.61031],[-71.84166,-40.59415],[-71.83274,-40.58998],[-71.8245,-40.57694],[-71.83686,-40.58685],[-71.84922,-40.58372],[-71.85471,-40.59154],[-71.87943,-40.56234],[-71.89042,-40.55607],[-71.88973,-40.5519],[-71.86707,-40.5566],[-71.85952,-40.55034],[-71.8602,-40.53312],[-71.84304,-40.52111],[-71.84784,-40.51694],[-71.85196,-40.5185],[-71.85814,-40.50649],[-71.84235,-40.48718],[-71.84922,-40.47516],[-71.83617,-40.46419],[-71.84304,-40.45322],[-71.82244,-40.43389],[-71.82381,-40.42187],[-71.81008,-40.40566],[-71.78536,-40.40932],[-71.77712,-40.42187],[-71.76407,-40.41612],[-71.75789,-40.41821],[-71.75515,-40.4318],[-71.73935,-40.4365],[-71.70845,-40.41977],[-71.70914,-40.41455],[-71.69266,-40.40409],[-71.69335,-40.37323],[-71.65558,-40.36329],[-71.66176,-40.3455],[-71.67481,-40.34132],[-71.67138,-40.33765],[-71.67,-40.33137],[-71.67687,-40.32561],[-71.67069,-40.31985],[-71.67344,-40.30886],[-71.70296,-40.28372],[-71.71807,-40.27744],[-71.71807,-40.28477],[-71.72837,-40.29367],[-71.73455,-40.30572],[-71.75652,-40.30258],[-71.75927,-40.29315],[-71.75583,-40.28582],[-71.76751,-40.27272],[-71.78811,-40.26277],[-71.7833,-40.2591],[-71.79772,-40.25595],[-71.80871,-40.23027],[-71.82244,-40.23184],[-71.82999,-40.21507],[-71.82518,-40.20405],[-71.81694,-40.20405],[-71.79841,-40.1836],[-71.819,-40.17993],[-71.8293,-40.17101],[-71.81008,-40.14949],[-71.8142,-40.14372],[-71.81008,-40.13532],[-71.80184,-40.1369],[-71.80321,-40.12587],[-71.80802,-40.12325],[-71.80115,-40.11379],[-71.81351,-40.10171],[-71.82587,-40.11117],[-71.82862,-40.09173],[-71.81282,-40.07913],[-71.80047,-40.08438],[-71.75103,-40.09384],[-71.72287,-40.10907],[-71.69953,-40.11537],[-71.67412,-40.10277],[-71.66863,-40.0828],[-71.66657,-40.07597],[-71.68923,-40.03761],[-71.6858,-40.02604],[-71.67206,-40.02394],[-71.67138,-40.00027],[-71.64322,-39.96765],[-71.62537,-39.97397],[-71.61438,-39.95607],[-71.62537,-39.93923],[-71.60546,-39.93133],[-71.59379,-39.90079],[-71.61507,-39.8755],[-71.6343,-39.87971],[-71.63773,-39.85705],[-71.6494,-39.85125],[-71.66451,-39.85969],[-71.68374,-39.85494],[-71.69198,-39.83965],[-71.69266,-39.82278],[-71.68099,-39.81118],[-71.66657,-39.80643],[-71.68236,-39.79905],[-71.68168,-39.77055],[-71.68717,-39.75577],[-71.70433,-39.74363],[-71.71257,-39.72779],[-71.69678,-39.70666],[-71.70296,-39.6998],[-71.70228,-39.69187],[-71.67412,-39.69187],[-71.67069,-39.67866],[-71.68099,-39.68025],[-71.69198,-39.67443],[-71.6961,-39.65858],[-71.71463,-39.648],[-71.71601,-39.63214],[-71.69884,-39.6205],[-71.69816,-39.58559],[-71.6906,-39.58188],[-71.68854,-39.57289],[-71.67893,-39.56442],[-71.65696,-39.57977],[-71.65696,-39.58717],[-71.63704,-39.584],[-71.61095,-39.60358],[-71.61438,-39.62315],[-71.56632,-39.6332],[-71.54503,-39.62579],[-71.52512,-39.62526],[-71.50259,-39.63725],[-71.49148,-39.61627],[-71.48118,-39.61098],[-71.47637,-39.59881],[-71.46401,-39.58665],[-71.46126,-39.57977],[-71.47362,-39.57236],[-71.4695,-39.55859],[-71.47156,-39.54906],[-71.50315,-39.55753],[-71.51482,-39.54483],[-71.53405,-39.53318],[-71.51757,-39.50987],[-71.51894,-39.50034],[-71.47637,-39.49239],[-71.46401,-39.4696],[-71.46538,-39.45847],[-71.45783,-39.45104],[-71.45028,-39.44998],[-71.45096,-39.42241],[-71.46126,-39.424],[-71.47088,-39.40808],[-71.46058,-39.40384],[-71.45096,-39.40968],[-71.44478,-39.40384],[-71.44616,-39.3927],[-71.4544,-39.39004],[-71.45783,-39.36882],[-71.42693,-39.3651],[-71.40908,-39.35183],[-71.3974,-39.34227],[-71.39397,-39.30296],[-71.38161,-39.28383],[-71.37681,-39.2833],[-71.37681,-39.26788],[-71.39122,-39.26363],[-71.39191,-39.24874],[-71.38367,-39.23598],[-71.39191,-39.21577],[-71.38161,-39.2147],[-71.39878,-39.18331],[-71.39878,-39.17373],[-71.40496,-39.16415],[-71.41457,-39.16361],[-71.42006,-39.15456],[-71.41388,-39.14338],[-71.42212,-39.12314],[-71.40633,-39.09863],[-71.418,-39.06932],[-71.41594,-39.05972],[-71.40771,-39.05972],[-71.41251,-39.05332],[-71.39947,-39.04426],[-71.40084,-39.03732],[-71.42075,-39.02292],[-71.41938,-39.01492],[-71.44204,-38.97917],[-71.43586,-38.97756],[-71.43448,-38.96208],[-71.44066,-38.93752],[-71.42899,-38.91989],[-71.4132,-38.92203],[-71.3926,-38.90867],[-71.37543,-38.9044],[-71.36033,-38.88676],[-71.33011,-38.87447],[-71.32256,-38.87928],[-71.29509,-38.87126],[-71.29303,-38.85736],[-71.26763,-38.85041],[-71.269,-38.83329],[-71.26145,-38.8226],[-71.26282,-38.81404],[-71.24772,-38.8135],[-71.23742,-38.8044],[-71.20995,-38.81725],[-71.18523,-38.8135],[-71.17974,-38.80119],[-71.14953,-38.79798],[-71.13511,-38.78086],[-71.12206,-38.77657],[-71.11725,-38.77925],[-71.10146,-38.76373],[-71.10009,-38.75837],[-71.09597,-38.75462],[-71.06781,-38.76854],[-71.05614,-38.75784],[-71.03211,-38.75784],[-71.00327,-38.76694],[-70.97306,-38.76051],[-70.92568,-38.7648],[-70.90577,-38.72784],[-70.88997,-38.72142],[-70.88448,-38.69945],[-70.89959,-38.69355],[-70.90439,-38.66943],[-70.88105,-38.63994],[-70.86663,-38.63297],[-70.83367,-38.60775],[-70.82886,-38.59649],[-70.8371,-38.58521],[-70.8371,-38.55139],[-70.84603,-38.53528],[-70.86319,-38.52454],[-70.86594,-38.51433],[-70.87624,-38.51218],[-70.8989,-38.50896],[-70.90989,-38.50305],[-70.9298,-38.48262],[-70.92705,-38.47295],[-70.96001,-38.44391],[-70.97718,-38.44122],[-70.98542,-38.42939],[-70.97924,-38.41325],[-70.98679,-38.39819],[-70.98679,-38.37451],[-70.98198,-38.36105],[-70.99709,-38.3562],[-70.9964,-38.33951],[-71.00121,-38.32712],[-71.0019,-38.30719],[-70.99778,-38.29156],[-71.0122,-38.2824],[-71.01014,-38.25922],[-71.01769,-38.24789],[-71.03417,-38.24951],[-71.01975,-38.24034],[-71.01494,-38.22632],[-71.02318,-38.21445],[-71.01357,-38.21067],[-71.00121,-38.20906],[-70.9964,-38.20312],[-70.99366,-38.16912],[-71.01151,-38.16264],[-71.01082,-38.15238],[-71.02524,-38.14914],[-71.02799,-38.13402],[-71.04378,-38.12214],[-71.02387,-38.11187],[-70.98885,-38.11079],[-70.98336,-38.10593],[-70.99022,-38.08432],[-71.0122,-38.07945],[-71.03692,-38.05621],[-71.04447,-38.05458],[-71.05477,-38.04377],[-71.05065,-38.02538],[-71.06575,-38.01619],[-71.06026,-38.0005],[-71.04859,-37.99238],[-71.06369,-37.99292],[-71.06987,-37.98101],[-71.06301,-37.97019],[-71.07605,-37.96315],[-71.09116,-37.96315],[-71.10215,-37.95395],[-71.11245,-37.95341],[-71.10764,-37.93175],[-71.11451,-37.92037],[-71.10009,-37.90087],[-71.10901,-37.89979],[-71.10833,-37.89057],[-71.12549,-37.87919],[-71.13785,-37.85914],[-71.1612,-37.85805],[-71.16806,-37.86022],[-71.18523,-37.85643],[-71.16806,-37.85263],[-71.16051,-37.83962],[-71.12755,-37.8304],[-71.12206,-37.82064],[-71.13717,-37.81684],[-71.15365,-37.8087],[-71.15365,-37.80111],[-71.16257,-37.79026],[-71.17287,-37.78049],[-71.15777,-37.77126],[-71.15708,-37.75823],[-71.16669,-37.74683],[-71.18523,-37.73435],[-71.18248,-37.72783],[-71.18935,-37.72457],[-71.18729,-37.71208],[-71.20926,-37.69958],[-71.21201,-37.68709],[-71.20102,-37.66915],[-71.20514,-37.6485],[-71.19278,-37.62838],[-71.16944,-37.6126],[-71.16188,-37.61532],[-71.14472,-37.6088],[-71.12824,-37.58486],[-71.12481,-37.57996],[-71.13373,-37.56037],[-71.1303,-37.55438],[-71.13923,-37.54513],[-71.15021,-37.53968],[-71.13305,-37.52879],[-71.12412,-37.50319],[-71.12,-37.48957],[-71.12,-37.45906],[-71.1406,-37.4427],[-71.15365,-37.39908],[-71.18866,-37.39308],[-71.19141,-37.38435],[-71.20034,-37.38162],[-71.20171,-37.36689],[-71.19004,-37.35925],[-71.20034,-37.33905],[-71.20789,-37.3396],[-71.21064,-37.31011],[-71.2175,-37.30301],[-71.21613,-37.28171],[-71.22094,-37.27296],[-71.18798,-37.27515],[-71.18248,-37.25821],[-71.17424,-37.2593],[-71.17218,-37.25275],[-71.16326,-37.24783],[-71.15639,-37.23143],[-71.16875,-37.22432],[-71.13579,-37.21885],[-71.11382,-37.20354],[-71.12824,-37.18768],[-71.12893,-37.17072],[-71.13648,-37.16579],[-71.13579,-37.14281],[-71.12206,-37.13569],[-71.09391,-37.12639],[-71.09185,-37.1127],[-71.09871,-37.10613],[-71.10352,-37.10667],[-71.11245,-37.09353],[-71.12343,-37.0897],[-71.12,-37.07217],[-71.12824,-37.06833],[-71.13442,-37.07217],[-71.14403,-37.06285],[-71.13785,-37.05354],[-71.14403,-37.03107],[-71.16806,-36.99762],[-71.18729,-36.99598],[-71.19965,-36.98556],[-71.223,-36.98117],[-71.21956,-36.97239],[-71.20652,-36.97623],[-71.17424,-36.968],[-71.16806,-36.97678],[-71.14815,-36.98007],[-71.12893,-36.97568],[-71.12,-36.96855],[-71.10627,-36.9713],[-71.10077,-36.96471],[-71.10009,-36.95703],[-71.08635,-36.93618],[-71.09803,-36.9241],[-71.10352,-36.92794],[-71.11176,-36.9241],[-71.12,-36.93014],[-71.12687,-36.92794],[-71.14472,-36.92794],[-71.14953,-36.89994],[-71.13991,-36.895],[-71.1303,-36.87413],[-71.11931,-36.86864],[-71.1303,-36.856],[-71.14815,-36.85381],[-71.15983,-36.86095],[-71.18111,-36.84172],[-71.1715,-36.83238],[-71.16944,-36.82083],[-71.16257,-36.81754],[-71.15502,-36.82303],[-71.15365,-36.82633],[-71.14129,-36.82578],[-71.14335,-36.81808],[-71.13305,-36.81314],[-71.12755,-36.79005],[-71.12824,-36.7631],[-71.11931,-36.75374],[-71.12137,-36.74219],[-71.11107,-36.72678],[-71.11245,-36.71302],[-71.11794,-36.69651],[-71.11313,-36.67889],[-71.08773,-36.67613],[-71.08223,-36.68825],[-71.07674,-36.70697],[-71.06781,-36.71302],[-71.05614,-36.70862],[-71.02112,-36.69706],[-71.0122,-36.69981],[-71.00739,-36.68384],[-71.01082,-36.66402],[-71.02662,-36.66236],[-71.02936,-36.6508],[-71.04241,-36.64694],[-71.0431,-36.62986],[-71.05751,-36.61829],[-71.0479,-36.60616],[-71.04584,-36.57915],[-71.05408,-36.57419],[-71.04104,-36.54661],[-71.05065,-36.52123],[-71.03554,-36.50964],[-71.03898,-36.47597],[-71.02593,-36.471],[-71.01632,-36.47597],[-71.00945,-36.48756],[-70.99846,-36.48701],[-70.99022,-36.49419],[-70.97924,-36.49364],[-70.97581,-36.50247],[-70.95383,-36.50302],[-70.94285,-36.49032],[-70.93392,-36.49032],[-70.92705,-36.48259],[-70.93117,-36.47486],[-70.90165,-36.47486],[-70.88791,-36.46769],[-70.88517,-36.46216],[-70.89409,-36.45388],[-70.88654,-36.43731],[-70.89272,-36.43289],[-70.89272,-36.42405],[-70.88654,-36.41521],[-70.88997,-36.39752],[-70.86319,-36.39642],[-70.87006,-36.4025],[-70.86937,-36.40968],[-70.84877,-36.41687],[-70.83847,-36.41466],[-70.83367,-36.40526],[-70.82406,-36.40195],[-70.81925,-36.39476],[-70.79316,-36.41908],[-70.7911,-36.42571],[-70.77599,-36.42736],[-70.76157,-36.41742],[-70.75333,-36.40582],[-70.73616,-36.41521],[-70.74028,-36.42902],[-70.71351,-36.42515],[-70.70115,-36.40747],[-70.69085,-36.40968],[-70.6881,-36.39863],[-70.67917,-36.38979],[-70.67849,-36.37652],[-70.68398,-36.36823],[-70.68741,-36.36989],[-70.69222,-36.35993],[-70.70183,-36.35993],[-70.70115,-36.35053],[-70.71076,-36.34887],[-70.71145,-36.33836],[-70.70458,-36.33339],[-70.70252,-36.32066],[-70.69085,-36.31015],[-70.68673,-36.3024],[-70.68398,-36.28137],[-70.70321,-36.27805],[-70.70733,-36.27196],[-70.69016,-36.25646],[-70.66269,-36.23985],[-70.63866,-36.24317],[-70.62355,-36.22711],[-70.63248,-36.21769],[-70.60845,-36.2055],[-70.60433,-36.19387],[-70.58579,-36.18888],[-70.58236,-36.18223],[-70.56931,-36.17503],[-70.58304,-36.14731],[-70.57,-36.13289],[-70.54871,-36.14176],[-70.53223,-36.14342],[-70.52331,-36.14731],[-70.52262,-36.15285],[-70.51163,-36.15507],[-70.50614,-36.16726],[-70.49859,-36.17059],[-70.49103,-36.18001],[-70.46494,-36.1717],[-70.45189,-36.17336],[-70.44022,-36.16449],[-70.42168,-36.15729],[-70.42168,-36.14342],[-70.41825,-36.13733],[-70.41962,-36.12901],[-70.42237,-36.12457],[-70.41962,-36.11514],[-70.41619,-36.11292],[-70.41756,-36.10294],[-70.42099,-36.09683],[-70.42717,-36.09461],[-70.41825,-36.08518],[-70.40932,-36.0541],[-70.39834,-36.05188],[-70.39628,-36.05521],[-70.38735,-36.05077],[-70.38735,-36.04688],[-70.37774,-36.04633],[-70.37156,-36.043],[-70.36881,-36.03689],[-70.37087,-36.03356],[-70.38048,-36.02578],[-70.38254,-35.99912],[-70.37636,-35.99468],[-70.3798,-35.99079],[-70.3949,-35.98135],[-70.4004,-35.98412],[-70.42031,-35.9769],[-70.42305,-35.97134],[-70.41756,-35.96412],[-70.41756,-35.95856],[-70.39147,-35.95133],[-70.38735,-35.93911],[-70.37774,-35.93688],[-70.37774,-35.93243],[-70.36469,-35.92465],[-70.41069,-35.92298],[-70.41275,-35.91742],[-70.42443,-35.91575],[-70.4258,-35.90574],[-70.42305,-35.88961],[-70.42031,-35.88516],[-70.42168,-35.87626],[-70.40589,-35.86569],[-70.39765,-35.86736],[-70.3901,-35.8707],[-70.3798,-35.86457],[-70.37842,-35.85122],[-70.36881,-35.84064],[-70.36057,-35.84009],[-70.35782,-35.84231],[-70.33722,-35.83229],[-70.32692,-35.82172],[-70.318,-35.81949],[-70.3125,-35.81392],[-70.31594,-35.81002],[-70.32212,-35.81169],[-70.32898,-35.80501],[-70.33791,-35.79554],[-70.34752,-35.80111],[-70.3592,-35.80167],[-70.36469,-35.7922],[-70.37842,-35.78775],[-70.37911,-35.78552],[-70.37568,-35.78385],[-70.37705,-35.77605],[-70.38117,-35.76713],[-70.37499,-35.76491],[-70.37224,-35.75766],[-70.3592,-35.75432],[-70.36194,-35.7415],[-70.3695,-35.73704],[-70.36812,-35.7298],[-70.37018,-35.72032],[-70.37293,-35.71809],[-70.37293,-35.7075],[-70.37568,-35.69969],[-70.3798,-35.69969],[-70.38735,-35.6891],[-70.39696,-35.68742],[-70.39971,-35.68296],[-70.40383,-35.6785],[-70.40657,-35.67013],[-70.39765,-35.66344],[-70.40383,-35.65786],[-70.40932,-35.65563],[-70.40863,-35.65005],[-70.41207,-35.64335],[-70.42443,-35.64056],[-70.41756,-35.6294],[-70.40108,-35.62661],[-70.39078,-35.60819],[-70.38804,-35.60986],[-70.38529,-35.60317],[-70.39078,-35.59312],[-70.39834,-35.58697],[-70.39902,-35.57413],[-70.40383,-35.56296],[-70.41001,-35.55905],[-70.41001,-35.54788],[-70.40589,-35.54564],[-70.41344,-35.52944],[-70.41069,-35.52441],[-70.40589,-35.52608],[-70.39765,-35.52106],[-70.39765,-35.5177],[-70.38666,-35.51435],[-70.36812,-35.52161],[-70.36812,-35.51882],[-70.38392,-35.51155],[-70.39559,-35.48696],[-70.40177,-35.48975],[-70.41756,-35.48807],[-70.4464,-35.46347],[-70.44571,-35.45788],[-70.44777,-35.45228],[-70.43335,-35.44613],[-70.43541,-35.4355],[-70.44503,-35.43271],[-70.45395,-35.42655],[-70.45189,-35.42096],[-70.44571,-35.42096],[-70.43885,-35.412],[-70.44503,-35.41032],[-70.45327,-35.39297],[-70.42374,-35.3689],[-70.42511,-35.36442],[-70.41825,-35.35322],[-70.42031,-35.34762],[-70.43129,-35.34146],[-70.43747,-35.32353],[-70.43267,-35.31905],[-70.44777,-35.31457],[-70.46151,-35.32073],[-70.46906,-35.31177],[-70.49447,-35.32129],[-70.50545,-35.31961],[-70.51438,-35.30953],[-70.53086,-35.30785],[-70.54322,-35.3056],[-70.5494,-35.30056],[-70.56588,-35.3],[-70.58373,-35.26637],[-70.5803,-35.25796],[-70.57343,-35.25796],[-70.57274,-35.24787],[-70.56588,-35.24338],[-70.5645,-35.23272],[-70.56931,-35.22319],[-70.55764,-35.21758],[-70.5439,-35.20243],[-70.52949,-35.19682],[-70.52331,-35.20468],[-70.51438,-35.20243],[-70.49859,-35.20131],[-70.47249,-35.20299],[-70.47043,-35.19907],[-70.45945,-35.19514],[-70.45601,-35.19009],[-70.45395,-35.19065],[-70.44983,-35.19626],[-70.42649,-35.18728],[-70.42511,-35.18335],[-70.40795,-35.1783],[-70.40451,-35.17886],[-70.38872,-35.16932],[-70.37842,-35.17325],[-70.37636,-35.16876],[-70.37087,-35.15304],[-70.37156,-35.14967],[-70.36126,-35.13564],[-70.36812,-35.12497],[-70.37087,-35.11261],[-70.35714,-35.09857],[-70.37362,-35.08452],[-70.37293,-35.07272],[-70.37362,-35.05811],[-70.37774,-35.04855],[-70.37156,-35.03843],[-70.36057,-35.03337],[-70.36332,-35.021],[-70.36675,-35.01707],[-70.36538,-35.00413],[-70.35714,-34.99738],[-70.33516,-34.98951],[-70.33036,-34.97601],[-70.33173,-34.93943],[-70.32692,-34.93267],[-70.31937,-34.93155],[-70.30289,-34.89889],[-70.28985,-34.89326],[-70.29122,-34.88368],[-70.28367,-34.87749],[-70.2768,-34.87692],[-70.28092,-34.86904],[-70.27749,-34.8589],[-70.28023,-34.8527],[-70.26307,-34.83241],[-70.25757,-34.80648],[-70.25002,-34.79915],[-70.25277,-34.79295],[-70.26993,-34.79182],[-70.28023,-34.78618],[-70.28092,-34.78167],[-70.29397,-34.77941],[-70.30083,-34.77152],[-70.30907,-34.76983],[-70.30564,-34.74444],[-70.29122,-34.7388],[-70.27199,-34.73654],[-70.26032,-34.72977],[-70.26169,-34.72187],[-70.25826,-34.72074],[-70.25277,-34.70324],[-70.24521,-34.69251],[-70.22118,-34.68066],[-70.21637,-34.68292],[-70.21431,-34.66146],[-70.22118,-34.65863],[-70.21912,-34.6496],[-70.22393,-34.64112],[-70.21843,-34.627],[-70.21775,-34.61118],[-70.19989,-34.601],[-70.2047,-34.59479],[-70.19028,-34.58913],[-70.19371,-34.57952],[-70.18616,-34.57217],[-70.17792,-34.5733],[-70.16762,-34.56313],[-70.169,-34.55804],[-70.14977,-34.5405],[-70.14565,-34.52863],[-70.13878,-34.51448],[-70.12848,-34.49411],[-70.13192,-34.48732],[-70.11681,-34.47487],[-70.1017,-34.48336],[-70.08042,-34.4726],[-70.07905,-34.46581],[-70.07424,-34.46411],[-70.06463,-34.45052],[-70.05364,-34.44883],[-70.04197,-34.42278],[-70.02961,-34.42391],[-70.0145,-34.41258],[-70.00901,-34.39332],[-70.01587,-34.38085],[-70.0248,-34.37405],[-70.02343,-34.36045],[-70.01656,-34.35308],[-70.01999,-34.34628],[-70.0145,-34.33777],[-70.02274,-34.30828],[-70.03235,-34.28843],[-70.01931,-34.27822],[-70.01175,-34.26573],[-70.00557,-34.26517],[-70.00352,-34.26176],[-69.98635,-34.26063],[-69.98429,-34.25438],[-69.97261,-34.24871],[-69.95751,-34.25722],[-69.9424,-34.27198],[-69.93966,-34.27878],[-69.9273,-34.28389],[-69.90876,-34.2907],[-69.89708,-34.28446],[-69.89914,-34.26687],[-69.88335,-34.2629],[-69.87442,-34.26687],[-69.85245,-34.25722],[-69.82979,-34.25552],[-69.82636,-34.24871],[-69.81057,-34.247],[-69.80164,-34.24417],[-69.80507,-34.226],[-69.80095,-34.22089],[-69.79752,-34.20897],[-69.80164,-34.19363],[-69.81125,-34.18511],[-69.81606,-34.17603],[-69.8346,-34.16466],[-69.83529,-34.15841],[-69.86344,-34.13966],[-69.86893,-34.1408],[-69.87374,-34.13114],[-69.86893,-34.12261],[-69.8552,-34.11465],[-69.86001,-34.10271],[-69.84421,-34.09646],[-69.8346,-34.08565],[-69.83391,-34.0703],[-69.84833,-34.06859],[-69.8552,-34.05665],[-69.84833,-34.04925],[-69.84284,-34.03503],[-69.83735,-34.03218],[-69.82155,-34.01511],[-69.82293,-34.01055],[-69.83941,-34.00657],[-69.84147,-33.99348],[-69.84696,-33.98152],[-69.8552,-33.97184],[-69.85451,-33.96444],[-69.87374,-33.96387],[-69.88129,-33.97583],[-69.89502,-33.97412],[-69.90601,-33.9633],[-69.90052,-33.95647],[-69.9012,-33.94792],[-69.89365,-33.94223],[-69.89571,-33.93482],[-69.89228,-33.93026],[-69.89159,-33.92058],[-69.87854,-33.91374],[-69.87374,-33.9069],[-69.85589,-33.89322],[-69.85657,-33.88638],[-69.86824,-33.88125],[-69.86962,-33.86871],[-69.87374,-33.86073],[-69.88678,-33.8516],[-69.89777,-33.84875],[-69.89571,-33.80997],[-69.89365,-33.78942],[-69.90258,-33.77858],[-69.90395,-33.76888],[-69.90052,-33.76032],[-69.8806,-33.74376],[-69.8655,-33.71578],[-69.87442,-33.69179],[-69.88472,-33.68436],[-69.87992,-33.65921],[-69.86962,-33.65178],[-69.87786,-33.64607],[-69.87305,-33.63521],[-69.87717,-33.63063],[-69.8758,-33.62434],[-69.88129,-33.61805],[-69.87442,-33.60948],[-69.87511,-33.60147],[-69.86756,-33.59518],[-69.86687,-33.58088],[-69.87442,-33.55571],[-69.87236,-33.53911],[-69.85932,-33.53224],[-69.85451,-33.52423],[-69.83537,-33.51614],[-69.83237,-33.50641],[-69.82842,-33.47499],[-69.81469,-33.46754],[-69.82155,-33.45379],[-69.814,-33.44119],[-69.82224,-33.4303],[-69.80919,-33.424],[-69.79477,-33.42457],[-69.80095,-33.40336],[-69.81606,-33.39075],[-69.79546,-33.39648],[-69.78447,-33.39132],[-69.77486,-33.37412],[-69.76868,-33.34946],[-69.77143,-33.33971],[-69.80027,-33.28807],[-69.81263,-33.29036],[-69.82293,-33.28061],[-69.82842,-33.28003],[-69.83323,-33.27429],[-69.84009,-33.27314],[-69.85932,-33.28176],[-69.87374,-33.27659],[-69.88472,-33.27831],[-69.90807,-33.27027],[-69.91768,-33.24443],[-69.92249,-33.24558],[-69.917,-33.26625],[-69.9321,-33.27429],[-69.94378,-33.28405],[-69.94858,-33.28061],[-69.9527,-33.28577],[-69.96781,-33.29897],[-69.96918,-33.30988],[-70.00146,-33.3225],[-70.00901,-33.31734],[-70.01107,-33.30012],[-70.00626,-33.28635],[-70.03785,-33.26912],[-70.03304,-33.25305],[-70.02823,-33.24731],[-70.02961,-33.24099],[-70.02617,-33.2341],[-70.05501,-33.22491],[-70.06463,-33.2048],[-70.06463,-33.20021],[-70.05982,-33.19331],[-70.06531,-33.17837],[-70.05776,-33.1709],[-70.06806,-33.15365],[-70.05639,-33.14733],[-70.0557,-33.14273],[-70.05158,-33.13353],[-70.0763,-33.11915],[-70.06611,-33.10334],[-70.07287,-33.06508],[-70.09346,-33.05012],[-70.08523,-33.04551],[-70.08866,-33.03918],[-70.08248,-33.03688],[-70.08248,-33.02939],[-70.05295,-33.02939],[-70.04471,-33.02364],[-70.03441,-33.02364],[-70.02686,-33.01443],[-70.01999,-33.00809],[-70.02205,-32.98275],[-70.02892,-32.9695],[-70.02205,-32.96432],[-70.01999,-32.95625],[-70.00626,-32.95164],[-69.9994,-32.94473],[-70.00695,-32.93205],[-70.00283,-32.91937],[-69.99253,-32.91188],[-69.98909,-32.8992],[-70.00283,-32.88132],[-70.01587,-32.87959],[-70.02686,-32.8744],[-70.04471,-32.87036],[-70.05639,-32.85595],[-70.05433,-32.83287],[-70.07973,-32.82248],[-70.0866,-32.80575],[-70.10582,-32.79998],[-70.112,-32.774],[-70.12162,-32.76245],[-70.13054,-32.7561],[-70.1381,-32.72953],[-70.14702,-32.72838],[-70.14565,-32.70585],[-70.1429,-32.67696],[-70.15183,-32.63822],[-70.15938,-32.62781],[-70.17106,-32.6255],[-70.16488,-32.61509],[-70.1635,-32.59832],[-70.14977,-32.5798],[-70.12711,-32.57575],[-70.12642,-32.54682],[-70.12162,-32.53524],[-70.14222,-32.49761],[-70.13535,-32.49239],[-70.15046,-32.46285],[-70.16076,-32.46285],[-70.16488,-32.45706],[-70.1841,-32.44895],[-70.1944,-32.44895],[-70.20058,-32.44083],[-70.20951,-32.44141],[-70.21775,-32.42866],[-70.23697,-32.42924],[-70.23972,-32.40374],[-70.23148,-32.38982],[-70.22118,-32.38982],[-70.21775,-32.38287],[-70.22873,-32.36605],[-70.22736,-32.35445],[-70.21843,-32.34401],[-70.22118,-32.33995],[-70.21775,-32.3324],[-70.22324,-32.3237],[-70.23491,-32.31732],[-70.24109,-32.31674],[-70.24865,-32.30513],[-70.25757,-32.30339],[-70.26169,-32.2912],[-70.27131,-32.29352],[-70.28298,-32.29236],[-70.29259,-32.28714],[-70.2974,-32.27727],[-70.31937,-32.27146],[-70.3228,-32.26566],[-70.31937,-32.2523],[-70.30907,-32.24185],[-70.30907,-32.2343],[-70.30358,-32.23256],[-70.31182,-32.22152],[-70.30083,-32.20583],[-70.30838,-32.19828],[-70.30838,-32.18492],[-70.31662,-32.1762],[-70.31182,-32.16399],[-70.31662,-32.15876],[-70.31388,-32.14713],[-70.30289,-32.14132],[-70.30632,-32.13202],[-70.32761,-32.12737],[-70.34066,-32.10934],[-70.3386,-32.10236],[-70.34958,-32.08781],[-70.33516,-32.0756],[-70.33516,-32.0692],[-70.38872,-32.04476],[-70.38048,-32.03195],[-70.38117,-32.02555],[-70.35027,-32.02729],[-70.34615,-32.0401],[-70.33104,-32.04476],[-70.32212,-32.04941],[-70.30564,-32.04708],[-70.29603,-32.05174],[-70.28847,-32.05116],[-70.28435,-32.03835],[-70.27062,-32.03428],[-70.26375,-32.03661],[-70.25963,-32.02729],[-70.24796,-32.02322],[-70.25002,-32.01041],[-70.24727,-32.00226],[-70.25071,-31.99119],[-70.24041,-31.99119],[-70.22599,-31.97955],[-70.21706,-31.98129],[-70.21088,-31.9778],[-70.21019,-31.96091],[-70.21569,-31.95158],[-70.22255,-31.94692],[-70.23285,-31.92536],[-70.24247,-31.9207],[-70.23972,-31.9172],[-70.26307,-31.91079],[-70.26925,-31.90263],[-70.27405,-31.88922],[-70.28779,-31.88164],[-70.30014,-31.88456],[-70.31388,-31.87989],[-70.3434,-31.88631],[-70.34684,-31.88981],[-70.364,-31.88106],[-70.37362,-31.88456],[-70.3798,-31.87931],[-70.39147,-31.87873],[-70.40657,-31.87173],[-70.42786,-31.85424],[-70.43953,-31.84899],[-70.4464,-31.85307],[-70.46082,-31.84374],[-70.45189,-31.80757],[-70.45945,-31.80406],[-70.45601,-31.79648],[-70.46288,-31.79064],[-70.46975,-31.7597],[-70.45876,-31.73284],[-70.467,-31.71883],[-70.46357,-31.71299],[-70.46769,-31.7089],[-70.46631,-31.69955],[-70.48897,-31.68728],[-70.49447,-31.69429],[-70.51095,-31.6902],[-70.51095,-31.66391],[-70.50477,-31.65923],[-70.5082,-31.65105],[-70.53223,-31.63819],[-70.53361,-31.63117],[-70.5494,-31.60544],[-70.55695,-31.60544],[-70.56725,-31.59901],[-70.56244,-31.5955],[-70.56794,-31.5838],[-70.55901,-31.57445],[-70.56382,-31.56099],[-70.5597,-31.54636],[-70.55901,-31.52061],[-70.55214,-31.51124],[-70.55901,-31.50832],[-70.56794,-31.49954],[-70.56382,-31.48256],[-70.57068,-31.47611],[-70.56176,-31.45796],[-70.55283,-31.45503],[-70.54871,-31.44624],[-70.5542,-31.44097],[-70.54802,-31.43628],[-70.55214,-31.42984],[-70.55626,-31.4275],[-70.56176,-31.42105],[-70.55077,-31.40816],[-70.53361,-31.40874],[-70.54047,-31.38823],[-70.53086,-31.37533],[-70.52674,-31.36302],[-70.53292,-31.36126],[-70.53292,-31.35012],[-70.54253,-31.34485],[-70.54734,-31.31376],[-70.52811,-31.27679],[-70.52468,-31.25214],[-70.53223,-31.24451],[-70.51644,-31.23042],[-70.51987,-31.21574],[-70.51438,-31.19812],[-70.52468,-31.18814],[-70.51644,-31.17169],[-70.51644,-31.16229],[-70.50339,-31.14231],[-70.49515,-31.13349],[-70.49859,-31.12174],[-70.4876,-31.11468],[-70.47799,-31.11704],[-70.46494,-31.10293],[-70.45807,-31.08352],[-70.43473,-31.09881],[-70.42649,-31.12056],[-70.4155,-31.13408],[-70.41207,-31.14936],[-70.41275,-31.15524],[-70.40726,-31.16581],[-70.39628,-31.16346],[-70.38941,-31.15465],[-70.37636,-31.1523],[-70.36194,-31.13526],[-70.36469,-31.13114],[-70.364,-31.12115],[-70.3695,-31.11351],[-70.35645,-31.08999],[-70.3386,-31.06823],[-70.3283,-31.06176],[-70.32143,-31.04353],[-70.30907,-31.04353],[-70.29191,-31.04706],[-70.28641,-31.04294],[-70.27543,-31.04764],[-70.26925,-31.04294],[-70.27131,-31.02999],[-70.2768,-31.02176],[-70.28504,-31.0194],[-70.28847,-31.02352],[-70.29877,-31.0194],[-70.29397,-31.00999],[-70.29671,-30.99645],[-70.30358,-30.99527],[-70.29328,-30.9729],[-70.29877,-30.96231],[-70.31388,-30.95524],[-70.31594,-30.93816],[-70.32349,-30.93051],[-70.30838,-30.89752],[-70.29465,-30.84329],[-70.28435,-30.84094],[-70.27749,-30.82207],[-70.28092,-30.81794],[-70.27817,-30.81558],[-70.28573,-30.80143],[-70.29191,-30.79966],[-70.28985,-30.78845],[-70.28504,-30.78314],[-70.27955,-30.7855],[-70.27199,-30.78078],[-70.27405,-30.76249],[-70.27062,-30.74479],[-70.24659,-30.72709],[-70.2562,-30.71351],[-70.25826,-30.70052],[-70.25277,-30.67631],[-70.24315,-30.67395],[-70.23903,-30.66509],[-70.25139,-30.66095],[-70.24659,-30.63083],[-70.23835,-30.62492],[-70.23972,-30.61546],[-70.22667,-30.6066],[-70.22667,-30.60187],[-70.22049,-30.59714],[-70.22049,-30.58118],[-70.20539,-30.57054],[-70.20813,-30.55931],[-70.18959,-30.55103],[-70.19715,-30.53802],[-70.19028,-30.53329],[-70.18959,-30.52264],[-70.18479,-30.52146],[-70.1793,-30.5114],[-70.18822,-30.50371],[-70.19577,-30.49129],[-70.1484,-30.46229],[-70.13466,-30.45756],[-70.13054,-30.4469],[-70.12574,-30.44394],[-70.12436,-30.43506],[-70.1175,-30.43092],[-70.12642,-30.40664],[-70.13535,-30.4025],[-70.13398,-30.39717],[-70.14084,-30.38413],[-70.14359,-30.37169],[-70.15664,-30.36162],[-70.15252,-30.35392],[-70.15458,-30.3474],[-70.14702,-30.34088],[-70.13054,-30.34266],[-70.10445,-30.35392],[-70.10376,-30.36696],[-70.07905,-30.37525],[-70.08248,-30.3794],[-70.0763,-30.38177],[-70.06463,-30.3948],[-70.05295,-30.38947],[-70.03098,-30.39124],[-70.01999,-30.39657],[-69.99528,-30.3794],[-69.98291,-30.3794],[-69.96712,-30.38473],[-69.96026,-30.38295],[-69.95614,-30.3865],[-69.94515,-30.37762],[-69.93622,-30.35866],[-69.917,-30.34918],[-69.8964,-30.35451],[-69.89159,-30.348],[-69.9012,-30.34385],[-69.90532,-30.33733],[-69.90464,-30.32488],[-69.90738,-30.31066],[-69.90189,-30.30888],[-69.89983,-30.29939],[-69.90395,-30.29524],[-69.89708,-30.2905],[-69.89846,-30.28042],[-69.89571,-30.27271],[-69.88335,-30.27212],[-69.87786,-30.2567],[-69.88747,-30.2478],[-69.88816,-30.23712],[-69.88541,-30.23594],[-69.88816,-30.22289],[-69.88541,-30.21755],[-69.86824,-30.21043],[-69.85451,-30.21814],[-69.83529,-30.21814],[-69.82773,-30.19618],[-69.82087,-30.18609],[-69.82499,-30.18372],[-69.81675,-30.17897],[-69.82911,-30.16294],[-69.80919,-30.15344],[-69.81469,-30.13801],[-69.81881,-30.13444],[-69.81881,-30.12732],[-69.83254,-30.12316],[-69.84009,-30.1291],[-69.84765,-30.13029],[-69.87168,-30.11069],[-69.90395,-30.10534],[-69.93142,-30.12078],[-69.94584,-30.11306],[-69.9424,-30.10475],[-69.94446,-30.09168],[-69.95476,-30.09287],[-69.96506,-30.08514],[-69.95888,-30.08098],[-69.95888,-30.07504],[-69.96232,-30.07207],[-69.96232,-30.0691],[-69.94996,-30.06316],[-69.9424,-30.05127],[-69.93622,-30.05068],[-69.91494,-30.02512],[-69.92661,-30.00431],[-69.92112,-29.98409],[-69.89846,-29.95732],[-69.90052,-29.95018],[-69.89434,-29.93649],[-69.90601,-29.93768],[-69.91013,-29.92995],[-69.90395,-29.91745],[-69.88747,-29.90376],[-69.89502,-29.89543],[-69.88953,-29.88709],[-69.89571,-29.87757],[-69.87854,-29.86149],[-69.89914,-29.8472],[-69.89983,-29.83469],[-69.89365,-29.8192],[-69.89983,-29.81146],[-69.91356,-29.8061],[-69.91425,-29.79239],[-69.90601,-29.78822],[-69.89365,-29.76736],[-69.89365,-29.75783],[-69.89846,-29.75365],[-69.88404,-29.73517],[-69.87923,-29.73338],[-69.87923,-29.72444],[-69.88678,-29.72026],[-69.88335,-29.70774],[-69.89571,-29.69223],[-69.90807,-29.6982],[-69.91425,-29.68925],[-69.92318,-29.68448],[-69.92524,-29.67016],[-69.94103,-29.65166],[-69.93828,-29.62123],[-69.94172,-29.61347],[-69.93485,-29.60033],[-69.9321,-29.58361],[-69.94172,-29.55614],[-69.9479,-29.55316],[-69.9479,-29.54599],[-69.95614,-29.53464],[-69.95064,-29.53105],[-69.94996,-29.5209],[-69.94584,-29.51791],[-69.95339,-29.49998],[-69.94858,-29.49221],[-69.95202,-29.48205],[-69.96026,-29.47009],[-69.95682,-29.46651],[-69.98154,-29.45276],[-69.9733,-29.4408],[-69.97399,-29.43243],[-69.96781,-29.42824],[-69.96987,-29.41927],[-69.96712,-29.41269],[-69.97948,-29.40132],[-70.00901,-29.39534],[-70.02137,-29.38338],[-70.01313,-29.36961],[-70.02411,-29.36124],[-70.01725,-29.35346],[-70.01038,-29.35286],[-70.01931,-29.34089],[-70.01313,-29.34089],[-70.01999,-29.32892],[-70.01931,-29.32173],[-69.99665,-29.30317],[-70.00146,-29.29239],[-69.99184,-29.28101],[-69.98223,-29.27443],[-69.96918,-29.27323],[-69.96369,-29.26844],[-69.9527,-29.26604],[-69.93691,-29.24567],[-69.94103,-29.23069],[-69.94721,-29.2277],[-69.9527,-29.21571],[-69.94446,-29.20492],[-69.95339,-29.18934],[-69.92798,-29.18754],[-69.90395,-29.16955],[-69.9012,-29.15876],[-69.89159,-29.15756],[-69.87854,-29.13897],[-69.86962,-29.13957],[-69.86207,-29.13417],[-69.84627,-29.13417],[-69.84078,-29.12938],[-69.79203,-29.13477],[-69.78859,-29.12938],[-69.79203,-29.11378],[-69.78516,-29.09938],[-69.79615,-29.08138],[-69.78859,-29.04417],[-69.77967,-29.01355],[-69.76937,-28.98953],[-69.75495,-28.98232],[-69.76181,-28.97391],[-69.76319,-28.9655],[-69.75358,-28.95829],[-69.75426,-28.93666],[-69.76731,-28.92524],[-69.76593,-28.90841],[-69.7625,-28.90481],[-69.76662,-28.9006],[-69.75975,-28.88858],[-69.74671,-28.88256],[-69.75014,-28.86873],[-69.74053,-28.86392],[-69.74534,-28.84949],[-69.72954,-28.84648],[-69.72199,-28.83145],[-69.70688,-28.80618],[-69.70894,-28.78752],[-69.70414,-28.77669],[-69.69864,-28.7809],[-69.69315,-28.77368],[-69.69658,-28.76646],[-69.69658,-28.75863],[-69.70139,-28.75081],[-69.72886,-28.73636],[-69.72336,-28.72673],[-69.73298,-28.7207],[-69.72405,-28.70806],[-69.7316,-28.70445],[-69.72886,-28.67854],[-69.7268,-28.67011],[-69.70139,-28.63938],[-69.70276,-28.63275],[-69.69864,-28.62793],[-69.70414,-28.6213],[-69.69727,-28.60864],[-69.68628,-28.60382],[-69.69521,-28.59719],[-69.68285,-28.58634],[-69.67598,-28.59236],[-69.66294,-28.58332],[-69.66912,-28.57428],[-69.66912,-28.55498],[-69.66568,-28.55377],[-69.665,-28.54834],[-69.66019,-28.5399],[-69.6547,-28.5399],[-69.65264,-28.53085],[-69.665,-28.52059],[-69.665,-28.51215],[-69.65744,-28.50189],[-69.66706,-28.49525],[-69.665,-28.48258],[-69.6801,-28.47171],[-69.67255,-28.46749],[-69.67324,-28.45783],[-69.65744,-28.44334],[-69.64097,-28.44153],[-69.6341,-28.42945],[-69.65744,-28.41254],[-69.64577,-28.40469],[-69.64852,-28.39563],[-69.63753,-28.38899],[-69.62861,-28.39382],[-69.63753,-28.38355],[-69.6238,-28.37751],[-69.61625,-28.38838],[-69.59702,-28.3914],[-69.58535,-28.3763],[-69.58741,-28.35757],[-69.57299,-28.34851],[-69.52561,-28.32977],[-69.51943,-28.32071],[-69.52149,-28.31285],[-69.51188,-28.30559],[-69.50776,-28.29108],[-69.49883,-28.28504],[-69.50364,-28.26992],[-69.50226,-28.26387],[-69.48578,-28.2542],[-69.47686,-28.23786],[-69.47754,-28.22455],[-69.48235,-28.22274],[-69.48235,-28.21003],[-69.47274,-28.20277],[-69.46312,-28.19491],[-69.45488,-28.1822],[-69.43772,-28.19672],[-69.41918,-28.20822],[-69.40957,-28.20701],[-69.40545,-28.21608],[-69.3924,-28.22213],[-69.38279,-28.21306],[-69.38347,-28.2064],[-69.3821,-28.19491],[-69.38622,-28.18583],[-69.37798,-28.18099],[-69.36219,-28.17917],[-69.34777,-28.16706],[-69.33953,-28.16767],[-69.33335,-28.15738],[-69.30726,-28.12892],[-69.30245,-28.10712],[-69.29627,-28.07804],[-69.30108,-28.07198],[-69.28254,-28.05744],[-69.264,-28.04835],[-69.26194,-28.03926],[-69.26812,-28.0332],[-69.26812,-28.00956],[-69.25782,-28.01017],[-69.25095,-28.00047],[-69.25301,-27.99016],[-69.2434,-27.97743],[-69.23722,-27.97985],[-69.23722,-27.97258],[-69.23653,-27.96712],[-69.22348,-27.97197],[-69.20907,-27.96469],[-69.19465,-27.96712],[-69.18778,-27.96591],[-69.17954,-27.97015],[-69.17336,-27.97136],[-69.17267,-27.9653],[-69.16443,-27.95256],[-69.15276,-27.9465],[-69.15688,-27.93315],[-69.11912,-27.89553],[-69.12941,-27.88582],[-69.13147,-27.87186],[-69.11294,-27.85669],[-69.1095,-27.84758],[-69.11362,-27.84272],[-69.10126,-27.81783],[-69.09989,-27.80386],[-69.09508,-27.79839],[-69.09371,-27.78928],[-69.0889,-27.78624],[-69.08272,-27.72609],[-69.09028,-27.72487],[-69.0841,-27.71575],[-69.07311,-27.70907],[-69.0635,-27.70724],[-69.04496,-27.69873],[-69.04221,-27.67928],[-69.05045,-27.67563],[-69.05251,-27.67137],[-69.05732,-27.67137],[-69.05732,-27.66529],[-69.06075,-27.66347],[-69.05251,-27.62636],[-69.05388,-27.62028],[-69.03946,-27.59716],[-69.02573,-27.59411],[-69.02573,-27.5862],[-69.01337,-27.58316],[-69.0065,-27.58438],[-68.99826,-27.58255],[-68.99415,-27.57342],[-68.98385,-27.56733],[-68.97492,-27.55881],[-68.97286,-27.54603],[-68.98797,-27.52472],[-68.97286,-27.53507],[-68.96599,-27.52898],[-68.95089,-27.52715],[-68.94677,-27.52837],[-68.94127,-27.51924],[-68.94333,-27.50645],[-68.9502,-27.49975],[-68.94951,-27.49],[-68.96393,-27.47782],[-68.95913,-27.47112],[-68.96805,-27.46929],[-68.98934,-27.4504],[-68.97973,-27.43212],[-68.95981,-27.42908],[-68.93578,-27.44614],[-68.93166,-27.43273],[-68.92685,-27.43029],[-68.92548,-27.41689],[-68.93097,-27.40957],[-68.91861,-27.40835],[-68.90831,-27.39921],[-68.88909,-27.3986],[-68.89664,-27.38275],[-68.88978,-27.37543],[-68.89321,-27.35592],[-68.87673,-27.34006],[-68.88497,-27.33579],[-68.87536,-27.32847],[-68.86918,-27.31749],[-68.86162,-27.31871],[-68.84652,-27.31383],[-68.8266,-27.29552],[-68.80882,-27.2997],[-68.82815,-27.2908],[-68.83072,-27.28515],[-68.84514,-27.27294],[-68.85682,-27.27111],[-68.85956,-27.26379],[-68.86849,-27.26013],[-68.87124,-27.24792],[-68.86849,-27.23632],[-68.85544,-27.2296],[-68.85888,-27.22106],[-68.85132,-27.21068],[-68.85888,-27.20457],[-68.85613,-27.19724],[-68.86162,-27.19235],[-68.84034,-27.16487],[-68.84377,-27.15448],[-68.81493,-27.14348],[-68.80738,-27.1502],[-68.80738,-27.14226],[-68.80051,-27.12821],[-68.79296,-27.11843],[-68.79021,-27.10315],[-68.77785,-27.09826],[-68.7497,-27.11415],[-68.7394,-27.10193],[-68.72979,-27.10254],[-68.71262,-27.10376],[-68.70575,-27.09948],[-68.69202,-27.09887],[-68.68378,-27.10559],[-68.67211,-27.09887],[-68.66524,-27.10987],[-68.6625,-27.1221],[-68.65563,-27.12515],[-68.65357,-27.13798],[-68.63915,-27.14409],[-68.63297,-27.16181],[-68.6213,-27.16975],[-68.6007,-27.15754],[-68.57254,-27.17831],[-68.56705,-27.16181],[-68.57117,-27.15387],[-68.56636,-27.1502],[-68.56499,-27.14348],[-68.55401,-27.13798],[-68.56019,-27.12026],[-68.55469,-27.11415],[-68.54422,-27.11293],[-68.54147,-27.10987],[-68.51143,-27.12943],[-68.49083,-27.13493],[-68.47573,-27.11965],[-68.4771,-27.11293],[-68.47298,-27.11109],[-68.48328,-27.05913],[-68.47367,-27.08298],[-68.4517,-27.0952],[-68.44414,-27.08603],[-68.44346,-27.07686],[-68.42835,-27.06402],[-68.42148,-27.06524],[-68.4105,-27.06341],[-68.40569,-27.06586],[-68.38921,-27.05485],[-68.38509,-27.05485],[-68.38028,-27.04262],[-68.36449,-27.04445],[-68.36174,-27.03895],[-68.34664,-27.03283],[-68.32329,-27.03467],[-68.29239,-27.03834],[-68.29857,-27.01999],[-68.31231,-27.0047],[-68.31299,-26.9894],[-68.31986,-26.98206],[-68.31368,-26.97227],[-68.30201,-26.96676],[-68.29239,-26.95758],[-68.29102,-26.93677],[-68.29514,-26.93065],[-68.29102,-26.92391],[-68.28209,-26.92269],[-68.27523,-26.92636],[-68.26355,-26.91901],[-68.27111,-26.90738],[-68.28003,-26.90371],[-68.29308,-26.88595],[-68.29926,-26.88472],[-68.30338,-26.87615],[-68.29926,-26.87309],[-68.34733,-26.81366],[-68.36449,-26.79895],[-68.58628,-26.49332],[-68.56568,-26.31866],[-68.55744,-26.28726],[-68.38097,-26.17701],[-68.47847,-25.70589],[-68.47847,-25.69909],[-68.48397,-25.69909],[-68.49289,-25.68485],[-68.49221,-25.6799],[-68.49907,-25.67867],[-68.49907,-25.6731],[-68.51212,-25.67124],[-68.52723,-25.64277],[-68.54027,-25.64029],[-68.54577,-25.62977],[-68.54508,-25.61491],[-68.53959,-25.61243],[-68.54165,-25.59571],[-68.53547,-25.59014],[-68.53203,-25.57961],[-68.51487,-25.57466],[-68.52517,-25.56722],[-68.52585,-25.55669],[-68.54233,-25.5505],[-68.5389,-25.54245],[-68.54714,-25.52696],[-68.53821,-25.50961],[-68.56087,-25.50589],[-68.57392,-25.49225],[-68.57048,-25.48048],[-68.57666,-25.47676],[-68.57666,-25.47304],[-68.58422,-25.45382],[-68.58971,-25.44886],[-68.58559,-25.44328],[-68.59109,-25.41475],[-68.58353,-25.41537],[-68.57872,-25.42034],[-68.57186,-25.41785],[-68.56293,-25.40669],[-68.55675,-25.40793],[-68.54851,-25.39677],[-68.55126,-25.3918],[-68.54371,-25.3825],[-68.53409,-25.37692],[-68.5286,-25.38064],[-68.52242,-25.37443],[-68.52791,-25.36947],[-68.52517,-25.36575],[-68.52723,-25.36016],[-68.52448,-25.35954],[-68.52723,-25.35272],[-68.51967,-25.34527],[-68.52105,-25.32914],[-68.53203,-25.31983],[-68.53615,-25.32169],[-68.54508,-25.31238],[-68.54577,-25.29872],[-68.53684,-25.29686],[-68.52791,-25.28941],[-68.55057,-25.26147],[-68.54302,-25.26147],[-68.54233,-25.25153],[-68.53547,-25.24781],[-68.52723,-25.23414],[-68.51899,-25.23166],[-68.5183,-25.22296],[-68.50457,-25.21923],[-68.508,-25.19625],[-68.51006,-25.17574],[-68.50251,-25.16456],[-68.48671,-25.15958],[-68.48397,-25.15461],[-68.47092,-25.14964],[-68.46405,-25.13099],[-68.4565,-25.12478],[-68.44414,-25.1341],[-68.44071,-25.12353],[-68.43659,-25.12229],[-68.43178,-25.12975],[-68.42423,-25.13037],[-68.42286,-25.13472],[-68.40981,-25.14405],[-68.34458,-25.11048],[-68.35694,-25.09928],[-68.35488,-25.09307],[-68.36174,-25.08125],[-68.36586,-25.08187],[-68.36518,-25.06757],[-68.37067,-25.06757],[-68.37273,-25.06384],[-68.36792,-25.05886],[-68.37891,-25.04206],[-68.37548,-25.03771],[-68.37891,-25.03149],[-68.38303,-25.04206],[-68.40569,-25.03087],[-68.40638,-25.02216],[-68.41118,-25.01593],[-68.41187,-25.00847],[-68.41599,-24.99353],[-68.40912,-24.9705],[-68.42011,-24.96179],[-68.42492,-24.96303],[-68.43178,-24.92879],[-68.43865,-24.91945],[-68.43041,-24.9126],[-68.43247,-24.90513],[-68.44277,-24.90637],[-68.44552,-24.90139],[-68.45993,-24.90263],[-68.48809,-24.89454],[-68.49289,-24.87585],[-68.51899,-24.87398],[-68.52311,-24.86215],[-68.53272,-24.85592],[-68.53547,-24.84408],[-68.53409,-24.82788],[-68.54851,-24.8179],[-68.54645,-24.80731],[-68.56225,-24.80357],[-68.56362,-24.79671],[-68.56774,-24.7936],[-68.56225,-24.78113],[-68.56156,-24.76305],[-68.54645,-24.75557],[-68.54439,-24.73623],[-68.54371,-24.72438],[-68.51555,-24.70131],[-68.50594,-24.68571],[-68.50388,-24.67573],[-68.4977,-24.67573],[-68.49289,-24.66325],[-68.49289,-24.65451],[-68.48603,-24.64016],[-68.49427,-24.63704],[-68.50251,-24.61831],[-68.49427,-24.6052],[-68.49495,-24.59896],[-68.48603,-24.60021],[-68.48328,-24.60895],[-68.47779,-24.61394],[-68.47435,-24.62018],[-68.46337,-24.62268],[-68.4565,-24.61769],[-68.4517,-24.6027],[-68.43728,-24.60333],[-68.43384,-24.59646],[-68.4311,-24.5771],[-68.42011,-24.56399],[-68.40226,-24.52402],[-68.40569,-24.51589],[-68.40226,-24.51027],[-68.3947,-24.50652],[-68.38715,-24.48528],[-68.37616,-24.49153],[-68.35831,-24.48903],[-68.32192,-24.48903],[-68.3075,-24.4909],[-68.30956,-24.48215],[-68.30544,-24.48153],[-68.29857,-24.45465],[-68.29102,-24.4534],[-68.28759,-24.44528],[-68.26836,-24.43528],[-68.26081,-24.40464],[-68.24879,-24.40089],[-68.24742,-24.39636],[-67.32285,-24.03393],[-66.99051,-23.00012],[-67.06192,-22.9301],[-67.15514,-22.83885],[-67.18327,-22.81441],[-67.1807,-22.8138],[-67.12776,-22.72204],[-67.01403,-22.65458],[-67.02716,-22.54079],[-66.97283,-22.54039],[-66.92846,-22.49218],[-66.80169,-22.44713],[-66.78242,-22.43809],[-66.78313,-22.43247],[-66.78512,-22.42385],[-66.78515,-22.41708],[-66.78428,-22.40175],[-66.76158,-22.34588],[-66.75963,-22.32539],[-66.73918,-22.2384],[-66.68614,-22.20969],[-66.65247,-22.21657],[-66.63824,-22.22558],[-66.62316,-22.19747],[-66.34785,-22.1282],[-66.34919,-22.12],[-66.34163,-22.11682],[-66.33683,-22.11936],[-66.33202,-22.11809],[-66.32859,-22.10791],[-66.32378,-22.08819],[-66.3176,-22.08628],[-66.30868,-22.09392],[-66.30044,-22.0901],[-66.28808,-22.08755],[-66.29082,-22.07355],[-66.28602,-22.0691],[-66.29357,-22.06083],[-66.28464,-22.0551],[-66.28602,-22.04874],[-66.29288,-22.05065],[-66.28739,-22.0411],[-66.29082,-22.03792],[-66.29014,-22.03092],[-66.28327,-22.02901],[-66.27846,-22.02009],[-66.2819,-22.01691],[-66.27846,-21.9959],[-66.28396,-21.9889],[-66.2819,-21.98317],[-66.27572,-21.97489],[-66.27366,-21.94369],[-66.26679,-21.93668],[-66.26061,-21.93732],[-66.25855,-21.93159],[-66.26267,-21.92585],[-66.25786,-21.90356],[-66.25168,-21.90483],[-66.24825,-21.89782],[-66.24894,-21.88763],[-66.24619,-21.88062],[-66.2455,-21.87297],[-66.24138,-21.8666],[-66.24138,-21.86214],[-66.23864,-21.85449],[-66.23452,-21.85131],[-66.23864,-21.84685],[-66.24207,-21.83219],[-66.23795,-21.81816],[-66.24138,-21.80095],[-66.24344,-21.79202],[-66.2407,-21.78756],[-66.22628,-21.78756],[-66.22143,-21.78105],[-66.19412,-21.79601],[-66.0763,-21.83496],[-66.04327,-21.87188],[-66.04818,-21.91903],[-65.92478,-21.93357],[-65.80489,-22.0753],[-65.79438,-22.07419],[-65.77996,-22.08755],[-65.77721,-22.09201],[-65.75798,-22.10155],[-65.74975,-22.10918],[-65.73121,-22.10918],[-65.7161,-22.09773],[-65.69275,-22.10282],[-65.68657,-22.10918],[-65.67353,-22.11236],[-65.62821,-22.10091],[-65.60555,-22.09582],[-65.58426,-22.09582],[-65.58358,-22.0831],[-65.57439,-22.07623],[-65.48487,-22.09555],[-65.4835,-22.09563],[-65.48178,-22.09431],[-65.47646,-22.09252],[-65.47599,-22.09022],[-65.47333,-22.08855],[-65.47084,-22.0891],[-64.99338,-22.08242],[-64.99581,-22.08564],[-64.98963,-22.08819],[-64.98688,-22.09392],[-64.96972,-22.10028],[-64.9601,-22.10346],[-64.93882,-22.10918],[-64.93538,-22.11682],[-64.9244,-22.12],[-64.90243,-22.11936],[-64.88663,-22.12827],[-64.87771,-22.11745],[-64.87221,-22.12127],[-64.86191,-22.12254],[-64.83307,-22.14162],[-64.81659,-22.14735],[-64.78981,-22.16579],[-64.77951,-22.17596],[-64.75411,-22.17914],[-64.74587,-22.18296],[-64.74587,-22.18805],[-64.73557,-22.1925],[-64.72115,-22.1944],[-64.71154,-22.18995],[-64.67583,-22.18677],[-64.65867,-22.19504],[-64.65317,-22.18995],[-64.63875,-22.19313],[-64.63669,-22.20076],[-64.61884,-22.20775],[-64.60305,-22.22619],[-64.59481,-22.24208],[-64.56048,-22.26368],[-64.53301,-22.28465],[-64.53919,-22.30435],[-64.54606,-22.30689],[-64.54812,-22.31832],[-64.56254,-22.3215],[-64.56665,-22.33801],[-64.56391,-22.35389],[-64.56803,-22.37104],[-64.54949,-22.38691],[-64.54125,-22.38881],[-64.52958,-22.39707],[-64.52614,-22.40722],[-64.51241,-22.41421],[-64.5131,-22.42246],[-64.52477,-22.43515],[-64.5234,-22.44213],[-64.50692,-22.44213],[-64.49524,-22.43388],[-64.49044,-22.43706],[-64.49112,-22.45673],[-64.47464,-22.46815],[-64.48357,-22.47196],[-64.48426,-22.47894],[-64.47396,-22.48972],[-64.46915,-22.48528],[-64.45954,-22.4929],[-64.45885,-22.50051],[-64.45611,-22.50432],[-64.44924,-22.50241],[-64.44375,-22.50622],[-64.45473,-22.51446],[-64.44993,-22.52208],[-64.43551,-22.51954],[-64.42727,-22.52017],[-64.42727,-22.52905],[-64.41971,-22.53476],[-64.41079,-22.53666],[-64.41971,-22.55505],[-64.40941,-22.55822],[-64.41697,-22.57344],[-64.43139,-22.57978],[-64.43001,-22.58676],[-64.42452,-22.58739],[-64.43139,-22.59817],[-64.42383,-22.60578],[-64.43413,-22.62226],[-64.43345,-22.64887],[-64.41353,-22.65521],[-64.41903,-22.66978],[-64.41559,-22.68119],[-64.39843,-22.68309],[-64.39499,-22.68942],[-64.40117,-22.69703],[-64.39431,-22.71096],[-64.40323,-22.71856],[-64.38744,-22.72236],[-64.38469,-22.71666],[-64.37371,-22.72173],[-64.37165,-22.72806],[-64.36272,-22.72426],[-64.34967,-22.73313],[-64.34212,-22.74959],[-64.33457,-22.76036],[-64.33938,-22.78442],[-64.338,-22.79138],[-64.34075,-22.80404],[-64.33114,-22.811],[-64.32702,-22.82682],[-64.33045,-22.84265],[-64.32427,-22.85087],[-64.33938,-22.86416],[-64.32496,-22.86859],[-64.31328,-22.86416],[-64.30848,-22.86542],[-64.31054,-22.87302],[-64.30367,-22.86922],[-64.29749,-22.8534],[-64.30092,-22.84644],[-64.30848,-22.84454],[-64.30642,-22.83822],[-64.28376,-22.82682],[-64.28101,-22.8167],[-64.292,-22.811],[-64.2865,-22.78758],[-64.27002,-22.78252],[-64.27895,-22.77302],[-64.2762,-22.75529],[-64.28032,-22.74073],[-64.26796,-22.72996],[-64.26934,-22.70146],[-64.25972,-22.67992],[-64.26934,-22.66662],[-64.26865,-22.65394],[-64.26178,-22.64634],[-64.26247,-22.63873],[-64.2508,-22.62606],[-64.25354,-22.61148],[-64.23638,-22.60387],[-64.25011,-22.58993],[-64.23912,-22.57661],[-64.24256,-22.5652],[-64.21578,-22.56266],[-64.22471,-22.54491],[-64.21784,-22.52588],[-64.21715,-22.51637],[-64.19999,-22.51573],[-64.19655,-22.51066],[-64.20205,-22.50305],[-64.18831,-22.4929],[-64.18282,-22.47323],[-64.1684,-22.46625],[-64.16428,-22.45483],[-64.15192,-22.45419],[-64.15329,-22.43769],[-64.14299,-22.42627],[-64.14505,-22.41738],[-64.14162,-22.40722],[-64.1169,-22.40405],[-64.12102,-22.38183],[-64.10935,-22.38246],[-64.11759,-22.36469],[-64.10592,-22.3577],[-64.09768,-22.34055],[-64.10248,-22.33674],[-64.09424,-22.3107],[-64.09081,-22.31197],[-64.08669,-22.30752],[-64.08257,-22.298],[-64.08738,-22.29672],[-64.07639,-22.26496],[-64.06815,-22.2586],[-64.06197,-22.23763],[-64.05716,-22.23763],[-64.05716,-22.24462],[-64.04274,-22.24589],[-64.0345,-22.24144],[-64.03931,-22.23509],[-64.02764,-22.23064],[-64.03862,-22.22619],[-64.04,-22.2211],[-64.03107,-22.21792],[-64.02626,-22.20903],[-64.03382,-22.19631],[-64.02489,-22.18741],[-64.01665,-22.18646],[-64.017,-22.17883],[-64.02455,-22.17596],[-64.00223,-22.15816],[-64.00429,-22.15116],[-63.99468,-22.13018],[-63.99811,-22.12509],[-63.99262,-22.11555],[-63.99811,-22.10664],[-63.97889,-22.09073],[-63.98232,-22.08501],[-63.97545,-22.08055],[-63.97477,-22.08755],[-63.96378,-22.09328],[-63.96035,-22.08119],[-63.95897,-22.06592],[-63.96172,-22.06401],[-63.95005,-22.05574],[-63.95691,-22.05574],[-63.94936,-22.05128],[-63.95554,-22.04428],[-63.94936,-22.04428],[-63.95348,-22.03664],[-63.94249,-22.03028],[-63.94455,-22.02455],[-63.93837,-22.01564],[-63.94455,-22.01182],[-63.93142,-21.99935],[-63.70895,-21.99942],[-63.70873,-22.00139],[-63.70946,-22.00474],[-63.70629,-22.00864],[-63.70594,-22.01182],[-63.70526,-22.01405],[-63.70045,-22.01468],[-63.69736,-22.01341],[-63.69668,-22.01468],[-63.68912,-22.01118],[-63.68809,-22.01723],[-63.68672,-22.02582],[-63.68157,-22.03123],[-63.685,-22.03442],[-63.68638,-22.03919],[-63.68363,-22.05383],[-63.67951,-22.0516],[-63.67951,-22.04969],[-63.67642,-22.0446],[-63.67711,-22.0411],[-63.6735,-22.0407],[-63.67402,-22.03282],[-63.67264,-22.03155],[-63.67196,-22.02932],[-63.6699,-22.02773],[-63.67093,-22.02391],[-63.6699,-22.02041],[-63.66681,-22.0185],[-63.66612,-22.01468],[-63.67058,-22.01277],[-63.66672,-22.00366],[-63.66541,-21.99941],[-62.81339,-21.99875],[-62.81159,-22.00482],[-62.81708,-22.01627],[-62.81571,-22.04619],[-62.79786,-22.06465],[-62.81708,-22.09519],[-62.80884,-22.14226],[-62.78138,-22.16643],[-62.77932,-22.15244],[-62.77039,-22.15116],[-62.73674,-22.17533],[-62.72301,-22.2014],[-62.68456,-22.2122],[-62.6619,-22.25098],[-62.65297,-22.25034],[-62.64748,-22.23826],[-62.64084,-22.23399],[-62.63993,-22.23356],[-62.63814,-22.2313],[-62.63805,-22.23355],[-62.62688,-22.2389],[-62.61795,-22.25415],[-62.62825,-22.26114],[-62.62757,-22.27512],[-62.62963,-22.28719],[-62.62001,-22.27766],[-62.61521,-22.27957],[-62.61795,-22.30117],[-62.58843,-22.31705],[-62.58774,-22.30689],[-62.5644,-22.3107],[-62.56302,-22.31515],[-62.56852,-22.31959],[-62.57607,-22.32277],[-62.55684,-22.33547],[-62.5486,-22.33039],[-62.5383,-22.34436],[-62.54105,-22.35389],[-62.52869,-22.35834],[-62.528,-22.37104],[-62.52045,-22.37739],[-62.49917,-22.37612],[-62.47719,-22.36913],[-62.46895,-22.38627],[-62.46003,-22.38818],[-62.45865,-22.40469],[-62.44835,-22.40722],[-62.44217,-22.39643],[-62.43599,-22.40024],[-62.4408,-22.41294],[-62.43668,-22.42182],[-62.42432,-22.41992],[-62.41127,-22.44023],[-62.39548,-22.44023],[-62.39892,-22.45229],[-62.37008,-22.46054],[-62.37145,-22.45038],[-62.35772,-22.45736],[-62.35085,-22.45134],[-62.34055,-22.47703],[-62.32682,-22.4764],[-62.31514,-22.48846],[-62.2966,-22.4929],[-62.30004,-22.50178],[-62.29592,-22.51256],[-62.29043,-22.50939],[-62.29317,-22.50241],[-62.28562,-22.50051],[-62.27738,-22.52588],[-62.25609,-22.51954],[-62.25403,-22.53286],[-62.23755,-22.54301],[-62.24305,-22.56964],[-62.25884,-22.59563],[-62.27395,-22.60324],[-62.25335,-22.61402],[-62.23618,-22.61148],[-62.22725,-22.62669],[-62.22863,-22.63303],[-62.2197,-22.64761],[-62.20253,-22.64951],[-62.21558,-22.65584],[-62.20391,-22.68372],[-62.19704,-22.68879],[-62.19773,-22.69956],[-62.17576,-22.71413],[-62.1579,-22.76099],[-62.15104,-22.76162],[-62.13524,-22.77872],[-62.13662,-22.79138],[-62.12769,-22.80214],[-62.12151,-22.79518],[-62.12494,-22.79138],[-62.11396,-22.79075],[-62.10434,-22.82429],[-62.08374,-22.811],[-62.07139,-22.82366],[-62.07756,-22.84265],[-62.07139,-22.85277],[-62.05765,-22.83695],[-62.05971,-22.85277],[-62.05422,-22.86353],[-62.04186,-22.86606],[-62.03431,-22.88567],[-62.02401,-22.88314],[-62.01439,-22.90591],[-62.02469,-22.90591],[-62.03362,-22.92425],[-62.02401,-22.93184],[-61.99929,-22.92741],[-62.00409,-22.94133],[-62.00066,-22.98305],[-62.00753,-22.9919],[-61.99791,-22.99127],[-61.99105,-23.00454],[-61.98281,-23.0254],[-61.96907,-23.02982],[-61.9526,-23.04688],[-61.9162,-23.04815],[-61.92719,-23.07089],[-61.9162,-23.06268],[-61.88599,-23.069],[-61.87844,-23.081],[-61.85578,-23.08479],[-61.84411,-23.09995],[-61.84548,-23.10879],[-61.84067,-23.11195],[-61.82488,-23.12584],[-61.81733,-23.14857],[-61.79192,-23.16372],[-61.75347,-23.17193],[-61.73287,-23.21359],[-61.74042,-23.21485],[-61.73424,-23.24009],[-61.72257,-23.24324],[-61.71708,-23.23883],[-61.70815,-23.24261],[-61.69373,-23.25902],[-61.6745,-23.28046],[-61.6594,-23.28172],[-61.65116,-23.27226],[-61.60309,-23.28362],[-61.60035,-23.29497],[-61.58593,-23.28992],[-61.57906,-23.30127],[-61.56807,-23.30254],[-61.56121,-23.3101],[-61.56601,-23.32019],[-61.55228,-23.35109],[-61.53031,-23.34352],[-61.52344,-23.35046],[-61.51452,-23.34856],[-61.51452,-23.36054],[-61.52413,-23.36685],[-61.5207,-23.38134],[-61.50078,-23.40277],[-61.49323,-23.4223],[-61.48362,-23.41915],[-61.44722,-23.42608],[-61.41839,-23.44939],[-61.40259,-23.44624],[-61.38817,-23.45506],[-61.38611,-23.4475],[-61.36414,-23.45506],[-61.35247,-23.44687],[-61.34835,-23.46703],[-61.31882,-23.46703],[-61.30509,-23.48529],[-61.28106,-23.48655],[-61.26938,-23.51111],[-61.279,-23.51489],[-61.26801,-23.52874],[-61.24535,-23.5363],[-61.2426,-23.547],[-61.22338,-23.55392],[-61.17943,-23.54951],[-61.15059,-23.57847],[-61.13617,-23.58161],[-61.13068,-23.59231],[-61.10116,-23.60364],[-61.08811,-23.61307],[-61.0991,-23.62754],[-61.09017,-23.63635],[-61.09704,-23.65648],[-61.07918,-23.6722],[-61.08605,-23.67472],[-61.08948,-23.67849],[-61.06614,-23.70301],[-61.05858,-23.70616],[-61.04004,-23.73005],[-61.0421,-23.74136],[-61.01395,-23.75959],[-61.01807,-23.77215],[-60.9858,-23.81236],[-60.97687,-23.80671],[-60.96726,-23.80922],[-60.97069,-23.81613],[-60.95215,-23.81236],[-60.95696,-23.80483],[-60.95078,-23.80483],[-60.93911,-23.81048],[-60.93705,-23.80106],[-60.90958,-23.81299],[-60.90134,-23.82556],[-60.86701,-23.85193],[-60.85946,-23.84879],[-60.84435,-23.86952],[-60.80521,-23.87015],[-60.79079,-23.87831],[-60.79079,-23.87328],[-60.73517,-23.87956],[-60.73174,-23.88459],[-60.71663,-23.88082],[-60.69191,-23.90342],[-60.68367,-23.89526],[-60.65484,-23.90154],[-60.65415,-23.90656],[-60.63698,-23.90781],[-60.61364,-23.90216],[-60.59166,-23.91472],[-60.59029,-23.94296],[-60.58205,-23.95426],[-60.58823,-23.95677],[-60.57793,-23.96116],[-60.56008,-23.95489],[-60.55665,-23.96304],[-60.50721,-23.96744],[-60.48661,-23.95112],[-60.43923,-23.96493],[-60.41245,-23.98626],[-60.38842,-23.99504],[-60.37674,-24.02138],[-60.36576,-24.01888],[-60.33349,-24.02138],[-60.32525,-24.03205],[-60.27581,-24.04333],[-60.21744,-24.04521],[-60.15908,-24.04082],[-60.10689,-24.02703],[-60.10483,-24.01762],[-60.09179,-24.02389],[-60.07531,-24.0126],[-60.04784,-24.01323],[-60.03945,-24.01154],[-59.47378,-24.33426],[-59.469,-24.34085],[-59.47037,-24.34835],[-59.4587,-24.35648],[-59.45801,-24.37025],[-59.44909,-24.37775],[-59.44153,-24.39026],[-59.42643,-24.39464],[-59.42093,-24.40839],[-59.3969,-24.41089],[-59.38385,-24.42027],[-59.37493,-24.42027],[-59.36532,-24.44903],[-59.35845,-24.45465],[-59.35296,-24.47965],[-59.34128,-24.48903],[-59.32,-24.49153],[-59.31313,-24.50277],[-59.3042,-24.50152],[-59.29596,-24.51402],[-59.28223,-24.51902],[-59.27811,-24.51652],[-59.25751,-24.51964],[-59.24103,-24.54588],[-59.18541,-24.56337],[-59.18129,-24.57086],[-59.18061,-24.57586],[-59.15726,-24.58585],[-59.15314,-24.59896],[-59.13529,-24.60645],[-59.12911,-24.61769],[-59.11057,-24.62393],[-59.10096,-24.61769],[-59.07967,-24.62081],[-59.05701,-24.63267],[-59.05083,-24.64265],[-59.03573,-24.64702],[-59.02543,-24.6595],[-59.00551,-24.6595],[-58.99796,-24.66262],[-58.98491,-24.6595],[-58.97118,-24.66325],[-58.96637,-24.67136],[-58.94371,-24.68009],[-58.92724,-24.69507],[-58.9135,-24.69819],[-58.90458,-24.70442],[-58.88604,-24.72127],[-58.87917,-24.73374],[-58.87024,-24.7275],[-58.84827,-24.73499],[-58.82218,-24.76055],[-58.80982,-24.77053],[-58.76931,-24.77489],[-58.74527,-24.78051],[-58.72879,-24.77365],[-58.70957,-24.79858],[-58.70957,-24.80856],[-58.70339,-24.81354],[-58.68691,-24.81043],[-58.67318,-24.83037],[-58.65944,-24.82975],[-58.64846,-24.82414],[-58.63678,-24.82975],[-58.60863,-24.82975],[-58.58185,-24.82164],[-58.55095,-24.8285],[-58.52555,-24.85031],[-58.51387,-24.84345],[-58.50426,-24.84906],[-58.49396,-24.86028],[-58.47199,-24.86277],[-58.45139,-24.87834],[-58.44246,-24.87834],[-58.42873,-24.89765],[-58.43285,-24.91447],[-58.42804,-24.92256],[-58.41362,-24.92069],[-58.39165,-24.95183],[-58.34908,-24.9705],[-58.34015,-24.99602],[-58.32917,-24.99913],[-58.32299,-24.98917],[-58.31406,-24.98668],[-58.31406,-24.9842],[-58.29621,-24.9705],[-58.29003,-24.96303],[-58.2866,-24.95681],[-58.27767,-24.95432],[-58.25432,-24.93315],[-58.22617,-24.92754],[-58.22205,-24.93875],[-58.21244,-24.94996],[-58.20145,-24.95058],[-58.19115,-24.96988],[-58.16918,-24.96926],[-58.14995,-24.9761],[-58.15064,-24.98295],[-58.13965,-24.99042],[-58.13553,-25.01033],[-58.12043,-25.01531],[-58.11631,-25.0178],[-58.09365,-25.01033],[-58.07923,-25.02589],[-58.06893,-25.04393],[-58.05039,-25.03895],[-58.04284,-25.04331],[-58.02842,-25.03584],[-58.01262,-25.03833],[-58.00713,-25.03335],[-58.00438,-25.03958],[-57.99614,-25.0657],[-58.00026,-25.06757],[-57.99683,-25.07379],[-57.99065,-25.07938],[-57.97692,-25.08436],[-57.95701,-25.07379],[-57.95426,-25.07876],[-57.94327,-25.07565],[-57.93984,-25.07254],[-57.90825,-25.07441],[-57.90688,-25.07814],[-57.89521,-25.08063],[-57.88285,-25.0769],[-57.86019,-25.08498],[-57.84508,-25.11545],[-57.81968,-25.14218],[-57.77848,-25.15461],[-57.76886,-25.17077],[-57.75307,-25.17885],[-57.75307,-25.21551],[-57.75582,-25.21986],[-57.73728,-25.23911],[-57.73797,-25.25153],[-57.72698,-25.24843],[-57.73041,-25.25898],[-57.72149,-25.27451],[-57.71119,-25.27389],[-57.71187,-25.2832],[-57.69608,-25.28755],[-57.69677,-25.295],[-57.70501,-25.2981],[-57.69745,-25.30865],[-57.70226,-25.32169],[-57.69333,-25.32479],[-57.68647,-25.33224],[-57.67617,-25.34713],[-57.64939,-25.36699],[-57.64321,-25.38374],[-57.61162,-25.39056],[-57.57592,-25.42344],[-57.55944,-25.4563],[-57.56081,-25.47242],[-57.57729,-25.50403],[-57.57935,-25.52324],[-57.56974,-25.54121],[-57.58347,-25.56846],[-57.60407,-25.57032],[-57.61094,-25.60872],[-57.62261,-25.61677],[-57.63978,-25.61491],[-57.65969,-25.59571],[-57.67754,-25.59819],[-57.67136,-25.65205],[-57.67823,-25.6601],[-57.69196,-25.66134],[-57.72629,-25.64339],[-57.7517,-25.66072],[-57.76612,-25.69228],[-57.76062,-25.70899],[-57.73247,-25.70713],[-57.72629,-25.71703],[-57.77367,-25.75661],[-57.78672,-25.76156],[-57.82174,-25.75105],[-57.82723,-25.75971],[-57.81762,-25.78073],[-57.79496,-25.8135],[-57.81006,-25.84193],[-57.82517,-25.84872],[-57.85607,-25.8512],[-57.86637,-25.86602],[-57.85881,-25.88888],[-57.83684,-25.90556],[-57.83959,-25.91853],[-57.87255,-25.92779],[-57.89727,-25.9562],[-57.8547,-25.98953],[-57.85195,-26.00496],[-57.88834,-26.01545],[-57.91787,-26.00373],[-57.92611,-26.00743],[-57.92336,-26.01607],[-57.93023,-26.02717],[-57.92611,-26.03766],[-57.94877,-26.06727],[-57.98172,-26.08454],[-58.04146,-26.11167],[-58.06481,-26.10859],[-58.08884,-26.11352],[-58.09571,-26.13264],[-58.11631,-26.14866],[-58.11837,-26.18256],[-58.12455,-26.18687],[-58.13622,-26.18071],[-58.15545,-26.18009],[-58.15819,-26.18502],[-58.14583,-26.19611],[-58.10601,-26.21891],[-58.10532,-26.23492],[-58.1115,-26.24293],[-58.16437,-26.26387],[-58.16712,-26.29034],[-58.15545,-26.31004],[-58.15476,-26.33897],[-58.17467,-26.36235],[-58.21312,-26.38142],[-58.22342,-26.40479],[-58.21312,-26.42262],[-58.18772,-26.44783],[-58.18017,-26.4546],[-58.18634,-26.4632],[-58.22274,-26.46382],[-58.23372,-26.47058],[-58.23166,-26.4798],[-58.21038,-26.4927],[-58.209,-26.50254],[-58.22411,-26.53387],[-58.21587,-26.54861],[-58.19802,-26.56213],[-58.1939,-26.60327],[-58.20969,-26.61677],[-58.20832,-26.62721],[-58.19184,-26.63948],[-58.19596,-26.65237],[-58.2193,-26.65483],[-58.25295,-26.64133],[-58.266,-26.64869],[-58.25913,-26.66526],[-58.25295,-26.72844],[-58.24402,-26.75052],[-58.25432,-26.76156],[-58.27286,-26.76278],[-58.28591,-26.75481],[-58.29621,-26.76217],[-58.28248,-26.79037],[-58.30788,-26.8063],[-58.34771,-26.8063],[-58.35663,-26.81182],[-58.35114,-26.83265],[-58.31818,-26.84552],[-58.32161,-26.86267],[-58.33603,-26.87186],[-58.36831,-26.86329],[-58.38273,-26.8884],[-58.42461,-26.91167],[-58.4665,-26.91656],[-58.47336,-26.92085],[-58.48298,-26.93126],[-58.48504,-26.94901],[-58.47062,-26.98328],[-58.4713,-26.99919],[-58.47611,-27.00347],[-58.49259,-26.99858],[-58.51593,-26.99735],[-58.52143,-27.00959],[-58.50426,-27.03222],[-58.49877,-27.0524],[-58.51319,-27.06219],[-58.52005,-27.05852],[-58.51662,-27.04507],[-58.53447,-27.03222],[-58.56057,-27.03711],[-58.56057,-27.04935],[-58.55301,-27.06769],[-58.55851,-27.08787],[-58.55301,-27.1062],[-58.56057,-27.11171],[-58.57361,-27.10743],[-58.63953,-27.1166],[-58.65326,-27.13371],[-58.66356,-27.17892],[-58.65326,-27.19602],[-58.59833,-27.21922],[-58.59147,-27.23388],[-58.59421,-27.24975],[-58.5949,-27.26684],[-58.61001,-27.28454],[-58.60589,-27.29735],[-58.57224,-27.30102],[-58.52829,-27.29613],[-58.44452,-27.2644],[-58.37517,-27.27661],[-58.27218,-27.24609],[-58.16437,-27.25647],[-58.14652,-27.2583],[-58.12798,-27.26928],[-58.09227,-27.2583],[-58.05794,-27.26196],[-57.99134,-27.2644],[-57.94396,-27.28881],[-57.92679,-27.28393],[-57.91993,-27.2943],[-57.90139,-27.2882],[-57.88765,-27.29308],[-57.85607,-27.29613],[-57.83066,-27.31871],[-57.75513,-27.3181],[-57.72423,-27.32725],[-57.64801,-27.35897],[-57.59926,-27.38458],[-57.55875,-27.38336],[-57.54708,-27.39128],[-57.52648,-27.39494],[-57.40769,-27.40835],[-57.31705,-27.4175],[-57.24427,-27.4565],[-57.23877,-27.45345],[-57.21405,-27.46929],[-57.1296,-27.48696],[-57.0472,-27.48269],[-56.99295,-27.4632],[-56.98746,-27.44614],[-56.95176,-27.43639],[-56.94901,-27.42786],[-56.90644,-27.41993],[-56.8927,-27.42481],[-56.88103,-27.41689],[-56.75812,-27.49792],[-56.72379,-27.49183],[-56.72104,-27.46746],[-56.605,-27.42847],[-56.53359,-27.45954],[-56.4608,-27.5649],[-56.41205,-27.58133],[-56.37154,-27.57525],[-56.36261,-27.54116],[-56.3015,-27.49427],[-56.28365,-27.44492],[-56.3015,-27.41445],[-56.19988,-27.37604],[-56.14495,-27.30285],[-56.04744,-27.30712],[-55.98015,-27.34067],[-55.93003,-27.32176],[-55.8751,-27.35592],[-55.83046,-27.43334],[-55.73021,-27.44431],[-55.7103,-27.40652],[-55.67666,-27.37421],[-55.62928,-27.35592],[-55.58876,-27.32237],[-55.60181,-27.27966],[-55.57984,-27.26562],[-55.57641,-27.24059],[-55.62722,-27.1948],[-55.61005,-27.16181],[-55.58739,-27.16181],[-55.57984,-27.16914],[-55.56679,-27.16609],[-55.56267,-27.10682],[-55.51598,-27.10437],[-55.4741,-27.11232],[-55.45075,-27.0952],[-55.45556,-27.05363],[-55.43358,-27.00286],[-55.37865,-26.96553],[-55.30724,-26.96309],[-55.27497,-26.94228],[-55.25506,-26.93799],[-55.2118,-26.96676],[-55.19875,-26.97104],[-55.14039,-26.95085],[-55.13146,-26.94166],[-55.13146,-26.93187],[-55.15069,-26.8933],[-55.14245,-26.86696],[-55.11017,-26.84307],[-55.09026,-26.8351],[-55.06211,-26.8014],[-55.02228,-26.78914],[-54.97696,-26.79098],[-54.95636,-26.78179],[-54.94606,-26.75665],[-54.94469,-26.72538],[-54.944,-26.68367],[-54.90075,-26.66403],[-54.85955,-26.65667],[-54.83139,-26.67446],[-54.8156,-26.67017],[-54.78745,-26.63089],[-54.7847,-26.60756],[-54.80736,-26.56028],[-54.79226,-26.52158],[-54.77372,-26.50315],[-54.75106,-26.49393],[-54.73526,-26.47427],[-54.70849,-26.45091],[-54.69613,-26.42754],[-54.69956,-26.38019],[-54.66248,-26.33035],[-54.64875,-26.3125],[-54.66317,-26.28726],[-54.67896,-26.27495],[-54.67827,-26.25894],[-54.62471,-26.22199],[-54.61853,-26.21275],[-54.62609,-26.19611],[-54.65905,-26.17701],[-54.67278,-26.15544],[-54.67209,-26.1388],[-54.64943,-26.11414],[-54.64325,-26.09194],[-54.64943,-26.06727],[-54.67896,-26.0136],[-54.67965,-25.99323],[-54.66866,-25.98151],[-54.64943,-25.97842],[-54.62265,-25.98336],[-54.6103,-25.97595],[-54.60686,-25.96114],[-54.61853,-25.94323],[-54.62334,-25.91606],[-54.61167,-25.88641],[-54.59725,-25.86232],[-54.58695,-25.83266],[-54.59176,-25.81844],[-54.61922,-25.78939],[-54.63364,-25.76218],[-54.6357,-25.73187],[-54.6563,-25.68919],[-54.65493,-25.66815],[-54.63845,-25.65948],[-54.61991,-25.66196],[-54.59656,-25.66876],[-54.5842,-25.66443],[-54.58077,-25.65453],[-54.58626,-25.64896],[-54.59656,-25.62482],[-54.5945,-25.592],[-54.58283,-25.59262],[-54.57459,-25.59138],[-54.56635,-25.59138],[-54.55605,-25.58704],[-54.53545,-25.59819],[-54.53476,-25.60686],[-54.53751,-25.61677],[-54.5279,-25.62667],[-54.51554,-25.62358],[-54.50386,-25.61429],[-54.49425,-25.61677],[-54.48327,-25.62667],[-54.46679,-25.63967],[-54.44825,-25.66072],[-54.44069,-25.68609],[-54.43451,-25.69414],[-54.42696,-25.6929],[-54.42627,-25.65948],[-54.38851,-25.63039],[-54.39194,-25.60376],[-54.37615,-25.59386],[-54.34662,-25.60624],[-54.3274,-25.5697],[-54.28757,-25.55546],[-54.25118,-25.59571],[-54.23882,-25.5951],[-54.23607,-25.56537],[-54.22646,-25.56351],[-54.20037,-25.58147],[-54.17702,-25.58457],[-54.17359,-25.57466],[-54.1832,-25.56475],[-54.20861,-25.55422],[-54.20792,-25.54059],[-54.19144,-25.53377],[-54.16398,-25.54121],[-54.10904,-25.49349],[-54.09462,-25.49659],[-54.09531,-25.51394],[-54.1214,-25.55608],[-54.12415,-25.57156],[-54.09943,-25.61924],[-54.08982,-25.61429],[-54.08364,-25.56041],[-54.07334,-25.55917],[-54.04999,-25.58457],[-54.02596,-25.56537],[-54.00948,-25.56599],[-53.99918,-25.58209],[-53.98888,-25.5889],[-53.96965,-25.60191],[-53.97858,-25.605],[-53.97583,-25.61553],[-53.96553,-25.61119],[-53.95936,-25.62977],[-53.96347,-25.63596],[-53.9621,-25.64339],[-53.95249,-25.64648],[-53.94562,-25.63225],[-53.95455,-25.62358],[-53.94768,-25.61986],[-53.94837,-25.61181],[-53.94219,-25.61119],[-53.94082,-25.61986],[-53.93326,-25.62234],[-53.92708,-25.62048],[-53.91747,-25.61615],[-53.91541,-25.6211],[-53.92159,-25.63163],[-53.91404,-25.62853],[-53.91335,-25.63596],[-53.90992,-25.63534],[-53.90786,-25.63163],[-53.89412,-25.62172],[-53.88932,-25.62605],[-53.89138,-25.62977],[-53.89481,-25.64215],[-53.88726,-25.64401],[-53.8797,-25.63967],[-53.87627,-25.64586],[-53.88314,-25.64834],[-53.89,-25.65948],[-53.88726,-25.66072],[-53.87627,-25.65391],[-53.86254,-25.65824],[-53.85567,-25.67372],[-53.85979,-25.67867],[-53.85498,-25.68362],[-53.84194,-25.68733],[-53.8543,-25.69104],[-53.85087,-25.70465],[-53.85636,-25.70589],[-53.85979,-25.70032],[-53.87284,-25.6929],[-53.86528,-25.70342],[-53.87833,-25.70775],[-53.86803,-25.7195],[-53.86254,-25.71641],[-53.85842,-25.72507],[-53.86391,-25.73002],[-53.86597,-25.74486],[-53.84881,-25.74053],[-53.84469,-25.7461],[-53.83507,-25.74919],[-53.84125,-25.75167],[-53.83919,-25.76156],[-53.84812,-25.75785],[-53.85636,-25.76774],[-53.83851,-25.77269],[-53.83233,-25.78011],[-53.83439,-25.78629],[-53.84331,-25.79],[-53.82409,-25.79124],[-53.82134,-25.7999],[-53.82752,-25.8036],[-53.82889,-25.80855],[-53.82065,-25.81102],[-53.82134,-25.81659],[-53.83164,-25.81288],[-53.83782,-25.81782],[-53.83507,-25.824],[-53.84469,-25.82771],[-53.85018,-25.84007],[-53.84881,-25.84316],[-53.84194,-25.84069],[-53.8337,-25.8512],[-53.84537,-25.85861],[-53.84194,-25.86108],[-53.83439,-25.85799],[-53.83645,-25.86726],[-53.82203,-25.87159],[-53.83027,-25.879],[-53.83851,-25.87776],[-53.83919,-25.88209],[-53.85155,-25.88332],[-53.84743,-25.8895],[-53.83507,-25.88641],[-53.83507,-25.89506],[-53.81928,-25.89753],[-53.82134,-25.90309],[-53.83507,-25.90988],[-53.83301,-25.91668],[-53.82821,-25.9105],[-53.81859,-25.91297],[-53.8234,-25.91791],[-53.81997,-25.92718],[-53.82615,-25.92718],[-53.83301,-25.92162],[-53.83164,-25.93088],[-53.84263,-25.9315],[-53.83919,-25.95373],[-53.82889,-25.96175],[-53.83439,-25.96669],[-53.83713,-25.97287],[-53.81447,-25.97904],[-53.81859,-25.98336],[-53.81722,-25.98891],[-53.80967,-25.99015],[-53.80623,-25.98583],[-53.80005,-25.99015],[-53.80486,-25.99509],[-53.79868,-26.00126],[-53.79181,-25.99755],[-53.79181,-26.00619],[-53.77877,-26.0099],[-53.78357,-26.01483],[-53.77739,-26.01669],[-53.78014,-26.02286],[-53.77327,-26.02532],[-53.7719,-26.03149],[-53.76435,-26.03581],[-53.76023,-26.03026],[-53.75473,-26.03334],[-53.75885,-26.0389],[-53.75473,-26.04198],[-53.7513,-26.0389],[-53.74718,-26.04507],[-53.74375,-26.04013],[-53.73551,-26.04322],[-53.72658,-26.06542],[-53.73894,-26.07961],[-53.73757,-26.09934],[-53.74306,-26.10921],[-53.74169,-26.11661],[-53.72315,-26.12894],[-53.7156,-26.12647],[-53.69912,-26.15298],[-53.68195,-26.16345],[-53.65242,-26.19488],[-53.65174,-26.20535],[-53.64006,-26.21398],[-53.65311,-26.23677],[-53.63835,-26.25032],[-53.64659,-26.24847],[-53.64212,-26.26202],[-53.6459,-26.27772],[-53.64693,-26.28788],[-53.65242,-26.29157],[-53.67714,-26.33527],[-53.68676,-26.33712],[-53.68882,-26.3525],[-53.69362,-26.3525],[-53.69156,-26.35989],[-53.69912,-26.36481],[-53.70324,-26.37281],[-53.69843,-26.37773],[-53.70186,-26.38695],[-53.70942,-26.38818],[-53.70667,-26.39556],[-53.69637,-26.40295],[-53.6998,-26.40725],[-53.70667,-26.40787],[-53.70461,-26.41463],[-53.69019,-26.43],[-53.68744,-26.44107],[-53.70186,-26.44168],[-53.70118,-26.45029],[-53.69568,-26.45828],[-53.69774,-26.4675],[-53.70392,-26.4632],[-53.7156,-26.47058],[-53.70873,-26.47488],[-53.70804,-26.48103],[-53.70118,-26.47304],[-53.695,-26.47549],[-53.6998,-26.4798],[-53.69431,-26.49024],[-53.70118,-26.48963],[-53.70667,-26.50008],[-53.70324,-26.50807],[-53.71491,-26.50376],[-53.7204,-26.50684],[-53.72727,-26.49946],[-53.73002,-26.51421],[-53.72452,-26.52588],[-53.71834,-26.52465],[-53.71697,-26.52834],[-53.72384,-26.53203],[-53.71972,-26.53633],[-53.72178,-26.54247],[-53.73139,-26.53817],[-53.74169,-26.5437],[-53.72727,-26.54984],[-53.72521,-26.55783],[-53.73482,-26.55967],[-53.7362,-26.56704],[-53.71354,-26.55476],[-53.70736,-26.56274],[-53.72109,-26.56397],[-53.72521,-26.58792],[-53.73345,-26.58608],[-53.7307,-26.60572],[-53.73551,-26.60879],[-53.72933,-26.618],[-53.73345,-26.62966],[-53.741,-26.62905],[-53.73963,-26.64194],[-53.7513,-26.63519],[-53.76023,-26.6401],[-53.74306,-26.6493],[-53.73482,-26.64685],[-53.73276,-26.6536],[-53.7259,-26.6579],[-53.72521,-26.64808],[-53.72178,-26.64992],[-53.71903,-26.6671],[-53.72727,-26.66771],[-53.73276,-26.67692],[-53.71697,-26.68121],[-53.72727,-26.69287],[-53.74238,-26.67999],[-53.74238,-26.69041],[-53.73345,-26.69962],[-53.73414,-26.71802],[-53.74855,-26.71924],[-53.75405,-26.70882],[-53.75817,-26.72108],[-53.74306,-26.72844],[-53.74993,-26.73826],[-53.73757,-26.74132],[-53.73345,-26.7309],[-53.72727,-26.74194],[-53.71491,-26.74929],[-53.71834,-26.75849],[-53.7307,-26.76462],[-53.74169,-26.75972],[-53.74375,-26.76462],[-53.73276,-26.7732],[-53.7156,-26.7732],[-53.71285,-26.76585],[-53.69843,-26.76891],[-53.70873,-26.7732],[-53.71628,-26.78117],[-53.7101,-26.79711],[-53.70049,-26.79711],[-53.69774,-26.81121],[-53.69912,-26.81366],[-53.71079,-26.80814],[-53.7101,-26.81366],[-53.70049,-26.81795],[-53.69019,-26.83756],[-53.695,-26.84552],[-53.68126,-26.84246],[-53.67302,-26.85103],[-53.66066,-26.85532],[-53.66272,-26.86512],[-53.69637,-26.859],[-53.67989,-26.86941],[-53.68813,-26.87186],[-53.69568,-26.88717],[-53.67096,-26.89391],[-53.6792,-26.90064],[-53.68058,-26.90983],[-53.67302,-26.91228],[-53.69637,-26.9282],[-53.67096,-26.94105],[-53.67371,-26.94656],[-53.70667,-26.93309],[-53.71079,-26.93922],[-53.70118,-26.95391],[-53.7101,-26.96492],[-53.72658,-26.96003],[-53.7307,-26.97288],[-53.73757,-26.9741],[-53.71697,-26.98695],[-53.7259,-26.99307],[-53.74238,-26.99124],[-53.73345,-27.0047],[-53.74032,-27.01509],[-53.7513,-27.00653],[-53.76366,-27.00775],[-53.74855,-27.02305],[-53.74718,-27.031],[-53.75954,-27.03345],[-53.76229,-27.04445],[-53.77808,-27.02794],[-53.78563,-27.02549],[-53.77671,-27.04873],[-53.75885,-27.05974],[-53.76366,-27.06647],[-53.79593,-27.04078],[-53.80143,-27.03895],[-53.79662,-27.05913],[-53.7822,-27.07136],[-53.77259,-27.07258],[-53.78014,-27.07808],[-53.79662,-27.06708],[-53.80623,-27.08114],[-53.77739,-27.10315],[-53.79593,-27.11109],[-53.80417,-27.10743],[-53.8131,-27.09581],[-53.81859,-27.10254],[-53.80692,-27.11293],[-53.80623,-27.12515],[-53.81447,-27.12882],[-53.82546,-27.12698],[-53.82409,-27.13371],[-53.81791,-27.13921],[-53.80005,-27.13554],[-53.79937,-27.14532],[-53.82683,-27.14471],[-53.83645,-27.15387],[-53.83233,-27.16487],[-53.83851,-27.1667],[-53.85018,-27.15082],[-53.86391,-27.12637],[-53.88176,-27.12821],[-53.88932,-27.15326],[-53.90236,-27.17403],[-53.91884,-27.17342],[-53.93464,-27.15448],[-53.95249,-27.15387],[-53.96073,-27.16303],[-53.95936,-27.19235],[-53.97171,-27.19785],[-53.99781,-27.19541],[-54.01154,-27.2009],[-54.01703,-27.23937],[-54.03008,-27.25463],[-54.05411,-27.26257],[-54.07471,-27.2943],[-54.09737,-27.30285],[-54.15642,-27.29674],[-54.15848,-27.28454],[-54.15574,-27.27783],[-54.1578,-27.25952],[-54.17016,-27.25341],[-54.18663,-27.26562],[-54.19281,-27.29308],[-54.19281,-27.30773],[-54.21273,-27.3486],[-54.21547,-27.38458],[-54.26217,-27.39677],[-54.26903,-27.41384],[-54.2656,-27.43395],[-54.28277,-27.44675],[-54.29581,-27.44431],[-54.32671,-27.40652],[-54.34113,-27.40226],[-54.3425,-27.41628],[-54.33358,-27.44675],[-54.33838,-27.4632],[-54.35555,-27.46686],[-54.39126,-27.4181],[-54.41323,-27.40652],[-54.43451,-27.42237],[-54.46541,-27.42298],[-54.47159,-27.43151],[-54.44275,-27.46015],[-54.4455,-27.47112],[-54.47091,-27.48026],[-54.50592,-27.47965],[-54.52309,-27.50523],[-54.53614,-27.50401],[-54.54781,-27.47782],[-54.5794,-27.45284],[-54.59382,-27.46381],[-54.6,-27.49549],[-54.61785,-27.53568],[-54.63364,-27.54542],[-54.64875,-27.53933],[-54.65905,-27.5101],[-54.67484,-27.50523],[-54.67827,-27.53507],[-54.67278,-27.56855],[-54.68102,-27.57403],[-54.7435,-27.56186],[-54.76273,-27.58316],[-54.78333,-27.58012],[-54.79638,-27.53202],[-54.81217,-27.53142],[-54.82865,-27.56612],[-54.84925,-27.62149],[-54.86573,-27.62758],[-54.89525,-27.62758],[-54.9083,-27.64279],[-54.90418,-27.7267],[-54.94194,-27.77349],[-54.97422,-27.77531],[-54.98246,-27.77106],[-54.99619,-27.77956],[-55.00443,-27.79596],[-55.02846,-27.79293],[-55.05661,-27.76741],[-55.07653,-27.77652],[-55.08271,-27.79657],[-55.02778,-27.82997],[-55.02434,-27.84576],[-55.03602,-27.85912],[-55.08957,-27.84333],[-55.12665,-27.85851],[-55.12322,-27.88886],[-55.13627,-27.89796],[-55.17884,-27.85912],[-55.20424,-27.85912],[-55.25437,-27.92162],[-55.27771,-27.93194],[-55.31479,-27.92162],[-55.33265,-27.93619],[-55.33745,-27.96773],[-55.38277,-27.98046],[-55.36835,-28.02714],[-55.42466,-28.0629],[-55.44457,-28.09622],[-55.46723,-28.09198],[-55.49126,-28.07562],[-55.51049,-28.11196],[-55.5407,-28.12165],[-55.55237,-28.1598],[-55.56336,-28.16343],[-55.58945,-28.14588],[-55.58396,-28.12347],[-55.597,-28.11439],[-55.62035,-28.12953],[-55.62928,-28.17251],[-55.65743,-28.18522],[-55.70137,-28.22032],[-55.77897,-28.24452],[-55.78103,-28.26387],[-55.77004,-28.27476],[-55.72884,-28.29108],[-55.67391,-28.32615],[-55.66979,-28.34005],[-55.6897,-28.39201],[-55.69176,-28.41496],[-55.70069,-28.42583],[-55.71785,-28.421],[-55.73433,-28.38053],[-55.76661,-28.36845],[-55.82154,-28.36422],[-55.86136,-28.35274],[-55.88128,-28.36724],[-55.90256,-28.40288],[-55.88059,-28.47171],[-55.89089,-28.48016],[-55.95063,-28.49404],[-56.01105,-28.5037],[-56.02753,-28.53326],[-56.00213,-28.58091],[-56.00625,-28.60502],[-56.04676,-28.62311],[-56.1319,-28.6924],[-56.18546,-28.76827],[-56.21224,-28.77308],[-56.26374,-28.7791],[-56.29876,-28.80437],[-56.29876,-28.88858],[-56.34201,-28.93846],[-56.40175,-28.9667],[-56.41686,-28.99613],[-56.39901,-29.01595],[-56.42235,-29.07538],[-56.50956,-29.09158],[-56.54526,-29.11498],[-56.58646,-29.11558],[-56.65169,-29.22051],[-56.64895,-29.25885],[-56.71349,-29.36543],[-56.7698,-29.37859],[-56.78078,-29.43841],[-56.80962,-29.47727],[-56.90506,-29.53583],[-56.99433,-29.63436],[-57.07261,-29.72563],[-57.15912,-29.77928],[-57.22367,-29.77869],[-57.29714,-29.83588],[-57.33078,-29.88471],[-57.32872,-29.98349],[-57.36649,-30.01382],[-57.42074,-30.04176],[-57.46056,-30.0994],[-57.53472,-30.15641],[-57.60201,-30.17838],[-57.61162,-30.18787],[-57.57729,-30.20212],[-57.55669,-30.21399],[-57.56836,-30.25314],[-57.56562,-30.26085],[-57.54845,-30.2733],[-57.52442,-30.28516],[-57.4997,-30.28754],[-57.48734,-30.26737],[-57.46193,-30.265],[-57.45369,-30.27508],[-57.4173,-30.27805],[-57.42074,-30.30117],[-57.40632,-30.30117],[-57.39327,-30.30591],[-57.38366,-30.28694],[-57.3658,-30.27153],[-57.35756,-30.2733],[-57.35756,-30.2822],[-57.35413,-30.28457],[-57.32254,-30.27212],[-57.31705,-30.25848],[-57.31087,-30.25848],[-57.29989,-30.27449],[-57.28341,-30.29406],[-57.26967,-30.28398],[-57.26967,-30.27212],[-57.26143,-30.26678],[-57.25319,-30.2739],[-57.25594,-30.28101],[-57.24907,-30.28931],[-57.21817,-30.28813],[-57.20444,-30.28398],[-57.1962,-30.265],[-57.17766,-30.25077],[-57.16736,-30.2478],[-57.16874,-30.24306],[-57.16324,-30.24187],[-57.155,-30.23416],[-57.16668,-30.22348],[-57.16599,-30.195],[-57.15912,-30.19203],[-57.15912,-30.18431],[-57.14402,-30.17244],[-57.1447,-30.16532],[-57.13578,-30.1576],[-57.1296,-30.14157],[-57.12273,-30.14098],[-57.11792,-30.14513],[-57.10625,-30.13622],[-57.10488,-30.12494],[-57.10831,-30.12494],[-57.11106,-30.1285],[-57.11586,-30.12078],[-57.11518,-30.11366],[-57.09733,-30.11366],[-57.09527,-30.12078],[-57.08909,-30.12078],[-57.08359,-30.11069],[-57.09252,-30.11187],[-57.08634,-30.10059],[-57.07055,-30.08514],[-57.06093,-30.08811],[-57.0678,-30.0893],[-57.06849,-30.09999],[-57.05887,-30.09821],[-57.05132,-30.10059],[-57.0472,-30.10475],[-57.03072,-30.10118],[-57.02935,-30.09108],[-57.02385,-30.08633],[-56.9957,-30.08633],[-56.98266,-30.08871],[-56.97716,-30.09762],[-56.95656,-30.10118],[-56.93459,-30.09346],[-56.91742,-30.09702],[-56.91193,-30.10296],[-56.91605,-30.1089],[-56.90712,-30.10653],[-56.90438,-30.11366],[-56.89133,-30.09999],[-56.88996,-30.08752],[-56.87485,-30.08692],[-56.87279,-30.09405],[-56.86318,-30.08989],[-56.84739,-30.08989],[-56.82335,-30.09584],[-56.81923,-30.10653],[-56.81305,-30.10831],[-56.81031,-30.10296],[-56.80344,-30.10831],[-56.80138,-30.12078],[-56.78009,-30.12553],[-56.77872,-30.13919],[-56.78559,-30.14988],[-56.77529,-30.16472],[-56.76087,-30.15938],[-56.72928,-30.17125],[-56.71967,-30.18016],[-56.7128,-30.176],[-56.70456,-30.176],[-56.70868,-30.18906],[-56.6977,-30.20449],[-56.6819,-30.19322],[-56.67778,-30.19974],[-56.66131,-30.19737],[-56.65238,-30.20627],[-56.64757,-30.2039],[-56.6462,-30.20805],[-56.66748,-30.21636],[-56.66337,-30.22111],[-56.65032,-30.21992],[-56.64277,-30.23416],[-56.6256,-30.24543],[-56.63178,-30.25373],[-56.63933,-30.25433],[-56.63933,-30.25848],[-56.62766,-30.26678],[-56.61461,-30.26085],[-56.60775,-30.2822],[-56.62079,-30.29228],[-56.61942,-30.30058],[-56.60569,-30.29228],[-56.59813,-30.29584],[-56.57547,-30.28931],[-56.57685,-30.30414],[-56.56311,-30.31184],[-56.55831,-30.32014],[-56.54732,-30.31184],[-56.5432,-30.31362],[-56.54046,-30.32785],[-56.53634,-30.33555],[-56.55144,-30.34029],[-56.54526,-30.35333],[-56.5487,-30.35925],[-56.51917,-30.35985],[-56.50544,-30.36933],[-56.5075,-30.38177],[-56.49582,-30.38769],[-56.49102,-30.39835],[-56.48346,-30.39953],[-56.47797,-30.38947],[-56.46149,-30.38532],[-56.45668,-30.39243],[-56.45462,-30.4025],[-56.44364,-30.41197],[-56.45462,-30.42263],[-56.4457,-30.425],[-56.44089,-30.4321],[-56.42785,-30.43388],[-56.41755,-30.43033],[-56.4148,-30.43743],[-56.40656,-30.44749],[-56.39763,-30.44749],[-56.40175,-30.45992],[-56.40725,-30.45992],[-56.40587,-30.4688],[-56.40175,-30.47531],[-56.39695,-30.46999],[-56.3942,-30.48419],[-56.3839,-30.49129],[-56.38939,-30.49425],[-56.37978,-30.50076],[-56.36467,-30.50312],[-56.35987,-30.49721],[-56.36467,-30.49543],[-56.36467,-30.49247],[-56.35918,-30.4907],[-56.35025,-30.49721],[-56.34819,-30.50431],[-56.33584,-30.51259],[-56.33446,-30.51673],[-56.33652,-30.52264],[-56.32966,-30.52915],[-56.31043,-30.53033],[-56.29326,-30.52146],[-56.28777,-30.52738],[-56.29052,-30.52915],[-56.28846,-30.54216],[-56.27953,-30.55221],[-56.28159,-30.55931],[-56.27472,-30.5599],[-56.26648,-30.55399],[-56.25618,-30.56522],[-56.26168,-30.57232],[-56.26236,-30.58532],[-56.25344,-30.58769],[-56.25,-30.57586],[-56.23627,-30.5735],[-56.22597,-30.57882],[-56.22391,-30.58532],[-56.2349,-30.5865],[-56.23421,-30.59301],[-56.2246,-30.59714],[-56.22185,-30.6066],[-56.21499,-30.60955],[-56.19164,-30.60424],[-56.17104,-30.61428],[-56.17173,-30.62019],[-56.18271,-30.62374],[-56.18134,-30.6326],[-56.16486,-30.64146],[-56.17035,-30.65328],[-56.16349,-30.6704],[-56.15181,-30.67985],[-56.13877,-30.68281],[-56.13877,-30.68812],[-56.14907,-30.69284],[-56.15044,-30.70583],[-56.13739,-30.71115],[-56.13053,-30.71882],[-56.12847,-30.74007],[-56.1065,-30.73122],[-56.0962,-30.75305],[-56.08521,-30.756],[-56.07354,-30.74597],[-56.06324,-30.75305],[-56.06667,-30.76308],[-56.06392,-30.7737],[-56.03783,-30.77665],[-56.03577,-30.78314],[-56.02272,-30.7855],[-56.02204,-30.7914],[-56.02478,-30.79966],[-56.01311,-30.80615],[-56.01723,-30.81853],[-56.01037,-30.81912],[-56.00487,-30.83799],[-55.99389,-30.84801],[-55.99045,-30.85921],[-55.99801,-30.87277],[-56.00831,-30.89339],[-56.00968,-30.91048],[-56.00487,-30.92049],[-56.01037,-30.92638],[-56.01449,-30.94287],[-56.01105,-30.94817],[-56.01037,-30.96937],[-56.00693,-30.97526],[-56.01174,-30.98056],[-56.00693,-30.98468],[-56.01243,-30.98821],[-56.0035,-31.00057],[-56.00281,-31.02176],[-56.00281,-31.05117],[-56.00007,-31.06764],[-55.99045,-31.08176],[-55.9829,-31.07352],[-55.9623,-31.07352],[-55.93415,-31.08646],[-55.92385,-31.0747],[-55.90943,-31.07529],[-55.89844,-31.06647],[-55.89226,-31.07529],[-55.88128,-31.07647],[-55.86823,-31.06706],[-55.85656,-31.04764],[-55.84351,-31.04235],[-55.83184,-31.04353],[-55.82085,-31.03117],[-55.81261,-31.02293],[-55.8133,-31.01587],[-55.77965,-31.01646],[-55.76592,-31.00999],[-55.76592,-31.00292],[-55.77416,-31.00116],[-55.77347,-30.99586],[-55.75013,-30.9988],[-55.74601,-30.97938],[-55.73021,-30.97879],[-55.72266,-30.94287],[-55.71854,-30.94228],[-55.70961,-30.95524],[-55.70481,-30.95642],[-55.69313,-30.94523],[-55.68764,-30.94582],[-55.68833,-30.95112],[-55.67254,-30.95701],[-55.6588,-30.94405],[-55.66361,-30.93345],[-55.6437,-30.91283],[-55.654,-30.89752],[-55.65331,-30.8822],[-55.66292,-30.87218],[-55.654,-30.86334],[-55.64919,-30.86569],[-55.64644,-30.85155],[-55.63477,-30.84506],[-55.62859,-30.84683],[-55.62172,-30.8427],[-55.61348,-30.84388],[-55.60662,-30.85037],[-55.57847,-30.83268],[-55.57709,-30.84211],[-55.56817,-30.84683],[-55.56336,-30.85744],[-55.56199,-30.86805],[-55.551,-30.87218],[-55.55169,-30.8822],[-55.54619,-30.88927],[-55.53452,-30.89634],[-55.53246,-30.90105],[-55.52353,-30.89752],[-55.50774,-30.904],[-55.51049,-30.90989],[-55.50637,-30.92285],[-55.49813,-30.92638],[-55.49332,-30.92403],[-55.48645,-30.92874],[-55.4892,-30.93816],[-55.48577,-30.94758],[-55.47821,-30.9523],[-55.46654,-30.95288],[-55.46242,-30.94876],[-55.45212,-30.95642],[-55.45075,-30.96054],[-55.44388,-30.95701],[-55.42603,-30.98232],[-55.43564,-30.99174],[-55.43564,-31.00528],[-55.42397,-31.01528],[-55.40886,-31.01881],[-55.40543,-31.02764],[-55.39513,-31.02588],[-55.38826,-31.02117],[-55.38002,-31.02352],[-55.37247,-31.01881],[-55.37041,-31.02411],[-55.37384,-31.03235],[-55.35668,-31.04058],[-55.34981,-31.03823],[-55.35325,-31.05647],[-55.3608,-31.06764],[-55.35187,-31.06882],[-55.34089,-31.08293],[-55.32715,-31.08705],[-55.33333,-31.1041],[-55.33059,-31.10763],[-55.33127,-31.11645],[-55.33814,-31.11997],[-55.33883,-31.13173],[-55.32166,-31.1382],[-55.31754,-31.14407],[-55.31205,-31.14701],[-55.30587,-31.14231],[-55.29145,-31.1429],[-55.28595,-31.15759],[-55.29076,-31.1617],[-55.27085,-31.17169],[-55.27016,-31.17698],[-55.28389,-31.18285],[-55.28252,-31.19225],[-55.26261,-31.19401],[-55.25162,-31.20576],[-55.24682,-31.25097],[-55.24064,-31.26095],[-55.23652,-31.25919],[-55.21317,-31.26271],[-55.1706,-31.26917],[-55.16442,-31.27621],[-55.16373,-31.28501],[-55.15,-31.29088],[-55.12459,-31.30437],[-55.12253,-31.31259],[-55.10743,-31.30789],[-55.10193,-31.31493],[-55.07172,-31.33253],[-55.05661,-31.33077],[-55.06005,-31.31552],[-55.04425,-31.30613],[-55.03602,-31.29147],[-55.03464,-31.27269],[-55.00512,-31.26858],[-55.00031,-31.28266],[-54.9955,-31.28325],[-54.98314,-31.2944],[-54.98108,-31.31141],[-54.97696,-31.31787],[-54.95499,-31.3249],[-54.95156,-31.34015],[-54.95911,-31.34191],[-54.95911,-31.35247],[-54.93645,-31.3554],[-54.93439,-31.36713],[-54.94194,-31.38002],[-54.93096,-31.38471],[-54.92066,-31.38002],[-54.90418,-31.38354],[-54.89663,-31.37944],[-54.89869,-31.37533],[-54.88495,-31.38002],[-54.88839,-31.38296],[-54.87671,-31.39761],[-54.85886,-31.40581],[-54.86023,-31.41695],[-54.83551,-31.44156],[-54.8108,-31.43511],[-54.81011,-31.42984],[-54.7902,-31.43277],[-54.76822,-31.42632],[-54.73938,-31.42632],[-54.72565,-31.42984],[-54.71947,-31.43863],[-54.70368,-31.43804],[-54.70162,-31.43453],[-54.69269,-31.44683],[-54.67759,-31.44683],[-54.67072,-31.45386],[-54.58764,-31.4562],[-54.58008,-31.46909],[-54.57802,-31.47904],[-54.55674,-31.49368],[-54.52446,-31.5048],[-54.51554,-31.51007],[-54.50867,-31.52178],[-54.50181,-31.537],[-54.49082,-31.55046],[-54.49425,-31.55806],[-54.48395,-31.56801],[-54.47297,-31.56976],[-54.46816,-31.59316],[-54.46404,-31.5879],[-54.45237,-31.60018],[-54.4661,-31.61071],[-54.4558,-31.62883],[-54.45099,-31.63936],[-54.4558,-31.65222],[-54.15505,-31.87581],[-54.14338,-31.88339],[-54.14269,-31.88864],[-54.13582,-31.89738],[-54.13376,-31.89389],[-54.1063,-31.91137],[-54.10904,-31.91953],[-54.08913,-31.93236],[-54.07402,-31.91953],[-54.06785,-31.92245],[-54.05961,-31.91837],[-54.05686,-31.90904],[-54.04175,-31.89738],[-54.02459,-31.89738],[-54.00605,-31.90788],[-54.00742,-31.91196],[-53.96759,-31.91953],[-53.96279,-31.9242],[-53.96691,-31.93527],[-53.97103,-31.93818],[-53.96004,-31.95508],[-53.9518,-31.95741],[-53.94562,-31.9545],[-53.92983,-31.96207],[-53.91335,-31.96673],[-53.89893,-31.9778],[-53.89275,-31.99585],[-53.87284,-31.9976],[-53.86528,-31.99352],[-53.85018,-31.99935],[-53.85155,-32.0302],[-53.83988,-32.03428],[-53.84057,-32.04126],[-53.83507,-32.04534],[-53.8337,-32.05756],[-53.81722,-32.05989],[-53.80349,-32.0692],[-53.79044,-32.06862],[-53.7719,-32.07269],[-53.76435,-32.07909],[-53.74512,-32.07792],[-53.74512,-32.09014],[-53.72658,-32.09654],[-53.73139,-32.10643],[-53.73894,-32.10061],[-53.741,-32.10934],[-53.74444,-32.11515],[-53.72658,-32.13899],[-53.72658,-32.14539],[-53.73482,-32.15004],[-53.72864,-32.15353],[-53.72521,-32.1512],[-53.71697,-32.15295],[-53.72109,-32.16632],[-53.72452,-32.17271],[-53.71354,-32.17678],[-53.71354,-32.1884],[-53.70461,-32.18724],[-53.70461,-32.19247],[-53.71148,-32.19654],[-53.70461,-32.20758],[-53.695,-32.20351],[-53.69362,-32.21048],[-53.68401,-32.22094],[-53.67714,-32.23604],[-53.6792,-32.25753],[-53.66478,-32.27495],[-53.65723,-32.27843],[-53.65517,-32.29004],[-53.64281,-32.29584],[-53.6483,-32.31151],[-53.65586,-32.31151],[-53.65792,-32.3179],[-53.64556,-32.32312],[-53.6435,-32.33589],[-53.63389,-32.34923],[-53.6435,-32.36779],[-53.6435,-32.38518],[-53.62565,-32.38924],[-53.61123,-32.40084],[-53.61603,-32.41475],[-53.59955,-32.43156],[-53.58857,-32.43446],[-53.58101,-32.45184],[-53.56659,-32.45937],[-53.55355,-32.47444],[-53.53981,-32.4727],[-53.5405,-32.47965],[-53.52883,-32.48313],[-53.52814,-32.48834],[-53.51922,-32.48718],[-53.52059,-32.48313],[-53.51578,-32.48255],[-53.51647,-32.48776],[-53.50823,-32.48834],[-53.5048,-32.48371],[-53.49381,-32.48081],[-53.48008,-32.48428],[-53.46978,-32.48081],[-53.46291,-32.4866],[-53.46497,-32.49355],[-53.45673,-32.5225],[-53.44506,-32.53408],[-53.43544,-32.55145],[-53.43338,-32.56592],[-53.42583,-32.56592],[-53.42514,-32.55666],[-53.41691,-32.56302],[-53.41622,-32.56997],[-53.38738,-32.5879],[-53.37914,-32.57228],[-53.37227,-32.56939],[-53.35579,-32.59137],[-53.34755,-32.59253],[-53.33794,-32.58501],[-53.33176,-32.58501],[-53.31871,-32.59774],[-53.29468,-32.61972],[-53.28301,-32.6203],[-53.26172,-32.60237],[-53.24456,-32.60699],[-53.24112,-32.6255],[-53.21091,-32.64111],[-53.19237,-32.64458],[-53.18207,-32.6573],[-53.07839,-32.73589],[-53.44918,-33.05242],[-53.5199,-33.1525],[-53.50892,-33.45608],[-53.52677,-33.59518],[-53.53638,-33.61291],[-53.52883,-33.61977],[-53.52746,-33.62434],[-53.52951,-33.64035],[-53.53363,-33.6495],[-53.53226,-33.66722],[-53.52608,-33.67407],[-53.53089,-33.67922],[-53.5302,-33.68836],[-53.44162,-33.69407],[-53.43682,-33.70207],[-53.42995,-33.73805],[-53.41759,-33.74718],[-53.39905,-33.74833],[-53.39356,-33.75118],[-53.38601,-33.74547],[-53.37983,-33.74718],[-53.37296,-33.74205],[-53.36953,-33.7449],[-53,-34],[-26,-34],[-26,-85],[-70,-85]]]}},{"type":"Feature","properties":{"cq_zone_name":"Western Zone of Europe","cq_zone_number":14,"cq_zone_name_loc":[52,-14]},"geometry":{"type":"Polygon","coordinates":[[[-35,36],[-35,56.86499],[-14.95704,61.77376],[7.31083,68.4298],[32,74.05376],[32,71],[30.82151,69.79125],[30.81527,69.79318],[30.84068,69.77847],[30.83862,69.77491],[30.84754,69.76993],[30.85304,69.76874],[30.8496,69.76185],[30.85304,69.76066],[30.85784,69.76375],[30.86677,69.75805],[30.86128,69.75615],[30.86471,69.75259],[30.87158,69.75639],[30.87501,69.75069],[30.86952,69.75045],[30.87913,69.73832],[30.886,69.73999],[30.89149,69.73381],[30.88531,69.73119],[30.89149,69.72929],[30.88874,69.71977],[30.87295,69.71596],[30.89836,69.70382],[30.88874,69.70263],[30.89561,69.70024],[30.90385,69.70143],[30.91896,69.69333],[30.91896,69.69119],[30.92926,69.68642],[30.9423,69.68475],[30.94436,69.67498],[30.9272,69.67498],[30.9217,69.66925],[30.92994,69.66352],[30.92994,69.65828],[30.93338,69.65374],[30.93406,69.64825],[30.9526,69.63774],[30.95466,69.63224],[30.9478,69.61838],[30.95397,69.61383],[30.94848,69.60881],[30.9478,69.60139],[30.9375,69.59565],[30.94574,69.59277],[30.9423,69.58224],[30.94642,69.57673],[30.93956,69.57337],[30.93887,69.56139],[30.91621,69.55467],[30.86059,69.53739],[30.84068,69.53499],[30.81939,69.52947],[30.80429,69.52899],[30.79055,69.53283],[30.7727,69.53211],[30.76034,69.53355],[30.74386,69.53307],[30.66421,69.54051],[30.56808,69.54195],[30.5159,69.54051],[30.50766,69.54795],[30.41839,69.58942],[30.30578,69.62818],[30.22407,69.65302],[30.15197,69.66925],[30.11009,69.66376],[30.08468,69.65828],[30.09086,69.64323],[30.13687,69.64323],[30.15403,69.60905],[30.17944,69.58607],[30.18219,69.55635],[30.17257,69.53475],[30.11764,69.51866],[30.11627,69.47056],[30.00091,69.41341],[29.93911,69.40617],[29.93156,69.41269],[29.91439,69.41896],[29.90203,69.41752],[29.86015,69.42451],[29.83886,69.41824],[29.79835,69.40665],[29.7853,69.39795],[29.72969,69.3907],[29.71183,69.38394],[29.71115,69.37789],[29.70085,69.37378],[29.69604,69.36434],[29.63218,69.34134],[29.54978,69.31856],[29.52507,69.32729],[29.50309,69.32729],[29.48455,69.32219],[29.42207,69.31807],[29.39529,69.32171],[29.29023,69.29599],[29.26963,69.25274],[29.31152,69.2396],[29.30122,69.21622],[29.30603,69.20964],[29.29367,69.20477],[29.27993,69.16597],[29.24835,69.16158],[29.25796,69.154],[29.24079,69.13738],[29.24011,69.12711],[29.23118,69.1227],[29.23942,69.11365],[29.16114,69.06709],[29.14329,69.0639],[29.04167,69.01084],[29.02038,69.02534],[28.92837,69.05163],[28.85421,69.07665],[28.80546,69.11096],[28.83018,69.1711],[28.83155,69.2245],[29.21951,69.39771],[29.33624,69.47874],[29.17144,69.63869],[29.13368,69.69548],[28.91738,69.72976],[28.70384,69.76803],[28.40377,69.81878],[28.3303,69.84932],[28.34472,69.88075],[28.1607,69.9211],[27.98355,70.01401],[27.97737,70.05364],[27.95883,70.09225],[27.95539,70.09249],[27.82012,70.07892],[27.73773,70.06417],[27.6979,70.07541],[27.621,70.07494],[27.56057,70.06464],[27.52281,70.02269],[27.43492,70.02058],[27.40745,70.01448],[27.35458,69.991],[27.31613,69.991],[27.2715,69.97572],[27.28797,69.97149],[27.29415,69.96538],[27.30102,69.9569],[27.22961,69.94796],[27.16301,69.93359],[27.1273,69.93242],[27.0964,69.9171],[27.05864,69.91733],[27.03186,69.91096],[26.98448,69.93501],[26.96182,69.93972],[26.92611,69.93807],[26.90002,69.93336],[26.87599,69.9343],[26.85401,69.94513],[26.85333,69.95973],[26.7778,69.95832],[26.73042,69.94631],[26.71737,69.94584],[26.70021,69.9489],[26.67549,69.96514],[26.62124,69.95902],[26.54434,69.94702],[26.49284,69.94513],[26.45851,69.93595],[26.45439,69.91898],[26.42829,69.90743],[26.40564,69.90106],[26.41662,69.88902],[26.40083,69.87201],[26.38572,69.85712],[26.36306,69.84577],[26.35002,69.8453],[26.3253,69.83465],[26.24084,69.81238],[26.24702,69.79555],[26.22985,69.79342],[26.21543,69.78013],[26.19415,69.77752],[26.18248,69.7685],[26.18454,69.7609],[26.16462,69.75781],[26.1351,69.73832],[25.98472,69.71644],[25.93803,69.68332],[25.90782,69.67569],[25.89683,69.65995],[25.9394,69.65183],[25.96,69.64084],[25.95932,69.62531],[25.9758,69.61192],[25.96344,69.59828],[25.9552,69.59541],[25.94558,69.58607],[25.94764,69.57888],[25.8831,69.55587],[25.84808,69.55203],[25.83778,69.54483],[25.87486,69.52227],[25.86181,69.51289],[25.84739,69.49125],[25.8625,69.47513],[25.83435,69.46767],[25.82473,69.44911],[25.80619,69.43392],[25.80963,69.42789],[25.79933,69.42476],[25.79315,69.41993],[25.81306,69.41872],[25.82336,69.41341],[25.80825,69.41051],[25.81306,69.40544],[25.83091,69.40689],[25.84533,69.39433],[25.8316,69.3895],[25.82954,69.38345],[25.81169,69.37475],[25.81718,69.37281],[25.81649,69.35974],[25.78285,69.35539],[25.77804,69.34497],[25.75813,69.34013],[25.76156,69.33528],[25.75538,69.32535],[25.74028,69.3188],[25.73822,69.30983],[25.74783,69.30255],[25.7341,69.29624],[25.74508,69.29332],[25.74783,69.28628],[25.73753,69.28385],[25.74234,69.27584],[25.7286,69.27243],[25.73272,69.26514],[25.71899,69.2576],[25.70182,69.25444],[25.70182,69.24982],[25.70869,69.24301],[25.70251,69.23984],[25.70388,69.23595],[25.69976,69.2323],[25.71487,69.22597],[25.70526,69.2211],[25.708,69.21452],[25.7135,69.21111],[25.70045,69.2055],[25.6929,69.20477],[25.69221,69.19745],[25.70732,69.18623],[25.72517,69.16548],[25.72311,69.16231],[25.72998,69.1584],[25.72998,69.15107],[25.74234,69.14349],[25.74371,69.13885],[25.73135,69.12784],[25.73204,69.12344],[25.72311,69.1161],[25.72036,69.10949],[25.72998,69.10557],[25.72998,69.10189],[25.72517,69.0921],[25.73066,69.08278],[25.72311,69.08008],[25.7286,69.07445],[25.75264,69.0585],[25.74989,69.05506],[25.75401,69.0531],[25.74852,69.05163],[25.75058,69.04671],[25.74371,69.04352],[25.75607,69.0305],[25.76911,69.02952],[25.77667,69.02166],[25.77461,69.0133],[25.76019,69.00346],[25.7547,69.0037],[25.72174,68.98992],[25.71968,68.98573],[25.71144,68.98032],[25.71281,68.96726],[25.69908,68.95419],[25.69496,68.95321],[25.68946,68.94877],[25.69221,68.94606],[25.65788,68.91792],[25.65307,68.90631],[25.63591,68.90334],[25.62629,68.89741],[25.62767,68.8937],[25.62355,68.89197],[25.61393,68.89098],[25.60157,68.88554],[25.58441,68.88356],[25.55282,68.88776],[25.53428,68.88702],[25.52536,68.89048],[25.51574,68.89172],[25.50888,68.89667],[25.49377,68.89963],[25.49308,68.90408],[25.47386,68.90433],[25.4203,68.89172],[25.41137,68.89271],[25.39833,68.89098],[25.40176,68.88727],[25.37429,68.88084],[25.37086,68.87812],[25.31044,68.86326],[25.26855,68.85162],[25.23902,68.83923],[25.22941,68.8251],[25.20813,68.81816],[25.19439,68.80997],[25.17517,68.806],[25.16761,68.80277],[25.15869,68.80078],[25.15045,68.79457],[25.14907,68.7901],[25.14152,68.78762],[25.14015,68.77842],[25.13397,68.76748],[25.13465,68.76201],[25.12641,68.75828],[25.11955,68.74609],[25.12435,68.74285],[25.12504,68.73588],[25.12161,68.72467],[25.12367,68.72044],[25.13053,68.71919],[25.12985,68.7147],[25.12229,68.71346],[25.11131,68.69924],[25.11474,68.69151],[25.1065,68.68103],[25.11062,68.67653],[25.11337,68.66455],[25.11405,68.65305],[25.11955,68.6473],[25.11474,68.64505],[25.11817,68.64255],[25.11131,68.63755],[25.10444,68.6378],[25.09208,68.6358],[25.08316,68.62654],[25.07904,68.62729],[25.07835,68.62304],[25.07286,68.62229],[25.06874,68.61978],[25.05844,68.62229],[25.04814,68.62654],[25.03028,68.62354],[25.02342,68.62404],[25.01518,68.62129],[25.01449,68.61603],[24.99595,68.61202],[24.98703,68.61277],[24.97673,68.61753],[24.95887,68.61753],[24.95544,68.61478],[24.94789,68.61528],[24.94514,68.61152],[24.93896,68.61227],[24.9163,68.60526],[24.906,68.58195],[24.90257,68.55486],[24.85725,68.56239],[24.78309,68.6368],[24.608,68.68228],[24.47685,68.6985],[24.30227,68.71732],[24.25077,68.72716],[24.20785,68.74528],[24.15292,68.75362],[24.15842,68.78979],[24.0755,68.7801],[23.98315,68.82715],[23.87088,68.83663],[23.77544,68.8189],[23.73081,68.75082],[23.67313,68.70548],[23.4407,68.69213],[23.36345,68.67519],[23.16741,68.62867],[23.04588,68.68939],[22.80075,68.68764],[22.6054,68.72617],[22.53501,68.7446],[22.37434,68.71682],[22.34035,68.82733],[22.19169,68.91891],[22.17556,68.95641],[21.98329,69.07297],[21.84562,69.14472],[21.7234,69.21427],[21.62708,69.27658],[21.27881,69.31188],[21.09617,69.26091],[21.00331,69.22233],[20.98757,69.19192],[21.04673,69.13952],[21.05562,69.12208],[21.10867,69.10393],[21.05754,69.03629],[20.88114,69.07886],[20.71732,69.11979],[20.55233,69.06007],[20.56434,69.05752],[20.57601,69.05359],[20.59043,69.05334],[20.61241,69.0477],[20.74424,69.03837],[20.91453,68.96184],[20.8905,68.94235],[20.84449,68.93791],[20.84724,68.93026],[20.87951,68.91915],[20.90354,68.90062],[20.87677,68.89617],[20.89187,68.89123],[20.91522,68.89667],[20.93444,68.89889],[20.94131,68.89691],[20.95367,68.89765],[20.96122,68.89271],[20.98526,68.89296],[20.99144,68.8979],[21.02851,68.88603],[21.02714,68.88306],[21.04843,68.88108],[21.07521,68.87218],[21.07658,68.86574],[21.10679,68.8598],[21.14318,68.84766],[21.14456,68.84097],[21.18301,68.82882],[21.18232,68.82585],[21.20567,68.8184],[21.23794,68.8127],[21.25991,68.79283],[21.25991,68.79035],[21.30455,68.76077],[21.32309,68.76002],[21.36291,68.76724],[21.38969,68.76475],[21.38969,68.76276],[21.41166,68.74833],[21.40617,68.73688],[21.41441,68.7314],[21.41235,68.72642],[21.42128,68.71595],[21.41372,68.71047],[21.42265,68.70373],[21.42059,68.6965],[21.46797,68.68228],[21.50573,68.67628],[21.55517,68.67603],[21.62315,68.6643],[21.62452,68.6558],[21.6513,68.65055],[21.66641,68.6398],[21.70829,68.62629],[21.71104,68.61878],[21.69937,68.61453],[21.7028,68.59649],[21.71104,68.59374],[21.71791,68.59098],[21.77764,68.58596],[21.86485,68.59073],[21.8621,68.58622],[21.88751,68.58622],[21.90536,68.5797],[21.90673,68.57568],[21.92459,68.57167],[21.94587,68.55837],[21.97128,68.55034],[21.96991,68.54657],[21.99256,68.53376],[22.00492,68.53552],[22.00698,68.53175],[22.01797,68.49478],[22.04544,68.47917],[22.05711,68.47942],[22.07702,68.48194],[22.09693,68.48143],[22.10174,68.47841],[22.11273,68.48244],[22.12028,68.48143],[22.12715,68.47262],[22.15255,68.4711],[22.18689,68.47942],[22.20405,68.47992],[22.21916,68.47337],[22.25143,68.48168],[22.2837,68.47917],[22.29606,68.48345],[22.32215,68.48143],[22.35031,68.48118],[22.34138,68.46934],[22.35031,68.46304],[22.34413,68.45825],[22.3455,68.45245],[22.34001,68.4464],[22.35992,68.44614],[22.40112,68.46606],[22.41073,68.46606],[22.42034,68.4638],[22.43476,68.4648],[22.43614,68.46127],[22.46704,68.44085],[22.48558,68.44362],[22.53295,68.43529],[22.55493,68.43378],[22.57621,68.42191],[22.61741,68.42772],[22.61947,68.43227],[22.62977,68.43555],[22.64144,68.43252],[22.64282,68.41813],[22.67372,68.41206],[22.69088,68.40676],[22.68676,68.40044],[22.72316,68.39538],[22.73002,68.38628],[22.76779,68.38552],[22.79937,68.39412],[22.81036,68.39007],[22.83371,68.38704],[22.84332,68.38173],[22.83439,68.36882],[22.84194,68.36275],[22.85224,68.35971],[22.90649,68.3435],[22.90718,68.33893],[22.91679,68.33437],[22.97241,68.33209],[22.97584,68.32448],[23.03421,68.30748],[23.05824,68.30698],[23.06785,68.29428],[23.06442,68.27955],[23.08021,68.26608],[23.1015,68.2587],[23.10974,68.25234],[23.12965,68.24903],[23.14201,68.24853],[23.14613,68.23936],[23.15368,68.233],[23.14132,68.21975],[23.14544,68.2116],[23.13995,68.20523],[23.15368,68.20064],[23.16124,68.19656],[23.14819,68.19069],[23.14132,68.17819],[23.13995,68.15546],[23.15162,68.13782],[23.1681,68.13399],[23.18389,68.13834],[23.19625,68.13859],[23.21136,68.14575],[23.25531,68.15061],[23.25737,68.15648],[23.27796,68.15725],[23.29101,68.15061],[23.30543,68.14933],[23.30612,68.14575],[23.31092,68.14396],[23.31779,68.13808],[23.32122,68.12887],[23.33015,68.12401],[23.32878,68.11634],[23.33496,68.102],[23.35006,68.09406],[23.36998,68.06997],[23.36998,68.06073],[23.38645,68.0574],[23.39332,68.04456],[23.44276,68.03712],[23.46611,68.03044],[23.46336,68.02479],[23.47091,68.01862],[23.53683,68.00499],[23.54782,67.98493],[23.57528,67.97231],[23.60481,67.97205],[23.65356,67.95969],[23.65013,67.95247],[23.66523,67.94242],[23.65493,67.93623],[23.64189,67.92772],[23.64395,67.91739],[23.62266,67.90887],[23.59451,67.90267],[23.58696,67.89441],[23.57254,67.89312],[23.54988,67.89932],[23.54164,67.89053],[23.50868,67.88097],[23.50662,67.87217],[23.49357,67.8626],[23.49151,67.84914],[23.47915,67.84319],[23.48396,67.82687],[23.47366,67.81754],[23.48121,67.80094],[23.49357,67.7929],[23.48602,67.77706],[23.4922,67.75575],[23.47572,67.74015],[23.48533,67.73027],[23.47984,67.72532],[23.47641,67.71725],[23.48396,67.71335],[23.47984,67.70215],[23.49357,67.69589],[23.49014,67.68964],[23.49838,67.6839],[23.49082,67.66617],[23.51074,67.64842],[23.54026,67.63196],[23.54232,67.6236],[23.55331,67.62307],[23.5588,67.61968],[23.53752,67.60424],[23.54507,67.59613],[23.54507,67.5854],[23.5382,67.57938],[23.52859,67.57624],[23.52722,67.57362],[23.50387,67.56419],[23.49082,67.56759],[23.46817,67.56628],[23.45718,67.55999],[23.48396,67.53954],[23.47435,67.53009],[23.44001,67.51854],[23.4304,67.50541],[23.40568,67.50147],[23.40568,67.49595],[23.39332,67.48544],[23.41186,67.46808],[23.48121,67.4515],[23.49288,67.44702],[23.51623,67.44781],[23.52928,67.45913],[23.54644,67.46124],[23.5794,67.45465],[23.66798,67.44333],[23.68103,67.44307],[23.70506,67.44676],[23.75312,67.43569],[23.76136,67.42858],[23.75106,67.41856],[23.75175,67.40854],[23.73596,67.39455],[23.71948,67.39218],[23.71742,67.38558],[23.73527,67.37924],[23.73115,67.37475],[23.7387,67.34991],[23.7593,67.34779],[23.77304,67.33589],[23.7545,67.32371],[23.73046,67.28795],[23.71536,67.28185],[23.68927,67.28424],[23.6206,67.27151],[23.60824,67.27336],[23.58284,67.26965],[23.56086,67.26116],[23.56842,67.25081],[23.55194,67.24788],[23.56086,67.23806],[23.54507,67.22557],[23.5691,67.22105],[23.5952,67.20908],[23.58696,67.19099],[23.56292,67.18353],[23.55125,67.17075],[23.63433,67.11394],[23.65699,67.10218],[23.6721,67.06475],[23.70849,67.04468],[23.74488,67.0152],[23.80119,66.99079],[23.79982,66.98488],[23.81355,66.97871],[23.82728,66.96152],[23.85749,66.95668],[23.86367,66.92171],[23.90487,66.89748],[23.91449,66.88858],[23.93302,66.88373],[23.99414,66.82084],[23.98796,66.80462],[23.97491,66.79678],[23.98109,66.78514],[23.96255,66.78135],[23.92616,66.79488],[23.90556,66.79353],[23.91586,66.77187],[23.89251,66.76944],[23.87741,66.75589],[23.90144,66.72335],[23.89114,66.67582],[23.86367,66.65515],[23.87397,66.64426],[23.86917,66.63337],[23.87947,66.61921],[23.87741,66.58185],[23.85955,66.5611],[23.7854,66.53459],[23.79776,66.52092],[23.79089,66.51681],[23.74282,66.50422],[23.72703,66.50723],[23.7284,66.49847],[23.7133,66.49382],[23.7181,66.47738],[23.69407,66.47491],[23.65631,66.45929],[23.63983,66.42938],[23.68858,66.38458],[23.65974,66.35733],[23.65013,66.30938],[23.66661,66.27984],[23.66592,66.26049],[23.69819,66.24335],[23.69339,66.22924],[23.72222,66.21595],[23.73458,66.20543],[23.72772,66.196],[23.78402,66.1863],[23.82659,66.17188],[23.91929,66.16078],[23.93028,66.15051],[23.91861,66.13552],[23.9392,66.12218],[23.93646,66.11245],[23.94538,66.10661],[23.93646,66.08491],[24.0525,65.99121],[24.0422,65.96297],[24.08958,65.93107],[24.11705,65.92855],[24.10949,65.91398],[24.15206,65.86405],[24.13559,65.86349],[24.12323,65.85563],[24.14657,65.83933],[24.15344,65.81515],[24.13421,65.79714],[24.12735,65.77743],[24.17129,65.72667],[24.16442,65.69617],[24.17678,65.6611],[24.15344,65.59281],[24.14846,65.57332],[24.14133,65.54837],[20.8759,63.38561],[19.10591,60.30732],[19.99787,57.57863],[14.22627,53.92886],[14.22611,53.92774],[14.20806,53.91606],[14.19502,53.91485],[14.1909,53.91606],[14.18541,53.91445],[14.18541,53.91161],[14.19364,53.91202],[14.20463,53.91081],[14.20463,53.90676],[14.21218,53.90029],[14.21356,53.88774],[14.21562,53.88046],[14.21218,53.86791],[14.2139,53.86548],[14.27261,53.73962],[14.27175,53.70453],[14.26712,53.69853],[14.27055,53.69548],[14.27261,53.6902],[14.27467,53.68898],[14.27604,53.68613],[14.28154,53.68491],[14.2836,53.68247],[14.28222,53.67556],[14.27124,53.66742],[14.27192,53.66295],[14.27879,53.66295],[14.28497,53.65888],[14.28428,53.64504],[14.2836,53.63527],[14.31037,53.61817],[14.31655,53.61817],[14.31175,53.58027],[14.31175,53.57171],[14.31381,53.566],[14.30282,53.55417],[14.30763,53.55091],[14.30625,53.54398],[14.31518,53.53745],[14.31861,53.53051],[14.31518,53.52479],[14.31999,53.51949],[14.32685,53.50397],[14.33372,53.5007],[14.34951,53.49662],[14.35432,53.48845],[14.35363,53.47864],[14.35638,53.47047],[14.35638,53.46189],[14.35844,53.45739],[14.37149,53.45657],[14.37011,53.43776],[14.36805,53.43326],[14.36874,53.42467],[14.37286,53.41894],[14.37286,53.40871],[14.38934,53.38783],[14.39552,53.37595],[14.39415,53.35997],[14.39003,53.35424],[14.40513,53.34727],[14.40788,53.3362],[14.41543,53.32431],[14.40582,53.30872],[14.41406,53.30174],[14.42161,53.27671],[14.44427,53.27383],[14.45114,53.26028],[14.44221,53.25617],[14.43534,53.24878],[14.43328,53.24097],[14.42161,53.23481],[14.40856,53.22453],[14.40719,53.2122],[14.40033,53.20767],[14.37767,53.20233],[14.37355,53.18752],[14.36599,53.1727],[14.3708,53.15706],[14.38659,53.14265],[14.37904,53.11257],[14.37149,53.10474],[14.37149,53.09361],[14.35432,53.06267],[14.3399,53.04905],[14.31175,53.03419],[14.29252,53.02097],[14.26849,53.01065],[14.2472,52.99825],[14.21768,52.98833],[14.16961,52.97345],[14.16275,52.96559],[14.14421,52.9627],[14.1394,52.95236],[14.14421,52.94325],[14.14215,52.93332],[14.15245,52.9031],[14.16137,52.8857],[14.15794,52.87493],[14.12567,52.84881],[14.12361,52.83637],[14.13734,52.826],[14.21356,52.81853],[14.22317,52.81313],[14.25132,52.79072],[14.28085,52.77327],[14.32479,52.76164],[14.35295,52.75],[14.36256,52.7392],[14.37286,52.7367],[14.41406,52.7001],[14.42367,52.69594],[14.43191,52.68345],[14.45594,52.67513],[14.46418,52.66139],[14.51637,52.64014],[14.56993,52.62264],[14.59945,52.60846],[14.60838,52.60012],[14.6125,52.58678],[14.63722,52.57593],[14.63928,52.568],[14.61593,52.55506],[14.61387,52.54546],[14.60357,52.53167],[14.61113,52.51747],[14.61387,52.50911],[14.63516,52.49783],[14.63035,52.48779],[14.61387,52.47776],[14.60907,52.46563],[14.57748,52.44136],[14.55757,52.43843],[14.54589,52.43006],[14.54589,52.41331],[14.53353,52.39697],[14.55139,52.37685],[14.55276,52.35169],[14.56237,52.34163],[14.561,52.33324],[14.56169,52.32778],[14.57473,52.32191],[14.57817,52.31351],[14.58503,52.30554],[14.57405,52.29546],[14.57542,52.28958],[14.58847,52.28412],[14.59327,52.27362],[14.61868,52.27151],[14.64477,52.26269],[14.66056,52.26227],[14.6743,52.25765],[14.69284,52.25597],[14.70451,52.24419],[14.71687,52.23579],[14.71344,52.23074],[14.71069,52.21728],[14.70382,52.20634],[14.68872,52.19919],[14.68597,52.19161],[14.70176,52.1794],[14.70451,52.17098],[14.70245,52.1655],[14.6791,52.14444],[14.68391,52.12421],[14.68048,52.1162],[14.69902,52.09807],[14.72442,52.093],[14.74159,52.08499],[14.74708,52.07866],[14.75669,52.06979],[14.75875,52.06473],[14.74571,52.05586],[14.74571,52.04657],[14.74914,52.04404],[14.74708,52.03728],[14.74777,52.03179],[14.73953,52.02968],[14.73953,52.02334],[14.72717,52.01362],[14.72511,52.00728],[14.71412,52.0039],[14.72168,51.99418],[14.71412,51.98192],[14.70726,51.97938],[14.70726,51.965],[14.71412,51.95696],[14.71893,51.95569],[14.72099,51.95188],[14.71893,51.94595],[14.7203,51.94172],[14.71275,51.93579],[14.70726,51.93579],[14.70314,51.93071],[14.70657,51.92352],[14.69902,51.91208],[14.69146,51.90827],[14.69421,51.90276],[14.68048,51.89598],[14.65644,51.88496],[14.65095,51.87352],[14.62486,51.85825],[14.6125,51.85698],[14.60632,51.85189],[14.6125,51.84595],[14.60426,51.84765],[14.60632,51.84002],[14.59671,51.84129],[14.59121,51.83959],[14.58915,51.82559],[14.59121,51.82092],[14.59945,51.8154],[14.60632,51.80352],[14.62486,51.80054],[14.63104,51.80224],[14.63722,51.79672],[14.64614,51.7963],[14.65301,51.78483],[14.65438,51.76826],[14.65095,51.76189],[14.66468,51.75721],[14.65713,51.75296],[14.65988,51.74828],[14.65507,51.74106],[14.6688,51.72617],[14.67704,51.72234],[14.68872,51.70873],[14.72854,51.68788],[14.73472,51.68915],[14.73953,51.6832],[14.73747,51.67851],[14.74639,51.67638],[14.75738,51.66276],[14.7512,51.65168],[14.75669,51.64572],[14.75395,51.62739],[14.76425,51.61844],[14.76562,51.60991],[14.75051,51.59498],[14.72991,51.58432],[14.72854,51.57578],[14.71138,51.56298],[14.71824,51.5553],[14.72511,51.55487],[14.73197,51.54548],[14.72648,51.53907],[14.73541,51.52626],[14.75189,51.52241],[14.75944,51.52369],[14.76356,51.51942],[14.79515,51.51857],[14.81163,51.50617],[14.81918,51.50703],[14.83154,51.50446],[14.85282,51.48865],[14.86312,51.49036],[14.8693,51.48437],[14.88647,51.48779],[14.89746,51.48223],[14.9057,51.48437],[14.92218,51.48266],[14.92561,51.47454],[14.94689,51.47197],[14.95582,51.45956],[14.97299,51.44202],[14.97024,51.4326],[14.96337,51.43474],[14.95719,51.43046],[14.96337,51.42661],[14.96543,51.41462],[14.95857,51.41077],[14.96887,51.39792],[14.95925,51.39535],[14.96955,51.37992],[14.9826,51.37392],[14.97779,51.36449],[14.96543,51.36234],[14.97436,51.35934],[14.97779,51.34176],[14.98672,51.33061],[14.99496,51.32889],[14.9929,51.32374],[15.00938,51.31731],[15.00663,51.31087],[15.0135,51.30185],[15.03273,51.2937],[15.03479,51.27781],[15.04165,51.27351],[15.03685,51.26964],[15.03616,51.2589],[15.02243,51.25031],[15.02586,51.24902],[15.02861,51.25117],[15.03753,51.24472],[15.01762,51.22709],[15.00801,51.20086],[15.0135,51.1987],[15.00526,51.19096],[15.00938,51.18106],[15.0032,51.16728],[14.99359,51.16169],[15.00045,51.15006],[14.99427,51.14317],[14.99565,51.12248],[14.98741,51.11688],[14.98054,51.11731],[14.97917,51.10783],[14.98397,51.09101],[14.97642,51.08627],[14.97779,51.07721],[14.96887,51.0716],[14.97024,51.0647],[14.96475,51.05693],[14.96543,51.05089],[14.94827,51.04139],[14.95101,51.0388],[14.93728,51.01893],[14.94072,51.01461],[14.92698,50.9969],[14.9208,50.9982],[14.91737,50.99085],[14.91874,50.97615],[14.90295,50.97183],[14.89471,50.95064],[14.89746,50.94155],[14.89128,50.93636],[14.87892,50.9329],[14.86724,50.91775],[14.85145,50.91039],[14.84527,50.90043],[14.81987,50.88614],[14.81849,50.87704],[14.82399,50.87054],[14.82124,50.86057],[14.81094,50.85104],[14.80133,50.82979],[14.80064,50.82372],[14.79309,50.82068],[14.79103,50.82589],[14.77867,50.82068],[14.76493,50.82112],[14.74571,50.82936],[14.72648,50.82242],[14.71687,50.82502],[14.71962,50.83196],[14.70726,50.84193],[14.68872,50.83803],[14.66056,50.85017],[14.64803,50.84868],[14.64271,50.85212],[14.61902,50.85841],[14.62005,50.85992],[14.61868,50.86469],[14.62417,50.86794],[14.63584,50.8974],[14.65301,50.90519],[14.64958,50.93117],[14.62829,50.92554],[14.61799,50.92641],[14.60151,50.92078],[14.58366,50.91472],[14.56375,50.91818],[14.561,50.92511],[14.57061,50.93722],[14.5816,50.94328],[14.59602,50.96361],[14.59259,50.9675],[14.59602,50.9701],[14.60014,50.97875],[14.59739,50.98739],[14.5816,50.99387],[14.56512,51.01029],[14.53559,51.00381],[14.53353,51.00943],[14.5404,51.01116],[14.52804,51.01764],[14.50058,51.02282],[14.50813,51.04312],[14.4992,51.047],[14.49165,51.04355],[14.49371,51.03707],[14.49165,51.02368],[14.4738,51.02628],[14.47448,51.0293],[14.46487,51.03491],[14.45251,51.03578],[14.42024,51.01937],[14.40856,51.01893],[14.38453,51.02714],[14.38247,51.03837],[14.37355,51.0388],[14.36256,51.04571],[14.34471,51.03966],[14.33784,51.03923],[14.31587,51.05563],[14.30145,51.0552],[14.28772,51.0388],[14.27398,51.03966],[14.28428,51.03232],[14.28634,51.02628],[14.27948,51.01893],[14.28154,51.01677],[14.26025,51.00943],[14.26712,51.00079],[14.25888,50.98826],[14.28428,50.97788],[14.30351,50.98134],[14.31037,50.9848],[14.31999,50.98523],[14.32823,50.98264],[14.32754,50.97356],[14.31518,50.97269],[14.30282,50.96577],[14.31655,50.96102],[14.31175,50.95496],[14.32823,50.94891],[14.34539,50.94891],[14.37423,50.93852],[14.38591,50.94112],[14.40101,50.93376],[14.4017,50.92424],[14.38591,50.91602],[14.38728,50.89956],[14.37355,50.89653],[14.3502,50.9],[14.34951,50.89263],[14.30351,50.88354],[14.2884,50.887],[14.28222,50.89263],[14.26712,50.89523],[14.24995,50.88744],[14.23278,50.88917],[14.2369,50.87747],[14.22317,50.85971],[14.21699,50.86057],[14.20257,50.85104],[14.16137,50.84713],[14.13322,50.83456],[14.08927,50.82632],[14.07966,50.81895],[14.07897,50.81244],[14.0625,50.81027],[14.057,50.81244],[14.04052,50.8107],[14.03228,50.80506],[14.01649,50.8107],[14.00413,50.81114],[14.00344,50.81374],[13.9904,50.81938],[13.9746,50.81331],[13.95401,50.80767],[13.95469,50.80072],[13.9389,50.78944],[13.91693,50.789],[13.90388,50.79421],[13.89633,50.79161],[13.8977,50.78814],[13.90113,50.7851],[13.8874,50.77033],[13.88946,50.76252],[13.90113,50.75296],[13.89701,50.74471],[13.88328,50.73775],[13.86337,50.74297],[13.85719,50.72906],[13.82629,50.72385],[13.80706,50.73254],[13.75831,50.73471],[13.74183,50.72645],[13.7281,50.73384],[13.71025,50.72472],[13.71299,50.71993],[13.7075,50.71689],[13.6869,50.72037],[13.6663,50.73167],[13.64296,50.72906],[13.62442,50.72211],[13.6251,50.71646],[13.60244,50.71124],[13.55575,50.71472],[13.52623,50.70428],[13.53858,50.69123],[13.54476,50.67775],[13.53858,50.67383],[13.53996,50.66817],[13.52966,50.66861],[13.51249,50.65381],[13.51936,50.64859],[13.52417,50.64902],[13.52554,50.63901],[13.4967,50.63073],[13.49464,50.62333],[13.46443,50.6011],[13.43971,50.61113],[13.41224,50.61984],[13.404,50.63552],[13.39096,50.64597],[13.38203,50.64641],[13.37104,50.65076],[13.37654,50.62855],[13.36692,50.61897],[13.31955,50.60241],[13.32366,50.5828],[13.29002,50.57495],[13.27903,50.59326],[13.25912,50.59282],[13.255,50.59544],[13.23371,50.57887],[13.23646,50.57015],[13.22341,50.5623],[13.22891,50.55052],[13.22067,50.54616],[13.20694,50.52172],[13.19458,50.51473],[13.19664,50.50338],[13.17878,50.5025],[13.15406,50.50775],[13.13896,50.50556],[13.13346,50.51866],[13.10394,50.50338],[13.07785,50.50032],[13.05725,50.50119],[13.04283,50.51124],[13.02978,50.50906],[13.03115,50.50032],[13.02223,50.48678],[13.01879,50.46318],[13.02154,50.454],[13.01605,50.44351],[12.99614,50.43389],[12.98652,50.42208],[12.96318,50.41464],[12.94258,50.4107],[12.94326,50.40676],[12.94738,50.40676],[12.94807,50.40282],[12.93434,50.40764],[12.9364,50.41114],[12.91305,50.42339],[12.90206,50.42339],[12.89314,50.43039],[12.81967,50.46056],[12.81692,50.45007],[12.80593,50.44395],[12.81074,50.43214],[12.79563,50.44876],[12.73521,50.43345],[12.7304,50.42251],[12.70774,50.40808],[12.70637,50.39757],[12.69538,50.40151],[12.67272,50.4177],[12.65625,50.41158],[12.6432,50.40983],[12.62466,50.41726],[12.59925,50.40589],[12.5917,50.40851],[12.55325,50.39888],[12.51274,50.39626],[12.49694,50.37918],[12.48733,50.37481],[12.48664,50.36254],[12.49214,50.35553],[12.48321,50.34677],[12.46879,50.35553],[12.4427,50.34283],[12.43583,50.33231],[12.43858,50.3288],[12.43103,50.32266],[12.39944,50.32354],[12.39875,50.31083],[12.4015,50.29767],[12.39532,50.28977],[12.36991,50.28495],[12.3603,50.27486],[12.36099,50.26959],[12.35275,50.26388],[12.35,50.25247],[12.35824,50.24369],[12.35137,50.23798],[12.33215,50.24325],[12.33009,50.22656],[12.3349,50.22173],[12.3349,50.21821],[12.32666,50.21953],[12.32734,50.20942],[12.32254,50.20679],[12.33764,50.19228],[12.32666,50.18085],[12.33833,50.1725],[12.29232,50.17645],[12.29026,50.18481],[12.27378,50.19668],[12.28889,50.20327],[12.28958,50.20986],[12.28271,50.20898],[12.29164,50.22173],[12.27378,50.23315],[12.26692,50.23227],[12.23739,50.24764],[12.25044,50.25554],[12.26486,50.25115],[12.26623,50.25949],[12.25387,50.27047],[12.20169,50.2731],[12.20237,50.28977],[12.19619,50.29328],[12.19963,50.30732],[12.18658,50.3117],[12.18383,50.32223],[12.15156,50.32179],[12.12684,50.31653],[12.11517,50.31653],[12.11448,50.3196],[12.10624,50.32266],[12.10075,50.31872],[12.10487,50.31477],[12.12616,50.30863],[12.11929,50.29899],[12.12272,50.29109],[12.13989,50.27749],[12.11929,50.26783],[12.09938,50.26257],[12.10281,50.25598],[12.09182,50.25291],[12.09938,50.24676],[12.10487,50.24676],[12.10968,50.2371],[12.12753,50.23183],[12.14126,50.23139],[12.1495,50.23754],[12.15156,50.23578],[12.14607,50.22963],[12.15774,50.22612],[12.16323,50.21865],[12.15843,50.21514],[12.15911,50.2125],[12.17285,50.2125],[12.1804,50.20591],[12.18452,50.20415],[12.18383,50.20019],[12.19482,50.20019],[12.19757,50.19932],[12.18864,50.19624],[12.20031,50.1892],[12.20787,50.16942],[12.21542,50.16942],[12.21199,50.1593],[12.20031,50.15138],[12.201,50.14698],[12.19482,50.14302],[12.19688,50.12233],[12.20375,50.11485],[12.19963,50.10957],[12.20993,50.1012],[12.22778,50.10252],[12.22847,50.09723],[12.24563,50.09635],[12.26417,50.08093],[12.27378,50.07785],[12.26074,50.06595],[12.26074,50.05846],[12.27035,50.06154],[12.28202,50.05669],[12.30125,50.0589],[12.32048,50.05228],[12.31704,50.04655],[12.3246,50.03685],[12.32528,50.03244],[12.33078,50.03332],[12.33696,50.0395],[12.34726,50.03553],[12.36785,50.01744],[12.37815,50.01921],[12.3809,50.01259],[12.40081,50.01479],[12.39807,50.00862],[12.42485,50.00023],[12.4324,50.00288],[12.43446,49.99405],[12.42485,49.99096],[12.43171,49.98478],[12.46055,49.99538],[12.47016,49.99096],[12.47772,49.98081],[12.48939,49.98081],[12.49969,49.97153],[12.49351,49.96977],[12.49076,49.95828],[12.48115,49.95873],[12.46948,49.94724],[12.4784,49.93619],[12.49351,49.93752],[12.49282,49.93398],[12.51274,49.92691],[12.5457,49.92293],[12.55188,49.90746],[12.54089,49.89198],[12.51892,49.8787],[12.51823,49.8672],[12.51136,49.85879],[12.499,49.85657],[12.499,49.83798],[12.48458,49.84241],[12.47291,49.83399],[12.47634,49.82602],[12.47428,49.81583],[12.46536,49.81051],[12.47085,49.79943],[12.46604,49.795],[12.47497,49.79101],[12.46948,49.78614],[12.40562,49.76308],[12.40081,49.75421],[12.40493,49.74711],[12.40631,49.73956],[12.41386,49.73246],[12.42622,49.73069],[12.43377,49.71471],[12.4427,49.70361],[12.4839,49.69428],[12.4839,49.68851],[12.50038,49.68495],[12.5196,49.68806],[12.52235,49.67829],[12.52922,49.66718],[12.52304,49.66096],[12.52441,49.65207],[12.51686,49.6454],[12.51823,49.64362],[12.52853,49.64051],[12.52304,49.63384],[12.52372,49.62805],[12.53471,49.62583],[12.52716,49.62227],[12.52784,49.61827],[12.53471,49.61827],[12.5457,49.62183],[12.55943,49.6196],[12.55806,49.61249],[12.56355,49.59736],[12.57797,49.58712],[12.5711,49.56886],[12.57453,49.55907],[12.59445,49.54258],[12.58758,49.53857],[12.60612,49.53055],[12.62878,49.52699],[12.63221,49.53189],[12.63771,49.53144],[12.64457,49.52298],[12.64045,49.50113],[12.64389,49.49266],[12.64457,49.48418],[12.63771,49.48284],[12.63427,49.4766],[12.64114,49.47035],[12.64938,49.46812],[12.65762,49.45027],[12.65762,49.43464],[12.6789,49.4266],[12.70912,49.42437],[12.7153,49.4141],[12.73384,49.40918],[12.75787,49.39488],[12.76199,49.38282],[12.75718,49.37522],[12.76817,49.36538],[12.7771,49.36448],[12.78259,49.35912],[12.77778,49.35465],[12.77916,49.34659],[12.80593,49.34123],[12.83615,49.33988],[12.84233,49.34302],[12.8437,49.3457],[12.85469,49.33809],[12.85881,49.33944],[12.87803,49.33272],[12.88765,49.33362],[12.87872,49.35017],[12.89657,49.34883],[12.90138,49.34928],[12.91786,49.34391],[12.93022,49.3448],[12.93983,49.34257],[12.94258,49.34391],[12.95013,49.34346],[12.95837,49.33675],[12.97279,49.33451],[12.98858,49.32333],[13.00369,49.31214],[13.00712,49.30632],[13.02841,49.30497],[13.03115,49.28841],[13.02497,49.27945],[13.0339,49.26511],[13.05587,49.26466],[13.05931,49.25122],[13.07167,49.24674],[13.07991,49.24719],[13.08746,49.23912],[13.08677,49.23015],[13.11355,49.21894],[13.11012,49.20414],[13.12866,49.19696],[13.1623,49.17541],[13.17054,49.17407],[13.17741,49.16419],[13.17054,49.14443],[13.18359,49.1341],[13.20419,49.12377],[13.23577,49.11388],[13.28109,49.12107],[13.31337,49.10489],[13.34495,49.08825],[13.34632,49.08196],[13.37242,49.06441],[13.37722,49.05722],[13.39714,49.05137],[13.39714,49.04552],[13.39096,49.04326],[13.40057,49.03561],[13.40538,49.02391],[13.40126,49.0176],[13.40881,49.00815],[13.40263,48.99508],[13.40194,48.98652],[13.48091,48.95136],[13.49464,48.94144],[13.50769,48.94279],[13.50631,48.96849],[13.51524,48.96894],[13.52897,48.97435],[13.54957,48.96759],[13.56262,48.97075],[13.57086,48.96624],[13.57704,48.9703],[13.58116,48.97075],[13.59214,48.96128],[13.58871,48.95632],[13.60656,48.94099],[13.62579,48.94956],[13.6306,48.94685],[13.62236,48.93873],[13.63678,48.92565],[13.65531,48.89406],[13.66561,48.89361],[13.66767,48.89181],[13.67179,48.88007],[13.69171,48.87916],[13.70201,48.88187],[13.71849,48.87871],[13.72741,48.88278],[13.73016,48.88684],[13.73771,48.88458],[13.7384,48.87871],[13.75007,48.86607],[13.74939,48.85839],[13.75556,48.85342],[13.76861,48.83127],[13.79196,48.83082],[13.78852,48.82585],[13.79814,48.81681],[13.79539,48.81409],[13.81599,48.79646],[13.80569,48.78108],[13.81256,48.77429],[13.82629,48.77157],[13.83865,48.77157],[13.83934,48.76569],[13.82148,48.75483],[13.81942,48.73128],[13.8105,48.72856],[13.79539,48.71588],[13.80294,48.70863],[13.80981,48.70863],[13.8153,48.70093],[13.8359,48.70093],[13.83384,48.69368],[13.81324,48.69413],[13.81874,48.6701],[13.81462,48.64878],[13.82217,48.64243],[13.81942,48.63926],[13.82629,48.63563],[13.82492,48.62428],[13.8208,48.61475],[13.81668,48.61611],[13.8002,48.59659],[13.80706,48.58523],[13.80088,48.57433],[13.79196,48.57206],[13.76861,48.55343],[13.759,48.56661],[13.74733,48.55388],[13.75419,48.55206],[13.74321,48.54525],[13.74939,48.53934],[13.74801,48.53115],[13.73291,48.52524],[13.72741,48.51342],[13.70407,48.51842],[13.66424,48.53661],[13.65188,48.55025],[13.62373,48.55434],[13.59901,48.56888],[13.59008,48.56842],[13.58047,48.56161],[13.56742,48.56115],[13.52279,48.58887],[13.50769,48.59023],[13.50082,48.58069],[13.50631,48.57751],[13.50288,48.57251],[13.4864,48.56161],[13.48022,48.56388],[13.47473,48.56252],[13.47473,48.55706],[13.46717,48.55343],[13.45001,48.56343],[13.43627,48.55616],[13.44863,48.53934],[13.44932,48.53388],[13.44451,48.52979],[13.45687,48.51114],[13.42804,48.45698],[13.43902,48.43557],[13.42254,48.40504],[13.41499,48.37814],[13.36486,48.35214],[13.32504,48.3211],[13.25706,48.29233],[13.17947,48.29461],[13.1266,48.27862],[13.08677,48.27862],[13.05931,48.26628],[13.01742,48.25668],[12.99819,48.23656],[12.95219,48.20774],[12.87048,48.20225],[12.85949,48.18531],[12.85057,48.17753],[12.84713,48.16791],[12.83546,48.16562],[12.83134,48.15509],[12.81074,48.15188],[12.79701,48.14593],[12.79838,48.13951],[12.78671,48.12301],[12.77092,48.12851],[12.75856,48.12714],[12.75924,48.1198],[12.74963,48.11155],[12.75375,48.08358],[12.76886,48.06798],[12.84164,48.02299],[12.85743,48.00784],[12.87117,47.96785],[12.88765,47.95866],[12.91854,47.95544],[12.9206,47.9421],[12.92816,47.93842],[12.93571,47.9444],[12.94052,47.93428],[12.95219,47.91542],[12.96455,47.90437],[12.9824,47.87582],[13.00231,47.85509],[13.003,47.84496],[12.98721,47.83113],[12.96386,47.79793],[12.94738,47.78732],[12.93846,47.78548],[12.93914,47.77994],[12.92953,47.76886],[12.94189,47.76933],[12.94326,47.76471],[12.93571,47.75871],[12.93571,47.74855],[12.92129,47.7444],[12.90344,47.72546],[12.92472,47.70976],[12.94395,47.71161],[12.95562,47.70837],[12.98927,47.70837],[12.99545,47.71299],[13.00163,47.71345],[13.00987,47.72269],[13.01742,47.72269],[13.03047,47.71669],[13.04695,47.71207],[13.07029,47.6922],[13.08128,47.68573],[13.07647,47.67278],[13.08197,47.66215],[13.09776,47.63902],[13.09433,47.62745],[13.07235,47.61171],[13.06961,47.6057],[13.06274,47.60245],[13.07167,47.58856],[13.04489,47.58347],[13.04145,47.57559],[13.0545,47.5617],[13.03184,47.5325],[13.04557,47.52137],[13.04557,47.49168],[13.02703,47.48704],[13.003,47.46337],[12.99339,47.47219],[12.99408,47.47823],[12.97416,47.48426],[12.97073,47.47544],[12.90893,47.49679],[12.88421,47.51302],[12.8849,47.52044],[12.8643,47.52415],[12.86636,47.52925],[12.85675,47.52832],[12.84713,47.54687],[12.81967,47.54548],[12.80319,47.54965],[12.79289,47.55845],[12.7922,47.56587],[12.78121,47.57189],[12.78053,47.58208],[12.79495,47.59319],[12.79289,47.59875],[12.8128,47.61171],[12.82516,47.61079],[12.78945,47.633],[12.78396,47.63254],[12.75924,47.65197],[12.77778,47.66215],[12.78396,47.67093],[12.77984,47.67463],[12.7716,47.66585],[12.76405,47.66677],[12.75787,47.66307],[12.74551,47.67556],[12.73246,47.67879],[12.7153,47.67602],[12.69676,47.68249],[12.66723,47.68203],[12.65007,47.67186],[12.64595,47.67463],[12.63702,47.67139],[12.63153,47.67602],[12.61848,47.67371],[12.60681,47.67463],[12.59033,47.65891],[12.57659,47.63347],[12.53677,47.6367],[12.51205,47.62514],[12.49969,47.62514],[12.49145,47.63624],[12.46467,47.64827],[12.45094,47.66862],[12.43995,47.67602],[12.44133,47.69497],[12.43034,47.69543],[12.39944,47.69173],[12.36442,47.68388],[12.35481,47.69127],[12.33902,47.69173],[12.33764,47.69589],[12.28065,47.68942],[12.2628,47.67972],[12.2422,47.69358],[12.247,47.71068],[12.26554,47.73285],[12.25593,47.74394],[12.22709,47.719],[12.18589,47.70329],[12.16117,47.70052],[12.16873,47.67925],[12.1804,47.66954],[12.18521,47.66122],[12.19894,47.63994],[12.20306,47.62236],[12.20855,47.61357],[12.201,47.60616],[12.17834,47.6006],[12.1804,47.61403],[12.16323,47.61449],[12.13851,47.60662],[12.12684,47.60662],[12.11586,47.61171],[12.08084,47.61032],[12.0623,47.61866],[12.04994,47.61495],[12.0362,47.61727],[12.02934,47.61218],[12.02041,47.61032],[12.01149,47.62514],[11.98196,47.61866],[11.97647,47.61449],[11.96823,47.61819],[11.93321,47.61264],[11.91398,47.61449],[11.90162,47.60847],[11.86386,47.60107],[11.85493,47.60384],[11.84532,47.58162],[11.78215,47.59088],[11.70318,47.58949],[11.6764,47.58393],[11.65718,47.5844],[11.63658,47.59597],[11.63246,47.58115],[11.62147,47.58532],[11.61323,47.58069],[11.60705,47.58208],[11.60156,47.56865],[11.58645,47.55706],[11.59057,47.55057],[11.58577,47.54594],[11.58783,47.52508],[11.57547,47.51951],[11.57203,47.51441],[11.53701,47.50978],[11.51916,47.51024],[11.50405,47.50514],[11.48002,47.50931],[11.44981,47.50746],[11.44157,47.5172],[11.41822,47.50282],[11.40724,47.49122],[11.38389,47.47498],[11.39144,47.46709],[11.40861,47.46662],[11.42166,47.44527],[11.37565,47.44991],[11.36947,47.4448],[11.3578,47.44991],[11.33789,47.4513],[11.33239,47.44062],[11.32278,47.43644],[11.31523,47.4318],[11.29257,47.42855],[11.29394,47.41647],[11.28433,47.40299],[11.22528,47.39602],[11.25274,47.42901],[11.25068,47.43319],[11.22116,47.43041],[11.20605,47.43366],[11.1985,47.42901],[11.17652,47.4253],[11.15455,47.42111],[11.12846,47.41136],[11.12297,47.40392],[11.12365,47.39927],[11.11198,47.39463],[11.05361,47.39602],[11.04744,47.3937],[11.03645,47.39649],[11.02958,47.3937],[11.02409,47.39695],[11.00692,47.39463],[10.97122,47.40113],[10.9719,47.4174],[10.98126,47.4185],[10.98452,47.42065],[10.98349,47.43012],[10.95336,47.45455],[10.92796,47.47173],[10.93826,47.48101],[10.91011,47.48565],[10.88401,47.48008],[10.86822,47.4838],[10.87028,47.49864],[10.89157,47.50699],[10.91697,47.51302],[10.91697,47.51951],[10.9053,47.51812],[10.88951,47.5376],[10.85449,47.53528],[10.83801,47.52554],[10.83389,47.52925],[10.81123,47.52554],[10.81466,47.51998],[10.79406,47.52044],[10.77896,47.5158],[10.7611,47.52137],[10.76042,47.53528],[10.72265,47.53852],[10.71098,47.54455],[10.6945,47.54548],[10.69107,47.55799],[10.62995,47.55938],[10.61897,47.56587],[10.59768,47.57004],[10.58052,47.55567],[10.58189,47.55011],[10.57159,47.53342],[10.55923,47.5376],[10.52352,47.53621],[10.48988,47.54084],[10.47271,47.55057],[10.45623,47.55567],[10.47203,47.56957],[10.47065,47.5793],[10.48301,47.58393],[10.47203,47.58856],[10.45623,47.58301],[10.43426,47.5844],[10.42877,47.57652],[10.43357,47.56772],[10.44319,47.56818],[10.45143,47.55475],[10.43907,47.52462],[10.44181,47.51395],[10.43083,47.50328],[10.44456,47.48472],[10.46447,47.48333],[10.46653,47.4527],[10.47546,47.43319],[10.46035,47.42808],[10.45829,47.42019],[10.43838,47.41322],[10.42808,47.39556],[10.43701,47.38114],[10.42053,47.38579],[10.41297,47.37975],[10.39375,47.3751],[10.3862,47.35743],[10.35804,47.33696],[10.34568,47.31601],[10.32508,47.30531],[10.31684,47.3067],[10.27908,47.28807],[10.24543,47.28016],[10.23307,47.26991],[10.2214,47.2769],[10.2008,47.27736],[10.17471,47.27177],[10.17952,47.29785],[10.19599,47.29692],[10.21522,47.31229],[10.19943,47.32672],[10.20698,47.33416],[10.20423,47.33789],[10.21797,47.34998],[10.21797,47.35464],[10.23582,47.37371],[10.23239,47.38021],[10.23513,47.38161],[10.22827,47.38951],[10.21385,47.38254],[10.19393,47.38905],[10.18226,47.3923],[10.1802,47.38719],[10.16921,47.38626],[10.16853,47.37045],[10.14106,47.36812],[10.11772,47.3751],[10.10055,47.3551],[10.0827,47.39323],[10.08544,47.39881],[10.06965,47.40857],[10.07309,47.41461],[10.09574,47.41786],[10.10467,47.42855],[10.09437,47.44016],[10.09231,47.45966],[10.07446,47.45595],[10.0518,47.46895],[10.05455,47.47591],[10.04219,47.48936],[10.00236,47.4824],[9.98863,47.49864],[9.99481,47.50328],[9.9646,47.52137],[9.97146,47.54594],[9.95842,47.54177],[9.96185,47.53574],[9.94056,47.53713],[9.91859,47.53111],[9.90692,47.54038],[9.8822,47.54918],[9.8767,47.5427],[9.87327,47.52925],[9.85679,47.53482],[9.84855,47.54177],[9.81697,47.54965],[9.82589,47.56077],[9.82109,47.57189],[9.82795,47.5793],[9.82315,47.58764],[9.80323,47.59644],[9.77645,47.59505],[9.74968,47.56911],[9.73388,47.5464],[9.73663,47.53389],[9.72839,47.53482],[9.55947,47.53064],[9.56085,47.49864],[9.56428,47.494],[9.58145,47.48426],[9.59449,47.46245],[9.60136,47.46152],[9.60685,47.47173],[9.62127,47.45827],[9.65835,47.4527],[9.65972,47.44805],[9.64462,47.43877],[9.6508,47.4239],[9.6508,47.40485],[9.65972,47.39788],[9.67346,47.39277],[9.67414,47.38161],[9.66384,47.37045],[9.62539,47.36487],[9.60205,47.34952],[9.58969,47.31974],[9.58213,47.31043],[9.55467,47.29692],[9.54986,47.28249],[9.53201,47.27037],[9.56565,47.24241],[9.55329,47.22656],[9.58282,47.20604],[9.57389,47.18924],[9.57321,47.17617],[9.56428,47.17057],[9.58007,47.17011],[9.59793,47.1617],[9.61166,47.1477],[9.6199,47.15143],[9.62471,47.14676],[9.62539,47.13228],[9.63707,47.12901],[9.62196,47.10985],[9.63569,47.10051],[9.63363,47.08415],[9.61441,47.07807],[9.61303,47.06871],[9.60617,47.06123],[9.62402,47.05187],[9.64187,47.05421],[9.64325,47.05936],[9.6556,47.05796],[9.68032,47.06263],[9.692,47.05375],[9.70672,47.05341],[9.70575,47.0499],[9.71809,47.04439],[9.74349,47.04252],[9.74693,47.03737],[9.78469,47.03784],[9.83207,47.01443],[9.85405,47.01678],[9.86022,47.02192],[9.87808,47.01818],[9.87327,47.01116],[9.88632,47.00039],[9.8925,46.98962],[9.8719,46.96525],[9.87808,46.95588],[9.8767,46.93479],[9.93782,46.91275],[9.95704,46.91556],[9.9646,46.91181],[9.97558,46.9165],[9.98451,46.90524],[10.00236,46.90008],[10.01815,46.90149],[10.05249,46.87568],[10.0518,46.863],[10.08956,46.85925],[10.10673,46.83999],[10.1239,46.84798],[10.14175,46.84704],[10.14656,46.85173],[10.15823,46.84798],[10.18158,46.85549],[10.19531,46.86629],[10.23239,46.86723],[10.22895,46.89867],[10.24084,46.93145],[10.29899,46.92119],[10.31547,46.92494],[10.31547,46.93151],[10.30654,46.94135],[10.30723,46.94932],[10.32646,46.95307],[10.3292,46.96619],[10.35324,46.99243],[10.37177,46.99149],[10.3862,47.00039],[10.42671,46.97463],[10.4219,46.96104],[10.4528,46.95166],[10.48713,46.9376],[10.48576,46.91415],[10.46585,46.88413],[10.47134,46.85549],[10.46585,46.83577],[10.45623,46.83013],[10.45555,46.8165],[10.45005,46.80288],[10.42945,46.79629],[10.42327,46.78783],[10.43975,46.7742],[10.43975,46.75115],[10.40062,46.73468],[10.41778,46.71868],[10.41503,46.70879],[10.40062,46.70173],[10.39306,46.68854],[10.38208,46.68618],[10.39169,46.66922],[10.4013,46.63765],[10.44662,46.64142],[10.48919,46.61596],[10.4837,46.59378],[10.47477,46.56688],[10.47821,46.5565],[10.46928,46.54375],[10.46104,46.54327],[10.45349,46.53288],[10.41915,46.5513],[10.39718,46.54375],[10.36628,46.55508],[10.35186,46.55508],[10.3395,46.54327],[10.32577,46.55177],[10.31272,46.54563],[10.29693,46.55036],[10.29624,46.55791],[10.28642,46.57051],[10.26912,46.57774],[10.2523,46.57113],[10.24269,46.59142],[10.25917,46.61077],[10.24269,46.62492],[10.23857,46.63576],[10.22415,46.62916],[10.21522,46.61784],[10.19325,46.62397],[10.15205,46.61596],[10.13076,46.60605],[10.10261,46.60935],[10.10124,46.59001],[10.09712,46.57821],[10.07858,46.57396],[10.08476,46.56735],[10.07103,46.55933],[10.06073,46.54658],[10.04631,46.5428],[10.04287,46.53666],[10.05111,46.53005],[10.05111,46.51257],[10.04356,46.50879],[10.04562,46.4861],[10.04356,46.47995],[10.05455,46.46245],[10.04013,46.44542],[10.05729,46.4388],[10.06347,46.42649],[10.07926,46.42744],[10.07995,46.42176],[10.10192,46.42034],[10.12802,46.43217],[10.14106,46.42791],[10.14793,46.41513],[10.16029,46.41703],[10.16441,46.40898],[10.16166,46.39004],[10.14175,46.3872],[10.12802,46.37772],[10.13008,46.36067],[10.1081,46.35308],[10.10467,46.3346],[10.11497,46.31421],[10.16098,46.28195],[10.16372,46.27151],[10.17334,46.26534],[10.17471,46.25679],[10.15136,46.2397],[10.14587,46.2302],[10.12321,46.22355],[10.10192,46.22735],[10.08132,46.22497],[10.07103,46.21737],[10.04416,46.23061],[10.05935,46.24872],[10.05455,46.26534],[10.03189,46.27578],[9.99755,46.2848],[9.99206,46.29808],[10.00167,46.30188],[9.99687,46.30709],[10.00041,46.31299],[9.99446,46.31468],[9.98039,46.32322],[9.98554,46.33436],[9.99652,46.34289],[9.99618,46.35214],[9.98451,46.35237],[9.96391,46.36446],[9.95636,46.3737],[9.9585,46.37821],[9.95361,46.37962],[9.93232,46.37488],[9.92477,46.36635],[9.90711,46.38094],[9.88288,46.37441],[9.86846,46.36398],[9.82864,46.36067],[9.81765,46.35119],[9.77783,46.33555],[9.76478,46.33555],[9.74418,46.35214],[9.72289,46.34171],[9.72633,46.3327],[9.7174,46.32464],[9.72495,46.3199],[9.72495,46.31041],[9.7174,46.30377],[9.71534,46.29334],[9.69612,46.29191],[9.67758,46.30235],[9.6405,46.28717],[9.61715,46.28812],[9.61166,46.29429],[9.58419,46.29476],[9.56016,46.30567],[9.55192,46.30282],[9.5327,46.31231],[9.51553,46.33223],[9.50729,46.35214],[9.4963,46.36493],[9.46137,46.37535],[9.46746,46.39004],[9.4606,46.41371],[9.45304,46.41797],[9.4606,46.44306],[9.45785,46.46482],[9.4654,46.46766],[9.46334,46.4809],[9.44961,46.48042],[9.44961,46.48373],[9.45991,46.48515],[9.46266,46.50784],[9.43519,46.49697],[9.42283,46.48799],[9.42489,46.47522],[9.41245,46.46706],[9.39056,46.47333],[9.38507,46.48231],[9.36996,46.49224],[9.37271,46.50311],[9.36309,46.50926],[9.35417,46.50453],[9.33975,46.50406],[9.31022,46.50359],[9.28138,46.49614],[9.27589,46.48279],[9.2752,46.45914],[9.26765,46.45157],[9.24842,46.44779],[9.24842,46.43217],[9.26422,46.42081],[9.27795,46.41892],[9.27932,46.40046],[9.27589,46.39477],[9.28413,46.38625],[9.27452,46.37204],[9.28276,46.35877],[9.29512,46.35545],[9.29992,46.34313],[9.291,46.33602],[9.29855,46.32654],[9.29443,46.31753],[9.28482,46.31468],[9.28138,46.30947],[9.28482,46.29666],[9.26696,46.28195],[9.25941,46.27863],[9.25666,46.26866],[9.25117,46.26581],[9.24705,46.23257],[9.23538,46.23352],[9.22233,46.22782],[9.21752,46.21215],[9.20105,46.20882],[9.19418,46.18078],[9.18182,46.16841],[9.16053,46.17032],[9.1571,46.16271],[9.13513,46.15462],[9.12277,46.13464],[9.07269,46.11834],[9.0905,46.08799],[9.08157,46.07799],[9.07745,46.0656],[9.04998,46.06275],[9.01634,46.05083],[9.01702,46.04416],[9.00758,46.02855],[9.02286,46.01651],[9.02492,46.00006],[9.0287,45.99338],[9.02286,45.99266],[9.02183,45.98885],[9.01805,45.98813],[9.01187,45.98861],[9.01119,45.9836],[9.00329,45.98002],[8.99642,45.98002],[8.99471,45.97167],[8.98853,45.97143],[8.99299,45.96642],[9.01325,45.96022],[9.01634,45.94924],[9.01325,45.94255],[9.0232,45.9373],[9.0184,45.9287],[9.02767,45.92823],[9.03076,45.92631],[9.04277,45.92703],[9.04964,45.91987],[9.0596,45.92106],[9.05891,45.917],[9.06784,45.91151],[9.07299,45.91318],[9.07676,45.91103],[9.07539,45.90482],[9.07607,45.90028],[9.08741,45.90195],[9.08878,45.89765],[9.07779,45.89192],[9.0771,45.88403],[9.07196,45.88188],[9.06749,45.87542],[9.05548,45.87471],[9.04861,45.86275],[9.05067,45.85391],[9.03625,45.84099],[9.03659,45.83645],[9.0311,45.82425],[9.03419,45.82186],[9.02973,45.82018],[9.02252,45.8221],[9.01702,45.81851],[8.99368,45.82281],[8.99677,45.83478],[8.98647,45.8386],[8.97651,45.83621],[8.97274,45.83286],[8.96106,45.83669],[8.95523,45.84339],[8.94046,45.84243],[8.93016,45.83501],[8.91986,45.83501],[8.913,45.83047],[8.91334,45.84123],[8.93428,45.86156],[8.94596,45.8673],[8.94115,45.87112],[8.93772,45.86778],[8.93463,45.87112],[8.93085,45.88594],[8.92089,45.89669],[8.92639,45.90434],[8.91334,45.91915],[8.90647,45.91915],[8.89205,45.933],[8.89755,45.94589],[8.8948,45.95831],[8.87764,45.95735],[8.86047,45.9669],[8.84262,45.97692],[8.83163,45.98837],[8.79318,45.99171],[8.7918,45.98932],[8.78562,45.98885],[8.79318,46.00697],[8.80485,46.02128],[8.8179,46.02605],[8.8282,46.03415],[8.83369,46.04273],[8.82957,46.04654],[8.833,46.05131],[8.84468,46.04797],[8.85429,46.06179],[8.85154,46.07561],[8.80622,46.10085],[8.79867,46.09513],[8.78288,46.09418],[8.7561,46.10466],[8.74511,46.11513],[8.7149,46.09656],[8.69705,46.1018],[8.68469,46.1018],[8.67919,46.11037],[8.66958,46.11037],[8.65654,46.11323],[8.64658,46.12352],[8.61259,46.12179],[8.60916,46.13226],[8.59268,46.14416],[8.6016,46.15272],[8.58169,46.16366],[8.57757,46.16318],[8.56452,46.18458],[8.5556,46.18553],[8.55285,46.19266],[8.5398,46.19741],[8.53157,46.2207],[8.46908,46.234],[8.46359,46.24445],[8.44659,46.24807],[8.44179,46.2543],[8.45603,46.26397],[8.42814,46.29767],[8.43956,46.30443],[8.44436,46.32037],[8.45192,46.3199],[8.46427,46.33507],[8.46153,46.35403],[8.46977,46.36351],[8.46565,46.38151],[8.46221,46.38814],[8.46908,46.3962],[8.4629,46.40519],[8.46822,46.41212],[8.45741,46.42365],[8.46153,46.43028],[8.45741,46.43596],[8.46565,46.44448],[8.44368,46.46529],[8.38806,46.4511],[8.37158,46.45299],[8.3242,46.42555],[8.30746,46.42496],[8.28987,46.40821],[8.30841,46.40282],[8.31802,46.39525],[8.31253,46.37914],[8.29261,46.37346],[8.28025,46.36493],[8.27064,46.36635],[8.2624,46.36256],[8.26171,46.3474],[8.22326,46.33412],[8.21159,46.30899],[8.17932,46.29856],[8.1594,46.29571],[8.13949,46.3033],[8.07907,46.25964],[8.10859,46.24872],[8.11065,46.23875],[8.13812,46.2264],[8.15116,46.19409],[8.16558,46.1822],[8.1491,46.16271],[8.15322,46.14749],[8.14224,46.13512],[8.13194,46.13797],[8.11408,46.13083],[8.10859,46.11275],[8.07838,46.10608],[8.03572,46.10043],[8.0219,46.06965],[8.03443,46.04464],[8.01384,46.03272],[8.01727,46.02462],[8.01109,46.02128],[8.01384,46.0146],[8.0001,46.0127],[7.9898,45.996],[7.97401,45.99982],[7.94517,45.99696],[7.90741,45.99648],[7.89367,45.97787],[7.87719,45.9731],[7.88063,45.96451],[7.87307,45.95687],[7.87651,45.94828],[7.86895,45.94589],[7.87239,45.93252],[7.87788,45.92584],[7.86552,45.91581],[7.81951,45.92918],[7.80235,45.92058],[7.76802,45.93682],[7.74879,45.94064],[7.73368,45.92297],[7.72132,45.9244],[7.70896,45.93587],[7.70965,45.94971],[7.69798,45.95544],[7.68013,45.9564],[7.66365,45.97644],[7.64099,45.97024],[7.58331,45.97358],[7.57782,45.98694],[7.54554,45.98551],[7.54142,45.97692],[7.54554,45.96308],[7.53936,45.95449],[7.51739,45.96212],[7.50778,45.95878],[7.49816,45.96212],[7.49404,45.95496],[7.47139,45.94709],[7.47345,45.93634],[7.44323,45.93157],[7.41577,45.90768],[7.40066,45.91007],[7.38693,45.89622],[7.34504,45.91485],[7.31895,45.91151],[7.31483,45.91581],[7.29286,45.92106],[7.275,45.90004],[7.25715,45.88714],[7.24874,45.89311],[7.21595,45.88905],[7.1981,45.87375],[7.19947,45.86323],[7.18986,45.85702],[7.16102,45.87088],[7.16445,45.87614],[7.15553,45.87949],[7.13356,45.87041],[7.10815,45.85845],[7.09373,45.87041],[7.09373,45.8771],[7.07519,45.89192],[7.06489,45.89956],[7.06283,45.91055],[7.04292,45.92202],[7.01957,45.91676],[7.00035,45.89813],[7.00653,45.88522],[6.99691,45.87184],[6.95159,45.86036],[6.93924,45.84697],[6.91177,45.84075],[6.8795,45.84793],[6.8692,45.82497],[6.84654,45.83932],[6.82045,45.83788],[6.80534,45.81492],[6.81289,45.8087],[6.81221,45.79529],[6.80603,45.79194],[6.80191,45.77997],[6.8074,45.74788],[6.81701,45.74021],[6.8074,45.72631],[6.81907,45.71864],[6.82937,45.70186],[6.84104,45.69898],[6.84791,45.68939],[6.86714,45.68267],[6.8946,45.67692],[6.90353,45.68075],[6.90902,45.67356],[6.90353,45.66396],[6.9164,45.65988],[6.9164,45.6516],[6.931,45.6468],[6.96121,45.65292],[6.97013,45.6534],[6.97425,45.64572],[6.9873,45.64572],[6.99348,45.63996],[6.99966,45.64044],[6.99829,45.62892],[6.98455,45.62268],[6.97769,45.58953],[6.99485,45.57656],[6.99554,45.56646],[6.98936,45.56502],[6.99623,45.54483],[6.99005,45.53184],[7.00515,45.51885],[6.99829,45.50442],[7.01957,45.49624],[7.04704,45.4972],[7.05459,45.49383],[7.05665,45.48805],[7.04772,45.4842],[7.04772,45.47217],[7.0594,45.4712],[7.06558,45.47409],[7.10472,45.46687],[7.09716,45.45868],[7.1109,45.44568],[7.11502,45.43363],[7.15347,45.42351],[7.16377,45.41291],[7.18368,45.40809],[7.17887,45.39073],[7.16308,45.38205],[7.15965,45.36854],[7.16308,45.35938],[7.1521,45.356],[7.13974,45.35118],[7.13081,45.33959],[7.13493,45.33235],[7.12463,45.32608],[7.1157,45.32897],[7.10952,45.31884],[7.11845,45.31159],[7.12188,45.29421],[7.13562,45.27971],[7.13012,45.27295],[7.1363,45.25507],[7.126,45.2454],[7.11021,45.24733],[7.10609,45.23863],[7.08206,45.22461],[7.08274,45.21639],[7.0697,45.21155],[7.0491,45.22751],[7.02163,45.2159],[7.00241,45.21832],[6.99417,45.21252],[6.96395,45.20623],[6.96121,45.20236],[6.9667,45.19703],[6.95365,45.19074],[6.95503,45.1801],[6.94404,45.17719],[6.9461,45.1709],[6.91177,45.16751],[6.89392,45.16896],[6.89186,45.16122],[6.88156,45.15686],[6.89735,45.14185],[6.87332,45.13361],[6.84722,45.1278],[6.84654,45.13555],[6.83486,45.13604],[6.80809,45.14814],[6.76826,45.15928],[6.74148,45.13652],[6.71127,45.14475],[6.69204,45.13846],[6.68037,45.13991],[6.67282,45.12586],[6.64741,45.11423],[6.63436,45.11617],[6.62475,45.10357],[6.64741,45.08467],[6.64466,45.07497],[6.65222,45.07012],[6.6632,45.07012],[6.66252,45.0546],[6.66046,45.05266],[6.67076,45.04441],[6.66526,45.04053],[6.6735,45.02112],[6.72431,45.02161],[6.74491,45.01433],[6.75109,44.99588],[6.73805,44.99442],[6.73942,44.99054],[6.75041,44.98422],[6.75384,44.97645],[6.76483,44.97062],[6.76483,44.96139],[6.74491,44.93612],[6.75865,44.93952],[6.76071,44.93272],[6.7559,44.93272],[6.74766,44.92105],[6.75041,44.90646],[6.76551,44.90257],[6.77375,44.90355],[6.7868,44.89041],[6.80122,44.89187],[6.80671,44.87582],[6.86851,44.85051],[6.90902,44.84564],[6.93443,44.86317],[6.97494,44.8471],[7.00309,44.84077],[7.01065,44.82519],[7.02232,44.82227],[7.01957,44.81399],[6.99966,44.79255],[7.02438,44.76672],[7.02575,44.73893],[7.04017,44.71941],[7.06558,44.71453],[7.07794,44.68232],[7.05871,44.67939],[7.03399,44.69208],[7.00172,44.68769],[6.9976,44.6916],[6.98799,44.69013],[6.97082,44.67646],[6.95983,44.6789],[6.96052,44.6623],[6.94816,44.65351],[6.96121,44.62615],[6.96945,44.62615],[6.9667,44.61784],[6.95297,44.62077],[6.94885,44.60953],[6.9358,44.60171],[6.93443,44.57335],[6.91383,44.56796],[6.91452,44.55965],[6.87675,44.55378],[6.86851,44.53763],[6.8534,44.5298],[6.86027,44.50434],[6.87538,44.48279],[6.89186,44.47299],[6.90353,44.46907],[6.91108,44.45044],[6.93718,44.43966],[6.94679,44.43083],[6.93237,44.43083],[6.931,44.42544],[6.9207,44.42201],[6.91795,44.42691],[6.89598,44.42054],[6.89666,44.37393],[6.88774,44.36656],[6.88636,44.36067],[6.92344,44.35085],[6.9255,44.33416],[6.95846,44.31254],[6.95365,44.29682],[6.97151,44.29485],[6.97151,44.28552],[6.98112,44.28601],[6.99417,44.28011],[6.9976,44.24962],[7.00927,44.23486],[7.0285,44.23142],[7.03743,44.22502],[7.07107,44.2329],[7.14523,44.20042],[7.16239,44.20829],[7.1775,44.19697],[7.18849,44.20189],[7.21939,44.17038],[7.23587,44.17383],[7.24479,44.17137],[7.26196,44.1492],[7.28187,44.14378],[7.34024,44.14674],[7.36084,44.11766],[7.38899,44.12554],[7.42538,44.11174],[7.42813,44.13047],[7.46315,44.12752],[7.50572,44.14476],[7.52014,44.13688],[7.53112,44.1492],[7.54966,44.14575],[7.56683,44.15462],[7.61833,44.15018],[7.63618,44.17728],[7.68356,44.17432],[7.6815,44.16496],[7.6712,44.15807],[7.68013,44.14624],[7.66502,44.13195],[7.69386,44.09942],[7.71652,44.08314],[7.70416,44.04318],[7.67532,44.02935],[7.66365,44.03034],[7.66845,43.99923],[7.65197,43.97453],[7.61146,43.95476],[7.60047,43.95723],[7.57095,43.94784],[7.57232,43.93696],[7.5682,43.92312],[7.5579,43.91867],[7.56065,43.89987],[7.49473,43.87215],[7.4961,43.84987],[7.50778,43.84245],[7.51876,43.80232],[7.53112,43.78547],[7.53736,43.74542],[7,43],[7,38.5],[-5.00336,35.99863],[-5.58643,35.96265],[-6,36],[-35,36]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central European Zone","cq_zone_number":15,"cq_zone_name_loc":[46,15.6]},"geometry":{"type":"Polygon","coordinates":[[[28.92837,69.05163],[28.85421,69.07665],[28.80546,69.11096],[28.83018,69.1711],[28.83155,69.2245],[29.21951,69.39771],[29.33624,69.47874],[29.17144,69.63869],[29.13368,69.69548],[28.91738,69.72976],[28.70384,69.76803],[28.40377,69.81878],[28.3303,69.84932],[28.34472,69.88075],[28.1607,69.9211],[27.98355,70.01401],[27.97737,70.05364],[27.95883,70.09225],[27.95539,70.09249],[27.82012,70.07892],[27.73773,70.06417],[27.6979,70.07541],[27.621,70.07494],[27.56057,70.06464],[27.52281,70.02269],[27.43492,70.02058],[27.40745,70.01448],[27.35458,69.991],[27.31613,69.991],[27.2715,69.97572],[27.28797,69.97149],[27.29415,69.96538],[27.30102,69.9569],[27.22961,69.94796],[27.16301,69.93359],[27.1273,69.93242],[27.0964,69.9171],[27.05864,69.91733],[27.03186,69.91096],[26.98448,69.93501],[26.96182,69.93972],[26.92611,69.93807],[26.90002,69.93336],[26.87599,69.9343],[26.85401,69.94513],[26.85333,69.95973],[26.7778,69.95832],[26.73042,69.94631],[26.71737,69.94584],[26.70021,69.9489],[26.67549,69.96514],[26.62124,69.95902],[26.54434,69.94702],[26.49284,69.94513],[26.45851,69.93595],[26.45439,69.91898],[26.42829,69.90743],[26.40564,69.90106],[26.41662,69.88902],[26.40083,69.87201],[26.38572,69.85712],[26.36306,69.84577],[26.35002,69.8453],[26.3253,69.83465],[26.24084,69.81238],[26.24702,69.79555],[26.22985,69.79342],[26.21543,69.78013],[26.19415,69.77752],[26.18248,69.7685],[26.18454,69.7609],[26.16462,69.75781],[26.1351,69.73832],[25.98472,69.71644],[25.93803,69.68332],[25.90782,69.67569],[25.89683,69.65995],[25.9394,69.65183],[25.96,69.64084],[25.95932,69.62531],[25.9758,69.61192],[25.96344,69.59828],[25.9552,69.59541],[25.94558,69.58607],[25.94764,69.57888],[25.8831,69.55587],[25.84808,69.55203],[25.83778,69.54483],[25.87486,69.52227],[25.86181,69.51289],[25.84739,69.49125],[25.8625,69.47513],[25.83435,69.46767],[25.82473,69.44911],[25.80619,69.43392],[25.80963,69.42789],[25.79933,69.42476],[25.79315,69.41993],[25.81306,69.41872],[25.82336,69.41341],[25.80825,69.41051],[25.81306,69.40544],[25.83091,69.40689],[25.84533,69.39433],[25.8316,69.3895],[25.82954,69.38345],[25.81169,69.37475],[25.81718,69.37281],[25.81649,69.35974],[25.78285,69.35539],[25.77804,69.34497],[25.75813,69.34013],[25.76156,69.33528],[25.75538,69.32535],[25.74028,69.3188],[25.73822,69.30983],[25.74783,69.30255],[25.7341,69.29624],[25.74508,69.29332],[25.74783,69.28628],[25.73753,69.28385],[25.74234,69.27584],[25.7286,69.27243],[25.73272,69.26514],[25.71899,69.2576],[25.70182,69.25444],[25.70182,69.24982],[25.70869,69.24301],[25.70251,69.23984],[25.70388,69.23595],[25.69976,69.2323],[25.71487,69.22597],[25.70526,69.2211],[25.708,69.21452],[25.7135,69.21111],[25.70045,69.2055],[25.6929,69.20477],[25.69221,69.19745],[25.70732,69.18623],[25.72517,69.16548],[25.72311,69.16231],[25.72998,69.1584],[25.72998,69.15107],[25.74234,69.14349],[25.74371,69.13885],[25.73135,69.12784],[25.73204,69.12344],[25.72311,69.1161],[25.72036,69.10949],[25.72998,69.10557],[25.72998,69.10189],[25.72517,69.0921],[25.73066,69.08278],[25.72311,69.08008],[25.7286,69.07445],[25.75264,69.0585],[25.74989,69.05506],[25.75401,69.0531],[25.74852,69.05163],[25.75058,69.04671],[25.74371,69.04352],[25.75607,69.0305],[25.76911,69.02952],[25.77667,69.02166],[25.77461,69.0133],[25.76019,69.00346],[25.7547,69.0037],[25.72174,68.98992],[25.71968,68.98573],[25.71144,68.98032],[25.71281,68.96726],[25.69908,68.95419],[25.69496,68.95321],[25.68946,68.94877],[25.69221,68.94606],[25.65788,68.91792],[25.65307,68.90631],[25.63591,68.90334],[25.62629,68.89741],[25.62767,68.8937],[25.62355,68.89197],[25.61393,68.89098],[25.60157,68.88554],[25.58441,68.88356],[25.55282,68.88776],[25.53428,68.88702],[25.52536,68.89048],[25.51574,68.89172],[25.50888,68.89667],[25.49377,68.89963],[25.49308,68.90408],[25.47386,68.90433],[25.4203,68.89172],[25.41137,68.89271],[25.39833,68.89098],[25.40176,68.88727],[25.37429,68.88084],[25.37086,68.87812],[25.31044,68.86326],[25.26855,68.85162],[25.23902,68.83923],[25.22941,68.8251],[25.20813,68.81816],[25.19439,68.80997],[25.17517,68.806],[25.16761,68.80277],[25.15869,68.80078],[25.15045,68.79457],[25.14907,68.7901],[25.14152,68.78762],[25.14015,68.77842],[25.13397,68.76748],[25.13465,68.76201],[25.12641,68.75828],[25.11955,68.74609],[25.12435,68.74285],[25.12504,68.73588],[25.12161,68.72467],[25.12367,68.72044],[25.13053,68.71919],[25.12985,68.7147],[25.12229,68.71346],[25.11131,68.69924],[25.11474,68.69151],[25.1065,68.68103],[25.11062,68.67653],[25.11337,68.66455],[25.11405,68.65305],[25.11955,68.6473],[25.11474,68.64505],[25.11817,68.64255],[25.11131,68.63755],[25.10444,68.6378],[25.09208,68.6358],[25.08316,68.62654],[25.07904,68.62729],[25.07835,68.62304],[25.07286,68.62229],[25.06874,68.61978],[25.05844,68.62229],[25.04814,68.62654],[25.03028,68.62354],[25.02342,68.62404],[25.01518,68.62129],[25.01449,68.61603],[24.99595,68.61202],[24.98703,68.61277],[24.97673,68.61753],[24.95887,68.61753],[24.95544,68.61478],[24.94789,68.61528],[24.94514,68.61152],[24.93896,68.61227],[24.9163,68.60526],[24.906,68.58195],[24.90257,68.55486],[24.85725,68.56239],[24.78309,68.6368],[24.608,68.68228],[24.47685,68.6985],[24.30227,68.71732],[24.25077,68.72716],[24.20785,68.74528],[24.15292,68.75362],[24.15842,68.78979],[24.0755,68.7801],[23.98315,68.82715],[23.87088,68.83663],[23.77544,68.8189],[23.73081,68.75082],[23.67313,68.70548],[23.4407,68.69213],[23.36345,68.67519],[23.16741,68.62867],[23.04588,68.68939],[22.80075,68.68764],[22.6054,68.72617],[22.53501,68.7446],[22.37434,68.71682],[22.34035,68.82733],[22.19169,68.91891],[22.17556,68.95641],[21.98329,69.07297],[21.84562,69.14472],[21.7234,69.21427],[21.62708,69.27658],[21.27881,69.31188],[21.09617,69.26091],[21.00331,69.22233],[20.98757,69.19192],[21.04673,69.13952],[21.05562,69.12208],[21.10867,69.10393],[21.05754,69.03629],[20.88114,69.07886],[20.71732,69.11979],[20.55233,69.06007],[20.56434,69.05752],[20.57601,69.05359],[20.59043,69.05334],[20.61241,69.0477],[20.74424,69.03837],[20.91453,68.96184],[20.8905,68.94235],[20.84449,68.93791],[20.84724,68.93026],[20.87951,68.91915],[20.90354,68.90062],[20.87677,68.89617],[20.89187,68.89123],[20.91522,68.89667],[20.93444,68.89889],[20.94131,68.89691],[20.95367,68.89765],[20.96122,68.89271],[20.98526,68.89296],[20.99144,68.8979],[21.02851,68.88603],[21.02714,68.88306],[21.04843,68.88108],[21.07521,68.87218],[21.07658,68.86574],[21.10679,68.8598],[21.14318,68.84766],[21.14456,68.84097],[21.18301,68.82882],[21.18232,68.82585],[21.20567,68.8184],[21.23794,68.8127],[21.25991,68.79283],[21.25991,68.79035],[21.30455,68.76077],[21.32309,68.76002],[21.36291,68.76724],[21.38969,68.76475],[21.38969,68.76276],[21.41166,68.74833],[21.40617,68.73688],[21.41441,68.7314],[21.41235,68.72642],[21.42128,68.71595],[21.41372,68.71047],[21.42265,68.70373],[21.42059,68.6965],[21.46797,68.68228],[21.50573,68.67628],[21.55517,68.67603],[21.62315,68.6643],[21.62452,68.6558],[21.6513,68.65055],[21.66641,68.6398],[21.70829,68.62629],[21.71104,68.61878],[21.69937,68.61453],[21.7028,68.59649],[21.71104,68.59374],[21.71791,68.59098],[21.77764,68.58596],[21.86485,68.59073],[21.8621,68.58622],[21.88751,68.58622],[21.90536,68.5797],[21.90673,68.57568],[21.92459,68.57167],[21.94587,68.55837],[21.97128,68.55034],[21.96991,68.54657],[21.99256,68.53376],[22.00492,68.53552],[22.00698,68.53175],[22.01797,68.49478],[22.04544,68.47917],[22.05711,68.47942],[22.07702,68.48194],[22.09693,68.48143],[22.10174,68.47841],[22.11273,68.48244],[22.12028,68.48143],[22.12715,68.47262],[22.15255,68.4711],[22.18689,68.47942],[22.20405,68.47992],[22.21916,68.47337],[22.25143,68.48168],[22.2837,68.47917],[22.29606,68.48345],[22.32215,68.48143],[22.35031,68.48118],[22.34138,68.46934],[22.35031,68.46304],[22.34413,68.45825],[22.3455,68.45245],[22.34001,68.4464],[22.35992,68.44614],[22.40112,68.46606],[22.41073,68.46606],[22.42034,68.4638],[22.43476,68.4648],[22.43614,68.46127],[22.46704,68.44085],[22.48558,68.44362],[22.53295,68.43529],[22.55493,68.43378],[22.57621,68.42191],[22.61741,68.42772],[22.61947,68.43227],[22.62977,68.43555],[22.64144,68.43252],[22.64282,68.41813],[22.67372,68.41206],[22.69088,68.40676],[22.68676,68.40044],[22.72316,68.39538],[22.73002,68.38628],[22.76779,68.38552],[22.79937,68.39412],[22.81036,68.39007],[22.83371,68.38704],[22.84332,68.38173],[22.83439,68.36882],[22.84194,68.36275],[22.85224,68.35971],[22.90649,68.3435],[22.90718,68.33893],[22.91679,68.33437],[22.97241,68.33209],[22.97584,68.32448],[23.03421,68.30748],[23.05824,68.30698],[23.06785,68.29428],[23.06442,68.27955],[23.08021,68.26608],[23.1015,68.2587],[23.10974,68.25234],[23.12965,68.24903],[23.14201,68.24853],[23.14613,68.23936],[23.15368,68.233],[23.14132,68.21975],[23.14544,68.2116],[23.13995,68.20523],[23.15368,68.20064],[23.16124,68.19656],[23.14819,68.19069],[23.14132,68.17819],[23.13995,68.15546],[23.15162,68.13782],[23.1681,68.13399],[23.18389,68.13834],[23.19625,68.13859],[23.21136,68.14575],[23.25531,68.15061],[23.25737,68.15648],[23.27796,68.15725],[23.29101,68.15061],[23.30543,68.14933],[23.30612,68.14575],[23.31092,68.14396],[23.31779,68.13808],[23.32122,68.12887],[23.33015,68.12401],[23.32878,68.11634],[23.33496,68.102],[23.35006,68.09406],[23.36998,68.06997],[23.36998,68.06073],[23.38645,68.0574],[23.39332,68.04456],[23.44276,68.03712],[23.46611,68.03044],[23.46336,68.02479],[23.47091,68.01862],[23.53683,68.00499],[23.54782,67.98493],[23.57528,67.97231],[23.60481,67.97205],[23.65356,67.95969],[23.65013,67.95247],[23.66523,67.94242],[23.65493,67.93623],[23.64189,67.92772],[23.64395,67.91739],[23.62266,67.90887],[23.59451,67.90267],[23.58696,67.89441],[23.57254,67.89312],[23.54988,67.89932],[23.54164,67.89053],[23.50868,67.88097],[23.50662,67.87217],[23.49357,67.8626],[23.49151,67.84914],[23.47915,67.84319],[23.48396,67.82687],[23.47366,67.81754],[23.48121,67.80094],[23.49357,67.7929],[23.48602,67.77706],[23.4922,67.75575],[23.47572,67.74015],[23.48533,67.73027],[23.47984,67.72532],[23.47641,67.71725],[23.48396,67.71335],[23.47984,67.70215],[23.49357,67.69589],[23.49014,67.68964],[23.49838,67.6839],[23.49082,67.66617],[23.51074,67.64842],[23.54026,67.63196],[23.54232,67.6236],[23.55331,67.62307],[23.5588,67.61968],[23.53752,67.60424],[23.54507,67.59613],[23.54507,67.5854],[23.5382,67.57938],[23.52859,67.57624],[23.52722,67.57362],[23.50387,67.56419],[23.49082,67.56759],[23.46817,67.56628],[23.45718,67.55999],[23.48396,67.53954],[23.47435,67.53009],[23.44001,67.51854],[23.4304,67.50541],[23.40568,67.50147],[23.40568,67.49595],[23.39332,67.48544],[23.41186,67.46808],[23.48121,67.4515],[23.49288,67.44702],[23.51623,67.44781],[23.52928,67.45913],[23.54644,67.46124],[23.5794,67.45465],[23.66798,67.44333],[23.68103,67.44307],[23.70506,67.44676],[23.75312,67.43569],[23.76136,67.42858],[23.75106,67.41856],[23.75175,67.40854],[23.73596,67.39455],[23.71948,67.39218],[23.71742,67.38558],[23.73527,67.37924],[23.73115,67.37475],[23.7387,67.34991],[23.7593,67.34779],[23.77304,67.33589],[23.7545,67.32371],[23.73046,67.28795],[23.71536,67.28185],[23.68927,67.28424],[23.6206,67.27151],[23.60824,67.27336],[23.58284,67.26965],[23.56086,67.26116],[23.56842,67.25081],[23.55194,67.24788],[23.56086,67.23806],[23.54507,67.22557],[23.5691,67.22105],[23.5952,67.20908],[23.58696,67.19099],[23.56292,67.18353],[23.55125,67.17075],[23.63433,67.11394],[23.65699,67.10218],[23.6721,67.06475],[23.70849,67.04468],[23.74488,67.0152],[23.80119,66.99079],[23.79982,66.98488],[23.81355,66.97871],[23.82728,66.96152],[23.85749,66.95668],[23.86367,66.92171],[23.90487,66.89748],[23.91449,66.88858],[23.93302,66.88373],[23.99414,66.82084],[23.98796,66.80462],[23.97491,66.79678],[23.98109,66.78514],[23.96255,66.78135],[23.92616,66.79488],[23.90556,66.79353],[23.91586,66.77187],[23.89251,66.76944],[23.87741,66.75589],[23.90144,66.72335],[23.89114,66.67582],[23.86367,66.65515],[23.87397,66.64426],[23.86917,66.63337],[23.87947,66.61921],[23.87741,66.58185],[23.85955,66.5611],[23.7854,66.53459],[23.79776,66.52092],[23.79089,66.51681],[23.74282,66.50422],[23.72703,66.50723],[23.7284,66.49847],[23.7133,66.49382],[23.7181,66.47738],[23.69407,66.47491],[23.65631,66.45929],[23.63983,66.42938],[23.68858,66.38458],[23.65974,66.35733],[23.65013,66.30938],[23.66661,66.27984],[23.66592,66.26049],[23.69819,66.24335],[23.69339,66.22924],[23.72222,66.21595],[23.73458,66.20543],[23.72772,66.196],[23.78402,66.1863],[23.82659,66.17188],[23.91929,66.16078],[23.93028,66.15051],[23.91861,66.13552],[23.9392,66.12218],[23.93646,66.11245],[23.94538,66.10661],[23.93646,66.08491],[24.0525,65.99121],[24.0422,65.96297],[24.08958,65.93107],[24.11705,65.92855],[24.10949,65.91398],[24.15206,65.86405],[24.13559,65.86349],[24.12323,65.85563],[24.14657,65.83933],[24.15344,65.81515],[24.13421,65.79714],[24.12735,65.77743],[24.17129,65.72667],[24.16442,65.69617],[24.17678,65.6611],[24.15344,65.59281],[24.14846,65.57332],[24.14133,65.54837],[20.8759,63.38561],[19.10591,60.30732],[19.99787,57.57863],[14.22627,53.92886],[14.22611,53.92774],[14.20806,53.91606],[14.19502,53.91485],[14.1909,53.91606],[14.18541,53.91445],[14.18541,53.91161],[14.19364,53.91202],[14.20463,53.91081],[14.20463,53.90676],[14.21218,53.90029],[14.21356,53.88774],[14.21562,53.88046],[14.21218,53.86791],[14.2139,53.86548],[14.27261,53.73962],[14.27175,53.70453],[14.26712,53.69853],[14.27055,53.69548],[14.27261,53.6902],[14.27467,53.68898],[14.27604,53.68613],[14.28154,53.68491],[14.2836,53.68247],[14.28222,53.67556],[14.27124,53.66742],[14.27192,53.66295],[14.27879,53.66295],[14.28497,53.65888],[14.28428,53.64504],[14.2836,53.63527],[14.31037,53.61817],[14.31655,53.61817],[14.31175,53.58027],[14.31175,53.57171],[14.31381,53.566],[14.30282,53.55417],[14.30763,53.55091],[14.30625,53.54398],[14.31518,53.53745],[14.31861,53.53051],[14.31518,53.52479],[14.31999,53.51949],[14.32685,53.50397],[14.33372,53.5007],[14.34951,53.49662],[14.35432,53.48845],[14.35363,53.47864],[14.35638,53.47047],[14.35638,53.46189],[14.35844,53.45739],[14.37149,53.45657],[14.37011,53.43776],[14.36805,53.43326],[14.36874,53.42467],[14.37286,53.41894],[14.37286,53.40871],[14.38934,53.38783],[14.39552,53.37595],[14.39415,53.35997],[14.39003,53.35424],[14.40513,53.34727],[14.40788,53.3362],[14.41543,53.32431],[14.40582,53.30872],[14.41406,53.30174],[14.42161,53.27671],[14.44427,53.27383],[14.45114,53.26028],[14.44221,53.25617],[14.43534,53.24878],[14.43328,53.24097],[14.42161,53.23481],[14.40856,53.22453],[14.40719,53.2122],[14.40033,53.20767],[14.37767,53.20233],[14.37355,53.18752],[14.36599,53.1727],[14.3708,53.15706],[14.38659,53.14265],[14.37904,53.11257],[14.37149,53.10474],[14.37149,53.09361],[14.35432,53.06267],[14.3399,53.04905],[14.31175,53.03419],[14.29252,53.02097],[14.26849,53.01065],[14.2472,52.99825],[14.21768,52.98833],[14.16961,52.97345],[14.16275,52.96559],[14.14421,52.9627],[14.1394,52.95236],[14.14421,52.94325],[14.14215,52.93332],[14.15245,52.9031],[14.16137,52.8857],[14.15794,52.87493],[14.12567,52.84881],[14.12361,52.83637],[14.13734,52.826],[14.21356,52.81853],[14.22317,52.81313],[14.25132,52.79072],[14.28085,52.77327],[14.32479,52.76164],[14.35295,52.75],[14.36256,52.7392],[14.37286,52.7367],[14.41406,52.7001],[14.42367,52.69594],[14.43191,52.68345],[14.45594,52.67513],[14.46418,52.66139],[14.51637,52.64014],[14.56993,52.62264],[14.59945,52.60846],[14.60838,52.60012],[14.6125,52.58678],[14.63722,52.57593],[14.63928,52.568],[14.61593,52.55506],[14.61387,52.54546],[14.60357,52.53167],[14.61113,52.51747],[14.61387,52.50911],[14.63516,52.49783],[14.63035,52.48779],[14.61387,52.47776],[14.60907,52.46563],[14.57748,52.44136],[14.55757,52.43843],[14.54589,52.43006],[14.54589,52.41331],[14.53353,52.39697],[14.55139,52.37685],[14.55276,52.35169],[14.56237,52.34163],[14.561,52.33324],[14.56169,52.32778],[14.57473,52.32191],[14.57817,52.31351],[14.58503,52.30554],[14.57405,52.29546],[14.57542,52.28958],[14.58847,52.28412],[14.59327,52.27362],[14.61868,52.27151],[14.64477,52.26269],[14.66056,52.26227],[14.6743,52.25765],[14.69284,52.25597],[14.70451,52.24419],[14.71687,52.23579],[14.71344,52.23074],[14.71069,52.21728],[14.70382,52.20634],[14.68872,52.19919],[14.68597,52.19161],[14.70176,52.1794],[14.70451,52.17098],[14.70245,52.1655],[14.6791,52.14444],[14.68391,52.12421],[14.68048,52.1162],[14.69902,52.09807],[14.72442,52.093],[14.74159,52.08499],[14.74708,52.07866],[14.75669,52.06979],[14.75875,52.06473],[14.74571,52.05586],[14.74571,52.04657],[14.74914,52.04404],[14.74708,52.03728],[14.74777,52.03179],[14.73953,52.02968],[14.73953,52.02334],[14.72717,52.01362],[14.72511,52.00728],[14.71412,52.0039],[14.72168,51.99418],[14.71412,51.98192],[14.70726,51.97938],[14.70726,51.965],[14.71412,51.95696],[14.71893,51.95569],[14.72099,51.95188],[14.71893,51.94595],[14.7203,51.94172],[14.71275,51.93579],[14.70726,51.93579],[14.70314,51.93071],[14.70657,51.92352],[14.69902,51.91208],[14.69146,51.90827],[14.69421,51.90276],[14.68048,51.89598],[14.65644,51.88496],[14.65095,51.87352],[14.62486,51.85825],[14.6125,51.85698],[14.60632,51.85189],[14.6125,51.84595],[14.60426,51.84765],[14.60632,51.84002],[14.59671,51.84129],[14.59121,51.83959],[14.58915,51.82559],[14.59121,51.82092],[14.59945,51.8154],[14.60632,51.80352],[14.62486,51.80054],[14.63104,51.80224],[14.63722,51.79672],[14.64614,51.7963],[14.65301,51.78483],[14.65438,51.76826],[14.65095,51.76189],[14.66468,51.75721],[14.65713,51.75296],[14.65988,51.74828],[14.65507,51.74106],[14.6688,51.72617],[14.67704,51.72234],[14.68872,51.70873],[14.72854,51.68788],[14.73472,51.68915],[14.73953,51.6832],[14.73747,51.67851],[14.74639,51.67638],[14.75738,51.66276],[14.7512,51.65168],[14.75669,51.64572],[14.75395,51.62739],[14.76425,51.61844],[14.76562,51.60991],[14.75051,51.59498],[14.72991,51.58432],[14.72854,51.57578],[14.71138,51.56298],[14.71824,51.5553],[14.72511,51.55487],[14.73197,51.54548],[14.72648,51.53907],[14.73541,51.52626],[14.75189,51.52241],[14.75944,51.52369],[14.76356,51.51942],[14.79515,51.51857],[14.81163,51.50617],[14.81918,51.50703],[14.83154,51.50446],[14.85282,51.48865],[14.86312,51.49036],[14.8693,51.48437],[14.88647,51.48779],[14.89746,51.48223],[14.9057,51.48437],[14.92218,51.48266],[14.92561,51.47454],[14.94689,51.47197],[14.95582,51.45956],[14.97299,51.44202],[14.97024,51.4326],[14.96337,51.43474],[14.95719,51.43046],[14.96337,51.42661],[14.96543,51.41462],[14.95857,51.41077],[14.96887,51.39792],[14.95925,51.39535],[14.96955,51.37992],[14.9826,51.37392],[14.97779,51.36449],[14.96543,51.36234],[14.97436,51.35934],[14.97779,51.34176],[14.98672,51.33061],[14.99496,51.32889],[14.9929,51.32374],[15.00938,51.31731],[15.00663,51.31087],[15.0135,51.30185],[15.03273,51.2937],[15.03479,51.27781],[15.04165,51.27351],[15.03685,51.26964],[15.03616,51.2589],[15.02243,51.25031],[15.02586,51.24902],[15.02861,51.25117],[15.03753,51.24472],[15.01762,51.22709],[15.00801,51.20086],[15.0135,51.1987],[15.00526,51.19096],[15.00938,51.18106],[15.0032,51.16728],[14.99359,51.16169],[15.00045,51.15006],[14.99427,51.14317],[14.99565,51.12248],[14.98741,51.11688],[14.98054,51.11731],[14.97917,51.10783],[14.98397,51.09101],[14.97642,51.08627],[14.97779,51.07721],[14.96887,51.0716],[14.97024,51.0647],[14.96475,51.05693],[14.96543,51.05089],[14.94827,51.04139],[14.95101,51.0388],[14.93728,51.01893],[14.94072,51.01461],[14.92698,50.9969],[14.9208,50.9982],[14.91737,50.99085],[14.91874,50.97615],[14.90295,50.97183],[14.89471,50.95064],[14.89746,50.94155],[14.89128,50.93636],[14.87892,50.9329],[14.86724,50.91775],[14.85145,50.91039],[14.84527,50.90043],[14.81987,50.88614],[14.81849,50.87704],[14.82399,50.87054],[14.82124,50.86057],[14.81094,50.85104],[14.80133,50.82979],[14.80064,50.82372],[14.79309,50.82068],[14.79103,50.82589],[14.77867,50.82068],[14.76493,50.82112],[14.74571,50.82936],[14.72648,50.82242],[14.71687,50.82502],[14.71962,50.83196],[14.70726,50.84193],[14.68872,50.83803],[14.66056,50.85017],[14.64803,50.84868],[14.64271,50.85212],[14.61902,50.85841],[14.62005,50.85992],[14.61868,50.86469],[14.62417,50.86794],[14.63584,50.8974],[14.65301,50.90519],[14.64958,50.93117],[14.62829,50.92554],[14.61799,50.92641],[14.60151,50.92078],[14.58366,50.91472],[14.56375,50.91818],[14.561,50.92511],[14.57061,50.93722],[14.5816,50.94328],[14.59602,50.96361],[14.59259,50.9675],[14.59602,50.9701],[14.60014,50.97875],[14.59739,50.98739],[14.5816,50.99387],[14.56512,51.01029],[14.53559,51.00381],[14.53353,51.00943],[14.5404,51.01116],[14.52804,51.01764],[14.50058,51.02282],[14.50813,51.04312],[14.4992,51.047],[14.49165,51.04355],[14.49371,51.03707],[14.49165,51.02368],[14.4738,51.02628],[14.47448,51.0293],[14.46487,51.03491],[14.45251,51.03578],[14.42024,51.01937],[14.40856,51.01893],[14.38453,51.02714],[14.38247,51.03837],[14.37355,51.0388],[14.36256,51.04571],[14.34471,51.03966],[14.33784,51.03923],[14.31587,51.05563],[14.30145,51.0552],[14.28772,51.0388],[14.27398,51.03966],[14.28428,51.03232],[14.28634,51.02628],[14.27948,51.01893],[14.28154,51.01677],[14.26025,51.00943],[14.26712,51.00079],[14.25888,50.98826],[14.28428,50.97788],[14.30351,50.98134],[14.31037,50.9848],[14.31999,50.98523],[14.32823,50.98264],[14.32754,50.97356],[14.31518,50.97269],[14.30282,50.96577],[14.31655,50.96102],[14.31175,50.95496],[14.32823,50.94891],[14.34539,50.94891],[14.37423,50.93852],[14.38591,50.94112],[14.40101,50.93376],[14.4017,50.92424],[14.38591,50.91602],[14.38728,50.89956],[14.37355,50.89653],[14.3502,50.9],[14.34951,50.89263],[14.30351,50.88354],[14.2884,50.887],[14.28222,50.89263],[14.26712,50.89523],[14.24995,50.88744],[14.23278,50.88917],[14.2369,50.87747],[14.22317,50.85971],[14.21699,50.86057],[14.20257,50.85104],[14.16137,50.84713],[14.13322,50.83456],[14.08927,50.82632],[14.07966,50.81895],[14.07897,50.81244],[14.0625,50.81027],[14.057,50.81244],[14.04052,50.8107],[14.03228,50.80506],[14.01649,50.8107],[14.00413,50.81114],[14.00344,50.81374],[13.9904,50.81938],[13.9746,50.81331],[13.95401,50.80767],[13.95469,50.80072],[13.9389,50.78944],[13.91693,50.789],[13.90388,50.79421],[13.89633,50.79161],[13.8977,50.78814],[13.90113,50.7851],[13.8874,50.77033],[13.88946,50.76252],[13.90113,50.75296],[13.89701,50.74471],[13.88328,50.73775],[13.86337,50.74297],[13.85719,50.72906],[13.82629,50.72385],[13.80706,50.73254],[13.75831,50.73471],[13.74183,50.72645],[13.7281,50.73384],[13.71025,50.72472],[13.71299,50.71993],[13.7075,50.71689],[13.6869,50.72037],[13.6663,50.73167],[13.64296,50.72906],[13.62442,50.72211],[13.6251,50.71646],[13.60244,50.71124],[13.55575,50.71472],[13.52623,50.70428],[13.53858,50.69123],[13.54476,50.67775],[13.53858,50.67383],[13.53996,50.66817],[13.52966,50.66861],[13.51249,50.65381],[13.51936,50.64859],[13.52417,50.64902],[13.52554,50.63901],[13.4967,50.63073],[13.49464,50.62333],[13.46443,50.6011],[13.43971,50.61113],[13.41224,50.61984],[13.404,50.63552],[13.39096,50.64597],[13.38203,50.64641],[13.37104,50.65076],[13.37654,50.62855],[13.36692,50.61897],[13.31955,50.60241],[13.32366,50.5828],[13.29002,50.57495],[13.27903,50.59326],[13.25912,50.59282],[13.255,50.59544],[13.23371,50.57887],[13.23646,50.57015],[13.22341,50.5623],[13.22891,50.55052],[13.22067,50.54616],[13.20694,50.52172],[13.19458,50.51473],[13.19664,50.50338],[13.17878,50.5025],[13.15406,50.50775],[13.13896,50.50556],[13.13346,50.51866],[13.10394,50.50338],[13.07785,50.50032],[13.05725,50.50119],[13.04283,50.51124],[13.02978,50.50906],[13.03115,50.50032],[13.02223,50.48678],[13.01879,50.46318],[13.02154,50.454],[13.01605,50.44351],[12.99614,50.43389],[12.98652,50.42208],[12.96318,50.41464],[12.94258,50.4107],[12.94326,50.40676],[12.94738,50.40676],[12.94807,50.40282],[12.93434,50.40764],[12.9364,50.41114],[12.91305,50.42339],[12.90206,50.42339],[12.89314,50.43039],[12.81967,50.46056],[12.81692,50.45007],[12.80593,50.44395],[12.81074,50.43214],[12.79563,50.44876],[12.73521,50.43345],[12.7304,50.42251],[12.70774,50.40808],[12.70637,50.39757],[12.69538,50.40151],[12.67272,50.4177],[12.65625,50.41158],[12.6432,50.40983],[12.62466,50.41726],[12.59925,50.40589],[12.5917,50.40851],[12.55325,50.39888],[12.51274,50.39626],[12.49694,50.37918],[12.48733,50.37481],[12.48664,50.36254],[12.49214,50.35553],[12.48321,50.34677],[12.46879,50.35553],[12.4427,50.34283],[12.43583,50.33231],[12.43858,50.3288],[12.43103,50.32266],[12.39944,50.32354],[12.39875,50.31083],[12.4015,50.29767],[12.39532,50.28977],[12.36991,50.28495],[12.3603,50.27486],[12.36099,50.26959],[12.35275,50.26388],[12.35,50.25247],[12.35824,50.24369],[12.35137,50.23798],[12.33215,50.24325],[12.33009,50.22656],[12.3349,50.22173],[12.3349,50.21821],[12.32666,50.21953],[12.32734,50.20942],[12.32254,50.20679],[12.33764,50.19228],[12.32666,50.18085],[12.33833,50.1725],[12.29232,50.17645],[12.29026,50.18481],[12.27378,50.19668],[12.28889,50.20327],[12.28958,50.20986],[12.28271,50.20898],[12.29164,50.22173],[12.27378,50.23315],[12.26692,50.23227],[12.23739,50.24764],[12.25044,50.25554],[12.26486,50.25115],[12.26623,50.25949],[12.25387,50.27047],[12.20169,50.2731],[12.20237,50.28977],[12.19619,50.29328],[12.19963,50.30732],[12.18658,50.3117],[12.18383,50.32223],[12.15156,50.32179],[12.12684,50.31653],[12.11517,50.31653],[12.11448,50.3196],[12.10624,50.32266],[12.10075,50.31872],[12.10487,50.31477],[12.12616,50.30863],[12.11929,50.29899],[12.12272,50.29109],[12.13989,50.27749],[12.11929,50.26783],[12.09938,50.26257],[12.10281,50.25598],[12.09182,50.25291],[12.09938,50.24676],[12.10487,50.24676],[12.10968,50.2371],[12.12753,50.23183],[12.14126,50.23139],[12.1495,50.23754],[12.15156,50.23578],[12.14607,50.22963],[12.15774,50.22612],[12.16323,50.21865],[12.15843,50.21514],[12.15911,50.2125],[12.17285,50.2125],[12.1804,50.20591],[12.18452,50.20415],[12.18383,50.20019],[12.19482,50.20019],[12.19757,50.19932],[12.18864,50.19624],[12.20031,50.1892],[12.20787,50.16942],[12.21542,50.16942],[12.21199,50.1593],[12.20031,50.15138],[12.201,50.14698],[12.19482,50.14302],[12.19688,50.12233],[12.20375,50.11485],[12.19963,50.10957],[12.20993,50.1012],[12.22778,50.10252],[12.22847,50.09723],[12.24563,50.09635],[12.26417,50.08093],[12.27378,50.07785],[12.26074,50.06595],[12.26074,50.05846],[12.27035,50.06154],[12.28202,50.05669],[12.30125,50.0589],[12.32048,50.05228],[12.31704,50.04655],[12.3246,50.03685],[12.32528,50.03244],[12.33078,50.03332],[12.33696,50.0395],[12.34726,50.03553],[12.36785,50.01744],[12.37815,50.01921],[12.3809,50.01259],[12.40081,50.01479],[12.39807,50.00862],[12.42485,50.00023],[12.4324,50.00288],[12.43446,49.99405],[12.42485,49.99096],[12.43171,49.98478],[12.46055,49.99538],[12.47016,49.99096],[12.47772,49.98081],[12.48939,49.98081],[12.49969,49.97153],[12.49351,49.96977],[12.49076,49.95828],[12.48115,49.95873],[12.46948,49.94724],[12.4784,49.93619],[12.49351,49.93752],[12.49282,49.93398],[12.51274,49.92691],[12.5457,49.92293],[12.55188,49.90746],[12.54089,49.89198],[12.51892,49.8787],[12.51823,49.8672],[12.51136,49.85879],[12.499,49.85657],[12.499,49.83798],[12.48458,49.84241],[12.47291,49.83399],[12.47634,49.82602],[12.47428,49.81583],[12.46536,49.81051],[12.47085,49.79943],[12.46604,49.795],[12.47497,49.79101],[12.46948,49.78614],[12.40562,49.76308],[12.40081,49.75421],[12.40493,49.74711],[12.40631,49.73956],[12.41386,49.73246],[12.42622,49.73069],[12.43377,49.71471],[12.4427,49.70361],[12.4839,49.69428],[12.4839,49.68851],[12.50038,49.68495],[12.5196,49.68806],[12.52235,49.67829],[12.52922,49.66718],[12.52304,49.66096],[12.52441,49.65207],[12.51686,49.6454],[12.51823,49.64362],[12.52853,49.64051],[12.52304,49.63384],[12.52372,49.62805],[12.53471,49.62583],[12.52716,49.62227],[12.52784,49.61827],[12.53471,49.61827],[12.5457,49.62183],[12.55943,49.6196],[12.55806,49.61249],[12.56355,49.59736],[12.57797,49.58712],[12.5711,49.56886],[12.57453,49.55907],[12.59445,49.54258],[12.58758,49.53857],[12.60612,49.53055],[12.62878,49.52699],[12.63221,49.53189],[12.63771,49.53144],[12.64457,49.52298],[12.64045,49.50113],[12.64389,49.49266],[12.64457,49.48418],[12.63771,49.48284],[12.63427,49.4766],[12.64114,49.47035],[12.64938,49.46812],[12.65762,49.45027],[12.65762,49.43464],[12.6789,49.4266],[12.70912,49.42437],[12.7153,49.4141],[12.73384,49.40918],[12.75787,49.39488],[12.76199,49.38282],[12.75718,49.37522],[12.76817,49.36538],[12.7771,49.36448],[12.78259,49.35912],[12.77778,49.35465],[12.77916,49.34659],[12.80593,49.34123],[12.83615,49.33988],[12.84233,49.34302],[12.8437,49.3457],[12.85469,49.33809],[12.85881,49.33944],[12.87803,49.33272],[12.88765,49.33362],[12.87872,49.35017],[12.89657,49.34883],[12.90138,49.34928],[12.91786,49.34391],[12.93022,49.3448],[12.93983,49.34257],[12.94258,49.34391],[12.95013,49.34346],[12.95837,49.33675],[12.97279,49.33451],[12.98858,49.32333],[13.00369,49.31214],[13.00712,49.30632],[13.02841,49.30497],[13.03115,49.28841],[13.02497,49.27945],[13.0339,49.26511],[13.05587,49.26466],[13.05931,49.25122],[13.07167,49.24674],[13.07991,49.24719],[13.08746,49.23912],[13.08677,49.23015],[13.11355,49.21894],[13.11012,49.20414],[13.12866,49.19696],[13.1623,49.17541],[13.17054,49.17407],[13.17741,49.16419],[13.17054,49.14443],[13.18359,49.1341],[13.20419,49.12377],[13.23577,49.11388],[13.28109,49.12107],[13.31337,49.10489],[13.34495,49.08825],[13.34632,49.08196],[13.37242,49.06441],[13.37722,49.05722],[13.39714,49.05137],[13.39714,49.04552],[13.39096,49.04326],[13.40057,49.03561],[13.40538,49.02391],[13.40126,49.0176],[13.40881,49.00815],[13.40263,48.99508],[13.40194,48.98652],[13.48091,48.95136],[13.49464,48.94144],[13.50769,48.94279],[13.50631,48.96849],[13.51524,48.96894],[13.52897,48.97435],[13.54957,48.96759],[13.56262,48.97075],[13.57086,48.96624],[13.57704,48.9703],[13.58116,48.97075],[13.59214,48.96128],[13.58871,48.95632],[13.60656,48.94099],[13.62579,48.94956],[13.6306,48.94685],[13.62236,48.93873],[13.63678,48.92565],[13.65531,48.89406],[13.66561,48.89361],[13.66767,48.89181],[13.67179,48.88007],[13.69171,48.87916],[13.70201,48.88187],[13.71849,48.87871],[13.72741,48.88278],[13.73016,48.88684],[13.73771,48.88458],[13.7384,48.87871],[13.75007,48.86607],[13.74939,48.85839],[13.75556,48.85342],[13.76861,48.83127],[13.79196,48.83082],[13.78852,48.82585],[13.79814,48.81681],[13.79539,48.81409],[13.81599,48.79646],[13.80569,48.78108],[13.81256,48.77429],[13.82629,48.77157],[13.83865,48.77157],[13.83934,48.76569],[13.82148,48.75483],[13.81942,48.73128],[13.8105,48.72856],[13.79539,48.71588],[13.80294,48.70863],[13.80981,48.70863],[13.8153,48.70093],[13.8359,48.70093],[13.83384,48.69368],[13.81324,48.69413],[13.81874,48.6701],[13.81462,48.64878],[13.82217,48.64243],[13.81942,48.63926],[13.82629,48.63563],[13.82492,48.62428],[13.8208,48.61475],[13.81668,48.61611],[13.8002,48.59659],[13.80706,48.58523],[13.80088,48.57433],[13.79196,48.57206],[13.76861,48.55343],[13.759,48.56661],[13.74733,48.55388],[13.75419,48.55206],[13.74321,48.54525],[13.74939,48.53934],[13.74801,48.53115],[13.73291,48.52524],[13.72741,48.51342],[13.70407,48.51842],[13.66424,48.53661],[13.65188,48.55025],[13.62373,48.55434],[13.59901,48.56888],[13.59008,48.56842],[13.58047,48.56161],[13.56742,48.56115],[13.52279,48.58887],[13.50769,48.59023],[13.50082,48.58069],[13.50631,48.57751],[13.50288,48.57251],[13.4864,48.56161],[13.48022,48.56388],[13.47473,48.56252],[13.47473,48.55706],[13.46717,48.55343],[13.45001,48.56343],[13.43627,48.55616],[13.44863,48.53934],[13.44932,48.53388],[13.44451,48.52979],[13.45687,48.51114],[13.42804,48.45698],[13.43902,48.43557],[13.42254,48.40504],[13.41499,48.37814],[13.36486,48.35214],[13.32504,48.3211],[13.25706,48.29233],[13.17947,48.29461],[13.1266,48.27862],[13.08677,48.27862],[13.05931,48.26628],[13.01742,48.25668],[12.99819,48.23656],[12.95219,48.20774],[12.87048,48.20225],[12.85949,48.18531],[12.85057,48.17753],[12.84713,48.16791],[12.83546,48.16562],[12.83134,48.15509],[12.81074,48.15188],[12.79701,48.14593],[12.79838,48.13951],[12.78671,48.12301],[12.77092,48.12851],[12.75856,48.12714],[12.75924,48.1198],[12.74963,48.11155],[12.75375,48.08358],[12.76886,48.06798],[12.84164,48.02299],[12.85743,48.00784],[12.87117,47.96785],[12.88765,47.95866],[12.91854,47.95544],[12.9206,47.9421],[12.92816,47.93842],[12.93571,47.9444],[12.94052,47.93428],[12.95219,47.91542],[12.96455,47.90437],[12.9824,47.87582],[13.00231,47.85509],[13.003,47.84496],[12.98721,47.83113],[12.96386,47.79793],[12.94738,47.78732],[12.93846,47.78548],[12.93914,47.77994],[12.92953,47.76886],[12.94189,47.76933],[12.94326,47.76471],[12.93571,47.75871],[12.93571,47.74855],[12.92129,47.7444],[12.90344,47.72546],[12.92472,47.70976],[12.94395,47.71161],[12.95562,47.70837],[12.98927,47.70837],[12.99545,47.71299],[13.00163,47.71345],[13.00987,47.72269],[13.01742,47.72269],[13.03047,47.71669],[13.04695,47.71207],[13.07029,47.6922],[13.08128,47.68573],[13.07647,47.67278],[13.08197,47.66215],[13.09776,47.63902],[13.09433,47.62745],[13.07235,47.61171],[13.06961,47.6057],[13.06274,47.60245],[13.07167,47.58856],[13.04489,47.58347],[13.04145,47.57559],[13.0545,47.5617],[13.03184,47.5325],[13.04557,47.52137],[13.04557,47.49168],[13.02703,47.48704],[13.003,47.46337],[12.99339,47.47219],[12.99408,47.47823],[12.97416,47.48426],[12.97073,47.47544],[12.90893,47.49679],[12.88421,47.51302],[12.8849,47.52044],[12.8643,47.52415],[12.86636,47.52925],[12.85675,47.52832],[12.84713,47.54687],[12.81967,47.54548],[12.80319,47.54965],[12.79289,47.55845],[12.7922,47.56587],[12.78121,47.57189],[12.78053,47.58208],[12.79495,47.59319],[12.79289,47.59875],[12.8128,47.61171],[12.82516,47.61079],[12.78945,47.633],[12.78396,47.63254],[12.75924,47.65197],[12.77778,47.66215],[12.78396,47.67093],[12.77984,47.67463],[12.7716,47.66585],[12.76405,47.66677],[12.75787,47.66307],[12.74551,47.67556],[12.73246,47.67879],[12.7153,47.67602],[12.69676,47.68249],[12.66723,47.68203],[12.65007,47.67186],[12.64595,47.67463],[12.63702,47.67139],[12.63153,47.67602],[12.61848,47.67371],[12.60681,47.67463],[12.59033,47.65891],[12.57659,47.63347],[12.53677,47.6367],[12.51205,47.62514],[12.49969,47.62514],[12.49145,47.63624],[12.46467,47.64827],[12.45094,47.66862],[12.43995,47.67602],[12.44133,47.69497],[12.43034,47.69543],[12.39944,47.69173],[12.36442,47.68388],[12.35481,47.69127],[12.33902,47.69173],[12.33764,47.69589],[12.28065,47.68942],[12.2628,47.67972],[12.2422,47.69358],[12.247,47.71068],[12.26554,47.73285],[12.25593,47.74394],[12.22709,47.719],[12.18589,47.70329],[12.16117,47.70052],[12.16873,47.67925],[12.1804,47.66954],[12.18521,47.66122],[12.19894,47.63994],[12.20306,47.62236],[12.20855,47.61357],[12.201,47.60616],[12.17834,47.6006],[12.1804,47.61403],[12.16323,47.61449],[12.13851,47.60662],[12.12684,47.60662],[12.11586,47.61171],[12.08084,47.61032],[12.0623,47.61866],[12.04994,47.61495],[12.0362,47.61727],[12.02934,47.61218],[12.02041,47.61032],[12.01149,47.62514],[11.98196,47.61866],[11.97647,47.61449],[11.96823,47.61819],[11.93321,47.61264],[11.91398,47.61449],[11.90162,47.60847],[11.86386,47.60107],[11.85493,47.60384],[11.84532,47.58162],[11.78215,47.59088],[11.70318,47.58949],[11.6764,47.58393],[11.65718,47.5844],[11.63658,47.59597],[11.63246,47.58115],[11.62147,47.58532],[11.61323,47.58069],[11.60705,47.58208],[11.60156,47.56865],[11.58645,47.55706],[11.59057,47.55057],[11.58577,47.54594],[11.58783,47.52508],[11.57547,47.51951],[11.57203,47.51441],[11.53701,47.50978],[11.51916,47.51024],[11.50405,47.50514],[11.48002,47.50931],[11.44981,47.50746],[11.44157,47.5172],[11.41822,47.50282],[11.40724,47.49122],[11.38389,47.47498],[11.39144,47.46709],[11.40861,47.46662],[11.42166,47.44527],[11.37565,47.44991],[11.36947,47.4448],[11.3578,47.44991],[11.33789,47.4513],[11.33239,47.44062],[11.32278,47.43644],[11.31523,47.4318],[11.29257,47.42855],[11.29394,47.41647],[11.28433,47.40299],[11.22528,47.39602],[11.25274,47.42901],[11.25068,47.43319],[11.22116,47.43041],[11.20605,47.43366],[11.1985,47.42901],[11.17652,47.4253],[11.15455,47.42111],[11.12846,47.41136],[11.12297,47.40392],[11.12365,47.39927],[11.11198,47.39463],[11.05361,47.39602],[11.04744,47.3937],[11.03645,47.39649],[11.02958,47.3937],[11.02409,47.39695],[11.00692,47.39463],[10.97122,47.40113],[10.9719,47.4174],[10.98126,47.4185],[10.98452,47.42065],[10.98349,47.43012],[10.95336,47.45455],[10.92796,47.47173],[10.93826,47.48101],[10.91011,47.48565],[10.88401,47.48008],[10.86822,47.4838],[10.87028,47.49864],[10.89157,47.50699],[10.91697,47.51302],[10.91697,47.51951],[10.9053,47.51812],[10.88951,47.5376],[10.85449,47.53528],[10.83801,47.52554],[10.83389,47.52925],[10.81123,47.52554],[10.81466,47.51998],[10.79406,47.52044],[10.77896,47.5158],[10.7611,47.52137],[10.76042,47.53528],[10.72265,47.53852],[10.71098,47.54455],[10.6945,47.54548],[10.69107,47.55799],[10.62995,47.55938],[10.61897,47.56587],[10.59768,47.57004],[10.58052,47.55567],[10.58189,47.55011],[10.57159,47.53342],[10.55923,47.5376],[10.52352,47.53621],[10.48988,47.54084],[10.47271,47.55057],[10.45623,47.55567],[10.47203,47.56957],[10.47065,47.5793],[10.48301,47.58393],[10.47203,47.58856],[10.45623,47.58301],[10.43426,47.5844],[10.42877,47.57652],[10.43357,47.56772],[10.44319,47.56818],[10.45143,47.55475],[10.43907,47.52462],[10.44181,47.51395],[10.43083,47.50328],[10.44456,47.48472],[10.46447,47.48333],[10.46653,47.4527],[10.47546,47.43319],[10.46035,47.42808],[10.45829,47.42019],[10.43838,47.41322],[10.42808,47.39556],[10.43701,47.38114],[10.42053,47.38579],[10.41297,47.37975],[10.39375,47.3751],[10.3862,47.35743],[10.35804,47.33696],[10.34568,47.31601],[10.32508,47.30531],[10.31684,47.3067],[10.27908,47.28807],[10.24543,47.28016],[10.23307,47.26991],[10.2214,47.2769],[10.2008,47.27736],[10.17471,47.27177],[10.17952,47.29785],[10.19599,47.29692],[10.21522,47.31229],[10.19943,47.32672],[10.20698,47.33416],[10.20423,47.33789],[10.21797,47.34998],[10.21797,47.35464],[10.23582,47.37371],[10.23239,47.38021],[10.23513,47.38161],[10.22827,47.38951],[10.21385,47.38254],[10.19393,47.38905],[10.18226,47.3923],[10.1802,47.38719],[10.16921,47.38626],[10.16853,47.37045],[10.14106,47.36812],[10.11772,47.3751],[10.10055,47.3551],[10.0827,47.39323],[10.08544,47.39881],[10.06965,47.40857],[10.07309,47.41461],[10.09574,47.41786],[10.10467,47.42855],[10.09437,47.44016],[10.09231,47.45966],[10.07446,47.45595],[10.0518,47.46895],[10.05455,47.47591],[10.04219,47.48936],[10.00236,47.4824],[9.98863,47.49864],[9.99481,47.50328],[9.9646,47.52137],[9.97146,47.54594],[9.95842,47.54177],[9.96185,47.53574],[9.94056,47.53713],[9.91859,47.53111],[9.90692,47.54038],[9.8822,47.54918],[9.8767,47.5427],[9.87327,47.52925],[9.85679,47.53482],[9.84855,47.54177],[9.81697,47.54965],[9.82589,47.56077],[9.82109,47.57189],[9.82795,47.5793],[9.82315,47.58764],[9.80323,47.59644],[9.77645,47.59505],[9.74968,47.56911],[9.73388,47.5464],[9.73663,47.53389],[9.72839,47.53482],[9.55947,47.53064],[9.56085,47.49864],[9.56428,47.494],[9.58145,47.48426],[9.59449,47.46245],[9.60136,47.46152],[9.60685,47.47173],[9.62127,47.45827],[9.65835,47.4527],[9.65972,47.44805],[9.64462,47.43877],[9.6508,47.4239],[9.6508,47.40485],[9.65972,47.39788],[9.67346,47.39277],[9.67414,47.38161],[9.66384,47.37045],[9.62539,47.36487],[9.60205,47.34952],[9.58969,47.31974],[9.58213,47.31043],[9.55467,47.29692],[9.54986,47.28249],[9.53201,47.27037],[9.56565,47.24241],[9.55329,47.22656],[9.58282,47.20604],[9.57389,47.18924],[9.57321,47.17617],[9.56428,47.17057],[9.58007,47.17011],[9.59793,47.1617],[9.61166,47.1477],[9.6199,47.15143],[9.62471,47.14676],[9.62539,47.13228],[9.63707,47.12901],[9.62196,47.10985],[9.63569,47.10051],[9.63363,47.08415],[9.61441,47.07807],[9.61303,47.06871],[9.60617,47.06123],[9.62402,47.05187],[9.64187,47.05421],[9.64325,47.05936],[9.6556,47.05796],[9.68032,47.06263],[9.692,47.05375],[9.70672,47.05341],[9.70575,47.0499],[9.71809,47.04439],[9.74349,47.04252],[9.74693,47.03737],[9.78469,47.03784],[9.83207,47.01443],[9.85405,47.01678],[9.86022,47.02192],[9.87808,47.01818],[9.87327,47.01116],[9.88632,47.00039],[9.8925,46.98962],[9.8719,46.96525],[9.87808,46.95588],[9.8767,46.93479],[9.93782,46.91275],[9.95704,46.91556],[9.9646,46.91181],[9.97558,46.9165],[9.98451,46.90524],[10.00236,46.90008],[10.01815,46.90149],[10.05249,46.87568],[10.0518,46.863],[10.08956,46.85925],[10.10673,46.83999],[10.1239,46.84798],[10.14175,46.84704],[10.14656,46.85173],[10.15823,46.84798],[10.18158,46.85549],[10.19531,46.86629],[10.23239,46.86723],[10.22895,46.89867],[10.24084,46.93145],[10.29899,46.92119],[10.31547,46.92494],[10.31547,46.93151],[10.30654,46.94135],[10.30723,46.94932],[10.32646,46.95307],[10.3292,46.96619],[10.35324,46.99243],[10.37177,46.99149],[10.3862,47.00039],[10.42671,46.97463],[10.4219,46.96104],[10.4528,46.95166],[10.48713,46.9376],[10.48576,46.91415],[10.46585,46.88413],[10.47134,46.85549],[10.46585,46.83577],[10.45623,46.83013],[10.45555,46.8165],[10.45005,46.80288],[10.42945,46.79629],[10.42327,46.78783],[10.43975,46.7742],[10.43975,46.75115],[10.40062,46.73468],[10.41778,46.71868],[10.41503,46.70879],[10.40062,46.70173],[10.39306,46.68854],[10.38208,46.68618],[10.39169,46.66922],[10.4013,46.63765],[10.44662,46.64142],[10.48919,46.61596],[10.4837,46.59378],[10.47477,46.56688],[10.47821,46.5565],[10.46928,46.54375],[10.46104,46.54327],[10.45349,46.53288],[10.41915,46.5513],[10.39718,46.54375],[10.36628,46.55508],[10.35186,46.55508],[10.3395,46.54327],[10.32577,46.55177],[10.31272,46.54563],[10.29693,46.55036],[10.29624,46.55791],[10.28642,46.57051],[10.26912,46.57774],[10.2523,46.57113],[10.24269,46.59142],[10.25917,46.61077],[10.24269,46.62492],[10.23857,46.63576],[10.22415,46.62916],[10.21522,46.61784],[10.19325,46.62397],[10.15205,46.61596],[10.13076,46.60605],[10.10261,46.60935],[10.10124,46.59001],[10.09712,46.57821],[10.07858,46.57396],[10.08476,46.56735],[10.07103,46.55933],[10.06073,46.54658],[10.04631,46.5428],[10.04287,46.53666],[10.05111,46.53005],[10.05111,46.51257],[10.04356,46.50879],[10.04562,46.4861],[10.04356,46.47995],[10.05455,46.46245],[10.04013,46.44542],[10.05729,46.4388],[10.06347,46.42649],[10.07926,46.42744],[10.07995,46.42176],[10.10192,46.42034],[10.12802,46.43217],[10.14106,46.42791],[10.14793,46.41513],[10.16029,46.41703],[10.16441,46.40898],[10.16166,46.39004],[10.14175,46.3872],[10.12802,46.37772],[10.13008,46.36067],[10.1081,46.35308],[10.10467,46.3346],[10.11497,46.31421],[10.16098,46.28195],[10.16372,46.27151],[10.17334,46.26534],[10.17471,46.25679],[10.15136,46.2397],[10.14587,46.2302],[10.12321,46.22355],[10.10192,46.22735],[10.08132,46.22497],[10.07103,46.21737],[10.04416,46.23061],[10.05935,46.24872],[10.05455,46.26534],[10.03189,46.27578],[9.99755,46.2848],[9.99206,46.29808],[10.00167,46.30188],[9.99687,46.30709],[10.00041,46.31299],[9.99446,46.31468],[9.98039,46.32322],[9.98554,46.33436],[9.99652,46.34289],[9.99618,46.35214],[9.98451,46.35237],[9.96391,46.36446],[9.95636,46.3737],[9.9585,46.37821],[9.95361,46.37962],[9.93232,46.37488],[9.92477,46.36635],[9.90711,46.38094],[9.88288,46.37441],[9.86846,46.36398],[9.82864,46.36067],[9.81765,46.35119],[9.77783,46.33555],[9.76478,46.33555],[9.74418,46.35214],[9.72289,46.34171],[9.72633,46.3327],[9.7174,46.32464],[9.72495,46.3199],[9.72495,46.31041],[9.7174,46.30377],[9.71534,46.29334],[9.69612,46.29191],[9.67758,46.30235],[9.6405,46.28717],[9.61715,46.28812],[9.61166,46.29429],[9.58419,46.29476],[9.56016,46.30567],[9.55192,46.30282],[9.5327,46.31231],[9.51553,46.33223],[9.50729,46.35214],[9.4963,46.36493],[9.46137,46.37535],[9.46746,46.39004],[9.4606,46.41371],[9.45304,46.41797],[9.4606,46.44306],[9.45785,46.46482],[9.4654,46.46766],[9.46334,46.4809],[9.44961,46.48042],[9.44961,46.48373],[9.45991,46.48515],[9.46266,46.50784],[9.43519,46.49697],[9.42283,46.48799],[9.42489,46.47522],[9.41245,46.46706],[9.39056,46.47333],[9.38507,46.48231],[9.36996,46.49224],[9.37271,46.50311],[9.36309,46.50926],[9.35417,46.50453],[9.33975,46.50406],[9.31022,46.50359],[9.28138,46.49614],[9.27589,46.48279],[9.2752,46.45914],[9.26765,46.45157],[9.24842,46.44779],[9.24842,46.43217],[9.26422,46.42081],[9.27795,46.41892],[9.27932,46.40046],[9.27589,46.39477],[9.28413,46.38625],[9.27452,46.37204],[9.28276,46.35877],[9.29512,46.35545],[9.29992,46.34313],[9.291,46.33602],[9.29855,46.32654],[9.29443,46.31753],[9.28482,46.31468],[9.28138,46.30947],[9.28482,46.29666],[9.26696,46.28195],[9.25941,46.27863],[9.25666,46.26866],[9.25117,46.26581],[9.24705,46.23257],[9.23538,46.23352],[9.22233,46.22782],[9.21752,46.21215],[9.20105,46.20882],[9.19418,46.18078],[9.18182,46.16841],[9.16053,46.17032],[9.1571,46.16271],[9.13513,46.15462],[9.12277,46.13464],[9.07269,46.11834],[9.0905,46.08799],[9.08157,46.07799],[9.07745,46.0656],[9.04998,46.06275],[9.01634,46.05083],[9.01702,46.04416],[9.00758,46.02855],[9.02286,46.01651],[9.02492,46.00006],[9.0287,45.99338],[9.02286,45.99266],[9.02183,45.98885],[9.01805,45.98813],[9.01187,45.98861],[9.01119,45.9836],[9.00329,45.98002],[8.99642,45.98002],[8.99471,45.97167],[8.98853,45.97143],[8.99299,45.96642],[9.01325,45.96022],[9.01634,45.94924],[9.01325,45.94255],[9.0232,45.9373],[9.0184,45.9287],[9.02767,45.92823],[9.03076,45.92631],[9.04277,45.92703],[9.04964,45.91987],[9.0596,45.92106],[9.05891,45.917],[9.06784,45.91151],[9.07299,45.91318],[9.07676,45.91103],[9.07539,45.90482],[9.07607,45.90028],[9.08741,45.90195],[9.08878,45.89765],[9.07779,45.89192],[9.0771,45.88403],[9.07196,45.88188],[9.06749,45.87542],[9.05548,45.87471],[9.04861,45.86275],[9.05067,45.85391],[9.03625,45.84099],[9.03659,45.83645],[9.0311,45.82425],[9.03419,45.82186],[9.02973,45.82018],[9.02252,45.8221],[9.01702,45.81851],[8.99368,45.82281],[8.99677,45.83478],[8.98647,45.8386],[8.97651,45.83621],[8.97274,45.83286],[8.96106,45.83669],[8.95523,45.84339],[8.94046,45.84243],[8.93016,45.83501],[8.91986,45.83501],[8.913,45.83047],[8.91334,45.84123],[8.93428,45.86156],[8.94596,45.8673],[8.94115,45.87112],[8.93772,45.86778],[8.93463,45.87112],[8.93085,45.88594],[8.92089,45.89669],[8.92639,45.90434],[8.91334,45.91915],[8.90647,45.91915],[8.89205,45.933],[8.89755,45.94589],[8.8948,45.95831],[8.87764,45.95735],[8.86047,45.9669],[8.84262,45.97692],[8.83163,45.98837],[8.79318,45.99171],[8.7918,45.98932],[8.78562,45.98885],[8.79318,46.00697],[8.80485,46.02128],[8.8179,46.02605],[8.8282,46.03415],[8.83369,46.04273],[8.82957,46.04654],[8.833,46.05131],[8.84468,46.04797],[8.85429,46.06179],[8.85154,46.07561],[8.80622,46.10085],[8.79867,46.09513],[8.78288,46.09418],[8.7561,46.10466],[8.74511,46.11513],[8.7149,46.09656],[8.69705,46.1018],[8.68469,46.1018],[8.67919,46.11037],[8.66958,46.11037],[8.65654,46.11323],[8.64658,46.12352],[8.61259,46.12179],[8.60916,46.13226],[8.59268,46.14416],[8.6016,46.15272],[8.58169,46.16366],[8.57757,46.16318],[8.56452,46.18458],[8.5556,46.18553],[8.55285,46.19266],[8.5398,46.19741],[8.53157,46.2207],[8.46908,46.234],[8.46359,46.24445],[8.44659,46.24807],[8.44179,46.2543],[8.45603,46.26397],[8.42814,46.29767],[8.43956,46.30443],[8.44436,46.32037],[8.45192,46.3199],[8.46427,46.33507],[8.46153,46.35403],[8.46977,46.36351],[8.46565,46.38151],[8.46221,46.38814],[8.46908,46.3962],[8.4629,46.40519],[8.46822,46.41212],[8.45741,46.42365],[8.46153,46.43028],[8.45741,46.43596],[8.46565,46.44448],[8.44368,46.46529],[8.38806,46.4511],[8.37158,46.45299],[8.3242,46.42555],[8.30746,46.42496],[8.28987,46.40821],[8.30841,46.40282],[8.31802,46.39525],[8.31253,46.37914],[8.29261,46.37346],[8.28025,46.36493],[8.27064,46.36635],[8.2624,46.36256],[8.26171,46.3474],[8.22326,46.33412],[8.21159,46.30899],[8.17932,46.29856],[8.1594,46.29571],[8.13949,46.3033],[8.07907,46.25964],[8.10859,46.24872],[8.11065,46.23875],[8.13812,46.2264],[8.15116,46.19409],[8.16558,46.1822],[8.1491,46.16271],[8.15322,46.14749],[8.14224,46.13512],[8.13194,46.13797],[8.11408,46.13083],[8.10859,46.11275],[8.07838,46.10608],[8.03572,46.10043],[8.0219,46.06965],[8.03443,46.04464],[8.01384,46.03272],[8.01727,46.02462],[8.01109,46.02128],[8.01384,46.0146],[8.0001,46.0127],[7.9898,45.996],[7.97401,45.99982],[7.94517,45.99696],[7.90741,45.99648],[7.89367,45.97787],[7.87719,45.9731],[7.88063,45.96451],[7.87307,45.95687],[7.87651,45.94828],[7.86895,45.94589],[7.87239,45.93252],[7.87788,45.92584],[7.86552,45.91581],[7.81951,45.92918],[7.80235,45.92058],[7.76802,45.93682],[7.74879,45.94064],[7.73368,45.92297],[7.72132,45.9244],[7.70896,45.93587],[7.70965,45.94971],[7.69798,45.95544],[7.68013,45.9564],[7.66365,45.97644],[7.64099,45.97024],[7.58331,45.97358],[7.57782,45.98694],[7.54554,45.98551],[7.54142,45.97692],[7.54554,45.96308],[7.53936,45.95449],[7.51739,45.96212],[7.50778,45.95878],[7.49816,45.96212],[7.49404,45.95496],[7.47139,45.94709],[7.47345,45.93634],[7.44323,45.93157],[7.41577,45.90768],[7.40066,45.91007],[7.38693,45.89622],[7.34504,45.91485],[7.31895,45.91151],[7.31483,45.91581],[7.29286,45.92106],[7.275,45.90004],[7.25715,45.88714],[7.24874,45.89311],[7.21595,45.88905],[7.1981,45.87375],[7.19947,45.86323],[7.18986,45.85702],[7.16102,45.87088],[7.16445,45.87614],[7.15553,45.87949],[7.13356,45.87041],[7.10815,45.85845],[7.09373,45.87041],[7.09373,45.8771],[7.07519,45.89192],[7.06489,45.89956],[7.06283,45.91055],[7.04292,45.92202],[7.01957,45.91676],[7.00035,45.89813],[7.00653,45.88522],[6.99691,45.87184],[6.95159,45.86036],[6.93924,45.84697],[6.91177,45.84075],[6.8795,45.84793],[6.8692,45.82497],[6.84654,45.83932],[6.82045,45.83788],[6.80534,45.81492],[6.81289,45.8087],[6.81221,45.79529],[6.80603,45.79194],[6.80191,45.77997],[6.8074,45.74788],[6.81701,45.74021],[6.8074,45.72631],[6.81907,45.71864],[6.82937,45.70186],[6.84104,45.69898],[6.84791,45.68939],[6.86714,45.68267],[6.8946,45.67692],[6.90353,45.68075],[6.90902,45.67356],[6.90353,45.66396],[6.9164,45.65988],[6.9164,45.6516],[6.931,45.6468],[6.96121,45.65292],[6.97013,45.6534],[6.97425,45.64572],[6.9873,45.64572],[6.99348,45.63996],[6.99966,45.64044],[6.99829,45.62892],[6.98455,45.62268],[6.97769,45.58953],[6.99485,45.57656],[6.99554,45.56646],[6.98936,45.56502],[6.99623,45.54483],[6.99005,45.53184],[7.00515,45.51885],[6.99829,45.50442],[7.01957,45.49624],[7.04704,45.4972],[7.05459,45.49383],[7.05665,45.48805],[7.04772,45.4842],[7.04772,45.47217],[7.0594,45.4712],[7.06558,45.47409],[7.10472,45.46687],[7.09716,45.45868],[7.1109,45.44568],[7.11502,45.43363],[7.15347,45.42351],[7.16377,45.41291],[7.18368,45.40809],[7.17887,45.39073],[7.16308,45.38205],[7.15965,45.36854],[7.16308,45.35938],[7.1521,45.356],[7.13974,45.35118],[7.13081,45.33959],[7.13493,45.33235],[7.12463,45.32608],[7.1157,45.32897],[7.10952,45.31884],[7.11845,45.31159],[7.12188,45.29421],[7.13562,45.27971],[7.13012,45.27295],[7.1363,45.25507],[7.126,45.2454],[7.11021,45.24733],[7.10609,45.23863],[7.08206,45.22461],[7.08274,45.21639],[7.0697,45.21155],[7.0491,45.22751],[7.02163,45.2159],[7.00241,45.21832],[6.99417,45.21252],[6.96395,45.20623],[6.96121,45.20236],[6.9667,45.19703],[6.95365,45.19074],[6.95503,45.1801],[6.94404,45.17719],[6.9461,45.1709],[6.91177,45.16751],[6.89392,45.16896],[6.89186,45.16122],[6.88156,45.15686],[6.89735,45.14185],[6.87332,45.13361],[6.84722,45.1278],[6.84654,45.13555],[6.83486,45.13604],[6.80809,45.14814],[6.76826,45.15928],[6.74148,45.13652],[6.71127,45.14475],[6.69204,45.13846],[6.68037,45.13991],[6.67282,45.12586],[6.64741,45.11423],[6.63436,45.11617],[6.62475,45.10357],[6.64741,45.08467],[6.64466,45.07497],[6.65222,45.07012],[6.6632,45.07012],[6.66252,45.0546],[6.66046,45.05266],[6.67076,45.04441],[6.66526,45.04053],[6.6735,45.02112],[6.72431,45.02161],[6.74491,45.01433],[6.75109,44.99588],[6.73805,44.99442],[6.73942,44.99054],[6.75041,44.98422],[6.75384,44.97645],[6.76483,44.97062],[6.76483,44.96139],[6.74491,44.93612],[6.75865,44.93952],[6.76071,44.93272],[6.7559,44.93272],[6.74766,44.92105],[6.75041,44.90646],[6.76551,44.90257],[6.77375,44.90355],[6.7868,44.89041],[6.80122,44.89187],[6.80671,44.87582],[6.86851,44.85051],[6.90902,44.84564],[6.93443,44.86317],[6.97494,44.8471],[7.00309,44.84077],[7.01065,44.82519],[7.02232,44.82227],[7.01957,44.81399],[6.99966,44.79255],[7.02438,44.76672],[7.02575,44.73893],[7.04017,44.71941],[7.06558,44.71453],[7.07794,44.68232],[7.05871,44.67939],[7.03399,44.69208],[7.00172,44.68769],[6.9976,44.6916],[6.98799,44.69013],[6.97082,44.67646],[6.95983,44.6789],[6.96052,44.6623],[6.94816,44.65351],[6.96121,44.62615],[6.96945,44.62615],[6.9667,44.61784],[6.95297,44.62077],[6.94885,44.60953],[6.9358,44.60171],[6.93443,44.57335],[6.91383,44.56796],[6.91452,44.55965],[6.87675,44.55378],[6.86851,44.53763],[6.8534,44.5298],[6.86027,44.50434],[6.87538,44.48279],[6.89186,44.47299],[6.90353,44.46907],[6.91108,44.45044],[6.93718,44.43966],[6.94679,44.43083],[6.93237,44.43083],[6.931,44.42544],[6.9207,44.42201],[6.91795,44.42691],[6.89598,44.42054],[6.89666,44.37393],[6.88774,44.36656],[6.88636,44.36067],[6.92344,44.35085],[6.9255,44.33416],[6.95846,44.31254],[6.95365,44.29682],[6.97151,44.29485],[6.97151,44.28552],[6.98112,44.28601],[6.99417,44.28011],[6.9976,44.24962],[7.00927,44.23486],[7.0285,44.23142],[7.03743,44.22502],[7.07107,44.2329],[7.14523,44.20042],[7.16239,44.20829],[7.1775,44.19697],[7.18849,44.20189],[7.21939,44.17038],[7.23587,44.17383],[7.24479,44.17137],[7.26196,44.1492],[7.28187,44.14378],[7.34024,44.14674],[7.36084,44.11766],[7.38899,44.12554],[7.42538,44.11174],[7.42813,44.13047],[7.46315,44.12752],[7.50572,44.14476],[7.52014,44.13688],[7.53112,44.1492],[7.54966,44.14575],[7.56683,44.15462],[7.61833,44.15018],[7.63618,44.17728],[7.68356,44.17432],[7.6815,44.16496],[7.6712,44.15807],[7.68013,44.14624],[7.66502,44.13195],[7.69386,44.09942],[7.71652,44.08314],[7.70416,44.04318],[7.67532,44.02935],[7.66365,44.03034],[7.66845,43.99923],[7.65197,43.97453],[7.61146,43.95476],[7.60047,43.95723],[7.57095,43.94784],[7.57232,43.93696],[7.5682,43.92312],[7.5579,43.91867],[7.56065,43.89987],[7.49473,43.87215],[7.4961,43.84987],[7.50778,43.84245],[7.51876,43.80232],[7.53112,43.78547],[7.53736,43.74542],[7,43],[7,38.5],[12.24441,37.25],[13.27007,36],[14,35],[19,35],[19,40],[19.75,40],[19.96902,39.79482],[19.95391,39.68605],[20.00061,39.68076],[20.00885,39.69239],[20.03082,39.69979],[20.03631,39.69186],[20.06584,39.68869],[20.0782,39.67918],[20.08918,39.68288],[20.09811,39.67072],[20.11047,39.66649],[20.12901,39.65592],[20.15098,39.65487],[20.1757,39.64799],[20.18188,39.64905],[20.19287,39.64429],[20.22926,39.64905],[20.21827,39.66491],[20.23132,39.67759],[20.22857,39.68235],[20.23063,39.68552],[20.24505,39.68288],[20.26359,39.67178],[20.26359,39.68552],[20.2684,39.69609],[20.27732,39.70031],[20.2835,39.71194],[20.29998,39.71352],[20.31234,39.72567],[20.32127,39.72937],[20.32127,39.73623],[20.30616,39.74573],[20.30342,39.75154],[20.29174,39.76527],[20.30754,39.77899],[20.28762,39.80589],[20.3041,39.81592],[20.31646,39.80906],[20.32676,39.81011],[20.35697,39.79851],[20.37551,39.78479],[20.39131,39.78796],[20.39474,39.79376],[20.41397,39.81433],[20.41603,39.84123],[20.38925,39.86969],[20.38238,39.88181],[20.38444,39.89077],[20.37071,39.89446],[20.35972,39.91342],[20.35354,39.91342],[20.33706,39.92448],[20.34599,39.94606],[20.33432,39.96238],[20.32745,39.96449],[20.3247,39.97343],[20.31921,39.97448],[20.31234,39.99079],[20.33775,39.99185],[20.37483,39.98922],[20.37895,39.99342],[20.39131,39.99658],[20.39955,40.00763],[20.39817,40.01604],[20.41122,40.02866],[20.41397,40.03865],[20.40985,40.04916],[20.42221,40.06125],[20.44898,40.07386],[20.46478,40.07386],[20.47576,40.06546],[20.4895,40.06388],[20.50735,40.07649],[20.51078,40.0828],[20.54992,40.06546],[20.5973,40.07124],[20.62339,40.08962],[20.64125,40.09015],[20.66665,40.09698],[20.67626,40.09645],[20.67695,40.12586],[20.68519,40.14266],[20.69412,40.15158],[20.67626,40.1668],[20.68244,40.18307],[20.67832,40.18884],[20.70716,40.19985],[20.71334,40.21139],[20.72227,40.21558],[20.72364,40.22659],[20.72158,40.25385],[20.71334,40.25699],[20.70716,40.26747],[20.71472,40.28423],[20.73051,40.29576],[20.73394,40.31042],[20.76416,40.32142],[20.7566,40.33189],[20.76553,40.3434],[20.77583,40.34968],[20.77583,40.35596],[20.78407,40.35753],[20.79162,40.36224],[20.79231,40.38421],[20.7875,40.3999],[20.79299,40.41401],[20.78407,40.42499],[20.79574,40.43492],[20.81291,40.44067],[20.81634,40.43858],[20.82321,40.44067],[20.82252,40.44642],[20.82801,40.45008],[20.83213,40.46418],[20.84312,40.47933],[20.85754,40.47829],[20.87196,40.47045],[20.87677,40.47306],[20.90629,40.47515],[20.91659,40.47045],[20.91796,40.46732],[20.92689,40.46262],[20.95161,40.46784],[20.95367,40.47306],[20.95985,40.48351],[20.96672,40.48769],[20.96946,40.49918],[20.96328,40.5091],[20.96946,40.52058],[20.9777,40.52006],[20.97908,40.52476],[21.00036,40.53676],[20.99762,40.54146],[21.00517,40.55241],[21.02371,40.55607],[21.04087,40.55711],[21.04362,40.56702],[21.04568,40.57328],[21.04019,40.59101],[21.04362,40.59414],[21.04705,40.60248],[21.04431,40.61395],[21.05529,40.61708],[21.05186,40.63532],[21.05735,40.66553],[21.04293,40.68272],[21.02645,40.70718],[21.01135,40.72124],[20.988,40.73269],[20.98251,40.73893],[20.98526,40.75141],[20.98045,40.76286],[20.97084,40.76338],[20.96534,40.76858],[20.95642,40.77066],[20.97633,40.78106],[20.98388,40.79197],[20.98388,40.85433],[21.12121,40.85381],[21.1473,40.8564],[21.1576,40.85848],[21.16104,40.86419],[21.17065,40.86835],[21.17683,40.8751],[21.19743,40.87769],[21.20498,40.88444],[21.24275,40.87458],[21.25167,40.86264],[21.26129,40.85952],[21.2709,40.86627],[21.28532,40.86419],[21.31553,40.86783],[21.31965,40.87043],[21.32789,40.87094],[21.35192,40.87769],[21.36085,40.87873],[21.41647,40.91818],[21.4405,40.91662],[21.46522,40.90676],[21.48994,40.91247],[21.51878,40.90884],[21.52496,40.91039],[21.53183,40.90624],[21.53938,40.89431],[21.54762,40.89067],[21.55174,40.88237],[21.56547,40.87666],[21.5689,40.86731],[21.58607,40.86939],[21.59225,40.86627],[21.60324,40.88081],[21.6101,40.87925],[21.61972,40.88912],[21.62796,40.88756],[21.63482,40.89638],[21.64787,40.90105],[21.67121,40.90053],[21.66709,40.9187],[21.67121,40.92804],[21.68151,40.93322],[21.68289,40.93997],[21.70555,40.94308],[21.73095,40.93063],[21.73713,40.93115],[21.7543,40.92804],[21.75361,40.92544],[21.77146,40.92855],[21.78485,40.92881],[21.79618,40.94126],[21.80511,40.94412],[21.8003,40.95812],[21.79962,40.97575],[21.81884,40.98819],[21.83326,40.99441],[21.84425,40.99596],[21.84974,41.00322],[21.84768,41.00684],[21.86004,41.01824],[21.8827,41.02705],[21.88201,41.04155],[21.89849,41.03896],[21.9136,41.05036],[21.90948,41.05605],[21.90879,41.06433],[21.90399,41.06899],[21.91017,41.08452],[21.91017,41.09177],[21.92253,41.09591],[21.93214,41.10419],[21.94999,41.11195],[21.95549,41.11867],[21.96235,41.11712],[21.97403,41.13005],[21.99256,41.12695],[22.02896,41.13367],[22.0475,41.14815],[22.0578,41.14815],[22.0626,41.16056],[22.08183,41.15074],[22.07908,41.14557],[22.09419,41.13677],[22.09693,41.13833],[22.11479,41.13315],[22.12852,41.12333],[22.14843,41.12798],[22.15599,41.14039],[22.16354,41.14453],[22.17109,41.15797],[22.19375,41.16314],[22.20611,41.16159],[22.2171,41.17038],[22.23907,41.16366],[22.26997,41.16366],[22.27546,41.15435],[22.28439,41.15642],[22.30499,41.14557],[22.32147,41.15022],[22.32147,41.14298],[22.32627,41.13109],[22.32627,41.12126],[22.33314,41.12126],[22.33245,41.12747],[22.34962,41.13626],[22.36404,41.13315],[22.36816,41.13833],[22.38876,41.13264],[22.40387,41.13781],[22.40181,41.12953],[22.41622,41.11919],[22.45811,41.12022],[22.46635,41.11712],[22.47047,41.12022],[22.51716,41.12747],[22.56111,41.13109],[22.57278,41.11971],[22.59269,41.11764],[22.61741,41.13367],[22.64213,41.16108],[22.64625,41.17968],[22.66548,41.18692],[22.70942,41.13988],[22.71766,41.1435],[22.73277,41.14557],[22.74787,41.16263],[22.75749,41.25819],[22.76092,41.26542],[22.7568,41.27522],[22.76573,41.29328],[22.75886,41.29792],[22.7568,41.30876],[22.76573,41.32526],[22.7877,41.32784],[22.79937,41.34021],[22.80761,41.33866],[22.81105,41.34227],[22.82203,41.33557],[22.88932,41.34176],[22.93602,41.33815],[22.95181,41.35207],[22.96348,41.35361],[22.96485,41.37062],[22.96279,41.38093],[22.96691,41.3938],[22.96073,41.40926],[22.95455,41.41235],[22.95249,41.41904],[22.96348,41.4314],[22.96829,41.4314],[22.97996,41.44735],[22.96417,41.46537],[22.96623,41.47566],[22.96073,41.47926],[22.95867,41.4952],[22.96966,41.50394],[22.97103,41.51783],[22.96348,41.52348],[22.95867,41.53685],[22.96005,41.54199],[22.96897,41.5425],[22.96966,41.55483],[22.97309,41.56305],[22.96691,41.56768],[22.96485,41.57847],[22.95936,41.58566],[22.95249,41.58566],[22.94975,41.59952],[22.95455,41.618],[22.95249,41.62776],[22.947,41.63186],[22.95112,41.64315],[22.96623,41.64931],[22.98339,41.64777],[22.98545,41.65239],[22.98133,41.65649],[22.98614,41.65854],[22.99369,41.67393],[23.0088,41.68419],[23.02185,41.70214],[23.02734,41.70367],[23.03283,41.7088],[23.03077,41.72879],[23.02047,41.74826],[23.01498,41.75082],[23.01429,41.75748],[23.00674,41.76926],[22.99369,41.7667],[22.9882,41.77233],[22.97035,41.77182],[22.96142,41.77694],[22.96623,41.78104],[22.96485,41.78872],[22.94151,41.81533],[22.94288,41.82813],[22.93533,41.84399],[22.93739,41.84756],[22.93121,41.85063],[22.92709,41.86495],[22.9113,41.87774],[22.90168,41.8762],[22.89619,41.89921],[22.89825,41.90278],[22.89001,41.91914],[22.88246,41.9222],[22.87422,41.93701],[22.87765,41.94365],[22.87353,41.95591],[22.87765,41.97684],[22.8749,41.97786],[22.8749,41.99726],[22.8646,42.00338],[22.86735,42.01665],[22.86598,42.02277],[22.85705,42.02226],[22.85224,42.02532],[22.84469,42.02022],[22.82615,42.02124],[22.81654,42.02685],[22.79869,42.04725],[22.79319,42.03756],[22.74856,42.04623],[22.73414,42.04725],[22.72796,42.05898],[22.71766,42.06815],[22.69844,42.06407],[22.67509,42.06407],[22.6696,42.06917],[22.63046,42.09363],[22.61879,42.0972],[22.61192,42.09567],[22.60093,42.0972],[22.59063,42.11095],[22.58308,42.10841],[22.5666,42.11758],[22.54875,42.13489],[22.52746,42.13896],[22.52334,42.14711],[22.50961,42.15475],[22.5151,42.15831],[22.50686,42.16951],[22.50137,42.18884],[22.50343,42.19291],[22.48558,42.20207],[22.46978,42.20207],[22.46635,42.21071],[22.44781,42.23614],[22.44918,42.24224],[22.43957,42.24681],[22.43408,42.25698],[22.42446,42.25545],[22.42309,42.2646],[22.41897,42.26562],[22.39975,42.2834],[22.40181,42.29051],[22.38945,42.29559],[22.37846,42.3088],[22.35923,42.31133],[22.36679,42.32403],[22.40043,42.32707],[22.40455,42.33266],[22.4176,42.3291],[22.42309,42.33367],[22.43339,42.32301],[22.443,42.33063],[22.45262,42.33113],[22.4636,42.34382],[22.46086,42.36361],[22.46978,42.37528],[22.48008,42.38035],[22.47734,42.39405],[22.50755,42.3981],[22.51442,42.39608],[22.51922,42.3976],[22.5254,42.41686],[22.53433,42.42142],[22.54325,42.4498],[22.54463,42.46449],[22.56042,42.48323],[22.54669,42.50602],[22.52128,42.52778],[22.51236,42.52727],[22.49931,42.53486],[22.49038,42.54701],[22.47528,42.55409],[22.47184,42.56117],[22.44918,42.56673],[22.43888,42.56572],[22.44026,42.58999],[22.44987,42.59707],[22.45124,42.61425],[22.45811,42.62183],[22.45742,42.63143],[22.46429,42.63395],[22.46635,42.64052],[22.45399,42.6481],[22.46017,42.6486],[22.4588,42.65618],[22.46566,42.65921],[22.47596,42.67486],[22.46978,42.68243],[22.46154,42.68243],[22.45811,42.6895],[22.46978,42.69353],[22.47528,42.71019],[22.48695,42.72229],[22.49519,42.7228],[22.49656,42.7339],[22.50206,42.73944],[22.48695,42.75003],[22.47665,42.76818],[22.46017,42.77927],[22.45605,42.79338],[22.44781,42.79792],[22.44712,42.80396],[22.43957,42.80547],[22.43957,42.82361],[22.46566,42.83418],[22.47047,42.83116],[22.48008,42.83519],[22.50068,42.8513],[22.50686,42.85079],[22.51579,42.85885],[22.51716,42.86891],[22.52197,42.87646],[22.53021,42.87848],[22.53707,42.882],[22.57527,42.86319],[22.57244,42.87571],[22.57862,42.883],[22.58411,42.89181],[22.59132,42.8908],[22.59716,42.89457],[22.60265,42.89256],[22.61776,42.89659],[22.64076,42.87797],[22.64762,42.88049],[22.65277,42.883],[22.66033,42.88275],[22.66651,42.87747],[22.67234,42.87571],[22.67715,42.86589],[22.6823,42.86766],[22.68127,42.87193],[22.695,42.87873],[22.69638,42.88451],[22.70118,42.88426],[22.70462,42.88049],[22.71217,42.88653],[22.72144,42.88502],[22.72831,42.88879],[22.73689,42.88527],[22.74478,42.88627],[22.75337,42.89483],[22.75337,42.89935],[22.75886,42.90187],[22.76195,42.90765],[22.75955,42.91092],[22.76779,42.91771],[22.77362,42.91872],[22.77877,42.93053],[22.77362,42.93581],[22.77465,42.93883],[22.76882,42.94436],[22.7695,42.94938],[22.77706,42.95039],[22.77912,42.95315],[22.78221,42.94988],[22.78392,42.95742],[22.78221,42.96345],[22.78495,42.96973],[22.78392,42.97124],[22.78598,42.97426],[22.78461,42.98154],[22.79766,42.98581],[22.83096,42.99686],[22.85053,43.00615],[22.86323,43.02196],[22.89791,43.03627],[22.89962,43.04831],[22.91027,43.05709],[22.91233,43.06437],[22.91576,43.06713],[22.91851,43.07992],[22.93224,43.08794],[22.95146,43.0917],[22.95558,43.09596],[22.96108,43.09697],[22.98305,43.11176],[22.98614,43.12228],[22.99163,43.12955],[22.99541,43.13982],[22.99369,43.15084],[22.99747,43.1566],[22.99575,43.16186],[22.98614,43.16662],[23.00502,43.1854],[23.00571,43.19266],[23.00056,43.19216],[22.98339,43.20192],[22.96211,43.20667],[22.95009,43.20567],[22.94048,43.20292],[22.93533,43.20943],[22.92949,43.21043],[22.92743,43.21268],[22.92297,43.21443],[22.91988,43.21818],[22.91301,43.22144],[22.90718,43.22094],[22.89653,43.22594],[22.89619,43.23069],[22.89001,43.23419],[22.88452,43.2402],[22.8828,43.24595],[22.87559,43.2487],[22.86941,43.2562],[22.86975,43.26745],[22.8646,43.26895],[22.86254,43.27295],[22.84847,43.2752],[22.84812,43.2787],[22.84263,43.2862],[22.84572,43.29669],[22.83783,43.30194],[22.83748,43.30594],[22.83199,43.31243],[22.82856,43.32043],[22.82684,43.33092],[22.80899,43.33816],[22.80384,43.33791],[22.79525,43.34315],[22.79045,43.35089],[22.78118,43.35813],[22.76916,43.36362],[22.76916,43.3771],[22.75577,43.38034],[22.74684,43.38733],[22.73345,43.38933],[22.72247,43.39606],[22.69844,43.39357],[22.69363,43.39556],[22.69123,43.39407],[22.6799,43.39457],[22.66719,43.40305],[22.66651,43.41302],[22.66067,43.422],[22.66136,43.42599],[22.63904,43.43322],[22.62908,43.42873],[22.62085,43.42923],[22.59716,43.43621],[22.5896,43.4422],[22.58789,43.45167],[22.57484,43.46413],[22.55321,43.46214],[22.5333,43.47135],[22.5333,43.47833],[22.52471,43.48531],[22.52403,43.49676],[22.51339,43.50523],[22.51373,43.50971],[22.50686,43.51619],[22.50137,43.52988],[22.50343,43.53983],[22.49416,43.5478],[22.4897,43.55626],[22.48798,43.56845],[22.49622,43.58312],[22.48661,43.59083],[22.49347,43.60152],[22.48729,43.61992],[22.48111,43.62464],[22.49141,43.63408],[22.4897,43.64253],[22.48386,43.64601],[22.48043,43.6547],[22.45777,43.66066],[22.43991,43.67358],[22.42069,43.68053],[22.42069,43.685],[22.40696,43.69692],[22.40627,43.70759],[22.40215,43.72322],[22.39391,43.72992],[22.39906,43.73885],[22.39872,43.75423],[22.40318,43.75919],[22.39322,43.76092],[22.37777,43.77431],[22.35717,43.8105],[22.36061,43.82288],[22.3661,43.82536],[22.37915,43.84591],[22.38876,43.88255],[22.3946,43.90902],[22.38842,43.92485],[22.39185,43.93103],[22.40901,43.93943],[22.4073,43.94759],[22.41142,43.95649],[22.41142,43.96242],[22.41382,43.97181],[22.41142,43.98071],[22.40867,43.98293],[22.40833,43.98886],[22.41657,43.99256],[22.41004,44.00343],[22.42412,44.00664],[22.44129,44.01084],[22.44232,44.01652],[22.46841,44.01528],[22.48352,44.01997],[22.49519,44.01849],[22.52265,44.01899],[22.53295,44.02145],[22.53295,44.02516],[22.5381,44.0254],[22.54394,44.0338],[22.53742,44.03873],[22.54257,44.04194],[22.53089,44.0486],[22.53501,44.0528],[22.55424,44.05329],[22.55973,44.05773],[22.58033,44.05428],[22.58274,44.06168],[22.61947,44.06366],[22.6181,44.06859],[22.62462,44.07377],[22.61432,44.0787],[22.61982,44.0824],[22.61913,44.09744],[22.60952,44.10509],[22.61913,44.14797],[22.61741,44.15018],[22.62119,44.15068],[22.62702,44.14674],[22.62668,44.15388],[22.6284,44.15831],[22.62531,44.15881],[22.62222,44.16225],[22.61638,44.16127],[22.61192,44.16595],[22.61638,44.16644],[22.61776,44.17334],[22.62496,44.17063],[22.62771,44.17186],[22.62771,44.17481],[22.63286,44.17432],[22.63629,44.17752],[22.6284,44.18368],[22.63286,44.18466],[22.63698,44.18146],[22.64144,44.18466],[22.64316,44.18786],[22.63801,44.18983],[22.63767,44.19205],[22.64213,44.19303],[22.64694,44.20337],[22.6435,44.20878],[22.65037,44.2078],[22.65312,44.20411],[22.65758,44.20878],[22.66582,44.2142],[22.66513,44.21075],[22.66891,44.20755],[22.66788,44.21198],[22.6744,44.21543],[22.66891,44.22847],[22.68814,44.25503],[22.67303,44.28453],[22.56729,44.30321],[22.52197,44.33956],[22.49176,44.43083],[22.46292,44.44848],[22.45605,44.47691],[22.52059,44.47495],[22.55905,44.49846],[22.57553,44.54252],[22.62359,44.55427],[22.69638,44.51609],[22.76641,44.54252],[22.75131,44.5709],[22.66891,44.61784],[22.60986,44.62175],[22.46841,44.71453],[22.4176,44.70868],[22.38327,44.67548],[22.31872,44.66865],[22.29812,44.64227],[22.27066,44.6237],[22.26242,44.59242],[22.18002,44.48181],[22.11547,44.47887],[22.06054,44.53078],[22.03582,44.54056],[22.02484,44.59144],[22.00286,44.611],[21.996,44.63348],[21.77764,44.66181],[21.72271,44.65204],[21.68563,44.66572],[21.62796,44.66083],[21.61148,44.69892],[21.60049,44.74965],[21.51672,44.77891],[21.3945,44.77696],[21.38351,44.81204],[21.35879,44.82665],[21.36154,44.86657],[21.49887,44.87338],[21.55929,44.89187],[21.54968,44.92689],[21.52221,44.93855],[21.46591,44.95799],[21.44119,44.95993],[21.40548,44.97645],[21.41098,44.98617],[21.36154,45.02306],[21.45492,45.04247],[21.44805,45.058],[21.48376,45.09582],[21.46728,45.10745],[21.47689,45.12392],[21.49887,45.12392],[21.52771,45.13846],[21.51123,45.17429],[21.49337,45.17622],[21.47964,45.19365],[21.43569,45.20332],[21.40274,45.22848],[21.39038,45.21784],[21.29013,45.24588],[21.27502,45.23331],[21.20498,45.26038],[21.20773,45.27295],[21.18988,45.28841],[21.17889,45.32222],[21.15692,45.32415],[21.14318,45.30676],[21.09924,45.29904],[21.08001,45.31835],[21.06216,45.31256],[21.06353,45.32994],[21.01684,45.32704],[21.01135,45.34056],[20.93444,45.38784],[20.92071,45.41676],[20.90286,45.41484],[20.86578,45.43411],[20.88089,45.44857],[20.86853,45.46398],[20.83007,45.48131],[20.77102,45.48324],[20.76828,45.50249],[20.81085,45.51789],[20.8287,45.53425],[20.79025,45.58809],[20.77102,45.58521],[20.76416,45.61019],[20.80398,45.66012],[20.79849,45.69946],[20.80535,45.7474],[20.81909,45.75315],[20.82183,45.77231],[20.78338,45.78763],[20.77102,45.75411],[20.70373,45.75123],[20.68038,45.79721],[20.65979,45.79625],[20.65017,45.81157],[20.65841,45.83262],[20.57876,45.87566],[20.57189,45.90434],[20.51696,45.89574],[20.49911,45.91103],[20.48675,45.9521],[20.44555,45.96928],[20.40298,45.9626],[20.34805,46.00173],[20.35354,46.0065],[20.33843,46.04273],[20.34118,46.04845],[20.3096,46.07323],[20.29861,46.08942],[20.27252,46.09894],[20.26565,46.11227],[20.28282,46.11656],[20.26222,46.12132],[20.26496,46.12608],[20.29724,46.15177],[20.30891,46.15652],[20.3144,46.15129],[20.3556,46.16984],[20.36865,46.1532],[20.38032,46.1589],[20.39611,46.15272],[20.39817,46.15557],[20.42152,46.14558],[20.45929,46.14225],[20.49362,46.17222],[20.49705,46.18933],[20.5252,46.18078],[20.54649,46.17888],[20.59593,46.15034],[20.61241,46.14416],[20.63095,46.12846],[20.63644,46.12655],[20.64605,46.13226],[20.65017,46.14654],[20.66734,46.15272],[20.68313,46.14463],[20.69549,46.15938],[20.70648,46.16128],[20.71472,46.16651],[20.72227,46.18791],[20.73326,46.19361],[20.72639,46.19836],[20.72845,46.20692],[20.76072,46.20597],[20.74905,46.25252],[20.77514,46.27625],[20.78819,46.27293],[20.87402,46.28764],[20.88981,46.27198],[20.92277,46.26296],[20.92552,46.2753],[20.94612,46.2791],[20.95298,46.26629],[20.99006,46.25869],[21.02439,46.26629],[21.03744,46.24872],[21.06559,46.24397],[21.07246,46.25347],[21.07864,46.25252],[21.1013,46.26344],[21.11503,46.30235],[21.14524,46.30425],[21.15142,46.29713],[21.16996,46.29713],[21.17889,46.30567],[21.17408,46.32037],[21.17683,46.33602],[21.19194,46.34029],[21.20086,46.3474],[21.19743,46.37109],[21.20567,46.40425],[21.21734,46.40282],[21.22077,46.41087],[21.22627,46.41371],[21.28532,46.40425],[21.29631,46.40614],[21.28944,46.41371],[21.3121,46.44069],[21.31622,46.4511],[21.29493,46.47711],[21.27571,46.47617],[21.27433,46.48231],[21.2606,46.5017],[21.27639,46.5343],[21.27433,46.54091],[21.27983,46.54611],[21.29081,46.54516],[21.30386,46.56122],[21.30386,46.56594],[21.32034,46.5834],[21.30317,46.59095],[21.31347,46.61737],[21.33064,46.6301],[21.35261,46.63057],[21.36634,46.63859],[21.38214,46.62916],[21.41029,46.62256],[21.41922,46.64519],[21.44119,46.65132],[21.45561,46.66027],[21.45629,46.66781],[21.44462,46.6664],[21.42952,46.68006],[21.42952,46.69419],[21.4508,46.68948],[21.46934,46.69608],[21.49063,46.68713],[21.50848,46.70031],[21.51191,46.71067],[21.52908,46.72103],[21.52633,46.74033],[21.49269,46.75726],[21.48239,46.75868],[21.48994,46.77561],[21.50848,46.7836],[21.52221,46.80758],[21.52015,46.83718],[21.53389,46.83952],[21.54007,46.8461],[21.5586,46.85408],[21.59568,46.86066],[21.60186,46.86864],[21.60186,46.88037],[21.60324,46.8846],[21.6156,46.88694],[21.60667,46.9043],[21.59843,46.90712],[21.59774,46.92775],[21.6053,46.93338],[21.6362,46.93432],[21.65954,46.95541],[21.67465,46.95541],[21.68151,46.96713],[21.66778,46.97135],[21.67945,46.99758],[21.68838,46.99945],[21.68838,47.00273],[21.68083,47.00507],[21.67671,47.01818],[21.65954,47.02192],[21.64856,47.03924],[21.6822,47.04626],[21.68632,47.05421],[21.70349,47.06404],[21.70143,47.06825],[21.71722,47.07479],[21.7131,47.08228],[21.72615,47.09817],[21.77146,47.10892],[21.79275,47.10705],[21.79069,47.12527],[21.79893,47.12948],[21.81404,47.17011],[21.82983,47.17851],[21.84082,47.17617],[21.84494,47.18317],[21.8573,47.18784],[21.85798,47.22003],[21.84631,47.22423],[21.85249,47.24008],[21.8724,47.26338],[21.87995,47.26478],[21.88613,47.27084],[21.88888,47.27876],[21.87721,47.28575],[21.88613,47.29087],[21.89575,47.31741],[21.9239,47.34347],[21.92459,47.35278],[21.93695,47.36301],[21.93695,47.37138],[21.95137,47.37464],[21.96373,47.38021],[21.97471,47.37975],[21.99462,47.38068],[21.996,47.37836],[22.00973,47.37603],[22.02484,47.3923],[22.03651,47.41368],[22.03033,47.42251],[22.03376,47.42855],[22.02621,47.44109],[22.03239,47.4513],[22.0214,47.45409],[22.00698,47.47637],[22.01316,47.50096],[22.02484,47.52183],[22.04544,47.53852],[22.06123,47.52972],[22.07084,47.53806],[22.05436,47.54826],[22.07634,47.56123],[22.09213,47.55753],[22.10517,47.57328],[22.11547,47.57606],[22.12715,47.58995],[22.12783,47.59921],[22.17247,47.59227],[22.18963,47.6094],[22.19787,47.63578],[22.20474,47.65475],[22.20954,47.65475],[22.22053,47.66215],[22.22259,47.68295],[22.23014,47.69266],[22.2583,47.69589],[22.26242,47.71623],[22.2583,47.71946],[22.26242,47.73054],[22.2837,47.73008],[22.31666,47.74255],[22.32215,47.75548],[22.31735,47.76748],[22.32627,47.76748],[22.35031,47.75179],[22.38876,47.74532],[22.41142,47.74763],[22.4121,47.74301],[22.42927,47.7407],[22.42584,47.75132],[22.43202,47.76194],[22.44026,47.79193],[22.44918,47.80347],[22.46841,47.80531],[22.48146,47.80992],[22.53982,47.78132],[22.54875,47.77302],[22.61123,47.77348],[22.61673,47.77717],[22.62977,47.77717],[22.63801,47.78086],[22.64694,47.77855],[22.6696,47.78732],[22.68127,47.78778],[22.7005,47.81638],[22.70805,47.8256],[22.71354,47.83574],[22.73002,47.83666],[22.75474,47.8339],[22.76641,47.84219],[22.7774,47.84311],[22.77191,47.86431],[22.76092,47.86753],[22.76779,47.87997],[22.75543,47.8901],[22.76092,47.89516],[22.79319,47.8924],[22.82821,47.90897],[22.84881,47.90851],[22.88932,47.95176],[22.89688,47.95314],[22.8907,47.95866],[22.89276,47.96648],[22.87971,47.96418],[22.83645,47.98992],[22.8646,48.01151],[22.86529,48.02253],[22.8749,48.02621],[22.88108,48.03815],[22.88246,48.05559],[22.86941,48.05238],[22.86186,48.05789],[22.85774,48.07762],[22.84538,48.08404],[22.83783,48.07807],[22.82821,48.10192],[22.83027,48.11247],[22.82066,48.1198],[22.80555,48.10743],[22.80555,48.1198],[22.80006,48.12255],[22.79045,48.11843],[22.76985,48.12164],[22.77534,48.11155],[22.76435,48.10926],[22.7568,48.11889],[22.7211,48.11568],[22.67784,48.09321],[22.63526,48.09642],[22.61879,48.10513],[22.59132,48.10789],[22.59819,48.1166],[22.59201,48.12576],[22.59338,48.13447],[22.58789,48.14318],[22.5975,48.14593],[22.59132,48.15326],[22.5872,48.15234],[22.58308,48.15921],[22.57621,48.15921],[22.56179,48.18257],[22.5666,48.18531],[22.57209,48.19538],[22.55561,48.19813],[22.53913,48.21094],[22.53227,48.20957],[22.51373,48.22696],[22.51579,48.23793],[22.49656,48.23976],[22.50274,48.24754],[22.48901,48.25394],[22.46841,48.24342],[22.44644,48.24296],[22.43408,48.25211],[22.4327,48.24708],[22.41966,48.24936],[22.40112,48.24799],[22.38395,48.23473],[22.37022,48.24433],[22.36061,48.26674],[22.34001,48.27862],[22.33589,48.29415],[22.34069,48.29735],[22.33589,48.30831],[22.31666,48.31882],[22.31735,48.32201],[22.31185,48.32612],[22.32078,48.33753],[22.31803,48.34575],[22.31872,48.35259],[22.30018,48.35488],[22.26791,48.36081],[22.25555,48.37677],[22.23907,48.38681],[22.25624,48.39365],[22.26585,48.4096],[22.25418,48.41234],[22.23632,48.41051],[22.21435,48.42646],[22.18895,48.41598],[22.15667,48.41051],[22.15564,48.40595],[22.14912,48.4055],[22.14191,48.40732],[22.1426,48.41097],[22.13676,48.41689],[22.13951,48.42828],[22.13779,48.43216],[22.15358,48.50932],[22.15221,48.51273],[22.1553,48.51524],[22.16114,48.56774],[22.17144,48.58909],[22.1838,48.60249],[22.18689,48.60317],[22.18895,48.60703],[22.18792,48.60976],[22.19512,48.60953],[22.20405,48.61134],[22.20851,48.6177],[22.21675,48.62178],[22.22911,48.62088],[22.24182,48.62791],[22.25074,48.64153],[22.25006,48.64697],[22.2892,48.66602],[22.32627,48.68461],[22.34001,48.68416],[22.34619,48.70546],[22.35305,48.71814],[22.35099,48.72222],[22.36061,48.72766],[22.36129,48.7417],[22.34344,48.75166],[22.34687,48.76705],[22.37365,48.78243],[22.38601,48.79872],[22.38327,48.82494],[22.37571,48.83579],[22.37846,48.83941],[22.38121,48.86019],[22.38945,48.87374],[22.42103,48.88413],[22.42378,48.9049],[22.43064,48.91934],[22.42446,48.92881],[22.46566,48.97255],[22.4739,48.97525],[22.47734,48.99148],[22.49107,48.99373],[22.4945,48.99869],[22.50618,49.00004],[22.51785,48.99643],[22.52952,49.00229],[22.546,49.00724],[22.53913,49.02121],[22.54943,49.02841],[22.55424,49.07971],[22.56111,49.08735],[22.58171,49.0977],[22.60093,49.0932],[22.60643,49.08511],[22.62771,49.07881],[22.63938,49.05992],[22.65998,49.04777],[22.6696,49.04777],[22.67303,49.04191],[22.6847,49.03876],[22.69912,49.05002],[22.72316,49.05272],[22.75474,49.04236],[22.76367,49.05452],[22.80006,49.03741],[22.80967,49.03471],[22.81379,49.02571],[22.82478,49.02301],[22.83371,49.02481],[22.84263,49.0131],[22.84675,49.00184],[22.89207,49.0077],[22.89001,49.01355],[22.89482,49.0167],[22.88246,49.02256],[22.87422,49.03066],[22.87971,49.03876],[22.86598,49.03966],[22.87422,49.05272],[22.86666,49.06082],[22.86598,49.06846],[22.87078,49.07251],[22.86666,49.07611],[22.88246,49.08151],[22.8907,49.0959],[22.87765,49.0968],[22.85568,49.10399],[22.85774,49.11298],[22.85018,49.11478],[22.84126,49.11208],[22.83096,49.11163],[22.82959,49.11747],[22.79319,49.13904],[22.79251,49.15656],[22.75749,49.15297],[22.73963,49.15925],[22.75749,49.18349],[22.73345,49.1817],[22.71835,49.16509],[22.70668,49.17586],[22.74513,49.21759],[22.72041,49.22163],[22.71423,49.22611],[22.71766,49.24001],[22.73895,49.24763],[22.74444,49.29915],[22.75131,49.31706],[22.74307,49.3363],[22.74856,49.36046],[22.73071,49.40114],[22.71286,49.43553],[22.69775,49.49444],[22.67097,49.49712],[22.65106,49.50782],[22.64076,49.53011],[22.6641,49.53991],[22.67578,49.54971],[22.6847,49.57332],[22.75199,49.63206],[22.78289,49.6574],[22.78701,49.67696],[22.80693,49.69384],[22.82341,49.69428],[22.84744,49.71071],[22.85362,49.7227],[22.87353,49.7409],[22.8955,49.75154],[22.89756,49.76574],[22.9319,49.79323],[22.96073,49.80475],[22.95661,49.81096],[22.97035,49.84019],[22.99507,49.84285],[23.05481,49.89994],[23.10836,49.94238],[23.11454,49.9574],[23.14201,49.97153],[23.21342,50.03112],[23.21617,50.04788],[23.2402,50.05449],[23.26561,50.08005],[23.28002,50.08578],[23.27865,50.09988],[23.31504,50.11221],[23.38096,50.16062],[23.42834,50.18393],[23.47091,50.21733],[23.50662,50.23007],[23.58284,50.26696],[23.61167,50.29899],[23.6309,50.30513],[23.63845,50.32047],[23.68515,50.33143],[23.69064,50.35466],[23.70575,50.37699],[23.73046,50.39013],[23.80737,50.40589],[23.88359,50.40808],[23.93989,50.4142],[23.99826,50.41201],[24.0065,50.43607],[24.03533,50.44482],[24.07104,50.50294],[24.09095,50.56317],[24.09027,50.57844],[24.09919,50.60198],[24.09713,50.61331],[24.09164,50.61897],[24.09782,50.63639],[24.08683,50.63857],[24.08477,50.6438],[24.08065,50.64641],[24.08889,50.66252],[24.08203,50.67253],[24.06349,50.67949],[24.07104,50.70037],[24.06761,50.70776],[24.07447,50.7108],[24.07035,50.71993],[24.04426,50.71689],[24.01954,50.72515],[24.01886,50.74514],[24.01199,50.75687],[24.01748,50.76252],[24.02435,50.75817],[24.02366,50.76773],[24.0113,50.77381],[23.99757,50.76903],[23.97834,50.7712],[23.96736,50.78119],[23.95774,50.79465],[23.96804,50.81114],[23.98727,50.83543],[24.00787,50.84106],[24.04495,50.83456],[24.09782,50.83499],[24.13078,50.84844],[24.14245,50.85927],[24.14451,50.86967],[24.1143,50.87314],[24.09988,50.87747],[24.08477,50.88874],[24.05387,50.89263],[24.02435,50.91515],[23.99688,50.929],[23.9907,50.94415],[23.97148,50.94847],[23.96667,50.97831],[23.95362,50.99431],[23.93165,51.00554],[23.9138,51.00857],[23.93302,51.01548],[23.91586,51.03016],[23.93096,51.03923],[23.91586,51.04096],[23.91929,51.04657],[23.91517,51.04786],[23.90693,51.07807],[23.90144,51.07462],[23.88153,51.08239],[23.87741,51.07635],[23.87123,51.08541],[23.87054,51.09446],[23.85818,51.10136],[23.85131,51.12766],[23.86848,51.13153],[23.86711,51.15049],[23.82453,51.16556],[23.80737,51.18579],[23.78334,51.19139],[23.78059,51.2],[23.76205,51.20344],[23.75656,51.21419],[23.74008,51.21376],[23.73596,51.21978],[23.74214,51.22236],[23.73939,51.23354],[23.72428,51.23827],[23.7236,51.25976],[23.69613,51.28682],[23.67416,51.29198],[23.65013,51.28811],[23.64944,51.29885],[23.63708,51.32031],[23.63708,51.32803],[23.65562,51.34219],[23.65974,51.3602],[23.66729,51.36706],[23.68789,51.36663],[23.68103,51.38249],[23.68583,51.38635],[23.67691,51.39277],[23.70163,51.40477],[23.70231,51.41034],[23.6927,51.41205],[23.703,51.42062],[23.68789,51.41847],[23.67485,51.43175],[23.68377,51.43432],[23.68652,51.44373],[23.67553,51.44245],[23.64944,51.44587],[23.64601,51.45871],[23.67347,51.47368],[23.65974,51.49079],[23.65081,51.48608],[23.63777,51.48608],[23.62129,51.49677],[23.62335,51.50318],[23.61648,51.50275],[23.61717,51.51087],[23.62472,51.51429],[23.61648,51.52198],[23.61305,51.52839],[23.60137,51.52967],[23.5952,51.53395],[23.58558,51.52925],[23.56498,51.53352],[23.56292,51.54377],[23.56498,51.55188],[23.57597,51.55572],[23.56979,51.56255],[23.56979,51.56725],[23.56498,51.56896],[23.56636,51.58091],[23.55468,51.58219],[23.54164,51.60351],[23.54507,51.62228],[23.5382,51.63591],[23.54782,51.63762],[23.54782,51.64359],[23.5382,51.64572],[23.54095,51.65679],[23.55674,51.66489],[23.55194,51.67511],[23.55743,51.68192],[23.54713,51.68447],[23.55949,51.70107],[23.54782,51.70448],[23.55468,51.7066],[23.54988,51.70958],[23.55194,51.71767],[23.54507,51.72745],[23.54095,51.72447],[23.52859,51.72915],[23.53134,51.74318],[23.54438,51.74743],[23.56224,51.76146],[23.56636,51.75806],[23.58558,51.75976],[23.59726,51.77293],[23.61373,51.77293],[23.63021,51.78186],[23.62953,51.79247],[23.64051,51.80012],[23.61923,51.83195],[23.60275,51.83111],[23.60824,51.83959],[23.59931,51.84044],[23.61305,51.84553],[23.61579,51.85613],[23.60412,51.87564],[23.61717,51.87861],[23.62953,51.87267],[23.62335,51.88454],[23.63914,51.89429],[23.61717,51.90657],[23.61236,51.91674],[23.61923,51.92648],[23.6309,51.92097],[23.63159,51.93114],[23.64326,51.93241],[23.64532,51.94045],[23.63845,51.94511],[23.63983,51.94976],[23.62541,51.94934],[23.63777,51.95399],[23.65356,51.96415],[23.67073,51.96584],[23.66386,51.97938],[23.68789,51.99037],[23.68377,52.0001],[23.65905,52.02038],[23.6618,52.04024],[23.6515,52.05629],[23.64189,52.05882],[23.65356,52.06009],[23.64463,52.06557],[23.65219,52.07148],[23.65219,52.07697],[23.64532,52.07697],[23.63983,52.08667],[23.61717,52.09216],[23.61099,52.1006],[23.61991,52.10481],[23.61991,52.10903],[23.60961,52.10903],[23.6,52.11746],[23.58146,52.11957],[23.5691,52.11578],[23.55743,52.11915],[23.55743,52.10987],[23.54713,52.11072],[23.54095,52.12716],[23.51417,52.13812],[23.51005,52.1495],[23.50044,52.14697],[23.48739,52.15371],[23.48602,52.1655],[23.50799,52.17393],[23.49906,52.17982],[23.48327,52.18109],[23.46748,52.17393],[23.4613,52.18319],[23.44482,52.18361],[23.42903,52.17351],[23.41667,52.18319],[23.40225,52.1773],[23.39607,52.18698],[23.40293,52.19371],[23.39469,52.19708],[23.39744,52.20129],[23.39126,52.20129],[23.38439,52.1954],[23.36929,52.19708],[23.36929,52.20634],[23.35281,52.20508],[23.3535,52.21013],[23.33702,52.20676],[23.32534,52.21055],[23.3171,52.20802],[23.29856,52.21223],[23.30886,52.2198],[23.29856,52.22191],[23.27041,52.21475],[23.25462,52.21812],[23.20312,52.22779],[23.19488,52.24083],[23.20587,52.25765],[23.20037,52.26983],[23.20587,52.27614],[23.1784,52.28454],[23.24226,52.35924],[23.27659,52.39362],[23.302,52.40451],[23.30886,52.41498],[23.3123,52.42503],[23.3741,52.48487],[23.43795,52.53167],[23.45855,52.54086],[23.46679,52.54963],[23.54164,52.58135],[23.63983,52.60805],[23.72016,52.61597],[23.73321,52.60763],[23.73939,52.61222],[23.75862,52.61639],[23.78059,52.62597],[23.88015,52.67888],[23.89251,52.68054],[23.90007,52.69011],[23.93783,52.713],[23.9392,52.81355],[23.92478,52.83098],[23.92616,52.89896],[23.91723,52.90558],[23.91723,52.93994],[23.94538,52.95898],[23.93096,52.97676],[23.92822,52.98296],[23.9344,52.98875],[23.92478,53.02387],[23.90762,53.03295],[23.91655,53.03914],[23.89869,53.05029],[23.90144,53.05937],[23.88359,53.06556],[23.87741,53.07917],[23.87329,53.08124],[23.88084,53.09361],[23.88153,53.10144],[23.88839,53.10556],[23.88565,53.11504],[23.89595,53.12741],[23.90693,53.13812],[23.91174,53.13894],[23.91517,53.14265],[23.91037,53.14965],[23.91655,53.15624],[23.9035,53.17764],[23.89595,53.17641],[23.87947,53.18834],[23.86367,53.19616],[23.85818,53.20932],[23.8623,53.22042],[23.85612,53.23193],[23.81835,53.24508],[23.79913,53.27424],[23.76274,53.33907],[23.73733,53.39274],[23.70575,53.43776],[23.66661,53.51336],[23.65837,53.52153],[23.6515,53.54806],[23.62747,53.59291],[23.60206,53.66335],[23.58558,53.70605],[23.58284,53.74262],[23.5485,53.76738],[23.54438,53.79537],[23.54713,53.8274],[23.55331,53.83186],[23.54713,53.83551],[23.55262,53.84077],[23.54576,53.84361],[23.54644,53.84807],[23.55125,53.8509],[23.54713,53.85576],[23.53958,53.859],[23.53683,53.85698],[23.52584,53.86346],[23.51211,53.91],[23.51142,53.93022],[23.51623,53.95527],[23.52859,53.95487],[23.5382,53.94315],[23.55125,53.94355],[23.56086,53.94113],[23.56979,53.94315],[23.58009,53.94153],[23.58696,53.93709],[23.59794,53.93426],[23.60481,53.92253],[23.61579,53.92819],[23.62953,53.92739],[23.6515,53.93385],[23.66523,53.93264],[23.67416,53.93466],[23.67897,53.93183],[23.69751,53.93507],[23.70163,53.93305],[23.70918,53.94073],[23.73115,53.93062],[23.76411,53.92456],[23.77372,53.91242],[23.78128,53.91283],[23.77647,53.90474],[23.77578,53.89948],[23.79776,53.90069],[23.80394,53.90636],[23.81629,53.90919],[23.81561,53.92092],[23.79913,53.92739],[23.79776,53.93385],[23.81767,53.94315],[23.84033,53.95608],[23.85955,53.95446],[23.87466,53.94355],[23.89114,53.94598],[23.90693,53.95366],[23.90693,53.96658],[23.91311,53.96901],[23.92272,53.96578],[23.94058,53.95689],[23.95088,53.95851],[23.96186,53.95487],[23.97148,53.94275],[23.97285,53.93385],[23.96598,53.93426],[23.96736,53.92779],[23.98178,53.92456],[24.104,53.94073],[24.10331,53.95164],[24.1143,53.9577],[24.14314,53.95446],[24.15756,53.96214],[24.2015,53.97022],[24.21455,53.95729],[24.21043,53.95002],[24.23378,53.94436],[24.24819,53.95366],[24.25987,53.94881],[24.2633,53.93668],[24.27429,53.93426],[24.28802,53.92213],[24.30656,53.92739],[24.30175,53.91728],[24.32716,53.90555],[24.35257,53.89665],[24.38964,53.90352],[24.43222,53.90474],[24.4384,53.90272],[24.45556,53.91],[24.459,53.91889],[24.47067,53.92577],[24.47479,53.93143],[24.48303,53.93305],[24.50225,53.94477],[24.51736,53.96012],[24.56062,53.98032],[24.57298,53.98758],[24.60319,53.99323],[24.60182,53.99929],[24.61006,54.00131],[24.62722,54.0118],[24.63272,54.00615],[24.64439,54.00776],[24.64508,54.00534],[24.6595,54.00615],[24.67186,54.01704],[24.69726,54.01704],[24.70481,54.00978],[24.69795,53.99566],[24.69177,53.98597],[24.69314,53.97466],[24.68627,53.96537],[24.71099,53.96578],[24.73983,53.9682],[24.73159,53.97426],[24.76593,53.99202],[24.77005,53.99202],[24.79476,54.0005],[24.80918,53.99445],[24.82566,53.99889],[24.8291,54.00373],[24.82429,54.00494],[24.82566,54.00897],[24.84077,54.00696],[24.84214,54.01261],[24.8339,54.02673],[24.85588,54.02995],[24.86137,54.02834],[24.86892,54.02915],[24.87167,54.03439],[24.86274,54.03842],[24.85313,54.03399],[24.84146,54.03318],[24.83734,54.03761],[24.82017,54.04528],[24.82292,54.05455],[24.81742,54.07026],[24.80506,54.08597],[24.77691,54.10047],[24.77279,54.11859],[24.77966,54.11979],[24.78653,54.11416],[24.79476,54.11456],[24.8291,54.13307],[24.81399,54.14554],[24.85931,54.15117],[24.86618,54.14795],[24.92111,54.16122],[24.93003,54.16565],[24.95544,54.17167],[24.96231,54.16967],[24.96643,54.17208],[24.97947,54.16243],[24.99183,54.14474],[25.01312,54.1383],[25.05294,54.1383],[25.07148,54.13307],[25.07835,54.14313],[25.09071,54.14554],[25.11749,54.17007],[25.13809,54.18413],[25.16006,54.19137],[25.16212,54.2002],[25.18135,54.20864],[25.19783,54.21506],[25.20263,54.22068],[25.20332,54.23914],[25.21293,54.24115],[25.21568,54.25479],[25.23353,54.26281],[25.2507,54.25158],[25.26786,54.27484],[25.29121,54.26281],[25.32348,54.26201],[25.33859,54.26642],[25.34683,54.26482],[25.35713,54.26402],[25.36468,54.27164],[25.37567,54.27364],[25.38116,54.27725],[25.39489,54.27484],[25.41069,54.28767],[25.45257,54.29809],[25.45326,54.29128],[25.47866,54.29529],[25.48278,54.3013],[25.49995,54.3017],[25.49995,54.30971],[25.51506,54.30731],[25.513,54.29929],[25.52192,54.28166],[25.56243,54.27444],[25.56449,54.26923],[25.55419,54.26682],[25.55694,54.26281],[25.5693,54.25238],[25.59059,54.23232],[25.58921,54.2251],[25.57548,54.2251],[25.56381,54.23232],[25.55419,54.2263],[25.54595,54.22911],[25.54801,54.21867],[25.56106,54.21546],[25.56655,54.20743],[25.56037,54.19458],[25.51574,54.18494],[25.51025,54.17569],[25.52398,54.16645],[25.52948,54.16605],[25.53085,54.15921],[25.5384,54.15479],[25.5487,54.15439],[25.55351,54.14795],[25.56587,54.15198],[25.58715,54.14554],[25.60089,54.14594],[25.60089,54.14152],[25.62629,54.14232],[25.6311,54.13066],[25.65033,54.13026],[25.66474,54.14071],[25.68603,54.14192],[25.6874,54.1564],[25.7032,54.15801],[25.70388,54.16766],[25.73684,54.15801],[25.77461,54.16163],[25.78216,54.16002],[25.77941,54.15519],[25.78559,54.15479],[25.78628,54.16484],[25.7801,54.16806],[25.77804,54.17811],[25.77186,54.18293],[25.77941,54.19297],[25.77461,54.20342],[25.75401,54.21265],[25.75195,54.22229],[25.78628,54.23473],[25.78353,54.23794],[25.77529,54.23794],[25.75813,54.24998],[25.74989,54.26803],[25.7444,54.27284],[25.72105,54.27444],[25.71144,54.27204],[25.70045,54.28046],[25.70663,54.28607],[25.70182,54.28967],[25.71144,54.29529],[25.67779,54.32333],[25.66131,54.32293],[25.64415,54.31171],[25.62904,54.31812],[25.6208,54.31011],[25.58921,54.31492],[25.58853,54.32333],[25.55282,54.31652],[25.54801,54.32333],[25.55076,54.32493],[25.55007,54.33094],[25.5336,54.33374],[25.52948,54.34214],[25.55557,54.34294],[25.56312,54.36575],[25.59265,54.37575],[25.58509,54.39255],[25.59059,54.40094],[25.59608,54.39655],[25.60501,54.39535],[25.63316,54.42292],[25.6208,54.45088],[25.62904,54.45487],[25.61599,54.45886],[25.60981,54.45606],[25.60226,54.46085],[25.62355,54.46963],[25.63865,54.47083],[25.65101,54.48998],[25.65719,54.50912],[25.68191,54.53582],[25.7492,54.56489],[25.76088,54.57843],[25.75607,54.62138],[25.74302,54.63092],[25.74783,54.64006],[25.73066,54.68415],[25.7389,54.68534],[25.73478,54.70201],[25.74234,54.71073],[25.74714,54.72739],[25.74646,54.75236],[25.74783,54.76544],[25.73478,54.79078],[25.7341,54.80385],[25.75195,54.82403],[25.76362,54.82323],[25.77186,54.82363],[25.7801,54.83629],[25.78353,54.84064],[25.77804,54.84419],[25.77941,54.85447],[25.78697,54.85922],[25.79521,54.8608],[25.80757,54.8687],[25.81855,54.88055],[25.85357,54.89674],[25.85838,54.90583],[25.85495,54.91214],[25.85907,54.91806],[25.85289,54.92003],[25.85632,54.92793],[25.87829,54.9299],[25.88447,54.93582],[25.90644,54.93306],[25.94833,54.95002],[25.9909,54.9579],[25.99021,54.95199],[26.02592,54.9441],[26.06369,54.94252],[26.0527,54.94962],[26.07879,54.95514],[26.07467,54.965],[26.07742,54.97052],[26.10969,54.97288],[26.11999,54.98037],[26.11724,54.98864],[26.14196,54.9851],[26.15501,54.99179],[26.18248,54.99337],[26.18522,54.9914],[26.20925,54.99888],[26.21269,55.01345],[26.22573,55.02211],[26.24084,55.03904],[26.23741,55.04966],[26.24565,55.05123],[26.24565,55.05595],[26.23535,55.05988],[26.24633,55.07011],[26.26419,55.06696],[26.27243,55.07915],[26.25114,55.0933],[26.22779,55.10823],[26.26144,55.12118],[26.30264,55.1259],[26.31019,55.12864],[26.30127,55.13493],[26.32392,55.1365],[26.32392,55.14513],[26.35826,55.14827],[26.3816,55.14631],[26.39671,55.13296],[26.41319,55.14003],[26.42486,55.13846],[26.46263,55.12943],[26.47842,55.13807],[26.47842,55.14788],[26.48803,55.15337],[26.49215,55.15141],[26.51619,55.16082],[26.54159,55.14434],[26.5876,55.15533],[26.61712,55.14631],[26.64184,55.15455],[26.64459,55.15925],[26.65489,55.16161],[26.6645,55.15651],[26.67617,55.15847],[26.67755,55.16984],[26.6954,55.16631],[26.70776,55.1718],[26.70158,55.17808],[26.68579,55.17886],[26.67411,55.19729],[26.69471,55.20591],[26.70089,55.20199],[26.72973,55.21492],[26.72493,55.23881],[26.74621,55.25486],[26.76544,55.25838],[26.77986,55.25955],[26.78741,55.2662],[26.79565,55.26464],[26.7984,55.27324],[26.82724,55.27755],[26.83685,55.29084],[26.83136,55.30648],[26.81213,55.31078],[26.81213,55.31547],[26.77848,55.32211],[26.72149,55.3225],[26.70707,55.32836],[26.68235,55.33266],[26.66587,55.34047],[26.66038,55.335],[26.64459,55.33383],[26.63909,55.32484],[26.63017,55.32094],[26.62468,55.32601],[26.63017,55.33344],[26.61644,55.33148],[26.60545,55.32055],[26.58828,55.32055],[26.58485,55.32445],[26.5718,55.32445],[26.56906,55.32094],[26.55464,55.32289],[26.54846,55.32797],[26.5155,55.33226],[26.47499,55.34047],[26.45164,55.34047],[26.43928,55.34945],[26.47361,55.35764],[26.4743,55.36974],[26.50245,55.37052],[26.51069,55.3795],[26.53953,55.38847],[26.55464,55.38847],[26.54914,55.40835],[26.55944,55.41186],[26.53953,55.44264],[26.55944,55.43914],[26.54434,55.45238],[26.5567,55.46406],[26.5512,55.47651],[26.53816,55.4878],[26.53953,55.49674],[26.52511,55.50997],[26.53335,55.52591],[26.54502,55.52785],[26.54914,55.52474],[26.56288,55.53173],[26.5821,55.53484],[26.58554,55.54689],[26.5979,55.55388],[26.61163,55.56553],[26.62193,55.56436],[26.62605,55.56747],[26.62056,55.56941],[26.62605,55.57213],[26.63566,55.59891],[26.63703,55.65357],[26.63085,55.65938],[26.63085,55.68106],[26.63703,55.68184],[26.64184,55.69616],[26.64939,55.7008],[26.64596,55.70506],[26.65214,55.70699],[26.72012,55.69964],[26.74346,55.68184],[26.78329,55.67758],[26.7984,55.69771],[26.81625,55.69964],[26.82655,55.70545],[26.84646,55.70777],[26.87187,55.7128],[26.87873,55.72749],[26.8753,55.73522],[26.89727,55.75184],[26.91787,55.78738],[26.93573,55.78931],[26.94603,55.78738],[26.95426,55.79973],[26.968,55.80629],[26.97418,55.8144],[26.99821,55.81787],[27.014,55.82828],[27.02636,55.82751],[27.03254,55.82327],[27.03872,55.82983],[27.06138,55.83098],[27.08061,55.82713],[27.09777,55.82713],[27.10258,55.84525],[27.13073,55.8518],[27.14241,55.8491],[27.15133,55.85257],[27.16713,55.84602],[27.17124,55.83792],[27.1994,55.83407],[27.21382,55.82173],[27.24746,55.80205],[27.24952,55.79471],[27.28935,55.78545],[27.29553,55.79008],[27.32368,55.79742],[27.35115,55.80205],[27.35527,55.81131],[27.36625,55.81555],[27.37381,55.80899],[27.4308,55.79549],[27.45826,55.79201],[27.46856,55.79433],[27.47818,55.78931],[27.56538,55.78468],[27.61413,55.78661],[27.64022,55.84795],[27.62512,55.89225],[27.65258,55.91381],[27.65327,55.93074],[27.74322,55.97187],[27.75009,55.97917],[27.76794,55.97956],[27.77,55.97533],[27.78442,55.97648],[27.81051,55.99108],[27.80571,56.00874],[27.81463,56.00836],[27.83454,56.02333],[27.80708,56.03484],[27.82218,56.04136],[27.83729,56.03906],[27.86132,56.04366],[27.87162,56.05286],[27.90046,56.04865],[27.91282,56.059],[27.92106,56.05823],[27.93754,56.0751],[27.9396,56.09272],[27.95059,56.09847],[27.95059,56.10306],[27.95951,56.10344],[27.96981,56.10995],[27.97187,56.11991],[27.98698,56.12144],[27.99385,56.12641],[28.02406,56.12374],[28.02612,56.11914],[28.04328,56.11991],[28.04397,56.12833],[28.06869,56.13981],[28.09547,56.13598],[28.0941,56.14899],[28.10165,56.15243],[28.1147,56.16314],[28.12843,56.16505],[28.13736,56.17193],[28.15109,56.17002],[28.17924,56.17996],[28.17649,56.18683],[28.1813,56.19333],[28.18679,56.19448],[28.18542,56.20326],[28.17306,56.20326],[28.18611,56.20937],[28.19297,56.20746],[28.20396,56.2151],[28.18748,56.22045],[28.18405,56.22655],[28.19915,56.24144],[28.21907,56.24869],[28.21975,56.25212],[28.24035,56.27309],[28.24173,56.27958],[28.23211,56.29558],[28.20739,56.31996],[28.19984,56.33709],[28.19915,56.34432],[28.19366,56.35383],[28.19297,56.3603],[28.16482,56.37589],[28.18679,56.40326],[28.19297,56.40554],[28.18679,56.41086],[28.18199,56.42833],[28.18542,56.42909],[28.19435,56.44162],[28.19023,56.45148],[28.17512,56.45376],[28.1504,56.475],[28.125,56.49737],[28.1298,56.50343],[28.13667,56.50874],[28.125,56.51632],[28.11264,56.50988],[28.10165,56.50874],[28.09616,56.51291],[28.09616,56.51745],[28.09066,56.51935],[28.09547,56.52427],[28.08998,56.52768],[28.0941,56.53033],[28.09959,56.53222],[28.10028,56.54018],[28.13873,56.5504],[28.14285,56.55456],[28.13736,56.56288],[28.14353,56.5731],[28.12294,56.58331],[28.09684,56.58293],[28.07762,56.58596],[28.0529,56.58596],[28.0426,56.59163],[28.0371,56.60901],[28.0117,56.63659],[28.0117,56.67433],[27.99316,56.68904],[27.97943,56.68904],[27.97599,56.69168],[27.98149,56.70676],[27.96432,56.70676],[27.96295,56.71317],[27.9499,56.71505],[27.94372,56.7241],[27.93617,56.72937],[27.919,56.73238],[27.91214,56.74293],[27.91488,56.75084],[27.89772,56.75272],[27.90046,56.76025],[27.91694,56.77455],[27.93685,56.77417],[27.94441,56.77643],[27.94715,56.7832],[27.9396,56.79599],[27.95814,56.80726],[27.97805,56.81253],[27.96981,56.82004],[27.97531,56.82493],[27.96432,56.82831],[27.97119,56.83319],[27.96707,56.8377],[27.90184,56.82155],[27.89978,56.83695],[27.88536,56.8531],[27.88536,56.85723],[27.87025,56.86736],[27.87574,56.87674],[27.84828,56.87937],[27.84484,56.87449],[27.82287,56.86774],[27.79335,56.86286],[27.78854,56.86549],[27.75627,56.86023],[27.74253,56.8546],[27.73429,56.85648],[27.72056,56.84859],[27.70408,56.84859],[27.70202,56.84221],[27.69172,56.83657],[27.65945,56.83582],[27.6567,56.8546],[27.67044,56.86961],[27.67318,56.8865],[27.67112,56.89475],[27.6876,56.91687],[27.70683,56.91275],[27.72056,56.91312],[27.73017,56.92024],[27.73635,56.92024],[27.74322,56.95658],[27.76931,57.00447],[27.73292,57.00185],[27.71438,57.00447],[27.72949,57.02877],[27.73086,57.0396],[27.73429,57.04782],[27.75077,57.05305],[27.74253,57.06761],[27.75558,57.07918],[27.76863,57.08441],[27.76382,57.08739],[27.74665,57.08329],[27.7391,57.09112],[27.71507,57.09336],[27.71163,57.10418],[27.72399,57.10082],[27.73223,57.10157],[27.73704,57.10343],[27.74459,57.10194],[27.74665,57.09821],[27.75421,57.09896],[27.75421,57.10604],[27.73498,57.11126],[27.73292,57.1176],[27.74734,57.12394],[27.74734,57.12804],[27.78167,57.13586],[27.78648,57.13288],[27.81601,57.14257],[27.82287,57.15747],[27.83111,57.16752],[27.82562,57.17273],[27.83386,57.18092],[27.82562,57.19171],[27.82905,57.20733],[27.84141,57.21142],[27.83866,57.22072],[27.84622,57.23224],[27.86064,57.24599],[27.86888,57.24673],[27.86544,57.26048],[27.86064,57.26307],[27.86132,57.27496],[27.86682,57.2783],[27.86613,57.29648],[27.8572,57.30353],[27.84347,57.30316],[27.83454,57.31651],[27.81738,57.32466],[27.78167,57.31984],[27.77343,57.32985],[27.77824,57.33764],[27.77755,57.34542],[27.75627,57.35134],[27.75352,57.3569],[27.72056,57.36209],[27.68211,57.37282],[27.66975,57.3954],[27.62512,57.40132],[27.60452,57.41574],[27.58117,57.41648],[27.56057,57.41094],[27.5592,57.41537],[27.52624,57.42647],[27.51594,57.42499],[27.53723,57.4612],[27.5489,57.45898],[27.55645,57.48815],[27.55577,57.50033],[27.56675,57.50992],[27.56813,57.51434],[27.54821,57.52209],[27.55645,57.53868],[27.50015,57.54052],[27.46994,57.53499],[27.47062,57.52983],[27.4617,57.52835],[27.4514,57.53315],[27.41706,57.52209],[27.3944,57.52614],[27.3793,57.5361],[27.36694,57.53057],[27.369,57.52651],[27.35115,57.51914],[27.34291,57.54531],[27.3381,57.54531],[27.33535,57.5582],[27.32986,57.56041],[27.33192,57.56594],[27.32368,57.57625],[27.32643,57.5814],[27.33741,57.58545],[27.33741,57.5906],[27.36557,57.60201],[27.37381,57.5987],[27.38205,57.5987],[27.38616,57.60606],[27.40539,57.61341],[27.40539,57.61599],[27.39166,57.61746],[27.39372,57.62114],[27.40127,57.62739],[27.40058,57.63658],[27.37793,57.64576],[27.38273,57.65642],[27.37655,57.66634],[27.37037,57.6667],[27.38479,57.67698],[27.39166,57.67955],[27.39097,57.68579],[27.40264,57.68579],[27.41294,57.70011],[27.4308,57.70084],[27.43011,57.71001],[27.45071,57.71845],[27.4617,57.70854],[27.46925,57.71075],[27.47268,57.71771],[27.49328,57.72468],[27.49054,57.71918],[27.49877,57.70708],[27.50633,57.70928],[27.5077,57.71331],[27.52487,57.71001],[27.52075,57.71515],[27.52693,57.73091],[27.54684,57.73311],[27.52693,57.74154],[27.52899,57.75144],[27.51251,57.75144],[27.52693,57.7551],[27.51663,57.76316],[27.50633,57.76463],[27.50701,57.77378],[27.51251,57.77561],[27.49328,57.78842],[27.51525,57.79318],[27.52143,57.79025],[27.53517,57.79428],[27.54066,57.81477],[27.55302,57.81513],[27.54409,57.81916],[27.54409,57.82281],[27.55233,57.82391],[27.55714,57.82866],[27.55027,57.83268],[27.56469,57.83049],[27.60177,57.83524],[27.62374,57.84073],[27.65327,57.84036],[27.68554,57.83597],[27.70202,57.84073],[27.70752,57.84767],[27.70957,57.84219],[27.71507,57.83963],[27.71713,57.83634],[27.72605,57.83597],[27.7288,57.83122],[27.73773,57.82903],[27.75764,57.83597],[27.77412,57.83488],[27.78373,57.83853],[27.78579,57.84292],[27.79678,57.84073],[27.79678,57.84365],[27.79197,57.8473],[27.79335,57.85132],[27.81463,57.86265],[27.80914,57.8736],[27.81669,57.88383],[27.80914,57.88529],[27.81806,57.8893],[27.81601,57.89624],[27.79266,57.89916],[27.77,57.89441],[27.75489,57.89879],[27.75421,57.90171],[27.74734,57.90317],[27.72674,57.90609],[27.70477,57.90208],[27.69447,57.90755],[27.70546,57.90791],[27.71575,57.91448],[27.71575,57.92104],[27.68142,57.92505],[27.68486,57.92834],[27.68005,57.9349],[27.67662,57.93599],[27.667,57.94292],[27.67044,57.94583],[27.65533,57.95494],[27.65945,57.95822],[27.67318,57.95858],[27.68623,57.96004],[27.68417,57.97024],[27.67799,57.97534],[27.69516,57.98917],[27.69104,58.00482],[27.667,58.011],[27.66082,58.01864],[27.64915,58.02046],[27.64984,58.011],[27.6567,58.00591],[27.6519,58.00045],[27.6567,57.99645],[27.65396,57.99427],[27.64572,57.99863],[27.62168,58.00409],[27.60795,58.0539],[27.63473,58.10001],[27.60177,58.11815],[27.49054,58.22281],[27.48642,58.30443],[27.55302,58.36715],[27.35801,58.78742],[27.73017,58.97231],[27.74459,58.98576],[27.74047,59.01016],[27.74391,59.01935],[27.74459,59.02924],[27.76725,59.03313],[27.77549,59.04867],[27.77069,59.05503],[27.77687,59.06386],[27.79129,59.07021],[27.78854,59.09208],[27.79884,59.10478],[27.80914,59.10689],[27.80502,59.11183],[27.80365,59.1224],[27.81051,59.13051],[27.84965,59.15305],[27.88948,59.18929],[27.90321,59.24025],[27.96501,59.2736],[27.98011,59.2736],[28.00003,59.2771],[28.03848,59.28868],[28.13255,59.29113],[28.1916,59.34649],[28.19023,59.35314],[28.20121,59.35769],[28.19915,59.36154],[28.20602,59.36574],[28.20808,59.37274],[28.20327,59.37484],[28.20808,59.38218],[28.19297,59.39966],[28.16276,59.41119],[28.13942,59.41958],[28.12431,59.43774],[28.08586,59.45868],[28.05084,59.46391],[28.04122,59.47229],[27.09228,59.77022],[26.74072,60.09498],[27.58667,60.29702],[27.71301,60.39757],[27.69378,60.43283],[27.74871,60.4518],[27.76794,60.50458],[27.77618,60.50627],[27.77137,60.53533],[27.81326,60.55457],[27.8469,60.56166],[27.8421,60.56537],[27.8421,60.57482],[27.83729,60.57887],[27.84553,60.5819],[27.87231,60.60483],[27.99522,60.67082],[27.99797,60.66981],[28.01719,60.68124],[28.01513,60.68326],[28.09066,60.72224],[28.1353,60.74104],[28.17375,60.77827],[28.21907,60.78263],[28.25271,60.80876],[28.31108,60.84089],[28.32412,60.85795],[28.33717,60.85461],[28.39416,60.88603],[28.39759,60.88402],[28.40034,60.88569],[28.39759,60.8877],[28.46489,60.92275],[28.4848,60.92676],[28.4848,60.92843],[28.52325,60.95677],[28.53012,60.95544],[28.57132,60.95244],[28.61526,60.95577],[28.64891,60.94877],[28.65921,60.95277],[28.68461,60.97877],[28.71139,61.02736],[28.71345,61.04432],[28.80477,61.09415],[28.81919,61.12201],[28.8755,61.1366],[28.88374,61.14257],[28.91464,61.14356],[28.95515,61.15118],[28.98742,61.17437],[29.03549,61.19323],[29.17144,61.24183],[29.17694,61.24084],[29.179,61.24513],[29.1996,61.25636],[29.21058,61.25867],[29.21333,61.26132],[29.23599,61.26858],[29.24011,61.26825],[29.2456,61.27089],[29.24148,61.27749],[29.26551,61.29101],[29.32388,61.34473],[29.32182,61.34803],[29.41108,61.40329],[29.50378,61.46108],[29.49691,61.49157],[29.55802,61.49256],[29.57725,61.49583],[29.59373,61.49583],[29.64523,61.5204],[29.6418,61.52629],[29.68917,61.55247],[29.74136,61.57601],[29.75509,61.6028],[29.80522,61.63511],[29.8114,61.63609],[29.81826,61.65468],[29.84642,61.67032],[29.86221,61.67065],[29.86358,61.67651],[29.86564,61.68173],[29.98443,61.739],[30.04348,61.7689],[30.07164,61.81888],[30.15609,61.85841],[30.1966,61.88237],[30.19523,61.8911],[30.21171,61.89272],[30.27488,61.93378],[30.30098,61.93475],[30.31333,61.94444],[30.30578,61.96316],[30.32638,61.97317],[30.33668,61.97349],[30.35247,61.98026],[30.37788,61.99961],[30.42526,62.02346],[30.4383,62.03376],[30.44242,62.0328],[30.44654,62.03473],[30.44311,62.03698],[30.56053,62.11608],[30.60241,62.14176],[30.63537,62.17383],[30.62851,62.18921],[30.63812,62.1937],[30.65528,62.20939],[30.68481,62.21131],[30.72052,62.20875],[30.74317,62.22667],[30.76927,62.23755],[30.80841,62.26089],[30.80909,62.27015],[30.8345,62.27559],[30.90316,62.31134],[30.94162,62.30592],[30.9629,62.32761],[30.94368,62.33335],[31.07276,62.40532],[31.13662,62.44219],[31.1634,62.446],[31.17301,62.48156],[31.18537,62.48758],[31.18469,62.49393],[31.22314,62.49932],[31.24717,62.52404],[31.24443,62.52594],[31.25335,62.53322],[31.34468,62.63976],[31.3488,62.63976],[31.34605,62.64323],[31.36322,62.64513],[31.37283,62.6486],[31.37695,62.65806],[31.37626,62.67162],[31.38519,62.67571],[31.38038,62.69052],[31.43943,62.78488],[31.46621,62.78426],[31.4566,62.79744],[31.58706,62.90835],[31.57196,62.91929],[31.5026,62.9964],[31.44905,63.00669],[31.46209,63.02507],[31.42639,63.04375],[31.40991,63.04282],[31.38107,63.05371],[31.38107,63.06024],[31.3694,63.0646],[31.36116,63.07237],[31.29318,63.09444],[31.27533,63.10501],[31.26503,63.11525],[31.2561,63.1407],[31.25473,63.17915],[31.24649,63.18101],[31.23825,63.19494],[31.23962,63.21754],[31.16615,63.24444],[31.15379,63.2565],[31.138,63.26484],[31.13319,63.26144],[31.12564,63.26855],[31.09954,63.27163],[31.08581,63.2809],[31.02058,63.3025],[30.99243,63.30435],[30.98419,63.30682],[30.98007,63.30713],[30.94299,63.33641],[30.93475,63.35582],[30.91758,63.35644],[30.8702,63.36413],[30.84617,63.3706],[30.84205,63.37706],[30.78781,63.40535],[30.67176,63.42656],[30.48431,63.46646],[30.38612,63.54488],[30.279,63.5779],[30.25703,63.58248],[30.24398,63.6063],[30.12451,63.66911],[30.09361,63.68677],[30.07164,63.6959],[30.06958,63.70076],[30.05996,63.70411],[30.06408,63.70867],[29.9707,63.75699],[30.13069,63.79704],[30.26115,63.82249],[30.32089,63.9093],[30.35591,63.93345],[30.44517,63.98138],[30.52757,64.04787],[30.55366,64.1004],[30.55366,64.13158],[30.5159,64.15523],[30.46646,64.20458],[30.50903,64.22161],[30.48225,64.26249],[30.38749,64.26934],[30.36003,64.28156],[30.36689,64.30003],[30.30166,64.32027],[30.28518,64.33039],[30.21102,64.3512],[30.13824,64.35774],[30.11077,64.36576],[30.04623,64.40287],[30.0579,64.43518],[30.05104,64.4417],[30.05859,64.45059],[30.04692,64.4722],[30.02426,64.48285],[30.02975,64.50089],[30.01533,64.50473],[29.9858,64.53397],[29.99748,64.57675],[29.98924,64.58765],[30.05516,64.61563],[30.1197,64.62623],[30.13137,64.63505],[30.13481,64.64946],[30.05378,64.71348],[30.04074,64.74133],[30.08468,64.76534],[30.09017,64.76446],[30.08606,64.77412],[30.0428,64.79343],[30.00778,64.79138],[29.99336,64.79489],[29.88075,64.79284],[29.87114,64.78992],[29.7393,64.79021],[29.68711,64.81886],[29.69879,64.83755],[29.67956,64.85039],[29.64523,64.86644],[29.6109,64.9279],[29.61845,64.9596],[29.59854,64.99503],[29.61364,65.01302],[29.62669,65.06084],[29.70291,65.08196],[29.73175,65.0918],[29.83337,65.09238],[29.87045,65.10365],[29.89654,65.10539],[29.8526,65.12763],[29.86358,65.13139],[29.84848,65.12937],[29.81826,65.14496],[29.89242,65.19282],[29.88487,65.20578],[29.85946,65.21586],[29.81346,65.22334],[29.76402,65.22852],[29.74617,65.22593],[29.69947,65.23111],[29.63562,65.23169],[29.6006,65.26044],[29.60884,65.27566],[29.6466,65.28916],[29.74754,65.34765],[29.73175,65.37399],[29.72763,65.40087],[29.73243,65.47251],[29.7496,65.48334],[29.75441,65.49702],[29.80041,65.52804],[29.86427,65.56073],[29.82444,65.57947],[29.75578,65.60869],[29.72351,65.63675],[29.87045,65.66676],[30.0167,65.69645],[30.04005,65.68656],[30.13893,65.66874],[30.13549,65.69786],[30.11009,65.78025],[30.08056,65.86686],[30.05996,65.9109],[30.02426,65.9585],[30.02563,65.96661],[29.99748,65.97835],[29.98992,66.01913],[29.99404,66.02108],[29.98443,66.02471],[29.97345,66.04061],[29.98168,66.04451],[29.97139,66.04674],[29.92401,66.12663],[29.85054,66.17743],[29.70909,66.26823],[29.70085,66.26685],[29.69535,66.27127],[29.70703,66.27431],[29.69741,66.2779],[29.66308,66.31931],[29.6315,66.36752],[29.59716,66.40355],[29.52095,66.49491],[29.47357,66.5417],[29.42138,66.57939],[29.41177,66.58458],[29.41932,66.59222],[29.4001,66.59631],[29.38224,66.59904],[29.37606,66.60449],[29.38499,66.60749],[29.36164,66.62329],[29.35821,66.63882],[29.15016,66.78027],[29.14123,66.77918],[29.13162,66.78676],[29.10621,66.79082],[29.10347,66.79623],[29.11857,66.80191],[29.06158,66.85298],[29.03343,66.92467],[29.03343,66.94351],[29.04167,66.96125],[29.07188,66.99589],[29.2202,67.08963],[29.36164,67.17874],[29.51683,67.28053],[29.50584,67.28583],[29.51202,67.29193],[29.52438,67.30994],[29.53811,67.31021],[29.53811,67.30783],[29.54978,67.31127],[29.57107,67.31021],[29.57931,67.31577],[29.56695,67.31921],[29.56764,67.32186],[29.57656,67.32292],[29.5848,67.33139],[29.61433,67.32689],[29.64454,67.33721],[29.64454,67.34144],[29.61776,67.34541],[29.62257,67.35176],[29.6418,67.3544],[29.65347,67.36075],[29.64866,67.36471],[29.65759,67.37079],[29.67544,67.37343],[29.68162,67.37818],[29.71595,67.3927],[29.71389,67.39798],[29.76676,67.42726],[29.84436,67.48176],[29.88143,67.50095],[29.93019,67.52327],[29.94735,67.55186],[30.01602,67.67347],[29.65965,67.80327],[29.32731,68.07458],[28.64685,68.19681],[28.43399,68.53929],[28.7059,68.73264],[28.79997,68.86945],[28.66195,68.88653],[28.46763,68.88529],[28.41613,68.91495],[28.49853,68.93076],[28.92837,69.05163]]]}},{"type":"Feature","properties":{"cq_zone_name":"Eastern Zone of Europe","cq_zone_number":16,"cq_zone_name_loc":[60,35]},"geometry":{"type":"Polygon","coordinates":[[[70,80],[32,74.05376],[32,71],[30.82151,69.79125],[30.81527,69.79318],[30.84068,69.77847],[30.83862,69.77491],[30.84754,69.76993],[30.85304,69.76874],[30.8496,69.76185],[30.85304,69.76066],[30.85784,69.76375],[30.86677,69.75805],[30.86128,69.75615],[30.86471,69.75259],[30.87158,69.75639],[30.87501,69.75069],[30.86952,69.75045],[30.87913,69.73832],[30.886,69.73999],[30.89149,69.73381],[30.88531,69.73119],[30.89149,69.72929],[30.88874,69.71977],[30.87295,69.71596],[30.89836,69.70382],[30.88874,69.70263],[30.89561,69.70024],[30.90385,69.70143],[30.91896,69.69333],[30.91896,69.69119],[30.92926,69.68642],[30.9423,69.68475],[30.94436,69.67498],[30.9272,69.67498],[30.9217,69.66925],[30.92994,69.66352],[30.92994,69.65828],[30.93338,69.65374],[30.93406,69.64825],[30.9526,69.63774],[30.95466,69.63224],[30.9478,69.61838],[30.95397,69.61383],[30.94848,69.60881],[30.9478,69.60139],[30.9375,69.59565],[30.94574,69.59277],[30.9423,69.58224],[30.94642,69.57673],[30.93956,69.57337],[30.93887,69.56139],[30.91621,69.55467],[30.86059,69.53739],[30.84068,69.53499],[30.81939,69.52947],[30.80429,69.52899],[30.79055,69.53283],[30.7727,69.53211],[30.76034,69.53355],[30.74386,69.53307],[30.66421,69.54051],[30.56808,69.54195],[30.5159,69.54051],[30.50766,69.54795],[30.41839,69.58942],[30.30578,69.62818],[30.22407,69.65302],[30.15197,69.66925],[30.11009,69.66376],[30.08468,69.65828],[30.09086,69.64323],[30.13687,69.64323],[30.15403,69.60905],[30.17944,69.58607],[30.18219,69.55635],[30.17257,69.53475],[30.11764,69.51866],[30.11627,69.47056],[30.00091,69.41341],[29.93911,69.40617],[29.93156,69.41269],[29.91439,69.41896],[29.90203,69.41752],[29.86015,69.42451],[29.83886,69.41824],[29.79835,69.40665],[29.7853,69.39795],[29.72969,69.3907],[29.71183,69.38394],[29.71115,69.37789],[29.70085,69.37378],[29.69604,69.36434],[29.63218,69.34134],[29.54978,69.31856],[29.52507,69.32729],[29.50309,69.32729],[29.48455,69.32219],[29.42207,69.31807],[29.39529,69.32171],[29.29023,69.29599],[29.26963,69.25274],[29.31152,69.2396],[29.30122,69.21622],[29.30603,69.20964],[29.29367,69.20477],[29.27993,69.16597],[29.24835,69.16158],[29.25796,69.154],[29.24079,69.13738],[29.24011,69.12711],[29.23118,69.1227],[29.23942,69.11365],[29.16114,69.06709],[29.14329,69.0639],[29.04167,69.01084],[29.02038,69.02534],[28.92837,69.05163],[28.49853,68.93076],[28.41613,68.91495],[28.46763,68.88529],[28.66195,68.88653],[28.79997,68.86945],[28.7059,68.73264],[28.43399,68.53929],[28.64685,68.19681],[29.32731,68.07458],[29.65965,67.80327],[30.01602,67.67347],[29.94735,67.55186],[29.93019,67.52327],[29.88143,67.50095],[29.84436,67.48176],[29.76676,67.42726],[29.71389,67.39798],[29.71595,67.3927],[29.68162,67.37818],[29.67544,67.37343],[29.65759,67.37079],[29.64866,67.36471],[29.65347,67.36075],[29.6418,67.3544],[29.62257,67.35176],[29.61776,67.34541],[29.64454,67.34144],[29.64454,67.33721],[29.61433,67.32689],[29.5848,67.33139],[29.57656,67.32292],[29.56764,67.32186],[29.56695,67.31921],[29.57931,67.31577],[29.57107,67.31021],[29.54978,67.31127],[29.53811,67.30783],[29.53811,67.31021],[29.52438,67.30994],[29.51202,67.29193],[29.50584,67.28583],[29.51683,67.28053],[29.36164,67.17874],[29.2202,67.08963],[29.07188,66.99589],[29.04167,66.96125],[29.03343,66.94351],[29.03343,66.92467],[29.06158,66.85298],[29.11857,66.80191],[29.10347,66.79623],[29.10621,66.79082],[29.13162,66.78676],[29.14123,66.77918],[29.15016,66.78027],[29.35821,66.63882],[29.36164,66.62329],[29.38499,66.60749],[29.37606,66.60449],[29.38224,66.59904],[29.4001,66.59631],[29.41932,66.59222],[29.41177,66.58458],[29.42138,66.57939],[29.47357,66.5417],[29.52095,66.49491],[29.59716,66.40355],[29.6315,66.36752],[29.66308,66.31931],[29.69741,66.2779],[29.70703,66.27431],[29.69535,66.27127],[29.70085,66.26685],[29.70909,66.26823],[29.85054,66.17743],[29.92401,66.12663],[29.97139,66.04674],[29.98168,66.04451],[29.97345,66.04061],[29.98443,66.02471],[29.99404,66.02108],[29.98992,66.01913],[29.99748,65.97835],[30.02563,65.96661],[30.02426,65.9585],[30.05996,65.9109],[30.08056,65.86686],[30.11009,65.78025],[30.13549,65.69786],[30.13893,65.66874],[30.04005,65.68656],[30.0167,65.69645],[29.87045,65.66676],[29.72351,65.63675],[29.75578,65.60869],[29.82444,65.57947],[29.86427,65.56073],[29.80041,65.52804],[29.75441,65.49702],[29.7496,65.48334],[29.73243,65.47251],[29.72763,65.40087],[29.73175,65.37399],[29.74754,65.34765],[29.6466,65.28916],[29.60884,65.27566],[29.6006,65.26044],[29.63562,65.23169],[29.69947,65.23111],[29.74617,65.22593],[29.76402,65.22852],[29.81346,65.22334],[29.85946,65.21586],[29.88487,65.20578],[29.89242,65.19282],[29.81826,65.14496],[29.84848,65.12937],[29.86358,65.13139],[29.8526,65.12763],[29.89654,65.10539],[29.87045,65.10365],[29.83337,65.09238],[29.73175,65.0918],[29.70291,65.08196],[29.62669,65.06084],[29.61364,65.01302],[29.59854,64.99503],[29.61845,64.9596],[29.6109,64.9279],[29.64523,64.86644],[29.67956,64.85039],[29.69879,64.83755],[29.68711,64.81886],[29.7393,64.79021],[29.87114,64.78992],[29.88075,64.79284],[29.99336,64.79489],[30.00778,64.79138],[30.0428,64.79343],[30.08606,64.77412],[30.09017,64.76446],[30.08468,64.76534],[30.04074,64.74133],[30.05378,64.71348],[30.13481,64.64946],[30.13137,64.63505],[30.1197,64.62623],[30.05516,64.61563],[29.98924,64.58765],[29.99748,64.57675],[29.9858,64.53397],[30.01533,64.50473],[30.02975,64.50089],[30.02426,64.48285],[30.04692,64.4722],[30.05859,64.45059],[30.05104,64.4417],[30.0579,64.43518],[30.04623,64.40287],[30.11077,64.36576],[30.13824,64.35774],[30.21102,64.3512],[30.28518,64.33039],[30.30166,64.32027],[30.36689,64.30003],[30.36003,64.28156],[30.38749,64.26934],[30.48225,64.26249],[30.50903,64.22161],[30.46646,64.20458],[30.5159,64.15523],[30.55366,64.13158],[30.55366,64.1004],[30.52757,64.04787],[30.44517,63.98138],[30.35591,63.93345],[30.32089,63.9093],[30.26115,63.82249],[30.13069,63.79704],[29.9707,63.75699],[30.06408,63.70867],[30.05996,63.70411],[30.06958,63.70076],[30.07164,63.6959],[30.09361,63.68677],[30.12451,63.66911],[30.24398,63.6063],[30.25703,63.58248],[30.279,63.5779],[30.38612,63.54488],[30.48431,63.46646],[30.67176,63.42656],[30.78781,63.40535],[30.84205,63.37706],[30.84617,63.3706],[30.8702,63.36413],[30.91758,63.35644],[30.93475,63.35582],[30.94299,63.33641],[30.98007,63.30713],[30.98419,63.30682],[30.99243,63.30435],[31.02058,63.3025],[31.08581,63.2809],[31.09954,63.27163],[31.12564,63.26855],[31.13319,63.26144],[31.138,63.26484],[31.15379,63.2565],[31.16615,63.24444],[31.23962,63.21754],[31.23825,63.19494],[31.24649,63.18101],[31.25473,63.17915],[31.2561,63.1407],[31.26503,63.11525],[31.27533,63.10501],[31.29318,63.09444],[31.36116,63.07237],[31.3694,63.0646],[31.38107,63.06024],[31.38107,63.05371],[31.40991,63.04282],[31.42639,63.04375],[31.46209,63.02507],[31.44905,63.00669],[31.5026,62.9964],[31.57196,62.91929],[31.58706,62.90835],[31.4566,62.79744],[31.46621,62.78426],[31.43943,62.78488],[31.38038,62.69052],[31.38519,62.67571],[31.37626,62.67162],[31.37695,62.65806],[31.37283,62.6486],[31.36322,62.64513],[31.34605,62.64323],[31.3488,62.63976],[31.34468,62.63976],[31.25335,62.53322],[31.24443,62.52594],[31.24717,62.52404],[31.22314,62.49932],[31.18469,62.49393],[31.18537,62.48758],[31.17301,62.48156],[31.1634,62.446],[31.13662,62.44219],[31.07276,62.40532],[30.94368,62.33335],[30.9629,62.32761],[30.94162,62.30592],[30.90316,62.31134],[30.8345,62.27559],[30.80909,62.27015],[30.80841,62.26089],[30.76927,62.23755],[30.74317,62.22667],[30.72052,62.20875],[30.68481,62.21131],[30.65528,62.20939],[30.63812,62.1937],[30.62851,62.18921],[30.63537,62.17383],[30.60241,62.14176],[30.56053,62.11608],[30.44311,62.03698],[30.44654,62.03473],[30.44242,62.0328],[30.4383,62.03376],[30.42526,62.02346],[30.37788,61.99961],[30.35247,61.98026],[30.33668,61.97349],[30.32638,61.97317],[30.30578,61.96316],[30.31333,61.94444],[30.30098,61.93475],[30.27488,61.93378],[30.21171,61.89272],[30.19523,61.8911],[30.1966,61.88237],[30.15609,61.85841],[30.07164,61.81888],[30.04348,61.7689],[29.98443,61.739],[29.86564,61.68173],[29.86358,61.67651],[29.86221,61.67065],[29.84642,61.67032],[29.81826,61.65468],[29.8114,61.63609],[29.80522,61.63511],[29.75509,61.6028],[29.74136,61.57601],[29.68917,61.55247],[29.6418,61.52629],[29.64523,61.5204],[29.59373,61.49583],[29.57725,61.49583],[29.55802,61.49256],[29.49691,61.49157],[29.50378,61.46108],[29.41108,61.40329],[29.32182,61.34803],[29.32388,61.34473],[29.26551,61.29101],[29.24148,61.27749],[29.2456,61.27089],[29.24011,61.26825],[29.23599,61.26858],[29.21333,61.26132],[29.21058,61.25867],[29.1996,61.25636],[29.179,61.24513],[29.17694,61.24084],[29.17144,61.24183],[29.03549,61.19323],[28.98742,61.17437],[28.95515,61.15118],[28.91464,61.14356],[28.88374,61.14257],[28.8755,61.1366],[28.81919,61.12201],[28.80477,61.09415],[28.71345,61.04432],[28.71139,61.02736],[28.68461,60.97877],[28.65921,60.95277],[28.64891,60.94877],[28.61526,60.95577],[28.57132,60.95244],[28.53012,60.95544],[28.52325,60.95677],[28.4848,60.92843],[28.4848,60.92676],[28.46489,60.92275],[28.39759,60.8877],[28.40034,60.88569],[28.39759,60.88402],[28.39416,60.88603],[28.33717,60.85461],[28.32412,60.85795],[28.31108,60.84089],[28.25271,60.80876],[28.21907,60.78263],[28.17375,60.77827],[28.1353,60.74104],[28.09066,60.72224],[28.01513,60.68326],[28.01719,60.68124],[27.99797,60.66981],[27.99522,60.67082],[27.87231,60.60483],[27.84553,60.5819],[27.83729,60.57887],[27.8421,60.57482],[27.8421,60.56537],[27.8469,60.56166],[27.81326,60.55457],[27.77137,60.53533],[27.77618,60.50627],[27.76794,60.50458],[27.74871,60.4518],[27.69378,60.43283],[27.71301,60.39757],[27.58667,60.29702],[26.74072,60.09498],[27.09228,59.77022],[28.04122,59.47229],[28.05084,59.46391],[28.08586,59.45868],[28.12431,59.43774],[28.13942,59.41958],[28.16276,59.41119],[28.19297,59.39966],[28.20808,59.38218],[28.20327,59.37484],[28.20808,59.37274],[28.20602,59.36574],[28.19915,59.36154],[28.20121,59.35769],[28.19023,59.35314],[28.1916,59.34649],[28.13255,59.29113],[28.03848,59.28868],[28.00003,59.2771],[27.98011,59.2736],[27.96501,59.2736],[27.90321,59.24025],[27.88948,59.18929],[27.84965,59.15305],[27.81051,59.13051],[27.80365,59.1224],[27.80502,59.11183],[27.80914,59.10689],[27.79884,59.10478],[27.78854,59.09208],[27.79129,59.07021],[27.77687,59.06386],[27.77069,59.05503],[27.77549,59.04867],[27.76725,59.03313],[27.74459,59.02924],[27.74391,59.01935],[27.74047,59.01016],[27.74459,58.98576],[27.73017,58.97231],[27.35801,58.78742],[27.55302,58.36715],[27.48642,58.30443],[27.49054,58.22281],[27.60177,58.11815],[27.63473,58.10001],[27.60795,58.0539],[27.62168,58.00409],[27.64572,57.99863],[27.65396,57.99427],[27.6567,57.99645],[27.6519,58.00045],[27.6567,58.00591],[27.64984,58.011],[27.64915,58.02046],[27.66082,58.01864],[27.667,58.011],[27.69104,58.00482],[27.69516,57.98917],[27.67799,57.97534],[27.68417,57.97024],[27.68623,57.96004],[27.67318,57.95858],[27.65945,57.95822],[27.65533,57.95494],[27.67044,57.94583],[27.667,57.94292],[27.67662,57.93599],[27.68005,57.9349],[27.68486,57.92834],[27.68142,57.92505],[27.71575,57.92104],[27.71575,57.91448],[27.70546,57.90791],[27.69447,57.90755],[27.70477,57.90208],[27.72674,57.90609],[27.74734,57.90317],[27.75421,57.90171],[27.75489,57.89879],[27.77,57.89441],[27.79266,57.89916],[27.81601,57.89624],[27.81806,57.8893],[27.80914,57.88529],[27.81669,57.88383],[27.80914,57.8736],[27.81463,57.86265],[27.79335,57.85132],[27.79197,57.8473],[27.79678,57.84365],[27.79678,57.84073],[27.78579,57.84292],[27.78373,57.83853],[27.77412,57.83488],[27.75764,57.83597],[27.73773,57.82903],[27.7288,57.83122],[27.72605,57.83597],[27.71713,57.83634],[27.71507,57.83963],[27.70957,57.84219],[27.70752,57.84767],[27.70202,57.84073],[27.68554,57.83597],[27.65327,57.84036],[27.62374,57.84073],[27.60177,57.83524],[27.56469,57.83049],[27.55027,57.83268],[27.55714,57.82866],[27.55233,57.82391],[27.54409,57.82281],[27.54409,57.81916],[27.55302,57.81513],[27.54066,57.81477],[27.53517,57.79428],[27.52143,57.79025],[27.51525,57.79318],[27.49328,57.78842],[27.51251,57.77561],[27.50701,57.77378],[27.50633,57.76463],[27.51663,57.76316],[27.52693,57.7551],[27.51251,57.75144],[27.52899,57.75144],[27.52693,57.74154],[27.54684,57.73311],[27.52693,57.73091],[27.52075,57.71515],[27.52487,57.71001],[27.5077,57.71331],[27.50633,57.70928],[27.49877,57.70708],[27.49054,57.71918],[27.49328,57.72468],[27.47268,57.71771],[27.46925,57.71075],[27.4617,57.70854],[27.45071,57.71845],[27.43011,57.71001],[27.4308,57.70084],[27.41294,57.70011],[27.40264,57.68579],[27.39097,57.68579],[27.39166,57.67955],[27.38479,57.67698],[27.37037,57.6667],[27.37655,57.66634],[27.38273,57.65642],[27.37793,57.64576],[27.40058,57.63658],[27.40127,57.62739],[27.39372,57.62114],[27.39166,57.61746],[27.40539,57.61599],[27.40539,57.61341],[27.38616,57.60606],[27.38205,57.5987],[27.37381,57.5987],[27.36557,57.60201],[27.33741,57.5906],[27.33741,57.58545],[27.32643,57.5814],[27.32368,57.57625],[27.33192,57.56594],[27.32986,57.56041],[27.33535,57.5582],[27.3381,57.54531],[27.34291,57.54531],[27.35115,57.51914],[27.369,57.52651],[27.36694,57.53057],[27.3793,57.5361],[27.3944,57.52614],[27.41706,57.52209],[27.4514,57.53315],[27.4617,57.52835],[27.47062,57.52983],[27.46994,57.53499],[27.50015,57.54052],[27.55645,57.53868],[27.54821,57.52209],[27.56813,57.51434],[27.56675,57.50992],[27.55577,57.50033],[27.55645,57.48815],[27.5489,57.45898],[27.53723,57.4612],[27.51594,57.42499],[27.52624,57.42647],[27.5592,57.41537],[27.56057,57.41094],[27.58117,57.41648],[27.60452,57.41574],[27.62512,57.40132],[27.66975,57.3954],[27.68211,57.37282],[27.72056,57.36209],[27.75352,57.3569],[27.75627,57.35134],[27.77755,57.34542],[27.77824,57.33764],[27.77343,57.32985],[27.78167,57.31984],[27.81738,57.32466],[27.83454,57.31651],[27.84347,57.30316],[27.8572,57.30353],[27.86613,57.29648],[27.86682,57.2783],[27.86132,57.27496],[27.86064,57.26307],[27.86544,57.26048],[27.86888,57.24673],[27.86064,57.24599],[27.84622,57.23224],[27.83866,57.22072],[27.84141,57.21142],[27.82905,57.20733],[27.82562,57.19171],[27.83386,57.18092],[27.82562,57.17273],[27.83111,57.16752],[27.82287,57.15747],[27.81601,57.14257],[27.78648,57.13288],[27.78167,57.13586],[27.74734,57.12804],[27.74734,57.12394],[27.73292,57.1176],[27.73498,57.11126],[27.75421,57.10604],[27.75421,57.09896],[27.74665,57.09821],[27.74459,57.10194],[27.73704,57.10343],[27.73223,57.10157],[27.72399,57.10082],[27.71163,57.10418],[27.71507,57.09336],[27.7391,57.09112],[27.74665,57.08329],[27.76382,57.08739],[27.76863,57.08441],[27.75558,57.07918],[27.74253,57.06761],[27.75077,57.05305],[27.73429,57.04782],[27.73086,57.0396],[27.72949,57.02877],[27.71438,57.00447],[27.73292,57.00185],[27.76931,57.00447],[27.74322,56.95658],[27.73635,56.92024],[27.73017,56.92024],[27.72056,56.91312],[27.70683,56.91275],[27.6876,56.91687],[27.67112,56.89475],[27.67318,56.8865],[27.67044,56.86961],[27.6567,56.8546],[27.65945,56.83582],[27.69172,56.83657],[27.70202,56.84221],[27.70408,56.84859],[27.72056,56.84859],[27.73429,56.85648],[27.74253,56.8546],[27.75627,56.86023],[27.78854,56.86549],[27.79335,56.86286],[27.82287,56.86774],[27.84484,56.87449],[27.84828,56.87937],[27.87574,56.87674],[27.87025,56.86736],[27.88536,56.85723],[27.88536,56.8531],[27.89978,56.83695],[27.90184,56.82155],[27.96707,56.8377],[27.97119,56.83319],[27.96432,56.82831],[27.97531,56.82493],[27.96981,56.82004],[27.97805,56.81253],[27.95814,56.80726],[27.9396,56.79599],[27.94715,56.7832],[27.94441,56.77643],[27.93685,56.77417],[27.91694,56.77455],[27.90046,56.76025],[27.89772,56.75272],[27.91488,56.75084],[27.91214,56.74293],[27.919,56.73238],[27.93617,56.72937],[27.94372,56.7241],[27.9499,56.71505],[27.96295,56.71317],[27.96432,56.70676],[27.98149,56.70676],[27.97599,56.69168],[27.97943,56.68904],[27.99316,56.68904],[28.0117,56.67433],[28.0117,56.63659],[28.0371,56.60901],[28.0426,56.59163],[28.0529,56.58596],[28.07762,56.58596],[28.09684,56.58293],[28.12294,56.58331],[28.14353,56.5731],[28.13736,56.56288],[28.14285,56.55456],[28.13873,56.5504],[28.10028,56.54018],[28.09959,56.53222],[28.0941,56.53033],[28.08998,56.52768],[28.09547,56.52427],[28.09066,56.51935],[28.09616,56.51745],[28.09616,56.51291],[28.10165,56.50874],[28.11264,56.50988],[28.125,56.51632],[28.13667,56.50874],[28.1298,56.50343],[28.125,56.49737],[28.1504,56.475],[28.17512,56.45376],[28.19023,56.45148],[28.19435,56.44162],[28.18542,56.42909],[28.18199,56.42833],[28.18679,56.41086],[28.19297,56.40554],[28.18679,56.40326],[28.16482,56.37589],[28.19297,56.3603],[28.19366,56.35383],[28.19915,56.34432],[28.19984,56.33709],[28.20739,56.31996],[28.23211,56.29558],[28.24173,56.27958],[28.24035,56.27309],[28.21975,56.25212],[28.21907,56.24869],[28.19915,56.24144],[28.18405,56.22655],[28.18748,56.22045],[28.20396,56.2151],[28.19297,56.20746],[28.18611,56.20937],[28.17306,56.20326],[28.18542,56.20326],[28.18679,56.19448],[28.1813,56.19333],[28.17649,56.18683],[28.17924,56.17996],[28.15109,56.17002],[28.13736,56.17193],[28.12843,56.16505],[28.1147,56.16314],[28.10165,56.15243],[28.0941,56.14899],[28.09547,56.13598],[28.06869,56.13981],[28.04397,56.12833],[28.04328,56.11991],[28.02612,56.11914],[28.02406,56.12374],[27.99385,56.12641],[27.98698,56.12144],[27.97187,56.11991],[27.96981,56.10995],[27.95951,56.10344],[27.95059,56.10306],[27.95059,56.09847],[27.9396,56.09272],[27.93754,56.0751],[27.92106,56.05823],[27.91282,56.059],[27.90046,56.04865],[27.87162,56.05286],[27.86132,56.04366],[27.83729,56.03906],[27.82218,56.04136],[27.80708,56.03484],[27.83454,56.02333],[27.81463,56.00836],[27.80571,56.00874],[27.81051,55.99108],[27.78442,55.97648],[27.77,55.97533],[27.76794,55.97956],[27.75009,55.97917],[27.74322,55.97187],[27.65327,55.93074],[27.65258,55.91381],[27.62512,55.89225],[27.64022,55.84795],[27.61413,55.78661],[27.56538,55.78468],[27.47818,55.78931],[27.46856,55.79433],[27.45826,55.79201],[27.4308,55.79549],[27.37381,55.80899],[27.36625,55.81555],[27.35527,55.81131],[27.35115,55.80205],[27.32368,55.79742],[27.29553,55.79008],[27.28935,55.78545],[27.24952,55.79471],[27.24746,55.80205],[27.21382,55.82173],[27.1994,55.83407],[27.17124,55.83792],[27.16713,55.84602],[27.15133,55.85257],[27.14241,55.8491],[27.13073,55.8518],[27.10258,55.84525],[27.09777,55.82713],[27.08061,55.82713],[27.06138,55.83098],[27.03872,55.82983],[27.03254,55.82327],[27.02636,55.82751],[27.014,55.82828],[26.99821,55.81787],[26.97418,55.8144],[26.968,55.80629],[26.95426,55.79973],[26.94603,55.78738],[26.93573,55.78931],[26.91787,55.78738],[26.89727,55.75184],[26.8753,55.73522],[26.87873,55.72749],[26.87187,55.7128],[26.84646,55.70777],[26.82655,55.70545],[26.81625,55.69964],[26.7984,55.69771],[26.78329,55.67758],[26.74346,55.68184],[26.72012,55.69964],[26.65214,55.70699],[26.64596,55.70506],[26.64939,55.7008],[26.64184,55.69616],[26.63703,55.68184],[26.63085,55.68106],[26.63085,55.65938],[26.63703,55.65357],[26.63566,55.59891],[26.62605,55.57213],[26.62056,55.56941],[26.62605,55.56747],[26.62193,55.56436],[26.61163,55.56553],[26.5979,55.55388],[26.58554,55.54689],[26.5821,55.53484],[26.56288,55.53173],[26.54914,55.52474],[26.54502,55.52785],[26.53335,55.52591],[26.52511,55.50997],[26.53953,55.49674],[26.53816,55.4878],[26.5512,55.47651],[26.5567,55.46406],[26.54434,55.45238],[26.55944,55.43914],[26.53953,55.44264],[26.55944,55.41186],[26.54914,55.40835],[26.55464,55.38847],[26.53953,55.38847],[26.51069,55.3795],[26.50245,55.37052],[26.4743,55.36974],[26.47361,55.35764],[26.43928,55.34945],[26.45164,55.34047],[26.47499,55.34047],[26.5155,55.33226],[26.54846,55.32797],[26.55464,55.32289],[26.56906,55.32094],[26.5718,55.32445],[26.58485,55.32445],[26.58828,55.32055],[26.60545,55.32055],[26.61644,55.33148],[26.63017,55.33344],[26.62468,55.32601],[26.63017,55.32094],[26.63909,55.32484],[26.64459,55.33383],[26.66038,55.335],[26.66587,55.34047],[26.68235,55.33266],[26.70707,55.32836],[26.72149,55.3225],[26.77848,55.32211],[26.81213,55.31547],[26.81213,55.31078],[26.83136,55.30648],[26.83685,55.29084],[26.82724,55.27755],[26.7984,55.27324],[26.79565,55.26464],[26.78741,55.2662],[26.77986,55.25955],[26.76544,55.25838],[26.74621,55.25486],[26.72493,55.23881],[26.72973,55.21492],[26.70089,55.20199],[26.69471,55.20591],[26.67411,55.19729],[26.68579,55.17886],[26.70158,55.17808],[26.70776,55.1718],[26.6954,55.16631],[26.67755,55.16984],[26.67617,55.15847],[26.6645,55.15651],[26.65489,55.16161],[26.64459,55.15925],[26.64184,55.15455],[26.61712,55.14631],[26.5876,55.15533],[26.54159,55.14434],[26.51619,55.16082],[26.49215,55.15141],[26.48803,55.15337],[26.47842,55.14788],[26.47842,55.13807],[26.46263,55.12943],[26.42486,55.13846],[26.41319,55.14003],[26.39671,55.13296],[26.3816,55.14631],[26.35826,55.14827],[26.32392,55.14513],[26.32392,55.1365],[26.30127,55.13493],[26.31019,55.12864],[26.30264,55.1259],[26.26144,55.12118],[26.22779,55.10823],[26.25114,55.0933],[26.27243,55.07915],[26.26419,55.06696],[26.24633,55.07011],[26.23535,55.05988],[26.24565,55.05595],[26.24565,55.05123],[26.23741,55.04966],[26.24084,55.03904],[26.22573,55.02211],[26.21269,55.01345],[26.20925,54.99888],[26.18522,54.9914],[26.18248,54.99337],[26.15501,54.99179],[26.14196,54.9851],[26.11724,54.98864],[26.11999,54.98037],[26.10969,54.97288],[26.07742,54.97052],[26.07467,54.965],[26.07879,54.95514],[26.0527,54.94962],[26.06369,54.94252],[26.02592,54.9441],[25.99021,54.95199],[25.9909,54.9579],[25.94833,54.95002],[25.90644,54.93306],[25.88447,54.93582],[25.87829,54.9299],[25.85632,54.92793],[25.85289,54.92003],[25.85907,54.91806],[25.85495,54.91214],[25.85838,54.90583],[25.85357,54.89674],[25.81855,54.88055],[25.80757,54.8687],[25.79521,54.8608],[25.78697,54.85922],[25.77941,54.85447],[25.77804,54.84419],[25.78353,54.84064],[25.7801,54.83629],[25.77186,54.82363],[25.76362,54.82323],[25.75195,54.82403],[25.7341,54.80385],[25.73478,54.79078],[25.74783,54.76544],[25.74646,54.75236],[25.74714,54.72739],[25.74234,54.71073],[25.73478,54.70201],[25.7389,54.68534],[25.73066,54.68415],[25.74783,54.64006],[25.74302,54.63092],[25.75607,54.62138],[25.76088,54.57843],[25.7492,54.56489],[25.68191,54.53582],[25.65719,54.50912],[25.65101,54.48998],[25.63865,54.47083],[25.62355,54.46963],[25.60226,54.46085],[25.60981,54.45606],[25.61599,54.45886],[25.62904,54.45487],[25.6208,54.45088],[25.63316,54.42292],[25.60501,54.39535],[25.59608,54.39655],[25.59059,54.40094],[25.58509,54.39255],[25.59265,54.37575],[25.56312,54.36575],[25.55557,54.34294],[25.52948,54.34214],[25.5336,54.33374],[25.55007,54.33094],[25.55076,54.32493],[25.54801,54.32333],[25.55282,54.31652],[25.58853,54.32333],[25.58921,54.31492],[25.6208,54.31011],[25.62904,54.31812],[25.64415,54.31171],[25.66131,54.32293],[25.67779,54.32333],[25.71144,54.29529],[25.70182,54.28967],[25.70663,54.28607],[25.70045,54.28046],[25.71144,54.27204],[25.72105,54.27444],[25.7444,54.27284],[25.74989,54.26803],[25.75813,54.24998],[25.77529,54.23794],[25.78353,54.23794],[25.78628,54.23473],[25.75195,54.22229],[25.75401,54.21265],[25.77461,54.20342],[25.77941,54.19297],[25.77186,54.18293],[25.77804,54.17811],[25.7801,54.16806],[25.78628,54.16484],[25.78559,54.15479],[25.77941,54.15519],[25.78216,54.16002],[25.77461,54.16163],[25.73684,54.15801],[25.70388,54.16766],[25.7032,54.15801],[25.6874,54.1564],[25.68603,54.14192],[25.66474,54.14071],[25.65033,54.13026],[25.6311,54.13066],[25.62629,54.14232],[25.60089,54.14152],[25.60089,54.14594],[25.58715,54.14554],[25.56587,54.15198],[25.55351,54.14795],[25.5487,54.15439],[25.5384,54.15479],[25.53085,54.15921],[25.52948,54.16605],[25.52398,54.16645],[25.51025,54.17569],[25.51574,54.18494],[25.56037,54.19458],[25.56655,54.20743],[25.56106,54.21546],[25.54801,54.21867],[25.54595,54.22911],[25.55419,54.2263],[25.56381,54.23232],[25.57548,54.2251],[25.58921,54.2251],[25.59059,54.23232],[25.5693,54.25238],[25.55694,54.26281],[25.55419,54.26682],[25.56449,54.26923],[25.56243,54.27444],[25.52192,54.28166],[25.513,54.29929],[25.51506,54.30731],[25.49995,54.30971],[25.49995,54.3017],[25.48278,54.3013],[25.47866,54.29529],[25.45326,54.29128],[25.45257,54.29809],[25.41069,54.28767],[25.39489,54.27484],[25.38116,54.27725],[25.37567,54.27364],[25.36468,54.27164],[25.35713,54.26402],[25.34683,54.26482],[25.33859,54.26642],[25.32348,54.26201],[25.29121,54.26281],[25.26786,54.27484],[25.2507,54.25158],[25.23353,54.26281],[25.21568,54.25479],[25.21293,54.24115],[25.20332,54.23914],[25.20263,54.22068],[25.19783,54.21506],[25.18135,54.20864],[25.16212,54.2002],[25.16006,54.19137],[25.13809,54.18413],[25.11749,54.17007],[25.09071,54.14554],[25.07835,54.14313],[25.07148,54.13307],[25.05294,54.1383],[25.01312,54.1383],[24.99183,54.14474],[24.97947,54.16243],[24.96643,54.17208],[24.96231,54.16967],[24.95544,54.17167],[24.93003,54.16565],[24.92111,54.16122],[24.86618,54.14795],[24.85931,54.15117],[24.81399,54.14554],[24.8291,54.13307],[24.79476,54.11456],[24.78653,54.11416],[24.77966,54.11979],[24.77279,54.11859],[24.77691,54.10047],[24.80506,54.08597],[24.81742,54.07026],[24.82292,54.05455],[24.82017,54.04528],[24.83734,54.03761],[24.84146,54.03318],[24.85313,54.03399],[24.86274,54.03842],[24.87167,54.03439],[24.86892,54.02915],[24.86137,54.02834],[24.85588,54.02995],[24.8339,54.02673],[24.84214,54.01261],[24.84077,54.00696],[24.82566,54.00897],[24.82429,54.00494],[24.8291,54.00373],[24.82566,53.99889],[24.80918,53.99445],[24.79476,54.0005],[24.77005,53.99202],[24.76593,53.99202],[24.73159,53.97426],[24.73983,53.9682],[24.71099,53.96578],[24.68627,53.96537],[24.69314,53.97466],[24.69177,53.98597],[24.69795,53.99566],[24.70481,54.00978],[24.69726,54.01704],[24.67186,54.01704],[24.6595,54.00615],[24.64508,54.00534],[24.64439,54.00776],[24.63272,54.00615],[24.62722,54.0118],[24.61006,54.00131],[24.60182,53.99929],[24.60319,53.99323],[24.57298,53.98758],[24.56062,53.98032],[24.51736,53.96012],[24.50225,53.94477],[24.48303,53.93305],[24.47479,53.93143],[24.47067,53.92577],[24.459,53.91889],[24.45556,53.91],[24.4384,53.90272],[24.43222,53.90474],[24.38964,53.90352],[24.35257,53.89665],[24.32716,53.90555],[24.30175,53.91728],[24.30656,53.92739],[24.28802,53.92213],[24.27429,53.93426],[24.2633,53.93668],[24.25987,53.94881],[24.24819,53.95366],[24.23378,53.94436],[24.21043,53.95002],[24.21455,53.95729],[24.2015,53.97022],[24.15756,53.96214],[24.14314,53.95446],[24.1143,53.9577],[24.10331,53.95164],[24.104,53.94073],[23.98178,53.92456],[23.96736,53.92779],[23.96598,53.93426],[23.97285,53.93385],[23.97148,53.94275],[23.96186,53.95487],[23.95088,53.95851],[23.94058,53.95689],[23.92272,53.96578],[23.91311,53.96901],[23.90693,53.96658],[23.90693,53.95366],[23.89114,53.94598],[23.87466,53.94355],[23.85955,53.95446],[23.84033,53.95608],[23.81767,53.94315],[23.79776,53.93385],[23.79913,53.92739],[23.81561,53.92092],[23.81629,53.90919],[23.80394,53.90636],[23.79776,53.90069],[23.77578,53.89948],[23.77647,53.90474],[23.78128,53.91283],[23.77372,53.91242],[23.76411,53.92456],[23.73115,53.93062],[23.70918,53.94073],[23.70163,53.93305],[23.69751,53.93507],[23.67897,53.93183],[23.67416,53.93466],[23.66523,53.93264],[23.6515,53.93385],[23.62953,53.92739],[23.61579,53.92819],[23.60481,53.92253],[23.59794,53.93426],[23.58696,53.93709],[23.58009,53.94153],[23.56979,53.94315],[23.56086,53.94113],[23.55125,53.94355],[23.5382,53.94315],[23.52859,53.95487],[23.51623,53.95527],[23.51142,53.93022],[23.51211,53.91],[23.52584,53.86346],[23.53683,53.85698],[23.53958,53.859],[23.54713,53.85576],[23.55125,53.8509],[23.54644,53.84807],[23.54576,53.84361],[23.55262,53.84077],[23.54713,53.83551],[23.55331,53.83186],[23.54713,53.8274],[23.54438,53.79537],[23.5485,53.76738],[23.58284,53.74262],[23.58558,53.70605],[23.60206,53.66335],[23.62747,53.59291],[23.6515,53.54806],[23.65837,53.52153],[23.66661,53.51336],[23.70575,53.43776],[23.73733,53.39274],[23.76274,53.33907],[23.79913,53.27424],[23.81835,53.24508],[23.85612,53.23193],[23.8623,53.22042],[23.85818,53.20932],[23.86367,53.19616],[23.87947,53.18834],[23.89595,53.17641],[23.9035,53.17764],[23.91655,53.15624],[23.91037,53.14965],[23.91517,53.14265],[23.91174,53.13894],[23.90693,53.13812],[23.89595,53.12741],[23.88565,53.11504],[23.88839,53.10556],[23.88153,53.10144],[23.88084,53.09361],[23.87329,53.08124],[23.87741,53.07917],[23.88359,53.06556],[23.90144,53.05937],[23.89869,53.05029],[23.91655,53.03914],[23.90762,53.03295],[23.92478,53.02387],[23.9344,52.98875],[23.92822,52.98296],[23.93096,52.97676],[23.94538,52.95898],[23.91723,52.93994],[23.91723,52.90558],[23.92616,52.89896],[23.92478,52.83098],[23.9392,52.81355],[23.93783,52.713],[23.90007,52.69011],[23.89251,52.68054],[23.88015,52.67888],[23.78059,52.62597],[23.75862,52.61639],[23.73939,52.61222],[23.73321,52.60763],[23.72016,52.61597],[23.63983,52.60805],[23.54164,52.58135],[23.46679,52.54963],[23.45855,52.54086],[23.43795,52.53167],[23.3741,52.48487],[23.3123,52.42503],[23.30886,52.41498],[23.302,52.40451],[23.27659,52.39362],[23.24226,52.35924],[23.1784,52.28454],[23.20587,52.27614],[23.20037,52.26983],[23.20587,52.25765],[23.19488,52.24083],[23.20312,52.22779],[23.25462,52.21812],[23.27041,52.21475],[23.29856,52.22191],[23.30886,52.2198],[23.29856,52.21223],[23.3171,52.20802],[23.32534,52.21055],[23.33702,52.20676],[23.3535,52.21013],[23.35281,52.20508],[23.36929,52.20634],[23.36929,52.19708],[23.38439,52.1954],[23.39126,52.20129],[23.39744,52.20129],[23.39469,52.19708],[23.40293,52.19371],[23.39607,52.18698],[23.40225,52.1773],[23.41667,52.18319],[23.42903,52.17351],[23.44482,52.18361],[23.4613,52.18319],[23.46748,52.17393],[23.48327,52.18109],[23.49906,52.17982],[23.50799,52.17393],[23.48602,52.1655],[23.48739,52.15371],[23.50044,52.14697],[23.51005,52.1495],[23.51417,52.13812],[23.54095,52.12716],[23.54713,52.11072],[23.55743,52.10987],[23.55743,52.11915],[23.5691,52.11578],[23.58146,52.11957],[23.6,52.11746],[23.60961,52.10903],[23.61991,52.10903],[23.61991,52.10481],[23.61099,52.1006],[23.61717,52.09216],[23.63983,52.08667],[23.64532,52.07697],[23.65219,52.07697],[23.65219,52.07148],[23.64463,52.06557],[23.65356,52.06009],[23.64189,52.05882],[23.6515,52.05629],[23.6618,52.04024],[23.65905,52.02038],[23.68377,52.0001],[23.68789,51.99037],[23.66386,51.97938],[23.67073,51.96584],[23.65356,51.96415],[23.63777,51.95399],[23.62541,51.94934],[23.63983,51.94976],[23.63845,51.94511],[23.64532,51.94045],[23.64326,51.93241],[23.63159,51.93114],[23.6309,51.92097],[23.61923,51.92648],[23.61236,51.91674],[23.61717,51.90657],[23.63914,51.89429],[23.62335,51.88454],[23.62953,51.87267],[23.61717,51.87861],[23.60412,51.87564],[23.61579,51.85613],[23.61305,51.84553],[23.59931,51.84044],[23.60824,51.83959],[23.60275,51.83111],[23.61923,51.83195],[23.64051,51.80012],[23.62953,51.79247],[23.63021,51.78186],[23.61373,51.77293],[23.59726,51.77293],[23.58558,51.75976],[23.56636,51.75806],[23.56224,51.76146],[23.54438,51.74743],[23.53134,51.74318],[23.52859,51.72915],[23.54095,51.72447],[23.54507,51.72745],[23.55194,51.71767],[23.54988,51.70958],[23.55468,51.7066],[23.54782,51.70448],[23.55949,51.70107],[23.54713,51.68447],[23.55743,51.68192],[23.55194,51.67511],[23.55674,51.66489],[23.54095,51.65679],[23.5382,51.64572],[23.54782,51.64359],[23.54782,51.63762],[23.5382,51.63591],[23.54507,51.62228],[23.54164,51.60351],[23.55468,51.58219],[23.56636,51.58091],[23.56498,51.56896],[23.56979,51.56725],[23.56979,51.56255],[23.57597,51.55572],[23.56498,51.55188],[23.56292,51.54377],[23.56498,51.53352],[23.58558,51.52925],[23.5952,51.53395],[23.60137,51.52967],[23.61305,51.52839],[23.61648,51.52198],[23.62472,51.51429],[23.61717,51.51087],[23.61648,51.50275],[23.62335,51.50318],[23.62129,51.49677],[23.63777,51.48608],[23.65081,51.48608],[23.65974,51.49079],[23.67347,51.47368],[23.64601,51.45871],[23.64944,51.44587],[23.67553,51.44245],[23.68652,51.44373],[23.68377,51.43432],[23.67485,51.43175],[23.68789,51.41847],[23.703,51.42062],[23.6927,51.41205],[23.70231,51.41034],[23.70163,51.40477],[23.67691,51.39277],[23.68583,51.38635],[23.68103,51.38249],[23.68789,51.36663],[23.66729,51.36706],[23.65974,51.3602],[23.65562,51.34219],[23.63708,51.32803],[23.63708,51.32031],[23.64944,51.29885],[23.65013,51.28811],[23.67416,51.29198],[23.69613,51.28682],[23.7236,51.25976],[23.72428,51.23827],[23.73939,51.23354],[23.74214,51.22236],[23.73596,51.21978],[23.74008,51.21376],[23.75656,51.21419],[23.76205,51.20344],[23.78059,51.2],[23.78334,51.19139],[23.80737,51.18579],[23.82453,51.16556],[23.86711,51.15049],[23.86848,51.13153],[23.85131,51.12766],[23.85818,51.10136],[23.87054,51.09446],[23.87123,51.08541],[23.87741,51.07635],[23.88153,51.08239],[23.90144,51.07462],[23.90693,51.07807],[23.91517,51.04786],[23.91929,51.04657],[23.91586,51.04096],[23.93096,51.03923],[23.91586,51.03016],[23.93302,51.01548],[23.9138,51.00857],[23.93165,51.00554],[23.95362,50.99431],[23.96667,50.97831],[23.97148,50.94847],[23.9907,50.94415],[23.99688,50.929],[24.02435,50.91515],[24.05387,50.89263],[24.08477,50.88874],[24.09988,50.87747],[24.1143,50.87314],[24.14451,50.86967],[24.14245,50.85927],[24.13078,50.84844],[24.09782,50.83499],[24.04495,50.83456],[24.00787,50.84106],[23.98727,50.83543],[23.96804,50.81114],[23.95774,50.79465],[23.96736,50.78119],[23.97834,50.7712],[23.99757,50.76903],[24.0113,50.77381],[24.02366,50.76773],[24.02435,50.75817],[24.01748,50.76252],[24.01199,50.75687],[24.01886,50.74514],[24.01954,50.72515],[24.04426,50.71689],[24.07035,50.71993],[24.07447,50.7108],[24.06761,50.70776],[24.07104,50.70037],[24.06349,50.67949],[24.08203,50.67253],[24.08889,50.66252],[24.08065,50.64641],[24.08477,50.6438],[24.08683,50.63857],[24.09782,50.63639],[24.09164,50.61897],[24.09713,50.61331],[24.09919,50.60198],[24.09027,50.57844],[24.09095,50.56317],[24.07104,50.50294],[24.03533,50.44482],[24.0065,50.43607],[23.99826,50.41201],[23.93989,50.4142],[23.88359,50.40808],[23.80737,50.40589],[23.73046,50.39013],[23.70575,50.37699],[23.69064,50.35466],[23.68515,50.33143],[23.63845,50.32047],[23.6309,50.30513],[23.61167,50.29899],[23.58284,50.26696],[23.50662,50.23007],[23.47091,50.21733],[23.42834,50.18393],[23.38096,50.16062],[23.31504,50.11221],[23.27865,50.09988],[23.28002,50.08578],[23.26561,50.08005],[23.2402,50.05449],[23.21617,50.04788],[23.21342,50.03112],[23.14201,49.97153],[23.11454,49.9574],[23.10836,49.94238],[23.05481,49.89994],[22.99507,49.84285],[22.97035,49.84019],[22.95661,49.81096],[22.96073,49.80475],[22.9319,49.79323],[22.89756,49.76574],[22.8955,49.75154],[22.87353,49.7409],[22.85362,49.7227],[22.84744,49.71071],[22.82341,49.69428],[22.80693,49.69384],[22.78701,49.67696],[22.78289,49.6574],[22.75199,49.63206],[22.6847,49.57332],[22.67578,49.54971],[22.6641,49.53991],[22.64076,49.53011],[22.65106,49.50782],[22.67097,49.49712],[22.69775,49.49444],[22.71286,49.43553],[22.73071,49.40114],[22.74856,49.36046],[22.74307,49.3363],[22.75131,49.31706],[22.74444,49.29915],[22.73895,49.24763],[22.71766,49.24001],[22.71423,49.22611],[22.72041,49.22163],[22.74513,49.21759],[22.70668,49.17586],[22.71835,49.16509],[22.73345,49.1817],[22.75749,49.18349],[22.73963,49.15925],[22.75749,49.15297],[22.79251,49.15656],[22.79319,49.13904],[22.82959,49.11747],[22.83096,49.11163],[22.84126,49.11208],[22.85018,49.11478],[22.85774,49.11298],[22.85568,49.10399],[22.87765,49.0968],[22.8907,49.0959],[22.88246,49.08151],[22.86666,49.07611],[22.87078,49.07251],[22.86598,49.06846],[22.86666,49.06082],[22.87422,49.05272],[22.86598,49.03966],[22.87971,49.03876],[22.87422,49.03066],[22.88246,49.02256],[22.89482,49.0167],[22.89001,49.01355],[22.89207,49.0077],[22.84675,49.00184],[22.84263,49.0131],[22.83371,49.02481],[22.82478,49.02301],[22.81379,49.02571],[22.80967,49.03471],[22.80006,49.03741],[22.76367,49.05452],[22.75474,49.04236],[22.72316,49.05272],[22.69912,49.05002],[22.6847,49.03876],[22.67303,49.04191],[22.6696,49.04777],[22.65998,49.04777],[22.63938,49.05992],[22.62771,49.07881],[22.60643,49.08511],[22.60093,49.0932],[22.58171,49.0977],[22.56111,49.08735],[22.55424,49.07971],[22.54943,49.02841],[22.53913,49.02121],[22.546,49.00724],[22.52952,49.00229],[22.51785,48.99643],[22.50618,49.00004],[22.4945,48.99869],[22.49107,48.99373],[22.47734,48.99148],[22.4739,48.97525],[22.46566,48.97255],[22.42446,48.92881],[22.43064,48.91934],[22.42378,48.9049],[22.42103,48.88413],[22.38945,48.87374],[22.38121,48.86019],[22.37846,48.83941],[22.37571,48.83579],[22.38327,48.82494],[22.38601,48.79872],[22.37365,48.78243],[22.34687,48.76705],[22.34344,48.75166],[22.36129,48.7417],[22.36061,48.72766],[22.35099,48.72222],[22.35305,48.71814],[22.34619,48.70546],[22.34001,48.68416],[22.32627,48.68461],[22.2892,48.66602],[22.25006,48.64697],[22.25074,48.64153],[22.24182,48.62791],[22.22911,48.62088],[22.21675,48.62178],[22.20851,48.6177],[22.20405,48.61134],[22.19512,48.60953],[22.18792,48.60976],[22.18895,48.60703],[22.18689,48.60317],[22.1838,48.60249],[22.17144,48.58909],[22.16114,48.56774],[22.1553,48.51524],[22.15221,48.51273],[22.15358,48.50932],[22.13779,48.43216],[22.13951,48.42828],[22.13676,48.41689],[22.1426,48.41097],[22.14191,48.40732],[22.14912,48.4055],[22.15564,48.40595],[22.15667,48.41051],[22.18895,48.41598],[22.21435,48.42646],[22.23632,48.41051],[22.25418,48.41234],[22.26585,48.4096],[22.25624,48.39365],[22.23907,48.38681],[22.25555,48.37677],[22.26791,48.36081],[22.30018,48.35488],[22.31872,48.35259],[22.31803,48.34575],[22.32078,48.33753],[22.31185,48.32612],[22.31735,48.32201],[22.31666,48.31882],[22.33589,48.30831],[22.34069,48.29735],[22.33589,48.29415],[22.34001,48.27862],[22.36061,48.26674],[22.37022,48.24433],[22.38395,48.23473],[22.40112,48.24799],[22.41966,48.24936],[22.4327,48.24708],[22.43408,48.25211],[22.44644,48.24296],[22.46841,48.24342],[22.48901,48.25394],[22.50274,48.24754],[22.49656,48.23976],[22.51579,48.23793],[22.51373,48.22696],[22.53227,48.20957],[22.53913,48.21094],[22.55561,48.19813],[22.57209,48.19538],[22.5666,48.18531],[22.56179,48.18257],[22.57621,48.15921],[22.58308,48.15921],[22.5872,48.15234],[22.59132,48.15326],[22.5975,48.14593],[22.58789,48.14318],[22.59338,48.13447],[22.59201,48.12576],[22.59819,48.1166],[22.59132,48.10789],[22.61879,48.10513],[22.63526,48.09642],[22.67784,48.09321],[22.7211,48.11568],[22.7568,48.11889],[22.76435,48.10926],[22.77534,48.11155],[22.76985,48.12164],[22.79045,48.11843],[22.80006,48.12255],[22.80555,48.1198],[22.80555,48.10743],[22.82066,48.1198],[22.83027,48.11247],[22.82821,48.10192],[22.83783,48.07807],[22.84538,48.08404],[22.85774,48.07762],[22.86186,48.05789],[22.86941,48.05238],[22.88246,48.05559],[22.88108,48.03815],[22.8749,48.02621],[22.86529,48.02253],[22.8646,48.01151],[22.83645,47.98992],[22.87971,47.96418],[22.89276,47.96648],[22.8907,47.95866],[22.89688,47.95314],[22.9113,47.95958],[22.9319,47.95912],[22.94769,47.96739],[22.93533,47.99911],[22.92915,47.99911],[22.92022,48.00784],[22.9216,48.01381],[22.92709,48.01932],[22.94494,48.0161],[22.96005,48.00738],[22.96279,48.01197],[22.9779,48.00921],[22.97859,48.00692],[22.99438,48.00508],[22.99644,47.99635],[23.00537,47.99543],[23.01223,47.99221],[23.02459,47.99221],[23.03146,48.00003],[23.05961,48.00416],[23.07334,48.00876],[23.08364,48.006],[23.09257,48.00784],[23.09463,48.01289],[23.09806,48.0161],[23.09257,48.01748],[23.10974,48.03539],[23.10836,48.04044],[23.1015,48.04366],[23.11248,48.05513],[23.10699,48.06844],[23.11729,48.07349],[23.12347,48.07853],[23.12484,48.08266],[23.11523,48.08771],[23.14064,48.09826],[23.14956,48.10284],[23.15231,48.11339],[23.16535,48.11568],[23.1681,48.12118],[23.18183,48.11935],[23.19282,48.09826],[23.23539,48.09321],[23.24089,48.0955],[23.24775,48.09459],[23.25325,48.10192],[23.26973,48.10147],[23.2711,48.08679],[23.28208,48.08266],[23.29307,48.07349],[23.28758,48.07165],[23.27934,48.0611],[23.28758,48.05008],[23.30062,48.04503],[23.3171,48.04503],[23.32672,48.03815],[23.33496,48.03952],[23.34045,48.03631],[23.3329,48.03264],[23.33221,48.02253],[23.34526,48.0184],[23.348,48.0207],[23.3535,48.02024],[23.35693,48.01519],[23.37616,48.01013],[23.37822,48.00462],[23.38645,48.006],[23.40293,48.00095],[23.40499,47.99405],[23.41804,47.98808],[23.43521,47.98946],[23.43933,47.98302],[23.44894,47.98164],[23.45306,47.97521],[23.48396,47.97337],[23.49494,47.96831],[23.50456,47.97015],[23.50662,47.97889],[23.5231,47.99589],[23.5231,47.99957],[23.53134,48.01978],[23.54301,48.01013],[23.554,48.00876],[23.56567,48.00462],[23.58696,48.00416],[23.59314,48.00784],[23.61579,48.0083],[23.62472,48.00278],[23.63159,48.0037],[23.64463,47.99865],[23.64944,47.99038],[23.66798,47.9844],[23.70849,47.99176],[23.7133,47.99176],[23.71742,47.98808],[23.7284,47.99405],[23.75793,47.99543],[23.76617,47.99267],[23.77098,47.99589],[23.78608,47.98808],[23.81012,47.98394],[23.82316,47.97935],[23.83621,47.96464],[23.83483,47.95774],[23.84239,47.95452],[23.84925,47.94026],[23.86848,47.93198],[23.88359,47.94256],[23.90762,47.94509],[23.91483,47.9467],[23.93611,47.94532],[23.95191,47.95636],[23.95362,47.9628],[23.97079,47.96418],[23.97354,47.96602],[23.98109,47.96556],[23.98452,47.9605],[24.00238,47.96188],[24.01062,47.96785],[24.03327,47.94946],[24.06211,47.95406],[24.10263,47.9352],[24.10125,47.93014],[24.11293,47.91588],[24.1452,47.91266],[24.15275,47.9168],[24.16099,47.91634],[24.16511,47.91956],[24.1761,47.91634],[24.19532,47.91772],[24.21936,47.90345],[24.22142,47.89793],[24.23378,47.89793],[24.25643,47.90805],[24.27909,47.90621],[24.29695,47.91266],[24.32441,47.92554],[24.34501,47.91404],[24.38072,47.92692],[24.38278,47.93888],[24.3917,47.949],[24.3917,47.95406],[24.41436,47.9605],[24.43565,47.97107],[24.44801,47.96418],[24.47273,47.96234],[24.51118,47.95084],[24.52697,47.96188],[24.55238,47.9605],[24.56268,47.96785],[24.58259,47.9651],[24.58602,47.95958],[24.5977,47.94716],[24.60113,47.94578],[24.61074,47.95222],[24.6231,47.95176],[24.63134,47.94026],[24.62928,47.93428],[24.63684,47.92922],[24.63684,47.92416],[24.65194,47.91864],[24.65332,47.91035],[24.66087,47.90897],[24.67392,47.89655],[24.66705,47.87536],[24.67254,47.86247],[24.70344,47.85187],[24.70619,47.84035],[24.73434,47.84219],[24.75219,47.82929],[24.75769,47.83804],[24.77897,47.83758],[24.78378,47.82329],[24.82841,47.82099],[24.82017,47.80623],[24.83665,47.79701],[24.83665,47.77994],[24.85107,47.77394],[24.85656,47.76471],[24.87785,47.75179],[24.88609,47.73378],[24.88197,47.72362],[24.93965,47.72916],[24.98703,47.72962],[24.99664,47.72546],[25.00694,47.73378],[25.0399,47.72639],[25.05363,47.74486],[25.06324,47.73978],[25.11611,47.75456],[25.11611,47.76933],[25.14701,47.79147],[25.16693,47.79009],[25.17173,47.79701],[25.16624,47.80854],[25.17929,47.81684],[25.18135,47.82606],[25.20126,47.83851],[25.19989,47.85049],[25.22254,47.86016],[25.22872,47.89286],[25.26718,47.89194],[25.31112,47.91496],[25.34614,47.9145],[25.49858,47.93198],[25.59333,47.9375],[25.62629,47.94808],[25.6565,47.94854],[25.70938,47.9421],[25.71762,47.94164],[25.72036,47.9444],[25.7341,47.94532],[25.73822,47.94118],[25.77598,47.93888],[25.81993,47.95314],[25.82473,47.96372],[25.86113,47.97061],[25.89134,47.96188],[25.90713,47.96418],[25.91537,47.97751],[25.93803,47.97751],[25.95039,47.97153],[26.05957,47.98854],[26.10076,47.97935],[26.11862,47.9821],[26.12548,47.98854],[26.13647,47.98394],[26.18522,47.99405],[26.19964,48.00784],[26.20719,48.02713],[26.21131,48.051],[26.26693,48.07578],[26.27655,48.08679],[26.28616,48.11476],[26.29715,48.13355],[26.31706,48.14867],[26.33148,48.15555],[26.33491,48.1615],[26.32873,48.17799],[26.33216,48.18302],[26.34727,48.18302],[26.34864,48.19126],[26.35826,48.1844],[26.36924,48.19081],[26.37268,48.19813],[26.38366,48.19676],[26.38023,48.19081],[26.38641,48.18669],[26.42143,48.20179],[26.43379,48.19264],[26.43928,48.19401],[26.43241,48.20316],[26.45576,48.20728],[26.45713,48.21277],[26.46675,48.22101],[26.48254,48.21506],[26.49215,48.21826],[26.51481,48.21049],[26.52236,48.2146],[26.52511,48.20865],[26.54846,48.21689],[26.5464,48.22604],[26.57386,48.21964],[26.56906,48.23016],[26.57455,48.24296],[26.58691,48.24754],[26.59515,48.2393],[26.62124,48.23976],[26.61575,48.25028],[26.62674,48.24754],[26.63085,48.26034],[26.64184,48.25897],[26.64321,48.25394],[26.65351,48.25622],[26.65969,48.26445],[26.66656,48.26125],[26.6645,48.24891],[26.68167,48.24845],[26.69197,48.25485],[26.69883,48.26582],[26.70707,48.25485],[26.72493,48.24662],[26.73179,48.24982],[26.7263,48.25759],[26.74278,48.25577],[26.73522,48.24845],[26.73522,48.24525],[26.75994,48.24799],[26.78192,48.24342],[26.78535,48.24845],[26.8087,48.25439],[26.82655,48.24479],[26.83067,48.22558],[26.84234,48.22879],[26.85058,48.23473],[26.85745,48.22924],[26.85882,48.21964],[26.88697,48.20225],[26.91101,48.20271],[26.90345,48.19447],[26.89041,48.19447],[26.90345,48.17982],[26.91856,48.18211],[26.91375,48.19767],[26.93916,48.19996],[26.94877,48.1876],[26.93229,48.1702],[26.93985,48.16196],[26.97212,48.16196],[26.99066,48.15097],[26.9886,48.14593],[26.9728,48.14547],[26.95701,48.15188],[26.95083,48.14638],[26.96594,48.13035],[26.98516,48.12897],[27.00164,48.12118],[27.01744,48.13768],[27.02774,48.13676],[27.02224,48.12622],[27.0298,48.12347],[27.03666,48.13126],[27.04147,48.12897],[27.0346,48.11751],[27.04078,48.10376],[27.02568,48.09],[27.04147,48.08174],[27.0449,48.07073],[27.08061,48.051],[27.08473,48.03447],[27.10739,48.03493],[27.1067,48.02759],[27.09022,48.02253],[27.09022,48.00876],[27.09846,48.006],[27.11769,48.01656],[27.12936,48.01197],[27.11975,48.00278],[27.12799,47.99359],[27.16438,47.99543],[27.15408,47.97429],[27.14172,47.96831],[27.17811,47.94854],[27.15339,47.9237],[27.19802,47.90253],[27.2248,47.84035],[27.24746,47.83574],[27.24678,47.83067],[27.23442,47.82606],[27.22549,47.83251],[27.21656,47.82606],[27.21931,47.81499],[27.23922,47.81684],[27.23785,47.81269],[27.2303,47.79931],[27.24952,47.79516],[27.25364,47.7804],[27.26532,47.77948],[27.26669,47.7624],[27.28042,47.76379],[27.28797,47.7564],[27.27836,47.75225],[27.28591,47.74948],[27.29759,47.75502],[27.29965,47.74948],[27.28797,47.74532],[27.28111,47.73332],[27.29347,47.72731],[27.28866,47.72315],[27.26257,47.72962],[27.25158,47.71761],[27.26944,47.71161],[27.27012,47.70098],[27.28111,47.70098],[27.27493,47.69173],[27.28179,47.6848],[27.2969,47.68064],[27.29415,47.66307],[27.30514,47.66122],[27.31544,47.64272],[27.33261,47.62606],[27.36282,47.61866],[27.37175,47.59968],[27.40539,47.5844],[27.42736,47.58486],[27.43011,47.58162],[27.41912,47.57282],[27.42256,47.56355],[27.4308,47.56401],[27.4253,47.55336],[27.44041,47.54965],[27.43011,47.54733],[27.44659,47.53574],[27.45346,47.5376],[27.45552,47.53574],[27.44453,47.53018],[27.45346,47.5223],[27.4665,47.52832],[27.45483,47.5172],[27.45277,47.50699],[27.46719,47.49818],[27.47543,47.48612],[27.49465,47.4889],[27.49122,47.48287],[27.50701,47.48055],[27.51319,47.49122],[27.51251,47.4773],[27.52143,47.4824],[27.53585,47.47823],[27.53311,47.48797],[27.5386,47.48844],[27.54615,47.47498],[27.5592,47.46477],[27.5695,47.46662],[27.57362,47.45363],[27.56057,47.44852],[27.56057,47.43877],[27.55165,47.42994],[27.56057,47.42297],[27.56881,47.42437],[27.57568,47.40903],[27.58323,47.41043],[27.58255,47.39834],[27.57019,47.39602],[27.56881,47.37557],[27.58255,47.37882],[27.57568,47.36905],[27.59147,47.3658],[27.59422,47.37138],[27.59834,47.36905],[27.59628,47.34719],[27.60658,47.35091],[27.60589,47.33882],[27.61413,47.34161],[27.6155,47.33928],[27.60108,47.33044],[27.58117,47.32998],[27.5901,47.32532],[27.59765,47.31741],[27.60383,47.32486],[27.60932,47.31834],[27.62031,47.32393],[27.62855,47.31182],[27.63954,47.31089],[27.63542,47.30531],[27.64709,47.29879],[27.64709,47.30437],[27.66288,47.3081],[27.67456,47.30065],[27.6773,47.3095],[27.68417,47.28807],[27.68966,47.29133],[27.70546,47.28947],[27.70477,47.30018],[27.7288,47.29506],[27.73704,47.27783],[27.74665,47.2769],[27.74459,47.26292],[27.75695,47.25639],[27.74459,47.25546],[27.75146,47.2522],[27.75695,47.24661],[27.74528,47.24707],[27.75009,47.23915],[27.75901,47.23961],[27.75421,47.23122],[27.77687,47.23169],[27.77137,47.2219],[27.78579,47.21863],[27.77687,47.20417],[27.78785,47.2079],[27.78648,47.19017],[27.80021,47.19064],[27.79747,47.17104],[27.8112,47.16404],[27.80021,47.1533],[27.78717,47.15517],[27.78442,47.15143],[27.79678,47.14816],[27.80021,47.14349],[27.7803,47.14443],[27.78236,47.13929],[27.84484,47.13555],[27.85308,47.12761],[27.84553,47.12154],[27.84004,47.12948],[27.82768,47.12387],[27.83248,47.11733],[27.85652,47.11172],[27.85926,47.10378],[27.87437,47.10845],[27.86956,47.10331],[27.88673,47.09911],[27.87986,47.09209],[27.88948,47.08929],[27.89703,47.07386],[27.9039,47.07666],[27.91694,47.06731],[27.93479,47.06076],[27.9396,47.06544],[27.96089,47.05609],[27.94441,47.05],[27.96295,47.0486],[27.95814,47.04299],[27.97256,47.04439],[27.98492,47.03316],[27.99179,47.03643],[27.99659,47.03456],[27.99522,47.02895],[28.01994,47.02427],[28.02681,47.02895],[28.03779,47.03082],[28.04054,47.02192],[28.05015,47.02567],[28.0529,47.0149],[28.0426,47.01818],[28.03299,47.01209],[28.08036,46.99149],[28.07899,46.984],[28.09684,46.97931],[28.07968,46.96244],[28.09272,46.95494],[28.0989,46.94698],[28.08311,46.9376],[28.11195,46.92166],[28.1044,46.91228],[28.08654,46.9043],[28.09066,46.89633],[28.1147,46.89351],[28.11607,46.87803],[28.10028,46.87145],[28.125,46.85267],[28.11058,46.84375],[28.11676,46.82214],[28.16894,46.78172],[28.19297,46.72668],[28.22799,46.67865],[28.25065,46.61501],[28.23349,46.57868],[28.22181,46.53761],[28.21495,46.49981],[28.25134,46.45914],[28.24653,46.41513],[28.19229,46.35166],[28.20602,46.32132],[28.19572,46.30235],[28.13598,46.27388],[28.14353,46.25204],[28.11607,46.24255],[28.11332,46.20977],[28.13942,46.17745],[28.12088,46.10656],[28.0941,46.07275],[28.10096,46.04225],[28.08792,46.00936],[28.11676,45.94351],[28.125,45.92202],[28.11882,45.90338],[28.11126,45.88188],[28.12774,45.88092],[28.12774,45.86467],[28.10783,45.8618],[28.1147,45.79529],[28.13736,45.77758],[28.15383,45.78332],[28.14422,45.75938],[28.16551,45.73686],[28.171,45.70905],[28.15933,45.70426],[28.17237,45.68075],[28.16001,45.651],[28.17581,45.64764],[28.16001,45.63708],[28.14216,45.62172],[28.11676,45.6246],[28.08929,45.60875],[28.11813,45.57319],[28.15933,45.56887],[28.16413,45.54098],[28.15383,45.50875],[28.18405,45.47602],[28.21151,45.46879],[28.27743,45.44712],[28.28361,45.39989],[28.30284,45.37674],[28.34335,45.32415],[28.56582,45.24733],[28.65646,45.24056],[28.7107,45.22219],[28.79173,45.2396],[28.79241,45.257],[28.76083,45.26473],[28.7519,45.28599],[28.79585,45.29324],[28.80752,45.3087],[28.7828,45.32125],[28.78006,45.32656],[28.81164,45.33766],[28.85009,45.31642],[28.87481,45.31497],[28.93249,45.28068],[28.95034,45.28551],[28.95172,45.30676],[28.96751,45.33139],[28.98468,45.33284],[29.04304,45.35938],[29.05471,45.36034],[29.08218,45.37289],[29.10896,45.37626],[29.12063,45.38205],[29.17831,45.39893],[29.19273,45.41435],[29.22157,45.42062],[29.24629,45.43508],[29.29023,45.42544],[29.32731,45.44857],[29.35615,45.43749],[29.42894,45.4423],[29.43855,45.43459],[29.47906,45.42207],[29.54978,45.40809],[29.59098,45.38928],[29.6521,45.34056],[29.66857,45.30918],[29.67819,45.26908],[29.66377,45.26087],[29.66239,45.24105],[29.6775,45.213],[29.68917,45.19123],[29.7924,45.18344],[39.30908,42.25698],[40.00671,43.38109],[40.01632,43.421],[40.0122,43.423],[40.0122,43.42948],[40.02868,43.43746],[40.04035,43.45341],[40.04791,43.48281],[40.0637,43.50623],[40.07331,43.51071],[40.07949,43.51868],[40.08842,43.52316],[40.09597,43.52963],[40.09048,43.55601],[40.09872,43.56198],[40.09872,43.56596],[40.11177,43.57044],[40.13031,43.56496],[40.15777,43.57442],[40.17013,43.57641],[40.21339,43.57541],[40.24292,43.58586],[40.25939,43.58685],[40.27107,43.5774],[40.28137,43.57889],[40.2951,43.57093],[40.29991,43.57143],[40.30609,43.5774],[40.31364,43.57889],[40.32051,43.57591],[40.32463,43.56944],[40.34317,43.56248],[40.35484,43.56447],[40.3878,43.55501],[40.40359,43.55551],[40.41252,43.55252],[40.42076,43.55452],[40.42762,43.55302],[40.43243,43.5575],[40.4393,43.557],[40.44891,43.54904],[40.46745,43.54606],[40.47706,43.54954],[40.50521,43.52565],[40.5162,43.52565],[40.51963,43.52117],[40.52856,43.52117],[40.56358,43.51967],[40.58624,43.53112],[40.5931,43.53162],[40.60752,43.54755],[40.62126,43.55103],[40.62812,43.54904],[40.66108,43.56347],[40.67619,43.55651],[40.67825,43.55053],[40.69198,43.54854],[40.68924,43.54058],[40.69473,43.53411],[40.73867,43.52714],[40.74417,43.52117],[40.75584,43.51967],[40.75653,43.51419],[40.76614,43.5132],[40.77438,43.50573],[40.83068,43.48829],[40.83686,43.48979],[40.84648,43.4878],[40.87806,43.48481],[40.8918,43.48979],[40.89454,43.4873],[40.8918,43.48132],[40.89797,43.47634],[40.90003,43.46836],[40.8918,43.4584],[40.92887,43.44444],[40.92613,43.43347],[40.93093,43.42499],[40.94467,43.4245],[40.94879,43.42051],[40.95771,43.421],[40.98037,43.42599],[40.98449,43.42998],[41.00509,43.43247],[41.02638,43.41003],[41.0353,43.40754],[41.03942,43.39956],[41.04835,43.39457],[41.05247,43.39806],[41.07444,43.38808],[41.07994,43.39057],[41.09642,43.38459],[41.10397,43.39457],[41.10054,43.40105],[41.10603,43.40355],[41.11633,43.39806],[41.13006,43.39806],[41.15341,43.40405],[41.15615,43.38858],[41.16851,43.38309],[41.18087,43.38509],[41.20491,43.38009],[41.22207,43.38159],[41.22963,43.37161],[41.23924,43.36762],[41.23855,43.36113],[41.24954,43.35763],[41.25709,43.36512],[41.277,43.35913],[41.27906,43.34565],[41.28799,43.33766],[41.3031,43.34016],[41.31614,43.33966],[41.3237,43.34815],[41.33949,43.34765],[41.34429,43.35364],[41.35597,43.35813],[41.36146,43.36961],[41.37725,43.36712],[41.39305,43.36612],[41.41159,43.35763],[41.41502,43.34964],[41.41159,43.34615],[41.41021,43.33316],[41.41708,43.33017],[41.41433,43.32367],[41.42395,43.31368],[41.44111,43.30619],[41.4624,43.30919],[41.48849,43.2862],[41.52626,43.2717],[41.54548,43.2707],[41.56333,43.2487],[41.57432,43.2522],[41.58874,43.23419],[41.59217,43.23619],[41.61758,43.22219],[41.63612,43.22169],[41.64505,43.22919],[41.65947,43.2377],[41.678,43.22819],[41.68418,43.21668],[41.70478,43.22119],[41.71165,43.22719],[41.72195,43.2412],[41.7453,43.2387],[41.77276,43.21818],[41.78237,43.22269],[41.80366,43.20167],[41.80984,43.20267],[41.8222,43.21318],[41.83319,43.21418],[41.84829,43.21168],[41.85859,43.22669],[41.86683,43.23369],[41.86134,43.2422],[41.87988,43.2467],[41.88262,43.2507],[41.89773,43.2452],[41.90185,43.23669],[41.8991,43.23119],[41.91627,43.22569],[41.94305,43.22469],[41.95472,43.20467],[41.97052,43.21318],[41.98425,43.21568],[42.00141,43.21368],[42.01103,43.21768],[42.02476,43.21268],[42.03506,43.20267],[42.03781,43.18965],[42.04948,43.18915],[42.05703,43.19566],[42.06939,43.19716],[42.09549,43.21268],[42.1099,43.20968],[42.13188,43.21068],[42.13874,43.21668],[42.16415,43.22319],[42.17788,43.21668],[42.19299,43.21918],[42.19642,43.22669],[42.24655,43.22719],[42.25135,43.21318],[42.29324,43.21168],[42.30629,43.22369],[42.3159,43.21918],[42.33924,43.22018],[42.35092,43.23119],[42.35435,43.2452],[42.38525,43.2447],[42.40997,43.2497],[42.41409,43.2567],[42.44087,43.2507],[42.45185,43.23619],[42.44361,43.22719],[42.45872,43.21218],[42.51091,43.19766],[42.54455,43.17714],[42.59605,43.16963],[42.60154,43.16261],[42.61322,43.16562],[42.62489,43.15761],[42.64411,43.15109],[42.66815,43.13707],[42.67845,43.13757],[42.67295,43.14458],[42.67982,43.15961],[42.67982,43.17263],[42.70523,43.17513],[42.70797,43.17914],[42.73338,43.18214],[42.73819,43.17864],[42.74505,43.18264],[42.74574,43.18465],[42.77595,43.18965],[42.7938,43.18164],[42.79724,43.17363],[42.8144,43.16712],[42.81921,43.17213],[42.86041,43.17864],[42.87689,43.16963],[42.87414,43.16311],[42.88169,43.1551],[42.89749,43.15861],[42.90229,43.1536],[42.93045,43.14859],[42.92289,43.13707],[42.92495,43.12654],[42.93182,43.12303],[42.96684,43.12504],[42.984,43.11702],[42.99018,43.11852],[43.02589,43.09897],[43.03276,43.09195],[43.04306,43.09045],[43.041,43.08443],[43.01765,43.07089],[43.02658,43.04982],[43.0355,43.04179],[43.0355,43.03075],[43.04306,43.02774],[43.087,42.99962],[43.11103,43.00063],[43.11721,42.99159],[43.13232,42.98405],[43.13369,42.97853],[43.13987,42.97802],[43.14331,42.96848],[43.17077,42.96396],[43.18519,42.94536],[43.18382,42.93983],[43.20373,42.93078],[43.23394,42.93129],[43.23738,42.92475],[43.29437,42.9167],[43.30192,42.90816],[43.31771,42.91369],[43.33419,42.8991],[43.33351,42.89005],[43.3596,42.89055],[43.38775,42.90011],[43.41041,42.89357],[43.44543,42.89407],[43.45985,42.88753],[43.47496,42.89055],[43.49144,42.87495],[43.51409,42.8664],[43.54431,42.86439],[43.5601,42.8674],[43.56285,42.86338],[43.57109,42.86338],[43.58619,42.85281],[43.58963,42.84274],[43.60885,42.83368],[43.60611,42.81555],[43.637,42.81303],[43.64318,42.79842],[43.65074,42.7954],[43.67134,42.79842],[43.68164,42.80245],[43.69262,42.7954],[43.68988,42.78633],[43.73039,42.76768],[43.7709,42.76112],[43.80455,42.74247],[43.80798,42.73692],[43.80523,42.72179],[43.78669,42.7001],[43.77708,42.67688],[43.77227,42.67385],[43.75854,42.65466],[43.71391,42.63446],[43.72695,42.62941],[43.74275,42.61829],[43.75511,42.61627],[43.75099,42.60111],[43.76815,42.58948],[43.78807,42.5905],[43.78875,42.59606],[43.81004,42.59808],[43.81622,42.59353],[43.8272,42.59353],[43.83544,42.59808],[43.87321,42.58443],[43.91029,42.57482],[43.91647,42.56673],[43.94325,42.56319],[43.94393,42.55004],[43.95492,42.55206],[43.96316,42.54802],[43.97415,42.55257],[43.97895,42.56269],[43.99269,42.56774],[44.0126,42.59302],[44.05174,42.60465],[44.06684,42.60111],[44.0895,42.60566],[44.11491,42.61728],[44.14993,42.60616],[44.18495,42.62334],[44.19181,42.63446],[44.23233,42.6284],[44.23301,42.64456],[44.23713,42.64608],[44.24057,42.66628],[44.24949,42.68092],[44.27284,42.69505],[44.3003,42.70514],[44.31266,42.72229],[44.3518,42.71019],[44.36142,42.71523],[44.38613,42.71422],[44.39231,42.70666],[44.40742,42.70766],[44.41635,42.71876],[44.49806,42.70312],[44.51831,42.69694],[44.52158,42.70312],[44.50149,42.73591],[44.5111,42.75205],[44.53651,42.75457],[44.55093,42.76516],[44.57771,42.7465],[44.59693,42.75003],[44.63951,42.7465],[44.67796,42.7576],[44.75349,42.71422],[44.74388,42.70514],[44.76654,42.64305],[44.80224,42.61779],[44.82833,42.61779],[44.82421,42.64254],[44.83795,42.67334],[44.85717,42.67688],[44.87159,42.72431],[44.8867,42.74701],[44.97802,42.74549],[45.03364,42.69555],[45.06385,42.69757],[45.08377,42.71069],[45.10574,42.70363],[45.13183,42.71019],[45.15724,42.70716],[45.17372,42.68445],[45.19157,42.66628],[45.21904,42.66022],[45.23895,42.64052],[45.2568,42.60768],[45.28358,42.60717],[45.28495,42.58847],[45.30761,42.56926],[45.31469,42.57405],[45.32409,42.56471],[45.32615,42.55004],[45.33233,42.52677],[45.35224,42.52221],[45.37559,42.53031],[45.39688,42.53841],[45.40443,42.54852],[45.41748,42.55055],[45.43533,42.54043],[45.45043,42.54448],[45.49232,42.53638],[45.52322,42.54498],[45.54313,42.53841],[45.57197,42.54802],[45.59669,42.53183],[45.59875,42.51715],[45.61592,42.50804],[45.63377,42.51007],[45.65094,42.50045],[45.68458,42.50551],[45.69831,42.48222],[45.72303,42.47716],[45.77179,42.48931],[45.77728,42.47412],[45.7759,42.46095],[45.78277,42.44676],[45.7759,42.4422],[45.77316,42.42295],[45.75668,42.40926],[45.75187,42.39506],[45.73814,42.38289],[45.74157,42.36412],[45.74295,42.33266],[45.75599,42.32403],[45.75119,42.30778],[45.7402,42.29458],[45.72303,42.29204],[45.70381,42.2961],[45.6887,42.28492],[45.6681,42.28289],[45.65437,42.29204],[45.61866,42.25342],[45.62278,42.24376],[45.60768,42.23309],[45.61042,42.21122],[45.62347,42.20919],[45.64956,42.18528],[45.6681,42.18833],[45.72303,42.16238],[45.72578,42.15475],[45.74844,42.14864],[45.74226,42.13336],[45.75187,42.12674],[45.76767,42.12776],[45.76904,42.11656],[45.78758,42.10229],[45.80406,42.11554],[45.82809,42.10841],[45.85418,42.11452],[45.88302,42.10382],[45.89881,42.10586],[45.92285,42.08344],[45.91255,42.06305],[45.93383,42.05337],[45.9304,42.03246],[45.94551,42.03654],[45.95512,42.02481],[45.98327,42.04368],[46.00662,42.03807],[46.01966,42.04368],[46.02447,42.02583],[46.04713,42.0192],[46.07048,42.04062],[46.0849,42.00593],[46.10893,41.98654],[46.11305,41.99777],[46.14875,42.00899],[46.15493,41.99267],[46.19133,41.99777],[46.22291,42.01359],[46.23596,42.01563],[46.25724,42.00491],[46.25793,41.99828],[46.25106,41.9942],[46.2442,41.97889],[46.26617,41.98399],[46.26686,41.9697],[46.28471,41.9457],[46.31904,41.92986],[46.33758,41.9457],[46.35681,41.93855],[46.35887,41.93395],[46.39938,41.93855],[46.40487,41.9222],[46.42616,41.91198],[46.45156,41.8941],[46.47834,41.88132],[46.50718,41.88949],[46.53739,41.87978],[46.53808,41.87007],[46.55113,41.86649],[46.55387,41.85728],[46.54975,41.84961],[46.55456,41.8225],[46.58271,41.80407],[46.60194,41.81073],[46.62048,41.82199],[46.61842,41.82915],[46.62666,41.83375],[46.6349,41.82813],[46.66511,41.83733],[46.67747,41.83222],[46.69189,41.83375],[46.707,41.82761],[46.72142,41.82659],[46.7173,41.84756],[46.75918,41.8624],[46.76399,41.84091],[46.7839,41.81584],[46.77085,41.81124],[46.7633,41.79947],[46.79214,41.7795],[46.79008,41.77438],[46.80656,41.76106],[46.83059,41.76004],[46.83265,41.74928],[46.85668,41.73289],[46.86424,41.72059],[46.87179,41.71956],[46.87728,41.72623],[46.8972,41.73289],[46.91299,41.7252],[46.93084,41.70777],[46.9226,41.6847],[46.93153,41.67598],[46.93977,41.67752],[46.94595,41.66316],[46.95694,41.6529],[47.00157,41.64213],[47.00775,41.62673],[46.99333,41.60004],[47.00981,41.58001],[47.02217,41.57744],[47.01942,41.5574],[47.03247,41.56254],[47.05307,41.55689],[47.07023,41.55637],[47.06611,41.57179],[47.11074,41.59387],[47.11212,41.58514],[47.12448,41.58412],[47.11624,41.56922],[47.13203,41.54867],[47.17117,41.53171],[47.17323,41.52143],[47.15675,41.50754],[47.16156,41.49726],[47.18284,41.48697],[47.19245,41.48749],[47.19795,41.4736],[47.19039,41.47],[47.20138,41.46691],[47.20962,41.45353],[47.21923,41.44632],[47.23022,41.45044],[47.24464,41.44684],[47.23365,41.43346],[47.22404,41.4211],[47.23091,41.40874],[47.21649,41.40153],[47.23365,41.40205],[47.24533,41.39741],[47.25563,41.39741],[47.26249,41.38659],[47.27073,41.35207],[47.25837,41.33918],[47.27073,41.32784],[47.28653,41.32681],[47.30644,41.3036],[47.32017,41.30308],[47.37167,41.27522],[47.43278,41.26748],[47.45201,41.27471],[47.47261,41.25716],[47.49733,41.27006],[47.50488,41.26077],[47.50282,41.22979],[47.5344,41.20552],[47.5653,41.19829],[47.56668,41.2112],[47.57492,41.21585],[47.60994,41.21792],[47.62023,41.23805],[47.64701,41.22979],[47.64907,41.22618],[47.68959,41.22721],[47.70057,41.22515],[47.71019,41.21017],[47.72735,41.20707],[47.72804,41.19518],[47.78366,41.18588],[47.79533,41.20655],[47.80906,41.21172],[47.80975,41.21792],[47.82692,41.21946],[47.8482,41.21482],[47.85841,41.22056],[47.88185,41.21895],[47.91137,41.25406],[47.90931,41.2649],[47.91137,41.27574],[47.89077,41.28761],[47.89833,41.29741],[47.93609,41.3134],[47.96836,41.32062],[47.94982,41.35],[47.96287,41.36134],[47.98141,41.35155],[47.98347,41.36238],[48.0027,41.37268],[48.00476,41.3799],[48.00064,41.39793],[48.00544,41.40411],[48.00201,41.40977],[48.00407,41.41955],[48.00201,41.42831],[48.03016,41.43603],[48.06518,41.45816],[48.05351,41.46845],[48.07617,41.50034],[48.09608,41.49263],[48.14003,41.5096],[48.2032,41.50652],[48.24646,41.52297],[48.30001,41.56614],[48.37417,41.58925],[48.414,41.62519],[48.41743,41.64367],[48.43666,41.66778],[48.49365,41.72981],[48.51425,41.74313],[48.55545,41.78052],[48.55613,41.801],[48.56849,41.80407],[48.57948,41.81687],[48.57605,41.82454],[48.58085,41.8312],[48.58017,41.85166],[49,42],[49.91088,46.05798],[49.48722,46.20169],[49.26338,46.29191],[49.18922,46.37156],[49.16038,46.3853],[49.14253,46.38293],[49.12468,46.38957],[49.1027,46.3853],[49.0773,46.39193],[49.04914,46.3943],[49.0306,46.41135],[48.99353,46.43075],[48.94889,46.43643],[48.93791,46.44495],[48.91113,46.45157],[48.88092,46.48137],[48.83354,46.47617],[48.815,46.49366],[48.78891,46.52107],[48.78547,46.54186],[48.77243,46.53855],[48.75457,46.54941],[48.72573,46.55366],[48.71955,46.5598],[48.7017,46.56358],[48.69209,46.5598],[48.68316,46.56122],[48.67286,46.5565],[48.64883,46.56027],[48.63853,46.5598],[48.62892,46.56216],[48.60145,46.55744],[48.57879,46.56122],[48.56918,46.55838],[48.55133,46.55602],[48.54515,46.56405],[48.55545,46.57821],[48.55819,46.58576],[48.56987,46.58859],[48.58497,46.59897],[48.59527,46.5985],[48.60008,46.60086],[48.61518,46.59992],[48.62205,46.60369],[48.61106,46.60322],[48.59939,46.60888],[48.57605,46.60699],[48.54995,46.62161],[48.55064,46.62916],[48.56231,46.64048],[48.54789,46.64896],[48.51699,46.64943],[48.49845,46.65839],[48.48884,46.65933],[48.49159,46.6664],[48.48609,46.67299],[48.50601,46.681],[48.49914,46.69372],[48.5012,46.71773],[48.51768,46.73656],[48.55339,46.75444],[48.58909,46.76573],[48.66188,46.77232],[48.68797,46.75726],[48.7017,46.74315],[48.70857,46.72385],[48.74977,46.68618],[48.91937,46.69325],[49.02099,46.76009],[48.97773,46.82449],[48.92829,46.86629],[48.79303,47.0046],[48.71063,47.09443],[48.563,47.33323],[48.51905,47.41182],[48.44421,47.40671],[48.19976,47.68989],[48.11256,47.73793],[48.0281,47.76702],[47.96562,47.75363],[47.65319,47.75779],[47.41561,47.83666],[47.41218,47.76286],[47.3854,47.68203],[47.19314,47.76009],[47.12379,47.83159],[47.18078,47.85417],[47.09976,47.92784],[47.05101,47.99865],[47.14714,48.03585],[47.15812,48.06064],[47.20001,48.05513],[47.21168,48.08266],[47.09152,48.1033],[47.12448,48.15738],[47.11006,48.1789],[47.0977,48.22467],[47.12242,48.26856],[46.93222,48.31699],[46.9123,48.31699],[46.88621,48.32886],[46.73652,48.3567],[46.67404,48.39],[46.64382,48.38681],[46.49345,48.4333],[46.62048,48.67146],[46.77909,48.94775],[46.89514,48.98337],[46.96929,49.02661],[47.02835,49.0905],[47.04895,49.16554],[46.99539,49.23194],[46.91436,49.28303],[46.84364,49.31661],[46.78047,49.33809],[46.8045,49.42526],[46.82991,49.57243],[46.85943,49.6454],[46.86836,49.73779],[46.902,49.86277],[46.93016,49.87472],[46.95831,49.87162],[47.18078,49.93487],[47.35313,50.09459],[47.31674,50.1527],[47.25631,50.19228],[47.33528,50.23754],[47.30232,50.26213],[47.29133,50.28407],[47.29957,50.30293],[47.34008,50.33187],[47.36961,50.33231],[47.38266,50.3288],[47.406,50.33669],[47.41699,50.36254],[47.47329,50.42076],[47.50831,50.43476],[47.54127,50.45969],[47.612,50.46318],[47.61543,50.45794],[47.62435,50.45969],[47.6374,50.45182],[47.62367,50.44876],[47.63877,50.4422],[47.6477,50.44788],[47.64976,50.44001],[47.64221,50.44001],[47.64152,50.4352],[47.65594,50.42776],[47.65251,50.42208],[47.67379,50.42164],[47.67448,50.4177],[47.66212,50.41726],[47.66418,50.40851],[47.68341,50.39801],[47.72804,50.3875],[47.74383,50.37699],[47.74452,50.35597],[47.76168,50.34677],[47.76306,50.33976],[47.78228,50.33932],[47.79052,50.33362],[47.8022,50.33538],[47.81044,50.33056],[47.82623,50.33099],[47.82074,50.3139],[47.83172,50.31258],[47.85232,50.30249],[47.88803,50.26783],[47.91343,50.25247],[47.93746,50.24544],[47.93678,50.23359],[47.95326,50.22656],[47.9512,50.21206],[47.96905,50.19272],[47.9869,50.18569],[47.98416,50.17865],[47.99995,50.1703],[47.99858,50.15578],[48.01231,50.14082],[48.01918,50.14082],[48.02673,50.13642],[48.03909,50.13642],[48.03909,50.12806],[48.05007,50.12674],[48.04664,50.11265],[48.06106,50.11265],[48.06999,50.10648],[48.09539,50.10076],[48.1105,50.08578],[48.11462,50.05978],[48.12629,50.05317],[48.13247,49.99847],[48.15719,49.97992],[48.16337,49.95608],[48.17573,49.94768],[48.19358,49.9437],[48.19976,49.92956],[48.21487,49.92205],[48.22105,49.90922],[48.2341,49.89994],[48.22586,49.86853],[48.24096,49.86941],[48.26499,49.8579],[48.29864,49.86056],[48.31306,49.87384],[48.32611,49.85126],[48.33297,49.84772],[48.34121,49.85082],[48.35701,49.82558],[48.3776,49.83444],[48.39408,49.83621],[48.44078,49.80121],[48.4497,49.83444],[48.74496,49.92116],[48.90358,50.01788],[48.89602,50.02494],[48.8816,50.032],[48.88023,50.04082],[48.86787,50.0492],[48.86375,50.07829],[48.84864,50.09063],[48.815,50.09635],[48.79165,50.09723],[48.78685,50.10032],[48.76487,50.09988],[48.8095,50.17162],[48.79303,50.20327],[48.73329,50.25642],[48.69964,50.38488],[48.65776,50.52696],[48.66119,50.5479],[48.65707,50.55052],[48.65707,50.5623],[48.66462,50.57102],[48.66188,50.57931],[48.64677,50.58759],[48.65226,50.60154],[48.62617,50.61156],[48.59939,50.61505],[48.57193,50.63378],[48.60694,50.66121],[48.63304,50.64989],[48.65226,50.64467],[48.67836,50.62289],[48.69209,50.61156],[48.72505,50.60372],[48.75663,50.61026],[48.77929,50.60851],[48.81294,50.59587],[48.95439,50.6512],[48.99833,50.68601],[49.00726,50.68253],[49.12742,50.78423],[49.21669,50.79855],[49.26338,50.82328],[49.42268,50.84887],[49.43367,50.86794],[49.44328,50.87011],[49.44053,50.89393],[49.43092,50.90736],[49.43023,50.92121],[49.41307,50.93679],[49.40689,50.96015],[49.37461,50.98047],[49.33822,50.98739],[49.3959,51.0483],[49.39315,51.09101],[49.43092,51.08929],[49.43916,51.11559],[49.45701,51.12507],[49.4886,51.09921],[49.56344,51.11042],[49.77562,51.10697],[49.84703,51.15437],[49.91157,51.20129],[50.00701,51.24343],[50.04135,51.25246],[50.23979,51.28038],[50.37574,51.33232],[50.33866,51.38249],[50.40458,51.40434],[50.37162,51.42789],[50.42106,51.42875],[50.49453,51.42747],[50.49797,51.46598],[50.5474,51.46555],[50.55496,51.47496],[50.55427,51.48822],[50.5474,51.49164],[50.54809,51.50019],[50.5371,51.50959],[50.53573,51.58986],[50.54878,51.60096],[50.55839,51.59541],[50.56526,51.58816],[50.56938,51.58986],[50.5838,51.59029],[50.58448,51.64529],[50.62225,51.64657],[50.62431,51.64359],[50.63392,51.64273],[50.63667,51.62867],[50.73005,51.6291],[50.73211,51.6065],[50.67993,51.58176],[50.67924,51.57493],[50.76713,51.57536],[50.76919,51.58475],[50.81108,51.58603],[50.81314,51.64827],[50.83305,51.64998],[50.80421,51.67766],[50.78498,51.68532],[50.76782,51.71384],[50.76782,51.77251],[50.87081,51.75381],[50.89347,51.68107],[50.969,51.68064],[50.99922,51.67255],[51.03767,51.68405],[51.0466,51.67723],[51.05758,51.68064],[51.06376,51.67127],[51.08436,51.66829],[51.12693,51.67553],[51.15303,51.67212],[51.15509,51.67851],[51.18049,51.67],[51.20315,51.66701],[51.19834,51.67511],[51.23474,51.68618],[51.2725,51.68405],[51.3034,51.64145],[51.37962,51.64145],[51.37962,51.56426],[51.2416,51.56341],[51.24778,51.5254],[51.28486,51.53224],[51.28692,51.48779],[51.37962,51.48523],[51.38031,51.47753],[51.43249,51.47496],[51.47918,51.48779],[51.4936,51.48437],[51.48948,51.49036],[51.56776,51.50532],[51.55952,51.52156],[51.58561,51.52882],[51.57669,51.5459],[51.60415,51.55145],[51.61377,51.53309],[51.64054,51.53779],[51.65702,51.50532],[51.64535,51.50062],[51.63299,51.47539],[51.6426,51.47667],[51.65702,51.44972],[51.73942,51.46513],[51.73187,51.4801],[51.81427,51.49677],[51.77101,51.58261],[51.79847,51.59157],[51.78611,51.60223],[51.80809,51.61972],[51.81701,51.62313],[51.82457,51.63762],[51.83624,51.64018],[51.84654,51.6504],[51.85203,51.64827],[51.86302,51.65083],[51.86508,51.6602],[51.85684,51.67298],[51.8946,51.67511],[51.89598,51.68277],[51.99897,51.6832],[51.99966,51.66744],[52.04361,51.66744],[52.07382,51.67383],[52.09098,51.6585],[52.16445,51.6866],[52.16789,51.68405],[52.17475,51.68788],[52.17681,51.70873],[52.17201,51.71809],[52.17544,51.72745],[52.1775,51.72702],[52.18025,51.73425],[52.21801,51.7351],[52.23312,51.73595],[52.24136,51.7249],[52.33337,51.74361],[52.33062,51.75211],[52.31758,51.76529],[52.35809,51.77591],[52.36221,51.77293],[52.38143,51.71894],[52.37731,51.71809],[52.38487,51.68234],[52.41439,51.64103],[52.44941,51.62398],[52.47001,51.59541],[52.49748,51.54804],[52.50709,51.54206],[52.50297,51.5395],[52.51052,51.53181],[52.50846,51.52156],[52.50572,51.50489],[52.54486,51.49207],[52.55653,51.47881],[52.5428,51.47496],[52.53524,51.46855],[52.5634,51.45614],[52.56614,51.46384],[52.57507,51.46769],[52.58331,51.47582],[52.59773,51.4724],[52.58468,51.46085],[52.59567,51.454],[52.60528,51.45571],[52.62245,51.45486],[52.62313,51.45999],[52.61627,51.46769],[52.62176,51.47454],[52.63481,51.46299],[52.64511,51.46513],[52.64167,51.47582],[52.64991,51.49036],[52.66365,51.48651],[52.66433,51.47111],[52.68287,51.45657],[52.69043,51.45871],[52.68974,51.46641],[52.6712,51.47026],[52.67189,51.47625],[52.69455,51.47753],[52.71995,51.48565],[52.72888,51.49805],[52.73506,51.49592],[52.72476,51.48736],[52.73849,51.48309],[52.75222,51.49079],[52.74398,51.49463],[52.7378,51.49634],[52.73506,51.50233],[52.74192,51.50361],[52.75154,51.4972],[52.7584,51.49677],[52.75703,51.50831],[52.76733,51.52113],[52.77557,51.52113],[52.77214,51.50318],[52.78175,51.50147],[52.78106,51.51045],[52.79411,51.51344],[52.78862,51.50147],[52.79617,51.49848],[52.80029,51.50404],[52.81196,51.5019],[52.80921,51.49292],[52.81402,51.49164],[52.81677,51.50062],[52.82501,51.50147],[52.82981,51.48822],[52.84011,51.48907],[52.83393,51.50019],[52.83805,51.5066],[52.84629,51.50275],[52.85865,51.49164],[52.87788,51.50318],[52.89505,51.50575],[52.90054,51.49677],[52.86895,51.48608],[52.86552,51.47838],[52.87445,51.47454],[52.88063,51.47796],[52.88063,51.48736],[52.88955,51.48779],[52.89505,51.4771],[52.90603,51.47881],[52.91015,51.49292],[52.92251,51.4972],[52.92869,51.49292],[52.91633,51.48565],[52.92114,51.47967],[52.93624,51.48223],[52.93693,51.47283],[52.94586,51.45871],[52.9589,51.45914],[52.94242,51.47283],[52.95135,51.4771],[52.97607,51.46898],[52.9795,51.47325],[52.96714,51.48181],[52.96989,51.48523],[53.00079,51.47368],[53.0159,51.47924],[53.03443,51.48266],[53.04199,51.4895],[53.06053,51.49207],[53.07083,51.50361],[53.08113,51.5019],[53.09829,51.48736],[53.11821,51.49079],[53.13949,51.48651],[53.15872,51.49121],[53.16146,51.50019],[53.14773,51.50489],[53.14155,51.5207],[53.14979,51.52497],[53.16627,51.51942],[53.17314,51.51942],[53.17657,51.53096],[53.19168,51.5348],[53.19717,51.52797],[53.18,51.52113],[53.18,51.51258],[53.20266,51.50404],[53.2212,51.51087],[53.24043,51.51045],[53.25485,51.5113],[53.26171,51.50275],[53.25897,51.49036],[53.27888,51.48309],[53.28918,51.48779],[53.29055,51.50062],[53.33381,51.51045],[53.34343,51.49848],[53.33931,51.49079],[53.37158,51.48993],[53.39698,51.49079],[53.42651,51.47967],[53.4217,51.47625],[53.43681,51.46769],[53.43956,51.4386],[53.45054,51.44116],[53.46565,51.4386],[53.47389,51.45357],[53.49037,51.45101],[53.48213,51.43988],[53.49861,51.43132],[53.51097,51.43432],[53.52195,51.42447],[53.53775,51.42961],[53.55148,51.42661],[53.56521,51.43175],[53.57688,51.42789],[53.56796,51.41505],[53.581,51.41162],[53.60504,51.38378],[53.61534,51.37778],[53.63594,51.37606],[53.62495,51.36577],[53.61053,51.37263],[53.5968,51.35634],[53.60641,51.3512],[53.61877,51.35634],[53.62358,51.34133],[53.61808,51.32288],[53.59817,51.307],[53.62701,51.27308],[53.638,51.27609],[53.64967,51.26621],[53.64212,51.26449],[53.6689,51.25804],[53.6586,51.25375],[53.6586,51.23569],[53.67301,51.22408],[53.69087,51.23483],[53.69361,51.22322],[53.7046,51.22666],[53.71765,51.22193],[53.72245,51.21419],[53.74031,51.21548],[53.73756,51.20602],[53.76159,51.20774],[53.76159,51.21247],[53.78425,51.20645],[53.78425,51.21419],[53.80966,51.21204],[53.81309,51.20387],[53.82476,51.20258],[53.8179,51.19483],[53.82888,51.19698],[53.85154,51.19053],[53.86116,51.2],[53.87146,51.19354],[53.88244,51.19913],[53.89549,51.19784],[53.90441,51.2043],[53.91128,51.19827],[53.92982,51.19397],[53.93257,51.18579],[53.97033,51.17503],[53.97171,51.16427],[53.99093,51.16944],[54.01977,51.15996],[54.02458,51.16212],[54.03488,51.1535],[54.0541,51.15394],[54.05548,51.14791],[54.03694,51.14317],[54.0596,51.12679],[54.09118,51.11645],[54.10217,51.11688],[54.13856,51.10654],[54.15092,51.09144],[54.15161,51.0729],[54.13307,51.06383],[54.14131,51.05132],[54.15229,51.05391],[54.14817,51.06297],[54.16053,51.0647],[54.16946,51.04743],[54.18663,51.04053],[54.19418,51.02973],[54.18113,51.02368],[54.1777,51.03016],[54.16877,51.02887],[54.17289,51.02023],[54.15916,51.01073],[54.17358,51.00943],[54.18182,51.00165],[54.17289,50.99258],[54.18869,50.99431],[54.20654,50.98393],[54.19075,50.97053],[54.2134,50.95929],[54.25117,50.95539],[54.2855,50.95237],[54.2855,50.94718],[54.27452,50.94588],[54.28619,50.94155],[54.28962,50.92944],[54.27864,50.91515],[54.29443,50.89826],[54.31572,50.89263],[54.32807,50.8974],[54.33631,50.8922],[54.35142,50.89177],[54.36309,50.88484],[54.37889,50.88397],[54.41665,50.87617],[54.43931,50.88007],[54.45236,50.8519],[54.51965,50.85407],[54.53613,50.84497],[54.52514,50.82285],[54.51416,50.81851],[54.51759,50.8068],[54.48532,50.79031],[54.46746,50.76469],[54.4654,50.74949],[54.4503,50.70472],[54.43862,50.68558],[54.43519,50.65424],[54.41322,50.62071],[54.46609,50.5671],[54.54299,50.52783],[54.57252,50.55314],[54.59175,50.56012],[54.60273,50.54485],[54.61509,50.53874],[54.6302,50.55096],[54.63638,50.55183],[54.63707,50.55707],[54.68788,50.595],[54.71054,50.60154],[54.72084,50.60633],[54.73251,50.61941],[54.72152,50.6316],[54.72358,50.64815],[54.71878,50.66426],[54.70985,50.67078],[54.7126,50.68297],[54.71878,50.69036],[54.69886,50.6995],[54.67758,50.71776],[54.68582,50.78119],[54.65698,50.82285],[54.68238,50.83326],[54.69886,50.89307],[54.68307,50.89956],[54.66934,50.90563],[54.67208,50.91255],[54.67964,50.91299],[54.67826,50.91861],[54.66384,50.92035],[54.65629,50.91602],[54.61647,50.92511],[54.61372,50.92121],[54.59793,50.92294],[54.56771,50.91602],[54.55055,50.92814],[54.53613,50.92164],[54.53476,50.93073],[54.54231,50.93766],[54.55398,50.93766],[54.55604,50.92987],[54.56085,50.93203],[54.5581,50.93939],[54.57183,50.94371],[54.59106,50.93896],[54.59037,50.94458],[54.57389,50.95237],[54.57595,50.95972],[54.55741,50.96058],[54.55329,50.9675],[54.57458,50.9675],[54.58076,50.96231],[54.58419,50.9701],[54.57389,50.97831],[54.57939,50.98437],[54.56703,50.98696],[54.56085,51.00036],[54.55535,50.99733],[54.54917,50.99863],[54.55261,51.00727],[54.57733,51.00511],[54.59175,51.01116],[54.58831,51.01677],[54.57252,51.01375],[54.56359,51.01332],[54.5684,51.01893],[54.58419,51.02153],[54.59175,51.03103],[54.61784,51.02239],[54.64736,51.02023],[54.6659,51.03146],[54.67071,51.02282],[54.69268,51.01893],[54.70779,51.02757],[54.68582,51.03837],[54.70367,51.03837],[54.71809,51.02973],[54.7277,51.03794],[54.738,51.0375],[54.73663,51.02412],[54.74624,51.02282],[54.74487,51.01548],[54.79225,50.98523],[54.84375,50.97745],[54.89799,50.95756],[54.88838,50.94198],[54.90829,50.93593],[54.90005,50.92251],[54.94125,50.90779],[55.00991,50.89913],[55.05249,50.92814],[55.05592,50.91948],[55.06141,50.92684],[55.08544,50.91991],[55.10398,50.90563],[55.10742,50.90086],[55.13214,50.89826],[55.13214,50.89393],[55.12252,50.88917],[55.13076,50.87964],[55.05729,50.82025],[55.14518,50.79768],[55.38345,50.65337],[55.39718,50.66774],[55.40199,50.68123],[55.50224,50.66904],[55.53108,50.64902],[55.53382,50.61287],[55.55717,50.60459],[55.58189,50.60415],[55.61348,50.59893],[55.61828,50.58192],[55.66154,50.56143],[55.71098,50.55619],[55.70755,50.55096],[55.73707,50.55052],[55.73638,50.56579],[55.746,50.57931],[55.77964,50.58934],[55.79475,50.60721],[55.81329,50.61069],[55.82908,50.62245],[55.86685,50.62594],[55.90187,50.62158],[55.91491,50.64205],[55.96298,50.66034],[55.99456,50.66774],[56.06048,50.69776],[56.1367,50.75426],[56.12434,50.789],[56.13464,50.8363],[56.15936,50.88267],[56.17515,50.90173],[56.18064,50.93722],[56.24794,50.91385],[56.29737,50.90216],[56.36398,50.9013],[56.3935,50.94545],[56.37153,50.94847],[56.37702,50.96448],[56.42234,50.9675],[56.43402,50.96448],[56.46011,50.96534],[56.45599,51.00338],[56.44844,51.05693],[56.51229,51.08541],[56.51161,51.07635],[56.51847,51.0716],[56.5274,51.07333],[56.52534,51.06254],[56.54045,51.04398],[56.57272,51.03405],[56.6201,50.98869],[56.67572,50.98739],[56.70455,50.98091],[56.70318,50.97269],[56.71897,50.9714],[56.72927,50.97745],[56.75193,50.9822],[56.72309,51.02887],[56.69906,51.07548],[56.70661,51.0785],[56.71966,51.07548],[56.72584,51.0785],[56.7382,51.07721],[56.76498,51.08972],[56.78558,51.09403],[56.82609,51.08411],[56.85905,51.0729],[56.88926,51.05995],[56.94419,51.0867],[56.98608,51.06254],[57.05612,51.06988],[57.14607,51.08799],[57.14332,51.09964],[57.18383,51.11516],[57.18795,51.10222],[57.20581,51.07333],[57.2319,51.047],[57.21885,51.04009],[57.24357,51.02628],[57.27859,51.03275],[57.28752,51.03966],[57.29507,51.0293],[57.2882,51.02325],[57.29095,51.00208],[57.30262,50.99344],[57.30606,50.99604],[57.31704,50.98307],[57.30812,50.97702],[57.32254,50.97053],[57.32597,50.94112],[57.38021,50.91905],[57.41043,50.9],[57.47428,50.87877],[57.51068,50.87704],[57.52372,50.90563],[57.5251,50.91558],[57.55943,50.93679],[57.68646,50.92727],[57.68714,50.91818],[57.71186,50.9277],[57.73452,50.9277],[57.74139,50.92164],[57.75993,50.92035],[57.74894,50.94371],[57.7565,50.97096],[57.75238,51.05607],[57.77229,51.13886],[57.81074,51.13886],[57.82104,51.12809],[57.82722,51.11473],[57.84851,51.11214],[57.85263,51.1061],[57.86842,51.10007],[57.87941,51.10179],[57.88765,51.10955],[57.91923,51.11817],[57.9309,51.10007],[57.94807,51.08627],[57.96936,51.09101],[58.01811,51.09403],[58.03665,51.11042],[58.05999,51.11343],[58.07167,51.12248],[58.08883,51.12162],[58.09227,51.1074],[58.08197,51.08541],[58.09364,51.0729],[58.12728,51.07074],[58.16436,51.06297],[58.17672,51.0647],[58.17741,51.07074],[58.17054,51.08282],[58.21037,51.09058],[58.21861,51.11214],[58.20213,51.12593],[58.23783,51.13714],[58.24607,51.14575],[58.2653,51.14317],[58.26805,51.15394],[58.27354,51.15394],[58.27217,51.14791],[58.27903,51.14532],[58.2859,51.15652],[58.29002,51.15867],[58.29277,51.15221],[58.30307,51.15437],[58.3065,51.15695],[58.31199,51.15221],[58.3168,51.15264],[58.31199,51.16039],[58.32092,51.16298],[58.32435,51.16685],[58.31337,51.16815],[58.31405,51.17159],[58.32435,51.1746],[58.3319,51.18149],[58.34152,51.1802],[58.36624,51.12636],[58.37104,51.12119],[58.3786,51.07764],[58.38272,51.07462],[58.52005,51.08368],[58.5894,51.05002],[58.63678,50.98653],[58.59489,50.97053],[58.6045,50.94718],[58.57772,50.93982],[58.59489,50.86924],[58.63403,50.87964],[58.68896,50.88527],[58.69583,50.84713],[58.68553,50.85017],[58.66355,50.8428],[58.65737,50.8094],[58.75762,50.81461],[58.7693,50.81721],[58.7796,50.81461],[58.80912,50.77945],[58.77754,50.78379],[58.78303,50.77511],[58.805,50.76165],[58.82148,50.74601],[58.84895,50.74775],[58.84826,50.73341],[58.85856,50.71733],[58.87916,50.70646],[58.87504,50.70037],[58.91281,50.69471],[58.98628,50.6921],[59.0316,50.68862],[59.03915,50.69036],[59.08927,50.67731],[59.11743,50.68514],[59.16,50.66861],[59.19227,50.67383],[59.20669,50.66687],[59.23484,50.66295],[59.28016,50.63291],[59.2987,50.65207],[59.41818,50.6377],[59.45114,50.64597],[59.4786,50.64162],[59.50058,50.612],[59.53559,50.60764],[59.56031,50.58672],[59.56581,50.58759],[59.56993,50.57277],[59.46556,50.58367],[59.46693,50.56928],[59.45663,50.54747],[59.51637,50.52827],[59.50882,50.49508],[59.61319,50.53088],[59.77523,50.54049],[59.813,50.53525],[59.87205,50.60938],[59.91119,50.6377],[59.96269,50.66077],[59.99565,50.67383],[59.98603,50.72385],[59.97299,50.77033],[60.03822,50.8506],[60.18653,50.83152],[60.15495,50.79942],[60.32661,50.67078],[60.46119,50.66382],[60.49209,50.66513],[60.55938,50.66034],[60.69877,50.66513],[60.74752,50.66426],[60.80932,50.65642],[60.85327,50.66861],[61.44859,50.80593],[61.48567,50.96145],[61.50695,51.02066],[61.56806,51.23698],[61.69029,51.25546],[61.54815,51.32331],[61.53579,51.34305],[61.51863,51.38549],[61.50283,51.40691],[61.47056,51.40948],[61.44584,51.41034],[61.42387,51.42233],[61.40945,51.41505],[61.39228,51.42019],[61.38885,51.42661],[61.36688,51.42661],[61.35108,51.44074],[61.31813,51.44245],[61.27761,51.43774],[61.23367,51.45144],[61.21719,51.44972],[61.20552,51.45999],[61.17874,51.45486],[61.13205,51.45614],[61.10664,51.44716],[61.09085,51.46726],[61.06407,51.4647],[61.02218,51.46384],[61.00227,51.46898],[60.99266,51.48822],[60.95283,51.49207],[60.94047,51.52241],[60.9336,51.52369],[60.90957,51.55444],[60.91026,51.5681],[60.93566,51.61503],[60.74821,51.61631],[60.53878,51.61886],[60.52642,51.6389],[60.41519,51.64785],[60.41175,51.65296],[60.39939,51.65594],[60.3939,51.66701],[60.37879,51.67468],[60.35888,51.67894],[60.35339,51.68915],[60.38772,51.70235],[60.39459,51.70745],[60.40008,51.7066],[60.43167,51.71894],[60.45158,51.73595],[60.46531,51.75891],[60.50102,51.77208],[60.5175,51.77336],[60.5175,51.79757],[60.42755,51.79884],[60.31631,51.83195],[60.14396,51.907],[60.14328,51.8998],[60.1474,51.89471],[60.16113,51.89259],[60.15564,51.87394],[60.15838,51.8731],[60.15632,51.85698],[60.14259,51.85995],[60.14396,51.8697],[60.05882,51.8697],[60.07461,51.88793],[60.03341,51.91377],[60.02929,51.93664],[60.01007,51.94003],[59.99221,51.965],[60.0032,51.97134],[60.00183,51.99376],[59.97436,52.02883],[59.916,52.04024],[59.916,52.05882],[59.90501,52.08246],[59.93385,52.08752],[59.96475,52.15076],[60.01419,52.16508],[60.02174,52.17393],[60.05607,52.17308],[60.05607,52.18193],[60.08079,52.21391],[60.12268,52.21938],[60.1474,52.24588],[60.17486,52.25849],[60.15976,52.2816],[60.16181,52.40241],[60.08972,52.41289],[60.04097,52.42629],[60.02517,52.41707],[59.99977,52.42126],[59.92012,52.42377],[59.84458,52.47065],[59.82605,52.47399],[59.74708,52.43885],[59.73472,52.43759],[59.73403,52.4221],[59.67292,52.40577],[59.67086,52.41582],[59.67636,52.42838],[59.66468,52.43633],[59.57473,52.44261],[59.54521,52.44052],[59.51019,52.40912],[59.48822,52.43382],[59.4532,52.45098],[59.41612,52.46395],[59.41612,52.48152],[59.39895,52.47358],[59.35089,52.47399],[59.31518,52.47148],[59.29664,52.48319],[59.28291,52.47901],[59.27124,52.48445],[59.2424,52.48236],[59.24858,52.45768],[59.24514,52.45266],[59.25064,52.43801],[59.2266,52.42126],[59.22454,52.3324],[59.21287,52.30134],[59.16893,52.27572],[59.05563,52.34331],[59.0213,52.34708],[59.00894,52.3605],[59.00825,52.37979],[58.98971,52.40451],[59.00482,52.41205],[58.99658,52.42712],[58.91418,52.44764],[58.90525,52.44261],[58.85444,52.44512],[58.85101,52.42587],[58.79814,52.43801],[58.80157,52.46814],[58.77204,52.47441],[58.77891,52.52207],[58.83934,52.52081],[58.83796,52.56633],[58.83316,52.56716],[58.8208,52.59428],[58.77822,52.59345],[58.77754,52.61138],[58.75076,52.61138],[58.75076,52.66055],[58.77754,52.6668],[58.78166,52.69594],[58.80226,52.69677],[58.77479,52.79528],[58.759,52.81396],[58.75625,52.843],[58.77479,52.87327],[58.8002,52.89482],[58.81942,52.93994],[58.86131,52.94491],[58.83728,53.02221],[58.85101,53.02634],[58.99108,53.02015],[58.99383,53.04492],[58.96362,53.05277],[58.91899,53.05483],[58.90937,53.15418],[58.89907,53.20932],[58.88259,53.20685],[58.87092,53.24056],[58.87229,53.27917],[58.89427,53.28081],[58.89907,53.312],[58.89839,53.41403],[58.8977,53.46434],[58.89221,53.46638],[58.89633,53.48559],[58.90457,53.50397],[58.90663,53.52357],[58.90388,53.54602],[58.81187,53.55009],[58.81736,53.57986],[58.84002,53.61084],[58.89221,53.63364],[58.90869,53.64667],[58.91143,53.69467],[58.88259,53.73937],[58.91418,53.76779],[58.9286,53.78686],[58.92105,53.82132],[58.91006,53.84766],[58.92242,53.88005],[58.95538,53.90797],[58.93753,53.92779],[58.9286,53.92577],[58.91418,53.93183],[58.92379,53.94355],[58.9183,53.9484],[58.95538,53.96901],[59.00207,53.95244],[59.04327,53.96982],[59.0879,53.96739],[59.10369,53.95649],[59.13459,53.96456],[59.13528,53.97224],[59.18952,53.99929],[59.18746,54.01503],[59.19433,54.03157],[59.21768,54.05455],[59.23622,54.06704],[59.25338,54.1053],[59.27192,54.14273],[59.29115,54.1568],[59.31449,54.19297],[59.34333,54.18534],[59.38865,54.17851],[59.40101,54.18534],[59.4944,54.18775],[59.52873,54.18574],[59.63104,54.1572],[59.65713,54.15238],[59.67292,54.1387],[59.70863,54.13911],[59.70245,54.18132],[59.71687,54.19779],[59.75601,54.21908],[59.78485,54.23072],[59.78965,54.23834],[59.78073,54.26923],[59.76562,54.3013],[59.74296,54.31652],[59.71618,54.32773],[59.67224,54.33854],[59.72991,54.39814],[59.73815,54.45367],[59.73266,54.45766],[59.71824,54.45606],[59.70451,54.46205],[59.68254,54.46445],[59.664,54.48081],[59.66812,54.49437],[59.67567,54.49796],[59.67773,54.51749],[59.70039,54.53223],[59.71138,54.54419],[59.74502,54.55175],[59.82261,54.59036],[59.85145,54.61383],[59.87754,54.64404],[59.8851,54.66946],[59.89677,54.68455],[59.89814,54.70756],[59.94346,54.76861],[59.92012,54.78999],[59.93248,54.81453],[59.94621,54.82956],[59.98878,54.85012],[60.00251,54.86435],[59.90844,54.86831],[59.87617,54.83985],[59.859,54.85289],[59.84115,54.84538],[59.81437,54.84973],[59.80682,54.85566],[59.80064,54.85329],[59.77935,54.8608],[59.75189,54.88095],[59.71687,54.87976],[59.66056,54.90306],[59.65782,54.91017],[59.61593,54.90385],[59.60151,54.8687],[59.54727,54.84736],[59.53422,54.8355],[59.52804,54.82047],[59.51774,54.80899],[59.51774,54.7797],[59.48341,54.76425],[59.44633,54.73691],[59.43946,54.72224],[59.40376,54.7143],[59.32617,54.68177],[59.28703,54.65596],[59.29321,54.63331],[59.2678,54.62337],[59.26643,54.61264],[59.20806,54.62417],[59.18541,54.62218],[59.16961,54.62735],[59.15176,54.62576],[59.13047,54.63291],[59.10575,54.6341],[59.09065,54.64364],[59.0728,54.6492],[59.02748,54.63053],[59.00413,54.61502],[58.98353,54.60906],[58.95675,54.58917],[58.91418,54.5824],[58.90251,54.57206],[58.84552,54.56927],[58.8153,54.55215],[58.76037,54.54896],[58.73977,54.53462],[58.72055,54.50394],[58.71505,54.48041],[58.64707,54.47043],[58.59764,54.46205],[58.57223,54.47163],[58.53858,54.49477],[58.46168,54.53941],[58.43902,54.54697],[58.43284,54.55454],[58.42117,54.56091],[58.39576,54.55653],[58.37791,54.55932],[58.30032,54.53622],[58.28315,54.51988],[58.22616,54.5139],[58.16711,54.50912],[58.15818,54.49915],[58.10394,54.44928],[58.01124,54.40134],[57.99408,54.39934],[57.9515,54.40214],[57.90275,54.41972],[57.9,54.42891],[57.82104,54.49038],[57.76542,54.50314],[57.76748,54.56847],[57.70774,54.59076],[57.67067,54.59991],[57.62397,54.62059],[57.59857,54.6774],[57.52098,54.65476],[57.48733,54.67105],[57.51274,54.68455],[57.51754,54.69288],[57.46742,54.71391],[57.38571,54.72105],[57.36717,54.7377],[57.33215,54.74999],[57.24288,54.77257],[57.21679,54.79593],[57.22229,54.80939],[57.20169,54.80978],[57.15637,54.85052],[57.14263,54.84894],[57.13508,54.85724],[57.15705,54.86396],[57.16529,54.87384],[57.21199,54.89674],[57.23739,54.93108],[57.26005,54.95908],[57.21061,54.97643],[57.18864,54.97643],[57.18727,54.99888],[57.19619,55.00637],[57.17765,55.01621],[57.17765,55.03235],[57.14744,55.06303],[57.13096,55.06971],[57.13371,55.08858],[57.15293,55.11883],[57.21542,55.13807],[57.25868,55.16984],[57.25524,55.17769],[57.23259,55.18435],[57.21061,55.21335],[57.21611,55.23685],[57.2422,55.21374],[57.25662,55.22471],[57.24014,55.25329],[57.24769,55.26425],[57.28477,55.26777],[57.30949,55.25759],[57.32254,55.2572],[57.33696,55.27246],[57.36648,55.29162],[57.39532,55.31156],[57.45918,55.32211],[57.52441,55.34164],[57.5457,55.32992],[57.63427,55.30218],[57.70706,55.30531],[57.76817,55.3014],[57.79907,55.30452],[57.93846,55.29632],[57.99682,55.28537],[58.01536,55.27481],[58.0442,55.24037],[58.06961,55.22902],[58.13072,55.22079],[58.1314,55.20904],[58.11561,55.19454],[58.05175,55.15651],[58.03184,55.15533],[58.01124,55.16318],[57.99957,55.15768],[57.99339,55.12236],[57.99751,55.11176],[57.99751,55.10115],[58.00643,55.08858],[58.03253,55.06932],[58.04489,55.065],[58.04489,55.05477],[58.02635,55.0528],[58.02635,55.04258],[58.04077,55.03471],[58.02429,55.00282],[58.02635,54.99337],[58.01467,54.9847],[57.96661,54.96933],[57.93296,54.94607],[57.96249,54.92319],[57.98309,54.92674],[58.00643,54.90662],[58.04008,54.91411],[58.07579,54.93306],[58.08883,54.94725],[58.09845,54.94962],[58.10119,54.94252],[58.11904,54.94094],[58.14582,54.98076],[58.12866,54.98194],[58.12797,54.97485],[58.10394,54.98431],[58.10737,54.98825],[58.13346,54.99297],[58.09501,55.0166],[58.15338,55.01857],[58.16436,55.02566],[58.18634,55.03392],[58.1575,55.03786],[58.16574,55.04651],[58.15956,55.05831],[58.19252,55.06618],[58.20213,55.08858],[58.17741,55.09565],[58.152,55.08308],[58.1369,55.09408],[58.15887,55.10587],[58.1369,55.11687],[58.14033,55.12747],[58.17947,55.13257],[58.19114,55.14631],[58.21312,55.14748],[58.23715,55.15612],[58.24195,55.16631],[58.26736,55.1718],[58.29963,55.15925],[58.35388,55.14552],[58.36418,55.13375],[58.36212,55.11922],[58.34701,55.10548],[58.39645,55.08819],[58.39302,55.07089],[58.42804,55.06893],[58.44108,55.04808],[58.42804,55.01896],[58.45344,54.9977],[58.47198,55.004],[58.50837,55.02802],[58.52829,55.03392],[58.5427,55.02684],[58.52829,55.00637],[58.50357,54.98904],[58.52623,54.97485],[58.55712,54.97485],[58.60244,54.96224],[58.64502,54.96657],[58.67248,54.95593],[58.72329,54.97524],[58.76174,55.01424],[58.82217,55.04022],[58.82766,55.05044],[58.79196,55.05752],[58.76724,55.06932],[58.72467,55.11844],[58.63678,55.14591],[58.62991,55.13964],[58.58528,55.14788],[58.59832,55.16161],[58.57223,55.17377],[58.57017,55.17965],[58.57841,55.18749],[58.60176,55.182],[58.6148,55.18474],[58.61549,55.19454],[58.64158,55.19219],[58.63815,55.17651],[58.65119,55.1671],[58.70132,55.17886],[58.70475,55.15925],[58.69651,55.15415],[58.70956,55.15023],[58.7178,55.13689],[58.72398,55.14042],[58.73291,55.1518],[58.78028,55.20473],[58.75076,55.21609],[58.71093,55.22079],[58.68759,55.23137],[58.70338,55.27872],[58.7281,55.28771],[58.91693,55.27598],[58.92997,55.28068],[58.93341,55.29045],[58.92379,55.29553],[58.83728,55.29553],[58.83865,55.31078],[58.84414,55.32797],[58.91761,55.32406],[58.96431,55.31351],[58.96705,55.27442],[58.99177,55.26698],[58.99589,55.25525],[59.01992,55.26972],[59.02954,55.28576],[59.04396,55.28028],[59.06662,55.29749],[59.07966,55.29553],[59.10095,55.31351],[59.08996,55.32523],[59.09889,55.32797],[59.11537,55.32328],[59.12361,55.335],[59.13459,55.34164],[59.17305,55.33656],[59.18541,55.33851],[59.17511,55.34593],[59.17854,55.38652],[59.16481,55.39627],[59.15039,55.40251],[59.14489,55.41576],[59.17442,55.43057],[59.18335,55.44732],[59.1806,55.46834],[59.26368,55.46873],[59.28497,55.46523],[59.35913,55.48157],[59.37629,55.48079],[59.37629,55.49636],[59.39827,55.49869],[59.42367,55.4948],[59.4326,55.47885],[59.46556,55.48002],[59.49852,55.49908],[59.57473,55.51852],[59.60151,55.55194],[59.63859,55.55932],[59.65438,55.58998],[59.63722,55.60007],[59.59121,55.60434],[59.54521,55.59347],[59.47448,55.59658],[59.48135,55.62334],[59.47242,55.63884],[59.40376,55.64349],[59.38591,55.64156],[59.38865,55.62644],[59.38659,55.61636],[59.35569,55.61287],[59.30694,55.59541],[59.27742,55.57795],[59.25201,55.58416],[59.25407,55.60162],[59.263,55.60317],[59.26574,55.60046],[59.28703,55.60123],[59.29115,55.61171],[59.32685,55.62722],[59.30488,55.6741],[59.28703,55.67835],[59.2939,55.69964],[59.27536,55.70893],[59.32754,55.75687],[59.31655,55.78468],[59.28772,55.78468],[59.26506,55.7924],[59.21768,55.78892],[59.19845,55.79278],[59.1394,55.79201],[59.13665,55.81517],[59.19639,55.81903],[59.22866,55.84795],[59.2163,55.86568],[59.21974,55.88494],[59.23896,55.90573],[59.24377,55.92843],[59.25613,55.9442],[59.2472,55.95573],[59.22317,55.95688],[59.22386,55.98686],[59.19296,56.02486],[59.24789,56.03177],[59.23965,56.03522],[59.24514,56.03752],[59.25476,56.03445],[59.27536,56.03637],[59.27879,56.04251],[59.28497,56.04328],[59.28497,56.03484],[59.30419,56.04059],[59.30831,56.05325],[59.30076,56.0567],[59.30145,56.05823],[59.31312,56.05823],[59.31587,56.06743],[59.3296,56.08084],[59.33509,56.08353],[59.33509,56.08621],[59.32754,56.08736],[59.3193,56.08506],[59.31449,56.08544],[59.32205,56.10115],[59.33509,56.10153],[59.32754,56.10689],[59.32754,56.10957],[59.33784,56.10957],[59.34265,56.11149],[59.32479,56.11646],[59.31861,56.12641],[59.32754,56.13024],[59.31793,56.13636],[59.31518,56.14746],[59.32617,56.14057],[59.33235,56.14172],[59.33509,56.15931],[59.31518,56.15396],[59.2781,56.1574],[59.28222,56.14631],[59.26574,56.14172],[59.26574,56.12871],[59.24308,56.12948],[59.18541,56.14134],[59.17785,56.13522],[59.16412,56.13139],[59.15107,56.14631],[59.09614,56.15128],[59.06318,56.1662],[59.04052,56.16696],[59.0419,56.13713],[58.9746,56.07893],[58.89221,56.059],[58.87573,56.07433],[58.83316,56.07433],[58.83178,56.08583],[58.76724,56.08966],[58.73153,56.08506],[58.71231,56.09808],[58.70819,56.11723],[58.64364,56.12106],[58.62854,56.13713],[58.5997,56.13942],[58.58596,56.17308],[58.50631,56.17384],[58.4761,56.12182],[58.42117,56.12182],[58.39096,56.08736],[58.34426,56.09119],[58.34976,56.11876],[58.31543,56.11876],[58.30169,56.10421],[58.24951,56.10421],[58.17398,56.13942],[58.13415,56.13101],[58.10257,56.1356],[58.07647,56.1134],[57.92404,56.10651],[57.90344,56.12106],[57.9103,56.12871],[57.89108,56.14401],[57.77298,56.14325],[57.73864,56.13177],[57.69744,56.13636],[57.66586,56.12412],[57.64663,56.09579],[57.60131,56.08889],[57.52304,56.09732],[57.47497,56.12795],[57.49145,56.16161],[57.50656,56.19371],[57.45986,56.21586],[57.45025,56.24335],[57.41729,56.25403],[57.41317,56.28377],[57.43652,56.30815],[57.41043,56.34166],[57.39738,56.33138],[57.35549,56.3211],[57.35961,56.31387],[57.35,56.30968],[57.32048,56.31691],[57.30468,56.31577],[57.30606,56.30282],[57.2937,56.29863],[57.29782,56.29101],[57.29095,56.28339],[57.30125,56.27233],[57.24494,56.26738],[57.22572,56.25326],[57.20031,56.24945],[57.19894,56.23724],[57.21748,56.22961],[57.22709,56.23037],[57.23053,56.22465],[57.21473,56.21396],[57.21817,56.20097],[57.21267,56.19677],[57.23259,56.19715],[57.23808,56.19295],[57.20787,56.17919],[57.21061,56.17537],[57.20649,56.16925],[57.1907,56.17155],[57.16941,56.15893],[57.15705,56.16275],[57.08564,56.16314],[57.06573,56.15817],[57.04444,56.12871],[57.00874,56.13369],[56.97166,56.11914],[56.93252,56.10881],[56.90368,56.11378],[56.8872,56.11149],[56.88034,56.13101],[56.85699,56.13139],[56.84669,56.14861],[56.83364,56.16046],[56.80412,56.1639],[56.79382,56.17728],[56.7794,56.17805],[56.77047,56.19486],[56.75399,56.20861],[56.76635,56.21319],[56.76361,56.2235],[56.74507,56.22121],[56.7382,56.22694],[56.68396,56.22923],[56.65374,56.24335],[56.651,56.25632],[56.66404,56.26356],[56.66748,56.27233],[56.61666,56.26928],[56.57341,56.29977],[56.548,56.31425],[56.51367,56.34432],[56.54457,56.35536],[56.54388,56.36791],[56.57409,56.38692],[56.53976,56.39566],[56.51573,56.37741],[56.50062,56.38046],[56.48551,56.3641],[56.42715,56.37589],[56.42646,56.38198],[56.40655,56.4044],[56.36741,56.38882],[56.37977,56.36258],[56.32759,56.36144],[56.32484,56.34052],[56.30218,56.331],[56.28845,56.30777],[56.25206,56.31501],[56.22528,56.31539],[56.21566,56.32681],[56.20811,56.32719],[56.20399,56.3192],[56.17172,56.31882],[56.16828,56.31006],[56.13739,56.3112],[56.13739,56.29711],[56.09275,56.29444],[56.06323,56.31501],[56.06117,56.32491],[56.04057,56.33747],[56.01997,56.33899],[56.00349,56.35193],[55.96229,56.37057],[55.95474,56.38616],[55.95817,56.39984],[55.94101,56.42719],[55.93689,56.44427],[55.91972,56.45945],[55.89294,56.45414],[55.87646,56.44427],[55.88676,56.43478],[55.84968,56.42263],[55.82153,56.43023],[55.78582,56.44845],[55.75286,56.43858],[55.71441,56.43402],[55.70068,56.41732],[55.67047,56.40402],[55.64094,56.39794],[55.63751,56.4025],[55.58807,56.39528],[55.55923,56.38958],[55.53314,56.37741],[55.52009,56.36106],[55.46585,56.33405],[55.42808,56.33214],[55.40267,56.32186],[55.38688,56.32072],[55.38482,56.32567],[55.32371,56.31463],[55.31341,56.32224],[55.28251,56.32262],[55.26603,56.33024],[55.2523,56.33024],[55.22964,56.35688],[55.21453,56.37057],[55.18913,56.35878],[55.20355,56.32719],[55.19943,56.30701],[55.18226,56.30587],[55.15274,56.31006],[55.14999,56.32643],[55.13145,56.35269],[55.11016,56.35536],[55.1033,56.35003],[55.08476,56.35079],[55.0724,56.34204],[55.05661,56.34699],[55.03189,56.34242],[55.02433,56.32643],[55.00167,56.33062],[54.99412,56.32834],[54.96254,56.33024],[54.92958,56.37703],[54.91653,56.38502],[54.87464,56.39338],[54.86709,56.40288],[54.85061,56.40896],[54.85267,56.41845],[54.84375,56.42187],[54.83001,56.41428],[54.81079,56.41618],[54.79705,56.42491],[54.79637,56.42795],[54.78675,56.4325],[54.72839,56.43137],[54.70848,56.45945],[54.68925,56.47842],[54.68444,56.4951],[54.66178,56.49585],[54.63089,56.50647],[54.60891,56.50457],[54.5993,56.5201],[54.60685,56.52654],[54.59861,56.53222],[54.58557,56.53374],[54.54986,56.522],[54.53064,56.50116],[54.53064,56.49017],[54.5224,56.48524],[54.52446,56.47311],[54.51141,56.46931],[54.49081,56.45072],[54.48532,56.41428],[54.4654,56.40592],[54.46609,56.38426],[54.45098,56.37095],[54.45922,56.35421],[54.45442,56.34546],[54.44274,56.35498],[54.39468,56.37589],[54.37339,56.37817],[54.37133,56.37323],[54.36241,56.37779],[54.36378,56.38996],[54.34593,56.40554],[54.3473,56.45528],[54.33631,56.46287],[54.3267,56.47917],[54.24362,56.46021],[54.21684,56.46704],[54.20379,56.48031],[54.21134,56.49396],[54.19075,56.50722],[54.18319,56.53109],[54.11659,56.53639],[54.10629,56.54888],[54.10491,56.56478],[54.09324,56.57385],[54.06921,56.57726],[54.05685,56.59012],[54.03762,56.57953],[54.03144,56.5818],[54.04174,56.60259],[54.05616,56.60901],[54.06646,56.62602],[54.08226,56.63093],[54.07127,56.64528],[54.09256,56.65283],[54.02938,56.65283],[54.02183,56.66981],[54.01359,56.67245],[53.99848,56.66301],[53.98201,56.65735],[53.98063,56.64037],[53.96141,56.64112],[53.94973,56.6483],[53.93806,56.64339],[53.90579,56.6566],[53.8948,56.65433],[53.88999,56.64603],[53.8742,56.63999],[53.8797,56.62677],[53.86734,56.62148],[53.84674,56.61808],[53.84742,56.60713],[53.86734,56.6041],[53.85978,56.5939],[53.83781,56.59843],[53.82957,56.62224],[53.84262,56.63168],[53.85635,56.6313],[53.84262,56.64414],[53.85292,56.65924],[53.88588,56.66717],[53.90235,56.68112],[53.88244,56.68301],[53.88382,56.71845],[53.84674,56.72221],[53.85223,56.74406],[53.84948,56.75799],[53.83094,56.75836],[53.80554,56.78019],[53.8282,56.80238],[53.79592,56.79862],[53.80073,56.81892],[53.86047,56.81892],[53.89686,56.78207],[53.92021,56.78508],[53.93531,56.76853],[53.96278,56.75573],[54.00123,56.75084],[54.0541,56.77831],[54.05891,56.79223],[54.08157,56.80839],[54.09256,56.80764],[54.10148,56.87899],[54.16053,56.97978],[54.22302,56.99288],[54.33494,56.97455],[54.43588,57.034],[54.40086,57.04147],[54.38644,57.06015],[54.3473,57.06873],[54.34799,57.0747],[54.31228,57.08515],[54.3116,57.09485],[54.29168,57.11126],[54.29786,57.11536],[54.31503,57.11201],[54.31709,57.11872],[54.32945,57.12095],[54.32945,57.14592],[54.34661,57.15114],[54.34661,57.15858],[54.33288,57.16082],[54.32807,57.16715],[54.34249,57.17385],[54.31709,57.18985],[54.3576,57.21217],[54.35348,57.22146],[54.32395,57.22332],[54.32258,57.2315],[54.29718,57.24525],[54.32533,57.26159],[54.33013,57.2783],[54.30954,57.28869],[54.31572,57.29351],[54.30679,57.29908],[54.3116,57.30353],[54.2292,57.30464],[54.2086,57.29945],[54.18457,57.31502],[54.14886,57.31688],[54.13993,57.32615],[54.12483,57.33096],[54.12414,57.35209],[54.15298,57.37245],[54.12483,57.38023],[54.15435,57.40058],[54.20654,57.40206],[54.22714,57.41722],[54.28688,57.42831],[54.29855,57.43423],[54.28894,57.43866],[54.27589,57.43534],[54.26971,57.44236],[54.27932,57.45529],[54.27452,57.46563],[54.24087,57.46378],[54.19418,57.46748],[54.17907,57.47818],[54.14405,57.48151],[54.16946,57.49627],[54.17495,57.5243],[54.1468,57.53167],[54.13513,57.53057],[54.11727,57.5372],[54.10491,57.52799],[54.08981,57.52541],[54.08363,57.52983],[54.06646,57.52725],[54.06166,57.51545],[54.04106,57.52467],[54.05754,57.53425],[54.05548,57.54125],[54.06646,57.5442],[54.0644,57.56004],[54.04174,57.56778],[54.02938,57.5582],[54.01153,57.56373],[54.0026,57.5571],[53.98613,57.56778],[53.99231,57.58803],[54.02046,57.59796],[54.04174,57.59207],[54.05822,57.59502],[54.05891,57.60422],[54.08638,57.61157],[54.11796,57.60385],[54.13101,57.61672],[54.12551,57.62334],[54.0905,57.64062],[54.06715,57.64062],[54.0596,57.64576],[54.07058,57.64797],[54.06715,57.67772],[54.10629,57.69607],[54.11933,57.69424],[54.11727,57.70157],[54.12277,57.70451],[54.15641,57.70378],[54.16191,57.71515],[54.14131,57.71551],[54.13307,57.72908],[54.11178,57.74228],[54.13513,57.75437],[54.16397,57.77964],[54.15573,57.78916],[54.14543,57.78586],[54.13032,57.80599],[54.14199,57.80892],[54.13375,57.82318],[54.14131,57.83634],[54.13169,57.84182],[54.14199,57.85827],[54.13375,57.86703],[54.13719,57.86922],[54.09805,57.89222],[54.09118,57.90682],[54.13307,57.96041],[54.08363,57.98699],[54.08294,58.003],[53.98269,58.07279],[53.94355,58.08259],[53.94287,58.13048],[53.92913,58.15259],[53.88931,58.16599],[53.90579,58.17794],[53.89686,58.18482],[53.83506,58.20689],[53.79318,58.23257],[53.79798,58.24955],[53.8282,58.26256],[53.86047,58.28098],[53.89205,58.31309],[53.85429,58.34265],[53.8282,58.34518],[53.80828,58.38731],[53.78082,58.41178],[53.78425,58.45348],[53.79112,58.46282],[53.7767,58.4962],[53.73069,58.57612],[53.70254,58.60332],[53.76915,58.65301],[53.73207,58.68907],[53.74717,58.69799],[53.77121,58.70262],[53.78219,58.72188],[53.8227,58.72438],[53.8385,58.73899],[53.88931,58.75217],[53.92707,58.75894],[53.94287,58.77852],[53.92227,58.77994],[53.92982,58.7988],[53.87146,58.81658],[53.82408,58.83826],[53.80073,58.86241],[53.8076,58.88726],[53.77121,58.93654],[53.76297,58.97833],[53.78082,59.01157],[53.86596,59.03348],[53.88588,59.06668],[53.91471,59.08397],[53.90029,59.08785],[53.87214,59.12628],[53.82751,59.11183],[53.73207,59.18296],[53.69361,59.15375],[53.72863,59.12275],[53.55148,59.14565],[53.50479,59.15481],[53.47732,59.15023],[53.46771,59.14283],[53.45123,59.14107],[53.44848,59.14988],[53.4066,59.14741],[53.40042,59.1615],[53.37776,59.16044],[53.22876,59.33984],[53.22944,59.36189],[53.2418,59.38113],[53.32763,59.44507],[53.37295,59.46461],[53.37707,59.48414],[53.40591,59.56911],[53.45397,59.69477],[53.46565,59.69997],[53.60572,59.68923],[53.63868,59.75985],[53.67919,60.00001],[53.68537,60.01168],[53.684,60.02404],[53.62907,60.12201],[53.56933,60.16166],[53.52058,60.18113],[53.47457,60.21185],[53.42239,60.22719],[53.38325,60.15825],[52.99118,60.15449],[52.44049,60.18762],[52.06695,60.31198],[51.99897,60.28987],[51.96464,60.27149],[51.88568,60.21526],[51.79985,60.10901],[51.77444,60.0871],[51.74354,60.06792],[51.67625,60.03227],[51.63299,59.99761],[51.57394,59.93988],[51.53686,59.93128],[51.4991,59.9151],[51.48605,59.92508],[51.47163,59.92611],[51.43043,59.99417],[51.17912,60.0525],[51.13105,60.03981],[51.10702,60.04496],[51.072,60.03776],[51.03012,60.01546],[51.01638,60.00138],[51.00196,59.99486],[50.94909,59.94779],[50.92575,59.92508],[50.8612,59.90684],[50.8715,59.88549],[50.82412,59.86516],[50.77949,59.86274],[50.73417,59.87377],[50.50552,59.8424],[50.45951,59.83446],[50.39634,59.84378],[50.28305,59.80512],[50.25901,59.75328],[49.98642,59.7799],[49.97406,59.75743],[49.97406,59.73356],[50.00427,59.71244],[50.02624,59.70932],[50.08598,59.68091],[50.07019,59.67016],[50.00976,59.67571],[49.97268,59.65976],[49.86076,59.65768],[49.79141,59.48658],[49.87518,59.48275],[49.83123,59.36504],[49.86625,59.36189],[49.82299,59.20933],[49.81544,59.19632],[49.81063,59.20406],[49.81475,59.21812],[49.81132,59.22093],[49.79347,59.21812],[49.78385,59.2262],[49.71725,59.20019],[49.52499,59.22198],[49.53872,59.23252],[49.52156,59.24657],[49.55932,59.32898],[49.58061,59.39127],[49.3547,59.40805],[49.36775,59.46705],[49.22424,59.47333],[49.22493,59.48972],[49.20707,59.49077],[49.15557,59.51412],[49.11163,59.47891],[49.04228,59.47961],[49.10888,59.6608],[48.53141,59.70794],[48.51081,59.88101],[48.50326,59.91063],[48.49983,60.0206],[48.48335,60.02747],[48.47236,60.1309],[48.49296,60.19547],[48.62274,60.25037],[48.66325,60.2657],[48.6811,60.28068],[48.77105,60.31538],[48.78341,60.35481],[48.73809,60.37178],[48.6811,60.40062],[48.6763,60.39045],[48.53279,60.39995],[48.55613,60.41893],[48.60763,60.41554],[48.63235,60.42368],[48.62411,60.4291],[48.60763,60.43215],[48.55957,60.46026],[48.49914,60.47887],[48.51425,60.49646],[48.51356,60.51168],[48.49433,60.52486],[48.55819,60.55255],[48.42018,60.83922],[48.47923,61.02903],[48.92898,61.13959],[48.95645,61.11571],[49.12262,61.17569],[49.32449,61.1588],[49.51194,61.61194],[49.04983,61.65892],[49.23454,62.10677],[49.27574,62.10902],[49.28741,62.11448],[49.29084,62.14465],[49.37873,62.13695],[49.64103,62.77201],[48.74702,62.85514],[48.67973,62.70218],[48.35083,62.73491],[48.25607,62.50344],[48.29933,62.47553],[48.32679,62.30815],[48.23684,62.31389],[48.01231,62.31868],[47.65525,62.33144],[47.63397,62.18152],[47.39158,62.18216],[47.39776,62.33494],[47.23159,62.34196],[47.24121,62.52752],[47.24395,62.63534],[47.12173,62.7764],[47.07366,62.83602],[47.23503,62.89052],[47.31262,62.92211],[47.4472,62.96521],[47.41424,62.96521],[47.45407,62.98861],[47.52548,63.05153],[47.52891,63.07828],[47.52822,63.1106],[47.54402,63.11308],[47.56187,63.15032],[47.4781,63.15373],[47.42317,63.15931],[47.33734,63.18101],[47.27279,63.20733],[47.23159,63.21939],[47.16499,63.24537],[47.11074,63.24754],[47.05238,63.25372],[47.03178,63.29232],[46.94046,63.34904],[46.94801,63.42379],[46.9384,63.45173],[47.005,63.51764],[47.00706,63.58553],[46.98646,63.58126],[46.97753,63.58828],[46.9947,63.59592],[46.93908,63.64016],[46.91024,63.67611],[46.86424,63.71567],[46.76055,63.78127],[46.66992,63.81098],[46.58203,63.83521],[46.43508,63.88634],[46.39389,63.90598],[46.19476,63.93918],[46.11854,63.94702],[46.08764,63.94159],[46.00524,63.95215],[45.93452,63.95456],[45.80749,64.00065],[45.58639,64.06379],[45.40512,64.17618],[45.84869,64.28156],[46.31218,64.25324],[46.36917,64.27024],[46.3932,64.25921],[46.56143,64.31105],[46.69189,64.32384],[46.9535,64.3402],[47.11624,64.34436],[47.37236,64.35477],[47.53372,64.34971],[47.81456,64.34882],[47.99171,64.34466],[48.16062,64.34288],[48.15101,64.29824],[48.18191,64.2431],[48.20594,64.22638],[48.46412,64.21295],[48.5424,64.36754],[48.8713,64.33158],[48.89877,64.33009],[48.90976,64.33693],[48.97224,64.47812],[49.47898,64.42333],[49.55246,64.57675],[49.89852,64.54814],[49.91844,64.55906],[50.36338,64.51862],[50.50689,64.79372],[50.24116,64.82937],[50.21438,64.85448],[49.94522,65.04375],[49.75914,65.17467],[49.63829,65.2883],[49.08897,65.22938],[49.01207,66.11551],[49.45426,66.23699],[50.10932,66.41152],[50.88867,66.61239],[51.54579,66.77702],[51.54716,66.79055],[51.53617,66.80056],[51.51763,66.80705],[51.50802,66.82003],[51.49772,66.82408],[51.49292,66.83759],[51.50871,66.85325],[51.53411,66.86108],[51.52725,66.87457],[51.54167,66.88212],[51.52038,66.89128],[51.51283,66.90987],[51.4936,66.91714],[51.51283,66.92467],[51.52862,66.93759],[51.54304,66.94861],[51.59797,66.9513],[51.6378,66.94539],[51.67213,66.93059],[51.7044,66.92064],[51.71745,66.92117],[51.73599,66.9279],[51.75109,66.92817],[51.75796,66.92413],[51.76345,66.91471],[51.77307,66.92037],[51.77032,66.93328],[51.78749,66.94216],[51.77787,66.94458],[51.75796,66.94431],[51.75178,66.94888],[51.76208,66.95399],[51.78062,66.95399],[51.80671,66.94646],[51.81976,66.94781],[51.82594,66.96125],[51.84585,66.97307],[51.8486,66.9822],[51.82663,66.98139],[51.81564,66.98381],[51.8637,66.98972],[51.87057,66.99294],[51.86508,66.99589],[51.81495,66.99508],[51.83761,66.99964],[51.93031,67.00045],[51.94335,67.00662],[51.93855,67.01386],[51.94198,67.01761],[51.96395,67.01922],[51.98867,67.02512],[52.01683,67.02485],[52.04429,67.03048],[52.04292,67.04494],[52.02232,67.04602],[52.01202,67.0511],[52.03056,67.05539],[52.05734,67.05244],[52.06489,67.06341],[52.08343,67.07091],[52.07382,67.07733],[52.12738,67.08348],[52.16995,67.10138],[52.86758,67.06288],[53.46221,67.027],[53.76022,67.00903],[53.94424,67.01118],[54.62745,67.01949],[55.56266,67.02539],[56.0852,67.02619],[56.34269,67.02646],[57.08976,67.02351],[57.47497,67.02163],[58.04214,67.0152],[58.49533,67.00903],[58.8311,67.0042],[59.47792,67.00447],[59.96818,67.00286],[59.97436,66.99884],[59.96269,66.99133],[59.97161,66.98623],[59.97299,66.98005],[59.96818,66.97629],[59.95307,66.98005],[59.93042,66.98005],[59.9263,66.97656],[59.92698,66.9642],[59.93179,66.9556],[59.94003,66.95426],[59.98741,66.96447],[60.03959,66.96904],[60.07667,66.9822],[60.13092,66.99052],[60.15838,66.99991],[61.13548,67.00206],[61.31538,67.00233],[61.3298,66.99911],[61.3401,67.00125],[61.35589,66.99938],[61.38061,66.9975],[61.371,66.99133],[61.37855,66.97924],[61.38542,66.97817],[61.39091,66.98381],[61.40327,66.98327],[61.4273,66.98972],[61.44447,66.99213],[61.44928,66.99911],[61.45614,67.01198],[61.47674,67.0093],[61.50009,67.01225],[61.49528,67.00528],[61.50077,67.0026],[61.50558,67.00152],[61.5303,67.00662],[61.55365,67.01708],[61.57493,67.0042],[61.59004,67.00206],[61.60789,67.00903],[61.64016,67.00662],[61.64634,67.01306],[61.62712,67.02003],[61.63604,67.02244],[61.66008,67.0211],[61.70265,67.03075],[61.70608,67.03476],[61.70196,67.05083],[61.70814,67.06796],[61.72943,67.07599],[61.72737,67.07973],[61.71089,67.08054],[61.70677,67.08294],[61.71295,67.08535],[61.73561,67.08802],[61.73492,67.0931],[61.72462,67.09711],[61.74179,67.10299],[61.75758,67.10379],[61.77955,67.11127],[61.80221,67.10673],[61.82624,67.11554],[61.8544,67.11981],[62.45933,67.27416],[62.83287,67.36682],[62.86514,67.36973],[62.85484,67.37766],[62.85965,67.38215],[62.88505,67.38795],[62.89329,67.3935],[62.89466,67.403],[62.89947,67.40986],[62.89054,67.42594],[62.90496,67.44386],[62.90222,67.45044],[62.89054,67.46387],[62.89054,67.4686],[62.87956,67.47729],[62.84866,67.49148],[62.8466,67.49648],[62.83287,67.5083],[62.83699,67.51434],[62.85072,67.52301],[62.88642,67.52563],[62.90908,67.55239],[62.88436,67.59352],[62.94204,67.60869],[62.98393,67.60843],[63.06015,67.62386],[63.09516,67.64424],[63.11233,67.64816],[63.13842,67.67634],[63.14529,67.68703],[63.16314,67.6972],[63.18306,67.70006],[63.20297,67.70006],[63.21395,67.70293],[63.23043,67.70371],[63.23249,67.71152],[63.27987,67.71621],[63.3094,67.71543],[63.32038,67.7222],[63.31901,67.73963],[63.33343,67.73989],[63.3403,67.75082],[63.36296,67.75705],[63.38974,67.75575],[63.42201,67.76849],[63.44673,67.76849],[63.47007,67.76147],[63.49273,67.74718],[63.50441,67.73365],[63.55384,67.72897],[63.55934,67.73521],[63.5765,67.73677],[63.61976,67.72949],[63.70834,67.73417],[63.71795,67.73209],[63.72619,67.73391],[63.73512,67.72793],[63.75709,67.72168],[63.75846,67.73365],[63.76464,67.73703],[63.75778,67.74093],[63.78387,67.74275],[63.78936,67.74588],[63.78593,67.74822],[63.76258,67.74562],[63.7564,67.75108],[63.73786,67.75394],[63.71864,67.76173],[63.69941,67.77654],[63.71315,67.77732],[63.71727,67.78848],[63.70971,67.79393],[63.71795,67.79601],[63.72413,67.79471],[63.74748,67.79523],[63.7564,67.79835],[63.76739,67.79653],[63.78181,67.80691],[63.77357,67.81287],[63.80035,67.8305],[63.86009,67.82272],[63.90266,67.83956],[63.91914,67.84086],[63.91983,67.84371],[63.92601,67.84474],[63.93219,67.85173],[63.92189,67.8551],[63.93974,67.867],[63.93425,67.8714],[63.95828,67.87321],[63.96926,67.89053],[63.99192,67.89312],[64.00566,67.89828],[64.00291,67.90164],[63.94866,67.91223],[63.92532,67.92256],[63.91777,67.93313],[63.93905,67.9401],[63.92738,67.96716],[63.91227,67.97128],[63.89442,67.99934],[63.88412,68.03121],[63.88824,68.03455],[63.89717,68.03301],[63.92051,68.03583],[63.93974,68.04071],[63.96995,68.04046],[63.97476,68.04379],[63.96789,68.04688],[63.9727,68.04893],[64.0139,68.05406],[64.03655,68.05226],[64.06608,68.06612],[64.08599,68.0692],[64.09286,68.07433],[64.07775,68.08022],[64.10865,68.07843],[64.11209,68.0815],[64.09629,68.08535],[64.10865,68.08919],[64.12994,68.08868],[64.16221,68.09227],[64.17114,68.09816],[64.18281,68.0979],[64.19174,68.10302],[64.20204,68.0997],[64.22401,68.10789],[64.2659,68.10635],[64.28169,68.11531],[64.30778,68.11199],[64.32357,68.11941],[64.34417,68.12171],[64.35173,68.12913],[64.3634,68.12632],[64.37164,68.13015],[64.37164,68.14217],[64.39086,68.15188],[64.39704,68.15801],[64.3888,68.16006],[64.36546,68.1575],[64.35653,68.15955],[64.36203,68.16363],[64.38194,68.16593],[64.3888,68.17589],[64.40803,68.17461],[64.4561,68.1963],[64.47257,68.19834],[64.50347,68.1963],[64.5124,68.18431],[64.52613,68.18431],[64.53575,68.18789],[64.56047,68.19171],[64.57901,68.19095],[64.58793,68.19987],[64.5639,68.20676],[64.57351,68.21338],[64.56047,68.23351],[64.5639,68.24827],[64.5639,68.26379],[64.53987,68.27523],[64.53163,68.27548],[64.54261,68.2953],[64.54399,68.30774],[64.53987,68.31535],[64.54055,68.32144],[64.55497,68.32448],[64.56596,68.32955],[64.54948,68.33513],[64.55772,68.33969],[64.58519,68.33969],[64.58793,68.3473],[64.5996,68.35515],[64.62158,68.35869],[64.65248,68.36148],[64.6669,68.36604],[64.66827,68.37768],[64.68887,68.38881],[64.71565,68.39109],[64.74517,68.38324],[64.76646,68.38324],[64.77539,68.3878],[64.79118,68.39892],[64.81658,68.40322],[64.83512,68.40246],[64.85641,68.39639],[64.87289,68.40322],[64.88388,68.39842],[64.88319,68.39488],[64.89349,68.3926],[64.90448,68.39412],[64.94705,68.40373],[64.96696,68.40094],[64.98138,68.39412],[64.99168,68.38527],[65.00885,68.38072],[65.0521,68.38223],[65.0679,68.3883],[65.06103,68.40145],[65.06652,68.41383],[65.08369,68.4103],[65.1091,68.41181],[65.12901,68.41358],[65.17501,68.39993],[65.19905,68.40322],[65.23407,68.39993],[65.25604,68.39134],[65.26153,68.39412],[65.26084,68.40044],[65.26977,68.40474],[65.28625,68.4065],[65.2993,68.40246],[65.29861,68.39488],[65.30685,68.39235],[65.32951,68.39589],[65.3405,68.39564],[65.35148,68.40221],[65.34874,68.40701],[65.36384,68.41105],[65.38238,68.4103],[65.38856,68.41939],[65.42221,68.42242],[65.43731,68.41939],[65.44692,68.41964],[65.4689,68.41383],[65.47851,68.41585],[65.47096,68.42242],[65.47851,68.42545],[65.51696,68.431],[65.52658,68.46253],[65.54306,68.46304],[65.5513,68.48093],[65.6076,68.4842],[65.61103,68.49855],[65.59593,68.50862],[65.60142,68.51491],[65.62408,68.51943],[65.64605,68.5325],[65.66047,68.53502],[65.66734,68.54155],[65.67558,68.55486],[65.6694,68.55787],[65.67421,68.57167],[65.65223,68.58045],[65.63301,68.58296],[65.6076,68.58245],[65.58975,68.58772],[65.57327,68.58521],[65.56297,68.58973],[65.56778,68.60225],[65.55816,68.60902],[65.52314,68.61703],[65.50186,68.6333],[65.44692,68.6453],[65.4277,68.65955],[65.43182,68.67603],[65.41809,68.67703],[65.41603,68.68003],[65.42221,68.69076],[65.4634,68.6965],[65.47714,68.70797],[65.45517,68.71794],[65.44486,68.73414],[65.43113,68.73464],[65.42015,68.72766],[65.38032,68.72442],[65.36315,68.72916],[65.36384,68.74634],[65.37757,68.76077],[65.39611,68.77445],[65.40092,68.78637],[65.39131,68.7911],[65.37551,68.79184],[65.36384,68.78662],[65.34805,68.79283],[65.35491,68.80699],[65.33432,68.81394],[65.31852,68.80748],[65.29586,68.80302],[65.2629,68.80997],[65.24025,68.80351],[65.23338,68.80475],[65.23544,68.81369],[65.2272,68.82163],[65.20935,68.82287],[65.20248,68.81046],[65.14755,68.80897],[65.13588,68.80252],[65.10086,68.80748],[65.04867,68.82262],[65.03562,68.83081],[65.037,68.83824],[65.02876,68.84122],[65.00198,68.83799],[64.97314,68.84171],[64.94293,68.85534],[64.91271,68.86079],[64.92233,68.87366],[64.89418,68.87168],[64.8674,68.86326],[64.85229,68.86401],[64.86328,68.87119],[64.85366,68.8744],[64.8262,68.87564],[64.80285,68.88084],[64.79599,68.88974],[64.77676,68.88702],[64.75685,68.87614],[64.7541,68.86846],[64.75959,68.86277],[64.75547,68.85559],[64.73693,68.85286],[64.71908,68.85856],[64.69368,68.85881],[64.67857,68.86351],[64.65866,68.86599],[64.62638,68.86054],[64.58656,68.86079],[64.56733,68.86599],[64.56733,68.87762],[64.57489,68.89271],[64.55566,68.90952],[64.59274,68.92261],[64.61952,68.92705],[64.62364,68.94014],[64.63325,68.94606],[64.61746,68.9505],[64.61128,68.95814],[64.57283,68.96061],[64.56527,68.97293],[64.53094,68.9749],[64.52819,68.99607],[64.53987,69.00542],[64.54261,69.01772],[64.55154,69.02682],[64.59892,69.03493],[64.636,69.04696],[64.64836,69.06144],[64.67308,69.07101],[64.72045,69.09969],[64.73281,69.11512],[64.75341,69.12564],[64.81521,69.143],[64.82688,69.15596],[64.88456,69.17818],[65.03082,69.19355],[65.04661,69.22938],[65.0727,69.23765],[65.06103,69.24641],[65.08506,69.25274],[65.10017,69.27875],[65.1318,69.33869],[70,76],[70,80]]]}},{"type":"Feature","properties":{"cq_zone_name":"Western Zone of Siberia","cq_zone_number":17,"cq_zone_name_loc":[55,65]},"geometry":{"type":"Polygon","coordinates":[[[70,76],[65.1318,69.33869],[65.10017,69.27875],[65.08506,69.25274],[65.06103,69.24641],[65.0727,69.23765],[65.04661,69.22938],[65.03082,69.19355],[64.88456,69.17818],[64.82688,69.15596],[64.81521,69.143],[64.75341,69.12564],[64.73281,69.11512],[64.72045,69.09969],[64.67308,69.07101],[64.64836,69.06144],[64.636,69.04696],[64.59892,69.03493],[64.55154,69.02682],[64.54261,69.01772],[64.53987,69.00542],[64.52819,68.99607],[64.53094,68.9749],[64.56527,68.97293],[64.57283,68.96061],[64.61128,68.95814],[64.61746,68.9505],[64.63325,68.94606],[64.62364,68.94014],[64.61952,68.92705],[64.59274,68.92261],[64.55566,68.90952],[64.57489,68.89271],[64.56733,68.87762],[64.56733,68.86599],[64.58656,68.86079],[64.62638,68.86054],[64.65866,68.86599],[64.67857,68.86351],[64.69368,68.85881],[64.71908,68.85856],[64.73693,68.85286],[64.75547,68.85559],[64.75959,68.86277],[64.7541,68.86846],[64.75685,68.87614],[64.77676,68.88702],[64.79599,68.88974],[64.80285,68.88084],[64.8262,68.87564],[64.85366,68.8744],[64.86328,68.87119],[64.85229,68.86401],[64.8674,68.86326],[64.89418,68.87168],[64.92233,68.87366],[64.91271,68.86079],[64.94293,68.85534],[64.97314,68.84171],[65.00198,68.83799],[65.02876,68.84122],[65.037,68.83824],[65.03562,68.83081],[65.04867,68.82262],[65.10086,68.80748],[65.13588,68.80252],[65.14755,68.80897],[65.20248,68.81046],[65.20935,68.82287],[65.2272,68.82163],[65.23544,68.81369],[65.23338,68.80475],[65.24025,68.80351],[65.2629,68.80997],[65.29586,68.80302],[65.31852,68.80748],[65.33432,68.81394],[65.35491,68.80699],[65.34805,68.79283],[65.36384,68.78662],[65.37551,68.79184],[65.39131,68.7911],[65.40092,68.78637],[65.39611,68.77445],[65.37757,68.76077],[65.36384,68.74634],[65.36315,68.72916],[65.38032,68.72442],[65.42015,68.72766],[65.43113,68.73464],[65.44486,68.73414],[65.45517,68.71794],[65.47714,68.70797],[65.4634,68.6965],[65.42221,68.69076],[65.41603,68.68003],[65.41809,68.67703],[65.43182,68.67603],[65.4277,68.65955],[65.44692,68.6453],[65.50186,68.6333],[65.52314,68.61703],[65.55816,68.60902],[65.56778,68.60225],[65.56297,68.58973],[65.57327,68.58521],[65.58975,68.58772],[65.6076,68.58245],[65.63301,68.58296],[65.65223,68.58045],[65.67421,68.57167],[65.6694,68.55787],[65.67558,68.55486],[65.66734,68.54155],[65.66047,68.53502],[65.64605,68.5325],[65.62408,68.51943],[65.60142,68.51491],[65.59593,68.50862],[65.61103,68.49855],[65.6076,68.4842],[65.5513,68.48093],[65.54306,68.46304],[65.52658,68.46253],[65.51696,68.431],[65.47851,68.42545],[65.47096,68.42242],[65.47851,68.41585],[65.4689,68.41383],[65.44692,68.41964],[65.43731,68.41939],[65.42221,68.42242],[65.38856,68.41939],[65.38238,68.4103],[65.36384,68.41105],[65.34874,68.40701],[65.35148,68.40221],[65.3405,68.39564],[65.32951,68.39589],[65.30685,68.39235],[65.29861,68.39488],[65.2993,68.40246],[65.28625,68.4065],[65.26977,68.40474],[65.26084,68.40044],[65.26153,68.39412],[65.25604,68.39134],[65.23407,68.39993],[65.19905,68.40322],[65.17501,68.39993],[65.12901,68.41358],[65.1091,68.41181],[65.08369,68.4103],[65.06652,68.41383],[65.06103,68.40145],[65.0679,68.3883],[65.0521,68.38223],[65.00885,68.38072],[64.99168,68.38527],[64.98138,68.39412],[64.96696,68.40094],[64.94705,68.40373],[64.90448,68.39412],[64.89349,68.3926],[64.88319,68.39488],[64.88388,68.39842],[64.87289,68.40322],[64.85641,68.39639],[64.83512,68.40246],[64.81658,68.40322],[64.79118,68.39892],[64.77539,68.3878],[64.76646,68.38324],[64.74517,68.38324],[64.71565,68.39109],[64.68887,68.38881],[64.66827,68.37768],[64.6669,68.36604],[64.65248,68.36148],[64.62158,68.35869],[64.5996,68.35515],[64.58793,68.3473],[64.58519,68.33969],[64.55772,68.33969],[64.54948,68.33513],[64.56596,68.32955],[64.55497,68.32448],[64.54055,68.32144],[64.53987,68.31535],[64.54399,68.30774],[64.54261,68.2953],[64.53163,68.27548],[64.53987,68.27523],[64.5639,68.26379],[64.5639,68.24827],[64.56047,68.23351],[64.57351,68.21338],[64.5639,68.20676],[64.58793,68.19987],[64.57901,68.19095],[64.56047,68.19171],[64.53575,68.18789],[64.52613,68.18431],[64.5124,68.18431],[64.50347,68.1963],[64.47257,68.19834],[64.4561,68.1963],[64.40803,68.17461],[64.3888,68.17589],[64.38194,68.16593],[64.36203,68.16363],[64.35653,68.15955],[64.36546,68.1575],[64.3888,68.16006],[64.39704,68.15801],[64.39086,68.15188],[64.37164,68.14217],[64.37164,68.13015],[64.3634,68.12632],[64.35173,68.12913],[64.34417,68.12171],[64.32357,68.11941],[64.30778,68.11199],[64.28169,68.11531],[64.2659,68.10635],[64.22401,68.10789],[64.20204,68.0997],[64.19174,68.10302],[64.18281,68.0979],[64.17114,68.09816],[64.16221,68.09227],[64.12994,68.08868],[64.10865,68.08919],[64.09629,68.08535],[64.11209,68.0815],[64.10865,68.07843],[64.07775,68.08022],[64.09286,68.07433],[64.08599,68.0692],[64.06608,68.06612],[64.03655,68.05226],[64.0139,68.05406],[63.9727,68.04893],[63.96789,68.04688],[63.97476,68.04379],[63.96995,68.04046],[63.93974,68.04071],[63.92051,68.03583],[63.89717,68.03301],[63.88824,68.03455],[63.88412,68.03121],[63.89442,67.99934],[63.91227,67.97128],[63.92738,67.96716],[63.93905,67.9401],[63.91777,67.93313],[63.92532,67.92256],[63.94866,67.91223],[64.00291,67.90164],[64.00566,67.89828],[63.99192,67.89312],[63.96926,67.89053],[63.95828,67.87321],[63.93425,67.8714],[63.93974,67.867],[63.92189,67.8551],[63.93219,67.85173],[63.92601,67.84474],[63.91983,67.84371],[63.91914,67.84086],[63.90266,67.83956],[63.86009,67.82272],[63.80035,67.8305],[63.77357,67.81287],[63.78181,67.80691],[63.76739,67.79653],[63.7564,67.79835],[63.74748,67.79523],[63.72413,67.79471],[63.71795,67.79601],[63.70971,67.79393],[63.71727,67.78848],[63.71315,67.77732],[63.69941,67.77654],[63.71864,67.76173],[63.73786,67.75394],[63.7564,67.75108],[63.76258,67.74562],[63.78593,67.74822],[63.78936,67.74588],[63.78387,67.74275],[63.75778,67.74093],[63.76464,67.73703],[63.75846,67.73365],[63.75709,67.72168],[63.73512,67.72793],[63.72619,67.73391],[63.71795,67.73209],[63.70834,67.73417],[63.61976,67.72949],[63.5765,67.73677],[63.55934,67.73521],[63.55384,67.72897],[63.50441,67.73365],[63.49273,67.74718],[63.47007,67.76147],[63.44673,67.76849],[63.42201,67.76849],[63.38974,67.75575],[63.36296,67.75705],[63.3403,67.75082],[63.33343,67.73989],[63.31901,67.73963],[63.32038,67.7222],[63.3094,67.71543],[63.27987,67.71621],[63.23249,67.71152],[63.23043,67.70371],[63.21395,67.70293],[63.20297,67.70006],[63.18306,67.70006],[63.16314,67.6972],[63.14529,67.68703],[63.13842,67.67634],[63.11233,67.64816],[63.09516,67.64424],[63.06015,67.62386],[62.98393,67.60843],[62.94204,67.60869],[62.88436,67.59352],[62.90908,67.55239],[62.88642,67.52563],[62.85072,67.52301],[62.83699,67.51434],[62.83287,67.5083],[62.8466,67.49648],[62.84866,67.49148],[62.87956,67.47729],[62.89054,67.4686],[62.89054,67.46387],[62.90222,67.45044],[62.90496,67.44386],[62.89054,67.42594],[62.89947,67.40986],[62.89466,67.403],[62.89329,67.3935],[62.88505,67.38795],[62.85965,67.38215],[62.85484,67.37766],[62.86514,67.36973],[62.83287,67.36682],[62.45933,67.27416],[61.8544,67.11981],[61.82624,67.11554],[61.80221,67.10673],[61.77955,67.11127],[61.75758,67.10379],[61.74179,67.10299],[61.72462,67.09711],[61.73492,67.0931],[61.73561,67.08802],[61.71295,67.08535],[61.70677,67.08294],[61.71089,67.08054],[61.72737,67.07973],[61.72943,67.07599],[61.70814,67.06796],[61.70196,67.05083],[61.70608,67.03476],[61.70265,67.03075],[61.66008,67.0211],[61.63604,67.02244],[61.62712,67.02003],[61.64634,67.01306],[61.64016,67.00662],[61.60789,67.00903],[61.59004,67.00206],[61.57493,67.0042],[61.55365,67.01708],[61.5303,67.00662],[61.50558,67.00152],[61.50077,67.0026],[61.49528,67.00528],[61.50009,67.01225],[61.47674,67.0093],[61.45614,67.01198],[61.44928,66.99911],[61.44447,66.99213],[61.4273,66.98972],[61.40327,66.98327],[61.39091,66.98381],[61.38542,66.97817],[61.37855,66.97924],[61.371,66.99133],[61.38061,66.9975],[61.35589,66.99938],[61.3401,67.00125],[61.3298,66.99911],[61.31538,67.00233],[61.13548,67.00206],[60.15838,66.99991],[60.13092,66.99052],[60.07667,66.9822],[60.03959,66.96904],[59.98741,66.96447],[59.94003,66.95426],[59.93179,66.9556],[59.92698,66.9642],[59.9263,66.97656],[59.93042,66.98005],[59.95307,66.98005],[59.96818,66.97629],[59.97299,66.98005],[59.97161,66.98623],[59.96269,66.99133],[59.97436,66.99884],[59.96818,67.00286],[59.47792,67.00447],[58.8311,67.0042],[58.49533,67.00903],[58.04214,67.0152],[57.47497,67.02163],[57.08976,67.02351],[56.34269,67.02646],[56.0852,67.02619],[55.56266,67.02539],[54.62745,67.01949],[53.94424,67.01118],[53.76022,67.00903],[53.46221,67.027],[52.86758,67.06288],[52.16995,67.10138],[52.12738,67.08348],[52.07382,67.07733],[52.08343,67.07091],[52.06489,67.06341],[52.05734,67.05244],[52.03056,67.05539],[52.01202,67.0511],[52.02232,67.04602],[52.04292,67.04494],[52.04429,67.03048],[52.01683,67.02485],[51.98867,67.02512],[51.96395,67.01922],[51.94198,67.01761],[51.93855,67.01386],[51.94335,67.00662],[51.93031,67.00045],[51.83761,66.99964],[51.81495,66.99508],[51.86508,66.99589],[51.87057,66.99294],[51.8637,66.98972],[51.81564,66.98381],[51.82663,66.98139],[51.8486,66.9822],[51.84585,66.97307],[51.82594,66.96125],[51.81976,66.94781],[51.80671,66.94646],[51.78062,66.95399],[51.76208,66.95399],[51.75178,66.94888],[51.75796,66.94431],[51.77787,66.94458],[51.78749,66.94216],[51.77032,66.93328],[51.77307,66.92037],[51.76345,66.91471],[51.75796,66.92413],[51.75109,66.92817],[51.73599,66.9279],[51.71745,66.92117],[51.7044,66.92064],[51.67213,66.93059],[51.6378,66.94539],[51.59797,66.9513],[51.54304,66.94861],[51.52862,66.93759],[51.51283,66.92467],[51.4936,66.91714],[51.51283,66.90987],[51.52038,66.89128],[51.54167,66.88212],[51.52725,66.87457],[51.53411,66.86108],[51.50871,66.85325],[51.49292,66.83759],[51.49772,66.82408],[51.50802,66.82003],[51.51763,66.80705],[51.53617,66.80056],[51.54716,66.79055],[51.54579,66.77702],[50.88867,66.61239],[50.10932,66.41152],[49.45426,66.23699],[49.01207,66.11551],[49.08897,65.22938],[49.63829,65.2883],[49.75914,65.17467],[49.94522,65.04375],[50.21438,64.85448],[50.24116,64.82937],[50.50689,64.79372],[50.36338,64.51862],[49.91844,64.55906],[49.89852,64.54814],[49.55246,64.57675],[49.47898,64.42333],[48.97224,64.47812],[48.90976,64.33693],[48.89877,64.33009],[48.8713,64.33158],[48.5424,64.36754],[48.46412,64.21295],[48.20594,64.22638],[48.18191,64.2431],[48.15101,64.29824],[48.16062,64.34288],[47.99171,64.34466],[47.81456,64.34882],[47.53372,64.34971],[47.37236,64.35477],[47.11624,64.34436],[46.9535,64.3402],[46.69189,64.32384],[46.56143,64.31105],[46.3932,64.25921],[46.36917,64.27024],[46.31218,64.25324],[45.84869,64.28156],[45.40512,64.17618],[45.58639,64.06379],[45.80749,64.00065],[45.93452,63.95456],[46.00524,63.95215],[46.08764,63.94159],[46.11854,63.94702],[46.19476,63.93918],[46.39389,63.90598],[46.43508,63.88634],[46.58203,63.83521],[46.66992,63.81098],[46.76055,63.78127],[46.86424,63.71567],[46.91024,63.67611],[46.93908,63.64016],[46.9947,63.59592],[46.97753,63.58828],[46.98646,63.58126],[47.00706,63.58553],[47.005,63.51764],[46.9384,63.45173],[46.94801,63.42379],[46.94046,63.34904],[47.03178,63.29232],[47.05238,63.25372],[47.11074,63.24754],[47.16499,63.24537],[47.23159,63.21939],[47.27279,63.20733],[47.33734,63.18101],[47.42317,63.15931],[47.4781,63.15373],[47.56187,63.15032],[47.54402,63.11308],[47.52822,63.1106],[47.52891,63.07828],[47.52548,63.05153],[47.45407,62.98861],[47.41424,62.96521],[47.4472,62.96521],[47.31262,62.92211],[47.23503,62.89052],[47.07366,62.83602],[47.12173,62.7764],[47.24395,62.63534],[47.24121,62.52752],[47.23159,62.34196],[47.39776,62.33494],[47.39158,62.18216],[47.63397,62.18152],[47.65525,62.33144],[48.01231,62.31868],[48.23684,62.31389],[48.32679,62.30815],[48.29933,62.47553],[48.25607,62.50344],[48.35083,62.73491],[48.67973,62.70218],[48.74702,62.85514],[49.64103,62.77201],[49.37873,62.13695],[49.29084,62.14465],[49.28741,62.11448],[49.27574,62.10902],[49.23454,62.10677],[49.04983,61.65892],[49.51194,61.61194],[49.32449,61.1588],[49.12262,61.17569],[48.95645,61.11571],[48.92898,61.13959],[48.47923,61.02903],[48.42018,60.83922],[48.55819,60.55255],[48.49433,60.52486],[48.51356,60.51168],[48.51425,60.49646],[48.49914,60.47887],[48.55957,60.46026],[48.60763,60.43215],[48.62411,60.4291],[48.63235,60.42368],[48.60763,60.41554],[48.55613,60.41893],[48.53279,60.39995],[48.6763,60.39045],[48.6811,60.40062],[48.73809,60.37178],[48.78341,60.35481],[48.77105,60.31538],[48.6811,60.28068],[48.66325,60.2657],[48.62274,60.25037],[48.49296,60.19547],[48.47236,60.1309],[48.48335,60.02747],[48.49983,60.0206],[48.50326,59.91063],[48.51081,59.88101],[48.53141,59.70794],[49.10888,59.6608],[49.04228,59.47961],[49.11163,59.47891],[49.15557,59.51412],[49.20707,59.49077],[49.22493,59.48972],[49.22424,59.47333],[49.36775,59.46705],[49.3547,59.40805],[49.58061,59.39127],[49.55932,59.32898],[49.52156,59.24657],[49.53872,59.23252],[49.52499,59.22198],[49.71725,59.20019],[49.78385,59.2262],[49.79347,59.21812],[49.81132,59.22093],[49.81475,59.21812],[49.81063,59.20406],[49.81544,59.19632],[49.82299,59.20933],[49.86625,59.36189],[49.83123,59.36504],[49.87518,59.48275],[49.79141,59.48658],[49.86076,59.65768],[49.97268,59.65976],[50.00976,59.67571],[50.07019,59.67016],[50.08598,59.68091],[50.02624,59.70932],[50.00427,59.71244],[49.97406,59.73356],[49.97406,59.75743],[49.98642,59.7799],[50.25901,59.75328],[50.28305,59.80512],[50.39634,59.84378],[50.45951,59.83446],[50.50552,59.8424],[50.73417,59.87377],[50.77949,59.86274],[50.82412,59.86516],[50.8715,59.88549],[50.8612,59.90684],[50.92575,59.92508],[50.94909,59.94779],[51.00196,59.99486],[51.01638,60.00138],[51.03012,60.01546],[51.072,60.03776],[51.10702,60.04496],[51.13105,60.03981],[51.17912,60.0525],[51.43043,59.99417],[51.47163,59.92611],[51.48605,59.92508],[51.4991,59.9151],[51.53686,59.93128],[51.57394,59.93988],[51.63299,59.99761],[51.67625,60.03227],[51.74354,60.06792],[51.77444,60.0871],[51.79985,60.10901],[51.88568,60.21526],[51.96464,60.27149],[51.99897,60.28987],[52.06695,60.31198],[52.44049,60.18762],[52.99118,60.15449],[53.38325,60.15825],[53.42239,60.22719],[53.47457,60.21185],[53.52058,60.18113],[53.56933,60.16166],[53.62907,60.12201],[53.684,60.02404],[53.68537,60.01168],[53.67919,60.00001],[53.63868,59.75985],[53.60572,59.68923],[53.46565,59.69997],[53.45397,59.69477],[53.40591,59.56911],[53.37707,59.48414],[53.37295,59.46461],[53.32763,59.44507],[53.2418,59.38113],[53.22944,59.36189],[53.22876,59.33984],[53.37776,59.16044],[53.40042,59.1615],[53.4066,59.14741],[53.44848,59.14988],[53.45123,59.14107],[53.46771,59.14283],[53.47732,59.15023],[53.50479,59.15481],[53.55148,59.14565],[53.72863,59.12275],[53.69361,59.15375],[53.73207,59.18296],[53.82751,59.11183],[53.87214,59.12628],[53.90029,59.08785],[53.91471,59.08397],[53.88588,59.06668],[53.86596,59.03348],[53.78082,59.01157],[53.76297,58.97833],[53.77121,58.93654],[53.8076,58.88726],[53.80073,58.86241],[53.82408,58.83826],[53.87146,58.81658],[53.92982,58.7988],[53.92227,58.77994],[53.94287,58.77852],[53.92707,58.75894],[53.88931,58.75217],[53.8385,58.73899],[53.8227,58.72438],[53.78219,58.72188],[53.77121,58.70262],[53.74717,58.69799],[53.73207,58.68907],[53.76915,58.65301],[53.70254,58.60332],[53.73069,58.57612],[53.7767,58.4962],[53.79112,58.46282],[53.78425,58.45348],[53.78082,58.41178],[53.80828,58.38731],[53.8282,58.34518],[53.85429,58.34265],[53.89205,58.31309],[53.86047,58.28098],[53.8282,58.26256],[53.79798,58.24955],[53.79318,58.23257],[53.83506,58.20689],[53.89686,58.18482],[53.90579,58.17794],[53.88931,58.16599],[53.92913,58.15259],[53.94287,58.13048],[53.94355,58.08259],[53.98269,58.07279],[54.08294,58.003],[54.08363,57.98699],[54.13307,57.96041],[54.09118,57.90682],[54.09805,57.89222],[54.13719,57.86922],[54.13375,57.86703],[54.14199,57.85827],[54.13169,57.84182],[54.14131,57.83634],[54.13375,57.82318],[54.14199,57.80892],[54.13032,57.80599],[54.14543,57.78586],[54.15573,57.78916],[54.16397,57.77964],[54.13513,57.75437],[54.11178,57.74228],[54.13307,57.72908],[54.14131,57.71551],[54.16191,57.71515],[54.15641,57.70378],[54.12277,57.70451],[54.11727,57.70157],[54.11933,57.69424],[54.10629,57.69607],[54.06715,57.67772],[54.07058,57.64797],[54.0596,57.64576],[54.06715,57.64062],[54.0905,57.64062],[54.12551,57.62334],[54.13101,57.61672],[54.11796,57.60385],[54.08638,57.61157],[54.05891,57.60422],[54.05822,57.59502],[54.04174,57.59207],[54.02046,57.59796],[53.99231,57.58803],[53.98613,57.56778],[54.0026,57.5571],[54.01153,57.56373],[54.02938,57.5582],[54.04174,57.56778],[54.0644,57.56004],[54.06646,57.5442],[54.05548,57.54125],[54.05754,57.53425],[54.04106,57.52467],[54.06166,57.51545],[54.06646,57.52725],[54.08363,57.52983],[54.08981,57.52541],[54.10491,57.52799],[54.11727,57.5372],[54.13513,57.53057],[54.1468,57.53167],[54.17495,57.5243],[54.16946,57.49627],[54.14405,57.48151],[54.17907,57.47818],[54.19418,57.46748],[54.24087,57.46378],[54.27452,57.46563],[54.27932,57.45529],[54.26971,57.44236],[54.27589,57.43534],[54.28894,57.43866],[54.29855,57.43423],[54.28688,57.42831],[54.22714,57.41722],[54.20654,57.40206],[54.15435,57.40058],[54.12483,57.38023],[54.15298,57.37245],[54.12414,57.35209],[54.12483,57.33096],[54.13993,57.32615],[54.14886,57.31688],[54.18457,57.31502],[54.2086,57.29945],[54.2292,57.30464],[54.3116,57.30353],[54.30679,57.29908],[54.31572,57.29351],[54.30954,57.28869],[54.33013,57.2783],[54.32533,57.26159],[54.29718,57.24525],[54.32258,57.2315],[54.32395,57.22332],[54.35348,57.22146],[54.3576,57.21217],[54.31709,57.18985],[54.34249,57.17385],[54.32807,57.16715],[54.33288,57.16082],[54.34661,57.15858],[54.34661,57.15114],[54.32945,57.14592],[54.32945,57.12095],[54.31709,57.11872],[54.31503,57.11201],[54.29786,57.11536],[54.29168,57.11126],[54.3116,57.09485],[54.31228,57.08515],[54.34799,57.0747],[54.3473,57.06873],[54.38644,57.06015],[54.40086,57.04147],[54.43588,57.034],[54.33494,56.97455],[54.22302,56.99288],[54.16053,56.97978],[54.10148,56.87899],[54.09256,56.80764],[54.08157,56.80839],[54.05891,56.79223],[54.0541,56.77831],[54.00123,56.75084],[53.96278,56.75573],[53.93531,56.76853],[53.92021,56.78508],[53.89686,56.78207],[53.86047,56.81892],[53.80073,56.81892],[53.79592,56.79862],[53.8282,56.80238],[53.80554,56.78019],[53.83094,56.75836],[53.84948,56.75799],[53.85223,56.74406],[53.84674,56.72221],[53.88382,56.71845],[53.88244,56.68301],[53.90235,56.68112],[53.88588,56.66717],[53.85292,56.65924],[53.84262,56.64414],[53.85635,56.6313],[53.84262,56.63168],[53.82957,56.62224],[53.83781,56.59843],[53.85978,56.5939],[53.86734,56.6041],[53.84742,56.60713],[53.84674,56.61808],[53.86734,56.62148],[53.8797,56.62677],[53.8742,56.63999],[53.88999,56.64603],[53.8948,56.65433],[53.90579,56.6566],[53.93806,56.64339],[53.94973,56.6483],[53.96141,56.64112],[53.98063,56.64037],[53.98201,56.65735],[53.99848,56.66301],[54.01359,56.67245],[54.02183,56.66981],[54.02938,56.65283],[54.09256,56.65283],[54.07127,56.64528],[54.08226,56.63093],[54.06646,56.62602],[54.05616,56.60901],[54.04174,56.60259],[54.03144,56.5818],[54.03762,56.57953],[54.05685,56.59012],[54.06921,56.57726],[54.09324,56.57385],[54.10491,56.56478],[54.10629,56.54888],[54.11659,56.53639],[54.18319,56.53109],[54.19075,56.50722],[54.21134,56.49396],[54.20379,56.48031],[54.21684,56.46704],[54.24362,56.46021],[54.3267,56.47917],[54.33631,56.46287],[54.3473,56.45528],[54.34593,56.40554],[54.36378,56.38996],[54.36241,56.37779],[54.37133,56.37323],[54.37339,56.37817],[54.39468,56.37589],[54.44274,56.35498],[54.45442,56.34546],[54.45922,56.35421],[54.45098,56.37095],[54.46609,56.38426],[54.4654,56.40592],[54.48532,56.41428],[54.49081,56.45072],[54.51141,56.46931],[54.52446,56.47311],[54.5224,56.48524],[54.53064,56.49017],[54.53064,56.50116],[54.54986,56.522],[54.58557,56.53374],[54.59861,56.53222],[54.60685,56.52654],[54.5993,56.5201],[54.60891,56.50457],[54.63089,56.50647],[54.66178,56.49585],[54.68444,56.4951],[54.68925,56.47842],[54.70848,56.45945],[54.72839,56.43137],[54.78675,56.4325],[54.79637,56.42795],[54.79705,56.42491],[54.81079,56.41618],[54.83001,56.41428],[54.84375,56.42187],[54.85267,56.41845],[54.85061,56.40896],[54.86709,56.40288],[54.87464,56.39338],[54.91653,56.38502],[54.92958,56.37703],[54.96254,56.33024],[54.99412,56.32834],[55.00167,56.33062],[55.02433,56.32643],[55.03189,56.34242],[55.05661,56.34699],[55.0724,56.34204],[55.08476,56.35079],[55.1033,56.35003],[55.11016,56.35536],[55.13145,56.35269],[55.14999,56.32643],[55.15274,56.31006],[55.18226,56.30587],[55.19943,56.30701],[55.20355,56.32719],[55.18913,56.35878],[55.21453,56.37057],[55.22964,56.35688],[55.2523,56.33024],[55.26603,56.33024],[55.28251,56.32262],[55.31341,56.32224],[55.32371,56.31463],[55.38482,56.32567],[55.38688,56.32072],[55.40267,56.32186],[55.42808,56.33214],[55.46585,56.33405],[55.52009,56.36106],[55.53314,56.37741],[55.55923,56.38958],[55.58807,56.39528],[55.63751,56.4025],[55.64094,56.39794],[55.67047,56.40402],[55.70068,56.41732],[55.71441,56.43402],[55.75286,56.43858],[55.78582,56.44845],[55.82153,56.43023],[55.84968,56.42263],[55.88676,56.43478],[55.87646,56.44427],[55.89294,56.45414],[55.91972,56.45945],[55.93689,56.44427],[55.94101,56.42719],[55.95817,56.39984],[55.95474,56.38616],[55.96229,56.37057],[56.00349,56.35193],[56.01997,56.33899],[56.04057,56.33747],[56.06117,56.32491],[56.06323,56.31501],[56.09275,56.29444],[56.13739,56.29711],[56.13739,56.3112],[56.16828,56.31006],[56.17172,56.31882],[56.20399,56.3192],[56.20811,56.32719],[56.21566,56.32681],[56.22528,56.31539],[56.25206,56.31501],[56.28845,56.30777],[56.30218,56.331],[56.32484,56.34052],[56.32759,56.36144],[56.37977,56.36258],[56.36741,56.38882],[56.40655,56.4044],[56.42646,56.38198],[56.42715,56.37589],[56.48551,56.3641],[56.50062,56.38046],[56.51573,56.37741],[56.53976,56.39566],[56.57409,56.38692],[56.54388,56.36791],[56.54457,56.35536],[56.51367,56.34432],[56.548,56.31425],[56.57341,56.29977],[56.61666,56.26928],[56.66748,56.27233],[56.66404,56.26356],[56.651,56.25632],[56.65374,56.24335],[56.68396,56.22923],[56.7382,56.22694],[56.74507,56.22121],[56.76361,56.2235],[56.76635,56.21319],[56.75399,56.20861],[56.77047,56.19486],[56.7794,56.17805],[56.79382,56.17728],[56.80412,56.1639],[56.83364,56.16046],[56.84669,56.14861],[56.85699,56.13139],[56.88034,56.13101],[56.8872,56.11149],[56.90368,56.11378],[56.93252,56.10881],[56.97166,56.11914],[57.00874,56.13369],[57.04444,56.12871],[57.06573,56.15817],[57.08564,56.16314],[57.15705,56.16275],[57.16941,56.15893],[57.1907,56.17155],[57.20649,56.16925],[57.21061,56.17537],[57.20787,56.17919],[57.23808,56.19295],[57.23259,56.19715],[57.21267,56.19677],[57.21817,56.20097],[57.21473,56.21396],[57.23053,56.22465],[57.22709,56.23037],[57.21748,56.22961],[57.19894,56.23724],[57.20031,56.24945],[57.22572,56.25326],[57.24494,56.26738],[57.30125,56.27233],[57.29095,56.28339],[57.29782,56.29101],[57.2937,56.29863],[57.30606,56.30282],[57.30468,56.31577],[57.32048,56.31691],[57.35,56.30968],[57.35961,56.31387],[57.35549,56.3211],[57.39738,56.33138],[57.41043,56.34166],[57.43652,56.30815],[57.41317,56.28377],[57.41729,56.25403],[57.45025,56.24335],[57.45986,56.21586],[57.50656,56.19371],[57.49145,56.16161],[57.47497,56.12795],[57.52304,56.09732],[57.60131,56.08889],[57.64663,56.09579],[57.66586,56.12412],[57.69744,56.13636],[57.73864,56.13177],[57.77298,56.14325],[57.89108,56.14401],[57.9103,56.12871],[57.90344,56.12106],[57.92404,56.10651],[58.07647,56.1134],[58.10257,56.1356],[58.13415,56.13101],[58.17398,56.13942],[58.24951,56.10421],[58.30169,56.10421],[58.31543,56.11876],[58.34976,56.11876],[58.34426,56.09119],[58.39096,56.08736],[58.42117,56.12182],[58.4761,56.12182],[58.50631,56.17384],[58.58596,56.17308],[58.5997,56.13942],[58.62854,56.13713],[58.64364,56.12106],[58.70819,56.11723],[58.71231,56.09808],[58.73153,56.08506],[58.76724,56.08966],[58.83178,56.08583],[58.83316,56.07433],[58.87573,56.07433],[58.89221,56.059],[58.9746,56.07893],[59.0419,56.13713],[59.04052,56.16696],[59.06318,56.1662],[59.09614,56.15128],[59.15107,56.14631],[59.16412,56.13139],[59.17785,56.13522],[59.18541,56.14134],[59.24308,56.12948],[59.26574,56.12871],[59.26574,56.14172],[59.28222,56.14631],[59.2781,56.1574],[59.31518,56.15396],[59.33509,56.15931],[59.33235,56.14172],[59.32617,56.14057],[59.31518,56.14746],[59.31793,56.13636],[59.32754,56.13024],[59.31861,56.12641],[59.32479,56.11646],[59.34265,56.11149],[59.33784,56.10957],[59.32754,56.10957],[59.32754,56.10689],[59.33509,56.10153],[59.32205,56.10115],[59.31449,56.08544],[59.3193,56.08506],[59.32754,56.08736],[59.33509,56.08621],[59.33509,56.08353],[59.3296,56.08084],[59.31587,56.06743],[59.31312,56.05823],[59.30145,56.05823],[59.30076,56.0567],[59.30831,56.05325],[59.30419,56.04059],[59.28497,56.03484],[59.28497,56.04328],[59.27879,56.04251],[59.27536,56.03637],[59.25476,56.03445],[59.24514,56.03752],[59.23965,56.03522],[59.24789,56.03177],[59.19296,56.02486],[59.22386,55.98686],[59.22317,55.95688],[59.2472,55.95573],[59.25613,55.9442],[59.24377,55.92843],[59.23896,55.90573],[59.21974,55.88494],[59.2163,55.86568],[59.22866,55.84795],[59.19639,55.81903],[59.13665,55.81517],[59.1394,55.79201],[59.19845,55.79278],[59.21768,55.78892],[59.26506,55.7924],[59.28772,55.78468],[59.31655,55.78468],[59.32754,55.75687],[59.27536,55.70893],[59.2939,55.69964],[59.28703,55.67835],[59.30488,55.6741],[59.32685,55.62722],[59.29115,55.61171],[59.28703,55.60123],[59.26574,55.60046],[59.263,55.60317],[59.25407,55.60162],[59.25201,55.58416],[59.27742,55.57795],[59.30694,55.59541],[59.35569,55.61287],[59.38659,55.61636],[59.38865,55.62644],[59.38591,55.64156],[59.40376,55.64349],[59.47242,55.63884],[59.48135,55.62334],[59.47448,55.59658],[59.54521,55.59347],[59.59121,55.60434],[59.63722,55.60007],[59.65438,55.58998],[59.63859,55.55932],[59.60151,55.55194],[59.57473,55.51852],[59.49852,55.49908],[59.46556,55.48002],[59.4326,55.47885],[59.42367,55.4948],[59.39827,55.49869],[59.37629,55.49636],[59.37629,55.48079],[59.35913,55.48157],[59.28497,55.46523],[59.26368,55.46873],[59.1806,55.46834],[59.18335,55.44732],[59.17442,55.43057],[59.14489,55.41576],[59.15039,55.40251],[59.16481,55.39627],[59.17854,55.38652],[59.17511,55.34593],[59.18541,55.33851],[59.17305,55.33656],[59.13459,55.34164],[59.12361,55.335],[59.11537,55.32328],[59.09889,55.32797],[59.08996,55.32523],[59.10095,55.31351],[59.07966,55.29553],[59.06662,55.29749],[59.04396,55.28028],[59.02954,55.28576],[59.01992,55.26972],[58.99589,55.25525],[58.99177,55.26698],[58.96705,55.27442],[58.96431,55.31351],[58.91761,55.32406],[58.84414,55.32797],[58.83865,55.31078],[58.83728,55.29553],[58.92379,55.29553],[58.93341,55.29045],[58.92997,55.28068],[58.91693,55.27598],[58.7281,55.28771],[58.70338,55.27872],[58.68759,55.23137],[58.71093,55.22079],[58.75076,55.21609],[58.78028,55.20473],[58.73291,55.1518],[58.72398,55.14042],[58.7178,55.13689],[58.70956,55.15023],[58.69651,55.15415],[58.70475,55.15925],[58.70132,55.17886],[58.65119,55.1671],[58.63815,55.17651],[58.64158,55.19219],[58.61549,55.19454],[58.6148,55.18474],[58.60176,55.182],[58.57841,55.18749],[58.57017,55.17965],[58.57223,55.17377],[58.59832,55.16161],[58.58528,55.14788],[58.62991,55.13964],[58.63678,55.14591],[58.72467,55.11844],[58.76724,55.06932],[58.79196,55.05752],[58.82766,55.05044],[58.82217,55.04022],[58.76174,55.01424],[58.72329,54.97524],[58.67248,54.95593],[58.64502,54.96657],[58.60244,54.96224],[58.55712,54.97485],[58.52623,54.97485],[58.50357,54.98904],[58.52829,55.00637],[58.5427,55.02684],[58.52829,55.03392],[58.50837,55.02802],[58.47198,55.004],[58.45344,54.9977],[58.42804,55.01896],[58.44108,55.04808],[58.42804,55.06893],[58.39302,55.07089],[58.39645,55.08819],[58.34701,55.10548],[58.36212,55.11922],[58.36418,55.13375],[58.35388,55.14552],[58.29963,55.15925],[58.26736,55.1718],[58.24195,55.16631],[58.23715,55.15612],[58.21312,55.14748],[58.19114,55.14631],[58.17947,55.13257],[58.14033,55.12747],[58.1369,55.11687],[58.15887,55.10587],[58.1369,55.09408],[58.152,55.08308],[58.17741,55.09565],[58.20213,55.08858],[58.19252,55.06618],[58.15956,55.05831],[58.16574,55.04651],[58.1575,55.03786],[58.18634,55.03392],[58.16436,55.02566],[58.15338,55.01857],[58.09501,55.0166],[58.13346,54.99297],[58.10737,54.98825],[58.10394,54.98431],[58.12797,54.97485],[58.12866,54.98194],[58.14582,54.98076],[58.11904,54.94094],[58.10119,54.94252],[58.09845,54.94962],[58.08883,54.94725],[58.07579,54.93306],[58.04008,54.91411],[58.00643,54.90662],[57.98309,54.92674],[57.96249,54.92319],[57.93296,54.94607],[57.96661,54.96933],[58.01467,54.9847],[58.02635,54.99337],[58.02429,55.00282],[58.04077,55.03471],[58.02635,55.04258],[58.02635,55.0528],[58.04489,55.05477],[58.04489,55.065],[58.03253,55.06932],[58.00643,55.08858],[57.99751,55.10115],[57.99751,55.11176],[57.99339,55.12236],[57.99957,55.15768],[58.01124,55.16318],[58.03184,55.15533],[58.05175,55.15651],[58.11561,55.19454],[58.1314,55.20904],[58.13072,55.22079],[58.06961,55.22902],[58.0442,55.24037],[58.01536,55.27481],[57.99682,55.28537],[57.93846,55.29632],[57.79907,55.30452],[57.76817,55.3014],[57.70706,55.30531],[57.63427,55.30218],[57.5457,55.32992],[57.52441,55.34164],[57.45918,55.32211],[57.39532,55.31156],[57.36648,55.29162],[57.33696,55.27246],[57.32254,55.2572],[57.30949,55.25759],[57.28477,55.26777],[57.24769,55.26425],[57.24014,55.25329],[57.25662,55.22471],[57.2422,55.21374],[57.21611,55.23685],[57.21061,55.21335],[57.23259,55.18435],[57.25524,55.17769],[57.25868,55.16984],[57.21542,55.13807],[57.15293,55.11883],[57.13371,55.08858],[57.13096,55.06971],[57.14744,55.06303],[57.17765,55.03235],[57.17765,55.01621],[57.19619,55.00637],[57.18727,54.99888],[57.18864,54.97643],[57.21061,54.97643],[57.26005,54.95908],[57.23739,54.93108],[57.21199,54.89674],[57.16529,54.87384],[57.15705,54.86396],[57.13508,54.85724],[57.14263,54.84894],[57.15637,54.85052],[57.20169,54.80978],[57.22229,54.80939],[57.21679,54.79593],[57.24288,54.77257],[57.33215,54.74999],[57.36717,54.7377],[57.38571,54.72105],[57.46742,54.71391],[57.51754,54.69288],[57.51274,54.68455],[57.48733,54.67105],[57.52098,54.65476],[57.59857,54.6774],[57.62397,54.62059],[57.67067,54.59991],[57.70774,54.59076],[57.76748,54.56847],[57.76542,54.50314],[57.82104,54.49038],[57.9,54.42891],[57.90275,54.41972],[57.9515,54.40214],[57.99408,54.39934],[58.01124,54.40134],[58.10394,54.44928],[58.15818,54.49915],[58.16711,54.50912],[58.22616,54.5139],[58.28315,54.51988],[58.30032,54.53622],[58.37791,54.55932],[58.39576,54.55653],[58.42117,54.56091],[58.43284,54.55454],[58.43902,54.54697],[58.46168,54.53941],[58.53858,54.49477],[58.57223,54.47163],[58.59764,54.46205],[58.64707,54.47043],[58.71505,54.48041],[58.72055,54.50394],[58.73977,54.53462],[58.76037,54.54896],[58.8153,54.55215],[58.84552,54.56927],[58.90251,54.57206],[58.91418,54.5824],[58.95675,54.58917],[58.98353,54.60906],[59.00413,54.61502],[59.02748,54.63053],[59.0728,54.6492],[59.09065,54.64364],[59.10575,54.6341],[59.13047,54.63291],[59.15176,54.62576],[59.16961,54.62735],[59.18541,54.62218],[59.20806,54.62417],[59.26643,54.61264],[59.2678,54.62337],[59.29321,54.63331],[59.28703,54.65596],[59.32617,54.68177],[59.40376,54.7143],[59.43946,54.72224],[59.44633,54.73691],[59.48341,54.76425],[59.51774,54.7797],[59.51774,54.80899],[59.52804,54.82047],[59.53422,54.8355],[59.54727,54.84736],[59.60151,54.8687],[59.61593,54.90385],[59.65782,54.91017],[59.66056,54.90306],[59.71687,54.87976],[59.75189,54.88095],[59.77935,54.8608],[59.80064,54.85329],[59.80682,54.85566],[59.81437,54.84973],[59.84115,54.84538],[59.859,54.85289],[59.87617,54.83985],[59.90844,54.86831],[60.00251,54.86435],[59.98878,54.85012],[59.94621,54.82956],[59.93248,54.81453],[59.92012,54.78999],[59.94346,54.76861],[59.89814,54.70756],[59.89677,54.68455],[59.8851,54.66946],[59.87754,54.64404],[59.85145,54.61383],[59.82261,54.59036],[59.74502,54.55175],[59.71138,54.54419],[59.70039,54.53223],[59.67773,54.51749],[59.67567,54.49796],[59.66812,54.49437],[59.664,54.48081],[59.68254,54.46445],[59.70451,54.46205],[59.71824,54.45606],[59.73266,54.45766],[59.73815,54.45367],[59.72991,54.39814],[59.67224,54.33854],[59.71618,54.32773],[59.74296,54.31652],[59.76562,54.3013],[59.78073,54.26923],[59.78965,54.23834],[59.78485,54.23072],[59.75601,54.21908],[59.71687,54.19779],[59.70245,54.18132],[59.70863,54.13911],[59.67292,54.1387],[59.65713,54.15238],[59.63104,54.1572],[59.52873,54.18574],[59.4944,54.18775],[59.40101,54.18534],[59.38865,54.17851],[59.34333,54.18534],[59.31449,54.19297],[59.29115,54.1568],[59.27192,54.14273],[59.25338,54.1053],[59.23622,54.06704],[59.21768,54.05455],[59.19433,54.03157],[59.18746,54.01503],[59.18952,53.99929],[59.13528,53.97224],[59.13459,53.96456],[59.10369,53.95649],[59.0879,53.96739],[59.04327,53.96982],[59.00207,53.95244],[58.95538,53.96901],[58.9183,53.9484],[58.92379,53.94355],[58.91418,53.93183],[58.9286,53.92577],[58.93753,53.92779],[58.95538,53.90797],[58.92242,53.88005],[58.91006,53.84766],[58.92105,53.82132],[58.9286,53.78686],[58.91418,53.76779],[58.88259,53.73937],[58.91143,53.69467],[58.90869,53.64667],[58.89221,53.63364],[58.84002,53.61084],[58.81736,53.57986],[58.81187,53.55009],[58.90388,53.54602],[58.90663,53.52357],[58.90457,53.50397],[58.89633,53.48559],[58.89221,53.46638],[58.8977,53.46434],[58.89839,53.41403],[58.89907,53.312],[58.89427,53.28081],[58.87229,53.27917],[58.87092,53.24056],[58.88259,53.20685],[58.89907,53.20932],[58.90937,53.15418],[58.91899,53.05483],[58.96362,53.05277],[58.99383,53.04492],[58.99108,53.02015],[58.85101,53.02634],[58.83728,53.02221],[58.86131,52.94491],[58.81942,52.93994],[58.8002,52.89482],[58.77479,52.87327],[58.75625,52.843],[58.759,52.81396],[58.77479,52.79528],[58.80226,52.69677],[58.78166,52.69594],[58.77754,52.6668],[58.75076,52.66055],[58.75076,52.61138],[58.77754,52.61138],[58.77822,52.59345],[58.8208,52.59428],[58.83316,52.56716],[58.83796,52.56633],[58.83934,52.52081],[58.77891,52.52207],[58.77204,52.47441],[58.80157,52.46814],[58.79814,52.43801],[58.85101,52.42587],[58.85444,52.44512],[58.90525,52.44261],[58.91418,52.44764],[58.99658,52.42712],[59.00482,52.41205],[58.98971,52.40451],[59.00825,52.37979],[59.00894,52.3605],[59.0213,52.34708],[59.05563,52.34331],[59.16893,52.27572],[59.21287,52.30134],[59.22454,52.3324],[59.2266,52.42126],[59.25064,52.43801],[59.24514,52.45266],[59.24858,52.45768],[59.2424,52.48236],[59.27124,52.48445],[59.28291,52.47901],[59.29664,52.48319],[59.31518,52.47148],[59.35089,52.47399],[59.39895,52.47358],[59.41612,52.48152],[59.41612,52.46395],[59.4532,52.45098],[59.48822,52.43382],[59.51019,52.40912],[59.54521,52.44052],[59.57473,52.44261],[59.66468,52.43633],[59.67636,52.42838],[59.67086,52.41582],[59.67292,52.40577],[59.73403,52.4221],[59.73472,52.43759],[59.74708,52.43885],[59.82605,52.47399],[59.84458,52.47065],[59.92012,52.42377],[59.99977,52.42126],[60.02517,52.41707],[60.04097,52.42629],[60.08972,52.41289],[60.16181,52.40241],[60.15976,52.2816],[60.17486,52.25849],[60.1474,52.24588],[60.12268,52.21938],[60.08079,52.21391],[60.05607,52.18193],[60.05607,52.17308],[60.02174,52.17393],[60.01419,52.16508],[59.96475,52.15076],[59.93385,52.08752],[59.90501,52.08246],[59.916,52.05882],[59.916,52.04024],[59.97436,52.02883],[60.00183,51.99376],[60.0032,51.97134],[59.99221,51.965],[60.01007,51.94003],[60.02929,51.93664],[60.03341,51.91377],[60.07461,51.88793],[60.05882,51.8697],[60.14396,51.8697],[60.14259,51.85995],[60.15632,51.85698],[60.15838,51.8731],[60.15564,51.87394],[60.16113,51.89259],[60.1474,51.89471],[60.14328,51.8998],[60.14396,51.907],[60.31631,51.83195],[60.42755,51.79884],[60.5175,51.79757],[60.5175,51.77336],[60.50102,51.77208],[60.46531,51.75891],[60.45158,51.73595],[60.43167,51.71894],[60.40008,51.7066],[60.39459,51.70745],[60.38772,51.70235],[60.35339,51.68915],[60.35888,51.67894],[60.37879,51.67468],[60.3939,51.66701],[60.39939,51.65594],[60.41175,51.65296],[60.41519,51.64785],[60.52642,51.6389],[60.53878,51.61886],[60.74821,51.61631],[60.93566,51.61503],[60.91026,51.5681],[60.90957,51.55444],[60.9336,51.52369],[60.94047,51.52241],[60.95283,51.49207],[60.99266,51.48822],[61.00227,51.46898],[61.02218,51.46384],[61.06407,51.4647],[61.09085,51.46726],[61.10664,51.44716],[61.13205,51.45614],[61.17874,51.45486],[61.20552,51.45999],[61.21719,51.44972],[61.23367,51.45144],[61.27761,51.43774],[61.31813,51.44245],[61.35108,51.44074],[61.36688,51.42661],[61.38885,51.42661],[61.39228,51.42019],[61.40945,51.41505],[61.42387,51.42233],[61.44584,51.41034],[61.47056,51.40948],[61.50283,51.40691],[61.51863,51.38549],[61.53579,51.34305],[61.54815,51.32331],[61.69029,51.25546],[61.56806,51.23698],[61.50695,51.02066],[61.48567,50.96145],[61.44859,50.80593],[60.85327,50.66861],[60.80932,50.65642],[60.74752,50.66426],[60.69877,50.66513],[60.55938,50.66034],[60.49209,50.66513],[60.46119,50.66382],[60.32661,50.67078],[60.15495,50.79942],[60.18653,50.83152],[60.03822,50.8506],[59.97299,50.77033],[59.98603,50.72385],[59.99565,50.67383],[59.96269,50.66077],[59.91119,50.6377],[59.87205,50.60938],[59.813,50.53525],[59.77523,50.54049],[59.61319,50.53088],[59.50882,50.49508],[59.51637,50.52827],[59.45663,50.54747],[59.46693,50.56928],[59.46556,50.58367],[59.56993,50.57277],[59.56581,50.58759],[59.56031,50.58672],[59.53559,50.60764],[59.50058,50.612],[59.4786,50.64162],[59.45114,50.64597],[59.41818,50.6377],[59.2987,50.65207],[59.28016,50.63291],[59.23484,50.66295],[59.20669,50.66687],[59.19227,50.67383],[59.16,50.66861],[59.11743,50.68514],[59.08927,50.67731],[59.03915,50.69036],[59.0316,50.68862],[58.98628,50.6921],[58.91281,50.69471],[58.87504,50.70037],[58.87916,50.70646],[58.85856,50.71733],[58.84826,50.73341],[58.84895,50.74775],[58.82148,50.74601],[58.805,50.76165],[58.78303,50.77511],[58.77754,50.78379],[58.80912,50.77945],[58.7796,50.81461],[58.7693,50.81721],[58.75762,50.81461],[58.65737,50.8094],[58.66355,50.8428],[58.68553,50.85017],[58.69583,50.84713],[58.68896,50.88527],[58.63403,50.87964],[58.59489,50.86924],[58.57772,50.93982],[58.6045,50.94718],[58.59489,50.97053],[58.63678,50.98653],[58.5894,51.05002],[58.52005,51.08368],[58.38272,51.07462],[58.3786,51.07764],[58.37104,51.12119],[58.36624,51.12636],[58.34152,51.1802],[58.3319,51.18149],[58.32435,51.1746],[58.31405,51.17159],[58.31337,51.16815],[58.32435,51.16685],[58.32092,51.16298],[58.31199,51.16039],[58.3168,51.15264],[58.31199,51.15221],[58.3065,51.15695],[58.30307,51.15437],[58.29277,51.15221],[58.29002,51.15867],[58.2859,51.15652],[58.27903,51.14532],[58.27217,51.14791],[58.27354,51.15394],[58.26805,51.15394],[58.2653,51.14317],[58.24607,51.14575],[58.23783,51.13714],[58.20213,51.12593],[58.21861,51.11214],[58.21037,51.09058],[58.17054,51.08282],[58.17741,51.07074],[58.17672,51.0647],[58.16436,51.06297],[58.12728,51.07074],[58.09364,51.0729],[58.08197,51.08541],[58.09227,51.1074],[58.08883,51.12162],[58.07167,51.12248],[58.05999,51.11343],[58.03665,51.11042],[58.01811,51.09403],[57.96936,51.09101],[57.94807,51.08627],[57.9309,51.10007],[57.91923,51.11817],[57.88765,51.10955],[57.87941,51.10179],[57.86842,51.10007],[57.85263,51.1061],[57.84851,51.11214],[57.82722,51.11473],[57.82104,51.12809],[57.81074,51.13886],[57.77229,51.13886],[57.75238,51.05607],[57.7565,50.97096],[57.74894,50.94371],[57.75993,50.92035],[57.74139,50.92164],[57.73452,50.9277],[57.71186,50.9277],[57.68714,50.91818],[57.68646,50.92727],[57.55943,50.93679],[57.5251,50.91558],[57.52372,50.90563],[57.51068,50.87704],[57.47428,50.87877],[57.41043,50.9],[57.38021,50.91905],[57.32597,50.94112],[57.32254,50.97053],[57.30812,50.97702],[57.31704,50.98307],[57.30606,50.99604],[57.30262,50.99344],[57.29095,51.00208],[57.2882,51.02325],[57.29507,51.0293],[57.28752,51.03966],[57.27859,51.03275],[57.24357,51.02628],[57.21885,51.04009],[57.2319,51.047],[57.20581,51.07333],[57.18795,51.10222],[57.18383,51.11516],[57.14332,51.09964],[57.14607,51.08799],[57.05612,51.06988],[56.98608,51.06254],[56.94419,51.0867],[56.88926,51.05995],[56.85905,51.0729],[56.82609,51.08411],[56.78558,51.09403],[56.76498,51.08972],[56.7382,51.07721],[56.72584,51.0785],[56.71966,51.07548],[56.70661,51.0785],[56.69906,51.07548],[56.72309,51.02887],[56.75193,50.9822],[56.72927,50.97745],[56.71897,50.9714],[56.70318,50.97269],[56.70455,50.98091],[56.67572,50.98739],[56.6201,50.98869],[56.57272,51.03405],[56.54045,51.04398],[56.52534,51.06254],[56.5274,51.07333],[56.51847,51.0716],[56.51161,51.07635],[56.51229,51.08541],[56.44844,51.05693],[56.45599,51.00338],[56.46011,50.96534],[56.43402,50.96448],[56.42234,50.9675],[56.37702,50.96448],[56.37153,50.94847],[56.3935,50.94545],[56.36398,50.9013],[56.29737,50.90216],[56.24794,50.91385],[56.18064,50.93722],[56.17515,50.90173],[56.15936,50.88267],[56.13464,50.8363],[56.12434,50.789],[56.1367,50.75426],[56.06048,50.69776],[55.99456,50.66774],[55.96298,50.66034],[55.91491,50.64205],[55.90187,50.62158],[55.86685,50.62594],[55.82908,50.62245],[55.81329,50.61069],[55.79475,50.60721],[55.77964,50.58934],[55.746,50.57931],[55.73638,50.56579],[55.73707,50.55052],[55.70755,50.55096],[55.71098,50.55619],[55.66154,50.56143],[55.61828,50.58192],[55.61348,50.59893],[55.58189,50.60415],[55.55717,50.60459],[55.53382,50.61287],[55.53108,50.64902],[55.50224,50.66904],[55.40199,50.68123],[55.39718,50.66774],[55.38345,50.65337],[55.14518,50.79768],[55.05729,50.82025],[55.13076,50.87964],[55.12252,50.88917],[55.13214,50.89393],[55.13214,50.89826],[55.10742,50.90086],[55.10398,50.90563],[55.08544,50.91991],[55.06141,50.92684],[55.05592,50.91948],[55.05249,50.92814],[55.00991,50.89913],[54.94125,50.90779],[54.90005,50.92251],[54.90829,50.93593],[54.88838,50.94198],[54.89799,50.95756],[54.84375,50.97745],[54.79225,50.98523],[54.74487,51.01548],[54.74624,51.02282],[54.73663,51.02412],[54.738,51.0375],[54.7277,51.03794],[54.71809,51.02973],[54.70367,51.03837],[54.68582,51.03837],[54.70779,51.02757],[54.69268,51.01893],[54.67071,51.02282],[54.6659,51.03146],[54.64736,51.02023],[54.61784,51.02239],[54.59175,51.03103],[54.58419,51.02153],[54.5684,51.01893],[54.56359,51.01332],[54.57252,51.01375],[54.58831,51.01677],[54.59175,51.01116],[54.57733,51.00511],[54.55261,51.00727],[54.54917,50.99863],[54.55535,50.99733],[54.56085,51.00036],[54.56703,50.98696],[54.57939,50.98437],[54.57389,50.97831],[54.58419,50.9701],[54.58076,50.96231],[54.57458,50.9675],[54.55329,50.9675],[54.55741,50.96058],[54.57595,50.95972],[54.57389,50.95237],[54.59037,50.94458],[54.59106,50.93896],[54.57183,50.94371],[54.5581,50.93939],[54.56085,50.93203],[54.55604,50.92987],[54.55398,50.93766],[54.54231,50.93766],[54.53476,50.93073],[54.53613,50.92164],[54.55055,50.92814],[54.56771,50.91602],[54.59793,50.92294],[54.61372,50.92121],[54.61647,50.92511],[54.65629,50.91602],[54.66384,50.92035],[54.67826,50.91861],[54.67964,50.91299],[54.67208,50.91255],[54.66934,50.90563],[54.68307,50.89956],[54.69886,50.89307],[54.68238,50.83326],[54.65698,50.82285],[54.68582,50.78119],[54.67758,50.71776],[54.69886,50.6995],[54.71878,50.69036],[54.7126,50.68297],[54.70985,50.67078],[54.71878,50.66426],[54.72358,50.64815],[54.72152,50.6316],[54.73251,50.61941],[54.72084,50.60633],[54.71054,50.60154],[54.68788,50.595],[54.63707,50.55707],[54.63638,50.55183],[54.6302,50.55096],[54.61509,50.53874],[54.60273,50.54485],[54.59175,50.56012],[54.57252,50.55314],[54.54299,50.52783],[54.46609,50.5671],[54.41322,50.62071],[54.43519,50.65424],[54.43862,50.68558],[54.4503,50.70472],[54.4654,50.74949],[54.46746,50.76469],[54.48532,50.79031],[54.51759,50.8068],[54.51416,50.81851],[54.52514,50.82285],[54.53613,50.84497],[54.51965,50.85407],[54.45236,50.8519],[54.43931,50.88007],[54.41665,50.87617],[54.37889,50.88397],[54.36309,50.88484],[54.35142,50.89177],[54.33631,50.8922],[54.32807,50.8974],[54.31572,50.89263],[54.29443,50.89826],[54.27864,50.91515],[54.28962,50.92944],[54.28619,50.94155],[54.27452,50.94588],[54.2855,50.94718],[54.2855,50.95237],[54.25117,50.95539],[54.2134,50.95929],[54.19075,50.97053],[54.20654,50.98393],[54.18869,50.99431],[54.17289,50.99258],[54.18182,51.00165],[54.17358,51.00943],[54.15916,51.01073],[54.17289,51.02023],[54.16877,51.02887],[54.1777,51.03016],[54.18113,51.02368],[54.19418,51.02973],[54.18663,51.04053],[54.16946,51.04743],[54.16053,51.0647],[54.14817,51.06297],[54.15229,51.05391],[54.14131,51.05132],[54.13307,51.06383],[54.15161,51.0729],[54.15092,51.09144],[54.13856,51.10654],[54.10217,51.11688],[54.09118,51.11645],[54.0596,51.12679],[54.03694,51.14317],[54.05548,51.14791],[54.0541,51.15394],[54.03488,51.1535],[54.02458,51.16212],[54.01977,51.15996],[53.99093,51.16944],[53.97171,51.16427],[53.97033,51.17503],[53.93257,51.18579],[53.92982,51.19397],[53.91128,51.19827],[53.90441,51.2043],[53.89549,51.19784],[53.88244,51.19913],[53.87146,51.19354],[53.86116,51.2],[53.85154,51.19053],[53.82888,51.19698],[53.8179,51.19483],[53.82476,51.20258],[53.81309,51.20387],[53.80966,51.21204],[53.78425,51.21419],[53.78425,51.20645],[53.76159,51.21247],[53.76159,51.20774],[53.73756,51.20602],[53.74031,51.21548],[53.72245,51.21419],[53.71765,51.22193],[53.7046,51.22666],[53.69361,51.22322],[53.69087,51.23483],[53.67301,51.22408],[53.6586,51.23569],[53.6586,51.25375],[53.6689,51.25804],[53.64212,51.26449],[53.64967,51.26621],[53.638,51.27609],[53.62701,51.27308],[53.59817,51.307],[53.61808,51.32288],[53.62358,51.34133],[53.61877,51.35634],[53.60641,51.3512],[53.5968,51.35634],[53.61053,51.37263],[53.62495,51.36577],[53.63594,51.37606],[53.61534,51.37778],[53.60504,51.38378],[53.581,51.41162],[53.56796,51.41505],[53.57688,51.42789],[53.56521,51.43175],[53.55148,51.42661],[53.53775,51.42961],[53.52195,51.42447],[53.51097,51.43432],[53.49861,51.43132],[53.48213,51.43988],[53.49037,51.45101],[53.47389,51.45357],[53.46565,51.4386],[53.45054,51.44116],[53.43956,51.4386],[53.43681,51.46769],[53.4217,51.47625],[53.42651,51.47967],[53.39698,51.49079],[53.37158,51.48993],[53.33931,51.49079],[53.34343,51.49848],[53.33381,51.51045],[53.29055,51.50062],[53.28918,51.48779],[53.27888,51.48309],[53.25897,51.49036],[53.26171,51.50275],[53.25485,51.5113],[53.24043,51.51045],[53.2212,51.51087],[53.20266,51.50404],[53.18,51.51258],[53.18,51.52113],[53.19717,51.52797],[53.19168,51.5348],[53.17657,51.53096],[53.17314,51.51942],[53.16627,51.51942],[53.14979,51.52497],[53.14155,51.5207],[53.14773,51.50489],[53.16146,51.50019],[53.15872,51.49121],[53.13949,51.48651],[53.11821,51.49079],[53.09829,51.48736],[53.08113,51.5019],[53.07083,51.50361],[53.06053,51.49207],[53.04199,51.4895],[53.03443,51.48266],[53.0159,51.47924],[53.00079,51.47368],[52.96989,51.48523],[52.96714,51.48181],[52.9795,51.47325],[52.97607,51.46898],[52.95135,51.4771],[52.94242,51.47283],[52.9589,51.45914],[52.94586,51.45871],[52.93693,51.47283],[52.93624,51.48223],[52.92114,51.47967],[52.91633,51.48565],[52.92869,51.49292],[52.92251,51.4972],[52.91015,51.49292],[52.90603,51.47881],[52.89505,51.4771],[52.88955,51.48779],[52.88063,51.48736],[52.88063,51.47796],[52.87445,51.47454],[52.86552,51.47838],[52.86895,51.48608],[52.90054,51.49677],[52.89505,51.50575],[52.87788,51.50318],[52.85865,51.49164],[52.84629,51.50275],[52.83805,51.5066],[52.83393,51.50019],[52.84011,51.48907],[52.82981,51.48822],[52.82501,51.50147],[52.81677,51.50062],[52.81402,51.49164],[52.80921,51.49292],[52.81196,51.5019],[52.80029,51.50404],[52.79617,51.49848],[52.78862,51.50147],[52.79411,51.51344],[52.78106,51.51045],[52.78175,51.50147],[52.77214,51.50318],[52.77557,51.52113],[52.76733,51.52113],[52.75703,51.50831],[52.7584,51.49677],[52.75154,51.4972],[52.74192,51.50361],[52.73506,51.50233],[52.7378,51.49634],[52.74398,51.49463],[52.75222,51.49079],[52.73849,51.48309],[52.72476,51.48736],[52.73506,51.49592],[52.72888,51.49805],[52.71995,51.48565],[52.69455,51.47753],[52.67189,51.47625],[52.6712,51.47026],[52.68974,51.46641],[52.69043,51.45871],[52.68287,51.45657],[52.66433,51.47111],[52.66365,51.48651],[52.64991,51.49036],[52.64167,51.47582],[52.64511,51.46513],[52.63481,51.46299],[52.62176,51.47454],[52.61627,51.46769],[52.62313,51.45999],[52.62245,51.45486],[52.60528,51.45571],[52.59567,51.454],[52.58468,51.46085],[52.59773,51.4724],[52.58331,51.47582],[52.57507,51.46769],[52.56614,51.46384],[52.5634,51.45614],[52.53524,51.46855],[52.5428,51.47496],[52.55653,51.47881],[52.54486,51.49207],[52.50572,51.50489],[52.50846,51.52156],[52.51052,51.53181],[52.50297,51.5395],[52.50709,51.54206],[52.49748,51.54804],[52.47001,51.59541],[52.44941,51.62398],[52.41439,51.64103],[52.38487,51.68234],[52.37731,51.71809],[52.38143,51.71894],[52.36221,51.77293],[52.35809,51.77591],[52.31758,51.76529],[52.33062,51.75211],[52.33337,51.74361],[52.24136,51.7249],[52.23312,51.73595],[52.21801,51.7351],[52.18025,51.73425],[52.1775,51.72702],[52.17544,51.72745],[52.17201,51.71809],[52.17681,51.70873],[52.17475,51.68788],[52.16789,51.68405],[52.16445,51.6866],[52.09098,51.6585],[52.07382,51.67383],[52.04361,51.66744],[51.99966,51.66744],[51.99897,51.6832],[51.89598,51.68277],[51.8946,51.67511],[51.85684,51.67298],[51.86508,51.6602],[51.86302,51.65083],[51.85203,51.64827],[51.84654,51.6504],[51.83624,51.64018],[51.82457,51.63762],[51.81701,51.62313],[51.80809,51.61972],[51.78611,51.60223],[51.79847,51.59157],[51.77101,51.58261],[51.81427,51.49677],[51.73187,51.4801],[51.73942,51.46513],[51.65702,51.44972],[51.6426,51.47667],[51.63299,51.47539],[51.64535,51.50062],[51.65702,51.50532],[51.64054,51.53779],[51.61377,51.53309],[51.60415,51.55145],[51.57669,51.5459],[51.58561,51.52882],[51.55952,51.52156],[51.56776,51.50532],[51.48948,51.49036],[51.4936,51.48437],[51.47918,51.48779],[51.43249,51.47496],[51.38031,51.47753],[51.37962,51.48523],[51.28692,51.48779],[51.28486,51.53224],[51.24778,51.5254],[51.2416,51.56341],[51.37962,51.56426],[51.37962,51.64145],[51.3034,51.64145],[51.2725,51.68405],[51.23474,51.68618],[51.19834,51.67511],[51.20315,51.66701],[51.18049,51.67],[51.15509,51.67851],[51.15303,51.67212],[51.12693,51.67553],[51.08436,51.66829],[51.06376,51.67127],[51.05758,51.68064],[51.0466,51.67723],[51.03767,51.68405],[50.99922,51.67255],[50.969,51.68064],[50.89347,51.68107],[50.87081,51.75381],[50.76782,51.77251],[50.76782,51.71384],[50.78498,51.68532],[50.80421,51.67766],[50.83305,51.64998],[50.81314,51.64827],[50.81108,51.58603],[50.76919,51.58475],[50.76713,51.57536],[50.67924,51.57493],[50.67993,51.58176],[50.73211,51.6065],[50.73005,51.6291],[50.63667,51.62867],[50.63392,51.64273],[50.62431,51.64359],[50.62225,51.64657],[50.58448,51.64529],[50.5838,51.59029],[50.56938,51.58986],[50.56526,51.58816],[50.55839,51.59541],[50.54878,51.60096],[50.53573,51.58986],[50.5371,51.50959],[50.54809,51.50019],[50.5474,51.49164],[50.55427,51.48822],[50.55496,51.47496],[50.5474,51.46555],[50.49797,51.46598],[50.49453,51.42747],[50.42106,51.42875],[50.37162,51.42789],[50.40458,51.40434],[50.33866,51.38249],[50.37574,51.33232],[50.23979,51.28038],[50.04135,51.25246],[50.00701,51.24343],[49.91157,51.20129],[49.84703,51.15437],[49.77562,51.10697],[49.56344,51.11042],[49.4886,51.09921],[49.45701,51.12507],[49.43916,51.11559],[49.43092,51.08929],[49.39315,51.09101],[49.3959,51.0483],[49.33822,50.98739],[49.37461,50.98047],[49.40689,50.96015],[49.41307,50.93679],[49.43023,50.92121],[49.43092,50.90736],[49.44053,50.89393],[49.44328,50.87011],[49.43367,50.86794],[49.42268,50.84887],[49.26338,50.82328],[49.21669,50.79855],[49.12742,50.78423],[49.00726,50.68253],[48.99833,50.68601],[48.95439,50.6512],[48.81294,50.59587],[48.77929,50.60851],[48.75663,50.61026],[48.72505,50.60372],[48.69209,50.61156],[48.67836,50.62289],[48.65226,50.64467],[48.63304,50.64989],[48.60694,50.66121],[48.57193,50.63378],[48.59939,50.61505],[48.62617,50.61156],[48.65226,50.60154],[48.64677,50.58759],[48.66188,50.57931],[48.66462,50.57102],[48.65707,50.5623],[48.65707,50.55052],[48.66119,50.5479],[48.65776,50.52696],[48.69964,50.38488],[48.73329,50.25642],[48.79303,50.20327],[48.8095,50.17162],[48.76487,50.09988],[48.78685,50.10032],[48.79165,50.09723],[48.815,50.09635],[48.84864,50.09063],[48.86375,50.07829],[48.86787,50.0492],[48.88023,50.04082],[48.8816,50.032],[48.89602,50.02494],[48.90358,50.01788],[48.74496,49.92116],[48.4497,49.83444],[48.44078,49.80121],[48.39408,49.83621],[48.3776,49.83444],[48.35701,49.82558],[48.34121,49.85082],[48.33297,49.84772],[48.32611,49.85126],[48.31306,49.87384],[48.29864,49.86056],[48.26499,49.8579],[48.24096,49.86941],[48.22586,49.86853],[48.2341,49.89994],[48.22105,49.90922],[48.21487,49.92205],[48.19976,49.92956],[48.19358,49.9437],[48.17573,49.94768],[48.16337,49.95608],[48.15719,49.97992],[48.13247,49.99847],[48.12629,50.05317],[48.11462,50.05978],[48.1105,50.08578],[48.09539,50.10076],[48.06999,50.10648],[48.06106,50.11265],[48.04664,50.11265],[48.05007,50.12674],[48.03909,50.12806],[48.03909,50.13642],[48.02673,50.13642],[48.01918,50.14082],[48.01231,50.14082],[47.99858,50.15578],[47.99995,50.1703],[47.98416,50.17865],[47.9869,50.18569],[47.96905,50.19272],[47.9512,50.21206],[47.95326,50.22656],[47.93678,50.23359],[47.93746,50.24544],[47.91343,50.25247],[47.88803,50.26783],[47.85232,50.30249],[47.83172,50.31258],[47.82074,50.3139],[47.82623,50.33099],[47.81044,50.33056],[47.8022,50.33538],[47.79052,50.33362],[47.78228,50.33932],[47.76306,50.33976],[47.76168,50.34677],[47.74452,50.35597],[47.74383,50.37699],[47.72804,50.3875],[47.68341,50.39801],[47.66418,50.40851],[47.66212,50.41726],[47.67448,50.4177],[47.67379,50.42164],[47.65251,50.42208],[47.65594,50.42776],[47.64152,50.4352],[47.64221,50.44001],[47.64976,50.44001],[47.6477,50.44788],[47.63877,50.4422],[47.62367,50.44876],[47.6374,50.45182],[47.62435,50.45969],[47.61543,50.45794],[47.612,50.46318],[47.54127,50.45969],[47.50831,50.43476],[47.47329,50.42076],[47.41699,50.36254],[47.406,50.33669],[47.38266,50.3288],[47.36961,50.33231],[47.34008,50.33187],[47.29957,50.30293],[47.29133,50.28407],[47.30232,50.26213],[47.33528,50.23754],[47.25631,50.19228],[47.31674,50.1527],[47.35313,50.09459],[47.18078,49.93487],[46.95831,49.87162],[46.93016,49.87472],[46.902,49.86277],[46.86836,49.73779],[46.85943,49.6454],[46.82991,49.57243],[46.8045,49.42526],[46.78047,49.33809],[46.84364,49.31661],[46.91436,49.28303],[46.99539,49.23194],[47.04895,49.16554],[47.02835,49.0905],[46.96929,49.02661],[46.89514,48.98337],[46.77909,48.94775],[46.62048,48.67146],[46.49345,48.4333],[46.64382,48.38681],[46.67404,48.39],[46.73652,48.3567],[46.88621,48.32886],[46.9123,48.31699],[46.93222,48.31699],[47.12242,48.26856],[47.0977,48.22467],[47.11006,48.1789],[47.12448,48.15738],[47.09152,48.1033],[47.21168,48.08266],[47.20001,48.05513],[47.15812,48.06064],[47.14714,48.03585],[47.05101,47.99865],[47.09976,47.92784],[47.18078,47.85417],[47.12379,47.83159],[47.19314,47.76009],[47.3854,47.68203],[47.41218,47.76286],[47.41561,47.83666],[47.65319,47.75779],[47.96562,47.75363],[48.0281,47.76702],[48.11256,47.73793],[48.19976,47.68989],[48.44421,47.40671],[48.51905,47.41182],[48.563,47.33323],[48.71063,47.09443],[48.79303,47.0046],[48.92829,46.86629],[48.97773,46.82449],[49.02099,46.76009],[48.91937,46.69325],[48.74977,46.68618],[48.70857,46.72385],[48.7017,46.74315],[48.68797,46.75726],[48.66188,46.77232],[48.58909,46.76573],[48.55339,46.75444],[48.51768,46.73656],[48.5012,46.71773],[48.49914,46.69372],[48.50601,46.681],[48.48609,46.67299],[48.49159,46.6664],[48.48884,46.65933],[48.49845,46.65839],[48.51699,46.64943],[48.54789,46.64896],[48.56231,46.64048],[48.55064,46.62916],[48.54995,46.62161],[48.57605,46.60699],[48.59939,46.60888],[48.61106,46.60322],[48.62205,46.60369],[48.61518,46.59992],[48.60008,46.60086],[48.59527,46.5985],[48.58497,46.59897],[48.56987,46.58859],[48.55819,46.58576],[48.55545,46.57821],[48.54515,46.56405],[48.55133,46.55602],[48.56918,46.55838],[48.57879,46.56122],[48.60145,46.55744],[48.62892,46.56216],[48.63853,46.5598],[48.64883,46.56027],[48.67286,46.5565],[48.68316,46.56122],[48.69209,46.5598],[48.7017,46.56358],[48.71955,46.5598],[48.72573,46.55366],[48.75457,46.54941],[48.77243,46.53855],[48.78547,46.54186],[48.78891,46.52107],[48.815,46.49366],[48.83354,46.47617],[48.88092,46.48137],[48.91113,46.45157],[48.93791,46.44495],[48.94889,46.43643],[48.99353,46.43075],[49.0306,46.41135],[49.04914,46.3943],[49.0773,46.39193],[49.1027,46.3853],[49.12468,46.38957],[49.14253,46.38293],[49.16038,46.3853],[49.18922,46.37156],[49.26338,46.29191],[49.48722,46.20169],[49.91088,46.05798],[49,42],[53.90922,37.34778],[54.2443,37.32048],[54.25735,37.32758],[54.28482,37.35214],[54.34799,37.34887],[54.39743,37.36088],[54.43862,37.38816],[54.48463,37.41489],[54.486,37.41925],[54.49424,37.42198],[54.50386,37.42034],[54.51965,37.43397],[54.52926,37.4307],[54.54574,37.44215],[54.5684,37.45033],[54.57801,37.44869],[54.5787,37.45687],[54.59449,37.46014],[54.61166,37.45414],[54.61784,37.44597],[54.62951,37.44815],[54.64736,37.44051],[54.66865,37.4367],[54.6865,37.44597],[54.70642,37.45796],[54.73251,37.49066],[54.75723,37.49229],[54.75929,37.49719],[54.76821,37.49992],[54.77233,37.51462],[54.79774,37.52334],[54.79705,37.55165],[54.80461,37.55165],[54.80941,37.57995],[54.82109,37.60226],[54.81903,37.6126],[54.78813,37.62075],[54.78607,37.63435],[54.79087,37.65066],[54.80667,37.66371],[54.7998,37.67349],[54.80117,37.68056],[54.8101,37.68436],[54.80941,37.68816],[54.82109,37.70229],[54.81491,37.70772],[54.82589,37.72619],[54.841,37.73922],[54.84169,37.74574],[54.85405,37.75062],[54.85267,37.7566],[54.86228,37.75985],[54.87464,37.76908],[54.89181,37.76583],[54.89456,37.77071],[54.91447,37.78482],[54.92889,37.78591],[54.95842,37.80435],[54.95361,37.80707],[54.95567,37.81141],[54.98794,37.82714],[54.99824,37.82822],[54.99343,37.83636],[55.01953,37.84341],[55.02571,37.85317],[55.03807,37.86184],[55.03463,37.87268],[55.03807,37.87973],[55.05455,37.88677],[55.05455,37.8949],[55.08064,37.90574],[55.07926,37.91549],[55.09025,37.91549],[55.09162,37.92199],[55.11634,37.93878],[55.13076,37.95069],[55.15548,37.95177],[55.16853,37.95935],[55.1905,37.95286],[55.19462,37.94744],[55.20217,37.95015],[55.20835,37.96639],[55.21522,37.96747],[55.22552,37.97992],[55.2729,37.99129],[55.29487,38.00265],[55.35255,38.02591],[55.3553,38.03349],[55.39032,38.04052],[55.3965,38.04376],[55.40679,38.04484],[55.43083,38.06377],[55.43975,38.06539],[55.4425,38.07674],[55.45417,38.08647],[55.45349,38.08917],[55.46516,38.09511],[55.48301,38.09349],[55.48782,38.08377],[55.50018,38.08214],[55.52009,38.08863],[55.52352,38.09349],[55.53794,38.09349],[55.5709,38.10106],[55.57914,38.09836],[55.59494,38.107],[55.67115,38.10808],[55.69313,38.10484],[55.70961,38.11349],[55.72883,38.11349],[55.74119,38.12105],[55.76179,38.12753],[55.77964,38.11781],[55.79818,38.11889],[55.80986,38.12591],[55.84831,38.107],[55.88058,38.09566],[55.91972,38.09025],[55.92933,38.09782],[55.94306,38.09349],[55.95611,38.09403],[55.97877,38.07836],[56.03439,38.07674],[56.07627,38.08377],[56.11953,38.09079],[56.17103,38.09241],[56.19232,38.07836],[56.21017,38.07242],[56.23901,38.0735],[56.24656,38.07728],[56.2603,38.07566],[56.28913,38.08539],[56.31935,38.07674],[56.32141,38.08052],[56.33377,38.07782],[56.33651,38.10214],[56.35093,38.11781],[56.34475,38.14211],[56.32827,38.14859],[56.32827,38.15291],[56.31866,38.17883],[56.32965,38.18584],[56.33171,38.19771],[56.40037,38.24195],[56.41067,38.25327],[56.42578,38.25597],[56.44363,38.25974],[56.45462,38.26406],[56.48208,38.26298],[56.48757,38.26675],[56.50199,38.26028],[56.50337,38.2646],[56.50886,38.25867],[56.51916,38.26244],[56.52328,38.26891],[56.53427,38.2619],[56.54731,38.26783],[56.5583,38.26136],[56.5686,38.26406],[56.58851,38.2522],[56.59881,38.2344],[56.60774,38.2344],[56.61598,38.24249],[56.63589,38.24573],[56.64482,38.25759],[56.67572,38.26783],[56.72103,38.26568],[56.73408,38.2743],[56.75125,38.28454],[56.76704,38.26945],[56.78146,38.26514],[56.7897,38.25327],[56.83021,38.2371],[56.84051,38.22955],[56.84806,38.23116],[56.88858,38.21822],[56.89476,38.22092],[56.90506,38.21606],[56.93115,38.21552],[56.96342,38.2112],[56.99295,38.21606],[57.00393,38.19016],[57.03208,38.18206],[57.06298,38.1826],[57.08839,38.1934],[57.10762,38.21714],[57.1495,38.24573],[57.14675,38.25435],[57.15637,38.26244],[57.15568,38.27053],[57.16255,38.27268],[57.16735,38.26837],[57.18315,38.26945],[57.18795,38.27646],[57.21679,38.28023],[57.21885,38.27538],[57.24426,38.27376],[57.25318,38.26244],[57.24426,38.25381],[57.25181,38.24249],[57.25044,38.23116],[57.29301,38.21552],[57.28958,38.20473],[57.29782,38.20311],[57.29644,38.18422],[57.29095,38.17559],[57.30125,38.15129],[57.33558,38.13887],[57.34176,38.11457],[57.35137,38.10916],[57.35549,38.10052],[57.36854,38.09566],[57.36991,38.08809],[57.37678,38.08701],[57.37403,38.07674],[57.37747,38.0562],[57.36305,38.04863],[57.36099,38.02916],[57.36648,38.01996],[57.36236,38.00157],[57.34931,37.98696],[57.38159,37.97776],[57.38502,37.9718],[57.40287,37.97126],[57.4118,37.96098],[57.44613,37.94149],[57.47772,37.93499],[57.48596,37.93824],[57.49832,37.9339],[57.51136,37.91982],[57.52372,37.91928],[57.5354,37.9274],[57.54295,37.92307],[57.55737,37.93228],[57.58003,37.93878],[57.62809,37.92361],[57.65556,37.92632],[57.69058,37.91549],[57.69813,37.92199],[57.72216,37.92415],[57.74345,37.91386],[57.75306,37.89978],[57.7819,37.89815],[57.78602,37.9014],[57.80387,37.89111],[57.80799,37.87593],[57.82722,37.86292],[57.86018,37.87431],[57.89176,37.8716],[57.89382,37.86238],[57.91374,37.86455],[57.92129,37.85425],[57.93159,37.85533],[57.93434,37.84829],[57.94738,37.85154],[57.95288,37.84178],[57.96043,37.84503],[58.00987,37.81575],[58.0236,37.81412],[58.02772,37.80707],[58.06549,37.80273],[58.07235,37.80707],[58.0854,37.80001],[58.09364,37.80273],[58.10188,37.78808],[58.11218,37.79567],[58.12316,37.79622],[58.12385,37.78428],[58.14239,37.78428],[58.15406,37.79296],[58.17329,37.78265],[58.20488,37.77397],[58.21174,37.75443],[58.21792,37.74031],[58.22479,37.73922],[58.22685,37.71804],[58.23303,37.70718],[58.22547,37.69523],[58.22891,37.68327],[58.26599,37.67077],[58.27491,37.67349],[58.29071,37.66479],[58.31611,37.66371],[58.3271,37.6686],[58.34358,37.66316],[58.3477,37.65773],[58.36486,37.65718],[58.36761,37.64794],[58.36761,37.63707],[58.3786,37.63816],[58.38409,37.62837],[58.40469,37.62837],[58.41293,37.63598],[58.44314,37.63217],[58.45069,37.63707],[58.48709,37.63761],[58.49052,37.64685],[58.51249,37.65501],[58.5173,37.67784],[58.53927,37.69686],[58.55781,37.70283],[58.60382,37.68653],[58.61961,37.66262],[58.68347,37.6387],[58.74115,37.63109],[58.74321,37.64903],[58.75556,37.65936],[58.78646,37.64794],[58.7844,37.64468],[58.78784,37.64087],[58.80912,37.65447],[58.80844,37.66642],[58.81874,37.68056],[58.80432,37.69794],[58.82011,37.6974],[58.84414,37.68545],[58.89152,37.65827],[58.94096,37.65338],[59.03572,37.61912],[59.05151,37.62021],[59.07897,37.60008],[59.09202,37.59791],[59.09683,37.58866],[59.10987,37.58431],[59.12498,37.57505],[59.12841,37.56907],[59.14764,37.5609],[59.15657,37.56199],[59.15863,37.55546],[59.17923,37.54131],[59.18541,37.54457],[59.22866,37.51353],[59.23828,37.52061],[59.2733,37.50918],[59.31999,37.52933],[59.35432,37.52824],[59.36256,37.50972],[59.38522,37.49283],[59.39277,37.47867],[59.38316,37.45087],[59.38728,37.44542],[59.39415,37.44869],[59.41406,37.43615],[59.40239,37.42797],[59.38385,37.42089],[59.37835,37.40725],[59.38797,37.37452],[59.3914,37.34232],[59.39964,37.3243],[59.39758,37.31502],[59.41268,37.30792],[59.4326,37.30846],[59.43328,37.29262],[59.45114,37.27842],[59.44908,37.27132],[59.46212,37.26749],[59.47174,37.2511],[59.48204,37.24946],[59.49234,37.23196],[59.48478,37.22158],[59.47517,37.2183],[59.47654,37.21228],[59.49096,37.20791],[59.52804,37.18657],[59.53765,37.18548],[59.53971,37.17727],[59.55276,37.17782],[59.54795,37.16797],[59.54383,37.15703],[59.54795,37.1417],[59.55894,37.13185],[59.57954,37.13185],[59.58435,37.13459],[59.59808,37.1313],[59.61662,37.12309],[59.6228,37.12309],[59.62692,37.11871],[59.64546,37.12145],[59.6537,37.1417],[59.68185,37.1417],[59.72648,37.12747],[59.73335,37.11433],[59.75395,37.10995],[59.76081,37.12638],[59.79995,37.11105],[59.81025,37.10612],[59.81643,37.10667],[59.82948,37.099],[59.83223,37.10119],[59.84321,37.09516],[59.85351,37.07983],[59.87136,37.06778],[59.87823,37.06668],[59.9002,37.05298],[59.90707,37.05134],[59.92218,37.04312],[59.96612,37.04366],[59.98123,37.0464],[60.02037,37.03544],[60.04303,37.02174],[60.08972,36.97238],[60.09109,36.94714],[60.10963,36.91805],[60.13572,36.89554],[60.13572,36.89225],[60.15907,36.86533],[60.15976,36.85819],[60.18653,36.83292],[60.20576,36.82192],[60.214,36.82247],[60.20988,36.81313],[60.22293,36.79554],[60.24765,36.77959],[60.26275,36.76364],[60.26962,36.74108],[60.28541,36.72072],[60.3067,36.67943],[60.33622,36.64252],[60.34378,36.64307],[60.34309,36.62985],[60.49621,36.62599],[60.59921,36.6293],[60.67474,36.62103],[60.87799,36.63371],[61.13754,36.64473],[61.15402,36.63206],[61.1705,36.59458],[61.17187,36.58851],[61.18148,36.58079],[61.17805,36.57197],[61.1856,36.56866],[61.18148,36.55487],[61.18423,36.5466],[61.1753,36.54164],[61.1808,36.5295],[61.16775,36.52012],[61.15882,36.50411],[61.16157,36.4997],[61.15608,36.48534],[61.16912,36.47872],[61.17462,36.45995],[61.15882,36.45332],[61.16706,36.41631],[61.14303,36.39586],[61.14234,36.38701],[61.1547,36.36545],[61.14715,36.34057],[61.1602,36.33172],[61.15951,36.31955],[61.15127,36.3201],[61.16294,36.31235],[61.15745,36.3035],[61.17942,36.27417],[61.19796,36.26088],[61.18835,36.2559],[61.19453,36.2199],[61.2014,36.22045],[61.20689,36.20771],[61.2117,36.19164],[61.2268,36.18555],[61.22406,36.15617],[61.21582,36.14951],[61.22131,36.13953],[61.21238,36.13232],[61.2117,36.12456],[61.22818,36.11957],[61.22749,36.11236],[61.21513,36.11347],[61.2062,36.10182],[61.20826,36.09183],[61.1911,36.07241],[61.18148,36.06464],[61.18423,36.05631],[61.18011,36.0441],[61.16432,36.03688],[61.16363,36.02577],[61.17393,36.00967],[61.165,36.00689],[61.1705,35.99189],[61.14303,35.97856],[61.13067,35.96744],[61.11969,35.96744],[61.11625,35.96077],[61.11969,35.95522],[61.12999,35.96077],[61.14097,35.94855],[61.15539,35.94632],[61.1602,35.94966],[61.20346,35.93409],[61.23504,35.89906],[61.2371,35.86902],[61.25907,35.83395],[61.25839,35.81224],[61.26594,35.79999],[61.25358,35.79331],[61.24671,35.7649],[61.25289,35.75487],[61.24397,35.74038],[61.24603,35.71529],[61.23916,35.71306],[61.23504,35.69968],[61.22749,35.7008],[61.2268,35.69299],[61.21513,35.68128],[61.22543,35.68016],[61.22474,35.65729],[61.22955,35.64334],[61.23573,35.6506],[61.25015,35.64278],[61.25289,35.63274],[61.24603,35.62716],[61.27212,35.61432],[61.27418,35.60595],[61.28242,35.60874],[61.28723,35.61432],[61.31538,35.62158],[61.371,35.62548],[61.37786,35.6199],[61.36756,35.61376],[61.37649,35.59087],[61.39434,35.59199],[61.3916,35.58696],[61.40052,35.58529],[61.39709,35.57635],[61.38542,35.56798],[61.40121,35.55457],[61.41014,35.55289],[61.42387,35.54004],[61.4431,35.53334],[61.45271,35.51881],[61.58866,35.43773],[61.77955,35.41199],[61.96838,35.45395],[62.06451,35.43437],[62.1064,35.38345],[62.15309,35.34089],[62.26638,35.29663],[62.2657,35.28766],[62.27394,35.28654],[62.27531,35.26972],[62.28973,35.25795],[62.28904,35.24001],[62.29522,35.23272],[62.29248,35.22823],[62.29385,35.2215],[62.29179,35.21421],[62.2966,35.20691],[62.29316,35.17942],[62.30209,35.17044],[62.29797,35.15247],[62.3014,35.14181],[62.29866,35.13451],[62.30484,35.12833],[62.33161,35.1491],[62.4765,35.27813],[62.48817,35.27365],[62.49641,35.27533],[62.50671,35.26636],[62.51426,35.26524],[62.52182,35.27365],[62.53006,35.26188],[62.54173,35.25851],[62.55065,35.23664],[62.574,35.23159],[62.57675,35.22206],[62.58361,35.22655],[62.60147,35.22823],[62.6049,35.2372],[62.62619,35.21028],[62.65502,35.23159],[62.67494,35.23159],[62.69279,35.23832],[62.70996,35.2372],[62.72506,35.25122],[62.74292,35.25178],[62.75184,35.27197],[62.76145,35.28766],[62.77862,35.29102],[62.78549,35.30167],[62.82257,35.29943],[62.85553,35.31568],[62.86994,35.33977],[62.87681,35.34705],[62.88574,35.34033],[62.8926,35.34649],[62.89398,35.35881],[62.91252,35.36049],[62.9187,35.36945],[62.9235,35.37001],[62.9338,35.38009],[62.96333,35.38904],[63.00453,35.40864],[63.02375,35.40192],[63.01414,35.41815],[63.03199,35.41367],[63.05191,35.41367],[63.09379,35.42039],[63.09997,35.41871],[63.10203,35.43549],[63.11027,35.44836],[63.11027,35.46905],[63.11714,35.4808],[63.11302,35.49086],[63.11988,35.49254],[63.11233,35.5121],[63.12332,35.51546],[63.12881,35.54451],[63.1137,35.54787],[63.10203,35.55904],[63.10546,35.57468],[63.10958,35.58529],[63.10134,35.59366],[63.0986,35.60539],[63.0931,35.62046],[63.10958,35.62325],[63.11233,35.6333],[63.2476,35.68072],[63.24211,35.70191],[63.21601,35.71418],[63.21052,35.70805],[63.19541,35.71585],[63.18924,35.73257],[63.17413,35.7348],[63.17001,35.74707],[63.14048,35.76657],[63.13911,35.78105],[63.13156,35.79108],[63.13156,35.80166],[63.10958,35.81057],[63.09928,35.81948],[63.1089,35.82338],[63.11439,35.83785],[63.11027,35.84453],[63.12194,35.8462],[63.12881,35.85232],[63.12126,35.85455],[63.11988,35.8629],[63.30528,35.85677],[63.53599,35.90295],[63.56964,35.95188],[63.70216,35.96633],[63.98918,36.03577],[64.06883,35.998],[64.07295,36.00134],[64.06883,36.00745],[64.0702,36.02744],[64.06333,36.02466],[64.05853,36.07074],[64.05921,36.10293],[64.07707,36.10847],[64.09217,36.12844],[64.10247,36.13011],[64.10591,36.12345],[64.12513,36.12955],[64.14573,36.14674],[64.15672,36.14785],[64.1629,36.16171],[64.18968,36.15949],[64.21165,36.16726],[64.23774,36.15173],[64.26178,36.16227],[64.28237,36.15173],[64.31671,36.20771],[64.34967,36.21713],[64.36065,36.22876],[64.3991,36.23208],[64.44442,36.24316],[64.5227,36.30073],[64.57969,36.35052],[64.58862,36.37651],[64.63737,36.44172],[64.61952,36.58355],[64.62226,36.60284],[64.61883,36.63591],[64.70535,36.79663],[64.79873,36.92299],[64.75547,37.11324],[64.99031,37.21884],[65.13244,37.24618],[65.19081,37.23579],[65.22857,37.2511],[65.26771,37.23306],[65.53207,37.23907],[65.64262,37.34286],[65.64674,37.44215],[65.70167,37.53586],[65.70785,37.53967],[65.71884,37.53749],[65.72433,37.54076],[65.74356,37.53967],[65.75866,37.5364],[65.76072,37.55002],[65.7669,37.54893],[65.76347,37.53477],[65.81771,37.50591],[65.88569,37.47649],[65.95298,37.47376],[65.99968,37.4476],[66.04156,37.45469],[66.06971,37.44978],[66.09237,37.4307],[66.1116,37.40561],[66.15554,37.39961],[66.16928,37.36851],[66.194,37.3707],[66.22009,37.36415],[66.2297,37.36742],[66.24893,37.36251],[66.26197,37.34505],[66.31759,37.32157],[66.34025,37.33413],[66.35398,37.32976],[66.36428,37.33467],[66.38557,37.32812],[66.41578,37.34723],[66.43364,37.33959],[66.46316,37.33467],[66.47964,37.32812],[66.54968,37.3505],[66.55311,37.35705],[66.57577,37.36906],[66.59706,37.36797],[66.60804,37.35978],[66.6101,37.34941],[66.6204,37.34123],[66.62178,37.33194],[66.65885,37.32594],[66.69181,37.35596],[66.71379,37.35705],[66.73301,37.36415],[66.744,37.35378],[66.76872,37.36088],[66.80442,37.36415],[66.84768,37.35378],[66.90605,37.37506],[66.94587,37.39907],[67.01042,37.37397],[67.04544,37.38052],[67.08869,37.34887],[67.08732,37.34177],[67.11067,37.32867],[67.10929,37.29153],[67.12371,37.2806],[67.12577,37.27132],[67.14088,37.26858],[67.14225,37.26367],[67.16217,37.25875],[67.18895,37.26039],[67.22808,37.23634],[67.24662,37.21611],[67.2583,37.18384],[67.38464,37.21665],[67.45536,37.23579],[67.48352,37.27077],[67.49794,37.28115],[67.53364,37.26804],[67.53501,37.2582],[67.57209,37.22431],[67.59475,37.22868],[67.6078,37.23743],[67.62428,37.23852],[67.64488,37.22267],[67.65724,37.22814],[67.6799,37.23306],[67.74581,37.21009],[67.78564,37.1718],[67.78564,37.10721],[67.79594,37.08257],[67.84263,37.06613],[67.89138,37.06778],[67.89894,37.06339],[67.90168,37.05408],[67.89207,37.03709],[67.94838,36.99432],[67.95249,36.97129],[67.99781,36.95318],[68.00056,36.93233],[68.02459,36.92354],[68.11935,36.96141],[68.1475,36.99322],[68.18939,37.02119],[68.22372,37.02612],[68.2608,37.00748],[68.28277,37.02503],[68.2917,37.05517],[68.29376,37.09845],[68.30474,37.10612],[68.348,37.10831],[68.37684,37.09845],[68.39744,37.10174],[68.42285,37.11159],[68.46954,37.15375],[68.59451,37.19259],[68.61373,37.19478],[68.95912,37.3172],[69.08958,37.2183],[69.11636,37.17344],[69.23172,37.1094],[69.24682,37.09407],[69.29626,37.11543],[69.32098,37.11597],[69.32991,37.13514],[69.35806,37.15375],[69.36836,37.16469],[69.39926,37.16469],[69.43496,37.20955],[69.48646,37.52116],[69.75975,37.58648],[69.81468,37.56907],[69.8291,37.58811],[69.83596,37.60172],[69.85794,37.60389],[69.86755,37.61205],[69.88678,37.61042],[69.90669,37.6213],[69.92454,37.60987],[69.94583,37.60879],[69.95132,37.56961],[69.96299,37.56417],[69.99733,37.56852],[70.00282,37.55437],[70.02273,37.54838],[70.03578,37.55165],[70.05157,37.54076],[70.05775,37.54838],[70.08384,37.5315],[70.09757,37.53368],[70.11199,37.52552],[70.12641,37.52715],[70.14358,37.52334],[70.15319,37.53532],[70.16693,37.52933],[70.17379,37.53314],[70.17311,37.54348],[70.18203,37.556],[70.1786,37.57233],[70.19439,37.56363],[70.20195,37.56798],[70.21225,37.56852],[70.21225,37.57505],[70.20469,37.57832],[70.20332,37.58485],[70.22186,37.58376],[70.21362,37.60498],[70.25276,37.61531],[70.25276,37.60987],[70.26512,37.60987],[70.26237,37.6387],[70.26512,37.65066],[70.27061,37.65012],[70.27748,37.65936],[70.27816,37.67512],[70.28915,37.67892],[70.28503,37.68273],[70.30426,37.69251],[70.30082,37.70501],[70.29258,37.70555],[70.28572,37.71641],[70.29945,37.72891],[70.2864,37.75171],[70.2967,37.76908],[70.28091,37.77994],[70.27404,37.7973],[70.28091,37.81466],[70.26718,37.81846],[70.25344,37.8331],[70.2198,37.83419],[70.20401,37.84286],[70.18615,37.84666],[70.17723,37.88027],[70.18203,37.88623],[70.17654,37.89869],[70.17929,37.90411],[70.17105,37.93174],[70.18203,37.93715],[70.18203,37.94636],[70.1889,37.94636],[70.19989,37.92957],[70.21362,37.92036],[70.21225,37.93228],[70.23696,37.94094],[70.24314,37.94473],[70.25276,37.94473],[70.26031,37.93769],[70.27679,37.94527],[70.26855,37.95177],[70.26649,37.9626],[70.25894,37.97126],[70.26168,37.97992],[70.2864,37.9691],[70.29121,37.98696],[70.31387,37.99778],[70.33035,37.99832],[70.33721,38.01401],[70.36056,38.0297],[70.37017,38.04376],[70.36399,38.05133],[70.36399,38.05403],[70.37979,38.05674],[70.38253,38.06377],[70.39627,38.06647],[70.40588,38.07566],[70.41687,38.0762],[70.41824,38.08809],[70.4306,38.1016],[70.44158,38.10106],[70.47798,38.10916],[70.49171,38.12267],[70.50476,38.12159],[70.50064,38.14697],[70.50613,38.17127],[70.51712,38.19286],[70.5384,38.21228],[70.54046,38.23494],[70.56724,38.26999],[70.60501,38.28346],[70.60913,38.29586],[70.60501,38.30394],[70.60707,38.31256],[70.61599,38.32226],[70.6105,38.34704],[70.63178,38.35511],[70.64071,38.34973],[70.66337,38.35296],[70.66268,38.35781],[70.68809,38.36642],[70.69496,38.38311],[70.67504,38.38903],[70.67367,38.40517],[70.69908,38.42024],[70.71693,38.41432],[70.75607,38.42669],[70.76911,38.45681],[70.78559,38.45574],[70.78765,38.45143],[70.81237,38.44498],[70.82267,38.45358],[70.84327,38.44767],[70.84327,38.44068],[70.85289,38.44068],[70.85975,38.45143],[70.85838,38.46057],[70.87074,38.46756],[70.89271,38.46541],[70.90164,38.44874],[70.90576,38.4439],[70.90782,38.43799],[70.92086,38.43584],[70.92361,38.43153],[70.93391,38.43315],[70.93528,38.44122],[70.94215,38.44229],[70.94627,38.43853],[70.95794,38.44068],[70.96275,38.45681],[70.94352,38.46595],[70.9449,38.47724],[70.96618,38.47563],[70.99021,38.49014],[71.00051,38.48315],[71.00051,38.47939],[71.03004,38.46111],[71.02935,38.45197],[71.05476,38.39979],[71.06918,38.40194],[71.063,38.41378],[71.07604,38.41324],[71.0939,38.42239],[71.10763,38.41916],[71.10557,38.40571],[71.12068,38.40679],[71.13029,38.3971],[71.14196,38.40194],[71.15089,38.39656],[71.14814,38.39011],[71.16462,38.38634],[71.18591,38.34596],[71.20033,38.34273],[71.21887,38.32603],[71.24359,38.31903],[71.24839,38.31095],[71.29852,38.31364],[71.31088,38.3061],[71.32942,38.30394],[71.33491,38.29424],[71.32736,38.28454],[71.33285,38.28023],[71.33354,38.27161],[71.35688,38.27107],[71.37405,38.25705],[71.36718,38.22415],[71.37954,38.20959],[71.36512,38.19718],[71.36581,38.17721],[71.37474,38.16155],[71.36581,38.14859],[71.34933,38.14697],[71.33972,38.13185],[71.33697,38.11403],[71.31843,38.09944],[71.32118,38.06917],[71.3047,38.04484],[71.28341,38.04376],[71.28616,38.03403],[71.29509,38.03132],[71.29371,38.01672],[71.27586,38.00698],[71.28067,37.99453],[71.26968,37.99399],[71.26762,37.98263],[71.27655,37.96531],[71.26281,37.95394],[71.26625,37.93715],[71.25183,37.9339],[71.25732,37.92307],[71.28204,37.91982],[71.29097,37.93282],[71.31431,37.91982],[71.32942,37.8846],[71.37886,37.90519],[71.41868,37.91007],[71.48941,37.94203],[71.49902,37.95177],[71.51962,37.95286],[71.52786,37.94365],[71.54022,37.94744],[71.57798,37.93336],[71.5924,37.91928],[71.58622,37.89978],[71.59996,37.87647],[71.58485,37.84883],[71.59652,37.80164],[71.5567,37.78591],[71.54708,37.77342],[71.53198,37.76637],[71.54914,37.73814],[71.54914,37.71478],[71.54159,37.69305],[71.52648,37.6724],[71.52717,37.63435],[71.50588,37.61096],[71.49421,37.53858],[71.5052,37.51299],[71.52648,37.48085],[71.50451,37.45305],[71.49902,37.40889],[71.47911,37.40452],[71.47636,37.38652],[71.49009,37.38052],[71.4949,37.36797],[71.48872,37.33358],[71.50794,37.31611],[71.49215,37.29972],[71.48048,37.23196],[71.4537,37.21392],[71.46331,37.18767],[71.44958,37.18056],[71.44477,37.16961],[71.45233,37.1532],[71.44271,37.12309],[71.44477,37.09681],[71.43447,37.08859],[71.43035,37.06065],[71.46194,37.02283],[71.45851,37.01571],[71.47087,36.98555],[71.46469,36.95812],[71.48323,36.93397],[71.49284,36.9175],[71.51687,36.88291],[71.52717,36.87248],[71.5258,36.85984],[71.54228,36.84665],[71.53816,36.82522],[71.57524,36.75814],[71.59034,36.73448],[71.62193,36.71136],[71.63566,36.69375],[71.65832,36.68604],[71.6748,36.67227],[71.68579,36.67778],[71.71188,36.67117],[71.7263,36.67667],[71.75102,36.67667],[71.76338,36.67943],[71.78878,36.67612],[71.81694,36.68218],[71.8444,36.68218],[71.86157,36.69375],[71.90551,36.73338],[71.95838,36.75594],[71.98448,36.77959],[72.0243,36.81313],[72.04902,36.82412],[72.05452,36.83182],[72.07168,36.84116],[72.11357,36.84665],[72.12799,36.86863],[72.22961,36.93123],[72.36076,36.99158],[72.47543,36.99597],[72.55783,37.00035],[72.56744,37.00693],[72.62306,37.02722],[72.66082,37.019],[72.68829,37.05791],[72.70271,37.06997],[72.70202,37.08038],[72.71713,37.08969],[72.73773,37.11871],[72.75901,37.15375],[72.77343,37.18931],[72.79266,37.21119],[72.81669,37.23142],[72.83798,37.23634],[72.85583,37.22978],[72.88192,37.23962],[72.91282,37.2582],[72.95402,37.29098],[72.97256,37.29208],[72.97874,37.29754],[73.03024,37.30737],[73.03779,37.30519],[73.07487,37.3172],[73.09822,37.32539],[73.10714,37.34123],[73.1044,37.34286],[73.10577,37.36251],[73.13186,37.37234],[73.14834,37.40234],[73.16688,37.40998],[73.19641,37.40834],[73.20945,37.40289],[73.23623,37.41816],[73.25477,37.43561],[73.28018,37.4476],[73.28155,37.45251],[73.30421,37.46395],[73.3406,37.46504],[73.35227,37.45959],[73.36395,37.46123],[73.36944,37.45578],[73.36669,37.4476],[73.37356,37.43997],[73.4024,37.45578],[73.41613,37.46777],[73.45527,37.47376],[73.49716,37.47376],[73.53424,37.47213],[73.58299,37.44597],[73.65028,37.4367],[73.77525,37.43888],[73.77113,37.4067],[73.77182,37.3958],[73.76701,37.39143],[73.76976,37.3827],[73.76976,37.34505],[73.77422,37.33938],[73.74984,37.33031],[73.75396,37.32539],[73.71139,37.31666],[73.70452,37.30737],[73.69354,37.31065],[73.67294,37.30955],[73.66676,37.31775],[73.65371,37.31229],[73.64822,37.30027],[73.65509,37.29153],[73.64341,37.2806],[73.63243,37.28279],[73.61526,37.27295],[73.62075,37.2664],[73.63105,37.2664],[73.63311,37.24836],[73.65509,37.23688],[73.6647,37.24946],[73.70246,37.2511],[73.71345,37.24508],[73.73062,37.24563],[73.73886,37.22704],[73.76152,37.22267],[73.76289,37.2336],[73.7828,37.23798],[73.8034,37.22704],[73.81507,37.23251],[73.82743,37.22704],[73.84391,37.23579],[73.84391,37.24836],[73.8549,37.25765],[73.8858,37.26585],[73.88511,37.27295],[73.90846,37.28224],[73.92562,37.28388],[73.95378,37.27459],[73.96408,37.29972],[73.98948,37.2959],[74.00047,37.28989],[74.02107,37.29262],[74.02381,37.30682],[74.0348,37.30846],[74.03892,37.29972],[74.06089,37.31338],[74.05815,37.32539],[74.06639,37.32648],[74.09179,37.31775],[74.11171,37.32157],[74.11514,37.32921],[74.13162,37.32594],[74.15359,37.34013],[74.1838,37.33576],[74.20784,37.34286],[74.21058,37.34996],[74.22088,37.34832],[74.23805,37.37506],[74.25247,37.37343],[74.23118,37.39525],[74.24217,37.41598],[74.25659,37.40889],[74.26689,37.41052],[74.27856,37.40398],[74.32044,37.4007],[74.32388,37.40725],[74.34104,37.4067],[74.34997,37.42143],[74.37606,37.42361],[74.3898,37.41216],[74.38636,37.4007],[74.41589,37.38925],[74.42894,37.3958],[74.43306,37.41107],[74.43855,37.41652],[74.45159,37.40452],[74.4667,37.40725],[74.46533,37.42579],[74.48318,37.41052],[74.48249,37.40398],[74.49554,37.39689],[74.50653,37.4007],[74.52301,37.4018],[74.52919,37.41052],[74.55734,37.39689],[74.55459,37.3898],[74.56626,37.37397],[74.57862,37.37779],[74.59304,37.37725],[74.61364,37.38434],[74.63905,37.37725],[74.64317,37.3827],[74.67201,37.38925],[74.68849,37.40507],[74.7084,37.38489],[74.72831,37.37834],[74.73861,37.37779],[74.80453,37.35378],[74.82307,37.33522],[74.83131,37.33467],[74.84985,37.30628],[74.87731,37.27514],[74.87869,37.26039],[74.88899,37.25711],[74.88967,37.2336],[74.91508,37.23415],[74.91783,37.24454],[74.91233,37.24727],[74.91714,37.26148],[74.91165,37.27405],[74.95147,37.29153],[74.96383,37.28825],[74.96933,37.29044],[74.98031,37.28771],[75.0167,37.29372],[75.0428,37.30573],[75.05447,37.30191],[75.06958,37.31229],[75.09567,37.3172],[75.10871,37.31392],[75.12794,37.31611],[75.12107,37.33904],[75.09292,37.37179],[75.11627,37.38598],[75.12451,37.38543],[75.12863,37.39798],[75.15129,37.4078],[75.13481,37.44379],[75.12519,37.4476],[75.12451,37.46395],[75.11146,37.47376],[75.10185,37.47322],[75.09498,37.48575],[75.0888,37.48575],[75.08125,37.49392],[75.084,37.49665],[75.05996,37.52552],[75.05172,37.51027],[75.03524,37.50155],[75.01052,37.52388],[74.97207,37.53804],[74.95353,37.54675],[74.95353,37.55437],[74.94461,37.55655],[74.93225,37.57124],[74.93431,37.57723],[74.93019,37.58594],[74.94049,37.60063],[74.92332,37.61531],[74.92538,37.62619],[74.91165,37.6338],[74.89723,37.66099],[74.90066,37.67675],[74.93156,37.69251],[74.92401,37.70446],[74.93637,37.7175],[74.9604,37.72999],[74.96727,37.7528],[74.9858,37.75117],[75.00984,37.77234],[74.98718,37.80544],[74.95147,37.80978],[74.94461,37.82443],[74.92675,37.82822],[74.91302,37.85642],[74.93568,37.87973],[74.93637,37.89707],[74.91645,37.9014],[74.92126,37.93607],[74.90959,37.96747],[74.91577,37.97938],[74.91302,37.99778],[74.91783,38.00968],[74.91508,38.02375],[74.89379,38.03673],[74.88487,38.02159],[74.86496,38.027],[74.86564,38.03835],[74.84985,38.04917],[74.85672,38.06214],[74.84985,38.07512],[74.83612,38.07296],[74.8217,38.08539],[74.81758,38.12915],[74.80796,38.13671],[74.80728,38.14697],[74.79766,38.15561],[74.8059,38.17721],[74.80178,38.19987],[74.77157,38.19556],[74.75235,38.21498],[74.71183,38.21282],[74.69879,38.22793],[74.69535,38.26514],[74.70703,38.28724],[74.69329,38.30933],[74.68574,38.33465],[74.66583,38.38042],[74.69535,38.42562],[74.66583,38.4353],[74.65278,38.44498],[74.61639,38.44767],[74.50584,38.47294],[74.28337,38.59862],[74.25865,38.60131],[74.18724,38.64047],[74.12063,38.64154],[74.11582,38.60989],[74.07325,38.61096],[74.07325,38.58843],[74.06227,38.57608],[74.07806,38.55246],[74.08767,38.5487],[74.08836,38.53903],[74.076,38.5342],[74.04304,38.54333],[74.00871,38.53259],[74.00871,38.52345],[73.99017,38.5256],[73.97506,38.53796],[73.92356,38.5444],[73.89267,38.58574],[73.85902,38.58037],[73.80065,38.61365],[73.80821,38.64154],[73.79997,38.64905],[73.80409,38.66031],[73.7622,38.72194],[73.7416,38.73212],[73.75465,38.77068],[73.77044,38.77389],[73.73199,38.83061],[73.72993,38.84559],[73.69697,38.85254],[73.70178,38.86644],[73.69697,38.87927],[73.70933,38.88568],[73.70796,38.89744],[73.71894,38.9092],[73.73268,38.9108],[73.73954,38.92843],[73.75465,38.94071],[73.76564,38.93858],[73.77662,38.94232],[73.79241,38.92736],[73.80409,38.93217],[73.82469,38.91721],[73.83705,38.92736],[73.85147,38.953],[73.84254,38.98556],[73.83979,39.00851],[73.81164,39.04158],[73.79035,39.04158],[73.78555,39.03198],[73.77525,39.02718],[73.76564,39.03412],[73.75396,39.02451],[73.73886,39.03785],[73.73748,39.05065],[73.7313,39.06451],[73.70933,39.07624],[73.71894,39.09809],[73.71139,39.10289],[73.71894,39.11248],[73.70864,39.12207],[73.70384,39.13645],[73.67637,39.14337],[73.68667,39.16201],[73.66264,39.1652],[73.65921,39.19182],[73.65371,39.20192],[73.64135,39.20352],[73.64135,39.2131],[73.63174,39.22001],[73.63311,39.23012],[73.61183,39.24554],[73.58505,39.23969],[73.5617,39.25086],[73.56308,39.27053],[73.5363,39.27797],[73.55209,39.2902],[73.55964,39.3072],[73.55346,39.31304],[73.54934,39.33748],[73.56376,39.34757],[73.55346,39.35713],[73.52394,39.37252],[73.49784,39.37995],[73.52462,39.39163],[73.56994,39.398],[73.57406,39.40595],[73.58985,39.41126],[73.59672,39.42505],[73.59123,39.43513],[73.59878,39.44467],[73.59535,39.45263],[73.59947,39.46058],[73.61183,39.46217],[73.61869,39.46853],[73.64135,39.47542],[73.65371,39.46906],[73.6647,39.47171],[73.66951,39.46323],[73.68255,39.46323],[73.69216,39.46535],[73.7162,39.46111],[73.7574,39.46217],[73.77731,39.46853],[73.79447,39.46747],[73.84117,39.47436],[73.87412,39.48443],[73.87687,39.49503],[73.87138,39.49874],[73.87275,39.51251],[73.89335,39.53423],[73.87962,39.54164],[73.89198,39.55435],[73.91395,39.56335],[73.9112,39.59087],[73.94691,39.59986],[73.94691,39.62208],[73.94073,39.63319],[73.9373,39.65962],[73.92356,39.68446],[73.92082,39.69662],[73.92837,39.70613],[73.90914,39.72144],[73.92013,39.72567],[73.90571,39.73729],[73.90296,39.74573],[73.87,39.74573],[73.8652,39.75682],[73.84803,39.7584],[73.84254,39.75418],[73.83842,39.75629],[73.83636,39.77002],[73.83224,39.78057],[73.83979,39.79482],[73.83979,39.81117],[73.84735,39.83385],[73.86245,39.84703],[73.88099,39.85282],[73.88236,39.86179],[73.90228,39.86231],[73.91464,39.87549],[73.9215,39.90446],[73.90777,39.91289],[73.90571,39.92026],[73.93455,39.95922],[73.95721,39.97554],[73.97644,40.00605],[73.97094,40.01604],[73.95103,40.01657],[73.9318,40.02498],[73.93661,40.03234],[73.9524,40.03444],[73.98124,40.04811],[73.9991,40.04706],[74.00322,40.0623],[74.01763,40.06966],[74.01145,40.07912],[74.04167,40.10066],[74.05403,40.0933],[74.06845,40.07807],[74.08905,40.08332],[74.09248,40.0891],[74.10621,40.08647],[74.11033,40.1017],[74.12269,40.11116],[74.14672,40.10591],[74.15771,40.11536],[74.17419,40.11536],[74.21608,40.12639],[74.22981,40.12219],[74.25659,40.13269],[74.26483,40.12534],[74.27925,40.10591],[74.29092,40.10538],[74.30259,40.11431],[74.3122,40.11168],[74.31701,40.1017],[74.3328,40.09803],[74.34173,40.09383],[74.36645,40.10486],[74.37606,40.11641],[74.38842,40.11694],[74.40696,40.13584],[74.41658,40.13689],[74.45091,40.15578],[74.46395,40.16628],[74.47082,40.18097],[74.48387,40.18674],[74.49829,40.20457],[74.52575,40.21034],[74.54429,40.22974],[74.56008,40.24861],[74.56352,40.25909],[74.57931,40.26642],[74.58618,40.27952],[74.6054,40.28371],[74.61639,40.28057],[74.62944,40.28319],[74.6418,40.27114],[74.66171,40.27376],[74.68299,40.28947],[74.67819,40.29733],[74.69261,40.31409],[74.70222,40.32299],[74.70085,40.33659],[74.69123,40.34863],[74.73587,40.34549],[74.74617,40.35282],[74.7647,40.34811],[74.78805,40.35387],[74.8162,40.34759],[74.85946,40.32351],[74.86839,40.33293],[74.88281,40.33503],[74.8883,40.33974],[74.90203,40.33869],[74.90547,40.34445],[74.91233,40.34445],[74.90409,40.35439],[74.87525,40.36381],[74.85534,40.3931],[74.84298,40.39624],[74.84092,40.40617],[74.7956,40.43492],[74.78874,40.45478],[74.80728,40.45583],[74.81483,40.4715],[74.81895,40.49239],[74.81689,40.50753],[74.83955,40.52267],[74.87731,40.51275],[74.8986,40.49865],[74.91989,40.49187],[74.91714,40.48508],[74.98512,40.45269],[75.01739,40.46575],[75.0373,40.45112],[75.04417,40.45269],[75.05172,40.44537],[75.06134,40.44747],[75.07782,40.44119],[75.08468,40.44276],[75.09361,40.43597],[75.12451,40.45948],[75.13687,40.46053],[75.15541,40.45635],[75.17395,40.45635],[75.18562,40.44903],[75.23712,40.44747],[75.23918,40.46053],[75.26046,40.47097],[75.25634,40.48038],[75.27969,40.47881],[75.30098,40.49082],[75.2996,40.5044],[75.33119,40.52162],[75.32638,40.53206],[75.34973,40.53624],[75.37307,40.54772],[75.38131,40.54511],[75.38681,40.55189],[75.40878,40.55346],[75.42938,40.56441],[75.44517,40.57954],[75.46096,40.60196],[75.47813,40.60717],[75.48843,40.61916],[75.52619,40.63584],[75.54405,40.64886],[75.56808,40.65407],[75.60035,40.66345],[75.59486,40.64626],[75.6134,40.64365],[75.61271,40.63427],[75.63194,40.6202],[75.62027,40.59779],[75.62233,40.54615],[75.64018,40.52737],[75.64704,40.50544],[75.66078,40.50388],[75.66902,40.495],[75.67932,40.50074],[75.68756,40.49761],[75.69374,40.48247],[75.72257,40.47515],[75.72051,40.46366],[75.70747,40.45269],[75.70953,40.44172],[75.68138,40.42133],[75.67039,40.39624],[75.66833,40.37427],[75.66284,40.35334],[75.68138,40.34549],[75.68618,40.32194],[75.69992,40.30257],[75.68824,40.2989],[75.69236,40.28423],[75.70266,40.27952],[75.71777,40.28633],[75.7212,40.29785],[75.73493,40.30728],[75.74317,40.29576],[75.75347,40.30152],[75.77819,40.301],[75.78918,40.3099],[75.80497,40.31356],[75.80978,40.32456],[75.82489,40.32717],[75.83244,40.3167],[75.85235,40.31147],[75.8654,40.31199],[75.90797,40.30152],[75.91278,40.29],[75.92994,40.30152],[75.93132,40.31409],[75.92514,40.32142],[75.92376,40.33398],[75.94711,40.34235],[75.94574,40.3523],[75.95878,40.36276],[75.95329,40.37427],[75.97595,40.38159],[75.99655,40.37898],[75.99861,40.36747],[76.01989,40.35387],[76.04736,40.35491],[76.04049,40.36904],[76.05629,40.37427],[76.06727,40.38369],[76.0865,40.37689],[76.10504,40.37741],[76.11396,40.37375],[76.12564,40.37427],[76.14074,40.36799],[76.16752,40.36904],[76.17713,40.37898],[76.22726,40.4046],[76.23138,40.41401],[76.25129,40.42029],[76.27121,40.43858],[76.28768,40.42813],[76.27876,40.41245],[76.29455,40.40408],[76.31103,40.40617],[76.31515,40.39415],[76.32545,40.38892],[76.3179,40.36538],[76.33575,40.33817],[76.34193,40.34131],[76.34056,40.35125],[76.35223,40.36485],[76.36596,40.38682],[76.37832,40.38787],[76.38244,40.37636],[76.40853,40.38525],[76.4463,40.39205],[76.44561,40.40147],[76.45317,40.40251],[76.4566,40.41454],[76.47102,40.41611],[76.48269,40.42656],[76.50535,40.42656],[76.50466,40.44537],[76.53762,40.46366],[76.53694,40.48821],[76.539,40.49134],[76.53968,40.50388],[76.53076,40.50962],[76.55136,40.53467],[76.55822,40.55346],[76.59599,40.58006],[76.60697,40.59153],[76.60491,40.60456],[76.61521,40.61447],[76.6365,40.61395],[76.65435,40.62281],[76.64886,40.65772],[76.65847,40.66293],[76.65367,40.68115],[76.67358,40.69365],[76.64955,40.71916],[76.64268,40.76234],[76.66946,40.7769],[76.66877,40.78366],[76.68594,40.77794],[76.70242,40.78834],[76.7134,40.8138],[76.72782,40.81796],[76.72096,40.82264],[76.7189,40.84134],[76.73263,40.84654],[76.72439,40.85381],[76.73881,40.87614],[76.73812,40.89327],[76.73126,40.90002],[76.75529,40.93219],[76.75392,40.95293],[76.791,40.96071],[76.79786,40.96797],[76.81983,40.97782],[76.85279,40.97523],[76.8473,40.99803],[76.86721,41.02031],[76.88369,41.02808],[76.89674,41.01876],[76.92146,41.02342],[76.94686,41.03275],[76.95854,41.0488],[76.96472,41.05812],[76.99562,41.07262],[77.01278,41.06433],[77.01278,41.05709],[77.02995,41.05709],[77.03819,41.06175],[77.06703,41.06019],[77.08351,41.06382],[77.08763,41.05553],[77.10548,41.04777],[77.09999,41.03948],[77.11853,41.02808],[77.13706,41.02653],[77.14599,41.01928],[77.18307,41.01047],[77.18444,41.02394],[77.21054,41.02498],[77.22908,41.03067],[77.24487,41.02446],[77.23869,41.01617],[77.26203,41.01358],[77.26066,41.00477],[77.27371,41.00063],[77.31079,41.01203],[77.31079,41.01928],[77.33757,41.02964],[77.35611,41.04052],[77.37533,41.03948],[77.38151,41.0286],[77.40074,41.03689],[77.41241,41.03378],[77.42958,41.02239],[77.47009,41.0229],[77.47489,41.01462],[77.46871,41.01047],[77.46597,40.99752],[77.55043,41.00322],[77.56553,40.99544],[77.5827,40.99492],[77.58682,41.00218],[77.59506,41.00166],[77.61154,41.0084],[77.62115,41.00529],[77.64862,41.01151],[77.6596,41.00218],[77.7008,41.00633],[77.73307,41.0286],[77.76672,41.01617],[77.79693,41.04828],[77.81066,41.04414],[77.82371,41.05812],[77.8086,41.07417],[77.79899,41.09022],[77.80311,41.12022],[77.81959,41.14195],[77.85049,41.15694],[77.88208,41.16831],[77.88826,41.17813],[77.91915,41.18847],[77.95967,41.19054],[77.97477,41.18072],[78.00018,41.19312],[78.0146,41.19054],[78.0297,41.20139],[78.09013,41.22308],[78.12377,41.22928],[78.1327,41.24787],[78.13201,41.28554],[78.13751,41.28812],[78.13819,41.31288],[78.14918,41.32371],[78.14987,41.33299],[78.15879,41.3397],[78.14575,41.3665],[78.15536,41.37474],[78.15467,41.38093],[78.18969,41.39432],[78.21579,41.39587],[78.2254,41.4005],[78.23776,41.39947],[78.24531,41.39329],[78.2769,41.38917],[78.28994,41.39277],[78.29956,41.38762],[78.31054,41.39123],[78.32222,41.38196],[78.33526,41.3969],[78.38676,41.39329],[78.38951,41.41029],[78.40118,41.41338],[78.40667,41.40771],[78.42315,41.41595],[78.44924,41.41338],[78.50624,41.43294],[78.51036,41.43809],[78.52889,41.44118],[78.53645,41.45816],[78.55293,41.47257],[78.57902,41.4808],[78.58314,41.47051],[78.60511,41.46845],[78.61816,41.47566],[78.64494,41.46948],[78.66348,41.49829],[78.68888,41.51063],[78.70468,41.52143],[78.68888,41.53171],[78.71154,41.55226],[78.74794,41.55432],[78.79051,41.56408],[78.8166,41.55792],[78.82278,41.57384],[78.85231,41.57795],[78.85231,41.59336],[78.87496,41.59439],[78.88664,41.59644],[78.88595,41.60774],[78.90518,41.6139],[78.9299,41.64213],[78.99169,41.66162],[79.02122,41.65906],[79.03083,41.67906],[79.08233,41.69034],[79.11254,41.70419],[79.12422,41.72418],[79.14276,41.7211],[79.16473,41.72776],[79.18533,41.72264],[79.21623,41.72674],[79.22927,41.74057],[79.25056,41.74723],[79.24781,41.75748],[79.27391,41.76465],[79.29313,41.78923],[79.30755,41.79486],[79.32197,41.8097],[79.34944,41.79384],[79.3721,41.80919],[79.3927,41.82403],[79.40986,41.83938],[79.44488,41.84501],[79.46342,41.8537],[79.48745,41.84552],[79.48265,41.83682],[79.54444,41.83989],[79.61311,41.86086],[79.61929,41.87774],[79.63577,41.89307],[79.75456,41.90125],[79.77172,41.89103],[79.80606,41.93037],[79.80125,41.93855],[79.8191,41.95029],[79.81704,41.96714],[79.82872,41.96919],[79.83627,41.97838],[79.84931,41.98093],[79.84588,42.0141],[79.8809,42.03246],[79.9221,42.04215],[80.01823,42.04266],[80.02441,42.04878],[80.13839,42.03144],[80.16929,42.03705],[80.1995,42.03807],[80.22491,42.06458],[80.20019,42.07784],[80.17204,42.09312],[80.15144,42.11707],[80.15075,42.13438],[80.13771,42.14609],[80.13908,42.15627],[80.13153,42.16798],[80.16311,42.17002],[80.1638,42.20766],[80.17416,42.21081],[80.17959,42.21936],[80.17822,42.22139],[80.19882,42.22902],[80.2153,42.228],[80.22972,42.21834],[80.25306,42.22292],[80.28327,42.23309],[80.28739,42.24173],[80.27984,42.24732],[80.29083,42.26257],[80.28053,42.28238],[80.26336,42.2834],[80.25856,42.30372],[80.28396,42.31946],[80.2613,42.33063],[80.2462,42.34078],[80.23658,42.34027],[80.22834,42.36564],[80.24002,42.38847],[80.22628,42.3981],[80.23452,42.4052],[80.21255,42.41382],[80.21461,42.42497],[80.205,42.42953],[80.21324,42.45284],[80.20774,42.47007],[80.2407,42.5045],[80.25924,42.50146],[80.2771,42.5207],[80.26062,42.51563],[80.251,42.52373],[80.23452,42.52727],[80.21942,42.53233],[80.1789,42.58898],[80.17822,42.60313],[80.16174,42.6289],[80.1741,42.67032],[80.20294,42.68798],[80.22903,42.69505],[80.22354,42.71321],[80.25375,42.78179],[80.26199,42.82864],[80.27847,42.8367],[80.29289,42.83317],[80.30731,42.8372],[80.33065,42.83519],[80.32653,42.82914],[80.33203,42.82512],[80.33821,42.82914],[80.35743,42.83267],[80.36773,42.83015],[80.38078,42.83015],[80.39176,42.83871],[80.40618,42.82965],[80.42198,42.84425],[80.42472,42.85432],[80.44876,42.86036],[80.45906,42.85633],[80.4618,42.86388],[80.49751,42.87344],[80.49888,42.882],[80.51055,42.88149],[80.51055,42.87495],[80.52909,42.8825],[80.54283,42.88653],[80.55038,42.87948],[80.55175,42.88653],[80.57304,42.88904],[80.57991,42.89558],[80.59913,42.89608],[80.58952,42.91419],[80.56961,42.91972],[80.55175,42.9333],[80.48515,42.94536],[80.41442,42.98506],[80.39176,42.99711],[80.38078,43.02222],[80.39176,43.02723],[80.39794,43.0453],[80.40893,43.05785],[80.457,43.07591],[80.4824,43.07039],[80.53665,43.09947],[80.54969,43.09847],[80.56068,43.11552],[80.57373,43.12103],[80.58746,43.13707],[80.60257,43.13556],[80.61424,43.14358],[80.62728,43.14057],[80.63552,43.14709],[80.64308,43.14458],[80.66024,43.15059],[80.6726,43.14408],[80.70419,43.14658],[80.71449,43.13456],[80.72479,43.13356],[80.74264,43.14608],[80.7653,43.14558],[80.78453,43.14007],[80.7962,43.17413],[80.80719,43.17764],[80.7859,43.20267],[80.77972,43.22169],[80.78865,43.2382],[80.76255,43.2682],[80.77285,43.2797],[80.77079,43.2937],[80.78041,43.30969],[80.75294,43.31718],[80.6987,43.31768],[80.68222,43.33416],[80.7035,43.35064],[80.70694,43.36412],[80.72273,43.3751],[80.7344,43.39207],[80.73577,43.40953],[80.73646,43.43347],[80.75637,43.44843],[80.75294,43.46587],[80.68496,43.57939],[80.52154,43.82164],[80.51948,43.85631],[80.503,43.87562],[80.51124,43.88205],[80.50918,43.9063],[80.47347,43.93498],[80.48172,43.95773],[80.45906,43.97601],[80.44876,44.00664],[80.45494,44.02935],[80.44464,44.07525],[80.39314,44.11273],[80.40412,44.14279],[80.39657,44.19943],[80.4055,44.24962],[80.40481,44.29436],[80.39245,44.31205],[80.37666,44.41269],[80.36567,44.44162],[80.35057,44.46074],[80.34713,44.48377],[80.36842,44.50532],[80.36979,44.52882],[80.3849,44.56258],[80.39451,44.56796],[80.39108,44.59095],[80.40962,44.60855],[80.39657,44.63152],[80.36773,44.65497],[80.35057,44.66572],[80.33821,44.68964],[80.31211,44.70331],[80.23864,44.72136],[80.19058,44.75258],[80.19607,44.76038],[80.17204,44.7945],[80.1638,44.79986],[80.16792,44.80814],[80.16243,44.8135],[80.16861,44.82665],[80.16517,44.84175],[80.1535,44.84175],[80.14595,44.82568],[80.12672,44.82227],[80.11299,44.80863],[80.09582,44.81399],[80.05943,44.80766],[80.04707,44.80035],[80.03471,44.80473],[80.01892,44.79499],[79.99557,44.7906],[79.99351,44.80084],[79.999,44.82032],[79.94544,44.85148],[79.94613,44.86609],[79.96604,44.88214],[79.93171,44.88895],[79.91386,44.90111],[79.88639,44.89285],[79.88296,44.91181],[79.90493,44.92883],[79.9427,44.93855],[79.94407,44.95216],[79.95574,44.9541],[79.95643,44.95993],[79.96879,44.96674],[79.97566,44.96139],[79.98802,44.97937],[80.01136,44.98228],[80.03677,45.00365],[80.0457,45.00365],[80.056,45.01336],[80.09719,45.00705],[80.09376,45.02986],[80.08621,45.03374],[80.08758,45.04587],[80.11093,45.04684],[80.12535,45.03956],[80.13908,45.05557],[80.17135,45.03859],[80.1789,45.04296],[80.19264,45.0284],[80.20294,45.03083],[80.2153,45.02452],[80.23384,45.03277],[80.24002,45.02743],[80.26199,45.05363],[80.2922,45.06527],[80.32653,45.06964],[80.33477,45.05218],[80.34919,45.04005],[80.40275,45.04878],[80.40756,45.05848],[80.42541,45.06576],[80.44052,45.07691],[80.44395,45.08806],[80.43846,45.09824],[80.46318,45.1123],[80.4776,45.11472],[80.48927,45.12683],[80.51193,45.10745],[80.56205,45.11278],[80.59776,45.10454],[80.62454,45.11859],[80.63896,45.11472],[80.67466,45.12877],[80.68016,45.13361],[80.69595,45.13264],[80.70556,45.14427],[80.74333,45.15976],[80.7756,45.14378],[80.78865,45.15056],[80.83465,45.13991],[80.85937,45.12489],[80.87585,45.13119],[80.89508,45.12489],[80.92941,45.15638],[80.95207,45.16122],[80.95619,45.16848],[80.99601,45.1588],[81.03584,45.16654],[81.05506,45.17719],[81.0688,45.17284],[81.07429,45.1801],[81.08528,45.1951],[81.10862,45.19945],[81.10107,45.21735],[81.10588,45.22171],[81.1203,45.21445],[81.12991,45.21784],[81.13746,45.20961],[81.16424,45.20623],[81.16699,45.22509],[81.20613,45.23573],[81.22398,45.23718],[81.22055,45.24588],[81.23085,45.2483],[81.23771,45.24153],[81.26998,45.2367],[81.305,45.24588],[81.30638,45.2541],[81.36405,45.26038],[81.37573,45.25313],[81.38809,45.26908],[81.42173,45.28455],[81.43547,45.27778],[81.43615,45.26715],[81.45195,45.26183],[81.47941,45.27392],[81.5007,45.27971],[81.51855,45.28116],[81.52816,45.29372],[81.5316,45.30532],[81.57486,45.30966],[81.5673,45.32366],[81.58241,45.33139],[81.59133,45.34008],[81.61262,45.34104],[81.63185,45.35697],[81.65519,45.35069],[81.67785,45.35504],[81.67648,45.36517],[81.69502,45.36951],[81.71081,45.35841],[81.73347,45.36565],[81.73072,45.37385],[81.75682,45.37337],[81.7678,45.37674],[81.79458,45.36034],[81.80557,45.35504],[81.82823,45.33235],[81.83029,45.31594],[81.85638,45.30193],[81.85501,45.29566],[81.88453,45.2802],[81.9223,45.22848],[81.9429,45.2367],[81.97242,45.2338],[81.97929,45.23766],[81.9944,45.2338],[82.03834,45.24637],[82.04177,45.25362],[82.06581,45.24733],[82.08847,45.24685],[82.0816,45.23621],[82.0816,45.22074],[82.1022,45.20187],[82.11662,45.20284],[82.12554,45.21106],[82.15232,45.22316],[82.19009,45.22364],[82.21344,45.2338],[82.24502,45.23331],[82.26699,45.24008],[82.3027,45.22219],[82.313,45.22074],[82.3233,45.21058],[82.36106,45.20187],[82.38235,45.2009],[82.39334,45.1951],[82.45582,45.18687],[82.47436,45.17719],[82.56019,45.20332],[82.58079,45.21977],[82.58697,45.34442],[82.54165,45.42158],[82.44003,45.45964],[82.28073,45.53425],[82.27111,45.5506],[82.25738,45.61691],[82.27661,45.6318],[82.28416,45.6558],[82.28347,45.68603],[82.28759,45.70857],[82.31094,45.73638],[82.31643,45.76369],[82.33772,45.78141],[82.34664,45.79481],[82.34458,45.8398],[82.33017,45.88761],[82.34184,45.90673],[82.33429,45.93825],[82.3748,45.96499],[82.4105,45.96881],[82.42492,45.96737],[82.45582,45.97692],[82.51281,46.15462],[82.56774,46.24207],[82.61581,46.30994],[82.69271,46.44116],[82.73941,46.51682],[82.76756,46.59473],[82.77442,46.62633],[82.77374,46.65933],[82.7861,46.68195],[82.78747,46.69231],[82.863,46.80005],[82.87124,46.82825],[82.89527,46.88553],[82.91931,46.92822],[82.92137,46.95541],[82.92961,46.97275],[82.93029,46.9943],[82.93922,47.01771],[82.95158,47.02146],[82.96669,47.03503],[82.96943,47.0486],[82.99278,47.06497],[83.00926,47.11313],[83.00239,47.12107],[83.01818,47.13228],[83.01818,47.14302],[83.00926,47.14489],[83.0278,47.1645],[83.02436,47.18784],[83.02436,47.21677],[83.03329,47.22423],[83.0429,47.21583],[83.05114,47.22376],[83.08067,47.22796],[83.09303,47.22329],[83.12736,47.23215],[83.15139,47.23449],[83.17268,47.2205],[83.20426,47.21443],[83.20632,47.19904],[83.22212,47.18831],[83.23791,47.19017],[83.23448,47.18037],[83.25576,47.17524],[83.2846,47.17617],[83.28735,47.18224],[83.31825,47.17104],[83.3361,47.17057],[83.35327,47.17477],[83.36357,47.17851],[83.36563,47.1617],[83.38691,47.1491],[83.38691,47.14069],[83.41301,47.11733],[83.4288,47.11593],[83.4288,47.12294],[83.44253,47.12574],[83.45214,47.13181],[83.46862,47.12854],[83.46382,47.11967],[83.48236,47.11686],[83.48098,47.10892],[83.50776,47.10845],[83.51532,47.09583],[83.52836,47.09069],[83.5263,47.08602],[83.56613,47.079],[83.55926,47.0617],[83.5675,47.05702],[83.5778,47.0631],[83.60458,47.05421],[83.60595,47.04626],[83.61763,47.0486],[83.67942,47.0369],[83.69453,47.03643],[83.69934,47.01865],[83.70689,47.01724],[83.71238,47.02427],[83.73298,47.02707],[83.73848,47.03175],[83.74809,47.03129],[83.75633,47.02473],[83.76525,47.02754],[83.79409,47.01771],[83.81332,47.01537],[83.83804,47.00413],[83.83529,46.99477],[83.87031,46.99617],[83.871,46.98868],[83.90258,46.98212],[83.90396,46.97463],[83.92044,46.97509],[83.92524,46.98493],[83.95477,46.99102],[83.9582,46.98259],[83.98361,46.9943],[84.05571,46.96853],[84.05983,46.97228],[84.12574,46.96807],[84.15664,46.98072],[84.16694,46.99477],[84.20127,47.00179],[84.22462,46.99851],[84.23355,47.00086],[84.28848,46.99992],[84.30015,46.99336],[84.32762,47.0032],[84.3798,46.99851],[84.45465,47.00882],[84.46014,46.99289],[84.47799,46.98962],[84.48486,46.99196],[84.50889,46.97556],[84.51507,46.97978],[84.54116,46.984],[84.55558,46.9943],[84.58374,46.99992],[84.6318,46.99477],[84.66201,47.00179],[84.71008,47.00975],[84.75059,47.0046],[84.77668,46.99055],[84.78286,46.97322],[84.81582,46.95776],[84.82612,46.95963],[84.86183,46.9451],[84.85977,46.92729],[84.87968,46.9104],[84.9147,46.89023],[84.91607,46.87849],[84.92843,46.87521],[84.94285,46.86206],[84.96414,46.86676],[84.96414,46.87145],[84.97856,46.87427],[84.97169,46.88788],[84.97787,46.89117],[84.98268,46.91509],[85.00534,46.92588],[85.03555,46.92306],[85.04928,46.92916],[85.06851,46.92729],[85.07743,46.93291],[85.08361,46.94745],[85.07812,46.95776],[85.09529,46.95916],[85.09803,46.96572],[85.12825,46.97697],[85.12962,46.98118],[85.14679,46.98915],[85.16876,46.98727],[85.17562,46.9943],[85.17631,47.00413],[85.19073,47.00975],[85.21408,47.05187],[85.26351,47.05047],[85.27313,47.05655],[85.27381,47.06825],[85.29991,47.0645],[85.30815,47.05],[85.32325,47.04392],[85.34591,47.05421],[85.38162,47.04766],[85.40634,47.05375],[85.41252,47.06076],[85.4599,47.06263],[85.47981,47.05328],[85.50315,47.05515],[85.53337,47.05],[85.54573,47.05328],[85.55671,47.05141],[85.56633,47.06497],[85.57457,47.09396],[85.578,47.11172],[85.58555,47.11359],[85.57251,47.12434],[85.57525,47.13882],[85.6398,47.18504],[85.64941,47.20604],[85.6652,47.2163],[85.681,47.2205],[85.68855,47.24381],[85.67894,47.2508],[85.69404,47.27084],[85.69885,47.28854],[85.681,47.30856],[85.67413,47.31275],[85.67138,47.32113],[85.6858,47.33091],[85.68855,47.3658],[85.69679,47.36766],[85.70228,47.37928],[85.68786,47.39277],[85.68306,47.40578],[85.68374,47.43041],[85.66383,47.45038],[85.64941,47.45455],[85.61714,47.49168],[85.6089,47.51673],[85.61027,47.53528],[85.62812,47.55845],[85.62881,47.57837],[85.63568,47.58671],[85.55191,47.98256],[85.53817,47.9867],[85.54779,48.00738],[85.54092,48.01978],[85.52787,48.02575],[85.53131,48.04412],[85.54367,48.05284],[85.53611,48.07027],[85.54435,48.07945],[85.55259,48.12897],[85.5574,48.12668],[85.56152,48.13172],[85.55397,48.1386],[85.57113,48.15692],[85.58212,48.17203],[85.58486,48.19218],[85.61164,48.20545],[85.62263,48.20454],[85.63499,48.23244],[85.65216,48.24342],[85.65971,48.24068],[85.68306,48.27679],[85.68031,48.29096],[85.69198,48.30192],[85.69198,48.33069],[85.71395,48.34894],[85.71189,48.35944],[85.72494,48.36674],[85.75309,48.39501],[85.75515,48.40367],[85.78743,48.41735],[85.80734,48.41644],[85.82931,48.4251],[85.86158,48.43239],[85.88836,48.43011],[85.91239,48.43694],[86.06071,48.43785],[86.23512,48.43239],[86.2516,48.45288],[86.26808,48.45152],[86.2722,48.4588],[86.27975,48.46199],[86.28181,48.47201],[86.29692,48.47701],[86.29898,48.49067],[86.32026,48.48839],[86.32438,48.49431],[86.36627,48.49385],[86.36764,48.50068],[86.37725,48.50204],[86.37931,48.49294],[86.39167,48.4893],[86.39579,48.48066],[86.40609,48.47883],[86.58599,48.5407],[86.59698,48.55979],[86.59217,48.57524],[86.61895,48.59931],[86.63406,48.61021],[86.63475,48.62655],[86.67732,48.63563],[86.69174,48.64379],[86.68899,48.64788],[86.69929,48.65423],[86.69998,48.66919],[86.72676,48.68506],[86.74049,48.69775],[86.77139,48.72041],[86.77757,48.73672],[86.76796,48.75709],[86.7501,48.77927],[86.76109,48.80505],[86.79267,48.81816],[86.81877,48.83353],[86.81602,48.85613],[86.79748,48.87194],[86.78581,48.87284],[86.77757,48.88864],[86.75148,48.89632],[86.73774,48.91979],[86.73019,48.95091],[86.72538,48.98787],[86.74736,49.01175],[86.7707,49.02706],[86.83044,49.05047],[86.84692,49.06441],[86.84417,49.10084],[86.86065,49.11658],[86.87576,49.12062],[86.87782,49.12826],[86.89704,49.135],[86.93481,49.1323],[86.96571,49.135],[86.99249,49.14308],[87.02957,49.13814],[87.06596,49.12916],[87.08038,49.13185],[87.09137,49.13724],[87.10166,49.13994],[87.10166,49.15162],[87.15042,49.14982],[87.16896,49.13994],[87.1978,49.14263],[87.21565,49.12871],[87.21427,49.12152],[87.22663,49.11882],[87.23007,49.11433],[87.25067,49.11253],[87.26028,49.11568],[87.27401,49.11298],[87.27676,49.11837],[87.28157,49.11882],[87.29599,49.12961],[87.30217,49.14937],[87.28775,49.15611],[87.30354,49.16913],[87.29942,49.18529],[87.29049,49.20279],[87.31452,49.23149],[87.30491,49.23598],[87.27127,49.23284],[87.25479,49.24046],[87.2438,49.23687],[87.20535,49.25077],[87.17239,49.24674],[87.16552,49.24987],[87.14012,49.24629],[87.12638,49.2557],[87.03506,49.25077],[87.00416,49.29915],[86.97807,49.30184],[86.95816,49.31796],[86.96228,49.32467],[86.9506,49.3363],[86.9252,49.34838],[86.92451,49.3694],[86.93687,49.36896],[86.94923,49.38282],[86.93481,49.39801],[86.9458,49.40695],[86.93,49.42169],[86.91284,49.41722],[86.90734,49.42839],[86.86958,49.43509],[86.83731,49.45384],[86.83181,49.48374],[86.85585,49.49935],[86.84761,49.51495],[86.81671,49.53055],[86.82563,49.53768],[86.82975,49.5457],[86.77688,49.55684],[86.77688,49.56352],[86.75834,49.56218],[86.76246,49.56797],[86.72195,49.56931],[86.68281,49.56931],[86.68075,49.56174],[86.6526,49.56218],[86.61827,49.56931],[86.59629,49.60848],[86.60934,49.61515],[86.61346,49.62717],[86.63543,49.63206],[86.65535,49.64451],[86.65329,49.65251],[86.66496,49.66407],[86.68418,49.67073],[86.68693,49.67518],[86.69929,49.67829],[86.70204,49.68584],[86.71302,49.6854],[86.72538,49.67651],[86.73019,49.67784],[86.73637,49.68895],[86.75491,49.68984],[86.77207,49.69206],[86.77688,49.70094],[86.75422,49.74223],[86.76452,49.75066],[86.7659,49.7582],[86.77002,49.76308],[86.78375,49.79545],[86.735,49.78747],[86.68899,49.8114],[86.67457,49.80963],[86.65535,49.81273],[86.63818,49.80608],[86.59183,49.80819],[86.59767,49.78658],[86.61003,49.7715],[86.60316,49.74311],[86.57844,49.73291],[86.58256,49.72447],[86.52832,49.70228],[86.51115,49.69073],[86.49742,49.66807],[86.45141,49.63695],[86.42875,49.62939],[86.41571,49.60893],[86.37794,49.5978],[86.32713,49.5929],[86.32232,49.5978],[86.30928,49.5978],[86.27563,49.584],[86.26808,49.56842],[86.26876,49.54927],[86.23786,49.52387],[86.23031,49.49667],[86.20216,49.46633],[86.17538,49.47883],[86.17332,49.49667],[86.1589,49.50782],[86.10809,49.52699],[86.08612,49.52298],[86.04835,49.52654],[86.02226,49.50113],[85.9687,49.4873],[85.95016,49.50336],[85.95291,49.50737],[85.94398,49.5096],[85.93025,49.53412],[85.94604,49.54838],[85.94947,49.55639],[85.93093,49.56085],[85.92132,49.56397],[85.88974,49.56129],[85.8815,49.5653],[85.83343,49.54303],[85.81077,49.54838],[85.80528,49.55773],[85.8094,49.56575],[85.79429,49.56352],[85.78193,49.57332],[85.76751,49.56975],[85.7579,49.57643],[85.69679,49.56486],[85.67688,49.55105],[85.62606,49.58044],[85.62332,49.59825],[85.59654,49.61471],[85.58418,49.61249],[85.55397,49.59602],[85.49217,49.59736],[85.38917,49.63517],[85.32051,49.59068],[85.25733,49.58934],[85.26077,49.59869],[85.25528,49.60492],[85.26489,49.61827],[85.25322,49.62628],[85.22369,49.62361],[85.21133,49.62761],[85.21545,49.63695],[85.2024,49.6534],[85.21408,49.67429],[85.20584,49.71293],[85.21476,49.71648],[85.19691,49.73735],[85.20378,49.744],[85.177,49.75465],[85.16532,49.7684],[85.15228,49.76707],[85.14198,49.79722],[85.09872,49.82602],[85.10696,49.84196],[85.0843,49.85967],[85.05683,49.88622],[85.02388,49.89109],[84.98336,49.90922],[84.97856,49.94768],[84.99504,49.97021],[84.9765,49.97772],[84.99366,49.99008],[85.03212,50.00067],[85.03761,50.00862],[85.05203,50.0095],[85.03692,50.01832],[85.03692,50.05317],[84.96688,50.07036],[84.94903,50.09547],[84.92225,50.09151],[84.88792,50.10516],[84.85496,50.09503],[84.83299,50.10692],[84.8323,50.11441],[84.8117,50.12057],[84.8117,50.13686],[84.82475,50.14434],[84.8014,50.14742],[84.75677,50.13818],[84.73136,50.15578],[84.72793,50.1637],[84.69909,50.17821],[84.69429,50.19008],[84.6627,50.19536],[84.62219,50.21426],[84.58168,50.20942],[84.56657,50.19668],[84.54185,50.20723],[84.524,50.20811],[84.50546,50.23051],[84.44984,50.24808],[84.40727,50.20942],[84.38667,50.21689],[84.3647,50.20635],[84.32556,50.22832],[84.32006,50.2472],[84.2974,50.24983],[84.24865,50.29328],[84.27269,50.31916],[84.2617,50.32398],[84.272,50.33801],[84.26307,50.36473],[84.24453,50.37612],[84.23904,50.38925],[84.24385,50.39319],[84.22737,50.43083],[84.21569,50.43432],[84.20333,50.47018],[84.23355,50.48285],[84.23767,50.506],[84.24934,50.51517],[84.2308,50.53961],[84.19784,50.54223],[84.17106,50.55009],[84.17175,50.56404],[84.16694,50.56971],[84.15115,50.5732],[84.15527,50.58759],[84.14497,50.6059],[84.11544,50.60938],[84.10858,50.62289],[84.07768,50.63857],[84.07081,50.65642],[84.04884,50.6673],[84.04815,50.6734],[84.02343,50.69819],[83.98773,50.70733],[83.96644,50.72689],[83.95957,50.74036],[83.95065,50.74731],[83.95134,50.76252],[83.97399,50.77902],[83.96781,50.79942],[83.90945,50.81548],[83.89709,50.83152],[83.8758,50.8389],[83.87443,50.84757],[83.84697,50.85624],[83.83255,50.88007],[83.74397,50.89393],[83.71169,50.8935],[83.67942,50.91602],[83.68217,50.92251],[83.65676,50.94025],[83.6499,50.95193],[83.64097,50.95193],[83.63067,50.94458],[83.59977,50.96015],[83.58741,50.94674],[83.57231,50.95366],[83.53866,50.96145],[83.51051,50.94934],[83.50227,50.95323],[83.50502,50.97485],[83.48922,50.98047],[83.47274,50.97658],[83.44596,50.97788],[83.43086,50.98782],[83.44871,51.00986],[83.40477,51.01332],[83.37043,50.99949],[83.35945,51.00165],[83.35533,51.00857],[83.2949,51.00943],[83.28254,51.01548],[83.26744,51.00597],[83.22143,51.00208],[83.20495,50.99215],[83.18023,51.00252],[83.17474,51.01202],[83.12324,51.01159],[83.11157,50.96621],[83.09989,50.96231],[83.06488,50.93722],[83.00514,50.92554],[82.97973,50.88527],[82.96531,50.8922],[82.92823,50.89783],[82.91381,50.90779],[82.88909,50.90649],[82.88429,50.89826],[82.86369,50.90303],[82.83966,50.91861],[82.78953,50.92035],[82.73254,50.92727],[82.73254,50.90736],[82.71606,50.89567],[82.73117,50.85884],[82.73941,50.84974],[82.70851,50.83283],[82.71125,50.82459],[82.69958,50.81114],[82.67692,50.80853],[82.68104,50.80072],[82.66525,50.79204],[82.64946,50.79638],[82.62817,50.77989],[82.60414,50.77772],[82.565,50.74688],[82.53341,50.75209],[82.48603,50.74297],[82.47299,50.75731],[82.40844,50.76512],[82.39471,50.76035],[82.37617,50.77945],[82.3645,50.77815],[82.35763,50.78466],[82.35145,50.77468],[82.33017,50.76773],[82.31643,50.75383],[82.29515,50.76903],[82.27592,50.77207],[82.25738,50.76078],[82.24914,50.74731],[82.23953,50.74644],[82.22374,50.73645],[82.21756,50.74167],[82.20108,50.73515],[82.18734,50.73689],[82.17498,50.7321],[82.17292,50.74601],[82.14683,50.74775],[82.07817,50.75079],[82.05963,50.75774],[82.061,50.76643],[82.03422,50.76947],[82.01431,50.78727],[81.958,50.78814],[81.90582,50.79855],[81.8399,50.77945],[81.79458,50.77815],[81.78909,50.79508],[81.7884,50.81591],[81.77673,50.82068],[81.75682,50.78379],[81.72798,50.75991],[81.58241,50.74297],[81.52679,50.75166],[81.4492,50.75687],[81.4595,50.80246],[81.48559,50.82502],[81.47117,50.8389],[81.46911,50.86231],[81.43547,50.86274],[81.43341,50.87184],[81.42036,50.87227],[81.42036,50.88137],[81.44233,50.8896],[81.44371,50.91082],[81.43615,50.91082],[81.43409,50.9303],[81.41487,50.92944],[81.41143,50.97485],[81.30844,50.97572],[81.28784,50.97269],[81.27067,50.96534],[81.2384,50.96621],[81.19171,50.9502],[81.17935,50.95885],[81.156,50.95064],[81.06124,50.94761],[81.06674,50.97096],[81.08116,50.99647],[81.08734,51.02412],[81.09558,51.03275],[81.10176,51.06168],[81.1045,51.0647],[81.11686,51.06427],[81.14296,51.07894],[81.16287,51.12248],[81.17935,51.15652],[81.17454,51.18364],[81.1663,51.18536],[81.14639,51.2129],[81.11549,51.21032],[81.10244,51.1802],[81.04751,51.18149],[81.04614,51.18881],[80.92048,51.21978],[80.94108,51.25847],[80.90743,51.25718],[80.87448,51.27265],[80.74539,51.29842],[80.67741,51.31645],[80.63552,51.26277],[80.63415,51.20688],[80.49408,51.20387],[80.44601,51.20731],[80.43708,51.17245],[80.43914,51.11904],[80.45631,51.11861],[80.45631,51.11042],[80.48103,51.10869],[80.48309,50.97053],[80.46935,50.96275],[80.43708,50.95972],[80.4206,50.96188],[80.37735,50.92684],[80.32516,50.92727],[80.32379,50.91818],[80.2462,50.91861],[80.24345,50.89956],[80.1947,50.89913],[80.19195,50.85017],[80.18508,50.85017],[80.18508,50.82762],[80.08277,50.82806],[80.08346,50.85277],[80.06904,50.85364],[80.0608,50.82806],[80.07934,50.73341],[79.21005,51.89344],[79.19494,51.91377],[78.95942,52.16677],[78.71429,52.42964],[78.51585,52.65722],[78.27003,52.9209],[78.04618,53.13976],[77.90817,53.29066],[77.79281,53.35137],[77.45498,53.535],[77.2483,53.6426],[76.99836,53.76494],[76.77864,53.87439],[76.53762,53.99929],[76.53076,54.01261],[76.5026,54.03761],[76.49848,54.07268],[76.43463,54.121],[76.44012,54.16645],[76.58294,54.14996],[76.6159,54.16203],[76.6159,54.15439],[76.64543,54.12462],[76.67083,54.13347],[76.69418,54.14675],[76.75735,54.16122],[76.7498,54.18413],[76.791,54.1994],[76.81022,54.21707],[76.82807,54.2247],[76.83563,54.26281],[76.82945,54.27284],[76.86515,54.28687],[76.87271,54.29769],[76.87751,54.3013],[76.86172,54.36135],[76.81983,54.36775],[76.78619,54.36015],[76.78138,54.37815],[76.87477,54.39735],[76.87751,54.40294],[76.9345,54.41533],[76.9503,54.41773],[76.93656,54.42652],[76.94,54.4385],[76.9297,54.45766],[76.87133,54.44808],[76.84455,54.44009],[76.82739,54.42971],[76.79786,54.41813],[76.73057,54.41773],[76.73057,54.40414],[76.68937,54.37415],[76.67701,54.34455],[76.64817,54.33534],[76.60835,54.33654],[76.59874,54.34335],[76.57676,54.33934],[76.54792,54.32773],[76.47445,54.31812],[76.35086,54.33494],[76.25885,54.35775],[76.22932,54.32493],[76.18743,54.30009],[76.22726,54.27645],[76.2046,54.26041],[75.68923,54.12279],[75.68962,54.54458],[75.80566,54.5418],[75.82763,54.59951],[75.84892,54.60349],[75.85304,54.60826],[75.82489,54.66668],[75.80223,54.67303],[75.80154,54.68375],[75.80703,54.69129],[75.79948,54.69804],[75.78369,54.69447],[75.73562,54.70082],[75.73562,54.67541],[75.68412,54.67462],[75.6855,54.70439],[75.63812,54.81018],[75.61134,54.80662],[75.60241,54.82007],[75.54679,54.81611],[75.54954,54.79989],[75.54199,54.79949],[75.52825,54.80306],[75.49049,54.88332],[75.51452,54.9003],[75.51246,54.91372],[75.4438,54.91648],[75.44517,54.90346],[75.34629,54.90306],[75.33256,54.91096],[75.382,54.99022],[75.41084,54.99101],[75.36758,55.06657],[75.31471,55.06657],[75.31471,55.12747],[75.27557,55.12158],[75.26046,55.12864],[75.25016,55.14945],[75.29342,55.16945],[75.26664,55.19572],[75.27008,55.21453],[75.28037,55.22197],[75.27831,55.23176],[75.22407,55.28263],[75.20141,55.28654],[75.19935,55.32133],[75.17051,55.32758],[75.17669,55.35062],[75.09292,55.37598],[75.19111,55.42667],[75.16021,55.44926],[75.20965,55.47145],[75.31883,55.50452],[75.30304,55.54572],[75.28999,55.55116],[75.28999,55.55699],[75.28587,55.55776],[75.27694,55.54922],[75.26046,55.54922],[75.22132,55.54067],[75.1966,55.55233],[75.18493,55.56553],[75.1403,55.58494],[75.14785,55.59231],[75.16983,55.59891],[75.18562,55.61365],[75.1918,55.61558],[75.19592,55.61985],[75.22476,55.61985],[75.233,55.62528],[75.25566,55.62528],[75.24604,55.63768],[75.11627,55.68571],[75.11764,55.69152],[75.11352,55.69848],[75.12931,55.70931],[75.08743,55.72672],[75.10322,55.75571],[75.23094,55.73097],[75.36895,55.74141],[75.36552,55.80514],[75.34698,55.79973],[75.34286,55.81131],[75.33462,55.8117],[75.30304,55.83175],[75.26458,55.8333],[75.26252,55.84448],[75.3202,55.8961],[75.35522,55.91304],[75.41976,55.9342],[75.53443,56.00874],[75.52894,56.03138],[75.58181,56.03138],[75.59005,56.03867],[75.65666,56.03829],[75.68481,56.05631],[75.67932,56.07126],[75.73219,56.0977],[75.73493,56.11263],[75.95947,56.11799],[76.01921,56.16428],[76.07208,56.14822],[76.1071,56.15205],[76.12152,56.1574],[76.138,56.12259],[76.18125,56.13789],[76.22589,56.14669],[76.3021,56.15511],[76.30485,56.18187],[76.2355,56.21625],[76.20735,56.24106],[76.17782,56.27958],[76.12564,56.27157],[76.1071,56.2891],[76.08512,56.28948],[76.0865,56.29672],[76.10298,56.29939],[76.08032,56.32567],[76.08444,56.37209],[76.07894,56.40364],[76.05835,56.4158],[76.08993,56.42453],[76.12701,56.41845],[76.10984,56.44503],[76.08924,56.44275],[76.08718,56.44807],[76.07826,56.44997],[76.07551,56.45604],[76.04736,56.46362],[76.03706,56.45983],[76.02813,56.45831],[76.02676,56.46249],[76.02127,56.46211],[76.01989,56.45755],[76.02676,56.45338],[76.01783,56.44503],[76.00753,56.44579],[76.00616,56.45566],[75.98281,56.46362],[75.95947,56.44997],[75.9526,56.43972],[75.94368,56.44617],[75.92788,56.44427],[75.91827,56.43972],[75.91278,56.42453],[75.89424,56.41352],[75.89286,56.42073],[75.87501,56.41162],[75.86746,56.41352],[75.85853,56.412],[75.85784,56.40212],[75.85029,56.40174],[75.83038,56.41997],[75.8448,56.43896],[75.83587,56.44807],[75.84754,56.45907],[75.8345,56.47804],[75.85372,56.49548],[75.96153,56.5076],[76.01989,56.57083],[76.03912,56.61846],[76.10504,56.60901],[76.14006,56.61733],[76.16615,56.61884],[76.16683,56.62715],[76.15242,56.63886],[76.17301,56.65207],[76.29043,56.69696],[76.26434,56.81403],[76.24099,56.82643],[76.26434,56.885],[76.19705,56.94347],[76.09817,57.23521],[75.96427,57.39392],[75.85029,57.38615],[75.69854,57.62702],[75.55366,57.62518],[75.57701,57.87908],[75.56739,57.93308],[75.07576,58.11597],[75.23918,58.20364],[75.0579,58.33689],[75.36964,58.45671],[75.11146,58.57433],[75.19455,58.61763],[75.12657,58.66301],[75.39367,58.79667],[75.61683,58.90677],[75.67863,58.95213],[75.72326,58.9946],[75.72807,59.01794],[75.64361,59.20933],[75.83175,59.2764],[75.89973,59.39512],[75.98968,59.38008],[76.17782,59.52979],[76.42501,59.54162],[76.49368,59.54197],[76.65504,59.57015],[76.67152,59.58962],[76.65504,59.607],[76.67839,59.69027],[76.74018,59.70863],[76.76696,59.95776],[76.77452,59.98593],[76.76765,59.99658],[76.7601,60.0007],[76.7752,60.07135],[76.72302,60.11482],[76.72233,60.12132],[76.74018,60.12988],[76.77452,60.13706],[76.78138,60.14731],[76.79992,60.15141],[76.83357,60.1702],[76.83906,60.17703],[76.837,60.19854],[76.82739,60.20434],[76.84318,60.21935],[76.86172,60.24628],[76.86241,60.25991],[76.85691,60.26911],[76.85691,60.27523],[76.83357,60.30484],[76.79512,60.32626],[76.76765,60.33408],[76.77246,60.34292],[76.76353,60.35311],[76.77177,60.36465],[76.76284,60.37721],[76.77658,60.38875],[76.77452,60.39825],[76.80061,60.41419],[76.81297,60.43588],[76.81366,60.46432],[76.84181,60.46669],[76.8885,60.48124],[76.93931,60.49173],[76.97433,60.50627],[77.0272,60.50728],[77.06703,60.52722],[77.05398,60.57178],[77.05123,60.5873],[77.05398,60.60112],[77.05192,60.61831],[77.04025,60.62437],[77.0224,60.62134],[77.01004,60.62168],[76.98463,60.62808],[76.96815,60.62909],[76.97296,60.64087],[76.96128,60.65063],[76.9709,60.65265],[76.95854,60.66207],[77.0066,60.65097],[77.01347,60.65602],[76.986,60.6688],[76.99081,60.67116],[77.00798,60.66813],[77.01896,60.66947],[77.02995,60.68629],[77.01622,60.69301],[77.03407,60.69301],[77.09724,60.70578],[77.10479,60.73365],[77.11372,60.7454],[77.0993,60.75379],[77.08488,60.76888],[77.07046,60.78028],[77.07389,60.78564],[77.07046,60.79703],[77.089,60.80105],[77.09655,60.82349],[77.07733,60.82282],[77.08969,60.83085],[77.07733,60.83688],[77.07252,60.84256],[77.10617,60.85929],[77.19474,60.85628],[77.25723,60.84022],[77.31216,60.84123],[77.3513,60.82684],[77.41928,60.81244],[77.45979,60.81043],[77.50923,60.81746],[77.59574,60.82249],[77.70423,60.82048],[77.8656,60.78732],[77.96585,60.74272],[78.11004,60.79837],[78.23364,60.80072],[78.50349,60.7672],[78.67172,60.81981],[78.71429,60.82684],[78.73489,60.81746],[78.73489,60.80273],[78.75412,60.78966],[78.78158,60.78732],[78.78845,60.77492],[78.78295,60.76419],[78.79394,60.75379],[78.80424,60.75714],[78.80767,60.76687],[78.8269,60.77056],[78.84956,60.7672],[78.8887,60.78061],[78.8935,60.78832],[78.91067,60.79904],[78.92372,60.79636],[78.93264,60.79804],[78.94706,60.79703],[78.95256,60.79737],[78.95668,60.81144],[78.96904,60.81311],[78.97865,60.81981],[78.99375,60.81813],[78.98757,60.80775],[79.00749,60.80876],[79.02465,60.80474],[79.04113,60.81445],[79.04251,60.82249],[79.05487,60.82115],[79.05349,60.81311],[79.06997,60.80842],[79.09263,60.80775],[79.10018,60.8188],[79.12422,60.81244],[79.13108,60.81813],[79.14482,60.81479],[79.1613,60.82316],[79.18876,60.82717],[79.19426,60.82182],[79.21211,60.82784],[79.2176,60.82583],[79.21348,60.8188],[79.25743,60.81746],[79.25811,60.80876],[79.28627,60.8044],[79.30549,60.79569],[79.29588,60.78564],[79.3,60.77592],[79.28146,60.76553],[79.29863,60.75278],[79.2897,60.73399],[79.29725,60.72459],[79.30137,60.70276],[79.31648,60.69671],[79.33845,60.69435],[79.33708,60.68494],[79.3563,60.66342],[79.37347,60.65905],[79.38446,60.64592],[79.40849,60.64323],[79.50324,60.66544],[79.56848,60.67418],[79.63989,60.68393],[79.67216,60.68461],[79.69963,60.68629],[79.94476,60.66779],[80.05188,60.67149],[80.19813,60.67048],[80.42129,60.74607],[80.63484,60.76352],[80.72067,60.79804],[80.99189,60.76653],[81.05506,60.74943],[81.08459,60.6688],[81.10313,60.65938],[81.1148,60.63683],[81.47117,60.60416],[81.59545,60.63717],[81.88797,60.63447],[82.16743,60.51675],[82.40638,60.60887],[82.37823,60.70679],[82.80532,60.88369],[83.15689,61.02637],[83.47274,61.03302],[83.94722,60.83453],[84.00215,60.84256],[84.19029,60.85828],[84.21569,60.86564],[84.24179,60.86263],[84.27406,60.86531],[84.3901,60.90273],[84.53842,60.95744],[84.6524,61.00174],[84.75059,61.01971],[84.87831,61.0523],[84.97718,61.08684],[85.09323,61.11804],[85.223,61.15085],[85.30265,61.17768],[85.51757,61.23886],[85.68786,61.28541],[85.69473,61.29761],[85.69473,61.32003],[85.63774,61.36843],[85.80047,61.45484],[85.96252,61.46042],[85.97282,61.47387],[85.95909,61.54396],[85.92613,61.56097],[85.84648,61.593],[85.71601,61.57372],[85.49148,61.61814],[85.37818,61.69703],[85.33287,61.69508],[85.26901,61.67814],[85.24704,61.68433],[85.23056,61.6954],[85.18455,61.70191],[85.15159,61.7133],[85.07537,61.7507],[85.00396,61.76435],[84.91333,61.79033],[84.88517,61.78481],[84.83779,61.76987],[84.76089,61.7887],[84.67506,61.80428],[84.64553,61.82212],[84.62905,61.8393],[84.63043,61.85809],[84.6064,61.87492],[84.5391,61.90469],[84.51576,61.9257],[84.5082,61.95283],[84.5137,61.98413],[84.50683,62.00799],[84.47868,62.02668],[84.49035,62.03763],[84.47868,62.05404],[84.47456,62.0846],[84.47387,62.11865],[84.43885,62.18985],[84.47044,62.20491],[84.50546,62.22859],[84.59541,62.31326],[84.69772,62.39418],[84.74441,62.40564],[84.83779,62.43901],[84.89685,62.47426],[84.92363,62.48092],[84.94079,62.48156],[84.92637,62.48727],[84.93324,62.49044],[84.92569,62.49488],[84.9353,62.49773],[84.9353,62.50376],[84.94216,62.50914],[84.92157,62.51707],[84.92157,62.52657],[84.91264,62.52657],[84.8941,62.55127],[84.90989,62.5481],[84.91401,62.55792],[84.92363,62.56235],[84.925,62.5712],[84.94354,62.5769],[84.94834,62.58765],[84.96757,62.59207],[84.98611,62.59207],[85.02456,62.60756],[85.03418,62.61766],[85.04585,62.6164],[85.04928,62.62208],[85.08361,62.6265],[85.10421,62.64071],[85.08087,62.64418],[85.07537,62.65364],[85.06301,62.65459],[85.06439,62.65837],[85.07812,62.67099],[85.12207,62.68643],[85.11383,62.70029],[85.12001,62.70722],[85.14404,62.70942],[85.15022,62.71509],[85.1564,62.72547],[85.18249,62.74246],[85.20858,62.78614],[85.22163,62.80121],[85.25047,62.81156],[85.30677,62.85044],[85.36514,62.87863],[85.41732,62.88238],[85.4496,62.8827],[85.48942,62.89115],[85.4956,62.90272],[85.51689,62.90272],[85.52307,62.93461],[85.53543,62.94523],[85.50865,62.96864],[85.50521,62.97987],[85.55603,62.99983],[85.56839,63.00108],[85.57319,63.00856],[85.59585,63.01604],[85.6192,63.0369],[85.60134,63.04935],[85.59585,63.0478],[85.57251,63.06584],[85.578,63.06771],[85.59997,63.06149],[85.59928,63.07144],[85.56358,63.10128],[85.54161,63.09973],[85.53062,63.1019],[85.52993,63.10873],[85.52307,63.11432],[85.53131,63.12271],[85.52032,63.13295],[85.49972,63.14101],[85.50659,63.15745],[85.49629,63.17636],[85.49903,63.18039],[85.51139,63.18132],[85.53199,63.20268],[85.55328,63.20175],[85.56152,63.21475],[85.57869,63.2262],[85.55259,63.23981],[85.55946,63.25032],[85.58349,63.26206],[85.5828,63.26515],[85.57045,63.26824],[85.58006,63.28028],[85.57113,63.28213],[85.58486,63.29139],[85.59173,63.29047],[85.60409,63.29787],[85.63705,63.30281],[85.63018,63.30651],[85.64048,63.317],[85.6549,63.31946],[85.65147,63.32624],[85.69953,63.33302],[85.69198,63.34658],[85.69747,63.35798],[85.68031,63.37583],[85.65971,63.37675],[85.63362,63.37029],[85.6295,63.37521],[85.57045,63.3786],[85.50315,63.36875],[85.49285,63.35859],[85.44204,63.36413],[85.41389,63.36475],[85.40702,63.38475],[85.38642,63.39859],[85.37269,63.39336],[85.36788,63.39398],[85.36651,63.40628],[85.41046,63.41642],[85.41389,63.42379],[85.39329,63.42963],[85.40634,63.43239],[85.42007,63.43301],[85.37406,63.44897],[85.38986,63.46186],[85.38368,63.46983],[85.35621,63.47167],[85.33493,63.49834],[85.31089,63.50263],[85.29441,63.51917],[85.28617,63.5207],[85.27244,63.50937],[85.24635,63.50478],[85.24223,63.49865],[85.23124,63.49896],[85.21957,63.5207],[85.20927,63.52131],[85.19897,63.5106],[85.1873,63.51151],[85.1873,63.52009],[85.1564,63.52499],[85.13168,63.52009],[85.12413,63.52529],[85.10421,63.52682],[85.1049,63.53111],[85.09185,63.53294],[85.08773,63.52744],[85.07057,63.53478],[85.08293,63.54824],[85.05958,63.56261],[85.08087,63.56292],[85.06439,63.57331],[85.05409,63.57453],[85.03006,63.58706],[85.04585,63.59164],[85.06851,63.59011],[85.13443,63.56384],[85.1564,63.56414],[85.1509,63.57606],[85.16807,63.59164],[85.18592,63.61026],[85.19622,63.60294],[85.20858,63.6066],[85.20652,63.62033],[85.21133,63.62552],[85.23674,63.62644],[85.26077,63.63375],[85.29235,63.64869],[85.28892,63.66271],[85.30746,63.66484],[85.31776,63.68433],[85.32119,63.7032],[85.33767,63.71567],[85.31639,63.71719],[85.31021,63.72296],[85.32188,63.7336],[85.32463,63.7494],[85.33836,63.7582],[85.36377,63.76002],[85.37475,63.76731],[85.35141,63.77429],[85.34385,63.77975],[85.36582,63.78946],[85.326,63.79704],[85.33287,63.80886],[85.37406,63.83854],[85.35553,63.84732],[85.35827,63.85247],[85.38574,63.85156],[85.39054,63.86366],[85.43449,63.86245],[85.46951,63.8688],[85.47569,63.88543],[85.46539,63.90084],[85.47981,63.91775],[85.49491,63.9262],[85.58624,63.94702],[85.63293,63.95426],[85.67619,63.97234],[85.70022,63.99071],[85.75035,64.00125],[85.76683,64.00908],[85.83206,64.02712],[85.8966,64.04216],[85.96527,64.05478],[85.96183,64.0767],[85.93093,64.13008],[85.96733,64.16631],[85.98518,64.21085],[86.01539,64.25414],[86.00647,64.27948],[85.98655,64.31045],[85.92887,64.38091],[85.92819,64.42807],[85.80665,64.49704],[85.81558,64.51034],[85.87532,64.5505],[85.9069,64.57881],[85.90621,64.59384],[85.89317,64.60386],[85.8197,64.6856],[85.82382,64.78407],[85.73867,64.82178],[85.73318,64.82879],[85.71464,64.8285],[85.68992,64.83259],[85.66452,64.84047],[85.63087,64.84134],[85.59173,64.84864],[85.54573,64.85127],[85.4853,64.83492],[85.45028,64.83405],[85.44685,64.82441],[85.41183,64.8098],[85.39398,64.81301],[85.39054,64.80629],[85.34385,64.79226],[85.30883,64.79197],[85.30403,64.79577],[85.27038,64.79635],[85.2539,64.78729],[85.21682,64.78582],[85.1921,64.7788],[85.1976,64.77383],[85.18661,64.77149],[85.177,64.77471],[85.1461,64.76593],[85.1358,64.77207],[85.14061,64.77412],[85.12962,64.78933],[85.13923,64.79986],[85.1152,64.80191],[85.13923,64.82178],[85.12962,64.82937],[85.13374,64.83988],[85.11108,64.8358],[85.10215,64.83551],[85.06713,64.82704],[85.03006,64.83755],[85.02044,64.83667],[85.01014,64.82441],[84.99504,64.82528],[84.98886,64.82937],[84.99229,64.84339],[84.9662,64.84426],[84.94148,64.85448],[84.93392,64.86789],[84.93667,64.87402],[84.96551,64.88393],[84.98199,64.88509],[84.99641,64.89762],[84.99023,64.91422],[84.99984,64.92092],[85.01289,64.91568],[85.04173,64.92674],[84.98611,64.94884],[84.94628,64.95582],[84.92019,64.96628],[84.9147,64.9628],[84.90852,64.94913],[84.85496,64.95786],[84.84809,64.96163],[84.81788,64.96309],[84.79591,64.9503],[84.7705,64.95146],[84.74647,64.94186],[84.72312,64.9439],[84.68536,64.93488],[84.67849,64.93808],[84.64897,64.93139],[84.62699,64.93401],[84.59678,64.92325],[84.54666,64.91743],[84.49241,64.91801],[84.48211,64.92179],[84.46907,64.92063],[84.43542,64.91975],[84.42443,64.9247],[84.42306,64.91743],[84.40864,64.91451],[84.40177,64.91684],[84.40589,64.92761],[84.39491,64.9343],[84.38255,64.93343],[84.38392,64.92179],[84.36195,64.91772],[84.36058,64.91189],[84.3544,64.90724],[84.34822,64.90869],[84.3489,64.91335],[84.33654,64.92412],[84.32281,64.93052],[84.31251,64.92819],[84.318,64.92237],[84.29534,64.91713],[84.29603,64.92645],[84.28504,64.93983],[84.27269,64.94216],[84.25346,64.94274],[84.25346,64.95175],[84.27543,64.95786],[84.29603,64.96105],[84.30152,64.96309],[84.29466,64.98023],[84.29946,64.98342],[84.31938,64.97994],[84.33998,64.98632],[84.3235,64.98981],[84.31182,64.99619],[84.31182,65.00113],[84.34547,64.99735],[84.34684,65.00055],[84.34822,65.01215],[84.36538,65.01998],[84.34959,65.02317],[84.36882,65.03679],[84.38598,65.06257],[84.37156,65.06547],[84.34822,65.05157],[84.34204,65.06113],[84.35096,65.07444],[84.3441,65.08572],[84.32281,65.09209],[84.31938,65.08688],[84.33242,65.07675],[84.29603,65.06286],[84.28504,65.06663],[84.2871,65.07791],[84.27955,65.08515],[84.2823,65.10105],[84.32006,65.1337],[84.39147,65.20406],[84.43061,65.22277],[84.51301,65.2337],[84.55146,65.26072],[84.55764,65.31928],[84.53773,65.35166],[84.49653,65.40201],[84.49722,65.41658],[84.52468,65.43429],[84.52468,65.45626],[84.51095,65.48192],[84.47181,65.50299],[84.43748,65.5158],[84.43679,65.53174],[84.42237,65.54595],[84.39422,65.54965],[84.31388,65.55021],[84.30152,65.56186],[84.27131,65.57209],[84.19853,65.58061],[84.1745,65.59026],[84.27818,65.61777],[84.28161,65.6274],[84.272,65.63788],[84.2871,65.65431],[84.2823,65.65997],[84.26651,65.66506],[84.28436,65.67355],[84.28436,65.68345],[84.21501,65.6874],[84.16694,65.69475],[84.14222,65.7021],[84.123,65.71566],[84.04403,65.74981],[84.0303,65.76531],[83.99734,65.78222],[83.94241,65.78729],[83.81607,65.78588],[83.6808,65.77546],[83.58055,65.76278],[83.5469,65.76644],[83.48304,65.80924],[83.4851,65.82162],[83.52905,65.84523],[83.52905,65.84861],[83.50021,65.86237],[83.50158,65.87247],[83.51051,65.88061],[83.54415,65.89828],[83.51738,65.90754],[83.5057,65.91987],[83.45558,65.92575],[83.43017,65.92631],[83.39103,65.94227],[83.3773,65.94283],[83.33541,65.95962],[83.33953,65.97528],[83.34503,65.97668],[83.34503,65.98227],[83.33747,65.98618],[83.32649,65.98394],[83.31825,65.99121],[83.32511,65.99651],[83.30932,65.99847],[83.31207,66.00685],[83.30383,66.01355],[83.31344,66.01606],[83.30658,66.02248],[83.31481,66.02638],[83.30658,66.03057],[83.30452,66.03726],[83.28803,66.03754],[83.28323,66.04089],[83.30246,66.0526],[83.30383,66.06096],[83.32855,66.06904],[83.33267,66.07655],[83.34571,66.08212],[83.36219,66.07989],[83.3773,66.08017],[83.37112,66.11022],[83.34297,66.11161],[83.34228,66.11384],[83.35327,66.11829],[83.37043,66.1219],[83.38623,66.11857],[83.40271,66.12524],[83.42948,66.13274],[83.4391,66.13079],[83.4597,66.14052],[83.50433,66.15051],[83.53317,66.1741],[83.51669,66.19101],[83.24546,66.38018],[83.11363,66.4008],[83.07449,66.46313],[83.08891,66.58976],[83.12187,66.60231],[83.15895,66.59276],[83.17062,66.59658],[83.17611,66.59985],[83.18916,66.59576],[83.1974,66.59904],[83.19465,66.60449],[83.19946,66.61403],[83.23448,66.61566],[83.2695,66.63964],[83.2901,66.64454],[83.31619,66.64481],[83.33541,66.64699],[83.34709,66.64726],[83.35052,66.66005],[83.32992,66.66929],[83.32168,66.66821],[83.31207,66.66522],[83.30452,66.66685],[83.30932,66.68098],[83.29628,66.69376],[83.29902,66.70028],[83.28117,66.69946],[83.27362,66.70652],[83.26263,66.70353],[83.2592,66.70734],[83.264,66.71032],[83.25508,66.72308],[83.20289,66.73691],[83.18779,66.75074],[83.19465,66.77052],[83.12049,66.83975],[83.09783,66.83786],[83.05938,66.84164],[83.02986,66.8546],[83.03878,66.86863],[82.4105,67.1134],[82.14202,67.21626],[82.15507,67.21919],[82.15988,67.22743],[82.1379,67.23992],[82.14546,67.24496],[82.1743,67.24496],[82.21893,67.24948],[82.25738,67.26726],[82.2615,67.26328],[82.25807,67.25585],[82.26631,67.25558],[82.27661,67.26196],[82.28073,67.25187],[82.29652,67.25213],[82.30544,67.24284],[82.31437,67.24178],[82.31849,67.24364],[82.31162,67.25797],[82.29377,67.26434],[82.30544,67.27708],[82.30064,67.28291],[82.28691,67.28556],[82.26974,67.2853],[82.25463,67.28159],[82.2409,67.28609],[82.24571,67.29246],[82.24159,67.29749],[82.25395,67.29829],[82.28485,67.29458],[82.29171,67.30571],[82.3027,67.30491],[82.33291,67.31153],[82.36999,67.3171],[82.37754,67.32054],[82.36587,67.32821],[82.35076,67.32795],[82.35145,67.32927],[82.36038,67.33748],[82.35488,67.34065],[82.33978,67.33404],[82.32536,67.33377],[82.30819,67.34277],[82.30339,67.35017],[82.30819,67.35493],[82.33772,67.34858],[82.35763,67.35255],[82.35076,67.35757],[82.30682,67.36286],[82.31918,67.37317],[82.30544,67.38109],[82.31918,67.38399],[82.32536,67.3898],[82.31094,67.39614],[82.2924,67.38901],[82.28759,67.39139],[82.28965,67.39587],[82.27523,67.40432],[82.25051,67.40353],[82.24983,67.4088],[82.25601,67.41592],[82.27111,67.41935],[82.29583,67.41671],[82.29995,67.41961],[82.2821,67.43121],[82.26974,67.43095],[82.26631,67.43227],[82.2821,67.43701],[82.29927,67.43833],[82.29995,67.44043],[82.29103,67.44597],[82.29377,67.45044],[82.31094,67.44886],[82.31986,67.4407],[82.32673,67.44597],[82.31025,67.45413],[82.30888,67.45992],[82.3487,67.45729],[82.35763,67.45939],[82.35214,67.46281],[82.35694,67.4686],[82.37068,67.46966],[82.39471,67.46545],[82.39677,67.46966],[82.39128,67.47465],[82.40089,67.48123],[82.37411,67.48701],[82.40638,67.50278],[82.41737,67.50278],[82.42561,67.50646],[82.41531,67.5146],[82.41462,67.5335],[82.38372,67.52642],[82.37548,67.52484],[82.37548,67.52904],[82.40364,67.55318],[82.38166,67.54688],[82.34664,67.54505],[82.33291,67.53403],[82.32192,67.53482],[82.31849,67.55265],[82.30819,67.5558],[82.29377,67.53534],[82.27043,67.55501],[82.25738,67.55894],[82.27111,67.56681],[82.25051,67.57126],[82.23197,67.57257],[82.21756,67.56969],[82.1997,67.57755],[82.20108,67.582],[82.17498,67.58593],[82.17361,67.58959],[82.20039,67.59221],[82.15232,67.60084],[82.16056,67.6066],[82.1585,67.60843],[82.13241,67.60738],[82.14546,67.61549],[82.14134,67.61732],[82.11662,67.61758],[82.10357,67.6249],[82.09465,67.63483],[82.06787,67.64946],[82.06787,67.66016],[82.08297,67.66303],[82.09121,67.65729],[82.10632,67.6586],[82.09671,67.66799],[82.11799,67.66825],[82.10495,67.67843],[82.1331,67.67973],[82.13516,67.69172],[82.09671,67.68521],[82.08847,67.69042],[82.10426,67.69824],[82.09877,67.70553],[82.10426,67.71022],[82.11662,67.70814],[82.12417,67.70996],[82.12074,67.72038],[82.09602,67.72246],[82.08641,67.73027],[82.09465,67.73599],[82.07885,67.74067],[82.06031,67.73729],[82.04383,67.7503],[82.04246,67.75939],[82.02186,67.75601],[82.01499,67.75185],[81.98959,67.75809],[82.00058,67.76667],[81.98066,67.76459],[81.96762,67.77966],[81.93878,67.78173],[81.93672,67.79056],[81.91337,67.79004],[81.89209,67.8012],[81.9017,67.80561],[81.89827,67.80872],[81.88316,67.81002],[81.88797,67.81702],[81.86187,67.83335],[81.84402,67.83671],[81.83235,67.85044],[81.81449,67.85795],[81.81243,67.86545],[81.79527,67.87709],[81.80488,67.88639],[81.79458,67.89053],[81.76506,67.89131],[81.74926,67.90138],[81.74995,67.91688],[81.75682,67.92617],[81.75682,67.93313],[81.75888,67.94345],[81.76849,67.94654],[81.80145,67.93881],[81.81861,67.93236],[81.84539,67.93081],[81.87972,67.94526],[81.96556,67.95814],[82.00607,67.95531],[82.07061,67.94061],[82.10975,67.93907],[82.19764,67.93391],[82.25463,67.93752],[82.33085,67.93391],[82.35145,67.93804],[82.38716,67.96716],[82.38372,67.97978],[82.37136,67.99419],[82.37342,68.04765],[82.38304,68.0751],[82.36724,68.08689],[82.35076,68.10789],[82.3645,68.12632],[82.39677,68.13782],[82.56019,68.18125],[82.54303,68.19758],[82.53135,68.21466],[82.5595,68.26353],[82.57736,68.2737],[82.62336,68.27802],[82.65083,68.28819],[82.68585,68.34375],[82.70988,68.37768],[82.71606,68.39918],[82.70851,68.44564],[82.69958,68.47488],[82.66937,68.51088],[82.64602,68.52873],[82.62474,68.55461],[82.62199,68.57443],[82.62611,68.58947],[82.67143,68.61903],[82.70439,68.62704],[82.81288,68.6423],[82.85751,68.6583],[82.87193,68.67479],[82.86712,68.70972],[82.84858,68.73464],[82.817,68.75505],[82.67829,68.79383],[82.60894,68.81071],[82.55744,68.83254],[82.55744,68.85162],[82.55127,68.88331],[82.51762,68.94926],[82.48397,68.98746],[82.45307,69.00518],[82.4263,69.01748],[82.38853,69.02411],[82.34115,69.02805],[82.32604,69.04033],[82.32261,69.05285],[82.32398,69.0612],[82.34664,69.07322],[82.43316,69.08008],[82.46475,69.08793],[82.46818,69.10116],[82.48603,69.109],[82.4826,69.12001],[82.46131,69.12564],[82.45101,69.13567],[82.45994,69.15327],[82.38784,69.17501],[82.36999,69.17354],[82.32673,69.17305],[82.29103,69.16744],[82.1688,69.15791],[82.1331,69.17183],[82.10014,69.18062],[82.02323,69.19355],[81.98135,69.19575],[81.93466,69.19282],[81.88316,69.19258],[81.85569,69.20014],[81.83166,69.21208],[81.80145,69.24666],[81.80419,69.26295],[81.86119,69.29478],[81.92024,69.32123],[81.95663,69.34449],[81.95594,69.35635],[81.93122,69.37039],[81.90033,69.38031],[81.77948,69.43947],[81.73759,69.45032],[81.70738,69.46068],[81.6394,69.42186],[81.64833,69.36725],[81.63597,69.34667],[81.62155,69.3348],[81.62773,69.32826],[81.66961,69.32219],[81.62498,69.29381],[81.5213,69.26076],[81.45813,69.25128],[81.41899,69.25006],[81.40388,69.25809],[81.38946,69.27292],[81.35375,69.28385],[81.32835,69.28118],[81.29608,69.27219],[81.25213,69.26854],[81.2178,69.25931],[81.20338,69.2452],[81.18003,69.23984],[81.15669,69.23838],[81.13266,69.23473],[81.10862,69.22475],[81.06468,69.22158],[81.03035,69.21159],[81.01318,69.21037],[80.95893,69.19599],[80.95138,69.20282],[80.94314,69.19819],[80.93833,69.19916],[80.93147,69.20526],[80.93833,69.21135],[80.90331,69.22986],[80.90743,69.23157],[80.91911,69.23011],[80.94108,69.23278],[80.94039,69.23863],[80.92598,69.23936],[80.91361,69.23668],[80.89439,69.2396],[80.88958,69.23717],[80.88134,69.23911],[80.87585,69.24666],[80.84564,69.25444],[80.82984,69.26733],[80.81474,69.26684],[80.80375,69.26879],[80.79277,69.28118],[80.77766,69.28579],[80.77011,69.29672],[80.76599,69.31516],[80.75843,69.31346],[80.75912,69.30934],[80.75225,69.30376],[80.71723,69.30691],[80.709,69.31468],[80.69801,69.31468],[80.6932,69.31177],[80.67741,69.31298],[80.6623,69.30886],[80.64651,69.30983],[80.63415,69.30425],[80.62248,69.30716],[80.60394,69.30303],[80.57991,69.31152],[80.56961,69.31104],[80.5545,69.30376],[80.54077,69.30352],[80.5339,69.31346],[80.49064,69.32026],[80.46867,69.31686],[80.44944,69.31783],[80.44738,69.32656],[80.43159,69.32826],[80.39382,69.32341],[80.38627,69.32995],[80.36911,69.32559],[80.36155,69.32559],[80.34645,69.32995],[80.30731,69.33068],[80.30044,69.33262],[80.30113,69.3365],[80.29563,69.33892],[80.27504,69.34183],[80.25787,69.34837],[80.24963,69.35635],[80.16723,69.3595],[80.14801,69.3566],[80.12191,69.34619],[80.10269,69.352],[80.12191,69.36192],[80.10131,69.36676],[80.07865,69.35563],[80.04982,69.35321],[80.0299,69.36604],[79.9839,69.35635],[79.95643,69.35563],[79.95643,69.34328],[79.91386,69.34764],[79.90219,69.35805],[79.89051,69.35878],[79.87472,69.35418],[79.86167,69.36023],[79.85,69.3566],[79.84108,69.34861],[79.82391,69.34715],[79.81842,69.35587],[79.84726,69.36749],[79.84863,69.37499],[79.82322,69.3849],[79.80468,69.38563],[79.79438,69.38998],[79.76898,69.39239],[79.76417,69.39699],[79.79644,69.418],[79.79301,69.42307],[79.7628,69.42934],[79.73877,69.41655],[79.72847,69.41703],[79.70718,69.42644],[79.67079,69.42669],[79.66392,69.43199],[79.69482,69.44309],[79.63028,69.45152],[79.63165,69.45755],[79.64607,69.46261],[79.6495,69.46887],[79.63851,69.47754],[79.62204,69.48018],[79.60693,69.47537],[79.59457,69.48476],[79.62341,69.50015],[79.61036,69.51626],[79.5877,69.52491],[79.58496,69.54315],[79.55955,69.56306],[79.54307,69.59014],[79.53277,69.58942],[79.51492,69.59062],[79.50393,69.59565],[79.46685,69.60091],[79.46273,69.60402],[79.4696,69.60689],[79.49775,69.60929],[79.51698,69.62148],[79.51286,69.62937],[79.50118,69.63272],[79.47029,69.62961],[79.46479,69.63344],[79.47647,69.64467],[79.46273,69.65565],[79.43527,69.65565],[79.4181,69.64825],[79.3927,69.64538],[79.37553,69.65541],[79.35699,69.65446],[79.34806,69.65016],[79.33708,69.65135],[79.31854,69.66042],[79.29931,69.66543],[79.29382,69.67522],[79.28215,69.67808],[79.2691,69.67951],[79.24438,69.67712],[79.22515,69.67879],[79.20936,69.68332],[79.19288,69.68118],[79.17846,69.68308],[79.13864,69.68475],[79.12147,69.69595],[79.11392,69.6931],[79.09538,69.695],[79.07959,69.68714],[79.06173,69.68785],[79.05761,69.69262],[79.06516,69.69881],[79.0892,69.70382],[79.10636,69.71477],[79.14138,69.71453],[79.16061,69.72072],[79.16473,69.73381],[79.15992,69.74118],[79.14894,69.74474],[79.12902,69.7388],[79.11735,69.73975],[79.10499,69.74403],[79.11117,69.7514],[79.10911,69.76161],[79.12628,69.7704],[79.1249,69.7761],[79.11804,69.78013],[79.04251,69.79911],[79.02328,69.80148],[79.01641,69.80788],[79.02191,69.81286],[79.05555,69.81878],[79.0631,69.82494],[79.05761,69.83062],[78.99238,69.84104],[78.98345,69.84624],[78.9711,69.84719],[78.95736,69.8453],[78.94294,69.84553],[78.93333,69.85097],[78.92372,69.85168],[78.92509,69.85357],[78.9141,69.86563],[78.9196,69.87579],[78.96423,69.87532],[78.98071,69.87603],[79.04182,69.89398],[79.05624,69.90247],[79.07203,69.9204],[79.09057,69.92841],[79.13452,69.93477],[79.16954,69.94443],[79.18464,69.95267],[79.17984,69.96185],[79.18945,69.96608],[79.22172,69.96961],[79.22515,69.97243],[79.21623,69.9809],[79.20318,69.98607],[79.18396,69.98489],[79.18464,69.98795],[79.19906,69.99405],[79.18945,69.99687],[79.16198,69.99711],[79.13726,69.99382],[79.12765,69.99899],[79.14344,70.00134],[79.18464,70.01566],[79.20524,70.01589],[79.23751,70.00721],[79.25811,70.00885],[79.26429,70.01589],[79.26017,70.02035],[79.22172,70.03442],[79.21554,70.04427],[79.21554,70.04778],[79.23683,70.05457],[79.25743,70.05668],[79.29245,70.05106],[79.3309,70.05832],[79.3563,70.04801],[79.37141,70.04801],[79.38514,70.05129],[79.36798,70.07307],[79.35012,70.08032],[79.346,70.08594],[79.35768,70.10113],[79.35768,70.10791],[79.34051,70.12846],[79.34463,70.13943],[79.37484,70.14712],[79.41467,70.15062],[79.449,70.14782],[79.46136,70.14269],[79.46342,70.13569],[79.44694,70.13406],[79.42565,70.13126],[79.42428,70.12542],[79.44282,70.11749],[79.47578,70.11422],[79.52316,70.11352],[79.5671,70.12426],[79.59938,70.15062],[79.64126,70.17765],[79.6598,70.1965],[79.6701,70.22881],[79.71542,70.23462],[79.73259,70.23276],[79.76005,70.22672],[79.77584,70.22579],[79.79164,70.22951],[79.80125,70.23555],[79.79576,70.24274],[79.78683,70.24715],[79.75387,70.25226],[79.74288,70.25643],[79.73877,70.26223],[79.74632,70.26826],[79.77653,70.27614],[79.82185,70.2773],[79.8452,70.27359],[79.87609,70.26432],[79.89944,70.2664],[79.94132,70.29166],[79.97497,70.30647],[80.06698,70.33191],[80.11299,70.33653],[80.13359,70.34185],[80.14114,70.35085],[80.1329,70.3617],[80.09582,70.37324],[80.09307,70.37923],[80.1123,70.38384],[80.14114,70.38108],[80.16311,70.3707],[80.18371,70.37485],[80.22148,70.40573],[80.21598,70.41724],[80.23521,70.42092],[80.27572,70.42046],[80.30044,70.41747],[80.32379,70.42161],[80.34988,70.44944],[80.36567,70.45288],[80.41717,70.45794],[80.45768,70.45908],[80.56343,70.45288],[80.60119,70.44898],[80.62934,70.44116],[80.65612,70.41494],[80.66848,70.40895],[80.66024,70.40435],[80.66642,70.40159],[80.69664,70.39974],[80.73234,70.39237],[80.7344,70.38407],[80.74195,70.37808],[80.76049,70.38292],[80.77903,70.38338],[80.79414,70.38845],[80.80581,70.38822],[80.81337,70.38177],[80.82366,70.38246],[80.84358,70.38938],[80.84152,70.39928],[80.81955,70.40251],[80.80101,70.4078],[80.81131,70.41448],[80.82435,70.41816],[80.83396,70.41494],[80.86486,70.41816],[80.87722,70.42437],[80.88134,70.43404],[80.8834,70.44024],[80.87516,70.44277],[80.81955,70.42668],[80.8168,70.42852],[80.82916,70.44185],[80.82572,70.44415],[80.80925,70.44346],[80.78796,70.44001],[80.73715,70.44484],[80.71586,70.45702],[80.7138,70.48204],[80.69664,70.48135],[80.68359,70.48548],[80.6678,70.4864],[80.66436,70.49075],[80.64514,70.4974],[80.65818,70.50336],[80.66986,70.51001],[80.69114,70.50886],[80.70625,70.51642],[80.72616,70.51573],[80.74127,70.52329],[80.72204,70.52718],[80.71998,70.52993],[80.73234,70.53153],[80.73097,70.53611],[80.74401,70.53908],[80.74676,70.54343],[80.75363,70.54366],[80.75912,70.54983],[80.75294,70.55212],[80.73715,70.55074],[80.72273,70.55417],[80.72273,70.55692],[80.73989,70.5624],[80.72616,70.56766],[80.75019,70.57474],[80.76255,70.57474],[80.77011,70.57771],[80.77697,70.57771],[80.78041,70.58387],[80.77148,70.5898],[80.77491,70.59277],[80.78453,70.59186],[80.79277,70.5971],[80.79551,70.60167],[80.78727,70.61147],[80.79139,70.61466],[80.79826,70.61694],[80.80787,70.61443],[80.81337,70.62036],[80.80993,70.624],[80.82298,70.63015],[80.81611,70.63539],[80.8168,70.63835],[80.80787,70.64495],[80.81199,70.64723],[80.80513,70.65155],[80.78659,70.65246],[80.79414,70.65769],[80.79071,70.66383],[80.77423,70.66383],[80.76805,70.67042],[80.75706,70.67338],[80.73097,70.67201],[80.72685,70.67838],[80.71861,70.6811],[80.70831,70.67792],[80.66986,70.69041],[80.65544,70.69177],[80.6472,70.70153],[80.652,70.70698],[80.64857,70.71288],[80.66711,70.72331],[80.6575,70.73192],[80.67741,70.74415],[80.67466,70.74868],[80.68565,70.76271],[80.69732,70.76814],[80.69801,70.77606],[80.71723,70.78691],[80.71312,70.79956],[80.73165,70.80746],[80.69526,70.82415],[80.63621,70.85413],[80.63758,70.86854],[80.57785,71.05199],[80.50231,71.06648],[80.44189,71.07672],[80.38078,71.0814],[80.28945,71.09075],[80.03952,71.1221],[80.00244,71.12432],[79.9681,71.1392],[79.91729,71.15007],[79.44145,71.30057],[79.41055,71.30541],[79.32609,71.31355],[79.29039,71.31201],[79.21829,71.32301],[79.197,71.33114],[79.16748,71.35553],[79.15374,71.37593],[79.12284,71.40814],[79.14276,71.40748],[79.15443,71.40814],[79.16267,71.41339],[79.15786,71.41755],[79.14894,71.42608],[79.1558,71.4298],[79.1764,71.42739],[79.18464,71.43308],[79.21554,71.43395],[79.23408,71.45078],[79.24713,71.4558],[79.26841,71.45842],[79.2691,71.46716],[79.29657,71.47261],[79.30549,71.47654],[79.30687,71.48134],[79.32403,71.48788],[79.35836,71.48766],[79.37004,71.53861],[79.3515,71.55404],[79.32334,71.5751],[79.3206,71.58855],[79.34463,71.59809],[79.37484,71.60199],[79.40437,71.60004],[79.42428,71.60134],[79.47303,71.59918],[79.4902,71.59246],[79.53346,71.59462],[79.55062,71.60156],[79.56573,71.59896],[79.58908,71.59939],[79.59388,71.59723],[79.6138,71.59939],[79.63233,71.59918],[79.64881,71.60048],[79.66598,71.59701],[79.67834,71.59809],[79.68727,71.59701],[79.69688,71.59896],[79.7319,71.59029],[79.74563,71.59462],[79.76211,71.58964],[79.77104,71.5892],[79.78546,71.5853],[79.7985,71.59289],[79.80331,71.59116],[79.80812,71.58812],[79.81842,71.58638],[79.82185,71.57988],[79.83284,71.57988],[79.8397,71.58356],[79.84657,71.584],[79.85618,71.59246],[79.86648,71.58508],[79.87403,71.58899],[79.88365,71.58877],[79.89944,71.59246],[79.91111,71.60048],[79.92553,71.60394],[79.93446,71.60026],[79.94819,71.60264],[79.95231,71.59397],[79.95918,71.59484],[79.9681,71.60286],[79.98184,71.60654],[79.98252,71.61369],[79.96742,71.61932],[79.98664,71.62214],[79.99488,71.62777],[80.01205,71.6243],[80.02853,71.63794],[80.02372,71.64723],[80.04364,71.64031],[80.07179,71.64204],[80.06424,71.6494],[80.07385,71.65394],[80.08552,71.65026],[80.10818,71.66258],[80.13084,71.66301],[80.12809,71.67446],[80.1432,71.67575],[80.15556,71.67877],[80.13977,71.6846],[80.14045,71.69237],[80.11711,71.6956],[80.11573,71.69819],[80.1226,71.70099],[80.14595,71.6997],[80.14526,71.70207],[80.12123,71.70918],[80.13702,71.71522],[80.13221,71.71802],[80.10955,71.71198],[80.10269,71.71457],[80.10749,71.72319],[80.13702,71.72792],[80.09239,71.72964],[80.09101,71.73438],[80.11161,71.73868],[80.09788,71.73997],[80.07728,71.73696],[80.0711,71.74105],[80.07659,71.746],[80.09857,71.74277],[80.12672,71.74471],[80.11985,71.75073],[80.13359,71.75675],[80.11573,71.76835],[80.11848,71.77114],[80.10955,71.77952],[80.0917,71.78081],[80.09101,71.78424],[80.11848,71.78961],[80.10269,71.79261],[80.09651,71.79776],[80.08277,71.80012],[80.05325,71.7954],[80.04226,71.7969],[80.04089,71.79905],[80.04913,71.80226],[80.04295,71.80762],[80.05256,71.81234],[80.05325,71.8177],[80.03265,71.82198],[80.04364,71.82455],[80.07247,71.82048],[80.09101,71.82134],[80.06835,71.82734],[80.07453,71.83055],[80.08827,71.83055],[80.102,71.83462],[80.10955,71.82798],[80.12191,71.83205],[80.15144,71.83312],[80.16586,71.83569],[80.17684,71.84467],[80.16998,71.85024],[80.17478,71.85601],[80.19195,71.8543],[80.20568,71.85109],[80.21667,71.85131],[80.25512,71.85729],[80.27229,71.8558],[80.2668,71.85088],[80.24894,71.85195],[80.23796,71.84574],[80.24208,71.84403],[80.27366,71.84596],[80.29907,71.85366],[80.3025,71.85858],[80.29838,71.86413],[80.31692,71.87119],[80.32722,71.86306],[80.34576,71.86392],[80.36224,71.86755],[80.36636,71.87653],[80.3334,71.87653],[80.32585,71.88507],[80.31143,71.88848],[80.28602,71.88806],[80.28396,71.89489],[80.24826,71.90022],[80.26954,71.90832],[80.2613,71.91238],[80.26954,71.91728],[80.25169,71.9258],[80.22903,71.92282],[80.21667,71.93134],[80.19538,71.93219],[80.20431,71.92239],[80.18989,71.91898],[80.17616,71.92729],[80.1535,71.93219],[80.14663,71.93964],[80.13015,71.93815],[80.11642,71.94028],[80.09788,71.93879],[80.08003,71.94135],[80.08689,71.94539],[80.10406,71.94731],[80.08552,71.95667],[80.07728,71.96666],[80.05668,71.96177],[80.0608,71.96921],[80.05531,71.97601],[80.0045,71.97537],[79.99351,71.97792],[79.99969,71.98217],[79.99145,71.98451],[79.97291,71.98068],[79.96192,71.97643],[79.94544,71.98132],[79.90974,71.9879],[79.91661,71.97792],[79.90974,71.97367],[79.89189,71.97558],[79.88983,71.9809],[79.87678,71.98748],[79.87266,71.99385],[79.87609,72.00721],[79.88502,72.01146],[79.86854,72.01421],[79.85412,72.01082],[79.82048,72.01506],[79.83146,72.02184],[79.82803,72.02481],[79.79919,72.01782],[79.7731,72.0193],[79.77653,72.02248],[79.79507,72.02375],[79.80606,72.02608],[79.80606,72.03265],[79.7937,72.03434],[79.7779,72.03074],[79.72847,72.03625],[79.71267,72.04641],[79.6241,72.04662],[79.63371,72.03921],[79.62341,72.03456],[79.60624,72.03328],[79.58152,72.03773],[79.55062,72.03244],[79.54376,72.03328],[79.53552,72.02651],[79.51767,72.02714],[79.51217,72.03667],[79.50324,72.0407],[79.46754,72.03498],[79.47166,72.02629],[79.46479,72.02545],[79.42497,72.03858],[79.41604,72.03498],[79.4181,72.02693],[79.37416,72.02862],[79.37622,72.03371],[79.39132,72.04641],[79.38514,72.05001],[79.37828,72.05001],[79.35836,72.03837],[79.34806,72.04027],[79.34257,72.04451],[79.34806,72.05445],[79.34188,72.05784],[79.31854,72.05086],[79.29588,72.05234],[79.25331,72.05382],[79.26979,72.05889],[79.2588,72.06334],[79.21417,72.06249],[79.19563,72.07222],[79.14001,72.06905],[79.13246,72.06503],[79.12559,72.05551],[79.11117,72.05551],[79.11048,72.07053],[79.09057,72.07454],[79.06654,72.07285],[79.06722,72.06841],[79.07684,72.06693],[79.06997,72.0627],[79.06036,72.06038],[79.05143,72.06249],[79.04594,72.07792],[79.03221,72.08637],[78.99925,72.09123],[79.03907,72.09714],[79.02603,72.1041],[79.00817,72.10347],[78.98208,72.09165],[78.9656,72.09503],[78.98139,72.10284],[78.97727,72.10811],[78.95874,72.11149],[78.95462,72.12203],[78.94088,72.12393],[78.92028,72.11845],[78.90792,72.11064],[78.87908,72.10853],[78.86604,72.10959],[78.86055,72.11465],[78.87565,72.12098],[78.8887,72.12456],[78.89076,72.12751],[78.85711,72.13615],[78.82141,72.13552],[78.81317,72.13973],[78.76167,72.13783],[78.75824,72.14941],[78.75,72.15678],[78.70742,72.14731],[78.70399,72.1511],[78.71772,72.15678],[78.75206,72.16309],[78.73901,72.16772],[78.69163,72.1633],[78.68408,72.1654],[78.68064,72.17423],[78.66622,72.1736],[78.63395,72.16645],[78.60992,72.17045],[78.62091,72.18663],[78.61885,72.19251],[78.60649,72.1944],[78.56803,72.19188],[78.54125,72.19818],[78.56117,72.20217],[78.57627,72.20175],[78.60305,72.20343],[78.6264,72.21245],[78.62571,72.22482],[78.58245,72.22398],[78.57971,72.22817],[78.59001,72.23237],[78.62846,72.2332],[78.64494,72.23802],[78.64769,72.24179],[78.60374,72.25017],[78.58177,72.2644],[78.56872,72.29324],[78.48632,72.29407],[78.43963,72.31995],[78.40667,72.33579],[78.45062,72.35412],[78.47534,72.37326],[79,72.5],[78,73],[78,74],[70,76]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central Siberian Zone","cq_zone_number":18,"cq_zone_name_loc":[70,90]},"geometry":{"type":"Polygon","coordinates":[[[115,85],[70,85],[70,76],[78,74],[78,73],[79,72.5],[78.47534,72.37326],[78.45062,72.35412],[78.40667,72.33579],[78.43963,72.31995],[78.48632,72.29407],[78.56872,72.29324],[78.58177,72.2644],[78.60374,72.25017],[78.64769,72.24179],[78.64494,72.23802],[78.62846,72.2332],[78.59001,72.23237],[78.57971,72.22817],[78.58245,72.22398],[78.62571,72.22482],[78.6264,72.21245],[78.60305,72.20343],[78.57627,72.20175],[78.56117,72.20217],[78.54125,72.19818],[78.56803,72.19188],[78.60649,72.1944],[78.61885,72.19251],[78.62091,72.18663],[78.60992,72.17045],[78.63395,72.16645],[78.66622,72.1736],[78.68064,72.17423],[78.68408,72.1654],[78.69163,72.1633],[78.73901,72.16772],[78.75206,72.16309],[78.71772,72.15678],[78.70399,72.1511],[78.70742,72.14731],[78.75,72.15678],[78.75824,72.14941],[78.76167,72.13783],[78.81317,72.13973],[78.82141,72.13552],[78.85711,72.13615],[78.89076,72.12751],[78.8887,72.12456],[78.87565,72.12098],[78.86055,72.11465],[78.86604,72.10959],[78.87908,72.10853],[78.90792,72.11064],[78.92028,72.11845],[78.94088,72.12393],[78.95462,72.12203],[78.95874,72.11149],[78.97727,72.10811],[78.98139,72.10284],[78.9656,72.09503],[78.98208,72.09165],[79.00817,72.10347],[79.02603,72.1041],[79.03907,72.09714],[78.99925,72.09123],[79.03221,72.08637],[79.04594,72.07792],[79.05143,72.06249],[79.06036,72.06038],[79.06997,72.0627],[79.07684,72.06693],[79.06722,72.06841],[79.06654,72.07285],[79.09057,72.07454],[79.11048,72.07053],[79.11117,72.05551],[79.12559,72.05551],[79.13246,72.06503],[79.14001,72.06905],[79.19563,72.07222],[79.21417,72.06249],[79.2588,72.06334],[79.26979,72.05889],[79.25331,72.05382],[79.29588,72.05234],[79.31854,72.05086],[79.34188,72.05784],[79.34806,72.05445],[79.34257,72.04451],[79.34806,72.04027],[79.35836,72.03837],[79.37828,72.05001],[79.38514,72.05001],[79.39132,72.04641],[79.37622,72.03371],[79.37416,72.02862],[79.4181,72.02693],[79.41604,72.03498],[79.42497,72.03858],[79.46479,72.02545],[79.47166,72.02629],[79.46754,72.03498],[79.50324,72.0407],[79.51217,72.03667],[79.51767,72.02714],[79.53552,72.02651],[79.54376,72.03328],[79.55062,72.03244],[79.58152,72.03773],[79.60624,72.03328],[79.62341,72.03456],[79.63371,72.03921],[79.6241,72.04662],[79.71267,72.04641],[79.72847,72.03625],[79.7779,72.03074],[79.7937,72.03434],[79.80606,72.03265],[79.80606,72.02608],[79.79507,72.02375],[79.77653,72.02248],[79.7731,72.0193],[79.79919,72.01782],[79.82803,72.02481],[79.83146,72.02184],[79.82048,72.01506],[79.85412,72.01082],[79.86854,72.01421],[79.88502,72.01146],[79.87609,72.00721],[79.87266,71.99385],[79.87678,71.98748],[79.88983,71.9809],[79.89189,71.97558],[79.90974,71.97367],[79.91661,71.97792],[79.90974,71.9879],[79.94544,71.98132],[79.96192,71.97643],[79.97291,71.98068],[79.99145,71.98451],[79.99969,71.98217],[79.99351,71.97792],[80.0045,71.97537],[80.05531,71.97601],[80.0608,71.96921],[80.05668,71.96177],[80.07728,71.96666],[80.08552,71.95667],[80.10406,71.94731],[80.08689,71.94539],[80.08003,71.94135],[80.09788,71.93879],[80.11642,71.94028],[80.13015,71.93815],[80.14663,71.93964],[80.1535,71.93219],[80.17616,71.92729],[80.18989,71.91898],[80.20431,71.92239],[80.19538,71.93219],[80.21667,71.93134],[80.22903,71.92282],[80.25169,71.9258],[80.26954,71.91728],[80.2613,71.91238],[80.26954,71.90832],[80.24826,71.90022],[80.28396,71.89489],[80.28602,71.88806],[80.31143,71.88848],[80.32585,71.88507],[80.3334,71.87653],[80.36636,71.87653],[80.36224,71.86755],[80.34576,71.86392],[80.32722,71.86306],[80.31692,71.87119],[80.29838,71.86413],[80.3025,71.85858],[80.29907,71.85366],[80.27366,71.84596],[80.24208,71.84403],[80.23796,71.84574],[80.24894,71.85195],[80.2668,71.85088],[80.27229,71.8558],[80.25512,71.85729],[80.21667,71.85131],[80.20568,71.85109],[80.19195,71.8543],[80.17478,71.85601],[80.16998,71.85024],[80.17684,71.84467],[80.16586,71.83569],[80.15144,71.83312],[80.12191,71.83205],[80.10955,71.82798],[80.102,71.83462],[80.08827,71.83055],[80.07453,71.83055],[80.06835,71.82734],[80.09101,71.82134],[80.07247,71.82048],[80.04364,71.82455],[80.03265,71.82198],[80.05325,71.8177],[80.05256,71.81234],[80.04295,71.80762],[80.04913,71.80226],[80.04089,71.79905],[80.04226,71.7969],[80.05325,71.7954],[80.08277,71.80012],[80.09651,71.79776],[80.10269,71.79261],[80.11848,71.78961],[80.09101,71.78424],[80.0917,71.78081],[80.10955,71.77952],[80.11848,71.77114],[80.11573,71.76835],[80.13359,71.75675],[80.11985,71.75073],[80.12672,71.74471],[80.09857,71.74277],[80.07659,71.746],[80.0711,71.74105],[80.07728,71.73696],[80.09788,71.73997],[80.11161,71.73868],[80.09101,71.73438],[80.09239,71.72964],[80.13702,71.72792],[80.10749,71.72319],[80.10269,71.71457],[80.10955,71.71198],[80.13221,71.71802],[80.13702,71.71522],[80.12123,71.70918],[80.14526,71.70207],[80.14595,71.6997],[80.1226,71.70099],[80.11573,71.69819],[80.11711,71.6956],[80.14045,71.69237],[80.13977,71.6846],[80.15556,71.67877],[80.1432,71.67575],[80.12809,71.67446],[80.13084,71.66301],[80.10818,71.66258],[80.08552,71.65026],[80.07385,71.65394],[80.06424,71.6494],[80.07179,71.64204],[80.04364,71.64031],[80.02372,71.64723],[80.02853,71.63794],[80.01205,71.6243],[79.99488,71.62777],[79.98664,71.62214],[79.96742,71.61932],[79.98252,71.61369],[79.98184,71.60654],[79.9681,71.60286],[79.95918,71.59484],[79.95231,71.59397],[79.94819,71.60264],[79.93446,71.60026],[79.92553,71.60394],[79.91111,71.60048],[79.89944,71.59246],[79.88365,71.58877],[79.87403,71.58899],[79.86648,71.58508],[79.85618,71.59246],[79.84657,71.584],[79.8397,71.58356],[79.83284,71.57988],[79.82185,71.57988],[79.81842,71.58638],[79.80812,71.58812],[79.80331,71.59116],[79.7985,71.59289],[79.78546,71.5853],[79.77104,71.5892],[79.76211,71.58964],[79.74563,71.59462],[79.7319,71.59029],[79.69688,71.59896],[79.68727,71.59701],[79.67834,71.59809],[79.66598,71.59701],[79.64881,71.60048],[79.63233,71.59918],[79.6138,71.59939],[79.59388,71.59723],[79.58908,71.59939],[79.56573,71.59896],[79.55062,71.60156],[79.53346,71.59462],[79.4902,71.59246],[79.47303,71.59918],[79.42428,71.60134],[79.40437,71.60004],[79.37484,71.60199],[79.34463,71.59809],[79.3206,71.58855],[79.32334,71.5751],[79.3515,71.55404],[79.37004,71.53861],[79.35836,71.48766],[79.32403,71.48788],[79.30687,71.48134],[79.30549,71.47654],[79.29657,71.47261],[79.2691,71.46716],[79.26841,71.45842],[79.24713,71.4558],[79.23408,71.45078],[79.21554,71.43395],[79.18464,71.43308],[79.1764,71.42739],[79.1558,71.4298],[79.14894,71.42608],[79.15786,71.41755],[79.16267,71.41339],[79.15443,71.40814],[79.14276,71.40748],[79.12284,71.40814],[79.15374,71.37593],[79.16748,71.35553],[79.197,71.33114],[79.21829,71.32301],[79.29039,71.31201],[79.32609,71.31355],[79.41055,71.30541],[79.44145,71.30057],[79.91729,71.15007],[79.9681,71.1392],[80.00244,71.12432],[80.03952,71.1221],[80.28945,71.09075],[80.38078,71.0814],[80.44189,71.07672],[80.50231,71.06648],[80.57785,71.05199],[80.63758,70.86854],[80.63621,70.85413],[80.69526,70.82415],[80.73165,70.80746],[80.71312,70.79956],[80.71723,70.78691],[80.69801,70.77606],[80.69732,70.76814],[80.68565,70.76271],[80.67466,70.74868],[80.67741,70.74415],[80.6575,70.73192],[80.66711,70.72331],[80.64857,70.71288],[80.652,70.70698],[80.6472,70.70153],[80.65544,70.69177],[80.66986,70.69041],[80.70831,70.67792],[80.71861,70.6811],[80.72685,70.67838],[80.73097,70.67201],[80.75706,70.67338],[80.76805,70.67042],[80.77423,70.66383],[80.79071,70.66383],[80.79414,70.65769],[80.78659,70.65246],[80.80513,70.65155],[80.81199,70.64723],[80.80787,70.64495],[80.8168,70.63835],[80.81611,70.63539],[80.82298,70.63015],[80.80993,70.624],[80.81337,70.62036],[80.80787,70.61443],[80.79826,70.61694],[80.79139,70.61466],[80.78727,70.61147],[80.79551,70.60167],[80.79277,70.5971],[80.78453,70.59186],[80.77491,70.59277],[80.77148,70.5898],[80.78041,70.58387],[80.77697,70.57771],[80.77011,70.57771],[80.76255,70.57474],[80.75019,70.57474],[80.72616,70.56766],[80.73989,70.5624],[80.72273,70.55692],[80.72273,70.55417],[80.73715,70.55074],[80.75294,70.55212],[80.75912,70.54983],[80.75363,70.54366],[80.74676,70.54343],[80.74401,70.53908],[80.73097,70.53611],[80.73234,70.53153],[80.71998,70.52993],[80.72204,70.52718],[80.74127,70.52329],[80.72616,70.51573],[80.70625,70.51642],[80.69114,70.50886],[80.66986,70.51001],[80.65818,70.50336],[80.64514,70.4974],[80.66436,70.49075],[80.6678,70.4864],[80.68359,70.48548],[80.69664,70.48135],[80.7138,70.48204],[80.71586,70.45702],[80.73715,70.44484],[80.78796,70.44001],[80.80925,70.44346],[80.82572,70.44415],[80.82916,70.44185],[80.8168,70.42852],[80.81955,70.42668],[80.87516,70.44277],[80.8834,70.44024],[80.88134,70.43404],[80.87722,70.42437],[80.86486,70.41816],[80.83396,70.41494],[80.82435,70.41816],[80.81131,70.41448],[80.80101,70.4078],[80.81955,70.40251],[80.84152,70.39928],[80.84358,70.38938],[80.82366,70.38246],[80.81337,70.38177],[80.80581,70.38822],[80.79414,70.38845],[80.77903,70.38338],[80.76049,70.38292],[80.74195,70.37808],[80.7344,70.38407],[80.73234,70.39237],[80.69664,70.39974],[80.66642,70.40159],[80.66024,70.40435],[80.66848,70.40895],[80.65612,70.41494],[80.62934,70.44116],[80.60119,70.44898],[80.56343,70.45288],[80.45768,70.45908],[80.41717,70.45794],[80.36567,70.45288],[80.34988,70.44944],[80.32379,70.42161],[80.30044,70.41747],[80.27572,70.42046],[80.23521,70.42092],[80.21598,70.41724],[80.22148,70.40573],[80.18371,70.37485],[80.16311,70.3707],[80.14114,70.38108],[80.1123,70.38384],[80.09307,70.37923],[80.09582,70.37324],[80.1329,70.3617],[80.14114,70.35085],[80.13359,70.34185],[80.11299,70.33653],[80.06698,70.33191],[79.97497,70.30647],[79.94132,70.29166],[79.89944,70.2664],[79.87609,70.26432],[79.8452,70.27359],[79.82185,70.2773],[79.77653,70.27614],[79.74632,70.26826],[79.73877,70.26223],[79.74288,70.25643],[79.75387,70.25226],[79.78683,70.24715],[79.79576,70.24274],[79.80125,70.23555],[79.79164,70.22951],[79.77584,70.22579],[79.76005,70.22672],[79.73259,70.23276],[79.71542,70.23462],[79.6701,70.22881],[79.6598,70.1965],[79.64126,70.17765],[79.59938,70.15062],[79.5671,70.12426],[79.52316,70.11352],[79.47578,70.11422],[79.44282,70.11749],[79.42428,70.12542],[79.42565,70.13126],[79.44694,70.13406],[79.46342,70.13569],[79.46136,70.14269],[79.449,70.14782],[79.41467,70.15062],[79.37484,70.14712],[79.34463,70.13943],[79.34051,70.12846],[79.35768,70.10791],[79.35768,70.10113],[79.346,70.08594],[79.35012,70.08032],[79.36798,70.07307],[79.38514,70.05129],[79.37141,70.04801],[79.3563,70.04801],[79.3309,70.05832],[79.29245,70.05106],[79.25743,70.05668],[79.23683,70.05457],[79.21554,70.04778],[79.21554,70.04427],[79.22172,70.03442],[79.26017,70.02035],[79.26429,70.01589],[79.25811,70.00885],[79.23751,70.00721],[79.20524,70.01589],[79.18464,70.01566],[79.14344,70.00134],[79.12765,69.99899],[79.13726,69.99382],[79.16198,69.99711],[79.18945,69.99687],[79.19906,69.99405],[79.18464,69.98795],[79.18396,69.98489],[79.20318,69.98607],[79.21623,69.9809],[79.22515,69.97243],[79.22172,69.96961],[79.18945,69.96608],[79.17984,69.96185],[79.18464,69.95267],[79.16954,69.94443],[79.13452,69.93477],[79.09057,69.92841],[79.07203,69.9204],[79.05624,69.90247],[79.04182,69.89398],[78.98071,69.87603],[78.96423,69.87532],[78.9196,69.87579],[78.9141,69.86563],[78.92509,69.85357],[78.92372,69.85168],[78.93333,69.85097],[78.94294,69.84553],[78.95736,69.8453],[78.9711,69.84719],[78.98345,69.84624],[78.99238,69.84104],[79.05761,69.83062],[79.0631,69.82494],[79.05555,69.81878],[79.02191,69.81286],[79.01641,69.80788],[79.02328,69.80148],[79.04251,69.79911],[79.11804,69.78013],[79.1249,69.7761],[79.12628,69.7704],[79.10911,69.76161],[79.11117,69.7514],[79.10499,69.74403],[79.11735,69.73975],[79.12902,69.7388],[79.14894,69.74474],[79.15992,69.74118],[79.16473,69.73381],[79.16061,69.72072],[79.14138,69.71453],[79.10636,69.71477],[79.0892,69.70382],[79.06516,69.69881],[79.05761,69.69262],[79.06173,69.68785],[79.07959,69.68714],[79.09538,69.695],[79.11392,69.6931],[79.12147,69.69595],[79.13864,69.68475],[79.17846,69.68308],[79.19288,69.68118],[79.20936,69.68332],[79.22515,69.67879],[79.24438,69.67712],[79.2691,69.67951],[79.28215,69.67808],[79.29382,69.67522],[79.29931,69.66543],[79.31854,69.66042],[79.33708,69.65135],[79.34806,69.65016],[79.35699,69.65446],[79.37553,69.65541],[79.3927,69.64538],[79.4181,69.64825],[79.43527,69.65565],[79.46273,69.65565],[79.47647,69.64467],[79.46479,69.63344],[79.47029,69.62961],[79.50118,69.63272],[79.51286,69.62937],[79.51698,69.62148],[79.49775,69.60929],[79.4696,69.60689],[79.46273,69.60402],[79.46685,69.60091],[79.50393,69.59565],[79.51492,69.59062],[79.53277,69.58942],[79.54307,69.59014],[79.55955,69.56306],[79.58496,69.54315],[79.5877,69.52491],[79.61036,69.51626],[79.62341,69.50015],[79.59457,69.48476],[79.60693,69.47537],[79.62204,69.48018],[79.63851,69.47754],[79.6495,69.46887],[79.64607,69.46261],[79.63165,69.45755],[79.63028,69.45152],[79.69482,69.44309],[79.66392,69.43199],[79.67079,69.42669],[79.70718,69.42644],[79.72847,69.41703],[79.73877,69.41655],[79.7628,69.42934],[79.79301,69.42307],[79.79644,69.418],[79.76417,69.39699],[79.76898,69.39239],[79.79438,69.38998],[79.80468,69.38563],[79.82322,69.3849],[79.84863,69.37499],[79.84726,69.36749],[79.81842,69.35587],[79.82391,69.34715],[79.84108,69.34861],[79.85,69.3566],[79.86167,69.36023],[79.87472,69.35418],[79.89051,69.35878],[79.90219,69.35805],[79.91386,69.34764],[79.95643,69.34328],[79.95643,69.35563],[79.9839,69.35635],[80.0299,69.36604],[80.04982,69.35321],[80.07865,69.35563],[80.10131,69.36676],[80.12191,69.36192],[80.10269,69.352],[80.12191,69.34619],[80.14801,69.3566],[80.16723,69.3595],[80.24963,69.35635],[80.25787,69.34837],[80.27504,69.34183],[80.29563,69.33892],[80.30113,69.3365],[80.30044,69.33262],[80.30731,69.33068],[80.34645,69.32995],[80.36155,69.32559],[80.36911,69.32559],[80.38627,69.32995],[80.39382,69.32341],[80.43159,69.32826],[80.44738,69.32656],[80.44944,69.31783],[80.46867,69.31686],[80.49064,69.32026],[80.5339,69.31346],[80.54077,69.30352],[80.5545,69.30376],[80.56961,69.31104],[80.57991,69.31152],[80.60394,69.30303],[80.62248,69.30716],[80.63415,69.30425],[80.64651,69.30983],[80.6623,69.30886],[80.67741,69.31298],[80.6932,69.31177],[80.69801,69.31468],[80.709,69.31468],[80.71723,69.30691],[80.75225,69.30376],[80.75912,69.30934],[80.75843,69.31346],[80.76599,69.31516],[80.77011,69.29672],[80.77766,69.28579],[80.79277,69.28118],[80.80375,69.26879],[80.81474,69.26684],[80.82984,69.26733],[80.84564,69.25444],[80.87585,69.24666],[80.88134,69.23911],[80.88958,69.23717],[80.89439,69.2396],[80.91361,69.23668],[80.92598,69.23936],[80.94039,69.23863],[80.94108,69.23278],[80.91911,69.23011],[80.90743,69.23157],[80.90331,69.22986],[80.93833,69.21135],[80.93147,69.20526],[80.93833,69.19916],[80.94314,69.19819],[80.95138,69.20282],[80.95893,69.19599],[81.01318,69.21037],[81.03035,69.21159],[81.06468,69.22158],[81.10862,69.22475],[81.13266,69.23473],[81.15669,69.23838],[81.18003,69.23984],[81.20338,69.2452],[81.2178,69.25931],[81.25213,69.26854],[81.29608,69.27219],[81.32835,69.28118],[81.35375,69.28385],[81.38946,69.27292],[81.40388,69.25809],[81.41899,69.25006],[81.45813,69.25128],[81.5213,69.26076],[81.62498,69.29381],[81.66961,69.32219],[81.62773,69.32826],[81.62155,69.3348],[81.63597,69.34667],[81.64833,69.36725],[81.6394,69.42186],[81.70738,69.46068],[81.73759,69.45032],[81.77948,69.43947],[81.90033,69.38031],[81.93122,69.37039],[81.95594,69.35635],[81.95663,69.34449],[81.92024,69.32123],[81.86119,69.29478],[81.80419,69.26295],[81.80145,69.24666],[81.83166,69.21208],[81.85569,69.20014],[81.88316,69.19258],[81.93466,69.19282],[81.98135,69.19575],[82.02323,69.19355],[82.10014,69.18062],[82.1331,69.17183],[82.1688,69.15791],[82.29103,69.16744],[82.32673,69.17305],[82.36999,69.17354],[82.38784,69.17501],[82.45994,69.15327],[82.45101,69.13567],[82.46131,69.12564],[82.4826,69.12001],[82.48603,69.109],[82.46818,69.10116],[82.46475,69.08793],[82.43316,69.08008],[82.34664,69.07322],[82.32398,69.0612],[82.32261,69.05285],[82.32604,69.04033],[82.34115,69.02805],[82.38853,69.02411],[82.4263,69.01748],[82.45307,69.00518],[82.48397,68.98746],[82.51762,68.94926],[82.55127,68.88331],[82.55744,68.85162],[82.55744,68.83254],[82.60894,68.81071],[82.67829,68.79383],[82.817,68.75505],[82.84858,68.73464],[82.86712,68.70972],[82.87193,68.67479],[82.85751,68.6583],[82.81288,68.6423],[82.70439,68.62704],[82.67143,68.61903],[82.62611,68.58947],[82.62199,68.57443],[82.62474,68.55461],[82.64602,68.52873],[82.66937,68.51088],[82.69958,68.47488],[82.70851,68.44564],[82.71606,68.39918],[82.70988,68.37768],[82.68585,68.34375],[82.65083,68.28819],[82.62336,68.27802],[82.57736,68.2737],[82.5595,68.26353],[82.53135,68.21466],[82.54303,68.19758],[82.56019,68.18125],[82.39677,68.13782],[82.3645,68.12632],[82.35076,68.10789],[82.36724,68.08689],[82.38304,68.0751],[82.37342,68.04765],[82.37136,67.99419],[82.38372,67.97978],[82.38716,67.96716],[82.35145,67.93804],[82.33085,67.93391],[82.25463,67.93752],[82.19764,67.93391],[82.10975,67.93907],[82.07061,67.94061],[82.00607,67.95531],[81.96556,67.95814],[81.87972,67.94526],[81.84539,67.93081],[81.81861,67.93236],[81.80145,67.93881],[81.76849,67.94654],[81.75888,67.94345],[81.75682,67.93313],[81.75682,67.92617],[81.74995,67.91688],[81.74926,67.90138],[81.76506,67.89131],[81.79458,67.89053],[81.80488,67.88639],[81.79527,67.87709],[81.81243,67.86545],[81.81449,67.85795],[81.83235,67.85044],[81.84402,67.83671],[81.86187,67.83335],[81.88797,67.81702],[81.88316,67.81002],[81.89827,67.80872],[81.9017,67.80561],[81.89209,67.8012],[81.91337,67.79004],[81.93672,67.79056],[81.93878,67.78173],[81.96762,67.77966],[81.98066,67.76459],[82.00058,67.76667],[81.98959,67.75809],[82.01499,67.75185],[82.02186,67.75601],[82.04246,67.75939],[82.04383,67.7503],[82.06031,67.73729],[82.07885,67.74067],[82.09465,67.73599],[82.08641,67.73027],[82.09602,67.72246],[82.12074,67.72038],[82.12417,67.70996],[82.11662,67.70814],[82.10426,67.71022],[82.09877,67.70553],[82.10426,67.69824],[82.08847,67.69042],[82.09671,67.68521],[82.13516,67.69172],[82.1331,67.67973],[82.10495,67.67843],[82.11799,67.66825],[82.09671,67.66799],[82.10632,67.6586],[82.09121,67.65729],[82.08297,67.66303],[82.06787,67.66016],[82.06787,67.64946],[82.09465,67.63483],[82.10357,67.6249],[82.11662,67.61758],[82.14134,67.61732],[82.14546,67.61549],[82.13241,67.60738],[82.1585,67.60843],[82.16056,67.6066],[82.15232,67.60084],[82.20039,67.59221],[82.17361,67.58959],[82.17498,67.58593],[82.20108,67.582],[82.1997,67.57755],[82.21756,67.56969],[82.23197,67.57257],[82.25051,67.57126],[82.27111,67.56681],[82.25738,67.55894],[82.27043,67.55501],[82.29377,67.53534],[82.30819,67.5558],[82.31849,67.55265],[82.32192,67.53482],[82.33291,67.53403],[82.34664,67.54505],[82.38166,67.54688],[82.40364,67.55318],[82.37548,67.52904],[82.37548,67.52484],[82.38372,67.52642],[82.41462,67.5335],[82.41531,67.5146],[82.42561,67.50646],[82.41737,67.50278],[82.40638,67.50278],[82.37411,67.48701],[82.40089,67.48123],[82.39128,67.47465],[82.39677,67.46966],[82.39471,67.46545],[82.37068,67.46966],[82.35694,67.4686],[82.35214,67.46281],[82.35763,67.45939],[82.3487,67.45729],[82.30888,67.45992],[82.31025,67.45413],[82.32673,67.44597],[82.31986,67.4407],[82.31094,67.44886],[82.29377,67.45044],[82.29103,67.44597],[82.29995,67.44043],[82.29927,67.43833],[82.2821,67.43701],[82.26631,67.43227],[82.26974,67.43095],[82.2821,67.43121],[82.29995,67.41961],[82.29583,67.41671],[82.27111,67.41935],[82.25601,67.41592],[82.24983,67.4088],[82.25051,67.40353],[82.27523,67.40432],[82.28965,67.39587],[82.28759,67.39139],[82.2924,67.38901],[82.31094,67.39614],[82.32536,67.3898],[82.31918,67.38399],[82.30544,67.38109],[82.31918,67.37317],[82.30682,67.36286],[82.35076,67.35757],[82.35763,67.35255],[82.33772,67.34858],[82.30819,67.35493],[82.30339,67.35017],[82.30819,67.34277],[82.32536,67.33377],[82.33978,67.33404],[82.35488,67.34065],[82.36038,67.33748],[82.35145,67.32927],[82.35076,67.32795],[82.36587,67.32821],[82.37754,67.32054],[82.36999,67.3171],[82.33291,67.31153],[82.3027,67.30491],[82.29171,67.30571],[82.28485,67.29458],[82.25395,67.29829],[82.24159,67.29749],[82.24571,67.29246],[82.2409,67.28609],[82.25463,67.28159],[82.26974,67.2853],[82.28691,67.28556],[82.30064,67.28291],[82.30544,67.27708],[82.29377,67.26434],[82.31162,67.25797],[82.31849,67.24364],[82.31437,67.24178],[82.30544,67.24284],[82.29652,67.25213],[82.28073,67.25187],[82.27661,67.26196],[82.26631,67.25558],[82.25807,67.25585],[82.2615,67.26328],[82.25738,67.26726],[82.21893,67.24948],[82.1743,67.24496],[82.14546,67.24496],[82.1379,67.23992],[82.15988,67.22743],[82.15507,67.21919],[82.14202,67.21626],[82.4105,67.1134],[83.03878,66.86863],[83.02986,66.8546],[83.05938,66.84164],[83.09783,66.83786],[83.12049,66.83975],[83.19465,66.77052],[83.18779,66.75074],[83.20289,66.73691],[83.25508,66.72308],[83.264,66.71032],[83.2592,66.70734],[83.26263,66.70353],[83.27362,66.70652],[83.28117,66.69946],[83.29902,66.70028],[83.29628,66.69376],[83.30932,66.68098],[83.30452,66.66685],[83.31207,66.66522],[83.32168,66.66821],[83.32992,66.66929],[83.35052,66.66005],[83.34709,66.64726],[83.33541,66.64699],[83.31619,66.64481],[83.2901,66.64454],[83.2695,66.63964],[83.23448,66.61566],[83.19946,66.61403],[83.19465,66.60449],[83.1974,66.59904],[83.18916,66.59576],[83.17611,66.59985],[83.17062,66.59658],[83.15895,66.59276],[83.12187,66.60231],[83.08891,66.58976],[83.07449,66.46313],[83.11363,66.4008],[83.24546,66.38018],[83.51669,66.19101],[83.53317,66.1741],[83.50433,66.15051],[83.4597,66.14052],[83.4391,66.13079],[83.42948,66.13274],[83.40271,66.12524],[83.38623,66.11857],[83.37043,66.1219],[83.35327,66.11829],[83.34228,66.11384],[83.34297,66.11161],[83.37112,66.11022],[83.3773,66.08017],[83.36219,66.07989],[83.34571,66.08212],[83.33267,66.07655],[83.32855,66.06904],[83.30383,66.06096],[83.30246,66.0526],[83.28323,66.04089],[83.28803,66.03754],[83.30452,66.03726],[83.30658,66.03057],[83.31481,66.02638],[83.30658,66.02248],[83.31344,66.01606],[83.30383,66.01355],[83.31207,66.00685],[83.30932,65.99847],[83.32511,65.99651],[83.31825,65.99121],[83.32649,65.98394],[83.33747,65.98618],[83.34503,65.98227],[83.34503,65.97668],[83.33953,65.97528],[83.33541,65.95962],[83.3773,65.94283],[83.39103,65.94227],[83.43017,65.92631],[83.45558,65.92575],[83.5057,65.91987],[83.51738,65.90754],[83.54415,65.89828],[83.51051,65.88061],[83.50158,65.87247],[83.50021,65.86237],[83.52905,65.84861],[83.52905,65.84523],[83.4851,65.82162],[83.48304,65.80924],[83.5469,65.76644],[83.58055,65.76278],[83.6808,65.77546],[83.81607,65.78588],[83.94241,65.78729],[83.99734,65.78222],[84.0303,65.76531],[84.04403,65.74981],[84.123,65.71566],[84.14222,65.7021],[84.16694,65.69475],[84.21501,65.6874],[84.28436,65.68345],[84.28436,65.67355],[84.26651,65.66506],[84.2823,65.65997],[84.2871,65.65431],[84.272,65.63788],[84.28161,65.6274],[84.27818,65.61777],[84.1745,65.59026],[84.19853,65.58061],[84.27131,65.57209],[84.30152,65.56186],[84.31388,65.55021],[84.39422,65.54965],[84.42237,65.54595],[84.43679,65.53174],[84.43748,65.5158],[84.47181,65.50299],[84.51095,65.48192],[84.52468,65.45626],[84.52468,65.43429],[84.49722,65.41658],[84.49653,65.40201],[84.53773,65.35166],[84.55764,65.31928],[84.55146,65.26072],[84.51301,65.2337],[84.43061,65.22277],[84.39147,65.20406],[84.32006,65.1337],[84.2823,65.10105],[84.27955,65.08515],[84.2871,65.07791],[84.28504,65.06663],[84.29603,65.06286],[84.33242,65.07675],[84.31938,65.08688],[84.32281,65.09209],[84.3441,65.08572],[84.35096,65.07444],[84.34204,65.06113],[84.34822,65.05157],[84.37156,65.06547],[84.38598,65.06257],[84.36882,65.03679],[84.34959,65.02317],[84.36538,65.01998],[84.34822,65.01215],[84.34684,65.00055],[84.34547,64.99735],[84.31182,65.00113],[84.31182,64.99619],[84.3235,64.98981],[84.33998,64.98632],[84.31938,64.97994],[84.29946,64.98342],[84.29466,64.98023],[84.30152,64.96309],[84.29603,64.96105],[84.27543,64.95786],[84.25346,64.95175],[84.25346,64.94274],[84.27269,64.94216],[84.28504,64.93983],[84.29603,64.92645],[84.29534,64.91713],[84.318,64.92237],[84.31251,64.92819],[84.32281,64.93052],[84.33654,64.92412],[84.3489,64.91335],[84.34822,64.90869],[84.3544,64.90724],[84.36058,64.91189],[84.36195,64.91772],[84.38392,64.92179],[84.38255,64.93343],[84.39491,64.9343],[84.40589,64.92761],[84.40177,64.91684],[84.40864,64.91451],[84.42306,64.91743],[84.42443,64.9247],[84.43542,64.91975],[84.46907,64.92063],[84.48211,64.92179],[84.49241,64.91801],[84.54666,64.91743],[84.59678,64.92325],[84.62699,64.93401],[84.64897,64.93139],[84.67849,64.93808],[84.68536,64.93488],[84.72312,64.9439],[84.74647,64.94186],[84.7705,64.95146],[84.79591,64.9503],[84.81788,64.96309],[84.84809,64.96163],[84.85496,64.95786],[84.90852,64.94913],[84.9147,64.9628],[84.92019,64.96628],[84.94628,64.95582],[84.98611,64.94884],[85.04173,64.92674],[85.01289,64.91568],[84.99984,64.92092],[84.99023,64.91422],[84.99641,64.89762],[84.98199,64.88509],[84.96551,64.88393],[84.93667,64.87402],[84.93392,64.86789],[84.94148,64.85448],[84.9662,64.84426],[84.99229,64.84339],[84.98886,64.82937],[84.99504,64.82528],[85.01014,64.82441],[85.02044,64.83667],[85.03006,64.83755],[85.06713,64.82704],[85.10215,64.83551],[85.11108,64.8358],[85.13374,64.83988],[85.12962,64.82937],[85.13923,64.82178],[85.1152,64.80191],[85.13923,64.79986],[85.12962,64.78933],[85.14061,64.77412],[85.1358,64.77207],[85.1461,64.76593],[85.177,64.77471],[85.18661,64.77149],[85.1976,64.77383],[85.1921,64.7788],[85.21682,64.78582],[85.2539,64.78729],[85.27038,64.79635],[85.30403,64.79577],[85.30883,64.79197],[85.34385,64.79226],[85.39054,64.80629],[85.39398,64.81301],[85.41183,64.8098],[85.44685,64.82441],[85.45028,64.83405],[85.4853,64.83492],[85.54573,64.85127],[85.59173,64.84864],[85.63087,64.84134],[85.66452,64.84047],[85.68992,64.83259],[85.71464,64.8285],[85.73318,64.82879],[85.73867,64.82178],[85.82382,64.78407],[85.8197,64.6856],[85.89317,64.60386],[85.90621,64.59384],[85.9069,64.57881],[85.87532,64.5505],[85.81558,64.51034],[85.80665,64.49704],[85.92819,64.42807],[85.92887,64.38091],[85.98655,64.31045],[86.00647,64.27948],[86.01539,64.25414],[85.98518,64.21085],[85.96733,64.16631],[85.93093,64.13008],[85.96183,64.0767],[85.96527,64.05478],[85.8966,64.04216],[85.83206,64.02712],[85.76683,64.00908],[85.75035,64.00125],[85.70022,63.99071],[85.67619,63.97234],[85.63293,63.95426],[85.58624,63.94702],[85.49491,63.9262],[85.47981,63.91775],[85.46539,63.90084],[85.47569,63.88543],[85.46951,63.8688],[85.43449,63.86245],[85.39054,63.86366],[85.38574,63.85156],[85.35827,63.85247],[85.35553,63.84732],[85.37406,63.83854],[85.33287,63.80886],[85.326,63.79704],[85.36582,63.78946],[85.34385,63.77975],[85.35141,63.77429],[85.37475,63.76731],[85.36377,63.76002],[85.33836,63.7582],[85.32463,63.7494],[85.32188,63.7336],[85.31021,63.72296],[85.31639,63.71719],[85.33767,63.71567],[85.32119,63.7032],[85.31776,63.68433],[85.30746,63.66484],[85.28892,63.66271],[85.29235,63.64869],[85.26077,63.63375],[85.23674,63.62644],[85.21133,63.62552],[85.20652,63.62033],[85.20858,63.6066],[85.19622,63.60294],[85.18592,63.61026],[85.16807,63.59164],[85.1509,63.57606],[85.1564,63.56414],[85.13443,63.56384],[85.06851,63.59011],[85.04585,63.59164],[85.03006,63.58706],[85.05409,63.57453],[85.06439,63.57331],[85.08087,63.56292],[85.05958,63.56261],[85.08293,63.54824],[85.07057,63.53478],[85.08773,63.52744],[85.09185,63.53294],[85.1049,63.53111],[85.10421,63.52682],[85.12413,63.52529],[85.13168,63.52009],[85.1564,63.52499],[85.1873,63.52009],[85.1873,63.51151],[85.19897,63.5106],[85.20927,63.52131],[85.21957,63.5207],[85.23124,63.49896],[85.24223,63.49865],[85.24635,63.50478],[85.27244,63.50937],[85.28617,63.5207],[85.29441,63.51917],[85.31089,63.50263],[85.33493,63.49834],[85.35621,63.47167],[85.38368,63.46983],[85.38986,63.46186],[85.37406,63.44897],[85.42007,63.43301],[85.40634,63.43239],[85.39329,63.42963],[85.41389,63.42379],[85.41046,63.41642],[85.36651,63.40628],[85.36788,63.39398],[85.37269,63.39336],[85.38642,63.39859],[85.40702,63.38475],[85.41389,63.36475],[85.44204,63.36413],[85.49285,63.35859],[85.50315,63.36875],[85.57045,63.3786],[85.6295,63.37521],[85.63362,63.37029],[85.65971,63.37675],[85.68031,63.37583],[85.69747,63.35798],[85.69198,63.34658],[85.69953,63.33302],[85.65147,63.32624],[85.6549,63.31946],[85.64048,63.317],[85.63018,63.30651],[85.63705,63.30281],[85.60409,63.29787],[85.59173,63.29047],[85.58486,63.29139],[85.57113,63.28213],[85.58006,63.28028],[85.57045,63.26824],[85.5828,63.26515],[85.58349,63.26206],[85.55946,63.25032],[85.55259,63.23981],[85.57869,63.2262],[85.56152,63.21475],[85.55328,63.20175],[85.53199,63.20268],[85.51139,63.18132],[85.49903,63.18039],[85.49629,63.17636],[85.50659,63.15745],[85.49972,63.14101],[85.52032,63.13295],[85.53131,63.12271],[85.52307,63.11432],[85.52993,63.10873],[85.53062,63.1019],[85.54161,63.09973],[85.56358,63.10128],[85.59928,63.07144],[85.59997,63.06149],[85.578,63.06771],[85.57251,63.06584],[85.59585,63.0478],[85.60134,63.04935],[85.6192,63.0369],[85.59585,63.01604],[85.57319,63.00856],[85.56839,63.00108],[85.55603,62.99983],[85.50521,62.97987],[85.50865,62.96864],[85.53543,62.94523],[85.52307,62.93461],[85.51689,62.90272],[85.4956,62.90272],[85.48942,62.89115],[85.4496,62.8827],[85.41732,62.88238],[85.36514,62.87863],[85.30677,62.85044],[85.25047,62.81156],[85.22163,62.80121],[85.20858,62.78614],[85.18249,62.74246],[85.1564,62.72547],[85.15022,62.71509],[85.14404,62.70942],[85.12001,62.70722],[85.11383,62.70029],[85.12207,62.68643],[85.07812,62.67099],[85.06439,62.65837],[85.06301,62.65459],[85.07537,62.65364],[85.08087,62.64418],[85.10421,62.64071],[85.08361,62.6265],[85.04928,62.62208],[85.04585,62.6164],[85.03418,62.61766],[85.02456,62.60756],[84.98611,62.59207],[84.96757,62.59207],[84.94834,62.58765],[84.94354,62.5769],[84.925,62.5712],[84.92363,62.56235],[84.91401,62.55792],[84.90989,62.5481],[84.8941,62.55127],[84.91264,62.52657],[84.92157,62.52657],[84.92157,62.51707],[84.94216,62.50914],[84.9353,62.50376],[84.9353,62.49773],[84.92569,62.49488],[84.93324,62.49044],[84.92637,62.48727],[84.94079,62.48156],[84.92363,62.48092],[84.89685,62.47426],[84.83779,62.43901],[84.74441,62.40564],[84.69772,62.39418],[84.59541,62.31326],[84.50546,62.22859],[84.47044,62.20491],[84.43885,62.18985],[84.47387,62.11865],[84.47456,62.0846],[84.47868,62.05404],[84.49035,62.03763],[84.47868,62.02668],[84.50683,62.00799],[84.5137,61.98413],[84.5082,61.95283],[84.51576,61.9257],[84.5391,61.90469],[84.6064,61.87492],[84.63043,61.85809],[84.62905,61.8393],[84.64553,61.82212],[84.67506,61.80428],[84.76089,61.7887],[84.83779,61.76987],[84.88517,61.78481],[84.91333,61.79033],[85.00396,61.76435],[85.07537,61.7507],[85.15159,61.7133],[85.18455,61.70191],[85.23056,61.6954],[85.24704,61.68433],[85.26901,61.67814],[85.33287,61.69508],[85.37818,61.69703],[85.49148,61.61814],[85.71601,61.57372],[85.84648,61.593],[85.92613,61.56097],[85.95909,61.54396],[85.97282,61.47387],[85.96252,61.46042],[85.80047,61.45484],[85.63774,61.36843],[85.69473,61.32003],[85.69473,61.29761],[85.68786,61.28541],[85.51757,61.23886],[85.30265,61.17768],[85.223,61.15085],[85.09323,61.11804],[84.97718,61.08684],[84.87831,61.0523],[84.75059,61.01971],[84.6524,61.00174],[84.53842,60.95744],[84.3901,60.90273],[84.27406,60.86531],[84.24179,60.86263],[84.21569,60.86564],[84.19029,60.85828],[84.00215,60.84256],[83.94722,60.83453],[83.47274,61.03302],[83.15689,61.02637],[82.80532,60.88369],[82.37823,60.70679],[82.40638,60.60887],[82.16743,60.51675],[81.88797,60.63447],[81.59545,60.63717],[81.47117,60.60416],[81.1148,60.63683],[81.10313,60.65938],[81.08459,60.6688],[81.05506,60.74943],[80.99189,60.76653],[80.72067,60.79804],[80.63484,60.76352],[80.42129,60.74607],[80.19813,60.67048],[80.05188,60.67149],[79.94476,60.66779],[79.69963,60.68629],[79.67216,60.68461],[79.63989,60.68393],[79.56848,60.67418],[79.50324,60.66544],[79.40849,60.64323],[79.38446,60.64592],[79.37347,60.65905],[79.3563,60.66342],[79.33708,60.68494],[79.33845,60.69435],[79.31648,60.69671],[79.30137,60.70276],[79.29725,60.72459],[79.2897,60.73399],[79.29863,60.75278],[79.28146,60.76553],[79.3,60.77592],[79.29588,60.78564],[79.30549,60.79569],[79.28627,60.8044],[79.25811,60.80876],[79.25743,60.81746],[79.21348,60.8188],[79.2176,60.82583],[79.21211,60.82784],[79.19426,60.82182],[79.18876,60.82717],[79.1613,60.82316],[79.14482,60.81479],[79.13108,60.81813],[79.12422,60.81244],[79.10018,60.8188],[79.09263,60.80775],[79.06997,60.80842],[79.05349,60.81311],[79.05487,60.82115],[79.04251,60.82249],[79.04113,60.81445],[79.02465,60.80474],[79.00749,60.80876],[78.98757,60.80775],[78.99375,60.81813],[78.97865,60.81981],[78.96904,60.81311],[78.95668,60.81144],[78.95256,60.79737],[78.94706,60.79703],[78.93264,60.79804],[78.92372,60.79636],[78.91067,60.79904],[78.8935,60.78832],[78.8887,60.78061],[78.84956,60.7672],[78.8269,60.77056],[78.80767,60.76687],[78.80424,60.75714],[78.79394,60.75379],[78.78295,60.76419],[78.78845,60.77492],[78.78158,60.78732],[78.75412,60.78966],[78.73489,60.80273],[78.73489,60.81746],[78.71429,60.82684],[78.67172,60.81981],[78.50349,60.7672],[78.23364,60.80072],[78.11004,60.79837],[77.96585,60.74272],[77.8656,60.78732],[77.70423,60.82048],[77.59574,60.82249],[77.50923,60.81746],[77.45979,60.81043],[77.41928,60.81244],[77.3513,60.82684],[77.31216,60.84123],[77.25723,60.84022],[77.19474,60.85628],[77.10617,60.85929],[77.07252,60.84256],[77.07733,60.83688],[77.08969,60.83085],[77.07733,60.82282],[77.09655,60.82349],[77.089,60.80105],[77.07046,60.79703],[77.07389,60.78564],[77.07046,60.78028],[77.08488,60.76888],[77.0993,60.75379],[77.11372,60.7454],[77.10479,60.73365],[77.09724,60.70578],[77.03407,60.69301],[77.01622,60.69301],[77.02995,60.68629],[77.01896,60.66947],[77.00798,60.66813],[76.99081,60.67116],[76.986,60.6688],[77.01347,60.65602],[77.0066,60.65097],[76.95854,60.66207],[76.9709,60.65265],[76.96128,60.65063],[76.97296,60.64087],[76.96815,60.62909],[76.98463,60.62808],[77.01004,60.62168],[77.0224,60.62134],[77.04025,60.62437],[77.05192,60.61831],[77.05398,60.60112],[77.05123,60.5873],[77.05398,60.57178],[77.06703,60.52722],[77.0272,60.50728],[76.97433,60.50627],[76.93931,60.49173],[76.8885,60.48124],[76.84181,60.46669],[76.81366,60.46432],[76.81297,60.43588],[76.80061,60.41419],[76.77452,60.39825],[76.77658,60.38875],[76.76284,60.37721],[76.77177,60.36465],[76.76353,60.35311],[76.77246,60.34292],[76.76765,60.33408],[76.79512,60.32626],[76.83357,60.30484],[76.85691,60.27523],[76.85691,60.26911],[76.86241,60.25991],[76.86172,60.24628],[76.84318,60.21935],[76.82739,60.20434],[76.837,60.19854],[76.83906,60.17703],[76.83357,60.1702],[76.79992,60.15141],[76.78138,60.14731],[76.77452,60.13706],[76.74018,60.12988],[76.72233,60.12132],[76.72302,60.11482],[76.7752,60.07135],[76.7601,60.0007],[76.76765,59.99658],[76.77452,59.98593],[76.76696,59.95776],[76.74018,59.70863],[76.67839,59.69027],[76.65504,59.607],[76.67152,59.58962],[76.65504,59.57015],[76.49368,59.54197],[76.42501,59.54162],[76.17782,59.52979],[75.98968,59.38008],[75.89973,59.39512],[75.83175,59.2764],[75.64361,59.20933],[75.72807,59.01794],[75.72326,58.9946],[75.67863,58.95213],[75.61683,58.90677],[75.39367,58.79667],[75.12657,58.66301],[75.19455,58.61763],[75.11146,58.57433],[75.36964,58.45671],[75.0579,58.33689],[75.23918,58.20364],[75.07576,58.11597],[75.56739,57.93308],[75.57701,57.87908],[75.55366,57.62518],[75.69854,57.62702],[75.85029,57.38615],[75.96427,57.39392],[76.09817,57.23521],[76.19705,56.94347],[76.26434,56.885],[76.24099,56.82643],[76.26434,56.81403],[76.29043,56.69696],[76.17301,56.65207],[76.15242,56.63886],[76.16683,56.62715],[76.16615,56.61884],[76.14006,56.61733],[76.10504,56.60901],[76.03912,56.61846],[76.01989,56.57083],[75.96153,56.5076],[75.85372,56.49548],[75.8345,56.47804],[75.84754,56.45907],[75.83587,56.44807],[75.8448,56.43896],[75.83038,56.41997],[75.85029,56.40174],[75.85784,56.40212],[75.85853,56.412],[75.86746,56.41352],[75.87501,56.41162],[75.89286,56.42073],[75.89424,56.41352],[75.91278,56.42453],[75.91827,56.43972],[75.92788,56.44427],[75.94368,56.44617],[75.9526,56.43972],[75.95947,56.44997],[75.98281,56.46362],[76.00616,56.45566],[76.00753,56.44579],[76.01783,56.44503],[76.02676,56.45338],[76.01989,56.45755],[76.02127,56.46211],[76.02676,56.46249],[76.02813,56.45831],[76.03706,56.45983],[76.04736,56.46362],[76.07551,56.45604],[76.07826,56.44997],[76.08718,56.44807],[76.08924,56.44275],[76.10984,56.44503],[76.12701,56.41845],[76.08993,56.42453],[76.05835,56.4158],[76.07894,56.40364],[76.08444,56.37209],[76.08032,56.32567],[76.10298,56.29939],[76.0865,56.29672],[76.08512,56.28948],[76.1071,56.2891],[76.12564,56.27157],[76.17782,56.27958],[76.20735,56.24106],[76.2355,56.21625],[76.30485,56.18187],[76.3021,56.15511],[76.22589,56.14669],[76.18125,56.13789],[76.138,56.12259],[76.12152,56.1574],[76.1071,56.15205],[76.07208,56.14822],[76.01921,56.16428],[75.95947,56.11799],[75.73493,56.11263],[75.73219,56.0977],[75.67932,56.07126],[75.68481,56.05631],[75.65666,56.03829],[75.59005,56.03867],[75.58181,56.03138],[75.52894,56.03138],[75.53443,56.00874],[75.41976,55.9342],[75.35522,55.91304],[75.3202,55.8961],[75.26252,55.84448],[75.26458,55.8333],[75.30304,55.83175],[75.33462,55.8117],[75.34286,55.81131],[75.34698,55.79973],[75.36552,55.80514],[75.36895,55.74141],[75.23094,55.73097],[75.10322,55.75571],[75.08743,55.72672],[75.12931,55.70931],[75.11352,55.69848],[75.11764,55.69152],[75.11627,55.68571],[75.24604,55.63768],[75.25566,55.62528],[75.233,55.62528],[75.22476,55.61985],[75.19592,55.61985],[75.1918,55.61558],[75.18562,55.61365],[75.16983,55.59891],[75.14785,55.59231],[75.1403,55.58494],[75.18493,55.56553],[75.1966,55.55233],[75.22132,55.54067],[75.26046,55.54922],[75.27694,55.54922],[75.28587,55.55776],[75.28999,55.55699],[75.28999,55.55116],[75.30304,55.54572],[75.31883,55.50452],[75.20965,55.47145],[75.16021,55.44926],[75.19111,55.42667],[75.09292,55.37598],[75.17669,55.35062],[75.17051,55.32758],[75.19935,55.32133],[75.20141,55.28654],[75.22407,55.28263],[75.27831,55.23176],[75.28037,55.22197],[75.27008,55.21453],[75.26664,55.19572],[75.29342,55.16945],[75.25016,55.14945],[75.26046,55.12864],[75.27557,55.12158],[75.31471,55.12747],[75.31471,55.06657],[75.36758,55.06657],[75.41084,54.99101],[75.382,54.99022],[75.33256,54.91096],[75.34629,54.90306],[75.44517,54.90346],[75.4438,54.91648],[75.51246,54.91372],[75.51452,54.9003],[75.49049,54.88332],[75.52825,54.80306],[75.54199,54.79949],[75.54954,54.79989],[75.54679,54.81611],[75.60241,54.82007],[75.61134,54.80662],[75.63812,54.81018],[75.6855,54.70439],[75.68412,54.67462],[75.73562,54.67541],[75.73562,54.70082],[75.78369,54.69447],[75.79948,54.69804],[75.80703,54.69129],[75.80154,54.68375],[75.80223,54.67303],[75.82489,54.66668],[75.85304,54.60826],[75.84892,54.60349],[75.82763,54.59951],[75.80566,54.5418],[75.68962,54.54458],[75.68923,54.12279],[76.2046,54.26041],[76.22726,54.27645],[76.18743,54.30009],[76.22932,54.32493],[76.25885,54.35775],[76.35086,54.33494],[76.47445,54.31812],[76.54792,54.32773],[76.57676,54.33934],[76.59874,54.34335],[76.60835,54.33654],[76.64817,54.33534],[76.67701,54.34455],[76.68937,54.37415],[76.73057,54.40414],[76.73057,54.41773],[76.79786,54.41813],[76.82739,54.42971],[76.84455,54.44009],[76.87133,54.44808],[76.9297,54.45766],[76.94,54.4385],[76.93656,54.42652],[76.9503,54.41773],[76.9345,54.41533],[76.87751,54.40294],[76.87477,54.39735],[76.78138,54.37815],[76.78619,54.36015],[76.81983,54.36775],[76.86172,54.36135],[76.87751,54.3013],[76.87271,54.29769],[76.86515,54.28687],[76.82945,54.27284],[76.83563,54.26281],[76.82807,54.2247],[76.81022,54.21707],[76.791,54.1994],[76.7498,54.18413],[76.75735,54.16122],[76.69418,54.14675],[76.67083,54.13347],[76.64543,54.12462],[76.6159,54.15439],[76.6159,54.16203],[76.58294,54.14996],[76.44012,54.16645],[76.43463,54.121],[76.49848,54.07268],[76.5026,54.03761],[76.53076,54.01261],[76.53762,53.99929],[76.77864,53.87439],[76.99836,53.76494],[77.2483,53.6426],[77.45498,53.535],[77.79281,53.35137],[77.90817,53.29066],[78.04618,53.13976],[78.27003,52.9209],[78.51585,52.65722],[78.71429,52.42964],[78.95942,52.16677],[79.19494,51.91377],[79.21005,51.89344],[80.07934,50.73341],[80.0608,50.82806],[80.06904,50.85364],[80.08346,50.85277],[80.08277,50.82806],[80.18508,50.82762],[80.18508,50.85017],[80.19195,50.85017],[80.1947,50.89913],[80.24345,50.89956],[80.2462,50.91861],[80.32379,50.91818],[80.32516,50.92727],[80.37735,50.92684],[80.4206,50.96188],[80.43708,50.95972],[80.46935,50.96275],[80.48309,50.97053],[80.48103,51.10869],[80.45631,51.11042],[80.45631,51.11861],[80.43914,51.11904],[80.43708,51.17245],[80.44601,51.20731],[80.49408,51.20387],[80.63415,51.20688],[80.63552,51.26277],[80.67741,51.31645],[80.74539,51.29842],[80.87448,51.27265],[80.90743,51.25718],[80.94108,51.25847],[80.92048,51.21978],[81.04614,51.18881],[81.04751,51.18149],[81.10244,51.1802],[81.11549,51.21032],[81.14639,51.2129],[81.1663,51.18536],[81.17454,51.18364],[81.17935,51.15652],[81.16287,51.12248],[81.14296,51.07894],[81.11686,51.06427],[81.1045,51.0647],[81.10176,51.06168],[81.09558,51.03275],[81.08734,51.02412],[81.08116,50.99647],[81.06674,50.97096],[81.06124,50.94761],[81.156,50.95064],[81.17935,50.95885],[81.19171,50.9502],[81.2384,50.96621],[81.27067,50.96534],[81.28784,50.97269],[81.30844,50.97572],[81.41143,50.97485],[81.41487,50.92944],[81.43409,50.9303],[81.43615,50.91082],[81.44371,50.91082],[81.44233,50.8896],[81.42036,50.88137],[81.42036,50.87227],[81.43341,50.87184],[81.43547,50.86274],[81.46911,50.86231],[81.47117,50.8389],[81.48559,50.82502],[81.4595,50.80246],[81.4492,50.75687],[81.52679,50.75166],[81.58241,50.74297],[81.72798,50.75991],[81.75682,50.78379],[81.77673,50.82068],[81.7884,50.81591],[81.78909,50.79508],[81.79458,50.77815],[81.8399,50.77945],[81.90582,50.79855],[81.958,50.78814],[82.01431,50.78727],[82.03422,50.76947],[82.061,50.76643],[82.05963,50.75774],[82.07817,50.75079],[82.14683,50.74775],[82.17292,50.74601],[82.17498,50.7321],[82.18734,50.73689],[82.20108,50.73515],[82.21756,50.74167],[82.22374,50.73645],[82.23953,50.74644],[82.24914,50.74731],[82.25738,50.76078],[82.27592,50.77207],[82.29515,50.76903],[82.31643,50.75383],[82.33017,50.76773],[82.35145,50.77468],[82.35763,50.78466],[82.3645,50.77815],[82.37617,50.77945],[82.39471,50.76035],[82.40844,50.76512],[82.47299,50.75731],[82.48603,50.74297],[82.53341,50.75209],[82.565,50.74688],[82.60414,50.77772],[82.62817,50.77989],[82.64946,50.79638],[82.66525,50.79204],[82.68104,50.80072],[82.67692,50.80853],[82.69958,50.81114],[82.71125,50.82459],[82.70851,50.83283],[82.73941,50.84974],[82.73117,50.85884],[82.71606,50.89567],[82.73254,50.90736],[82.73254,50.92727],[82.78953,50.92035],[82.83966,50.91861],[82.86369,50.90303],[82.88429,50.89826],[82.88909,50.90649],[82.91381,50.90779],[82.92823,50.89783],[82.96531,50.8922],[82.97973,50.88527],[83.00514,50.92554],[83.06488,50.93722],[83.09989,50.96231],[83.11157,50.96621],[83.12324,51.01159],[83.17474,51.01202],[83.18023,51.00252],[83.20495,50.99215],[83.22143,51.00208],[83.26744,51.00597],[83.28254,51.01548],[83.2949,51.00943],[83.35533,51.00857],[83.35945,51.00165],[83.37043,50.99949],[83.40477,51.01332],[83.44871,51.00986],[83.43086,50.98782],[83.44596,50.97788],[83.47274,50.97658],[83.48922,50.98047],[83.50502,50.97485],[83.50227,50.95323],[83.51051,50.94934],[83.53866,50.96145],[83.57231,50.95366],[83.58741,50.94674],[83.59977,50.96015],[83.63067,50.94458],[83.64097,50.95193],[83.6499,50.95193],[83.65676,50.94025],[83.68217,50.92251],[83.67942,50.91602],[83.71169,50.8935],[83.74397,50.89393],[83.83255,50.88007],[83.84697,50.85624],[83.87443,50.84757],[83.8758,50.8389],[83.89709,50.83152],[83.90945,50.81548],[83.96781,50.79942],[83.97399,50.77902],[83.95134,50.76252],[83.95065,50.74731],[83.95957,50.74036],[83.96644,50.72689],[83.98773,50.70733],[84.02343,50.69819],[84.04815,50.6734],[84.04884,50.6673],[84.07081,50.65642],[84.07768,50.63857],[84.10858,50.62289],[84.11544,50.60938],[84.14497,50.6059],[84.15527,50.58759],[84.15115,50.5732],[84.16694,50.56971],[84.17175,50.56404],[84.17106,50.55009],[84.19784,50.54223],[84.2308,50.53961],[84.24934,50.51517],[84.23767,50.506],[84.23355,50.48285],[84.20333,50.47018],[84.21569,50.43432],[84.22737,50.43083],[84.24385,50.39319],[84.23904,50.38925],[84.24453,50.37612],[84.26307,50.36473],[84.272,50.33801],[84.2617,50.32398],[84.27269,50.31916],[84.24865,50.29328],[84.2974,50.24983],[84.32006,50.2472],[84.32556,50.22832],[84.3647,50.20635],[84.38667,50.21689],[84.40727,50.20942],[84.44984,50.24808],[84.50546,50.23051],[84.524,50.20811],[84.54185,50.20723],[84.56657,50.19668],[84.58168,50.20942],[84.62219,50.21426],[84.6627,50.19536],[84.69429,50.19008],[84.69909,50.17821],[84.72793,50.1637],[84.73136,50.15578],[84.75677,50.13818],[84.8014,50.14742],[84.82475,50.14434],[84.8117,50.13686],[84.8117,50.12057],[84.8323,50.11441],[84.83299,50.10692],[84.85496,50.09503],[84.88792,50.10516],[84.92225,50.09151],[84.94903,50.09547],[84.96688,50.07036],[85.03692,50.05317],[85.03692,50.01832],[85.05203,50.0095],[85.03761,50.00862],[85.03212,50.00067],[84.99366,49.99008],[84.9765,49.97772],[84.99504,49.97021],[84.97856,49.94768],[84.98336,49.90922],[85.02388,49.89109],[85.05683,49.88622],[85.0843,49.85967],[85.10696,49.84196],[85.09872,49.82602],[85.14198,49.79722],[85.15228,49.76707],[85.16532,49.7684],[85.177,49.75465],[85.20378,49.744],[85.19691,49.73735],[85.21476,49.71648],[85.20584,49.71293],[85.21408,49.67429],[85.2024,49.6534],[85.21545,49.63695],[85.21133,49.62761],[85.22369,49.62361],[85.25322,49.62628],[85.26489,49.61827],[85.25528,49.60492],[85.26077,49.59869],[85.25733,49.58934],[85.32051,49.59068],[85.38917,49.63517],[85.49217,49.59736],[85.55397,49.59602],[85.58418,49.61249],[85.59654,49.61471],[85.62332,49.59825],[85.62606,49.58044],[85.67688,49.55105],[85.69679,49.56486],[85.7579,49.57643],[85.76751,49.56975],[85.78193,49.57332],[85.79429,49.56352],[85.8094,49.56575],[85.80528,49.55773],[85.81077,49.54838],[85.83343,49.54303],[85.8815,49.5653],[85.88974,49.56129],[85.92132,49.56397],[85.93093,49.56085],[85.94947,49.55639],[85.94604,49.54838],[85.93025,49.53412],[85.94398,49.5096],[85.95291,49.50737],[85.95016,49.50336],[85.9687,49.4873],[86.02226,49.50113],[86.04835,49.52654],[86.08612,49.52298],[86.10809,49.52699],[86.1589,49.50782],[86.17332,49.49667],[86.17538,49.47883],[86.20216,49.46633],[86.23031,49.49667],[86.23786,49.52387],[86.26876,49.54927],[86.26808,49.56842],[86.27563,49.584],[86.30928,49.5978],[86.32232,49.5978],[86.32713,49.5929],[86.37794,49.5978],[86.41571,49.60893],[86.42875,49.62939],[86.45141,49.63695],[86.49742,49.66807],[86.51115,49.69073],[86.52832,49.70228],[86.58256,49.72447],[86.57844,49.73291],[86.60316,49.74311],[86.61003,49.7715],[86.59767,49.78658],[86.59183,49.80819],[86.63818,49.80608],[86.65535,49.81273],[86.67457,49.80963],[86.68899,49.8114],[86.735,49.78747],[86.78375,49.79545],[86.77002,49.76308],[86.7659,49.7582],[86.76452,49.75066],[86.75422,49.74223],[86.77688,49.70094],[86.77207,49.69206],[86.75491,49.68984],[86.73637,49.68895],[86.73019,49.67784],[86.72538,49.67651],[86.71302,49.6854],[86.70204,49.68584],[86.69929,49.67829],[86.68693,49.67518],[86.68418,49.67073],[86.66496,49.66407],[86.65329,49.65251],[86.65535,49.64451],[86.63543,49.63206],[86.61346,49.62717],[86.60934,49.61515],[86.59629,49.60848],[86.61827,49.56931],[86.6526,49.56218],[86.68075,49.56174],[86.68281,49.56931],[86.72195,49.56931],[86.76246,49.56797],[86.75834,49.56218],[86.77688,49.56352],[86.77688,49.55684],[86.82975,49.5457],[86.82563,49.53768],[86.81671,49.53055],[86.84761,49.51495],[86.85585,49.49935],[86.83181,49.48374],[86.83731,49.45384],[86.86958,49.43509],[86.90734,49.42839],[86.91284,49.41722],[86.93,49.42169],[86.9458,49.40695],[86.93481,49.39801],[86.94923,49.38282],[86.93687,49.36896],[86.92451,49.3694],[86.9252,49.34838],[86.9506,49.3363],[86.96228,49.32467],[86.95816,49.31796],[86.97807,49.30184],[87.00416,49.29915],[87.03506,49.25077],[87.12638,49.2557],[87.14012,49.24629],[87.16552,49.24987],[87.17239,49.24674],[87.20535,49.25077],[87.2438,49.23687],[87.25479,49.24046],[87.27127,49.23284],[87.30491,49.23598],[87.31452,49.23149],[87.29049,49.20279],[87.29942,49.18529],[87.30354,49.16913],[87.28775,49.15611],[87.30217,49.14937],[87.29599,49.12961],[87.28157,49.11882],[87.29461,49.11298],[87.30491,49.10714],[87.32139,49.10489],[87.32208,49.10084],[87.33238,49.09904],[87.3468,49.10309],[87.35778,49.09545],[87.36259,49.09455],[87.36534,49.09635],[87.38044,49.09275],[87.38319,49.08915],[87.39761,49.0869],[87.39898,49.08241],[87.40448,49.07971],[87.40654,49.07611],[87.42507,49.07386],[87.42782,49.07116],[87.43812,49.07251],[87.44773,49.08106],[87.46078,49.086],[87.46559,49.08825],[87.47726,49.08915],[87.48962,49.086],[87.50198,49.09005],[87.50747,49.10534],[87.50541,49.11747],[87.49168,49.12646],[87.49031,49.1332],[87.49168,49.13859],[87.50953,49.13814],[87.52189,49.14443],[87.53425,49.13994],[87.5418,49.14219],[87.54867,49.13949],[87.55554,49.14039],[87.56446,49.135],[87.56927,49.14129],[87.57614,49.14263],[87.58232,49.14129],[87.58781,49.14533],[87.60154,49.14892],[87.60635,49.14937],[87.61459,49.14488],[87.62077,49.14847],[87.62626,49.15072],[87.63382,49.14758],[87.64068,49.14937],[87.64892,49.15341],[87.65853,49.15117],[87.67089,49.15117],[87.68051,49.15925],[87.686,49.17137],[87.69561,49.17586],[87.70591,49.17586],[87.72514,49.17721],[87.73887,49.17631],[87.74711,49.17137],[87.75123,49.16733],[87.77183,49.17227],[87.77389,49.17631],[87.77801,49.17901],[87.78556,49.17452],[87.81372,49.16778],[87.82264,49.17811],[87.83432,49.17631],[87.8556,49.17541],[87.86041,49.17811],[87.87551,49.17227],[87.8865,49.17182],[87.89268,49.17631],[87.90641,49.17721],[87.91809,49.17272],[87.9277,49.17362],[87.93113,49.17945],[87.9483,49.18035],[87.95585,49.18484],[87.96615,49.18349],[87.97645,49.18619],[87.98881,49.18394],[88.00254,49.1992],[87.9998,49.20952],[88.00529,49.20907],[88.01284,49.21849],[88.01902,49.22118],[88.01696,49.22567],[88.03001,49.23284],[88.05473,49.23956],[88.05748,49.24719],[88.05198,49.25256],[88.05061,49.25705],[88.06434,49.26018],[88.08082,49.26063],[88.08631,49.2548],[88.10691,49.2557],[88.12339,49.27273],[88.12683,49.27945],[88.14605,49.28034],[88.15429,49.28617],[88.17009,49.29333],[88.17009,49.29602],[88.16253,49.29915],[88.16665,49.30632],[88.15773,49.31661],[88.16322,49.31751],[88.17009,49.32333],[88.16459,49.33228],[88.15429,49.3372],[88.16459,49.34033],[88.16528,49.34525],[88.16665,49.35062],[88.15841,49.35643],[88.16047,49.36225],[88.13919,49.36896],[88.12339,49.37298],[88.12408,49.37656],[88.11721,49.37879],[88.12065,49.38684],[88.11859,49.39041],[88.14125,49.40159],[88.15429,49.40695],[88.16597,49.40873],[88.17077,49.4141],[88.18107,49.4141],[88.18656,49.41722],[88.17832,49.42392],[88.17901,49.43419],[88.17352,49.44],[88.16665,49.44],[88.16597,49.44536],[88.17352,49.45473],[88.18382,49.45473],[88.19068,49.45652],[88.19549,49.46321],[88.21609,49.47481],[88.2209,49.47927],[88.23257,49.47794],[88.23669,49.47526],[88.24562,49.4815],[88.25042,49.47927],[88.26553,49.48284],[88.26553,49.48017],[88.28407,49.4766],[88.29574,49.47169],[88.3184,49.4757],[88.32321,49.48418],[88.32733,49.48686],[88.32389,49.48998],[88.33076,49.48998],[88.339,49.49533],[88.34587,49.49489],[88.34793,49.49087],[88.35891,49.49043],[88.36303,49.4815],[88.37677,49.48284],[88.38089,49.48552],[88.39187,49.48641],[88.40286,49.49622],[88.40835,49.48953],[88.4214,49.48552],[88.42483,49.47972],[88.4317,49.47615],[88.43444,49.47035],[88.46603,49.46946],[88.49556,49.47214],[88.51341,49.48507],[88.52371,49.4873],[88.55117,49.48329],[88.56559,49.49444],[88.59718,49.50336],[88.60336,49.50202],[88.60611,49.49355],[88.62602,49.49801],[88.63151,49.49221],[88.64112,49.49043],[88.65898,49.48106],[88.6734,49.46544],[88.68644,49.46098],[88.70498,49.45964],[88.71528,49.4525],[88.72352,49.45473],[88.73725,49.45027],[88.74961,49.45696],[88.74755,49.45964],[88.75099,49.46098],[88.77845,49.45473],[88.78738,49.4583],[88.81279,49.45919],[88.82034,49.45205],[88.82034,49.44759],[88.84025,49.44089],[88.85536,49.45295],[88.86497,49.45473],[88.86016,49.46143],[88.84986,49.46723],[88.86291,49.46589],[88.8842,49.47526],[88.87252,49.48017],[88.87115,49.48507],[88.85261,49.48864],[88.85261,49.49578],[88.86909,49.49801],[88.87733,49.50202],[88.88008,49.52119],[88.87596,49.52966],[88.87664,49.54214],[88.86909,49.54748],[88.88832,49.55773],[88.90068,49.55728],[88.90892,49.54615],[88.92608,49.54526],[88.93364,49.53768],[88.93432,49.52788],[88.92814,49.52565],[88.92746,49.51986],[88.93226,49.5154],[88.93432,49.51049],[88.94256,49.50916],[88.95904,49.50113],[88.96522,49.4931],[88.95561,49.48374],[88.96591,49.46366],[88.97758,49.46187],[88.99955,49.4708],[89.01123,49.46633],[89.01878,49.48061],[89.03595,49.4882],[89.04624,49.48284],[89.08058,49.48418],[89.09294,49.48864],[89.10736,49.48909],[89.11148,49.49756],[89.12178,49.49935],[89.12933,49.49756],[89.14444,49.50202],[89.15267,49.51629],[89.17465,49.51763],[89.19044,49.51673],[89.2028,49.52164],[89.20211,49.53011],[89.21173,49.53813],[89.22889,49.54481],[89.23164,49.55105],[89.22546,49.56085],[89.21585,49.5702],[89.20417,49.57109],[89.19937,49.58222],[89.19044,49.58712],[89.20005,49.60403],[89.18151,49.61871],[89.18563,49.63161],[89.2131,49.63606],[89.23164,49.64362],[89.24881,49.6454],[89.25773,49.63695],[89.27627,49.62939],[89.28176,49.6196],[89.30099,49.61204],[89.30854,49.6027],[89.31678,49.60403],[89.33052,49.5978],[89.347,49.5929],[89.33532,49.58311],[89.34562,49.58311],[89.3518,49.58534],[89.36142,49.58356],[89.37034,49.59201],[89.38888,49.59647],[89.37927,49.61026],[89.39094,49.61071],[89.4033,49.62094],[89.41909,49.6156],[89.42596,49.62227],[89.43557,49.62316],[89.43557,49.63295],[89.43008,49.63473],[89.44381,49.64362],[89.45823,49.66407],[89.46716,49.66051],[89.50012,49.66407],[89.51454,49.67651],[89.55162,49.68184],[89.57428,49.67651],[89.58938,49.68007],[89.59556,49.68007],[89.63745,49.68806],[89.67521,49.69384],[89.68414,49.70849],[89.70886,49.72137],[89.71229,49.73468],[89.72053,49.7511],[89.72396,49.77017],[89.7171,49.78747],[89.7013,49.78924],[89.68002,49.7817],[89.66835,49.7817],[89.65805,49.79057],[89.64981,49.7919],[89.62852,49.80697],[89.62989,49.81273],[89.65255,49.82425],[89.64912,49.82868],[89.64019,49.83311],[89.64431,49.84285],[89.62852,49.84551],[89.6244,49.85436],[89.62165,49.85613],[89.62165,49.85879],[89.61135,49.86321],[89.61479,49.87118],[89.61753,49.87915],[89.6244,49.88446],[89.63401,49.8849],[89.62989,49.9048],[89.61616,49.90746],[89.60998,49.90569],[89.60105,49.91144],[89.59144,49.91276],[89.5935,49.91807],[89.60517,49.93177],[89.61479,49.94149],[89.60586,49.94459],[89.60998,49.96491],[89.62577,49.97021],[89.62234,49.9733],[89.61067,49.97639],[89.60243,49.99935],[89.59968,50.01568],[89.57428,50.02097],[89.55436,50.01656],[89.54956,50.02538],[89.53926,50.0342],[89.54406,50.06066],[89.55986,50.07212],[89.58252,50.07741],[89.5935,50.08578],[89.59144,50.10032],[89.56535,50.11221],[89.53926,50.11617],[89.52484,50.12454],[89.52278,50.1307],[89.53376,50.13994],[89.53582,50.1549],[89.52758,50.17645],[89.52346,50.18745],[89.51248,50.19492],[89.4548,50.20019],[89.43832,50.19932],[89.42527,50.18833],[89.40811,50.17865],[89.39918,50.18261],[89.38545,50.18305],[89.37309,50.18129],[89.33464,50.20503],[89.31816,50.20767],[89.3415,50.21645],[89.347,50.22875],[89.34425,50.23798],[89.34494,50.24808],[89.35455,50.26125],[89.39369,50.28933],[89.39781,50.30162],[89.41841,50.31346],[89.39025,50.31697],[89.38682,50.32617],[89.38819,50.33669],[89.39987,50.33888],[89.41635,50.33801],[89.43901,50.34239],[89.4754,50.35422],[89.49668,50.35816],[89.49943,50.36955],[89.50012,50.38444],[89.496,50.3967],[89.48707,50.40151],[89.49256,50.41814],[89.50424,50.43651],[89.50218,50.44569],[89.5111,50.45182],[89.51385,50.46012],[89.54132,50.45225],[89.5729,50.43564],[89.59281,50.42733],[89.62303,50.37743],[89.66903,50.37699],[89.67933,50.38531],[89.71435,50.38575],[89.72465,50.39101],[89.73289,50.40282],[89.75143,50.41201],[89.76791,50.4142],[89.7892,50.42033],[89.82559,50.41289],[89.83657,50.43258],[89.85443,50.43739],[89.86816,50.45138],[89.86885,50.46624],[89.86335,50.4846],[89.85305,50.50032],[89.85305,50.5143],[89.84344,50.52739],[89.82559,50.53263],[89.80911,50.53394],[89.79881,50.54485],[89.77958,50.54659],[89.75761,50.55227],[89.73907,50.56666],[89.72328,50.5719],[89.69993,50.57059],[89.68551,50.57233],[89.66972,50.57277],[89.65873,50.58105],[89.65393,50.58846],[89.65255,50.60241],[89.64569,50.6181],[89.64981,50.63988],[89.64019,50.64771],[89.62165,50.64771],[89.60311,50.6451],[89.59075,50.64859],[89.58252,50.65773],[89.57084,50.68514],[89.55917,50.68732],[89.53926,50.7182],[89.52896,50.72645],[89.5111,50.73037],[89.49119,50.73906],[89.48158,50.75166],[89.47952,50.77077],[89.47059,50.78076],[89.43008,50.8094],[89.42047,50.80159],[89.39575,50.81114],[89.39231,50.82025],[89.38476,50.82719],[89.393,50.83976],[89.40261,50.8493],[89.37583,50.86057],[89.35592,50.86187],[89.35249,50.87704],[89.32365,50.88354],[89.30786,50.8844],[89.28108,50.87964],[89.27696,50.8935],[89.2749,50.90433],[89.26391,50.91645],[89.24881,50.92251],[89.1925,50.98264],[89.1616,51.00381],[89.14856,51.00554],[89.13345,51.01202],[89.10873,51.03966],[89.09225,51.04096],[89.06478,51.0483],[89.06478,51.06383],[89.06066,51.07592],[89.04075,51.09877],[89.03114,51.10309],[89.05311,51.12378],[89.04762,51.16815],[89.03801,51.18321],[89.01741,51.18493],[88.97003,51.20602],[88.96591,51.21849],[88.96797,51.22752],[88.97483,51.23741],[88.95904,51.24558],[88.97209,51.25804],[88.97277,51.26406],[88.99406,51.3143],[88.99475,51.33618],[88.98719,51.34519],[89.00367,51.36792],[89.00985,51.38249],[89.00436,51.3962],[88.96934,51.4326],[88.93158,51.44972],[88.91647,51.46513],[88.89518,51.4694],[88.87184,51.46983],[88.8581,51.47582],[88.85261,51.5019],[88.84437,51.51515],[88.81485,51.52412],[88.79905,51.54249],[88.8018,51.55615],[88.82171,51.56042],[88.82377,51.5664],[88.83956,51.56853],[88.85467,51.56383],[88.89175,51.5664],[88.92059,51.56512],[88.93089,51.5664],[88.95217,51.56341],[88.98307,51.57109],[88.99887,51.57152],[89.01603,51.58389],[89.08538,51.59157],[89.0895,51.62441],[89.12384,51.64273],[89.13345,51.63719],[89.16915,51.63762],[89.21173,51.6585],[89.22203,51.65466],[89.24675,51.65381],[89.25842,51.65083],[89.26528,51.64401],[89.2646,51.63506],[89.25224,51.61247],[89.25087,51.60394],[89.23851,51.5792],[89.24057,51.56255],[89.24675,51.54804],[89.27833,51.54548],[89.29206,51.55572],[89.29893,51.56938],[89.33807,51.59157],[89.36279,51.60096],[89.42939,51.60948],[89.44381,51.60479],[89.45961,51.59413],[89.496,51.58901],[89.54681,51.56853],[89.55505,51.56981],[89.56741,51.56896],[89.61273,51.53181],[89.62577,51.54334],[89.63882,51.54548],[89.65324,51.54163],[89.68689,51.54847],[89.70817,51.557],[89.7686,51.60096],[89.7995,51.61716],[89.81048,51.64231],[89.84001,51.66361],[89.85099,51.68149],[89.87983,51.68915],[89.89837,51.72107],[89.92172,51.73978],[89.92858,51.75509],[89.97253,51.75551],[90.01098,51.76146],[90.0254,51.76019],[90.04119,51.74573],[90.05836,51.74488],[90.08377,51.73638],[90.09819,51.74021],[90.10299,51.74956],[90.12565,51.75169],[90.14144,51.75934],[90.13252,51.78143],[90.10299,51.80606],[90.08514,51.84002],[90.07141,51.86674],[90.06591,51.88878],[90.07141,51.90276],[90.06042,51.91505],[90.06042,51.92902],[90.05149,51.93749],[90.03776,51.93749],[90.02265,51.94468],[90.01647,51.95526],[90.01579,51.96796],[90.03021,51.9743],[90.06111,51.98022],[90.07415,51.99037],[90.08308,52.01193],[90.10711,52.02123],[90.11535,52.03475],[90.13046,52.03897],[90.1593,52.07486],[90.1538,52.09342],[90.14213,52.10987],[90.14144,52.14613],[90.14694,52.15708],[90.18402,52.15329],[90.23345,52.16213],[90.25955,52.17056],[90.30281,52.17224],[90.32478,52.18277],[90.35224,52.20424],[90.3598,52.20634],[90.40168,52.18782],[90.44769,52.18319],[90.46211,52.18908],[90.47996,52.18908],[90.49507,52.18277],[90.53077,52.15582],[90.54451,52.14191],[90.57815,52.12295],[90.60699,52.1103],[90.64682,52.09891],[90.70106,52.09132],[90.72647,52.08372],[90.74844,52.06979],[90.7608,52.04446],[90.76698,52.02419],[90.76973,51.99883],[90.77865,51.98868],[90.79582,51.98403],[90.80062,51.97473],[90.80955,51.9688],[90.82397,51.965],[90.8329,51.95103],[90.83427,51.92944],[90.83976,51.90784],[90.84732,51.90234],[90.85556,51.90149],[90.89057,51.91843],[90.91529,51.92606],[90.94482,51.9286],[90.96542,51.93749],[90.99975,51.94045],[91.0437,51.9468],[91.05606,51.94299],[91.07666,51.94849],[91.09726,51.94299],[91.13914,51.92182],[91.16867,51.90022],[91.18377,51.90318],[91.20575,51.90107],[91.25381,51.88327],[91.2696,51.89302],[91.28608,51.89683],[91.3005,51.89429],[91.35955,51.89302],[91.39938,51.89725],[91.45637,51.89174],[91.47766,51.89047],[91.49482,51.89598],[91.52435,51.907],[91.56005,51.90361],[91.59713,51.88878],[91.60469,51.88412],[91.64108,51.87564],[91.68434,51.87521],[91.69738,51.87013],[91.72279,51.87267],[91.73172,51.86801],[91.75781,51.86716],[91.77017,51.8731],[91.78596,51.88539],[91.79901,51.88454],[91.81617,51.87352],[91.82991,51.86038],[91.83952,51.85868],[91.85737,51.86504],[91.87797,51.86462],[91.89445,51.85529],[91.90406,51.84086],[91.91299,51.83026],[91.93222,51.81922],[91.9535,51.80394],[91.96174,51.80436],[91.99676,51.79587],[92.01873,51.79927],[92.03384,51.79587],[92.05719,51.78525],[92.0716,51.77378],[92.09564,51.78356],[92.11898,51.7912],[92.13958,51.79545],[92.17392,51.80012],[92.18284,51.80564],[92.20893,51.80946],[92.22679,51.8154],[92.23709,51.82304],[92.25975,51.82347],[92.28378,51.81413],[92.3085,51.81837],[92.34077,51.81965],[92.38472,51.81286],[92.39776,51.81413],[92.43141,51.80097],[92.44583,51.80606],[92.46093,51.80436],[92.47947,51.79375],[92.48909,51.79247],[92.49733,51.79884],[92.50831,51.80182],[92.53715,51.79757],[92.58796,51.8171],[92.6017,51.81922],[92.61955,51.81073],[92.63191,51.81201],[92.64907,51.82516],[92.67723,51.85189],[92.69027,51.85486],[92.72735,51.85062],[92.7452,51.8485],[92.78366,51.85444],[92.80014,51.85104],[92.8276,51.83917],[92.84614,51.83577],[92.87498,51.84426],[92.88253,51.85783],[92.88665,51.87437],[92.8997,51.88624],[92.93472,51.90191],[92.94776,51.91166],[92.96218,51.91505],[93.00201,51.91801],[93.03634,51.92521],[93.06724,51.94384],[93.10981,51.96965],[93.12698,51.99587],[93.14758,52.017],[93.18809,52.03264],[93.21006,52.03897],[93.24165,52.04277],[93.26088,52.08203],[93.29933,52.10439],[93.32611,52.12758],[93.37692,52.13222],[93.40713,52.13938],[93.47099,52.16972],[93.5218,52.17814],[93.55339,52.17645],[93.56987,52.17308],[93.58291,52.18403],[93.65776,52.20844],[93.6708,52.21854],[93.65913,52.24377],[93.6763,52.28706],[93.68042,52.30554],[93.69758,52.32568],[93.72917,52.35002],[93.75114,52.37308],[93.75732,52.38901],[93.75801,52.43633],[93.77105,52.45057],[93.78959,52.45391],[93.80882,52.46479],[93.8301,52.49239],[93.89122,52.53877],[93.94889,52.57509],[93.95851,52.58844],[93.94477,52.61514],[93.9537,52.62639],[93.97224,52.63389],[93.98323,52.64306],[94.02236,52.65472],[94.04914,52.6643],[94.07112,52.67013],[94.09034,52.68221],[94.09721,52.69178],[94.08691,52.73213],[94.11094,52.75042],[94.12811,52.7579],[94.13566,52.76787],[94.13291,52.78366],[94.15008,52.82849],[94.16793,52.84093],[94.24827,52.87368],[94.2881,52.89647],[94.31007,52.89896],[94.34577,52.89564],[94.38491,52.91387],[94.40345,52.91428],[94.46525,52.89067],[94.48997,52.89357],[94.50576,52.90144],[94.51263,52.91304],[94.51606,52.94822],[94.52911,52.96766],[94.56344,52.9904],[94.57305,53.00238],[94.57237,53.03006],[94.58885,53.05235],[94.57374,53.08206],[94.58747,53.11381],[94.60601,53.13153],[94.61013,53.14759],[94.60807,53.16529],[94.62455,53.18505],[94.64721,53.18752],[94.6582,53.21179],[94.69596,53.22042],[94.70764,53.23316],[94.69528,53.25864],[94.68566,53.26808],[94.68017,53.28245],[94.66575,53.29025],[94.61975,53.29559],[94.60121,53.3038],[94.59709,53.31323],[94.61425,53.3239],[94.63966,53.33538],[94.70352,53.36817],[94.72892,53.37882],[94.79141,53.38906],[94.8072,53.39356],[94.86557,53.39888],[94.89578,53.39847],[94.92393,53.40093],[94.93492,53.39438],[94.95414,53.40175],[94.99054,53.40175],[94.99054,53.38291],[95.00358,53.37145],[95.03379,53.36776],[95.06538,53.39602],[95.11619,53.40216],[95.14022,53.42017],[95.17181,53.45289],[95.19241,53.46148],[95.23223,53.46556],[95.26451,53.46107],[95.31463,53.44308],[95.30845,53.41567],[95.30639,53.38742],[95.32562,53.38005],[95.3469,53.38414],[95.35652,53.38906],[95.38604,53.37472],[95.39909,53.37513],[95.41282,53.37759],[95.42793,53.39479],[95.44647,53.40421],[95.47119,53.40584],[95.48767,53.40994],[95.50895,53.43367],[95.522,53.44226],[95.55221,53.44389],[95.60783,53.45453],[95.64422,53.46761],[95.66619,53.49907],[95.68954,53.5154],[95.72868,53.53255],[95.73898,53.52479],[95.79734,53.50438],[95.8358,53.5003],[95.86463,53.50315],[95.9024,53.50275],[95.97518,53.48682],[95.99784,53.48968],[96.00471,53.4811],[96.04385,53.46025],[96.06857,53.45739],[96.10702,53.45494],[96.11526,53.47415],[96.1132,53.49172],[96.10702,53.49989],[96.11045,53.50642],[96.14822,53.51336],[96.19903,53.51132],[96.22924,53.51785],[96.24023,53.53337],[96.24092,53.55988],[96.22993,53.57212],[96.23199,53.59209],[96.24229,53.61287],[96.27594,53.6202],[96.2883,53.61491],[96.28143,53.59454],[96.27388,53.58598],[96.27525,53.58027],[96.35009,53.60065],[96.37756,53.59943],[96.37825,53.59005],[96.36383,53.56356],[96.37619,53.56192],[96.3858,53.56356],[96.39953,53.54806],[96.44073,53.53296],[96.43936,53.51622],[96.4476,53.50724],[96.46133,53.51051],[96.47781,53.5252],[96.4991,53.54153],[96.51145,53.54561],[96.52381,53.55581],[96.5451,53.55417],[96.55677,53.54928],[96.60965,53.55988],[96.62544,53.55744],[96.67007,53.56763],[96.66664,53.57456],[96.69479,53.58883],[96.67488,53.60024],[96.7044,53.62143],[96.70234,53.62631],[96.69204,53.62713],[96.69136,53.64708],[96.70852,53.67556],[96.71333,53.69873],[96.70921,53.7093],[96.73461,53.72515],[96.74697,53.72677],[96.76002,53.71987],[96.77719,53.72312],[96.84173,53.72799],[96.90422,53.72352],[96.93718,53.70158],[96.97425,53.69345],[96.98249,53.68532],[96.9873,53.67474],[97.00515,53.6605],[97.05116,53.64504],[97.0848,53.65074],[97.12532,53.62265],[97.15072,53.61409],[97.17132,53.61206],[97.1878,53.62143],[97.19879,53.62305],[97.21389,53.61654],[97.23106,53.60106],[97.25097,53.59658],[97.26402,53.59005],[97.3114,53.58353],[97.33955,53.58068],[97.38487,53.55213],[97.40409,53.53622],[97.40684,53.52684],[97.43568,53.5052],[97.44804,53.49417],[97.44529,53.47783],[97.45285,53.46311],[97.46658,53.45371],[97.52769,53.44717],[97.5579,53.44758],[97.57919,53.44144],[97.60047,53.42999],[97.61215,53.4214],[97.61421,53.39438],[97.60803,53.38332],[97.61283,53.37718],[97.62588,53.37472],[97.65266,53.35997],[97.67807,53.3612],[97.73437,53.37472],[97.75634,53.37513],[97.80647,53.37022],[97.8305,53.37267],[97.90123,53.35055],[97.9438,53.35014],[97.99049,53.34235],[97.99736,53.33087],[97.98294,53.31118],[97.98088,53.29764],[98.00491,53.27753],[98.01864,53.25576],[98.05709,53.24919],[98.08662,53.24755],[98.14361,53.23768],[98.16902,53.23933],[98.19168,53.24672],[98.23288,53.23193],[98.2624,53.21096],[98.29467,53.21507],[98.32283,53.22741],[98.32695,53.19492],[98.32008,53.17188],[98.32695,53.16035],[98.3036,53.14718],[98.30154,53.13565],[98.32283,53.1002],[98.35166,53.09938],[98.3757,53.09649],[98.39286,53.09773],[98.4272,53.1101],[98.44505,53.10185],[98.46977,53.10185],[98.52951,53.10845],[98.55491,53.11051],[98.59611,53.10762],[98.64967,53.11546],[98.67301,53.12947],[98.68606,53.14882],[98.69842,53.1583],[98.74305,53.1583],[98.76022,53.15335],[98.80897,53.13523],[98.84948,53.12905],[98.9154,53.12493],[98.8948,53.14141],[98.90098,53.15253],[98.91609,53.15418],[98.93325,53.15253],[98.96415,53.13194],[98.98407,53.12864],[98.99642,53.11628],[99.02526,53.10185],[99.05342,53.09402],[99.05273,53.08577],[99.02183,53.07051],[99.00192,53.05896],[98.99505,53.04162],[99.01977,53.02345],[99.10972,53.00528],[99.17427,52.98585],[99.22782,52.97469],[99.23812,52.95856],[99.24911,52.94822],[99.26353,52.94036],[99.2704,52.93043],[99.25666,52.92877],[99.22714,52.91966],[99.2237,52.90683],[99.22851,52.88653],[99.24087,52.87534],[99.23263,52.8712],[99.18251,52.87037],[99.15367,52.86664],[99.13925,52.87286],[99.10217,52.88156],[99.0802,52.89109],[99.05273,52.89647],[99.04037,52.90517],[99.01702,52.91055],[98.99437,52.92173],[98.98201,52.93498],[98.96484,52.93291],[98.94287,52.93746],[98.9257,52.92587],[98.91403,52.90724],[98.89755,52.89523],[98.90579,52.88363],[98.90235,52.87659],[98.87283,52.86498],[98.85772,52.83554],[98.8639,52.82683],[98.86322,52.81645],[98.85429,52.80898],[98.8591,52.80234],[98.88038,52.80193],[98.91197,52.80566],[98.95248,52.79861],[98.95248,52.79072],[98.94767,52.78117],[98.95179,52.76663],[98.9463,52.75125],[98.96072,52.72215],[98.95523,52.71508],[98.93806,52.70759],[98.95179,52.68554],[98.92227,52.64764],[98.87558,52.65556],[98.87077,52.64639],[98.87558,52.63681],[98.87077,52.62722],[98.85498,52.62431],[98.83987,52.6168],[98.81446,52.61555],[98.78768,52.60263],[98.7973,52.57718],[98.83369,52.54462],[98.833,52.52959],[98.8076,52.52875],[98.79798,52.51998],[98.76297,52.5066],[98.74168,52.49323],[98.72863,52.47734],[98.70185,52.45684],[98.67439,52.43801],[98.638,52.42545],[98.63044,52.41331],[98.67782,52.36721],[98.6737,52.35211],[98.66066,52.33743],[98.65104,52.30554],[98.65036,52.28748],[98.66134,52.27151],[98.67095,52.27109],[98.69911,52.27992],[98.71215,52.29546],[98.72451,52.2963],[98.76365,52.28118],[98.7918,52.27656],[98.80897,52.27782],[98.8227,52.27446],[98.83644,52.24504],[98.83575,52.22864],[98.81721,52.20255],[98.82888,52.19498],[98.84742,52.19456],[98.88313,52.21349],[98.91059,52.20424],[98.92227,52.19329],[98.96003,52.18235],[98.97377,52.17435],[98.98338,52.16508],[98.98819,52.16508],[98.98681,52.15877],[98.97239,52.15624],[98.96827,52.15118],[98.97171,52.14486],[98.96827,52.14149],[98.97651,52.12843],[98.98063,52.12758],[98.97995,52.11409],[98.99642,52.10566],[99.00054,52.09933],[98.99917,52.09596],[99.00466,52.09258],[98.9978,52.0871],[99.01016,52.08035],[99.00192,52.07655],[99.01016,52.07275],[99.0184,52.07275],[99.02458,52.06557],[99.04449,52.06768],[99.05822,52.06726],[99.06784,52.07106],[99.07264,52.06937],[99.0747,52.06431],[99.08226,52.06304],[99.08432,52.0584],[99.08157,52.05206],[99.08844,52.04911],[99.10354,52.0508],[99.1056,52.0432],[99.10972,52.04151],[99.11453,52.03137],[99.12277,52.02757],[99.13307,52.02376],[99.14199,52.02883],[99.14405,52.03348],[99.15641,52.03137],[99.15504,52.02883],[99.16053,52.02799],[99.17152,52.03559],[99.19143,52.03221],[99.20311,52.02588],[99.20585,52.02799],[99.22164,52.02672],[99.23606,52.01278],[99.25598,52.01151],[99.25598,52.01869],[99.26216,52.02165],[99.26765,52.01869],[99.27795,52.01912],[99.2807,52.01278],[99.27383,52.00897],[99.2752,52.00052],[99.2704,51.99841],[99.26902,51.9946],[99.28413,51.98699],[99.27795,51.98361],[99.26696,51.98065],[99.26284,51.97684],[99.2704,51.96838],[99.27589,51.97007],[99.291,51.96415],[99.29443,51.96076],[99.30954,51.95696],[99.31434,51.9595],[99.32533,51.95569],[99.33219,51.95738],[99.34249,51.95611],[99.34799,51.95019],[99.35211,51.94257],[99.3576,51.94087],[99.3679,51.94087],[99.36653,51.95484],[99.38919,51.95526],[99.39262,51.95823],[99.39056,51.96415],[99.40155,51.96584],[99.41047,51.95315],[99.42421,51.95865],[99.43794,51.95611],[99.46472,51.94849],[99.47502,51.9523],[99.47639,51.95569],[99.50042,51.95146],[99.50248,51.95315],[99.49974,51.95611],[99.51416,51.96119],[99.51965,51.96796],[99.53064,51.9633],[99.53613,51.96415],[99.54711,51.9595],[99.53887,51.95272],[99.55192,51.94765],[99.56771,51.93325],[99.58282,51.9286],[99.59106,51.9286],[99.59793,51.92394],[99.60342,51.92352],[99.59793,51.91928],[99.60136,51.907],[99.59999,51.90361],[99.60823,51.89768],[99.61372,51.89005],[99.61372,51.87861],[99.61921,51.88073],[99.61853,51.88708],[99.62677,51.89429],[99.63569,51.89302],[99.65217,51.89683],[99.66728,51.90488],[99.6714,51.89683],[99.6817,51.88835],[99.68719,51.8892],[99.69062,51.89768],[99.7229,51.90446],[99.7435,51.90318],[99.7483,51.90827],[99.76821,51.91377],[99.80117,51.91589],[99.80941,51.91081],[99.81079,51.90361],[99.81765,51.89852],[99.81628,51.88963],[99.82315,51.88878],[99.82864,51.88284],[99.82383,51.87606],[99.82727,51.87013],[99.82933,51.85868],[99.82521,51.84935],[99.81903,51.84808],[99.83482,51.83535],[99.84649,51.83577],[99.84581,51.82134],[99.8307,51.80734],[99.83688,51.80479],[99.84649,51.80691],[99.86366,51.80521],[99.8719,51.79375],[99.86228,51.7861],[99.87052,51.78016],[99.87052,51.77718],[99.87739,51.77208],[99.88151,51.76274],[99.89799,51.75934],[99.90966,51.74616],[99.90829,51.73936],[99.91722,51.73851],[99.92614,51.74573],[99.9282,51.74871],[99.95155,51.74276],[99.96391,51.74233],[99.98039,51.75551],[99.99687,51.74488],[100.01335,51.73936],[100.02639,51.73936],[100.02845,51.73468],[100.03738,51.73255],[100.05043,51.7368],[100.05592,51.73213],[100.06485,51.73255],[100.07377,51.74106],[100.07995,51.74063],[100.093,51.74913],[100.0978,51.74998],[100.10192,51.75381],[100.10879,51.75381],[100.11634,51.75806],[100.13008,51.75509],[100.13557,51.75891],[100.14518,51.75594],[100.15548,51.75679],[100.16235,51.75169],[100.17265,51.74913],[100.18158,51.75211],[100.18569,51.74871],[100.19874,51.74658],[100.2008,51.74318],[100.21453,51.74276],[100.23857,51.74956],[100.24681,51.74701],[100.26191,51.75083],[100.26603,51.74616],[100.27153,51.74488],[100.27427,51.74191],[100.27427,51.74021],[100.28251,51.73766],[100.29487,51.74276],[100.30929,51.7368],[100.32165,51.73893],[100.33332,51.73893],[100.35049,51.74361],[100.35667,51.73851],[100.36216,51.73808],[100.36903,51.74191],[100.38482,51.73893],[100.40199,51.74743],[100.41641,51.74828],[100.41641,51.74531],[100.4116,51.74531],[100.40954,51.73085],[100.42602,51.73213],[100.4425,51.72745],[100.45005,51.73936],[100.46035,51.73851],[100.47615,51.74446],[100.49194,51.74233],[100.50018,51.74488],[100.50293,51.75041],[100.5297,51.75041],[100.53245,51.74318],[100.53176,51.73723],[100.56541,51.7368],[100.57159,51.73893],[100.5867,51.74148],[100.59082,51.7351],[100.59682,51.71873],[100.60386,51.71979],[100.61004,51.72617],[100.6327,51.7249],[100.65605,51.72872],[100.65742,51.71426],[100.66909,51.70745],[100.68695,51.71214],[100.69244,51.71001],[100.69725,51.70235],[100.70549,51.69894],[100.71167,51.69001],[100.71785,51.68958],[100.73707,51.67851],[100.7666,51.67042],[100.77346,51.66957],[100.79544,51.66276],[100.8078,51.66276],[100.81398,51.65296],[100.8229,51.64827],[100.84899,51.6487],[100.86204,51.64103],[100.85586,51.63421],[100.89569,51.62014],[100.92865,51.60735],[100.95748,51.61588],[100.98564,51.61545],[100.99731,51.60522],[101.01791,51.59456],[101.01928,51.59072],[101.02203,51.58773],[101.01448,51.58133],[101.01722,51.57493],[101.01722,51.57024],[101.03851,51.57365],[101.06254,51.57066],[101.07902,51.56085],[101.09001,51.57237],[101.09138,51.58133],[101.0955,51.58347],[101.10305,51.592],[101.10168,51.57877],[101.12503,51.5617],[101.12434,51.55188],[101.13395,51.54505],[101.13189,51.52412],[101.13807,51.52028],[101.15661,51.51942],[101.17446,51.52455],[101.19232,51.52198],[101.20605,51.53181],[101.22116,51.53779],[101.23077,51.5442],[101.24244,51.54676],[101.2603,51.54206],[101.26167,51.53565],[101.28227,51.51728],[101.28089,51.51002],[101.29531,51.50575],[101.31179,51.49592],[101.34063,51.4895],[101.34475,51.48394],[101.35505,51.47881],[101.35917,51.47283],[101.36741,51.47197],[101.35574,51.46684],[101.36192,51.46256],[101.36879,51.46128],[101.3681,51.45657],[101.38183,51.45571],[101.3887,51.45914],[101.39694,51.45357],[101.40792,51.45315],[101.41685,51.457],[101.43745,51.45571],[101.46011,51.4724],[101.45805,51.47838],[101.45942,51.49036],[101.47865,51.49292],[101.4965,51.50233],[101.52259,51.49634],[101.53083,51.50019],[101.54251,51.49976],[101.55212,51.49335],[101.55487,51.49335],[101.56654,51.48181],[101.56448,51.47625],[101.56791,51.4694],[101.56929,51.47539],[101.57478,51.47924],[101.58577,51.48095],[101.59675,51.47967],[101.60156,51.47283],[101.62147,51.4694],[101.62147,51.46256],[101.6146,51.45443],[101.6201,51.44459],[101.61804,51.43988],[101.63383,51.44288],[101.64138,51.44288],[101.651,51.44459],[101.65718,51.4433],[101.66542,51.4463],[101.67297,51.44673],[101.67709,51.45101],[101.69151,51.45357],[101.69906,51.44801],[101.71691,51.45486],[101.72035,51.45315],[101.73339,51.45186],[101.74781,51.45529],[101.78146,51.43988],[101.78833,51.44159],[101.79725,51.43603],[101.80343,51.43731],[101.81167,51.43218],[101.81236,51.4219],[101.82884,51.41805],[101.82884,51.41462],[101.83776,51.41933],[101.85562,51.41591],[101.86317,51.41719],[101.8666,51.41334],[101.86592,51.40905],[101.88514,51.40777],[101.88789,51.40391],[101.88652,51.40091],[101.88995,51.40006],[101.91055,51.41419],[101.92016,51.41334],[101.92771,51.41633],[101.93801,51.41376],[101.949,51.41462],[101.96136,51.40948],[101.97097,51.39192],[101.97715,51.39535],[101.9902,51.39406],[102.0005,51.38163],[102.00187,51.3872],[102.01835,51.3962],[102.02865,51.3902],[102.03414,51.39063],[102.03826,51.38763],[102.04856,51.38678],[102.06024,51.37949],[102.07466,51.37821],[102.0877,51.37306],[102.12478,51.36192],[102.12547,51.34862],[102.13714,51.34562],[102.14813,51.33919],[102.14744,51.33318],[102.15911,51.32074],[102.16873,51.31902],[102.16735,51.30829],[102.17559,51.30185],[102.17765,51.30185],[102.18246,51.29498],[102.17765,51.29241],[102.17353,51.28511],[102.14881,51.28382],[102.1495,51.27995],[102.14332,51.28425],[102.13165,51.28425],[102.12066,51.28983],[102.11311,51.28854],[102.1138,51.28339],[102.11998,51.28038],[102.11586,51.26921],[102.1186,51.26535],[102.1138,51.25933],[102.11792,51.25332],[102.10556,51.24773],[102.11448,51.23655],[102.14332,51.22021],[102.12753,51.20903],[102.14469,51.19354],[102.15431,51.19268],[102.16667,51.17977],[102.15431,51.1746],[102.13783,51.17546],[102.13508,51.15867],[102.12341,51.14963],[102.12478,51.14274],[102.12341,51.13843],[102.13439,51.13196],[102.13165,51.12766],[102.13302,51.10998],[102.13783,51.10481],[102.13851,51.10007],[102.1598,51.09403],[102.16667,51.09619],[102.1701,51.09576],[102.16461,51.08368],[102.15156,51.08239],[102.14744,51.06901],[102.15225,51.06513],[102.1495,51.05822],[102.18109,51.0483],[102.18383,51.04225],[102.20237,51.0388],[102.20375,51.02844],[102.21267,51.02023],[102.21679,51.00986],[102.22503,50.99949],[102.22297,50.99517],[102.23121,50.97572],[102.2422,50.97529],[102.22915,50.9688],[102.21336,50.95323],[102.22503,50.93766],[102.21885,50.929],[102.24082,50.91602],[102.24632,50.9026],[102.24151,50.89783],[102.23739,50.8896],[102.2113,50.87531],[102.21405,50.86317],[102.2216,50.85234],[102.21679,50.85277],[102.2113,50.848],[102.20993,50.83803],[102.21954,50.82806],[102.20855,50.81721],[102.21885,50.81114],[102.23053,50.80897],[102.23877,50.79855],[102.25181,50.79855],[102.27378,50.79248],[102.28477,50.78423],[102.2937,50.78162],[102.2937,50.77381],[102.30331,50.76469],[102.32322,50.75166],[102.3246,50.74384],[102.33558,50.74036],[102.34108,50.73167],[102.33146,50.71863],[102.30812,50.70385],[102.30056,50.68253],[102.32597,50.6747],[102.34588,50.66295],[102.37609,50.66774],[102.38845,50.66034],[102.39395,50.64423],[102.4015,50.64031],[102.41111,50.64292],[102.42141,50.64031],[102.44613,50.64554],[102.44888,50.6316],[102.44545,50.61984],[102.46673,50.60198],[102.47909,50.59718],[102.5251,50.59457],[102.53677,50.5889],[102.55325,50.55663],[102.55325,50.54921],[102.5402,50.53263],[102.54638,50.52652],[102.57522,50.5239],[102.57385,50.51866],[102.58346,50.52041],[102.59239,50.51779],[102.61024,50.506],[102.60749,50.49552],[102.61711,50.48591],[102.62191,50.46056],[102.61505,50.45356],[102.62535,50.43389],[102.64183,50.41333],[102.64251,50.40851],[102.64732,50.40151],[102.6844,50.39363],[102.69813,50.39495],[102.70156,50.39757],[102.72972,50.40895],[102.73727,50.40632],[102.74276,50.40064],[102.751,50.40107],[102.75375,50.38794],[102.75924,50.37743],[102.76886,50.37699],[102.79083,50.36517],[102.82791,50.35597],[102.83134,50.34852],[102.83065,50.34458],[102.83889,50.34195],[102.83683,50.33713],[102.84713,50.33231],[102.85743,50.33669],[102.87048,50.32793],[102.89726,50.32968],[102.90206,50.32266],[102.92266,50.30951],[102.93914,50.306],[102.94601,50.30688],[102.96661,50.30469],[102.97966,50.30556],[102.99133,50.30469],[103.00849,50.3082],[103.02223,50.30644],[103.04351,50.31258],[103.06617,50.3139],[103.07235,50.31872],[103.08677,50.31828],[103.09295,50.31609],[103.106,50.31828],[103.14651,50.30513],[103.15406,50.31565],[103.1623,50.31609],[103.17192,50.31565],[103.17535,50.32091],[103.17123,50.32573],[103.17672,50.33319],[103.20419,50.33275],[103.21517,50.32617],[103.21929,50.31872],[103.22822,50.31916],[103.23509,50.32354],[103.23783,50.32179],[103.24951,50.30206],[103.25775,50.30293],[103.26461,50.29855],[103.26599,50.29021],[103.2756,50.28407],[103.27354,50.28144],[103.27629,50.27573],[103.26736,50.27091],[103.2653,50.26652],[103.26805,50.26388],[103.25775,50.25598],[103.24882,50.25598],[103.24951,50.24764],[103.26324,50.24237],[103.27285,50.23271],[103.27148,50.22832],[103.27629,50.22524],[103.2756,50.22217],[103.25569,50.20942],[103.25569,50.19316],[103.27285,50.18964],[103.28247,50.18964],[103.29345,50.18525],[103.3065,50.18964],[103.31886,50.18877],[103.33877,50.19844],[103.35319,50.20283],[103.35937,50.20063],[103.36898,50.19888],[103.3731,50.20723],[103.37928,50.20898],[103.38478,50.20723],[103.41018,50.21162],[103.41705,50.20811],[103.4246,50.21162],[103.43559,50.2103],[103.44245,50.20459],[103.46374,50.20679],[103.47679,50.20415],[103.48228,50.19844],[103.507,50.19712],[103.51387,50.19888],[103.52279,50.19624],[103.52966,50.18129],[103.53996,50.17689],[103.54064,50.17162],[103.54545,50.17118],[103.55644,50.16326],[103.56399,50.16326],[103.57704,50.16898],[103.60107,50.16678],[103.61,50.15666],[103.60862,50.14434],[103.63472,50.1505],[103.64296,50.14698],[103.64982,50.14214],[103.68347,50.14346],[103.71025,50.12586],[103.71574,50.12806],[103.72467,50.12762],[103.73222,50.13818],[103.72947,50.1439],[103.73703,50.15886],[103.7487,50.16062],[103.7487,50.1637],[103.77685,50.16458],[103.79951,50.1527],[103.82286,50.16634],[103.82492,50.17645],[103.83659,50.18349],[103.8359,50.19448],[103.84964,50.19712],[103.85856,50.18964],[103.88122,50.19008],[103.88053,50.17997],[103.88877,50.17601],[103.89976,50.18261],[103.91075,50.18349],[103.91693,50.17821],[103.93341,50.17821],[103.93547,50.18349],[103.94439,50.18129],[103.94577,50.17426],[103.95538,50.16458],[103.97392,50.16502],[103.97666,50.15578],[103.98834,50.15754],[103.99932,50.15006],[104.00894,50.1527],[104.01443,50.14874],[104.0467,50.14742],[104.05769,50.15006],[104.07554,50.1483],[104.08721,50.14126],[104.09477,50.14434],[104.1085,50.14126],[104.11674,50.14434],[104.13459,50.13818],[104.14627,50.14742],[104.15451,50.14918],[104.19639,50.17513],[104.19982,50.17469],[104.22386,50.18745],[104.24171,50.18569],[104.25064,50.19316],[104.26368,50.19888],[104.27604,50.19932],[104.28085,50.20547],[104.2733,50.22129],[104.29115,50.2371],[104.29184,50.24237],[104.30625,50.245],[104.33029,50.24281],[104.3399,50.24413],[104.34059,50.24983],[104.36462,50.26344],[104.36531,50.27091],[104.37217,50.27442],[104.3811,50.29767],[104.38865,50.29986],[104.38728,50.30513],[104.3914,50.31126],[104.40101,50.31258],[104.41886,50.30776],[104.44702,50.30556],[104.45457,50.31433],[104.4738,50.31346],[104.49028,50.30776],[104.51705,50.3174],[104.52529,50.31477],[104.53216,50.31609],[104.55688,50.30776],[104.56169,50.30206],[104.56993,50.30732],[104.59602,50.31653],[104.60563,50.31609],[104.60838,50.32003],[104.62417,50.31653],[104.63722,50.32354],[104.64546,50.3231],[104.65988,50.33012],[104.66812,50.34283],[104.66812,50.35334],[104.67292,50.35904],[104.69696,50.36736],[104.71069,50.35422],[104.72236,50.35685],[104.74777,50.3494],[104.74777,50.34677],[104.76219,50.33932],[104.76974,50.34458],[104.79652,50.34239],[104.80476,50.33976],[104.81094,50.34107],[104.82055,50.35071],[104.82811,50.35334],[104.83154,50.36035],[104.83978,50.35772],[104.8487,50.35904],[104.85145,50.3678],[104.87548,50.37086],[104.87274,50.38925],[104.8796,50.39276],[104.8796,50.39845],[104.88784,50.39888],[104.88922,50.40764],[104.89952,50.40764],[104.91119,50.40414],[104.91668,50.40676],[104.92561,50.40589],[104.93248,50.40282],[104.97093,50.40326],[104.97779,50.39451],[105.00801,50.38794],[105.01281,50.39188],[105.02723,50.38707],[105.08766,50.38882],[105.09384,50.39582],[105.10414,50.39845],[105.11787,50.38969],[105.15976,50.4037],[105.1625,50.41289],[105.17623,50.41026],[105.19958,50.41245],[105.21537,50.42426],[105.22224,50.4247],[105.25451,50.44132],[105.25932,50.44132],[105.2703,50.44788],[105.26893,50.45444],[105.26481,50.45969],[105.26687,50.46493],[105.29846,50.47236],[105.3273,50.4728],[105.35408,50.47935],[105.36094,50.47367],[105.38429,50.46143],[105.4042,50.45837],[105.41175,50.44919],[105.42755,50.44351],[105.44265,50.44176],[105.47973,50.44438],[105.5223,50.4575],[105.57312,50.44832],[105.57792,50.44001],[105.59989,50.43389],[105.60401,50.42995],[105.62736,50.42689],[105.64521,50.4352],[105.70289,50.42645],[105.72555,50.42776],[105.75988,50.4352],[105.76538,50.43432],[105.77911,50.4387],[105.78804,50.43957],[105.80383,50.43432],[105.81893,50.44045],[105.84434,50.43957],[105.85945,50.42558],[105.8979,50.41376],[105.91095,50.41333],[105.92262,50.41639],[105.98922,50.41595],[106.00914,50.41158],[106.01806,50.41158],[106.04621,50.40195],[106.05514,50.40414],[106.07574,50.38969],[106.06956,50.37962],[106.07437,50.37086],[106.07025,50.36605],[106.0675,50.34852],[106.07849,50.34502],[106.08055,50.3345],[106.10458,50.33581],[106.11625,50.33538],[106.12518,50.33669],[106.18217,50.33888],[106.18698,50.33494],[106.19384,50.3345],[106.21101,50.3196],[106.23504,50.31609],[106.24328,50.30644],[106.24877,50.30688],[106.26045,50.29855],[106.29341,50.30118],[106.30096,50.29986],[106.30371,50.30381],[106.31126,50.30425],[106.31744,50.30162],[106.32637,50.3082],[106.3916,50.3196],[106.44722,50.31477],[106.48635,50.3231],[106.49734,50.3231],[106.50627,50.33932],[106.51382,50.34546],[106.5406,50.34326],[106.55571,50.33625],[106.57218,50.33231],[106.5921,50.33888],[106.73149,50.31346],[106.73149,50.3174],[106.81594,50.29767],[106.87912,50.26081],[106.97937,50.20854],[107.0137,50.19932],[107.01301,50.19052],[106.99447,50.18481],[107.00271,50.17382],[107.01301,50.16766],[107.00202,50.16238],[107.00134,50.15666],[107.00683,50.15622],[107.00889,50.15006],[107.01644,50.15006],[107.01644,50.1439],[107.03155,50.13158],[107.03979,50.12894],[107.04322,50.12013],[107.04597,50.11353],[107.05078,50.11221],[107.05009,50.09767],[107.05696,50.0871],[107.06794,50.09151],[107.0755,50.0893],[107.06657,50.08005],[107.07893,50.06286],[107.08442,50.06683],[107.09129,50.06507],[107.08992,50.05846],[107.09747,50.05184],[107.11944,50.04788],[107.12562,50.04964],[107.13249,50.04964],[107.14004,50.04214],[107.15171,50.04347],[107.15309,50.03817],[107.14485,50.03112],[107.14897,50.02494],[107.1627,50.02362],[107.16819,50.01347],[107.17643,50.01126],[107.18605,50.01568],[107.19223,50.00773],[107.20321,50.00773],[107.2142,49.99847],[107.21832,50.00729],[107.22518,49.99847],[107.2396,49.99803],[107.2451,49.99803],[107.25402,49.98876],[107.27325,49.99185],[107.27806,50.00067],[107.3069,50.00023],[107.32063,50.00332],[107.34809,50.00023],[107.36526,49.98699],[107.38243,49.9786],[107.39959,49.97728],[107.40783,49.97948],[107.42981,49.97198],[107.42569,49.97816],[107.42569,49.98257],[107.43736,49.98257],[107.45109,49.97816],[107.4607,49.97948],[107.471,49.98566],[107.49092,49.97728],[107.52868,49.97551],[107.54173,49.98522],[107.55477,49.98346],[107.59117,49.96977],[107.61383,49.97153],[107.62207,49.97595],[107.63717,49.97683],[107.64473,49.97374],[107.64473,49.96314],[107.65296,49.95961],[107.6612,49.96668],[107.6818,49.96535],[107.6921,49.97065],[107.70584,49.96888],[107.71133,49.97374],[107.72918,49.98081],[107.75665,49.96933],[107.76283,49.95563],[107.78068,49.94724],[107.79441,49.93177],[107.80609,49.93442],[107.82051,49.95696],[107.83561,49.96182],[107.84523,49.95298],[107.84935,49.95077],[107.84866,49.93708],[107.8878,49.9331],[107.89878,49.93575],[107.90634,49.94149],[107.91801,49.93531],[107.93106,49.93796],[107.9393,49.94459],[107.94891,49.94459],[107.96676,49.93928],[107.97706,49.91453],[107.97226,49.90746],[107.97637,49.90524],[107.96539,49.90613],[107.95921,49.8995],[107.94754,49.88003],[107.93724,49.87561],[107.92488,49.87561],[107.92213,49.8641],[107.92488,49.85613],[107.94616,49.8517],[107.94479,49.84728],[107.95097,49.84418],[107.9441,49.82956],[107.93792,49.82558],[107.93724,49.81627],[107.94479,49.81361],[107.95303,49.80874],[107.97157,49.81273],[107.98255,49.80653],[107.97843,49.79855],[107.98736,49.78924],[107.96951,49.78215],[107.95097,49.77949],[107.94822,49.77594],[107.96196,49.74977],[107.97157,49.74888],[107.97363,49.73956],[107.98049,49.73557],[107.96608,49.71959],[107.95509,49.71737],[107.95028,49.71116],[107.94273,49.71116],[107.93586,49.70094],[107.94479,49.68495],[107.94273,49.66273],[107.96058,49.65384],[107.98255,49.65696],[108.00247,49.66896],[108.02101,49.6694],[108.02307,49.67562],[108.03268,49.67162],[108.02581,49.66318],[108.02375,49.65562],[108.03062,49.64051],[108.03955,49.63739],[108.03611,49.63295],[108.02719,49.6325],[108.02101,49.62983],[108.02581,49.62361],[108.04847,49.61249],[108.05603,49.61204],[108.05603,49.60626],[108.09997,49.58534],[108.10684,49.58534],[108.14598,49.56975],[108.15284,49.57065],[108.16177,49.56174],[108.16726,49.56263],[108.1707,49.55951],[108.17688,49.55951],[108.18512,49.55773],[108.19473,49.55951],[108.20365,49.5506],[108.21945,49.54838],[108.22151,49.54971],[108.23867,49.54214],[108.26957,49.55328],[108.27644,49.54882],[108.29704,49.55105],[108.3039,49.53991],[108.31832,49.52877],[108.3197,49.51049],[108.32656,49.51049],[108.33068,49.50782],[108.3403,49.5096],[108.3451,49.50247],[108.3451,49.49132],[108.35334,49.47481],[108.34442,49.46187],[108.34922,49.44982],[108.35815,49.4467],[108.36708,49.43241],[108.38768,49.42482],[108.39729,49.42482],[108.4069,49.4199],[108.42887,49.42258],[108.4378,49.41946],[108.43849,49.40382],[108.44741,49.3989],[108.43849,49.37879],[108.44604,49.3703],[108.44604,49.36404],[108.45291,49.35867],[108.46733,49.35822],[108.49136,49.34167],[108.49136,49.3363],[108.4996,49.32691],[108.51265,49.32601],[108.51608,49.32109],[108.52294,49.32064],[108.54217,49.33854],[108.56483,49.33496],[108.56964,49.33854],[108.60672,49.33004],[108.6486,49.33586],[108.65066,49.34212],[108.66783,49.34838],[108.69804,49.33228],[108.71795,49.33854],[108.72207,49.33496],[108.73924,49.34257],[108.75778,49.3448],[108.78662,49.3363],[108.82164,49.34257],[108.83537,49.34749],[108.84292,49.34167],[108.84704,49.33451],[108.85185,49.33272],[108.86352,49.33675],[108.88275,49.33228],[108.89991,49.34078],[108.89991,49.34391],[108.91571,49.34346],[108.92944,49.34749],[108.94043,49.34302],[108.94798,49.34302],[109.0702,49.32377],[109.17388,49.35554],[109.33868,49.3278],[109.3888,49.3005],[109.4252,49.29557],[109.43069,49.28572],[109.44717,49.27362],[109.46777,49.26914],[109.49043,49.23912],[109.51858,49.23329],[109.55703,49.22163],[109.66552,49.22567],[109.81315,49.21356],[109.88456,49.19471],[109.90997,49.19741],[109.92507,49.20279],[109.94911,49.19561],[109.97589,49.20234],[110.00129,49.19247],[110.02739,49.19337],[110.04661,49.18215],[110.05691,49.1799],[110.10154,49.17856],[110.13519,49.16509],[110.16815,49.16509],[110.19905,49.15521],[110.21278,49.15701],[110.25329,49.16599],[110.33226,49.20055],[110.39405,49.25525],[110.42083,49.22297],[110.49293,49.19112],[110.4943,49.19651],[110.50804,49.19651],[110.51284,49.18798],[110.52177,49.18664],[110.5307,49.18933],[110.58425,49.18619],[110.65567,49.17497],[110.69343,49.16599],[110.72227,49.16733],[110.77995,49.17407],[110.81222,49.17586],[110.8905,49.20234],[110.94749,49.21535],[110.96328,49.22297],[111.0086,49.23867],[111.09306,49.26198],[111.10885,49.26601],[111.29219,49.31572],[111.37802,49.35822],[111.48445,49.33138],[111.53045,49.32377],[111.68769,49.38371],[111.744,49.38505],[111.78726,49.38237],[111.81129,49.37343],[111.91772,49.37656],[111.93901,49.37522],[112.19375,49.44848],[112.28439,49.48507],[112.42721,49.50871],[112.47665,49.52253],[112.57484,49.51718],[112.59681,49.51094],[112.62496,49.51272],[112.63595,49.51183],[112.64762,49.51763],[112.69569,49.50202],[112.71217,49.50648],[112.71354,49.51629],[112.7211,49.52164],[112.75268,49.50737],[112.76641,49.51317],[112.77465,49.5096],[112.79045,49.51406],[112.79663,49.52119],[112.81242,49.5154],[112.844,49.52788],[112.85568,49.53679],[112.8543,49.54169],[112.8749,49.54704],[112.88108,49.55238],[112.88589,49.55149],[112.89276,49.56174],[112.91542,49.57154],[112.92709,49.57243],[112.93258,49.56753],[112.9422,49.5702],[112.93945,49.57732],[112.947,49.58534],[112.95867,49.58578],[112.96348,49.58178],[112.97035,49.58489],[112.97927,49.58489],[112.98202,49.58979],[112.99987,49.59469],[113.00399,49.59201],[113.02391,49.59691],[113.02871,49.5938],[113.03764,49.60181],[113.05412,49.60848],[113.06167,49.62405],[113.07128,49.6325],[113.0706,49.64184],[113.0809,49.64673],[113.07884,49.65384],[113.14132,49.74045],[113.16467,49.75199],[113.15918,49.76574],[113.21754,49.83665],[113.3377,49.88755],[113.47229,49.93531],[113.48533,49.97198],[113.64326,49.98964],[113.74076,50.07168],[113.83277,50.1034],[113.88908,50.10869],[113.98178,50.1549],[114.17953,50.24676],[114.2633,50.26827],[114.33746,50.28582],[114.34295,50.281],[114.42398,50.24983],[114.43359,50.2494],[114.44664,50.24588],[114.45213,50.24193],[114.47959,50.2371],[114.52285,50.23051],[114.62448,50.24632],[114.65675,50.24983],[114.7673,50.23271],[114.77897,50.22919],[114.8394,50.22392],[114.88609,50.20591],[114.9678,50.18173],[114.99046,50.17338],[115.02204,50.14874],[115.03646,50.13906],[115.07011,50.10384],[115.06668,50.09415],[115.07835,50.08402],[115.13122,50.05625],[115.17242,50.02185],[115.23696,49.98434],[115.28297,49.96491],[115.3228,49.9521],[115.54046,49.90524],[115.54733,49.90701],[115.58647,49.90613],[115.62629,49.89905],[115.67298,49.88578],[115.74302,49.88578],[115.7595,49.89153],[115.76225,49.89109],[115.81306,49.90967],[115.82954,49.92116],[115.94764,49.96093],[115.97785,49.97021],[116.01837,49.98876],[116.05064,50.00067],[116.06849,50.0095],[116.13304,50.02362],[116.18042,50.02759],[116.23741,50.03641],[116.33697,50.00023],[116.39946,49.98655],[116.49971,49.95828],[116.56219,49.94547],[116.62605,49.93531],[116.71394,49.84551],[117.05658,49.6854],[117.27287,49.63072],[117.47268,49.62672],[117.63473,49.56397],[117.8009,49.51718],[117.80914,49.51986],[117.80983,49.53055],[117.82699,49.53991],[117.83454,49.53813],[117.83729,49.52877],[117.84416,49.52922],[117.84622,49.52208],[117.85446,49.52075],[117.85308,49.51629],[117.85789,49.5096],[117.8675,49.50916],[117.87025,49.51495],[117.87918,49.51317],[117.87506,49.52699],[117.8778,49.53233],[117.87094,49.53768],[117.87368,49.54125],[117.88398,49.54347],[117.89085,49.59424],[117.92793,49.5978],[117.94441,49.59424],[117.95265,49.60403],[117.94509,49.60448],[117.94853,49.61026],[117.96775,49.61115],[117.97462,49.6156],[117.97393,49.6196],[117.99247,49.62183],[117.99316,49.61471],[118.03093,49.61204],[118.03093,49.62227],[118.03504,49.62183],[118.03916,49.61293],[118.0474,49.60893],[118.0529,49.61249],[118.04878,49.61782],[118.05496,49.62005],[118.05908,49.61382],[118.0735,49.61426],[118.07624,49.61871],[118.06457,49.61871],[118.06526,49.62227],[118.07281,49.62583],[118.06045,49.62805],[118.05908,49.6365],[118.06663,49.63873],[118.07281,49.6365],[118.08448,49.6414],[118.08654,49.64673],[118.08929,49.63695],[118.09547,49.63384],[118.0989,49.63695],[118.09753,49.6454],[118.10852,49.64629],[118.1092,49.65073],[118.10508,49.6534],[118.11195,49.65518],[118.10989,49.66318],[118.1147,49.66629],[118.10646,49.6694],[118.12637,49.66629],[118.12912,49.66273],[118.13804,49.66851],[118.14491,49.66851],[118.14628,49.65785],[118.15246,49.66096],[118.15383,49.66585],[118.16207,49.66096],[118.16207,49.66718],[118.171,49.67296],[118.17375,49.67607],[118.19503,49.67562],[118.21907,49.69206],[118.22868,49.68851],[118.24447,49.70183],[118.24928,49.71648],[118.25683,49.72048],[118.27743,49.72181],[118.2788,49.72669],[118.31382,49.74134],[118.31794,49.73779],[118.31726,49.744],[118.32618,49.74178],[118.32824,49.748],[118.33236,49.74223],[118.33648,49.748],[118.34129,49.75154],[118.35296,49.7511],[118.37768,49.76263],[118.38935,49.76352],[118.41201,49.77949],[118.42781,49.78215],[118.44154,49.77993],[118.45527,49.78481],[118.45871,49.79456],[118.46694,49.80121],[118.47656,49.80342],[118.47518,49.80608],[118.49647,49.81937],[118.51158,49.81672],[118.50952,49.82868],[118.53424,49.83001],[118.54316,49.83444],[118.55896,49.83709],[118.5672,49.85303],[118.56239,49.85569],[118.56857,49.85923],[118.56651,49.8672],[118.57612,49.87516],[118.57749,49.88357],[118.59466,49.88799],[118.60015,49.89551],[118.60359,49.89375],[118.60702,49.89684],[118.61183,49.8933],[118.62693,49.90878],[118.63243,49.90878],[118.63723,49.91763],[118.64959,49.91409],[118.64822,49.91851],[118.6544,49.91542],[118.65234,49.91984],[118.67088,49.91718],[118.67431,49.91055],[118.68736,49.92337],[118.69628,49.92337],[118.7004,49.91939],[118.70864,49.92072],[118.72512,49.93266],[118.73199,49.93],[118.77388,49.93575],[118.78967,49.92691],[118.824,49.93752],[118.83361,49.95033],[118.84254,49.94724],[118.87756,49.95563],[118.89267,49.96358],[118.91326,49.97021],[118.92013,49.96623],[118.92288,49.97065],[118.93249,49.96535],[118.94348,49.968],[118.94073,49.97374],[118.95309,49.97198],[118.96202,49.98169],[118.99086,49.97595],[119.03686,49.98876],[119.04647,49.97904],[119.05334,49.98522],[119.05403,49.9786],[119.076,49.98831],[119.076,49.99803],[119.08905,50.00288],[119.09179,49.99626],[119.10278,50.00023],[119.10072,50.00332],[119.1069,50.00067],[119.11651,50.00685],[119.11788,50.017],[119.12475,50.0223],[119.1378,50.01965],[119.14604,50.0245],[119.13436,50.02715],[119.14192,50.03156],[119.15496,50.02627],[119.15565,50.02185],[119.15908,50.02494],[119.15702,50.0342],[119.1687,50.04038],[119.17213,50.03332],[119.18037,50.04038],[119.17076,50.04655],[119.18174,50.04391],[119.18586,50.05008],[119.19204,50.04479],[119.20715,50.04347],[119.20646,50.05184],[119.21608,50.05273],[119.22363,50.06198],[119.24423,50.06683],[119.24148,50.07168],[119.25041,50.07917],[119.25521,50.07653],[119.27581,50.08093],[119.27925,50.08402],[119.27101,50.08622],[119.31427,50.11265],[119.31427,50.12145],[119.31976,50.1263],[119.31221,50.14654],[119.30053,50.14434],[119.29916,50.15534],[119.3383,50.1637],[119.32594,50.17645],[119.33006,50.18833],[119.35478,50.1914],[119.35272,50.19624],[119.35821,50.20063],[119.35615,50.20767],[119.33898,50.20195],[119.31289,50.21733],[119.31495,50.23315],[119.32594,50.23578],[119.31976,50.23754],[119.33075,50.24237],[119.32937,50.25554],[119.34104,50.25423],[119.3383,50.26169],[119.32663,50.26037],[119.32594,50.26739],[119.33418,50.27178],[119.33143,50.27486],[119.31701,50.281],[119.32113,50.28451],[119.34379,50.28539],[119.33967,50.29591],[119.3431,50.30337],[119.36508,50.30863],[119.3692,50.31609],[119.37881,50.31916],[119.35134,50.32529],[119.35134,50.32836],[119.35958,50.32968],[119.36096,50.3402],[119.35066,50.34502],[119.3589,50.34808],[119.35272,50.35115],[119.34928,50.35816],[119.33624,50.3529],[119.32251,50.36035],[119.30877,50.3494],[119.29916,50.35597],[119.30053,50.34589],[119.29298,50.34283],[119.29023,50.35597],[119.2662,50.36517],[119.26139,50.3529],[119.25178,50.35247],[119.24903,50.34195],[119.22981,50.3437],[119.22637,50.36298],[119.20852,50.36342],[119.18518,50.34765],[119.17282,50.34721],[119.17076,50.35071],[119.18655,50.35772],[119.18861,50.3621],[119.16938,50.35641],[119.14947,50.35816],[119.14672,50.36473],[119.17007,50.37393],[119.16389,50.37918],[119.15016,50.37787],[119.14398,50.39013],[119.13505,50.38882],[119.13093,50.37962],[119.11788,50.38838],[119.12956,50.39495],[119.13848,50.40939],[119.1529,50.41114],[119.15702,50.42076],[119.179,50.42251],[119.19754,50.40764],[119.21058,50.41333],[119.20509,50.42251],[119.21745,50.42951],[119.21676,50.44088],[119.23255,50.43957],[119.24217,50.45007],[119.23255,50.4575],[119.23736,50.46406],[119.25247,50.46537],[119.25865,50.47629],[119.25521,50.4846],[119.24629,50.4929],[119.22843,50.49595],[119.22569,50.50338],[119.25041,50.506],[119.26071,50.5287],[119.25384,50.53525],[119.27032,50.54179],[119.27513,50.55139],[119.27375,50.55663],[119.26277,50.55576],[119.26002,50.56753],[119.28405,50.57146],[119.29161,50.58236],[119.28062,50.58716],[119.27993,50.59544],[119.27307,50.60023],[119.28817,50.61592],[119.30465,50.61156],[119.31427,50.61941],[119.328,50.62463],[119.32457,50.63596],[119.33006,50.64031],[119.34173,50.62855],[119.34722,50.62855],[119.3637,50.64249],[119.37057,50.65468],[119.38568,50.66077],[119.38156,50.66687],[119.37057,50.67296],[119.36988,50.67775],[119.37812,50.68079],[119.39186,50.67775],[119.40971,50.68601],[119.4255,50.68253],[119.43443,50.6908],[119.43992,50.69167],[119.43924,50.70559],[119.45503,50.71037],[119.47769,50.73862],[119.4873,50.7434],[119.49829,50.76469],[119.48799,50.77337],[119.49829,50.77468],[119.49623,50.78206],[119.50309,50.78814],[119.51477,50.78814],[119.51477,50.79074],[119.50515,50.79551],[119.50172,50.8055],[119.50653,50.8107],[119.50103,50.81938],[119.4873,50.82849],[119.48799,50.84323],[119.50996,50.84237],[119.51065,50.89263],[119.51408,50.90563],[119.53193,50.91212],[119.56283,50.9342],[119.56695,50.94545],[119.57382,50.94977],[119.57382,50.95583],[119.58274,50.9688],[119.58274,50.97485],[119.58892,50.98177],[119.59785,50.98696],[119.61502,50.99085],[119.626,50.99776],[119.62051,51.00338],[119.64798,51.01202],[119.65896,51.01159],[119.67338,51.01721],[119.68986,51.03362],[119.69879,51.04268],[119.71321,51.04571],[119.72145,51.0647],[119.7084,51.07031],[119.71527,51.07592],[119.72625,51.07203],[119.73793,51.07505],[119.73312,51.08713],[119.75303,51.08842],[119.75509,51.10093],[119.74617,51.10266],[119.74342,51.11386],[119.75166,51.12378],[119.76127,51.12292],[119.7702,51.13369],[119.76951,51.1436],[119.77569,51.15264],[119.76676,51.15867],[119.75303,51.1591],[119.75647,51.16556],[119.76402,51.16599],[119.77363,51.16255],[119.77981,51.16556],[119.78118,51.17417],[119.76402,51.18235],[119.76882,51.19096],[119.75784,51.19698],[119.75921,51.20645],[119.75097,51.21333],[119.76745,51.21849],[119.7702,51.22451],[119.79766,51.21634],[119.79286,51.21333],[119.81414,51.21247],[119.81826,51.21892],[119.81208,51.23053],[119.79217,51.23827],[119.7908,51.24687],[119.80316,51.25418],[119.81895,51.25976],[119.80316,51.27781],[119.82032,51.2894],[119.84573,51.2937],[119.86633,51.29284],[119.87869,51.30314],[119.87594,51.33404],[119.89585,51.34519],[119.91302,51.34305],[119.91989,51.34819],[119.93156,51.35463],[119.94049,51.36277],[119.93637,51.3662],[119.90615,51.37349],[119.90135,51.38806],[119.91508,51.3962],[119.92813,51.39449],[119.95628,51.3962],[119.96383,51.40091],[119.96452,51.42147],[119.97001,51.42747],[119.96933,51.43646],[119.97825,51.44544],[119.99336,51.44844],[119.9961,51.45743],[119.97413,51.48394],[119.98374,51.49463],[119.97688,51.50361],[119.98443,51.50874],[119.99542,51.5113],[120.01396,51.52327],[120.02082,51.53138],[120.02494,51.54334],[120.04142,51.54975],[120.0428,51.55572],[120.03799,51.56085],[120.04348,51.56725],[120.027,51.58347],[120.04417,51.61034],[120.0428,51.61673],[120.05104,51.62014],[120.04829,51.63037],[120.0634,51.64145],[120.09292,51.64785],[120.09704,51.65551],[120.07988,51.67681],[120.08949,51.68234],[120.13481,51.67255],[120.16708,51.67894],[120.18287,51.68873],[120.19729,51.7015],[120.21652,51.71554],[120.22201,51.72362],[120.23918,51.72702],[120.25016,51.73128],[120.26252,51.75083],[120.28518,51.74998],[120.30441,51.78313],[120.35385,51.78908],[120.37033,51.80861],[120.39573,51.81158],[120.39848,51.81498],[120.39024,51.83153],[120.40672,51.83747],[120.45272,51.84426],[120.4747,51.85529],[120.47264,51.86631],[120.4644,51.87903],[120.4795,51.88539],[120.50079,51.88539],[120.51178,51.88115],[120.52894,51.87733],[120.53993,51.88115],[120.54473,51.89895],[120.53924,51.90573],[120.55229,51.91335],[120.56945,51.90827],[120.61134,51.91928],[120.63125,51.92097],[120.64842,51.92521],[120.65391,51.95484],[120.66558,51.96669],[120.68,51.9688],[120.68412,51.97515],[120.69717,51.98107],[120.71228,52.01109],[120.68756,52.02334],[120.67863,52.03221],[120.68481,52.04784],[120.71228,52.06853],[120.71846,52.07866],[120.72738,52.0795],[120.73974,52.0757],[120.74729,52.07992],[120.74455,52.08541],[120.73425,52.09047],[120.73974,52.09807],[120.75485,52.10313],[120.76377,52.11704],[120.75897,52.12716],[120.75279,52.13728],[120.77888,52.15708],[120.78163,52.16382],[120.75553,52.18024],[120.7521,52.19119],[120.73768,52.20424],[120.73631,52.22107],[120.74317,52.23705],[120.75347,52.24419],[120.75141,52.25428],[120.72876,52.26017],[120.71296,52.25891],[120.70472,52.26185],[120.69236,52.28748],[120.64773,52.30134],[120.62164,52.32442],[120.62233,52.34163],[120.6134,52.35002],[120.61477,52.3584],[120.63125,52.36008],[120.64086,52.36008],[120.64842,52.3714],[120.64155,52.38565],[120.65803,52.40158],[120.66215,52.41121],[120.68344,52.42838],[120.68275,52.44178],[120.67863,52.44764],[120.67657,52.46521],[120.69786,52.48863],[120.69099,52.49992],[120.68,52.50869],[120.6855,52.51789],[120.71846,52.5275],[120.72601,52.53334],[120.72601,52.54086],[120.71159,52.54963],[120.67932,52.54587],[120.6546,52.56549],[120.61958,52.56925],[120.59143,52.59136],[120.55366,52.59387],[120.53512,52.60513],[120.47882,52.62681],[120.45822,52.64389],[120.42732,52.63848],[120.39436,52.61597],[120.34492,52.61472],[120.30784,52.61722],[120.28244,52.62264],[120.24398,52.60429],[120.21102,52.59095],[120.18837,52.57676],[120.11833,52.58552],[120.06683,52.58344],[120.04486,52.59303],[120.0373,52.60513],[120.03593,52.61889],[120.02563,52.63681],[120.03662,52.66347],[120.04348,52.68554],[120.06271,52.70301],[120.05104,52.71633],[120.05035,52.73213],[120.02494,52.7633],[120.02357,52.7712],[120.03044,52.77909],[120.05722,52.77826],[120.07301,52.78241],[120.09155,52.78449],[120.09841,52.79694],[120.1197,52.80359],[120.13687,52.81272],[120.15678,52.81189],[120.17463,52.80566],[120.18425,52.80857],[120.19523,52.82558],[120.20896,52.83346],[120.21308,52.84052],[120.23437,52.84674],[120.24742,52.85462],[120.27145,52.85793],[120.2893,52.86747],[120.28724,52.88902],[120.29892,52.89647],[120.33668,52.89896],[120.34423,52.90434],[120.3408,52.91925],[120.35041,52.93084],[120.35797,52.9416],[120.37651,52.94408],[120.40466,52.95691],[120.41153,52.97262],[120.43212,52.99908],[120.46028,53.01437],[120.49049,53.02552],[120.5001,53.03791],[120.52207,53.04327],[120.52619,53.05854],[120.54061,53.07134],[120.5619,53.08165],[120.58044,53.08536],[120.59761,53.09526],[120.63262,53.10103],[120.64224,53.11587],[120.64292,53.1237],[120.65048,53.13317],[120.68412,53.14182],[120.68756,53.14553],[120.68412,53.15212],[120.6903,53.1583],[120.68275,53.17353],[120.69717,53.17764],[120.70404,53.1834],[120.71777,53.18957],[120.72601,53.19986],[120.74729,53.21096],[120.76034,53.21096],[120.79605,53.22864],[120.80841,53.23933],[120.82214,53.24179],[120.82901,53.23686],[120.83519,53.23933],[120.82695,53.25535],[120.81184,53.26151],[120.8139,53.26726],[120.87501,53.28245],[120.87364,53.29148],[120.87913,53.29395],[120.8963,53.28615],[120.9272,53.28533],[120.9375,53.29313],[120.94574,53.29559],[120.98281,53.28984],[121.01509,53.28902],[121.03775,53.28615],[121.06315,53.30174],[121.09199,53.30585],[121.09474,53.29559],[121.11053,53.29354],[121.11465,53.27876],[121.1222,53.27506],[121.14486,53.28245],[121.16546,53.2804],[121.17851,53.28328],[121.22108,53.27958],[121.23481,53.28163],[121.24443,53.28902],[121.25541,53.29313],[121.27327,53.28861],[121.29867,53.29846],[121.32408,53.32267],[121.3639,53.3239],[121.39205,53.31733],[121.41128,53.31898],[121.42227,53.32349],[121.44767,53.32185],[121.47377,53.33128],[121.5905,53.35178],[121.62277,53.36571],[121.65298,53.37267],[121.67633,53.38783],[121.69487,53.39029],[121.73126,53.38496],[121.7498,53.38906],[121.81091,53.41444],[121.84524,53.41608],[121.85966,53.42385],[121.87477,53.42549],[121.90498,53.42058],[121.94755,53.42876],[122.0169,53.42549],[122.05879,53.41894],[122.09449,53.42221],[122.11303,53.4304],[122.08763,53.44471],[122.08282,53.45248],[122.09312,53.4672],[122.02514,53.52765],[122.0121,53.5301],[121.98532,53.54602],[121.97982,53.55621],[121.98394,53.56926],[122.00523,53.57905],[121.97845,53.59209],[121.9606,53.60513],[121.95167,53.6198],[121.95785,53.63283],[121.95854,53.63812],[121.95236,53.64789],[121.9551,53.66335],[121.97021,53.69792],[121.96403,53.71865],[121.9654,53.73287],[121.9606,53.74302],[121.95236,53.75155],[121.9345,53.74911],[121.92421,53.75601],[121.92901,53.76332],[121.92764,53.77631],[121.91871,53.79619],[121.92489,53.80754],[121.93725,53.81808],[121.94206,53.82821],[121.91871,53.85009],[121.88301,53.89381],[121.86927,53.9015],[121.84936,53.93305],[121.84318,53.948],[121.83082,53.96093],[121.81709,53.96537],[121.80542,53.96497],[121.78207,53.94113],[121.76902,53.93587],[121.76216,53.93992],[121.75117,53.95123],[121.73057,53.96901],[121.72439,53.97991],[121.71134,53.99001],[121.63581,54.02995],[121.63856,54.03681],[121.64817,54.04648],[121.64611,54.05817],[121.62483,54.09967],[121.63238,54.11335],[121.64955,54.12985],[121.67015,54.1383],[121.70311,54.14232],[121.73126,54.14836],[121.74224,54.15559],[121.74774,54.16806],[121.74911,54.17931],[121.73812,54.18132],[121.7292,54.18855],[121.72851,54.20462],[121.71409,54.22068],[121.70654,54.23152],[121.7134,54.24837],[121.74018,54.28567],[121.72439,54.28967],[121.71409,54.29368],[121.69761,54.32173],[121.70929,54.33574],[121.69899,54.34294],[121.67976,54.34535],[121.65779,54.35535],[121.65229,54.36655],[121.65847,54.37975],[121.68731,54.40614],[121.70517,54.41493],[121.74568,54.44249],[121.78001,54.44049],[121.80404,54.45167],[121.81572,54.45127],[121.82945,54.4361],[121.87408,54.42811],[121.88438,54.41813],[121.87202,54.41133],[121.86447,54.39695],[121.86653,54.39055],[121.90361,54.37975],[121.92901,54.37775],[121.96472,54.39095],[122.0121,54.40774],[122.03338,54.41053],[122.11303,54.41293],[122.1302,54.46125],[122.12951,54.47243],[122.12265,54.4824],[122.09312,54.49516],[122.07115,54.49955],[122.0581,54.50713],[122.0169,54.52028],[122.01072,54.52905],[122.01278,54.54777],[121.99562,54.55454],[121.97845,54.56887],[121.92283,54.58081],[121.92146,54.58996],[121.92627,54.6011],[121.93038,54.63609],[121.92764,54.64483],[121.91597,54.65238],[121.89674,54.65278],[121.88026,54.65556],[121.87751,54.66509],[121.88438,54.67819],[121.89811,54.68732],[121.91116,54.69169],[121.9194,54.70042],[121.92283,54.71153],[121.92146,54.72303],[121.92901,54.7484],[121.91597,54.75276],[121.89193,54.75514],[121.89468,54.7892],[121.90223,54.80464],[121.90086,54.80978],[121.89468,54.81137],[121.87545,54.80741],[121.84936,54.79672],[121.8164,54.79474],[121.80885,54.79197],[121.78413,54.77257],[121.76559,54.7698],[121.73812,54.77455],[121.72714,54.77297],[121.72096,54.76187],[121.72096,54.75078],[121.70929,54.74047],[121.67701,54.72858],[121.66603,54.73056],[121.65504,54.73929],[121.6468,54.76742],[121.64817,54.78049],[121.65435,54.78841],[121.65779,54.80464],[121.66397,54.8177],[121.66259,54.83352],[121.6777,54.8434],[121.69555,54.84933],[121.72988,54.86751],[121.74568,54.88055],[121.78344,54.90346],[121.79512,54.91609],[121.83837,54.94804],[121.83425,54.95632],[121.837,54.96421],[121.85005,54.97012],[121.88163,54.97288],[121.93725,54.99613],[121.94686,55.0044],[121.93382,55.08111],[121.94412,55.09408],[121.93794,55.09919],[121.91803,55.10548],[121.91528,55.11726],[121.90635,55.12158],[121.90635,55.12904],[121.91871,55.13964],[121.95304,55.15415],[121.96472,55.16318],[121.96678,55.17102],[121.97433,55.17259],[121.99493,55.17377],[122.00454,55.17847],[122.01553,55.19807],[122.01004,55.20395],[121.99699,55.20512],[121.97227,55.20238],[121.95854,55.20708],[121.9503,55.22158],[121.93725,55.23019],[121.94892,55.24624],[121.94686,55.25799],[121.93794,55.27364],[121.93725,55.28967],[121.94824,55.29905],[121.9709,55.31156],[121.97433,55.32992],[121.9606,55.37638],[121.95854,55.39003],[121.96678,55.40134],[121.97708,55.40991],[121.9915,55.41966],[121.99424,55.42823],[121.98188,55.44381],[121.98532,55.45121],[121.97982,55.49324],[121.96403,55.50802],[121.9503,55.50958],[121.93107,55.5158],[121.89399,55.58067],[121.89331,55.59347],[121.88507,55.60162],[121.88987,55.61054],[121.87477,55.61636],[121.84043,55.60705],[121.82601,55.60977],[121.81572,55.61752],[121.791,55.61907],[121.76559,55.62411],[121.74911,55.62101],[121.73744,55.60783],[121.71203,55.61171],[121.68525,55.60783],[121.66671,55.5927],[121.61727,55.53484],[121.60285,55.5294],[121.58432,55.53135],[121.57333,55.52979],[121.56509,55.51541],[121.55548,55.51463],[121.54037,55.51774],[121.51977,55.51502],[121.47239,55.51502],[121.46621,55.5088],[121.46278,55.49674],[121.43257,55.49208],[121.4154,55.49441],[121.38656,55.51852],[121.33094,55.52435],[121.33987,55.54572],[121.34124,55.56165],[121.34674,55.57213],[121.34674,55.58339],[121.35017,55.6055],[121.33987,55.62528],[121.32133,55.64931],[121.32202,55.68687],[121.31721,55.72479],[121.3021,55.73291],[121.3021,55.7387],[121.30897,55.74837],[121.31515,55.76923],[121.31858,55.77773],[121.34811,55.80205],[121.34742,55.81015],[121.33026,55.82288],[121.30691,55.82983],[121.29524,55.83947],[121.29524,55.85489],[121.26571,55.86837],[121.25541,55.87646],[121.2664,55.8911],[121.26503,55.90419],[121.2767,55.92843],[121.27258,55.93843],[121.26228,55.94535],[121.24923,55.97917],[121.24992,55.9857],[121.26159,55.99991],[121.26159,56.02179],[121.23344,56.03215],[121.21284,56.04251],[121.19499,56.04366],[121.17713,56.03676],[121.15585,56.0333],[121.1483,56.02947],[121.07894,56.02179],[121.07688,56.03177],[121.06178,56.03292],[121.04324,56.02793],[121.03706,56.0333],[120.99723,56.04711],[120.97869,56.04174],[120.96565,56.02755],[120.94917,56.02371],[120.93406,56.03023],[120.91827,56.03369],[120.87364,56.02601],[120.8551,56.0264],[120.83244,56.02218],[120.82901,56.01297],[120.81115,55.99761],[120.78987,55.98417],[120.74592,55.97264],[120.67451,55.96342],[120.65185,55.95804],[120.6443,55.94304],[120.64224,55.93112],[120.62164,55.93343],[120.59898,55.94035],[120.57563,55.93727],[120.5516,55.9292],[120.49667,55.93035],[120.48294,55.92497],[120.48156,55.90996],[120.47538,55.8988],[120.48637,55.88571],[120.48088,55.87993],[120.46165,55.87723],[120.44723,55.87107],[120.40878,55.87107],[120.38063,55.873],[120.35316,55.87762],[120.3511,55.88455],[120.36277,55.89456],[120.36758,55.9038],[120.36415,55.91073],[120.29892,55.93189],[120.279,55.92804],[120.26115,55.92881],[120.24948,55.93458],[120.23986,55.93381],[120.23231,55.9265],[120.233,55.91612],[120.22407,55.91034],[120.14373,55.86606],[120.1197,55.86259],[120.10734,55.86683],[120.10665,55.87338],[120.1094,55.88648],[120.10459,55.89957],[120.1094,55.90188],[120.11901,55.89841],[120.12107,55.90688],[120.11283,55.92189],[120.08949,55.9215],[120.08812,55.93343],[120.0785,55.94112],[120.11215,55.96496],[120.1197,55.97533],[120.12451,55.99569],[120.12176,56.00414],[120.10871,56.01373],[120.12176,56.03215],[120.10047,56.05363],[120.07576,56.06743],[120.04829,56.08697],[120.04486,56.09847],[120.02288,56.13024],[120.03593,56.16008],[120.05447,56.16849],[120.07644,56.16925],[120.10253,56.1662],[120.12588,56.17002],[120.14442,56.18149],[120.17463,56.20975],[120.18562,56.21434],[120.22201,56.21472],[120.233,56.22159],[120.29136,56.20937],[120.30715,56.21739],[120.30304,56.22083],[120.30235,56.22846],[120.32569,56.23304],[120.35591,56.24067],[120.38612,56.24373],[120.41084,56.23724],[120.43556,56.23991],[120.45547,56.24678],[120.47882,56.24602],[120.50216,56.25212],[120.51246,56.26356],[120.50834,56.27386],[120.52963,56.28682],[120.52482,56.3013],[120.48225,56.30015],[120.45272,56.30396],[120.39367,56.32301],[120.37239,56.33328],[120.36071,56.34432],[120.382,56.34889],[120.39161,56.3565],[120.39093,56.36791],[120.38063,56.37285],[120.34149,56.37209],[120.31539,56.37665],[120.26664,56.4006],[120.24055,56.4063],[120.23574,56.41238],[120.23574,56.42719],[120.2584,56.43972],[120.25154,56.44997],[120.27488,56.46666],[120.26321,56.4769],[120.24398,56.48562],[120.23025,56.48562],[120.22338,56.4659],[120.17463,56.47007],[120.15472,56.49358],[120.14099,56.48789],[120.11077,56.48903],[120.09979,56.49737],[120.08262,56.50306],[120.05928,56.50381],[120.02014,56.49699],[120.0016,56.49472],[119.98443,56.49131],[119.9604,56.4932],[119.94323,56.50078],[119.91851,56.52882],[119.91577,56.55342],[119.88075,56.55077],[119.83337,56.56175],[119.81689,56.57537],[119.80796,56.59881],[119.80453,56.62375],[119.81964,56.64263],[119.87319,56.6732],[119.87594,56.68603],[119.8574,56.69319],[119.82925,56.68904],[119.79492,56.68942],[119.77912,56.73012],[119.71733,56.72862],[119.69261,56.73276],[119.66789,56.75874],[119.68849,56.80012],[119.68231,56.80802],[119.69192,56.83169],[119.70565,56.83845],[119.73587,56.84033],[119.7647,56.84747],[119.81758,56.87074],[119.82856,56.89325],[119.85466,56.89812],[119.86427,56.90187],[119.82719,56.90712],[119.81758,56.91087],[119.79629,56.93411],[119.7853,56.97118],[119.76814,56.98802],[119.72763,56.9925],[119.66445,56.99101],[119.64866,56.99437],[119.61776,57.00746],[119.59854,57.02354],[119.57107,57.03811],[119.5745,57.04595],[119.57038,57.05081],[119.57244,57.05791],[119.56558,57.06761],[119.55871,57.06985],[119.55528,57.07694],[119.56008,57.08441],[119.56077,57.09709],[119.56489,57.09784],[119.57107,57.11126],[119.57794,57.11611],[119.58549,57.13437],[119.59785,57.13996],[119.60197,57.15002],[119.61845,57.15374],[119.63287,57.16566],[119.6466,57.17013],[119.65621,57.16491],[119.67544,57.17422],[119.66377,57.19171],[119.62051,57.22481],[119.59236,57.25119],[119.59854,57.2783],[119.58892,57.28683],[119.59236,57.29982],[119.52987,57.35986],[119.50241,57.36875],[119.4667,57.37541],[119.431,57.39096],[119.42894,57.40391],[119.41864,57.41833],[119.40216,57.43571],[119.42276,57.46231],[119.41246,57.47338],[119.4001,57.49405],[119.40559,57.50844],[119.42207,57.52135],[119.47357,57.53241],[119.47769,57.54568],[119.49005,57.56336],[119.50584,57.58471],[119.50653,57.5987],[119.46601,57.60422],[119.42207,57.62261],[119.3692,57.61378],[119.33349,57.61488],[119.28886,57.60275],[119.27513,57.58876],[119.26689,57.5652],[119.23736,57.52651],[119.2099,57.50623],[119.16664,57.53167],[119.13574,57.55562],[119.15428,57.57036],[119.17213,57.58066],[119.17625,57.59023],[119.16801,57.62812],[119.14398,57.65311],[119.16664,57.66597],[119.179,57.72138],[119.14123,57.72358],[119.10621,57.73201],[119.09111,57.72761],[119.07119,57.72945],[119.05952,57.73715],[119.04991,57.76865],[119.07875,57.78842],[119.07806,57.79831],[119.09729,57.82318],[119.09454,57.85352],[119.10965,57.87726],[119.10621,57.90499],[119.11308,57.96696],[119.13162,57.9757],[119.13917,57.98553],[119.15771,58.02046],[119.18312,58.03937],[119.17488,58.05608],[119.14466,58.09167],[119.15428,58.10691],[119.1584,58.12033],[119.15565,58.14172],[119.16526,58.14969],[119.18792,58.15838],[119.1584,58.17432],[119.15222,58.19097],[119.13505,58.21557],[119.11377,58.23691],[119.12338,58.25208],[119.13093,58.2965],[119.1172,58.30948],[119.10827,58.32643],[119.08905,58.33545],[119.06433,58.36643],[119.06158,58.37831],[119.08218,58.39739],[119.12132,58.4621],[119.12681,58.4822],[119.12544,58.50087],[119.10827,58.51701],[119.04647,58.53063],[119.01008,58.53171],[119.00665,58.54461],[118.99841,58.55894],[118.97781,58.56395],[118.96133,58.57433],[118.94348,58.57541],[118.90708,58.56574],[118.88237,58.5729],[118.86863,58.58221],[118.87344,58.59509],[118.86863,58.60261],[118.79791,58.60583],[118.78074,58.61584],[118.7677,58.62978],[118.77319,58.63979],[118.81027,58.66301],[118.81713,58.68015],[118.81851,58.69585],[118.8446,58.73222],[118.83773,58.75894],[118.82606,58.77603],[118.83361,58.78599],[118.83979,58.81623],[118.83636,58.83577],[118.82057,58.8578],[118.81645,58.86952],[118.80889,58.87484],[118.79722,58.87484],[118.77731,58.88513],[118.77456,58.88939],[118.74572,58.89968],[118.7368,58.91244],[118.7416,58.91811],[118.74023,58.9291],[118.73474,58.93654],[118.73886,58.94363],[118.76495,58.95496],[118.7883,58.95921],[118.80134,58.95744],[118.80821,58.95177],[118.82881,58.94823],[118.84735,58.94894],[118.86245,58.95461],[118.86589,58.9624],[118.86383,58.98116],[118.83979,59.01228],[118.83567,59.02889],[118.82812,59.03843],[118.80546,59.05185],[118.7368,59.05362],[118.70796,59.06209],[118.70315,59.07515],[118.71414,59.09138],[118.71688,59.11253],[118.70727,59.13297],[118.69148,59.14847],[118.6956,59.16572],[118.67912,59.1921],[118.68873,59.20476],[118.71757,59.22444],[118.76495,59.26658],[118.79791,59.26903],[118.81027,59.27535],[118.81095,59.28798],[118.8034,59.30305],[118.83224,59.31812],[118.82469,59.32793],[118.77388,59.34299],[118.74847,59.35489],[118.76014,59.39547],[118.75534,59.42447],[118.73954,59.44053],[118.7107,59.44158],[118.69216,59.4353],[118.68187,59.43809],[118.65165,59.43809],[118.6235,59.44751],[118.60839,59.44891],[118.59947,59.45624],[118.58917,59.45589],[118.58436,59.44751],[118.57887,59.44926],[118.56445,59.46426],[118.54316,59.47159],[118.51295,59.48937],[118.49029,59.4953],[118.47656,59.50192],[118.45459,59.50122],[118.44085,59.50506],[118.42163,59.50471],[118.39416,59.51377],[118.37425,59.51481],[118.36944,59.56528],[118.35159,59.60665],[118.34541,59.61707],[118.33442,59.62853],[118.28498,59.63235],[118.26576,59.63894],[118.24653,59.64241],[118.19847,59.63755],[118.13598,59.6386],[118.08792,59.62818],[118.07075,59.63096],[118.0577,59.63686],[118.04466,59.6379],[118.03299,59.62645],[118.02543,59.5858],[118.01925,59.57572],[118.00689,59.56876],[117.95608,59.5538],[117.94509,59.54371],[117.94647,59.53048],[117.95608,59.51516],[117.95814,59.49983],[117.93067,59.48066],[117.91969,59.4681],[117.919,59.45624],[117.91008,59.451],[117.8936,59.45205],[117.88467,59.45973],[117.86544,59.46357],[117.84141,59.45519],[117.82562,59.4531],[117.81326,59.46008],[117.78373,59.54267],[117.77824,59.56563],[117.76313,59.56737],[117.69928,59.55763],[117.64846,59.53954],[117.62992,59.52805],[117.58186,59.51621],[117.58255,59.50889],[117.59216,59.49704],[117.59559,59.48798],[117.58529,59.48101],[117.57431,59.48066],[117.55439,59.4817],[117.48642,59.50227],[117.46032,59.53014],[117.33947,59.5169],[117.29896,59.53153],[117.27562,59.53222],[117.24678,59.51899],[117.22068,59.54615],[117.21931,59.55659],[117.1994,59.5778],[117.17399,59.5924],[117.1273,59.6063],[117.12043,59.61394],[117.13623,59.62297],[117.15683,59.63026],[117.15202,59.64311],[117.15545,59.65733],[117.17811,59.66774],[117.19528,59.68334],[117.1891,59.71313],[117.19047,59.7294],[117.21656,59.73771],[117.22343,59.75466],[117.21656,59.7989],[117.22343,59.81513],[117.22549,59.86895],[117.21794,59.87343],[117.16575,59.87101],[117.12524,59.8717],[117.07511,59.88928],[117.01881,59.91373],[117.01538,59.92887],[117.02705,59.94297],[117.05314,59.95363],[117.06001,59.96566],[117.08473,59.97872],[117.117,59.97872],[117.15202,59.97494],[117.1891,59.97803],[117.22137,59.98902],[117.28385,59.99967],[117.3175,60.00756],[117.3381,60.01649],[117.33879,60.02541],[117.29141,60.0525],[117.25639,60.05593],[117.18017,60.05113],[117.16301,60.04221],[117.12867,60.0357],[117.08267,60.03295],[117.00439,60.06312],[117.014,60.08299],[117.00988,60.10045],[116.99546,60.13329],[116.97349,60.14526],[116.94534,60.15415],[116.93023,60.16303],[116.9268,60.18284],[116.93641,60.19752],[116.92886,60.20673],[116.88423,60.21185],[116.84989,60.22071],[116.81762,60.24321],[116.80114,60.24799],[116.78741,60.24764],[116.7723,60.25787],[116.76887,60.27251],[116.75651,60.28204],[116.72699,60.28885],[116.64115,60.29191],[116.62399,60.29566],[116.61987,60.30688],[116.62056,60.31742],[116.62468,60.3317],[116.6233,60.35141],[116.60545,60.37755],[116.59034,60.38536],[116.53747,60.39282],[116.45782,60.39384],[116.37405,60.37993],[116.33697,60.37823],[116.32461,60.38298],[116.31774,60.3952],[116.28273,60.41317],[116.20101,60.40401],[116.18316,60.40571],[116.17149,60.41995],[116.16668,60.43215],[116.1557,60.43723],[116.09184,60.4545],[116.01905,60.46297],[116.00051,60.46906],[115.97854,60.46771],[115.94833,60.46195],[115.93048,60.46365],[115.90919,60.48835],[115.8934,60.4968],[115.86593,60.50728],[115.87554,60.52114],[115.86799,60.52621],[115.81924,60.5279],[115.79177,60.53195],[115.77598,60.53026],[115.76431,60.5333],[115.76156,60.54141],[115.75744,60.54884],[115.7444,60.55322],[115.72998,60.54951],[115.6826,60.5485],[115.66406,60.54174],[115.63522,60.53803],[115.60501,60.53803],[115.57067,60.53431],[115.53222,60.52046],[115.50201,60.51607],[115.45806,60.51607],[115.41,60.50289],[115.37635,60.49917],[115.35026,60.50052],[115.31387,60.51539],[115.22529,60.49274],[115.22529,60.46838],[115.1786,60.45315],[115.15525,60.44909],[115.11405,60.43012],[115.10376,60.42097],[115.1017,60.41046],[115.11543,60.39893],[115.13053,60.36363],[115.11131,60.32728],[115.08247,60.31334],[115.06805,60.28715],[115.04127,60.26706],[114.99733,60.22276],[114.95613,60.20707],[114.89296,60.19581],[114.87716,60.19786],[114.84214,60.19479],[114.82498,60.20434],[114.77691,60.20605],[114.70619,60.19308],[114.67735,60.1842],[114.65194,60.15517],[114.57916,60.13569],[114.56474,60.1268],[114.54963,60.09121],[114.54071,60.08162],[114.50843,60.07032],[114.49539,60.06004],[114.50637,60.03776],[114.52217,60.02575],[114.56405,60.01923],[114.57641,59.9952],[114.49333,59.97116],[114.45282,59.95226],[114.402,59.93816],[114.38209,59.92164],[114.3251,59.91063],[114.3045,59.88962],[114.29626,59.86378],[114.25231,59.8455],[114.23378,59.83377],[114.22142,59.78474],[114.16511,59.75639],[114.13147,59.75604],[114.10331,59.76089],[114.06692,59.75674],[114.04426,59.74325],[114.001,59.74671],[113.98727,59.73633],[113.99414,59.72629],[113.97697,59.69443],[113.93852,59.68611],[113.90556,59.68784],[113.8829,59.68126],[113.87191,59.66878],[113.77166,59.62679],[113.73115,59.63061],[113.60893,59.60804],[113.59726,59.59484],[113.62472,59.56459],[113.61579,59.54789],[113.61854,59.52526],[113.5952,59.50784],[113.54095,59.4817],[113.47366,59.44018],[113.46817,59.43145],[113.43864,59.41329],[113.43315,59.40141],[113.44207,59.38882],[113.47709,59.37763],[113.5128,59.37029],[113.5279,59.35979],[113.5231,59.34684],[113.48259,59.31882],[113.48465,59.29814],[113.4716,59.28201],[113.44757,59.27921],[113.43315,59.25921],[113.40568,59.24797],[113.38371,59.23323],[113.34457,59.22444],[113.34251,59.20757],[113.3123,59.17909],[113.29376,59.16677],[113.27316,59.16079],[113.25393,59.16713],[113.21891,59.18788],[113.19076,59.18824],[113.16604,59.17944],[113.11798,59.16079],[113.07678,59.16396],[113.04245,59.15727],[113.0294,59.15093],[113.00056,59.14636],[112.98065,59.14741],[112.96073,59.16713],[112.89825,59.14847],[112.88452,59.13368],[112.83714,59.13192],[112.78633,59.12029],[112.76367,59.10443],[112.75886,59.08679],[112.76367,59.07268],[112.75955,59.06456],[112.73345,59.05856],[112.65106,59.05256],[112.61329,59.05644],[112.60162,59.06915],[112.60849,59.08044],[112.62291,59.0949],[112.61947,59.1076],[112.60986,59.1143],[112.58308,59.11535],[112.50274,59.0755],[112.49244,59.06033],[112.546,59.01723],[112.61467,58.98151],[112.58239,58.96629],[112.59544,58.95284],[112.57896,58.9493],[112.53776,58.90287],[112.51922,58.89436],[112.49931,58.89436],[112.47459,58.90003],[112.45536,58.92024],[112.44781,58.96417],[112.4588,58.99566],[112.44232,59.019],[112.45605,59.0303],[112.45811,59.03808],[112.4485,59.04867],[112.44438,59.06386],[112.47116,59.08291],[112.47802,59.09561],[112.45056,59.1453],[112.46978,59.16642],[112.46841,59.18718],[112.49794,59.22479],[112.53501,59.24868],[112.56111,59.25816],[112.60231,59.26517],[112.64419,59.26623],[112.6538,59.275],[112.65998,59.31602],[112.65174,59.32793],[112.60093,59.32163],[112.58445,59.32443],[112.5769,59.33774],[112.55836,59.34579],[112.49107,59.34649],[112.42034,59.33529],[112.37022,59.31777],[112.33383,59.31672],[112.31117,59.30936],[112.29469,59.30831],[112.28576,59.31111],[112.31803,59.33879],[112.32147,59.35174],[112.31666,59.36539],[112.29469,59.38533],[112.33245,59.41853],[112.33932,59.43285],[112.31735,59.45798],[112.31185,59.47229],[112.29606,59.48763],[112.2995,59.52909],[112.27752,59.53397],[112.23564,59.52735],[112.21298,59.51481],[112.1965,59.4953],[112.14363,59.46705],[112.10929,59.44053],[112.08389,59.40281],[111.97265,59.34964],[111.96991,59.32373],[111.95755,59.29289],[111.95068,59.28798],[111.92871,59.29008],[111.91223,59.3041],[111.8827,59.30516],[111.84768,59.29569],[111.79275,59.29604],[111.76254,59.28868],[111.6616,59.23112],[111.55448,59.24201],[111.52496,59.25254],[111.51054,59.26307],[111.50848,59.2736],[111.46659,59.29324],[111.44187,59.29569],[111.41166,59.29078],[111.38626,59.29218],[111.30043,59.28061],[111.28601,59.26868],[111.28601,59.24797],[111.25648,59.24411],[111.24206,59.23077],[111.22558,59.20968],[111.20567,59.20582],[111.18919,59.21109],[111.16516,59.2125],[111.13494,59.21109],[111.12258,59.21988],[111.10954,59.24762],[111.09718,59.25956],[111.07933,59.26026],[111.06628,59.23112],[111.04774,59.22585],[111.01203,59.22374],[110.99693,59.2255],[110.96466,59.24727],[110.88363,59.26131],[110.86647,59.26166],[110.85548,59.27009],[110.84243,59.2757],[110.79505,59.27219],[110.77034,59.27781],[110.7257,59.27956],[110.65841,59.26377],[110.64193,59.25254],[110.64056,59.24201],[110.64331,59.23042],[110.62271,59.21917],[110.587,59.21074],[110.57807,59.19632],[110.55404,59.19281],[110.54855,59.18261],[110.57533,59.17205],[110.59455,59.15657],[110.60142,59.14495],[110.57533,59.12804],[110.58494,59.11641],[110.5767,59.09561],[110.54992,59.09103],[110.52108,59.07727],[110.49018,59.05291],[110.41534,59.05891],[110.33432,59.03808],[110.30273,59.00556],[110.26908,59.00167],[110.23887,59.0045],[110.17776,58.98859],[110.14137,58.9992],[110.11116,58.99601],[110.07476,59.00698],[110.01777,59.00945],[109.98207,59.02465],[109.96215,59.02642],[109.87632,59.01617],[109.84611,58.99884],[109.82482,58.99531],[109.76989,59.03525],[109.74311,59.06844],[109.73762,59.08291],[109.71153,59.09773],[109.6875,59.09244],[109.64904,59.06739],[109.6305,59.07903],[109.61677,59.09455],[109.61334,59.11042],[109.636,59.13086],[109.63325,59.15093],[109.61883,59.17276],[109.59274,59.17381],[109.57969,59.18261],[109.57283,59.19597],[109.51171,59.19457],[109.51034,59.20547],[109.52888,59.22866],[109.53163,59.24306],[109.52476,59.25043],[109.48768,59.25956],[109.48768,59.28973],[109.50073,59.30831],[109.41352,59.30901],[109.39155,59.30621],[109.37782,59.31287],[109.29611,59.31812],[109.26384,59.33003],[109.27345,59.35489],[109.25903,59.37204],[109.2453,59.38043],[109.24324,59.38673],[109.25285,59.39197],[109.27963,59.38847],[109.31465,59.41015],[109.34211,59.41574],[109.35516,59.42517],[109.35791,59.43844],[109.34898,59.44542],[109.30984,59.44507],[109.2659,59.46496],[109.26521,59.47647],[109.30366,59.50262],[109.33113,59.50924],[109.33799,59.51969],[109.33525,59.53397],[109.34074,59.54719],[109.39361,59.56007],[109.42314,59.59136],[109.47464,59.62402],[109.54399,59.66843],[109.54399,59.68056],[109.52201,59.692],[109.50553,59.69131],[109.4918,59.70239],[109.48356,59.76988],[109.51377,59.79821],[109.56321,59.82721],[109.57283,59.84964],[109.59892,59.85585],[109.63119,59.85895],[109.65042,59.86653],[109.66415,59.87791],[109.66758,59.89272],[109.64355,59.90891],[109.63188,59.92818],[109.63325,59.93816],[109.67308,59.94607],[109.68338,59.98593],[109.71427,60.00207],[109.75685,60.03021],[109.76097,60.04564],[109.75341,60.05284],[109.71496,60.06072],[109.7129,60.07306],[109.69917,60.08299],[109.69505,60.09326],[109.7129,60.11106],[109.71633,60.12577],[109.70466,60.1309],[109.6978,60.16098],[109.72389,60.18523],[109.71221,60.19991],[109.71565,60.21116],[109.73007,60.21799],[109.74105,60.22685],[109.73419,60.23844],[109.74998,60.25139],[109.79461,60.25378],[109.82482,60.29259],[109.82276,60.30756],[109.8056,60.31946],[109.80148,60.33476],[109.82551,60.3385],[109.88044,60.35786],[109.8516,60.38163],[109.85572,60.39146],[109.87907,60.39418],[109.89349,60.38875],[109.93743,60.40062],[109.95803,60.43588],[109.91478,60.46601],[109.96147,60.50627],[110.00129,60.52621],[110.037,60.55052],[110.0473,60.56537],[110.05142,60.58932],[110.08232,60.59337],[110.10154,60.55997],[110.12695,60.57651],[110.13519,60.5846],[110.13862,60.64424],[110.12695,60.65333],[110.1091,60.6577],[110.09948,60.66477],[110.10772,60.67284],[110.09399,60.67855],[110.06652,60.6836],[110.06721,60.68999],[110.08712,60.69839],[110.1139,60.70141],[110.15098,60.69604],[110.17845,60.69738],[110.24231,60.6873],[110.26496,60.68999],[110.28488,60.69906],[110.30273,60.71687],[110.29243,60.75681],[110.29792,60.78028],[110.2993,60.79569],[110.26016,60.8342],[110.26565,60.84491],[110.30342,60.876],[110.33157,60.89337],[110.35972,60.92943],[110.39131,60.94677],[110.42427,60.95944],[110.42839,60.97843],[110.45791,60.98343],[110.47508,60.99309],[110.49842,61.03235],[110.4998,61.05429],[110.5101,61.07057],[110.54786,61.09514],[110.55336,61.11671],[110.53344,61.1376],[110.54992,61.15549],[110.54718,61.1694],[110.50735,61.18992],[110.48744,61.19257],[110.41397,61.21175],[110.39405,61.20514],[110.34187,61.17337],[110.28968,61.17966],[110.26084,61.17271],[110.2169,61.17337],[110.19767,61.18297],[110.18394,61.19422],[110.18257,61.20845],[110.14411,61.22961],[110.1139,61.28607],[110.02395,61.30487],[110.00816,61.31344],[109.98001,61.31541],[109.95323,61.32003],[109.92095,61.3197],[109.88388,61.32695],[109.84542,61.31937],[109.83238,61.32826],[109.8159,61.33255],[109.76852,61.33584],[109.78431,61.35625],[109.81727,61.38422],[109.82208,61.40197],[109.85916,61.45025],[109.84199,61.46436],[109.81796,61.47485],[109.86396,61.52433],[109.86877,61.54527],[109.85572,61.56784],[109.83718,61.58418],[109.80835,61.61455],[109.78157,61.63185],[109.75685,61.64066],[109.74655,61.64881],[109.75822,61.65631],[109.70741,61.65761],[109.70192,61.66315],[109.72938,61.68889],[109.7335,61.6954],[109.72663,61.70159],[109.70466,61.70387],[109.6875,61.70061],[109.65866,61.70973],[109.66003,61.72632],[109.6408,61.73542],[109.61128,61.73998],[109.59754,61.77084],[109.61814,61.79584],[109.61471,61.80298],[109.57695,61.80006],[109.56939,61.80817],[109.5948,61.81304],[109.58038,61.8393],[109.58519,61.85031],[109.61677,61.86683],[109.61334,61.87492],[109.58587,61.89596],[109.58793,61.91568],[109.60647,61.92667],[109.64355,61.93313],[109.65934,61.95025],[109.69162,61.97026],[109.71771,61.9751],[109.72389,61.9822],[109.72183,61.99606],[109.74311,62.00735],[109.77813,62.01572],[109.76921,62.0299],[109.77401,62.03344],[109.81521,62.02346],[109.82826,62.03891],[109.86396,62.05629],[109.87701,62.06659],[109.88113,62.10677],[109.87426,62.11705],[109.95941,62.16518],[109.97932,62.16518],[109.99649,62.16999],[110.00198,62.19626],[109.98413,62.20459],[109.98069,62.21227],[109.96353,62.22315],[109.95117,62.24299],[109.93263,62.25034],[109.93125,62.26408],[109.95597,62.28613],[109.97314,62.28964],[109.99305,62.31708],[109.98619,62.32761],[109.97039,62.33399],[109.94361,62.33271],[109.94499,62.34482],[109.95529,62.35407],[109.9443,62.36713],[109.92439,62.37286],[109.9086,62.37445],[109.8983,62.38464],[109.93537,62.41263],[109.91546,62.43457],[109.87976,62.44092],[109.80354,62.44219],[109.69917,62.43965],[109.6463,62.43997],[109.54742,62.45489],[109.53163,62.45045],[109.5227,62.43806],[109.50004,62.42567],[109.4767,62.42122],[109.45747,62.4263],[109.44442,62.44092],[109.4355,62.46347],[109.4197,62.47458],[109.39086,62.48853],[109.34005,62.49741],[109.32083,62.50788],[109.30915,62.52625],[109.30778,62.53861],[109.27551,62.55412],[109.27894,62.56551],[109.27345,62.57468],[109.25834,62.58037],[109.25148,62.58828],[109.27619,62.60092],[109.28649,62.6006],[109.34211,62.61103],[109.36683,62.61356],[109.39224,62.6344],[109.38262,62.65144],[109.39018,62.65743],[109.384,62.67067],[109.39773,62.67571],[109.43138,62.67382],[109.46502,62.68013],[109.4712,62.6984],[109.48356,62.70312],[109.47189,62.71666],[109.47738,62.72233],[109.46708,62.75786],[109.4712,62.76258],[109.49455,62.76604],[109.49935,62.7874],[109.52064,62.79995],[109.55978,62.80466],[109.63119,62.82411],[109.63394,62.82881],[109.65179,62.8307],[109.65934,62.83759],[109.6717,62.83602],[109.67445,62.84041],[109.66758,62.84668],[109.682,62.85263],[109.67102,62.85608],[109.6614,62.87268],[109.64492,62.87049],[109.63806,62.87174],[109.63737,62.88082],[109.62844,62.88489],[109.63462,62.89928],[109.62982,62.90335],[109.61334,62.9046],[109.59343,62.91648],[109.53987,62.91961],[109.5227,62.9396],[109.50347,62.95178],[109.48974,62.97363],[109.4918,62.98518],[109.51789,62.99017],[109.53575,63.00232],[109.52545,63.00762],[109.54193,63.0204],[109.53369,63.0232],[109.51377,63.01884],[109.49455,63.01884],[109.4815,63.02382],[109.48768,63.03005],[109.51583,63.02943],[109.51034,63.04157],[109.51583,63.05962],[109.47807,63.06118],[109.49798,63.06709],[109.50141,63.0761],[109.51927,63.07797],[109.50897,63.08263],[109.51034,63.08978],[109.48837,63.0904],[109.50004,63.09444],[109.49798,63.10097],[109.53025,63.11122],[109.47464,63.11463],[109.47052,63.12022],[109.50897,63.13884],[109.50416,63.14319],[109.4712,63.15621],[109.46708,63.16272],[109.47326,63.16613],[109.49661,63.16458],[109.5021,63.16706],[109.49111,63.17233],[109.46296,63.17605],[109.45266,63.19339],[109.45816,63.20237],[109.44854,63.20918],[109.45541,63.2197],[109.45678,63.23084],[109.46846,63.23548],[109.48356,63.23331],[109.48768,63.24321],[109.48082,63.24723],[109.48082,63.25495],[109.46022,63.27503],[109.44786,63.28182],[109.43275,63.28151],[109.42726,63.28707],[109.43344,63.317],[109.41764,63.31792],[109.4197,63.33272],[109.43138,63.34227],[109.42382,63.35243],[109.41352,63.37798],[109.39567,63.37983],[109.38056,63.37921],[109.37576,63.37337],[109.33662,63.3706],[109.32426,63.36875],[109.31602,63.37367],[109.3016,63.3746],[109.29679,63.37983],[109.30091,63.3829],[109.29473,63.3909],[109.31945,63.39428],[109.32563,63.39767],[109.31877,63.40197],[109.31877,63.4158],[109.29885,63.41918],[109.29267,63.43178],[109.26727,63.44406],[109.27276,63.46523],[109.24461,63.46861],[109.23568,63.47198],[109.23225,63.48057],[109.21714,63.48271],[109.19448,63.50079],[109.19448,63.51151],[109.18556,63.51948],[109.19036,63.52988],[109.17251,63.54457],[109.15054,63.54916],[109.14436,63.56139],[109.12239,63.56537],[109.08531,63.57698],[109.05029,63.57942],[109.03106,63.58584],[108.9672,63.58767],[108.94317,63.58401],[108.92532,63.58431],[108.91433,63.5782],[108.90335,63.58889],[108.88206,63.58339],[108.84498,63.59531],[108.81889,63.59866],[108.81271,63.6066],[108.77838,63.60599],[108.76876,63.61087],[108.74542,63.61393],[108.73374,63.61881],[108.70079,63.6182],[108.68431,63.6121],[108.63693,63.61698],[108.62182,63.62735],[108.60466,63.6301],[108.58543,63.62979],[108.57719,63.63314],[108.54011,63.6368],[108.48449,63.63497],[108.47076,63.6301],[108.44879,63.63162],[108.41789,63.62644],[108.39729,63.62277],[108.35128,63.6121],[108.26683,63.61118],[108.23936,63.60508],[108.17825,63.60416],[108.15696,63.59866],[108.14666,63.60996],[108.1398,63.62705],[108.15147,63.6621],[108.17894,63.67337],[108.23112,63.67611],[108.27507,63.69042],[108.29429,63.70593],[108.30596,63.72509],[108.30665,63.77763],[108.2991,63.81583],[108.30734,63.83794],[108.32862,63.84732],[108.3815,63.86064],[108.40347,63.85973],[108.40896,63.84763],[108.43299,63.83673],[108.49617,63.83249],[108.53324,63.83521],[108.62594,63.84581],[108.64585,63.84006],[108.65615,63.82371],[108.67469,63.8231],[108.72139,63.83703],[108.75846,63.85216],[108.8134,63.86971],[108.81546,63.87999],[108.79211,63.90326],[108.74267,63.91715],[108.74885,63.92439],[108.7413,63.94129],[108.75022,63.95245],[108.7461,63.9636],[108.76808,63.98228],[108.75297,64.00065],[108.76464,64.00908],[108.72345,64.04306],[108.66577,64.05177],[108.6177,64.07159],[108.60328,64.0839],[108.60603,64.1046],[108.56002,64.12648],[108.54766,64.12798],[108.525,64.13876],[108.52569,64.14655],[108.54766,64.17379],[108.56689,64.17977],[108.57994,64.19233],[108.5765,64.1995],[108.51814,64.21414],[108.51676,64.2225],[108.52226,64.22847],[108.56689,64.24966],[108.56414,64.25682],[108.52088,64.26487],[108.51333,64.28484],[108.49479,64.30092],[108.42681,64.3173],[108.40553,64.31581],[108.39729,64.30718],[108.40347,64.29646],[108.40141,64.28544],[108.34785,64.26577],[108.32519,64.27054],[108.29498,64.27203],[108.27369,64.27739],[108.23318,64.27173],[108.18855,64.28156],[108.14529,64.26845],[108.10478,64.25861],[108.05671,64.23355],[108.04916,64.21504],[108.05259,64.18993],[108.00109,64.18366],[107.96676,64.18605],[107.94548,64.1992],[107.92625,64.20189],[107.89466,64.19203],[107.86994,64.22907],[107.85415,64.23534],[107.83355,64.23086],[107.80746,64.23594],[107.72644,64.26398],[107.71408,64.28931],[107.69485,64.29795],[107.60284,64.31313],[107.54859,64.31253],[107.44834,64.28127],[107.38861,64.27292],[107.33505,64.26964],[107.30621,64.2765],[107.28424,64.28931],[107.25608,64.31789],[107.27119,64.34377],[107.12631,64.35566],[107.10022,64.3616],[107.01164,64.39545],[106.97593,64.39812],[106.94297,64.42214],[106.90864,64.43815],[106.89079,64.43992],[106.86058,64.43489],[106.82212,64.41918],[106.73286,64.42629],[106.69715,64.48403],[106.67244,64.49024],[106.65252,64.52984],[106.57012,64.53958],[106.55296,64.53515],[106.55021,64.52364],[106.5715,64.49675],[106.57562,64.47013],[106.50489,64.46095],[106.34559,64.45384],[106.29684,64.43755],[106.2474,64.44615],[106.19659,64.42066],[106.11007,64.42363],[106.09565,64.4337],[106.07643,64.4417],[106.08055,64.45236],[106.09771,64.45858],[106.11763,64.47042],[106.12312,64.48847],[106.10458,64.49823],[106.06819,64.50768],[106.06819,64.52039],[106.00982,64.53958],[105.9906,64.53574],[105.89721,64.49349],[105.88073,64.50207],[105.84365,64.50502],[105.77293,64.49261],[105.74615,64.51152],[105.77911,64.53161],[105.78666,64.54578],[105.7743,64.55434],[105.74821,64.58323],[105.72898,64.58412],[105.71662,64.58883],[105.70976,64.60179],[105.74752,64.64005],[105.73654,64.64858],[105.70152,64.66063],[105.69671,64.67062],[105.67886,64.68442],[105.69191,64.68942],[105.72349,64.69294],[105.77705,64.67943],[105.81138,64.67444],[105.8361,64.6765],[105.85464,64.68442],[105.82511,64.7788],[105.85739,64.81038],[105.85601,64.83229],[105.87318,64.83667],[105.89721,64.83901],[105.91301,64.8393],[105.95626,64.82908],[105.97412,64.82879],[105.9748,64.84018],[105.95352,64.84689],[105.9336,64.85098],[105.9336,64.90753],[106.016,64.92004],[106.03729,64.91597],[106.04484,64.88568],[106.05857,64.88247],[106.05445,64.87839],[106.06063,64.87227],[106.1087,64.87489],[106.16912,64.86935],[106.20552,64.8711],[106.20414,64.87839],[106.12175,64.90985],[106.0881,64.94768],[106.06475,64.9625],[106.06475,64.98865],[106.03591,64.99155],[106.00296,64.99852],[105.96244,65.02201],[105.95832,65.04259],[106.01257,65.06402],[106.09909,65.07473],[106.1444,65.09006],[106.1959,65.13601],[106.27075,65.14294],[106.29684,65.14438],[106.3092,65.14813],[106.31538,65.15996],[106.34971,65.19225],[106.37237,65.20895],[106.41563,65.22795],[106.43348,65.22795],[106.48223,65.21615],[106.51725,65.21816],[106.50833,65.22708],[106.47399,65.23629],[106.43829,65.24233],[106.43005,65.25383],[106.43554,65.321],[106.48223,65.33103],[106.51382,65.34507],[106.5406,65.37999],[106.56738,65.38743],[106.60652,65.39086],[106.61476,65.39601],[106.66969,65.39486],[106.77681,65.38686],[106.80015,65.38028],[106.8235,65.38943],[106.84341,65.40115],[106.89147,65.46025],[106.92031,65.47536],[106.95602,65.50442],[106.921,65.51381],[106.87294,65.51779],[106.83036,65.52491],[106.78916,65.52576],[106.75621,65.53515],[106.70265,65.54368],[106.69578,65.55306],[106.69647,65.56016],[106.71432,65.58344],[106.71638,65.59196],[106.69509,65.59735],[106.69235,65.60557],[106.66763,65.6016],[106.65252,65.61011],[106.6127,65.61096],[106.61544,65.61805],[106.63055,65.61692],[106.64154,65.62088],[106.64085,65.62258],[106.6278,65.62769],[106.58523,65.62995],[106.59828,65.63647],[106.58935,65.63902],[106.55571,65.63732],[106.54678,65.64412],[106.5097,65.64836],[106.48429,65.66138],[106.46575,65.66506],[106.45202,65.65827],[106.44241,65.66167],[106.43966,65.66817],[106.417,65.66704],[106.41014,65.67213],[106.42456,65.68854],[106.4225,65.69362],[106.39915,65.70125],[106.42044,65.70888],[106.41357,65.71368],[106.43966,65.71425],[106.44928,65.71764],[106.44035,65.72554],[106.45546,65.73627],[106.43623,65.74304],[106.45065,65.74868],[106.45271,65.75093],[106.43005,65.77292],[106.45271,65.79433],[106.47743,65.7977],[106.48086,65.80333],[106.45065,65.82303],[106.47262,65.84046],[106.48498,65.85787],[106.47262,65.87977],[106.49116,65.88538],[106.48498,65.90109],[106.47674,65.90333],[106.4685,65.92603],[106.48429,65.93807],[106.49116,65.96102],[106.48292,65.96885],[106.48979,65.97416],[106.48361,65.97919],[106.50558,65.99009],[106.50833,65.99903],[106.47743,66.01913],[106.47949,66.02778],[106.45889,66.03392],[106.46095,66.04145],[106.44241,66.05148],[106.43898,66.06012],[106.40602,66.0643],[106.41769,66.08157],[106.37512,66.09771],[106.3758,66.10438],[106.35383,66.113],[106.36207,66.12051],[106.35589,66.1269],[106.36138,66.13163],[106.33873,66.13996],[106.33255,66.1469],[106.32843,66.15412],[106.31607,66.15607],[106.29615,66.15246],[106.27624,66.15468],[106.26869,66.15079],[106.2577,66.15273],[106.25221,66.14912],[106.23298,66.15329],[106.22406,66.14996],[106.21238,66.15218],[106.19659,66.1494],[106.16157,66.16522],[106.1499,66.16717],[106.14303,66.17521],[106.1087,66.19434],[106.10389,66.20293],[106.12518,66.24307],[106.1396,66.24861],[106.11763,66.25635],[106.12381,66.25884],[106.12724,66.26436],[106.11488,66.27486],[106.12175,66.28508],[106.12106,66.29006],[106.11076,66.29502],[106.12106,66.29999],[106.119,66.30524],[106.13205,66.3102],[106.09497,66.3273],[106.11488,66.35899],[106.10664,66.36642],[106.10664,66.37027],[106.14303,66.39118],[106.14303,66.40987],[106.17874,66.41592],[106.19316,66.42965],[106.23779,66.43404],[106.25839,66.44694],[106.26594,66.44804],[106.28654,66.45984],[106.30714,66.46559],[106.32499,66.48122],[106.32568,66.49272],[106.32362,66.50532],[106.30851,66.53377],[106.29959,66.54443],[106.26251,66.56137],[106.22612,66.56984],[106.23436,66.58922],[106.23504,66.6034],[106.21788,66.66114],[106.24191,66.68153],[106.23779,66.69349],[106.18629,66.70381],[106.15882,66.71711],[106.14715,66.75372],[106.1547,66.76862],[106.18492,66.78297],[106.19247,66.79569],[106.1602,66.80083],[106.13136,66.79894],[106.07437,66.78649],[106.05102,66.78622],[106.01326,66.79082],[105.98854,66.79921],[106.09497,66.86189],[106.09909,66.87942],[106.08055,66.8929],[106.05239,66.89667],[105.99678,66.88966],[105.97412,66.90071],[105.93772,66.90825],[105.84091,66.92037],[105.84091,66.94351],[105.69534,66.92467],[105.56282,66.97307],[105.54702,66.98435],[105.54702,66.99938],[105.52917,67.01547],[105.5381,67.02083],[105.57861,67.01922],[105.62118,67.02405],[105.71525,67.01895],[105.76675,67.02807],[105.94596,67.0345],[106.00639,67.07786],[106.0675,67.13022],[106.07986,67.16222],[106.1547,67.17261],[106.23779,67.17501],[106.2989,67.20057],[106.33117,67.20163],[106.3607,67.20562],[106.38473,67.22211],[106.40876,67.2431],[106.44447,67.26169],[106.51245,67.27973],[106.5715,67.28954],[106.58454,67.26541],[106.60858,67.26063],[106.67861,67.2524],[106.70196,67.25346],[106.71775,67.26249],[106.72393,67.27947],[106.74316,67.29776],[106.77955,67.31339],[106.81732,67.3425],[106.87019,67.67373],[106.86676,68.00011],[106.90177,68.03994],[106.90521,68.0574],[106.90727,68.17844],[106.9004,68.85732],[106.63192,69.05825],[106.15058,69.40979],[106.18492,69.43006],[106.22062,69.44285],[106.268,69.44863],[106.29478,69.46116],[106.32568,69.46887],[106.35589,69.48548],[106.36001,69.49823],[106.3504,69.51217],[106.41838,69.54195],[106.44172,69.55899],[106.44996,69.57193],[106.48567,69.57649],[106.55571,69.56522],[106.58935,69.56354],[106.61476,69.55803],[106.63673,69.53019],[106.66076,69.52227],[106.69441,69.52395],[106.73973,69.53067],[106.78367,69.52779],[106.8386,69.51962],[106.99173,69.54699],[107.06657,69.55371],[107.12081,69.56498],[107.173,69.57888],[107.23548,69.58679],[107.48542,69.63129],[107.57331,69.65374],[107.63374,69.66352],[107.71614,69.66997],[107.79647,69.67927],[107.85003,69.67951],[107.92419,69.66806],[107.95028,69.66997],[107.97775,69.68618],[108.00041,69.71572],[108.01414,69.72358],[108.02856,69.73642],[108.03543,69.75401],[108.05946,69.76898],[108.04435,69.77776],[108.03817,69.79105],[108.05465,69.79627],[108.1398,69.79389],[108.15971,69.81167],[108.23112,69.83086],[108.25309,69.84908],[108.35334,69.85121],[108.38218,69.85026],[108.44741,69.84127],[108.4996,69.8453],[108.5202,69.83891],[108.57238,69.82991],[108.61427,69.82897],[108.64723,69.83512],[108.71315,69.82352],[108.89579,69.83843],[108.92532,69.81783],[108.91777,69.79579],[108.94592,69.78132],[108.95278,69.77301],[108.96995,69.7685],[109.05235,69.76803],[109.08943,69.76636],[109.13612,69.76874],[109.21371,69.75449],[109.28512,69.76898],[109.31465,69.77705],[109.32769,69.78891],[109.34143,69.82091],[109.37027,69.82683],[109.3888,69.87201],[109.39155,69.8928],[109.37027,69.90294],[109.37645,69.91615],[109.3943,69.92794],[109.39979,69.93783],[109.40391,69.96373],[109.42451,69.9722],[109.52682,69.99946],[109.54399,70.00721],[109.54467,70.01941],[109.53231,70.03301],[109.50485,70.037],[109.44717,70.03864],[109.42726,70.04567],[109.38194,70.07307],[109.35653,70.09155],[109.3634,70.10324],[109.36065,70.12239],[109.33319,70.13943],[109.30366,70.15155],[109.29817,70.16577],[109.29611,70.19557],[109.30023,70.20929],[109.35447,70.21998],[109.41833,70.21812],[109.46159,70.22626],[109.53506,70.24251],[109.59205,70.26177],[109.6202,70.28402],[109.6202,70.31133],[109.59823,70.33122],[109.56459,70.35455],[109.63874,70.3767],[109.74174,70.37139],[109.76646,70.37969],[109.78843,70.38269],[109.8207,70.38269],[109.8619,70.39099],[109.96009,70.39329],[110.02464,70.40849],[110.05073,70.40112],[110.08506,70.39721],[110.16677,70.40988],[110.20042,70.40596],[110.2938,70.40504],[110.30548,70.41747],[110.31028,70.43035],[110.29998,70.43978],[110.2526,70.44139],[110.22033,70.44553],[110.19424,70.45633],[110.15785,70.46414],[110.13038,70.47332],[110.11734,70.48594],[110.11528,70.50313],[110.09742,70.52123],[110.0988,70.53267],[110.13725,70.53839],[110.16128,70.54457],[110.12077,70.57063],[110.12352,70.58615],[110.13931,70.61079],[110.12695,70.624],[110.12558,70.63516],[110.17982,70.64085],[110.19081,70.65223],[110.22308,70.66019],[110.2684,70.66656],[110.31578,70.6711],[110.35011,70.69314],[110.44967,70.70358],[110.49774,70.71605],[110.50735,70.72852],[110.51902,70.76158],[110.54718,70.76905],[110.58013,70.77379],[110.61721,70.78352],[110.64949,70.78419],[110.70236,70.78849],[110.75935,70.79617],[110.78819,70.79255],[110.80741,70.78645],[110.84449,70.78306],[110.87814,70.79052],[110.90011,70.80114],[111.04705,70.83768],[111.19125,70.85976],[111.2812,70.85841],[111.34231,70.86133],[111.42128,70.88226],[111.44462,70.8962],[111.45561,70.91551],[111.48307,70.92629],[111.53457,70.93616],[111.58744,70.94064],[111.63345,70.93952],[111.6513,70.94759],[111.71173,70.96574],[111.73645,70.9682],[111.78657,70.96081],[111.81472,70.96283],[111.83807,70.96999],[111.86759,70.97626],[111.89781,70.97514],[111.93557,70.97783],[111.98707,70.99438],[112.0008,71.00377],[111.99737,71.02075],[112.01728,71.04374],[112.04063,71.04887],[112.0832,71.05511],[112.11959,71.05155],[112.14363,71.0395],[112.16079,71.02075],[112.19581,71.00578],[112.22259,71.00064],[112.24319,71.00377],[112.28096,71.04396],[112.29812,71.05444],[112.38395,71.06915],[112.47802,71.07361],[112.51991,71.09787],[112.5769,71.09609],[112.58514,71.10521],[112.57621,71.11943],[112.51442,71.16182],[112.51853,71.17113],[112.5563,71.18022],[112.60574,71.18864],[112.65655,71.19505],[112.6799,71.207],[112.71148,71.23574],[112.71766,71.24943],[112.70668,71.25914],[112.67921,71.26443],[112.64625,71.27413],[112.62702,71.28713],[112.60231,71.29132],[112.56935,71.29022],[112.49244,71.27435],[112.46841,71.27744],[112.43202,71.30013],[112.4073,71.30827],[112.36953,71.31597],[112.34756,71.32455],[112.33795,71.33883],[112.30773,71.35113],[112.24731,71.36825],[112.20336,71.37922],[112.17178,71.38316],[112.12646,71.38514],[112.02758,71.39763],[112.0008,71.41011],[112.00424,72.00191],[111.98982,72.07454],[111.99531,72.10853],[111.97814,72.12161],[111.93901,72.1332],[111.90124,72.13004],[111.80923,72.14583],[111.77833,72.15804],[111.74194,72.1633],[111.71447,72.16225],[111.68838,72.1757],[111.70143,72.1965],[111.68357,72.21958],[111.64856,72.22042],[111.60736,72.20846],[111.58195,72.21497],[111.58538,72.2309],[111.61216,72.24368],[111.65679,72.25938],[111.64856,72.27694],[111.63414,72.29282],[111.61285,72.29658],[111.60461,72.30681],[111.5483,72.32516],[111.50779,72.32287],[111.46797,72.3235],[111.41853,72.31724],[111.38832,72.3162],[111.34368,72.31516],[111.31073,72.31057],[111.3018,72.32037],[111.28601,72.32933],[111.11434,72.36473],[111.07315,72.36265],[111.04568,72.36972],[111.01684,72.38511],[111.01753,72.39445],[111.05667,72.4094],[111.03881,72.4233],[110.99693,72.42952],[110.9983,72.44029],[111.04499,72.44547],[111.10061,72.44817],[111.15211,72.45934],[111.19125,72.46638],[111.23107,72.47899],[111.28463,72.48974],[111.28601,72.50997],[111.24206,72.52544],[111.2146,72.5407],[111.16104,72.55676],[111.11709,72.5617],[111.02989,72.56458],[110.98526,72.5691],[110.94474,72.57897],[110.89393,72.56828],[110.85823,72.57939],[110.88981,72.59315],[110.86235,72.59747],[110.85823,72.60691],[110.88432,72.61922],[110.88638,72.63009],[110.80055,72.64075],[110.74424,72.65958],[110.7209,72.6739],[110.72364,72.68413],[110.7003,72.70782],[110.70854,72.72026],[110.6948,72.72618],[110.67764,72.74717],[110.6591,72.75755],[110.68794,72.76854],[110.66871,72.7724],[110.66253,72.77911],[110.66597,72.78785],[110.68794,72.79354],[110.73463,72.79963],[110.7415,72.80653],[110.72433,72.81242],[110.72021,72.8254],[110.69068,72.83736],[110.67421,72.8333],[110.66734,72.83493],[110.67695,72.84485],[110.66322,72.84829],[110.6488,72.84668],[110.64125,72.84809],[110.66047,72.86226],[110.62751,72.87217],[110.6179,72.87783],[110.62339,72.88289],[110.66459,72.89218],[110.70236,72.89824],[110.73394,72.89864],[110.76278,72.90571],[110.80329,72.91075],[110.79025,72.9158],[110.78819,72.92003],[110.80879,72.92689],[110.83488,72.93032],[110.8493,72.92487],[110.8596,72.92366],[110.86715,72.92608],[110.86509,72.93374],[110.87951,72.93959],[110.88157,72.942],[110.87402,72.94361],[110.82939,72.93838],[110.81771,72.93959],[110.81291,72.94442],[110.8184,72.94865],[110.72364,72.94905],[110.71197,72.95046],[110.69892,72.95791],[110.6948,72.95831],[110.68794,72.96394],[110.70098,72.96978],[110.68725,72.97963],[110.65841,72.99048],[110.70785,73.00393],[110.75042,73.02038],[110.78338,73.01878],[110.81634,73.02419],[110.83831,73.03702],[110.84861,73.05604],[110.82664,73.06224],[110.80261,73.07124],[110.7875,73.08483],[110.76416,73.09442],[110.76347,73.1044],[110.80741,73.11038],[110.8184,73.11796],[110.82389,73.12992],[110.84243,73.14466],[110.84449,73.16297],[110.80741,73.16297],[110.70442,73.15461],[110.66185,73.16317],[110.63644,73.15999],[110.55885,73.15621],[110.53962,73.14645],[110.47508,73.15103],[110.41259,73.15044],[110.36659,73.15839],[110.36247,73.18046],[110.36727,73.19853],[110.38307,73.2029],[110.47576,73.21698],[110.49911,73.2259],[110.58082,73.24016],[110.59318,73.24353],[110.61309,73.25976],[110.60897,73.26589],[110.58769,73.27201],[110.57395,73.28209],[110.53619,73.29117],[110.5355,73.31071],[110.5149,73.31603],[110.51834,73.32431],[110.50941,73.33238],[110.50254,73.33061],[110.45448,73.33081],[110.44349,73.33356],[110.438,73.34262],[110.42633,73.34361],[110.4174,73.34144],[110.41259,73.33711],[110.40023,73.33435],[110.38444,73.34026],[110.37551,73.33888],[110.37689,73.33396],[110.36796,73.33061],[110.35217,73.33455],[110.34599,73.34557],[110.33844,73.34872],[110.32196,73.34833],[110.28556,73.35521],[110.23887,73.35836],[110.22377,73.36839],[110.21209,73.36976],[110.19836,73.36485],[110.18669,73.36445],[110.18188,73.37684],[110.17158,73.37723],[110.17089,73.36937],[110.16403,73.36583],[110.15029,73.3674],[110.14617,73.37684],[110.12008,73.3786],[110.12214,73.38489],[110.14068,73.39038],[110.11596,73.40039],[110.11322,73.40529],[110.13725,73.40686],[110.14961,73.41216],[110.17021,73.41157],[110.19355,73.4051],[110.19699,73.39764],[110.21209,73.39549],[110.25466,73.39745],[110.30548,73.4049],[110.33363,73.40353],[110.37071,73.40549],[110.3968,73.4],[110.42564,73.39588],[110.47233,73.39647],[110.50323,73.40294],[110.53962,73.40784],[110.63919,73.42842],[110.66803,73.44408],[110.66803,73.45875],[110.6845,73.4775],[110.71746,73.49468],[110.77034,73.50463],[110.82183,73.5171],[110.82115,73.53521],[110.80673,73.54494],[110.85205,73.5463],[110.87333,73.55544],[110.87883,73.56845],[110.90629,73.58088],[110.92071,73.57991],[110.93582,73.57389],[110.97839,73.56807],[110.99144,73.56301],[111.02371,73.56399],[111.04225,73.56593],[111.06765,73.57739],[111.13632,73.58806],[111.1576,73.59756],[111.16653,73.60454],[111.22009,73.60066],[111.23863,73.60125],[111.25442,73.60435],[111.27708,73.61249],[111.2709,73.61733],[111.24412,73.61965],[111.20704,73.62778],[111.17546,73.64191],[111.18164,73.65061],[111.17408,73.66027],[111.14181,73.66433],[111.10473,73.66645],[111.04499,73.67514],[111.02096,73.68131],[110.99281,73.69404],[110.96191,73.69925],[110.94268,73.7004],[110.89393,73.69616],[110.81153,73.71697],[110.88981,73.76464],[110.94268,73.78383],[110.98182,73.80261],[111.05735,73.82348],[111.14181,73.83132],[111.17683,73.82405],[111.19331,73.82329],[111.20979,73.81793],[111.22901,73.8185],[111.24137,73.82405],[111.24343,73.8273],[111.23657,73.83533],[111.24069,73.84068],[111.24824,73.84202],[111.31691,73.84298],[111.35261,73.84852],[112,74],[110.88081,74.28234],[115,75.5],[115,85]]]}},{"type":"Feature","properties":{"cq_zone_name":"Eastern Siberian Zone","cq_zone_number":19,"cq_zone_name_loc":[70,150]},"geometry":{"type":"Polygon","coordinates":[[[115,85],[115,75.5],[110.88081,74.28234],[112,74],[111.35261,73.84852],[111.31691,73.84298],[111.24824,73.84202],[111.24069,73.84068],[111.23657,73.83533],[111.24343,73.8273],[111.24137,73.82405],[111.22901,73.8185],[111.20979,73.81793],[111.19331,73.82329],[111.17683,73.82405],[111.14181,73.83132],[111.05735,73.82348],[110.98182,73.80261],[110.94268,73.78383],[110.88981,73.76464],[110.81153,73.71697],[110.89393,73.69616],[110.94268,73.7004],[110.96191,73.69925],[110.99281,73.69404],[111.02096,73.68131],[111.04499,73.67514],[111.10473,73.66645],[111.14181,73.66433],[111.17408,73.66027],[111.18164,73.65061],[111.17546,73.64191],[111.20704,73.62778],[111.24412,73.61965],[111.2709,73.61733],[111.27708,73.61249],[111.25442,73.60435],[111.23863,73.60125],[111.22009,73.60066],[111.16653,73.60454],[111.1576,73.59756],[111.13632,73.58806],[111.06765,73.57739],[111.04225,73.56593],[111.02371,73.56399],[110.99144,73.56301],[110.97839,73.56807],[110.93582,73.57389],[110.92071,73.57991],[110.90629,73.58088],[110.87883,73.56845],[110.87333,73.55544],[110.85205,73.5463],[110.80673,73.54494],[110.82115,73.53521],[110.82183,73.5171],[110.77034,73.50463],[110.71746,73.49468],[110.6845,73.4775],[110.66803,73.45875],[110.66803,73.44408],[110.63919,73.42842],[110.53962,73.40784],[110.50323,73.40294],[110.47233,73.39647],[110.42564,73.39588],[110.3968,73.4],[110.37071,73.40549],[110.33363,73.40353],[110.30548,73.4049],[110.25466,73.39745],[110.21209,73.39549],[110.19699,73.39764],[110.19355,73.4051],[110.17021,73.41157],[110.14961,73.41216],[110.13725,73.40686],[110.11322,73.40529],[110.11596,73.40039],[110.14068,73.39038],[110.12214,73.38489],[110.12008,73.3786],[110.14617,73.37684],[110.15029,73.3674],[110.16403,73.36583],[110.17089,73.36937],[110.17158,73.37723],[110.18188,73.37684],[110.18669,73.36445],[110.19836,73.36485],[110.21209,73.36976],[110.22377,73.36839],[110.23887,73.35836],[110.28556,73.35521],[110.32196,73.34833],[110.33844,73.34872],[110.34599,73.34557],[110.35217,73.33455],[110.36796,73.33061],[110.37689,73.33396],[110.37551,73.33888],[110.38444,73.34026],[110.40023,73.33435],[110.41259,73.33711],[110.4174,73.34144],[110.42633,73.34361],[110.438,73.34262],[110.44349,73.33356],[110.45448,73.33081],[110.50254,73.33061],[110.50941,73.33238],[110.51834,73.32431],[110.5149,73.31603],[110.5355,73.31071],[110.53619,73.29117],[110.57395,73.28209],[110.58769,73.27201],[110.60897,73.26589],[110.61309,73.25976],[110.59318,73.24353],[110.58082,73.24016],[110.49911,73.2259],[110.47576,73.21698],[110.38307,73.2029],[110.36727,73.19853],[110.36247,73.18046],[110.36659,73.15839],[110.41259,73.15044],[110.47508,73.15103],[110.53962,73.14645],[110.55885,73.15621],[110.63644,73.15999],[110.66185,73.16317],[110.70442,73.15461],[110.80741,73.16297],[110.84449,73.16297],[110.84243,73.14466],[110.82389,73.12992],[110.8184,73.11796],[110.80741,73.11038],[110.76347,73.1044],[110.76416,73.09442],[110.7875,73.08483],[110.80261,73.07124],[110.82664,73.06224],[110.84861,73.05604],[110.83831,73.03702],[110.81634,73.02419],[110.78338,73.01878],[110.75042,73.02038],[110.70785,73.00393],[110.65841,72.99048],[110.68725,72.97963],[110.70098,72.96978],[110.68794,72.96394],[110.6948,72.95831],[110.69892,72.95791],[110.71197,72.95046],[110.72364,72.94905],[110.8184,72.94865],[110.81291,72.94442],[110.81771,72.93959],[110.82939,72.93838],[110.87402,72.94361],[110.88157,72.942],[110.87951,72.93959],[110.86509,72.93374],[110.86715,72.92608],[110.8596,72.92366],[110.8493,72.92487],[110.83488,72.93032],[110.80879,72.92689],[110.78819,72.92003],[110.79025,72.9158],[110.80329,72.91075],[110.76278,72.90571],[110.73394,72.89864],[110.70236,72.89824],[110.66459,72.89218],[110.62339,72.88289],[110.6179,72.87783],[110.62751,72.87217],[110.66047,72.86226],[110.64125,72.84809],[110.6488,72.84668],[110.66322,72.84829],[110.67695,72.84485],[110.66734,72.83493],[110.67421,72.8333],[110.69068,72.83736],[110.72021,72.8254],[110.72433,72.81242],[110.7415,72.80653],[110.73463,72.79963],[110.68794,72.79354],[110.66597,72.78785],[110.66253,72.77911],[110.66871,72.7724],[110.68794,72.76854],[110.6591,72.75755],[110.67764,72.74717],[110.6948,72.72618],[110.70854,72.72026],[110.7003,72.70782],[110.72364,72.68413],[110.7209,72.6739],[110.74424,72.65958],[110.80055,72.64075],[110.88638,72.63009],[110.88432,72.61922],[110.85823,72.60691],[110.86235,72.59747],[110.88981,72.59315],[110.85823,72.57939],[110.89393,72.56828],[110.94474,72.57897],[110.98526,72.5691],[111.02989,72.56458],[111.11709,72.5617],[111.16104,72.55676],[111.2146,72.5407],[111.24206,72.52544],[111.28601,72.50997],[111.28463,72.48974],[111.23107,72.47899],[111.19125,72.46638],[111.15211,72.45934],[111.10061,72.44817],[111.04499,72.44547],[110.9983,72.44029],[110.99693,72.42952],[111.03881,72.4233],[111.05667,72.4094],[111.01753,72.39445],[111.01684,72.38511],[111.04568,72.36972],[111.07315,72.36265],[111.11434,72.36473],[111.28601,72.32933],[111.3018,72.32037],[111.31073,72.31057],[111.34368,72.31516],[111.38832,72.3162],[111.41853,72.31724],[111.46797,72.3235],[111.50779,72.32287],[111.5483,72.32516],[111.60461,72.30681],[111.61285,72.29658],[111.63414,72.29282],[111.64856,72.27694],[111.65679,72.25938],[111.61216,72.24368],[111.58538,72.2309],[111.58195,72.21497],[111.60736,72.20846],[111.64856,72.22042],[111.68357,72.21958],[111.70143,72.1965],[111.68838,72.1757],[111.71447,72.16225],[111.74194,72.1633],[111.77833,72.15804],[111.80923,72.14583],[111.90124,72.13004],[111.93901,72.1332],[111.97814,72.12161],[111.99531,72.10853],[111.98982,72.07454],[112.00424,72.00191],[112.0008,71.41011],[112.02758,71.39763],[112.12646,71.38514],[112.17178,71.38316],[112.20336,71.37922],[112.24731,71.36825],[112.30773,71.35113],[112.33795,71.33883],[112.34756,71.32455],[112.36953,71.31597],[112.4073,71.30827],[112.43202,71.30013],[112.46841,71.27744],[112.49244,71.27435],[112.56935,71.29022],[112.60231,71.29132],[112.62702,71.28713],[112.64625,71.27413],[112.67921,71.26443],[112.70668,71.25914],[112.71766,71.24943],[112.71148,71.23574],[112.6799,71.207],[112.65655,71.19505],[112.60574,71.18864],[112.5563,71.18022],[112.51853,71.17113],[112.51442,71.16182],[112.57621,71.11943],[112.58514,71.10521],[112.5769,71.09609],[112.51991,71.09787],[112.47802,71.07361],[112.38395,71.06915],[112.29812,71.05444],[112.28096,71.04396],[112.24319,71.00377],[112.22259,71.00064],[112.19581,71.00578],[112.16079,71.02075],[112.14363,71.0395],[112.11959,71.05155],[112.0832,71.05511],[112.04063,71.04887],[112.01728,71.04374],[111.99737,71.02075],[112.0008,71.00377],[111.98707,70.99438],[111.93557,70.97783],[111.89781,70.97514],[111.86759,70.97626],[111.83807,70.96999],[111.81472,70.96283],[111.78657,70.96081],[111.73645,70.9682],[111.71173,70.96574],[111.6513,70.94759],[111.63345,70.93952],[111.58744,70.94064],[111.53457,70.93616],[111.48307,70.92629],[111.45561,70.91551],[111.44462,70.8962],[111.42128,70.88226],[111.34231,70.86133],[111.2812,70.85841],[111.19125,70.85976],[111.04705,70.83768],[110.90011,70.80114],[110.87814,70.79052],[110.84449,70.78306],[110.80741,70.78645],[110.78819,70.79255],[110.75935,70.79617],[110.70236,70.78849],[110.64949,70.78419],[110.61721,70.78352],[110.58013,70.77379],[110.54718,70.76905],[110.51902,70.76158],[110.50735,70.72852],[110.49774,70.71605],[110.44967,70.70358],[110.35011,70.69314],[110.31578,70.6711],[110.2684,70.66656],[110.22308,70.66019],[110.19081,70.65223],[110.17982,70.64085],[110.12558,70.63516],[110.12695,70.624],[110.13931,70.61079],[110.12352,70.58615],[110.12077,70.57063],[110.16128,70.54457],[110.13725,70.53839],[110.0988,70.53267],[110.09742,70.52123],[110.11528,70.50313],[110.11734,70.48594],[110.13038,70.47332],[110.15785,70.46414],[110.19424,70.45633],[110.22033,70.44553],[110.2526,70.44139],[110.29998,70.43978],[110.31028,70.43035],[110.30548,70.41747],[110.2938,70.40504],[110.20042,70.40596],[110.16677,70.40988],[110.08506,70.39721],[110.05073,70.40112],[110.02464,70.40849],[109.96009,70.39329],[109.8619,70.39099],[109.8207,70.38269],[109.78843,70.38269],[109.76646,70.37969],[109.74174,70.37139],[109.63874,70.3767],[109.56459,70.35455],[109.59823,70.33122],[109.6202,70.31133],[109.6202,70.28402],[109.59205,70.26177],[109.53506,70.24251],[109.46159,70.22626],[109.41833,70.21812],[109.35447,70.21998],[109.30023,70.20929],[109.29611,70.19557],[109.29817,70.16577],[109.30366,70.15155],[109.33319,70.13943],[109.36065,70.12239],[109.3634,70.10324],[109.35653,70.09155],[109.38194,70.07307],[109.42726,70.04567],[109.44717,70.03864],[109.50485,70.037],[109.53231,70.03301],[109.54467,70.01941],[109.54399,70.00721],[109.52682,69.99946],[109.42451,69.9722],[109.40391,69.96373],[109.39979,69.93783],[109.3943,69.92794],[109.37645,69.91615],[109.37027,69.90294],[109.39155,69.8928],[109.3888,69.87201],[109.37027,69.82683],[109.34143,69.82091],[109.32769,69.78891],[109.31465,69.77705],[109.28512,69.76898],[109.21371,69.75449],[109.13612,69.76874],[109.08943,69.76636],[109.05235,69.76803],[108.96995,69.7685],[108.95278,69.77301],[108.94592,69.78132],[108.91777,69.79579],[108.92532,69.81783],[108.89579,69.83843],[108.71315,69.82352],[108.64723,69.83512],[108.61427,69.82897],[108.57238,69.82991],[108.5202,69.83891],[108.4996,69.8453],[108.44741,69.84127],[108.38218,69.85026],[108.35334,69.85121],[108.25309,69.84908],[108.23112,69.83086],[108.15971,69.81167],[108.1398,69.79389],[108.05465,69.79627],[108.03817,69.79105],[108.04435,69.77776],[108.05946,69.76898],[108.03543,69.75401],[108.02856,69.73642],[108.01414,69.72358],[108.00041,69.71572],[107.97775,69.68618],[107.95028,69.66997],[107.92419,69.66806],[107.85003,69.67951],[107.79647,69.67927],[107.71614,69.66997],[107.63374,69.66352],[107.57331,69.65374],[107.48542,69.63129],[107.23548,69.58679],[107.173,69.57888],[107.12081,69.56498],[107.06657,69.55371],[106.99173,69.54699],[106.8386,69.51962],[106.78367,69.52779],[106.73973,69.53067],[106.69441,69.52395],[106.66076,69.52227],[106.63673,69.53019],[106.61476,69.55803],[106.58935,69.56354],[106.55571,69.56522],[106.48567,69.57649],[106.44996,69.57193],[106.44172,69.55899],[106.41838,69.54195],[106.3504,69.51217],[106.36001,69.49823],[106.35589,69.48548],[106.32568,69.46887],[106.29478,69.46116],[106.268,69.44863],[106.22062,69.44285],[106.18492,69.43006],[106.15058,69.40979],[106.63192,69.05825],[106.9004,68.85732],[106.90727,68.17844],[106.90521,68.0574],[106.90177,68.03994],[106.86676,68.00011],[106.87019,67.67373],[106.81732,67.3425],[106.77955,67.31339],[106.74316,67.29776],[106.72393,67.27947],[106.71775,67.26249],[106.70196,67.25346],[106.67861,67.2524],[106.60858,67.26063],[106.58454,67.26541],[106.5715,67.28954],[106.51245,67.27973],[106.44447,67.26169],[106.40876,67.2431],[106.38473,67.22211],[106.3607,67.20562],[106.33117,67.20163],[106.2989,67.20057],[106.23779,67.17501],[106.1547,67.17261],[106.07986,67.16222],[106.0675,67.13022],[106.00639,67.07786],[105.94596,67.0345],[105.76675,67.02807],[105.71525,67.01895],[105.62118,67.02405],[105.57861,67.01922],[105.5381,67.02083],[105.52917,67.01547],[105.54702,66.99938],[105.54702,66.98435],[105.56282,66.97307],[105.69534,66.92467],[105.84091,66.94351],[105.84091,66.92037],[105.93772,66.90825],[105.97412,66.90071],[105.99678,66.88966],[106.05239,66.89667],[106.08055,66.8929],[106.09909,66.87942],[106.09497,66.86189],[105.98854,66.79921],[106.01326,66.79082],[106.05102,66.78622],[106.07437,66.78649],[106.13136,66.79894],[106.1602,66.80083],[106.19247,66.79569],[106.18492,66.78297],[106.1547,66.76862],[106.14715,66.75372],[106.15882,66.71711],[106.18629,66.70381],[106.23779,66.69349],[106.24191,66.68153],[106.21788,66.66114],[106.23504,66.6034],[106.23436,66.58922],[106.22612,66.56984],[106.26251,66.56137],[106.29959,66.54443],[106.30851,66.53377],[106.32362,66.50532],[106.32568,66.49272],[106.32499,66.48122],[106.30714,66.46559],[106.28654,66.45984],[106.26594,66.44804],[106.25839,66.44694],[106.23779,66.43404],[106.19316,66.42965],[106.17874,66.41592],[106.14303,66.40987],[106.14303,66.39118],[106.10664,66.37027],[106.10664,66.36642],[106.11488,66.35899],[106.09497,66.3273],[106.13205,66.3102],[106.119,66.30524],[106.12106,66.29999],[106.11076,66.29502],[106.12106,66.29006],[106.12175,66.28508],[106.11488,66.27486],[106.12724,66.26436],[106.12381,66.25884],[106.11763,66.25635],[106.1396,66.24861],[106.12518,66.24307],[106.10389,66.20293],[106.1087,66.19434],[106.14303,66.17521],[106.1499,66.16717],[106.16157,66.16522],[106.19659,66.1494],[106.21238,66.15218],[106.22406,66.14996],[106.23298,66.15329],[106.25221,66.14912],[106.2577,66.15273],[106.26869,66.15079],[106.27624,66.15468],[106.29615,66.15246],[106.31607,66.15607],[106.32843,66.15412],[106.33255,66.1469],[106.33873,66.13996],[106.36138,66.13163],[106.35589,66.1269],[106.36207,66.12051],[106.35383,66.113],[106.3758,66.10438],[106.37512,66.09771],[106.41769,66.08157],[106.40602,66.0643],[106.43898,66.06012],[106.44241,66.05148],[106.46095,66.04145],[106.45889,66.03392],[106.47949,66.02778],[106.47743,66.01913],[106.50833,65.99903],[106.50558,65.99009],[106.48361,65.97919],[106.48979,65.97416],[106.48292,65.96885],[106.49116,65.96102],[106.48429,65.93807],[106.4685,65.92603],[106.47674,65.90333],[106.48498,65.90109],[106.49116,65.88538],[106.47262,65.87977],[106.48498,65.85787],[106.47262,65.84046],[106.45065,65.82303],[106.48086,65.80333],[106.47743,65.7977],[106.45271,65.79433],[106.43005,65.77292],[106.45271,65.75093],[106.45065,65.74868],[106.43623,65.74304],[106.45546,65.73627],[106.44035,65.72554],[106.44928,65.71764],[106.43966,65.71425],[106.41357,65.71368],[106.42044,65.70888],[106.39915,65.70125],[106.4225,65.69362],[106.42456,65.68854],[106.41014,65.67213],[106.417,65.66704],[106.43966,65.66817],[106.44241,65.66167],[106.45202,65.65827],[106.46575,65.66506],[106.48429,65.66138],[106.5097,65.64836],[106.54678,65.64412],[106.55571,65.63732],[106.58935,65.63902],[106.59828,65.63647],[106.58523,65.62995],[106.6278,65.62769],[106.64085,65.62258],[106.64154,65.62088],[106.63055,65.61692],[106.61544,65.61805],[106.6127,65.61096],[106.65252,65.61011],[106.66763,65.6016],[106.69235,65.60557],[106.69509,65.59735],[106.71638,65.59196],[106.71432,65.58344],[106.69647,65.56016],[106.69578,65.55306],[106.70265,65.54368],[106.75621,65.53515],[106.78916,65.52576],[106.83036,65.52491],[106.87294,65.51779],[106.921,65.51381],[106.95602,65.50442],[106.92031,65.47536],[106.89147,65.46025],[106.84341,65.40115],[106.8235,65.38943],[106.80015,65.38028],[106.77681,65.38686],[106.66969,65.39486],[106.61476,65.39601],[106.60652,65.39086],[106.56738,65.38743],[106.5406,65.37999],[106.51382,65.34507],[106.48223,65.33103],[106.43554,65.321],[106.43005,65.25383],[106.43829,65.24233],[106.47399,65.23629],[106.50833,65.22708],[106.51725,65.21816],[106.48223,65.21615],[106.43348,65.22795],[106.41563,65.22795],[106.37237,65.20895],[106.34971,65.19225],[106.31538,65.15996],[106.3092,65.14813],[106.29684,65.14438],[106.27075,65.14294],[106.1959,65.13601],[106.1444,65.09006],[106.09909,65.07473],[106.01257,65.06402],[105.95832,65.04259],[105.96244,65.02201],[106.00296,64.99852],[106.03591,64.99155],[106.06475,64.98865],[106.06475,64.9625],[106.0881,64.94768],[106.12175,64.90985],[106.20414,64.87839],[106.20552,64.8711],[106.16912,64.86935],[106.1087,64.87489],[106.06063,64.87227],[106.05445,64.87839],[106.05857,64.88247],[106.04484,64.88568],[106.03729,64.91597],[106.016,64.92004],[105.9336,64.90753],[105.9336,64.85098],[105.95352,64.84689],[105.9748,64.84018],[105.97412,64.82879],[105.95626,64.82908],[105.91301,64.8393],[105.89721,64.83901],[105.87318,64.83667],[105.85601,64.83229],[105.85739,64.81038],[105.82511,64.7788],[105.85464,64.68442],[105.8361,64.6765],[105.81138,64.67444],[105.77705,64.67943],[105.72349,64.69294],[105.69191,64.68942],[105.67886,64.68442],[105.69671,64.67062],[105.70152,64.66063],[105.73654,64.64858],[105.74752,64.64005],[105.70976,64.60179],[105.71662,64.58883],[105.72898,64.58412],[105.74821,64.58323],[105.7743,64.55434],[105.78666,64.54578],[105.77911,64.53161],[105.74615,64.51152],[105.77293,64.49261],[105.84365,64.50502],[105.88073,64.50207],[105.89721,64.49349],[105.9906,64.53574],[106.00982,64.53958],[106.06819,64.52039],[106.06819,64.50768],[106.10458,64.49823],[106.12312,64.48847],[106.11763,64.47042],[106.09771,64.45858],[106.08055,64.45236],[106.07643,64.4417],[106.09565,64.4337],[106.11007,64.42363],[106.19659,64.42066],[106.2474,64.44615],[106.29684,64.43755],[106.34559,64.45384],[106.50489,64.46095],[106.57562,64.47013],[106.5715,64.49675],[106.55021,64.52364],[106.55296,64.53515],[106.57012,64.53958],[106.65252,64.52984],[106.67244,64.49024],[106.69715,64.48403],[106.73286,64.42629],[106.82212,64.41918],[106.86058,64.43489],[106.89079,64.43992],[106.90864,64.43815],[106.94297,64.42214],[106.97593,64.39812],[107.01164,64.39545],[107.10022,64.3616],[107.12631,64.35566],[107.27119,64.34377],[107.25608,64.31789],[107.28424,64.28931],[107.30621,64.2765],[107.33505,64.26964],[107.38861,64.27292],[107.44834,64.28127],[107.54859,64.31253],[107.60284,64.31313],[107.69485,64.29795],[107.71408,64.28931],[107.72644,64.26398],[107.80746,64.23594],[107.83355,64.23086],[107.85415,64.23534],[107.86994,64.22907],[107.89466,64.19203],[107.92625,64.20189],[107.94548,64.1992],[107.96676,64.18605],[108.00109,64.18366],[108.05259,64.18993],[108.04916,64.21504],[108.05671,64.23355],[108.10478,64.25861],[108.14529,64.26845],[108.18855,64.28156],[108.23318,64.27173],[108.27369,64.27739],[108.29498,64.27203],[108.32519,64.27054],[108.34785,64.26577],[108.40141,64.28544],[108.40347,64.29646],[108.39729,64.30718],[108.40553,64.31581],[108.42681,64.3173],[108.49479,64.30092],[108.51333,64.28484],[108.52088,64.26487],[108.56414,64.25682],[108.56689,64.24966],[108.52226,64.22847],[108.51676,64.2225],[108.51814,64.21414],[108.5765,64.1995],[108.57994,64.19233],[108.56689,64.17977],[108.54766,64.17379],[108.52569,64.14655],[108.525,64.13876],[108.54766,64.12798],[108.56002,64.12648],[108.60603,64.1046],[108.60328,64.0839],[108.6177,64.07159],[108.66577,64.05177],[108.72345,64.04306],[108.76464,64.00908],[108.75297,64.00065],[108.76808,63.98228],[108.7461,63.9636],[108.75022,63.95245],[108.7413,63.94129],[108.74885,63.92439],[108.74267,63.91715],[108.79211,63.90326],[108.81546,63.87999],[108.8134,63.86971],[108.75846,63.85216],[108.72139,63.83703],[108.67469,63.8231],[108.65615,63.82371],[108.64585,63.84006],[108.62594,63.84581],[108.53324,63.83521],[108.49617,63.83249],[108.43299,63.83673],[108.40896,63.84763],[108.40347,63.85973],[108.3815,63.86064],[108.32862,63.84732],[108.30734,63.83794],[108.2991,63.81583],[108.30665,63.77763],[108.30596,63.72509],[108.29429,63.70593],[108.27507,63.69042],[108.23112,63.67611],[108.17894,63.67337],[108.15147,63.6621],[108.1398,63.62705],[108.14666,63.60996],[108.15696,63.59866],[108.17825,63.60416],[108.23936,63.60508],[108.26683,63.61118],[108.35128,63.6121],[108.39729,63.62277],[108.41789,63.62644],[108.44879,63.63162],[108.47076,63.6301],[108.48449,63.63497],[108.54011,63.6368],[108.57719,63.63314],[108.58543,63.62979],[108.60466,63.6301],[108.62182,63.62735],[108.63693,63.61698],[108.68431,63.6121],[108.70079,63.6182],[108.73374,63.61881],[108.74542,63.61393],[108.76876,63.61087],[108.77838,63.60599],[108.81271,63.6066],[108.81889,63.59866],[108.84498,63.59531],[108.88206,63.58339],[108.90335,63.58889],[108.91433,63.5782],[108.92532,63.58431],[108.94317,63.58401],[108.9672,63.58767],[109.03106,63.58584],[109.05029,63.57942],[109.08531,63.57698],[109.12239,63.56537],[109.14436,63.56139],[109.15054,63.54916],[109.17251,63.54457],[109.19036,63.52988],[109.18556,63.51948],[109.19448,63.51151],[109.19448,63.50079],[109.21714,63.48271],[109.23225,63.48057],[109.23568,63.47198],[109.24461,63.46861],[109.27276,63.46523],[109.26727,63.44406],[109.29267,63.43178],[109.29885,63.41918],[109.31877,63.4158],[109.31877,63.40197],[109.32563,63.39767],[109.31945,63.39428],[109.29473,63.3909],[109.30091,63.3829],[109.29679,63.37983],[109.3016,63.3746],[109.31602,63.37367],[109.32426,63.36875],[109.33662,63.3706],[109.37576,63.37337],[109.38056,63.37921],[109.39567,63.37983],[109.41352,63.37798],[109.42382,63.35243],[109.43138,63.34227],[109.4197,63.33272],[109.41764,63.31792],[109.43344,63.317],[109.42726,63.28707],[109.43275,63.28151],[109.44786,63.28182],[109.46022,63.27503],[109.48082,63.25495],[109.48082,63.24723],[109.48768,63.24321],[109.48356,63.23331],[109.46846,63.23548],[109.45678,63.23084],[109.45541,63.2197],[109.44854,63.20918],[109.45816,63.20237],[109.45266,63.19339],[109.46296,63.17605],[109.49111,63.17233],[109.5021,63.16706],[109.49661,63.16458],[109.47326,63.16613],[109.46708,63.16272],[109.4712,63.15621],[109.50416,63.14319],[109.50897,63.13884],[109.47052,63.12022],[109.47464,63.11463],[109.53025,63.11122],[109.49798,63.10097],[109.50004,63.09444],[109.48837,63.0904],[109.51034,63.08978],[109.50897,63.08263],[109.51927,63.07797],[109.50141,63.0761],[109.49798,63.06709],[109.47807,63.06118],[109.51583,63.05962],[109.51034,63.04157],[109.51583,63.02943],[109.48768,63.03005],[109.4815,63.02382],[109.49455,63.01884],[109.51377,63.01884],[109.53369,63.0232],[109.54193,63.0204],[109.52545,63.00762],[109.53575,63.00232],[109.51789,62.99017],[109.4918,62.98518],[109.48974,62.97363],[109.50347,62.95178],[109.5227,62.9396],[109.53987,62.91961],[109.59343,62.91648],[109.61334,62.9046],[109.62982,62.90335],[109.63462,62.89928],[109.62844,62.88489],[109.63737,62.88082],[109.63806,62.87174],[109.64492,62.87049],[109.6614,62.87268],[109.67102,62.85608],[109.682,62.85263],[109.66758,62.84668],[109.67445,62.84041],[109.6717,62.83602],[109.65934,62.83759],[109.65179,62.8307],[109.63394,62.82881],[109.63119,62.82411],[109.55978,62.80466],[109.52064,62.79995],[109.49935,62.7874],[109.49455,62.76604],[109.4712,62.76258],[109.46708,62.75786],[109.47738,62.72233],[109.47189,62.71666],[109.48356,62.70312],[109.4712,62.6984],[109.46502,62.68013],[109.43138,62.67382],[109.39773,62.67571],[109.384,62.67067],[109.39018,62.65743],[109.38262,62.65144],[109.39224,62.6344],[109.36683,62.61356],[109.34211,62.61103],[109.28649,62.6006],[109.27619,62.60092],[109.25148,62.58828],[109.25834,62.58037],[109.27345,62.57468],[109.27894,62.56551],[109.27551,62.55412],[109.30778,62.53861],[109.30915,62.52625],[109.32083,62.50788],[109.34005,62.49741],[109.39086,62.48853],[109.4197,62.47458],[109.4355,62.46347],[109.44442,62.44092],[109.45747,62.4263],[109.4767,62.42122],[109.50004,62.42567],[109.5227,62.43806],[109.53163,62.45045],[109.54742,62.45489],[109.6463,62.43997],[109.69917,62.43965],[109.80354,62.44219],[109.87976,62.44092],[109.91546,62.43457],[109.93537,62.41263],[109.8983,62.38464],[109.9086,62.37445],[109.92439,62.37286],[109.9443,62.36713],[109.95529,62.35407],[109.94499,62.34482],[109.94361,62.33271],[109.97039,62.33399],[109.98619,62.32761],[109.99305,62.31708],[109.97314,62.28964],[109.95597,62.28613],[109.93125,62.26408],[109.93263,62.25034],[109.95117,62.24299],[109.96353,62.22315],[109.98069,62.21227],[109.98413,62.20459],[110.00198,62.19626],[109.99649,62.16999],[109.97932,62.16518],[109.95941,62.16518],[109.87426,62.11705],[109.88113,62.10677],[109.87701,62.06659],[109.86396,62.05629],[109.82826,62.03891],[109.81521,62.02346],[109.77401,62.03344],[109.76921,62.0299],[109.77813,62.01572],[109.74311,62.00735],[109.72183,61.99606],[109.72389,61.9822],[109.71771,61.9751],[109.69162,61.97026],[109.65934,61.95025],[109.64355,61.93313],[109.60647,61.92667],[109.58793,61.91568],[109.58587,61.89596],[109.61334,61.87492],[109.61677,61.86683],[109.58519,61.85031],[109.58038,61.8393],[109.5948,61.81304],[109.56939,61.80817],[109.57695,61.80006],[109.61471,61.80298],[109.61814,61.79584],[109.59754,61.77084],[109.61128,61.73998],[109.6408,61.73542],[109.66003,61.72632],[109.65866,61.70973],[109.6875,61.70061],[109.70466,61.70387],[109.72663,61.70159],[109.7335,61.6954],[109.72938,61.68889],[109.70192,61.66315],[109.70741,61.65761],[109.75822,61.65631],[109.74655,61.64881],[109.75685,61.64066],[109.78157,61.63185],[109.80835,61.61455],[109.83718,61.58418],[109.85572,61.56784],[109.86877,61.54527],[109.86396,61.52433],[109.81796,61.47485],[109.84199,61.46436],[109.85916,61.45025],[109.82208,61.40197],[109.81727,61.38422],[109.78431,61.35625],[109.76852,61.33584],[109.8159,61.33255],[109.83238,61.32826],[109.84542,61.31937],[109.88388,61.32695],[109.92095,61.3197],[109.95323,61.32003],[109.98001,61.31541],[110.00816,61.31344],[110.02395,61.30487],[110.1139,61.28607],[110.14411,61.22961],[110.18257,61.20845],[110.18394,61.19422],[110.19767,61.18297],[110.2169,61.17337],[110.26084,61.17271],[110.28968,61.17966],[110.34187,61.17337],[110.39405,61.20514],[110.41397,61.21175],[110.48744,61.19257],[110.50735,61.18992],[110.54718,61.1694],[110.54992,61.15549],[110.53344,61.1376],[110.55336,61.11671],[110.54786,61.09514],[110.5101,61.07057],[110.4998,61.05429],[110.49842,61.03235],[110.47508,60.99309],[110.45791,60.98343],[110.42839,60.97843],[110.42427,60.95944],[110.39131,60.94677],[110.35972,60.92943],[110.33157,60.89337],[110.30342,60.876],[110.26565,60.84491],[110.26016,60.8342],[110.2993,60.79569],[110.29792,60.78028],[110.29243,60.75681],[110.30273,60.71687],[110.28488,60.69906],[110.26496,60.68999],[110.24231,60.6873],[110.17845,60.69738],[110.15098,60.69604],[110.1139,60.70141],[110.08712,60.69839],[110.06721,60.68999],[110.06652,60.6836],[110.09399,60.67855],[110.10772,60.67284],[110.09948,60.66477],[110.1091,60.6577],[110.12695,60.65333],[110.13862,60.64424],[110.13519,60.5846],[110.12695,60.57651],[110.10154,60.55997],[110.08232,60.59337],[110.05142,60.58932],[110.0473,60.56537],[110.037,60.55052],[110.00129,60.52621],[109.96147,60.50627],[109.91478,60.46601],[109.95803,60.43588],[109.93743,60.40062],[109.89349,60.38875],[109.87907,60.39418],[109.85572,60.39146],[109.8516,60.38163],[109.88044,60.35786],[109.82551,60.3385],[109.80148,60.33476],[109.8056,60.31946],[109.82276,60.30756],[109.82482,60.29259],[109.79461,60.25378],[109.74998,60.25139],[109.73419,60.23844],[109.74105,60.22685],[109.73007,60.21799],[109.71565,60.21116],[109.71221,60.19991],[109.72389,60.18523],[109.6978,60.16098],[109.70466,60.1309],[109.71633,60.12577],[109.7129,60.11106],[109.69505,60.09326],[109.69917,60.08299],[109.7129,60.07306],[109.71496,60.06072],[109.75341,60.05284],[109.76097,60.04564],[109.75685,60.03021],[109.71427,60.00207],[109.68338,59.98593],[109.67308,59.94607],[109.63325,59.93816],[109.63188,59.92818],[109.64355,59.90891],[109.66758,59.89272],[109.66415,59.87791],[109.65042,59.86653],[109.63119,59.85895],[109.59892,59.85585],[109.57283,59.84964],[109.56321,59.82721],[109.51377,59.79821],[109.48356,59.76988],[109.4918,59.70239],[109.50553,59.69131],[109.52201,59.692],[109.54399,59.68056],[109.54399,59.66843],[109.47464,59.62402],[109.42314,59.59136],[109.39361,59.56007],[109.34074,59.54719],[109.33525,59.53397],[109.33799,59.51969],[109.33113,59.50924],[109.30366,59.50262],[109.26521,59.47647],[109.2659,59.46496],[109.30984,59.44507],[109.34898,59.44542],[109.35791,59.43844],[109.35516,59.42517],[109.34211,59.41574],[109.31465,59.41015],[109.27963,59.38847],[109.25285,59.39197],[109.24324,59.38673],[109.2453,59.38043],[109.25903,59.37204],[109.27345,59.35489],[109.26384,59.33003],[109.29611,59.31812],[109.37782,59.31287],[109.39155,59.30621],[109.41352,59.30901],[109.50073,59.30831],[109.48768,59.28973],[109.48768,59.25956],[109.52476,59.25043],[109.53163,59.24306],[109.52888,59.22866],[109.51034,59.20547],[109.51171,59.19457],[109.57283,59.19597],[109.57969,59.18261],[109.59274,59.17381],[109.61883,59.17276],[109.63325,59.15093],[109.636,59.13086],[109.61334,59.11042],[109.61677,59.09455],[109.6305,59.07903],[109.64904,59.06739],[109.6875,59.09244],[109.71153,59.09773],[109.73762,59.08291],[109.74311,59.06844],[109.76989,59.03525],[109.82482,58.99531],[109.84611,58.99884],[109.87632,59.01617],[109.96215,59.02642],[109.98207,59.02465],[110.01777,59.00945],[110.07476,59.00698],[110.11116,58.99601],[110.14137,58.9992],[110.17776,58.98859],[110.23887,59.0045],[110.26908,59.00167],[110.30273,59.00556],[110.33432,59.03808],[110.41534,59.05891],[110.49018,59.05291],[110.52108,59.07727],[110.54992,59.09103],[110.5767,59.09561],[110.58494,59.11641],[110.57533,59.12804],[110.60142,59.14495],[110.59455,59.15657],[110.57533,59.17205],[110.54855,59.18261],[110.55404,59.19281],[110.57807,59.19632],[110.587,59.21074],[110.62271,59.21917],[110.64331,59.23042],[110.64056,59.24201],[110.64193,59.25254],[110.65841,59.26377],[110.7257,59.27956],[110.77034,59.27781],[110.79505,59.27219],[110.84243,59.2757],[110.85548,59.27009],[110.86647,59.26166],[110.88363,59.26131],[110.96466,59.24727],[110.99693,59.2255],[111.01203,59.22374],[111.04774,59.22585],[111.06628,59.23112],[111.07933,59.26026],[111.09718,59.25956],[111.10954,59.24762],[111.12258,59.21988],[111.13494,59.21109],[111.16516,59.2125],[111.18919,59.21109],[111.20567,59.20582],[111.22558,59.20968],[111.24206,59.23077],[111.25648,59.24411],[111.28601,59.24797],[111.28601,59.26868],[111.30043,59.28061],[111.38626,59.29218],[111.41166,59.29078],[111.44187,59.29569],[111.46659,59.29324],[111.50848,59.2736],[111.51054,59.26307],[111.52496,59.25254],[111.55448,59.24201],[111.6616,59.23112],[111.76254,59.28868],[111.79275,59.29604],[111.84768,59.29569],[111.8827,59.30516],[111.91223,59.3041],[111.92871,59.29008],[111.95068,59.28798],[111.95755,59.29289],[111.96991,59.32373],[111.97265,59.34964],[112.08389,59.40281],[112.10929,59.44053],[112.14363,59.46705],[112.1965,59.4953],[112.21298,59.51481],[112.23564,59.52735],[112.27752,59.53397],[112.2995,59.52909],[112.29606,59.48763],[112.31185,59.47229],[112.31735,59.45798],[112.33932,59.43285],[112.33245,59.41853],[112.29469,59.38533],[112.31666,59.36539],[112.32147,59.35174],[112.31803,59.33879],[112.28576,59.31111],[112.29469,59.30831],[112.31117,59.30936],[112.33383,59.31672],[112.37022,59.31777],[112.42034,59.33529],[112.49107,59.34649],[112.55836,59.34579],[112.5769,59.33774],[112.58445,59.32443],[112.60093,59.32163],[112.65174,59.32793],[112.65998,59.31602],[112.6538,59.275],[112.64419,59.26623],[112.60231,59.26517],[112.56111,59.25816],[112.53501,59.24868],[112.49794,59.22479],[112.46841,59.18718],[112.46978,59.16642],[112.45056,59.1453],[112.47802,59.09561],[112.47116,59.08291],[112.44438,59.06386],[112.4485,59.04867],[112.45811,59.03808],[112.45605,59.0303],[112.44232,59.019],[112.4588,58.99566],[112.44781,58.96417],[112.45536,58.92024],[112.47459,58.90003],[112.49931,58.89436],[112.51922,58.89436],[112.53776,58.90287],[112.57896,58.9493],[112.59544,58.95284],[112.58239,58.96629],[112.61467,58.98151],[112.546,59.01723],[112.49244,59.06033],[112.50274,59.0755],[112.58308,59.11535],[112.60986,59.1143],[112.61947,59.1076],[112.62291,59.0949],[112.60849,59.08044],[112.60162,59.06915],[112.61329,59.05644],[112.65106,59.05256],[112.73345,59.05856],[112.75955,59.06456],[112.76367,59.07268],[112.75886,59.08679],[112.76367,59.10443],[112.78633,59.12029],[112.83714,59.13192],[112.88452,59.13368],[112.89825,59.14847],[112.96073,59.16713],[112.98065,59.14741],[113.00056,59.14636],[113.0294,59.15093],[113.04245,59.15727],[113.07678,59.16396],[113.11798,59.16079],[113.16604,59.17944],[113.19076,59.18824],[113.21891,59.18788],[113.25393,59.16713],[113.27316,59.16079],[113.29376,59.16677],[113.3123,59.17909],[113.34251,59.20757],[113.34457,59.22444],[113.38371,59.23323],[113.40568,59.24797],[113.43315,59.25921],[113.44757,59.27921],[113.4716,59.28201],[113.48465,59.29814],[113.48259,59.31882],[113.5231,59.34684],[113.5279,59.35979],[113.5128,59.37029],[113.47709,59.37763],[113.44207,59.38882],[113.43315,59.40141],[113.43864,59.41329],[113.46817,59.43145],[113.47366,59.44018],[113.54095,59.4817],[113.5952,59.50784],[113.61854,59.52526],[113.61579,59.54789],[113.62472,59.56459],[113.59726,59.59484],[113.60893,59.60804],[113.73115,59.63061],[113.77166,59.62679],[113.87191,59.66878],[113.8829,59.68126],[113.90556,59.68784],[113.93852,59.68611],[113.97697,59.69443],[113.99414,59.72629],[113.98727,59.73633],[114.001,59.74671],[114.04426,59.74325],[114.06692,59.75674],[114.10331,59.76089],[114.13147,59.75604],[114.16511,59.75639],[114.22142,59.78474],[114.23378,59.83377],[114.25231,59.8455],[114.29626,59.86378],[114.3045,59.88962],[114.3251,59.91063],[114.38209,59.92164],[114.402,59.93816],[114.45282,59.95226],[114.49333,59.97116],[114.57641,59.9952],[114.56405,60.01923],[114.52217,60.02575],[114.50637,60.03776],[114.49539,60.06004],[114.50843,60.07032],[114.54071,60.08162],[114.54963,60.09121],[114.56474,60.1268],[114.57916,60.13569],[114.65194,60.15517],[114.67735,60.1842],[114.70619,60.19308],[114.77691,60.20605],[114.82498,60.20434],[114.84214,60.19479],[114.87716,60.19786],[114.89296,60.19581],[114.95613,60.20707],[114.99733,60.22276],[115.04127,60.26706],[115.06805,60.28715],[115.08247,60.31334],[115.11131,60.32728],[115.13053,60.36363],[115.11543,60.39893],[115.1017,60.41046],[115.10376,60.42097],[115.11405,60.43012],[115.15525,60.44909],[115.1786,60.45315],[115.22529,60.46838],[115.22529,60.49274],[115.31387,60.51539],[115.35026,60.50052],[115.37635,60.49917],[115.41,60.50289],[115.45806,60.51607],[115.50201,60.51607],[115.53222,60.52046],[115.57067,60.53431],[115.60501,60.53803],[115.63522,60.53803],[115.66406,60.54174],[115.6826,60.5485],[115.72998,60.54951],[115.7444,60.55322],[115.75744,60.54884],[115.76156,60.54141],[115.76431,60.5333],[115.77598,60.53026],[115.79177,60.53195],[115.81924,60.5279],[115.86799,60.52621],[115.87554,60.52114],[115.86593,60.50728],[115.8934,60.4968],[115.90919,60.48835],[115.93048,60.46365],[115.94833,60.46195],[115.97854,60.46771],[116.00051,60.46906],[116.01905,60.46297],[116.09184,60.4545],[116.1557,60.43723],[116.16668,60.43215],[116.17149,60.41995],[116.18316,60.40571],[116.20101,60.40401],[116.28273,60.41317],[116.31774,60.3952],[116.32461,60.38298],[116.33697,60.37823],[116.37405,60.37993],[116.45782,60.39384],[116.53747,60.39282],[116.59034,60.38536],[116.60545,60.37755],[116.6233,60.35141],[116.62468,60.3317],[116.62056,60.31742],[116.61987,60.30688],[116.62399,60.29566],[116.64115,60.29191],[116.72699,60.28885],[116.75651,60.28204],[116.76887,60.27251],[116.7723,60.25787],[116.78741,60.24764],[116.80114,60.24799],[116.81762,60.24321],[116.84989,60.22071],[116.88423,60.21185],[116.92886,60.20673],[116.93641,60.19752],[116.9268,60.18284],[116.93023,60.16303],[116.94534,60.15415],[116.97349,60.14526],[116.99546,60.13329],[117.00988,60.10045],[117.014,60.08299],[117.00439,60.06312],[117.08267,60.03295],[117.12867,60.0357],[117.16301,60.04221],[117.18017,60.05113],[117.25639,60.05593],[117.29141,60.0525],[117.33879,60.02541],[117.3381,60.01649],[117.3175,60.00756],[117.28385,59.99967],[117.22137,59.98902],[117.1891,59.97803],[117.15202,59.97494],[117.117,59.97872],[117.08473,59.97872],[117.06001,59.96566],[117.05314,59.95363],[117.02705,59.94297],[117.01538,59.92887],[117.01881,59.91373],[117.07511,59.88928],[117.12524,59.8717],[117.16575,59.87101],[117.21794,59.87343],[117.22549,59.86895],[117.22343,59.81513],[117.21656,59.7989],[117.22343,59.75466],[117.21656,59.73771],[117.19047,59.7294],[117.1891,59.71313],[117.19528,59.68334],[117.17811,59.66774],[117.15545,59.65733],[117.15202,59.64311],[117.15683,59.63026],[117.13623,59.62297],[117.12043,59.61394],[117.1273,59.6063],[117.17399,59.5924],[117.1994,59.5778],[117.21931,59.55659],[117.22068,59.54615],[117.24678,59.51899],[117.27562,59.53222],[117.29896,59.53153],[117.33947,59.5169],[117.46032,59.53014],[117.48642,59.50227],[117.55439,59.4817],[117.57431,59.48066],[117.58529,59.48101],[117.59559,59.48798],[117.59216,59.49704],[117.58255,59.50889],[117.58186,59.51621],[117.62992,59.52805],[117.64846,59.53954],[117.69928,59.55763],[117.76313,59.56737],[117.77824,59.56563],[117.78373,59.54267],[117.81326,59.46008],[117.82562,59.4531],[117.84141,59.45519],[117.86544,59.46357],[117.88467,59.45973],[117.8936,59.45205],[117.91008,59.451],[117.919,59.45624],[117.91969,59.4681],[117.93067,59.48066],[117.95814,59.49983],[117.95608,59.51516],[117.94647,59.53048],[117.94509,59.54371],[117.95608,59.5538],[118.00689,59.56876],[118.01925,59.57572],[118.02543,59.5858],[118.03299,59.62645],[118.04466,59.6379],[118.0577,59.63686],[118.07075,59.63096],[118.08792,59.62818],[118.13598,59.6386],[118.19847,59.63755],[118.24653,59.64241],[118.26576,59.63894],[118.28498,59.63235],[118.33442,59.62853],[118.34541,59.61707],[118.35159,59.60665],[118.36944,59.56528],[118.37425,59.51481],[118.39416,59.51377],[118.42163,59.50471],[118.44085,59.50506],[118.45459,59.50122],[118.47656,59.50192],[118.49029,59.4953],[118.51295,59.48937],[118.54316,59.47159],[118.56445,59.46426],[118.57887,59.44926],[118.58436,59.44751],[118.58917,59.45589],[118.59947,59.45624],[118.60839,59.44891],[118.6235,59.44751],[118.65165,59.43809],[118.68187,59.43809],[118.69216,59.4353],[118.7107,59.44158],[118.73954,59.44053],[118.75534,59.42447],[118.76014,59.39547],[118.74847,59.35489],[118.77388,59.34299],[118.82469,59.32793],[118.83224,59.31812],[118.8034,59.30305],[118.81095,59.28798],[118.81027,59.27535],[118.79791,59.26903],[118.76495,59.26658],[118.71757,59.22444],[118.68873,59.20476],[118.67912,59.1921],[118.6956,59.16572],[118.69148,59.14847],[118.70727,59.13297],[118.71688,59.11253],[118.71414,59.09138],[118.70315,59.07515],[118.70796,59.06209],[118.7368,59.05362],[118.80546,59.05185],[118.82812,59.03843],[118.83567,59.02889],[118.83979,59.01228],[118.86383,58.98116],[118.86589,58.9624],[118.86245,58.95461],[118.84735,58.94894],[118.82881,58.94823],[118.80821,58.95177],[118.80134,58.95744],[118.7883,58.95921],[118.76495,58.95496],[118.73886,58.94363],[118.73474,58.93654],[118.74023,58.9291],[118.7416,58.91811],[118.7368,58.91244],[118.74572,58.89968],[118.77456,58.88939],[118.77731,58.88513],[118.79722,58.87484],[118.80889,58.87484],[118.81645,58.86952],[118.82057,58.8578],[118.83636,58.83577],[118.83979,58.81623],[118.83361,58.78599],[118.82606,58.77603],[118.83773,58.75894],[118.8446,58.73222],[118.81851,58.69585],[118.81713,58.68015],[118.81027,58.66301],[118.77319,58.63979],[118.7677,58.62978],[118.78074,58.61584],[118.79791,58.60583],[118.86863,58.60261],[118.87344,58.59509],[118.86863,58.58221],[118.88237,58.5729],[118.90708,58.56574],[118.94348,58.57541],[118.96133,58.57433],[118.97781,58.56395],[118.99841,58.55894],[119.00665,58.54461],[119.01008,58.53171],[119.04647,58.53063],[119.10827,58.51701],[119.12544,58.50087],[119.12681,58.4822],[119.12132,58.4621],[119.08218,58.39739],[119.06158,58.37831],[119.06433,58.36643],[119.08905,58.33545],[119.10827,58.32643],[119.1172,58.30948],[119.13093,58.2965],[119.12338,58.25208],[119.11377,58.23691],[119.13505,58.21557],[119.15222,58.19097],[119.1584,58.17432],[119.18792,58.15838],[119.16526,58.14969],[119.15565,58.14172],[119.1584,58.12033],[119.15428,58.10691],[119.14466,58.09167],[119.17488,58.05608],[119.18312,58.03937],[119.15771,58.02046],[119.13917,57.98553],[119.13162,57.9757],[119.11308,57.96696],[119.10621,57.90499],[119.10965,57.87726],[119.09454,57.85352],[119.09729,57.82318],[119.07806,57.79831],[119.07875,57.78842],[119.04991,57.76865],[119.05952,57.73715],[119.07119,57.72945],[119.09111,57.72761],[119.10621,57.73201],[119.14123,57.72358],[119.179,57.72138],[119.16664,57.66597],[119.14398,57.65311],[119.16801,57.62812],[119.17625,57.59023],[119.17213,57.58066],[119.15428,57.57036],[119.13574,57.55562],[119.16664,57.53167],[119.2099,57.50623],[119.23736,57.52651],[119.26689,57.5652],[119.27513,57.58876],[119.28886,57.60275],[119.33349,57.61488],[119.3692,57.61378],[119.42207,57.62261],[119.46601,57.60422],[119.50653,57.5987],[119.50584,57.58471],[119.49005,57.56336],[119.47769,57.54568],[119.47357,57.53241],[119.42207,57.52135],[119.40559,57.50844],[119.4001,57.49405],[119.41246,57.47338],[119.42276,57.46231],[119.40216,57.43571],[119.41864,57.41833],[119.42894,57.40391],[119.431,57.39096],[119.4667,57.37541],[119.50241,57.36875],[119.52987,57.35986],[119.59236,57.29982],[119.58892,57.28683],[119.59854,57.2783],[119.59236,57.25119],[119.62051,57.22481],[119.66377,57.19171],[119.67544,57.17422],[119.65621,57.16491],[119.6466,57.17013],[119.63287,57.16566],[119.61845,57.15374],[119.60197,57.15002],[119.59785,57.13996],[119.58549,57.13437],[119.57794,57.11611],[119.57107,57.11126],[119.56489,57.09784],[119.56077,57.09709],[119.56008,57.08441],[119.55528,57.07694],[119.55871,57.06985],[119.56558,57.06761],[119.57244,57.05791],[119.57038,57.05081],[119.5745,57.04595],[119.57107,57.03811],[119.59854,57.02354],[119.61776,57.00746],[119.64866,56.99437],[119.66445,56.99101],[119.72763,56.9925],[119.76814,56.98802],[119.7853,56.97118],[119.79629,56.93411],[119.81758,56.91087],[119.82719,56.90712],[119.86427,56.90187],[119.85466,56.89812],[119.82856,56.89325],[119.81758,56.87074],[119.7647,56.84747],[119.73587,56.84033],[119.70565,56.83845],[119.69192,56.83169],[119.68231,56.80802],[119.68849,56.80012],[119.66789,56.75874],[119.69261,56.73276],[119.71733,56.72862],[119.77912,56.73012],[119.79492,56.68942],[119.82925,56.68904],[119.8574,56.69319],[119.87594,56.68603],[119.87319,56.6732],[119.81964,56.64263],[119.80453,56.62375],[119.80796,56.59881],[119.81689,56.57537],[119.83337,56.56175],[119.88075,56.55077],[119.91577,56.55342],[119.91851,56.52882],[119.94323,56.50078],[119.9604,56.4932],[119.98443,56.49131],[120.0016,56.49472],[120.02014,56.49699],[120.05928,56.50381],[120.08262,56.50306],[120.09979,56.49737],[120.11077,56.48903],[120.14099,56.48789],[120.15472,56.49358],[120.17463,56.47007],[120.22338,56.4659],[120.23025,56.48562],[120.24398,56.48562],[120.26321,56.4769],[120.27488,56.46666],[120.25154,56.44997],[120.2584,56.43972],[120.23574,56.42719],[120.23574,56.41238],[120.24055,56.4063],[120.26664,56.4006],[120.31539,56.37665],[120.34149,56.37209],[120.38063,56.37285],[120.39093,56.36791],[120.39161,56.3565],[120.382,56.34889],[120.36071,56.34432],[120.37239,56.33328],[120.39367,56.32301],[120.45272,56.30396],[120.48225,56.30015],[120.52482,56.3013],[120.52963,56.28682],[120.50834,56.27386],[120.51246,56.26356],[120.50216,56.25212],[120.47882,56.24602],[120.45547,56.24678],[120.43556,56.23991],[120.41084,56.23724],[120.38612,56.24373],[120.35591,56.24067],[120.32569,56.23304],[120.30235,56.22846],[120.30304,56.22083],[120.30715,56.21739],[120.29136,56.20937],[120.233,56.22159],[120.22201,56.21472],[120.18562,56.21434],[120.17463,56.20975],[120.14442,56.18149],[120.12588,56.17002],[120.10253,56.1662],[120.07644,56.16925],[120.05447,56.16849],[120.03593,56.16008],[120.02288,56.13024],[120.04486,56.09847],[120.04829,56.08697],[120.07576,56.06743],[120.10047,56.05363],[120.12176,56.03215],[120.10871,56.01373],[120.12176,56.00414],[120.12451,55.99569],[120.1197,55.97533],[120.11215,55.96496],[120.0785,55.94112],[120.08812,55.93343],[120.08949,55.9215],[120.11283,55.92189],[120.12107,55.90688],[120.11901,55.89841],[120.1094,55.90188],[120.10459,55.89957],[120.1094,55.88648],[120.10665,55.87338],[120.10734,55.86683],[120.1197,55.86259],[120.14373,55.86606],[120.22407,55.91034],[120.233,55.91612],[120.23231,55.9265],[120.23986,55.93381],[120.24948,55.93458],[120.26115,55.92881],[120.279,55.92804],[120.29892,55.93189],[120.36415,55.91073],[120.36758,55.9038],[120.36277,55.89456],[120.3511,55.88455],[120.35316,55.87762],[120.38063,55.873],[120.40878,55.87107],[120.44723,55.87107],[120.46165,55.87723],[120.48088,55.87993],[120.48637,55.88571],[120.47538,55.8988],[120.48156,55.90996],[120.48294,55.92497],[120.49667,55.93035],[120.5516,55.9292],[120.57563,55.93727],[120.59898,55.94035],[120.62164,55.93343],[120.64224,55.93112],[120.6443,55.94304],[120.65185,55.95804],[120.67451,55.96342],[120.74592,55.97264],[120.78987,55.98417],[120.81115,55.99761],[120.82901,56.01297],[120.83244,56.02218],[120.8551,56.0264],[120.87364,56.02601],[120.91827,56.03369],[120.93406,56.03023],[120.94917,56.02371],[120.96565,56.02755],[120.97869,56.04174],[120.99723,56.04711],[121.03706,56.0333],[121.04324,56.02793],[121.06178,56.03292],[121.07688,56.03177],[121.07894,56.02179],[121.1483,56.02947],[121.15585,56.0333],[121.17713,56.03676],[121.19499,56.04366],[121.21284,56.04251],[121.23344,56.03215],[121.26159,56.02179],[121.26159,55.99991],[121.24992,55.9857],[121.24923,55.97917],[121.26228,55.94535],[121.27258,55.93843],[121.2767,55.92843],[121.26503,55.90419],[121.2664,55.8911],[121.25541,55.87646],[121.26571,55.86837],[121.29524,55.85489],[121.29524,55.83947],[121.30691,55.82983],[121.33026,55.82288],[121.34742,55.81015],[121.34811,55.80205],[121.31858,55.77773],[121.31515,55.76923],[121.30897,55.74837],[121.3021,55.7387],[121.3021,55.73291],[121.31721,55.72479],[121.32202,55.68687],[121.32133,55.64931],[121.33987,55.62528],[121.35017,55.6055],[121.34674,55.58339],[121.34674,55.57213],[121.34124,55.56165],[121.33987,55.54572],[121.33094,55.52435],[121.38656,55.51852],[121.4154,55.49441],[121.43257,55.49208],[121.46278,55.49674],[121.46621,55.5088],[121.47239,55.51502],[121.51977,55.51502],[121.54037,55.51774],[121.55548,55.51463],[121.56509,55.51541],[121.57333,55.52979],[121.58432,55.53135],[121.60285,55.5294],[121.61727,55.53484],[121.66671,55.5927],[121.68525,55.60783],[121.71203,55.61171],[121.73744,55.60783],[121.74911,55.62101],[121.76559,55.62411],[121.791,55.61907],[121.81572,55.61752],[121.82601,55.60977],[121.84043,55.60705],[121.87477,55.61636],[121.88987,55.61054],[121.88507,55.60162],[121.89331,55.59347],[121.89399,55.58067],[121.93107,55.5158],[121.9503,55.50958],[121.96403,55.50802],[121.97982,55.49324],[121.98532,55.45121],[121.98188,55.44381],[121.99424,55.42823],[121.9915,55.41966],[121.97708,55.40991],[121.96678,55.40134],[121.95854,55.39003],[121.9606,55.37638],[121.97433,55.32992],[121.9709,55.31156],[121.94824,55.29905],[121.93725,55.28967],[121.93794,55.27364],[121.94686,55.25799],[121.94892,55.24624],[121.93725,55.23019],[121.9503,55.22158],[121.95854,55.20708],[121.97227,55.20238],[121.99699,55.20512],[122.01004,55.20395],[122.01553,55.19807],[122.00454,55.17847],[121.99493,55.17377],[121.97433,55.17259],[121.96678,55.17102],[121.96472,55.16318],[121.95304,55.15415],[121.91871,55.13964],[121.90635,55.12904],[121.90635,55.12158],[121.91528,55.11726],[121.91803,55.10548],[121.93794,55.09919],[121.94412,55.09408],[121.93382,55.08111],[121.94686,55.0044],[121.93725,54.99613],[121.88163,54.97288],[121.85005,54.97012],[121.837,54.96421],[121.83425,54.95632],[121.83837,54.94804],[121.79512,54.91609],[121.78344,54.90346],[121.74568,54.88055],[121.72988,54.86751],[121.69555,54.84933],[121.6777,54.8434],[121.66259,54.83352],[121.66397,54.8177],[121.65779,54.80464],[121.65435,54.78841],[121.64817,54.78049],[121.6468,54.76742],[121.65504,54.73929],[121.66603,54.73056],[121.67701,54.72858],[121.70929,54.74047],[121.72096,54.75078],[121.72096,54.76187],[121.72714,54.77297],[121.73812,54.77455],[121.76559,54.7698],[121.78413,54.77257],[121.80885,54.79197],[121.8164,54.79474],[121.84936,54.79672],[121.87545,54.80741],[121.89468,54.81137],[121.90086,54.80978],[121.90223,54.80464],[121.89468,54.7892],[121.89193,54.75514],[121.91597,54.75276],[121.92901,54.7484],[121.92146,54.72303],[121.92283,54.71153],[121.9194,54.70042],[121.91116,54.69169],[121.89811,54.68732],[121.88438,54.67819],[121.87751,54.66509],[121.88026,54.65556],[121.89674,54.65278],[121.91597,54.65238],[121.92764,54.64483],[121.93038,54.63609],[121.92627,54.6011],[121.92146,54.58996],[121.92283,54.58081],[121.97845,54.56887],[121.99562,54.55454],[122.01278,54.54777],[122.01072,54.52905],[122.0169,54.52028],[122.0581,54.50713],[122.07115,54.49955],[122.09312,54.49516],[122.12265,54.4824],[122.12951,54.47243],[122.1302,54.46125],[122.11303,54.41293],[122.03338,54.41053],[122.0121,54.40774],[121.96472,54.39095],[121.92901,54.37775],[121.90361,54.37975],[121.86653,54.39055],[121.86447,54.39695],[121.87202,54.41133],[121.88438,54.41813],[121.87408,54.42811],[121.82945,54.4361],[121.81572,54.45127],[121.80404,54.45167],[121.78001,54.44049],[121.74568,54.44249],[121.70517,54.41493],[121.68731,54.40614],[121.65847,54.37975],[121.65229,54.36655],[121.65779,54.35535],[121.67976,54.34535],[121.69899,54.34294],[121.70929,54.33574],[121.69761,54.32173],[121.71409,54.29368],[121.72439,54.28967],[121.74018,54.28567],[121.7134,54.24837],[121.70654,54.23152],[121.71409,54.22068],[121.72851,54.20462],[121.7292,54.18855],[121.73812,54.18132],[121.74911,54.17931],[121.74774,54.16806],[121.74224,54.15559],[121.73126,54.14836],[121.70311,54.14232],[121.67015,54.1383],[121.64955,54.12985],[121.63238,54.11335],[121.62483,54.09967],[121.64611,54.05817],[121.64817,54.04648],[121.63856,54.03681],[121.63581,54.02995],[121.71134,53.99001],[121.72439,53.97991],[121.73057,53.96901],[121.75117,53.95123],[121.76216,53.93992],[121.76902,53.93587],[121.78207,53.94113],[121.80542,53.96497],[121.81709,53.96537],[121.83082,53.96093],[121.84318,53.948],[121.84936,53.93305],[121.86927,53.9015],[121.88301,53.89381],[121.91871,53.85009],[121.94206,53.82821],[121.93725,53.81808],[121.92489,53.80754],[121.91871,53.79619],[121.92764,53.77631],[121.92901,53.76332],[121.92421,53.75601],[121.9345,53.74911],[121.95236,53.75155],[121.9606,53.74302],[121.9654,53.73287],[121.96403,53.71865],[121.97021,53.69792],[121.9551,53.66335],[121.95236,53.64789],[121.95854,53.63812],[121.95785,53.63283],[121.95167,53.6198],[121.9606,53.60513],[121.97845,53.59209],[122.00523,53.57905],[121.98394,53.56926],[121.97982,53.55621],[121.98532,53.54602],[122.0121,53.5301],[122.02514,53.52765],[122.09312,53.4672],[122.08282,53.45248],[122.08763,53.44471],[122.11303,53.4304],[122.13569,53.44676],[122.16316,53.4717],[122.21878,53.46066],[122.2895,53.47864],[122.30461,53.4958],[122.34787,53.50275],[122.37258,53.46802],[122.40829,53.45248],[122.41928,53.4443],[122.45155,53.44185],[122.48451,53.45616],[122.52433,53.45044],[122.58476,53.4627],[122.67608,53.45657],[122.73788,53.46229],[122.82165,53.45453],[122.86697,53.45862],[122.91503,53.46883],[122.9322,53.48069],[123.00636,53.49621],[123.07777,53.5056],[123.13613,53.49621],[123.16909,53.50683],[123.18763,53.5252],[123.22814,53.54928],[123.26866,53.56111],[123.37303,53.53704],[123.45199,53.53418],[123.46092,53.50928],[123.47602,53.49621],[123.49662,53.49621],[123.50349,53.50724],[123.48014,53.52398],[123.48907,53.54561],[123.51928,53.55458],[123.54812,53.54112],[123.54675,53.52765],[123.52478,53.50806],[123.52409,53.49866],[123.5392,53.49621],[123.5646,53.50315],[123.57971,53.54602],[123.61816,53.54806],[123.67034,53.51867],[123.68133,53.50111],[123.7033,53.49131],[123.73764,53.49785],[123.80767,53.48436],[123.84956,53.48845],[123.88801,53.47783],[123.99307,53.42099],[123.99993,53.40666],[124.01641,53.39438],[124.04594,53.40011],[124.07341,53.38988],[124.07821,53.37104],[124.09675,53.36366],[124.1043,53.34973],[124.13246,53.34645],[124.16198,53.36571],[124.23133,53.37718],[124.24644,53.37226],[124.25056,53.36325],[124.28695,53.34194],[124.31098,53.33292],[124.3357,53.3079],[124.33708,53.29477],[124.35768,53.27835],[124.35836,53.26192],[124.37278,53.25289],[124.40025,53.24837],[124.40712,53.24385],[124.403,53.22864],[124.43252,53.22124],[124.46342,53.2159],[124.47921,53.21631],[124.48745,53.20562],[124.5211,53.20109],[124.58084,53.20603],[124.63302,53.20685],[124.67697,53.20068],[124.72023,53.18628],[124.70581,53.16035],[124.71611,53.148],[124.73808,53.14429],[124.75387,53.13647],[124.82597,53.14388],[124.84657,53.11875],[124.85549,53.09402],[124.88777,53.09732],[124.90287,53.11587],[124.87678,53.162],[124.953,53.18587],[124.96398,53.19245],[125.08209,53.20274],[125.16311,53.20192],[125.20431,53.19204],[125.2153,53.18464],[125.26336,53.16818],[125.29014,53.15088],[125.37185,53.12905],[125.39794,53.12617],[125.40481,53.11834],[125.44189,53.10598],[125.4927,53.09691],[125.49476,53.07464],[125.50437,53.04823],[125.51879,53.04864],[125.56411,53.07464],[125.60668,53.08041],[125.63278,53.05978],[125.63552,53.03708],[125.65887,53.02263],[125.68359,53.00114],[125.72135,52.99495],[125.73989,52.98544],[125.73234,52.97634],[125.72341,52.96849],[125.72273,52.95649],[125.72753,52.94408],[125.71655,52.93332],[125.67398,52.92463],[125.65544,52.91552],[125.65612,52.88446],[125.65544,52.8712],[125.67398,52.85835],[125.709,52.877],[125.74333,52.87783],[125.76118,52.8944],[125.79277,52.89274],[125.82298,52.89647],[125.84838,52.8886],[125.8422,52.87741],[125.85456,52.8571],[125.87516,52.83969],[125.91224,52.81811],[125.93009,52.78283],[125.93833,52.77909],[125.96305,52.75832],[125.98159,52.75749],[126.00013,52.77452],[126.00769,52.79155],[126.04614,52.79694],[126.10519,52.76995],[126.10725,52.75541],[126.03858,52.74419],[126.04545,52.71882],[126.06674,52.6922],[126.05781,52.67721],[125.99258,52.67638],[125.96649,52.65972],[125.95962,52.62681],[125.97473,52.60471],[126.01043,52.58052],[126.03035,52.57426],[126.04888,52.58552],[126.05369,52.60096],[126.06262,52.60388],[126.09626,52.59178],[126.11206,52.58094],[126.13403,52.57342],[126.20201,52.53126],[126.20338,52.52207],[126.18759,52.49908],[126.18141,52.47441],[126.19171,52.46605],[126.20956,52.4673],[126.21849,52.4719],[126.25968,52.47399],[126.28715,52.44303],[126.3153,52.42461],[126.34895,52.38272],[126.34002,52.35169],[126.31462,52.34331],[126.31118,52.32652],[126.31942,52.30763],[126.34758,52.3026],[126.38534,52.3026],[126.42654,52.29672],[126.43341,52.2837],[126.42242,52.27698],[126.40937,52.28118],[126.39427,52.27866],[126.37573,52.26899],[126.3462,52.26227],[126.30706,52.23873],[126.29264,52.21518],[126.3002,52.20339],[126.35307,52.18656],[126.39633,52.18445],[126.41143,52.17435],[126.45469,52.16129],[126.48834,52.15961],[126.55082,52.13433],[126.55632,52.12295],[126.55014,52.10777],[126.53366,52.09596],[126.53434,52.06937],[126.50688,52.06262],[126.49932,52.05629],[126.51306,52.04657],[126.511,52.03559],[126.48559,52.03982],[126.44989,52.03264],[126.43821,52.01743],[126.44027,52.00306],[126.46225,51.98149],[126.45469,51.96415],[126.45332,51.94976],[126.46568,51.93622],[126.49589,51.92775],[126.50962,51.90488],[126.5364,51.88539],[126.56318,51.85232],[126.5673,51.83365],[126.5728,51.82092],[126.58721,51.81201],[126.62017,51.77208],[126.65313,51.76189],[126.65863,51.75509],[126.65313,51.74446],[126.65794,51.73553],[126.67373,51.72787],[126.69227,51.72915],[126.71081,51.72915],[126.72111,51.71767],[126.72248,51.70022],[126.70738,51.68447],[126.70738,51.67723],[126.72729,51.65935],[126.7321,51.64231],[126.71768,51.62569],[126.69364,51.61929],[126.66961,51.60138],[126.6806,51.5792],[126.71562,51.56725],[126.77673,51.55444],[126.83509,51.53138],[126.81861,51.50404],[126.80351,51.49121],[126.7939,51.46641],[126.78085,51.454],[126.77742,51.43945],[126.80763,51.41548],[126.8811,51.40948],[126.91062,51.3932],[126.92024,51.36792],[126.91131,51.34519],[126.89483,51.3409],[126.83441,51.34433],[126.81381,51.33404],[126.80694,51.30615],[126.83372,51.26105],[126.85295,51.24902],[126.88865,51.24472],[126.90925,51.2516],[126.91406,51.2632],[126.9065,51.28038],[126.88591,51.28811],[126.86943,51.30615],[126.86943,51.31731],[126.95114,51.33189],[126.97586,51.32717],[126.97448,51.307],[126.96144,51.28339],[126.94427,51.26406],[126.91955,51.24687],[126.89483,51.19569],[126.90856,51.14446],[126.91474,51.11128],[126.91749,51.05779],[126.94221,51.0483],[126.97792,51.02671],[127.0095,50.99949],[127.03285,50.96664],[127.11113,50.93376],[127.15438,50.88787],[127.20382,50.81114],[127.24365,50.76643],[127.28485,50.75644],[127.29721,50.74036],[127.28553,50.7182],[127.27935,50.70428],[127.28347,50.6734],[127.30613,50.63813],[127.33223,50.62245],[127.34115,50.60808],[127.36381,50.58716],[127.35694,50.56361],[127.35763,50.54572],[127.31849,50.53088],[127.31094,50.52259],[127.30819,50.50425],[127.28897,50.48416],[127.28622,50.46799],[127.29103,50.45663],[127.30476,50.44919],[127.34527,50.44526],[127.36106,50.43345],[127.36312,50.40326],[127.32948,50.35948],[127.33085,50.33275],[127.37068,50.28846],[127.44689,50.27047],[127.46681,50.2652],[127.49908,50.25335],[127.53135,50.25247],[127.56843,50.24193],[127.59796,50.23842],[127.6007,50.18481],[127.57873,50.1461],[127.56362,50.12718],[127.52105,50.08842],[127.50183,50.06022],[127.48672,50.00729],[127.49015,49.9839],[127.50457,49.96535],[127.53822,49.93752],[127.53891,49.91497],[127.51899,49.85303],[127.52037,49.82026],[127.55813,49.78924],[127.59246,49.78126],[127.65014,49.77372],[127.66937,49.76574],[127.67005,49.69517],[127.68722,49.6694],[127.71537,49.65207],[127.76275,49.63473],[127.78129,49.6196],[127.79983,49.59068],[127.83828,49.58489],[127.86094,49.5751],[127.91381,49.57732],[127.93167,49.59112],[127.94677,49.61337],[127.97561,49.6067],[128.01681,49.56708],[128.03672,49.55907],[128.06899,49.53813],[128.12324,49.54615],[128.18916,49.53724],[128.22486,49.54704],[128.23654,49.56174],[128.28666,49.56263],[128.32443,49.54125],[128.35464,49.55194],[128.36769,49.57821],[128.38073,49.58712],[128.46244,49.58845],[128.53317,49.60092],[128.63067,49.57955],[128.68423,49.56797],[128.71376,49.56129],[128.72474,49.59023],[128.75564,49.59112],[128.79135,49.58133],[128.79821,49.55862],[128.79478,49.54526],[128.74465,49.50782],[128.74191,49.48864],[128.75564,49.47526],[128.78723,49.46901],[128.81881,49.4824],[128.85932,49.4766],[128.88473,49.47927],[128.92044,49.46053],[128.99734,49.45384],[129.0303,49.41633],[129.04335,49.3846],[129.06738,49.36225],[129.0969,49.3542],[129.13467,49.35196],[129.16557,49.38147],[129.20265,49.3989],[129.24728,49.39578],[129.27406,49.38237],[129.30152,49.36001],[129.35028,49.35286],[129.37156,49.36404],[129.37706,49.37566],[129.36676,49.38684],[129.375,49.42571],[129.41413,49.43955],[129.46495,49.43107],[129.52262,49.41365],[129.54116,49.37298],[129.54803,49.29781],[129.58099,49.27586],[129.60845,49.27586],[129.64485,49.29199],[129.69772,49.29557],[129.7293,49.27766],[129.74716,49.24943],[129.74441,49.20862],[129.77668,49.17945],[129.8323,49.17137],[129.83573,49.16105],[129.82749,49.14533],[129.84672,49.10084],[129.90989,49.07791],[129.91127,49.06981],[129.97924,49.02706],[130.00122,48.99779],[130.08018,48.96128],[130.15159,48.92701],[130.18592,48.89813],[130.22163,48.86652],[130.26489,48.86336],[130.35827,48.88819],[130.43792,48.90354],[130.46608,48.90128],[130.47843,48.88232],[130.48805,48.86516],[130.5162,48.85387],[130.55877,48.85884],[130.61027,48.87826],[130.64666,48.88232],[130.67619,48.876],[130.68237,48.85568],[130.65284,48.82133],[130.61576,48.78108],[130.58006,48.71497],[130.52993,48.63653],[130.52101,48.6143],[130.53268,48.60522],[130.59242,48.59386],[130.60752,48.57569],[130.61096,48.50159],[130.62538,48.49158],[130.66452,48.49203],[130.72151,48.51387],[130.75584,48.50432],[130.76957,48.48566],[130.74142,48.45698],[130.72975,48.43785],[130.7476,48.41006],[130.76614,48.35442],[130.80802,48.34347],[130.81901,48.33069],[130.81901,48.31836],[130.83412,48.30466],[130.83412,48.29826],[130.81764,48.28502],[130.80459,48.26262],[130.77232,48.25439],[130.76477,48.23885],[130.75309,48.22604],[130.75241,48.18577],[130.72288,48.17249],[130.67413,48.1363],[130.65559,48.11201],[130.6604,48.09184],[130.67619,48.08129],[130.6755,48.05743],[130.6961,48.03769],[130.72769,48.02896],[130.74005,48.00876],[130.8554,47.94026],[130.95016,47.82744],[130.95222,47.72916],[130.96733,47.71022],[130.98999,47.69867],[131.02294,47.68757],[131.0559,47.68665],[131.11976,47.68434],[131.1898,47.70514],[131.22139,47.72639],[131.26945,47.73701],[131.35322,47.72546],[131.42807,47.74394],[131.49948,47.7347],[131.52145,47.73793],[131.54892,47.725],[131.55098,47.69867],[131.55784,47.66677],[131.60041,47.66122],[131.65329,47.6774],[131.68418,47.70236],[131.71989,47.70698],[131.82563,47.67001],[131.88056,47.68157],[131.93481,47.67186],[131.96846,47.66816],[131.99935,47.71392],[132.04467,47.70421],[132.11059,47.70467],[132.17582,47.69636],[132.2026,47.7019],[132.23419,47.70283],[132.27676,47.72315],[132.28843,47.74717],[132.33581,47.75686],[132.38594,47.74948],[132.49992,47.7153],[132.5782,47.72593],[132.59468,47.75502],[132.59674,47.79839],[132.63381,47.84311],[132.67227,47.86938],[132.6551,47.93336],[132.67021,47.95544],[132.70248,47.96188],[132.75123,47.93842],[132.81097,47.9329],[132.8762,48.00095],[132.9277,48.0207],[132.99087,48.03034],[133.04031,48.10055],[133.06572,48.10651],[133.09661,48.10284],[133.17695,48.10926],[133.24699,48.09917],[133.28476,48.09184],[133.32939,48.10834],[133.39462,48.11705],[133.44131,48.07486],[133.48663,48.07303],[133.51478,48.09092],[133.56628,48.14638],[133.56765,48.1757],[133.59443,48.19218],[133.64662,48.18485],[133.70086,48.18714],[133.74069,48.24982],[133.78601,48.25851],[133.82171,48.23885],[133.85604,48.24662],[133.87458,48.26948],[133.92746,48.27222],[133.992,48.25897],[134.01466,48.2841],[134.01054,48.31425],[134.0435,48.33708],[134.12658,48.33753],[134.23645,48.36628],[134.27627,48.37632],[134.40811,48.38954],[134.48982,48.42236],[134.57702,48.4055],[134.66011,48.41006],[134.76885,48.37548],[134.76536,48.35311],[134.71793,48.2851],[134.72187,48.27448],[134.6901,48.25839],[134.66501,48.24082],[134.66151,48.19654],[134.66767,48.14325],[134.63262,48.12293],[134.6257,48.09881],[134.58033,48.06278],[134.56725,48.03926],[134.54319,48.02859],[134.54245,47.98837],[134.58016,47.95183],[134.57118,47.90976],[134.65009,47.89346],[134.67333,47.82038],[134.74263,47.78201],[134.78445,47.72518],[134.72392,47.65762],[134.68542,47.63866],[134.67715,47.59216],[134.64141,47.56047],[134.58088,47.51705],[134.57533,47.4972],[134.48189,47.44023],[134.31207,47.43612],[134.24113,47.35768],[134.18781,47.3417],[134.13997,47.2587],[134.21299,47.19058],[134.22009,47.11872],[134.21277,47.09867],[134.12306,47.0861],[134.11299,47.02302],[134.05348,46.9824],[134.06814,46.93709],[134.03885,46.88428],[134.03656,46.84379],[134.01757,46.83482],[134.01505,46.81645],[134.04847,46.77501],[134.0297,46.74485],[134.01508,46.72133],[134.02517,46.6978],[134.00368,46.63752],[133.96022,46.61684],[133.9092,46.59191],[133.89389,46.54244],[133.87388,46.5262],[133.86484,46.50997],[133.86131,46.49278],[133.84129,46.48127],[133.84179,46.4545],[133.86152,46.44287],[133.89635,46.44827],[133.94766,46.3931],[133.93099,46.3739],[133.89784,46.36417],[133.87294,46.36013],[133.86176,46.34471],[133.87737,46.31887],[133.9122,46.33285],[133.91657,46.32278],[133.88798,46.30321],[133.90883,46.27985],[133.91045,46.26409],[133.89309,46.25105],[133.85376,46.24751],[133.87461,46.23244],[133.85426,46.21547],[133.84215,46.2004],[133.82677,46.20423],[133.81962,46.22327],[133.79983,46.22904],[133.79242,46.19523],[133.76852,46.17091],[133.68503,46.15081],[133.69547,46.11031],[133.73886,46.066],[133.7125,46.02478],[133.66965,45.98737],[133.67184,45.94308],[133.62955,45.94793],[133.59879,45.93508],[133.61472,45.90598],[133.59564,45.88882],[133.58478,45.86592],[133.52725,45.90278],[133.48069,45.85933],[133.45831,45.78491],[133.43043,45.69516],[133.47555,45.69345],[133.48221,45.66104],[133.44493,45.64974],[133.46806,45.60771],[133.42539,45.62656],[133.3992,45.61852],[133.41822,45.57167],[133.37407,45.57673],[133.31344,45.55102],[133.19726,45.50587],[133.14288,45.42919],[133.12695,45.35251],[133.09977,45.29288],[133.08885,45.248],[133.13286,45.17604],[133.12751,45.125],[133.0837,45.1059],[133.04539,45.06741],[132.95228,45.01758],[132.84875,45.05972],[131.98167,45.25696],[131.96625,45.2719],[131.92885,45.28297],[131.91343,45.33654],[131.87603,45.34376],[131.80673,45.29054],[131.78687,45.21414],[131.68124,45.22562],[131.64701,45.1597],[131.69391,45.12661],[131.59926,45.05577],[131.48263,44.99658],[131.48626,44.97593],[131.47342,44.95917],[131.42761,44.96572],[131.40927,44.98004],[131.34139,44.98682],[131.28863,44.92558],[131.2029,44.91489],[131.16867,44.94697],[131.10149,44.94017],[131.07888,44.91634],[131.07824,44.88084],[130.96225,44.86187],[130.96711,44.81953],[131.00447,44.82602],[131.01436,44.77406],[131.0616,44.77927],[131.07864,44.73964],[131.09539,44.71396],[131.11215,44.7],[131.30002,44.05154],[131.26473,44.03001],[131.23493,43.98083],[131.25773,43.91012],[131.22285,43.86712],[131.20994,43.80828],[131.21708,43.67874],[131.22615,43.58614],[131.18124,43.55376],[131.19312,43.5256],[131.26361,43.4936],[131.30937,43.45761],[131.28575,43.43302],[131.31157,43.38849],[131.27532,43.37125],[131.25005,43.27213],[131.20281,43.22898],[131.19272,43.20618],[131.21009,43.18338],[131.20274,43.16659],[131.21187,43.14579],[131.16972,43.1062],[131.16601,43.07062],[131.11739,43.07175],[131.09838,43.02183],[131.10682,42.97192],[131.14273,42.96219],[131.13322,42.92919],[131.11272,42.91227],[131.01605,42.91746],[131.04022,42.8623],[130.98103,42.85455],[130.91635,42.87498],[130.88586,42.84739],[130.82667,42.87989],[130.78396,42.87214],[130.76446,42.84052],[130.72024,42.82955],[130.67053,42.85482],[130.57111,42.8087],[130.46619,42.7686],[130.39422,42.72447],[130.40147,42.72398],[130.40853,42.71541],[130.40735,42.7129],[130.42009,42.70333],[130.43077,42.70788],[130.4344,42.70367],[130.43871,42.70147],[130.44543,42.70078],[130.44802,42.70161],[130.44977,42.69444],[130.45908,42.68474],[130.46822,42.68987],[130.47186,42.68944],[130.47849,42.69011],[130.48443,42.68826],[130.48763,42.69044],[130.49151,42.69011],[130.49428,42.69336],[130.49842,42.69258],[130.50051,42.69506],[130.50776,42.69552],[130.51654,42.70054],[130.52256,42.70103],[130.53243,42.69839],[130.54229,42.69122],[130.54514,42.69175],[130.54851,42.68946],[130.55286,42.69001],[130.5548,42.68931],[130.5621,42.68535],[130.56853,42.67817],[130.57676,42.67538],[130.58362,42.67108],[130.58843,42.66488],[130.58842,42.6602],[130.59596,42.65184],[130.59463,42.64683],[130.59809,42.64356],[130.59604,42.6403],[130.60505,42.63431],[130.60616,42.63085],[130.61289,42.63038],[130.61482,42.6284],[130.61833,42.61836],[130.61635,42.61238],[130.62054,42.60538],[130.62817,42.59888],[130.62589,42.59373],[130.62566,42.58857],[130.62029,42.58543],[130.62178,42.58179],[130.61538,42.57077],[130.60417,42.56506],[130.60395,42.55176],[130.59412,42.55724],[130.58498,42.55918],[130.5748,42.55834],[130.56903,42.55488],[130.56256,42.55497],[130.56921,42.53787],[130.56499,42.534],[130.56075,42.52912],[130.55787,42.52523],[130.56254,42.51729],[130.55381,42.52098],[130.55264,42.51861],[130.55825,42.50303],[130.58484,42.48728],[130.58392,42.48465],[130.58604,42.48106],[130.5854,42.47873],[130.59083,42.4732],[130.59522,42.46766],[130.59035,42.46409],[130.59235,42.45621],[130.59142,42.45441],[130.59354,42.45059],[130.59427,42.44627],[130.6029,42.44121],[130.60895,42.43944],[130.61139,42.43653],[130.61418,42.43464],[130.61714,42.43528],[130.62422,42.43262],[130.6313,42.42718],[130.63425,42.42604],[130.635,42.42489],[130.63524,42.42374],[130.63762,42.42189],[130.63897,42.42016],[130.64067,42.41543],[130.64082,42.4131],[130.64337,42.4104],[130.64472,42.40826],[130.64514,42.40221],[130.65486,42.39042],[130.65753,42.38775],[130.66063,42.38398],[130.6651,42.37996],[130.66855,42.37495],[130.66846,42.36636],[130.66294,42.36225],[130.65536,42.35915],[130.64913,42.3527],[130.64424,42.3469],[130.64483,42.33451],[130.64937,42.32363],[130.6594,42.31581],[130.68248,42.30341],[130.68908,42.29407],[130.77271,42.24603],[136.66227,42.24603],[139.77955,45.73822],[146.49147,45.73822],[145.22612,43.82251],[145.54187,43.542],[146.16455,43.26843],[160,40],[170,40],[170,53],[192.31292,66.66712],[180,75],[180,85],[115,85]]]}},{"type":"Feature","properties":{"cq_zone_name":"Balkan Zone","cq_zone_number":20,"cq_zone_name_loc":[42,29]},"geometry":{"type":"Polygon","coordinates":[[[39.30908,42.25698],[41.54548,41.52143],[41.55647,41.51885],[41.56814,41.52091],[41.57913,41.5168],[41.58256,41.5096],[41.61964,41.50137],[41.63406,41.48749],[41.66633,41.48337],[41.67869,41.48749],[41.68968,41.488],[41.70959,41.49675],[41.71714,41.48749],[41.7089,41.47463],[41.75216,41.47051],[41.77413,41.46073],[41.77551,41.46382],[41.78512,41.46176],[41.78993,41.44838],[41.80435,41.44735],[41.81259,41.43603],[41.82289,41.43346],[41.84555,41.44015],[41.84623,41.44838],[41.88194,41.46022],[41.88606,41.47154],[41.8943,41.47463],[41.89704,41.48492],[41.91078,41.4988],[41.96296,41.52503],[41.97395,41.52143],[41.98288,41.52297],[41.99111,41.51629],[41.99386,41.50446],[42.02682,41.50034],[42.033,41.49623],[42.04811,41.49675],[42.08519,41.51063],[42.11334,41.51114],[42.12158,41.506],[42.15934,41.50703],[42.1772,41.5132],[42.19574,41.50754],[42.20466,41.4916],[42.22595,41.49983],[42.24517,41.49366],[42.28019,41.49417],[42.30148,41.48492],[42.31246,41.4808],[42.32894,41.46845],[42.34886,41.47257],[42.36328,41.46434],[42.3825,41.46742],[42.38456,41.46228],[42.40036,41.46639],[42.41546,41.45868],[42.43537,41.44324],[42.46833,41.43706],[42.48275,41.4386],[42.49237,41.44684],[42.51983,41.43706],[42.52395,41.44272],[42.51228,41.47257],[42.52601,41.47977],[42.53288,41.4916],[42.54592,41.49314],[42.54867,41.49983],[42.55348,41.4988],[42.56034,41.50703],[42.57133,41.5096],[42.56378,41.52554],[42.57957,41.54301],[42.57476,41.55843],[42.5782,41.56768],[42.5933,41.57487],[42.60154,41.58463],[42.66059,41.59439],[42.69699,41.6026],[42.71415,41.59541],[42.74025,41.59644],[42.7526,41.58617],[42.77114,41.58412],[42.78007,41.5759],[42.78282,41.5836],[42.79174,41.58771],[42.8144,41.58874],[42.83363,41.58617],[42.83363,41.57179],[42.8302,41.55894],[42.82058,41.55637],[42.81784,41.53993],[42.80548,41.53068],[42.79724,41.51577],[42.80548,41.50806],[42.79998,41.49623],[42.81578,41.4916],[42.82882,41.48028],[42.85423,41.47051],[42.86384,41.49314],[42.87551,41.50394],[42.90092,41.49983],[42.89955,41.47874],[42.93113,41.47051],[42.94349,41.45713],[42.96684,41.45147],[42.96958,41.44169],[42.96752,41.43346],[42.98812,41.42522],[42.98812,41.41235],[43.00392,41.4072],[43.00529,41.39947],[43.00941,41.39741],[43.0204,41.37938],[43.01902,41.37629],[43.03276,41.37114],[43.041,41.37577],[43.05542,41.37165],[43.05885,41.36598],[43.08494,41.35928],[43.11172,41.34794],[43.13644,41.31907],[43.1591,41.31701],[43.16597,41.30979],[43.19,41.30463],[43.19892,41.30876],[43.21472,41.30411],[43.21197,41.29019],[43.17077,41.27316],[43.1282,41.25303],[43.15017,41.24528],[43.17695,41.25561],[43.19412,41.25303],[43.19961,41.24632],[43.2003,41.23392],[43.23669,41.18433],[43.22914,41.17348],[43.26416,41.17917],[43.27652,41.18588],[43.32321,41.19518],[43.33007,41.20139],[43.37608,41.20345],[43.4111,41.18692],[43.44749,41.17761],[43.46191,41.15229],[43.47358,41.12436],[43.45779,41.12022],[43.4571,41.11039],[43.44749,41.10056],[43.44749,41.08918],[43.45504,41.08556],[43.45916,41.07417],[43.47015,41.06848],[43.46946,41.04932],[43.46809,41.03171],[43.48457,41.01669],[43.49418,41.01617],[43.50723,41.01203],[43.5189,41.01513],[43.54431,40.99907],[43.56285,40.99441],[43.57795,40.99285],[43.58413,40.9887],[43.59237,40.98663],[43.67065,40.93841],[43.67614,40.93063],[43.66996,40.91143],[43.68095,40.90313],[43.67408,40.886],[43.67614,40.87043],[43.68026,40.86731],[43.6782,40.84602],[43.70567,40.82212],[43.71803,40.80185],[43.72421,40.78106],[43.74069,40.74829],[43.74755,40.72592],[43.73588,40.71499],[43.74481,40.70458],[43.74549,40.69729],[43.66653,40.56545],[43.64181,40.55972],[43.64456,40.54563],[43.65074,40.53728],[43.64662,40.53154],[43.63494,40.53937],[43.62739,40.53676],[43.64044,40.52423],[43.63426,40.51954],[43.62602,40.51954],[43.62739,40.52423],[43.61846,40.52476],[43.60817,40.51484],[43.60061,40.51275],[43.57109,40.50335],[43.5704,40.49709],[43.55735,40.495],[43.55804,40.48038],[43.54362,40.47724],[43.55735,40.46],[43.56765,40.46],[43.591,40.44799],[43.60748,40.43649],[43.61228,40.42656],[43.61915,40.42186],[43.61915,40.41663],[43.61434,40.41506],[43.62052,40.39885],[43.61434,40.38944],[43.60611,40.38316],[43.60679,40.37532],[43.59924,40.37165],[43.59512,40.36224],[43.59718,40.35648],[43.59031,40.34497],[43.61778,40.31199],[43.62739,40.29838],[43.63563,40.29471],[43.63288,40.28214],[43.64593,40.26957],[43.66447,40.27009],[43.67958,40.25699],[43.68301,40.22607],[43.66172,40.22817],[43.65486,40.2245],[43.6734,40.20562],[43.69674,40.19251],[43.70224,40.17782],[43.71254,40.1731],[43.71391,40.16208],[43.70155,40.1626],[43.6631,40.15421],[43.65348,40.14266],[43.64936,40.13059],[43.65554,40.12114],[43.6576,40.11221],[43.67065,40.10853],[43.67958,40.09698],[43.69125,40.09698],[43.70155,40.08805],[43.72283,40.07964],[43.73863,40.08227],[43.75236,40.07807],[43.76541,40.08332],[43.78395,40.06966],[43.79425,40.07071],[43.80798,40.06178],[43.82309,40.05968],[43.82446,40.04706],[43.83476,40.04864],[43.84162,40.04496],[43.85673,40.04496],[43.86634,40.03655],[43.89656,40.02551],[43.96453,40.01867],[43.99475,40.03129],[44.0126,40.02446],[44.08264,40.03339],[44.10461,40.02971],[44.11903,40.0355],[44.13414,40.03024],[44.16503,40.03129],[44.17121,40.02814],[44.18838,40.03182],[44.19319,40.04023],[44.21447,40.03392],[44.22134,40.04391],[44.24881,40.05022],[44.26391,40.04759],[44.27764,40.04864],[44.28382,40.04286],[44.29412,40.04601],[44.2955,40.0376],[44.31747,40.0397],[44.32571,40.03024],[44.33532,40.03234],[44.34288,40.02761],[44.35386,40.02603],[44.35867,40.01709],[44.37995,40.00395],[44.39231,40.005],[44.41772,40.00132],[44.42871,39.98974],[44.45068,39.97922],[44.45411,39.97027],[44.46441,39.97291],[44.48158,39.96659],[44.50012,39.94554],[44.50286,39.93448],[44.51522,39.92974],[44.5214,39.92079],[44.53651,39.92237],[44.54338,39.90815],[44.55299,39.90341],[44.55162,39.8855],[44.55986,39.8776],[44.56604,39.87022],[44.59144,39.85968],[44.59487,39.84228],[44.58869,39.83385],[44.59419,39.82594],[44.6038,39.82277],[44.61547,39.8291],[44.62028,39.82119],[44.61273,39.81433],[44.62783,39.81381],[44.63195,39.80589],[44.65049,39.80062],[44.65805,39.79007],[44.66972,39.79323],[44.67727,39.78743],[44.68208,39.79798],[44.69924,39.79007],[44.68689,39.78268],[44.68757,39.77107],[44.70954,39.77107],[44.72671,39.74098],[44.73426,39.74732],[44.74388,39.74204],[44.74868,39.71722],[44.76791,39.71669],[44.76379,39.70348],[44.77821,39.70296],[44.78508,39.6908],[44.78302,39.6871],[44.80155,39.68446],[44.79469,39.66861],[44.8043,39.67231],[44.80155,39.65592],[44.81735,39.65328],[44.8146,39.64323],[44.80842,39.63742],[44.80636,39.62843],[44.80361,39.64271],[44.79812,39.65064],[44.78782,39.65275],[44.75486,39.67125],[44.75692,39.67495],[44.74113,39.69397],[44.7274,39.69873],[44.72877,39.7019],[44.71366,39.71352],[44.7013,39.71194],[44.68963,39.71563],[44.66903,39.71405],[44.65393,39.72725],[44.64843,39.72672],[44.64088,39.74098],[44.62989,39.74468],[44.63264,39.75576],[44.62234,39.76685],[44.61273,39.7811],[44.46716,39.68341],[44.48158,39.67072],[44.48638,39.64323],[44.48158,39.61044],[44.46098,39.59563],[44.44175,39.57446],[44.42253,39.56811],[44.4239,39.55064],[44.42459,39.54217],[44.4239,39.53211],[44.43351,39.51993],[44.43145,39.51039],[44.43969,39.4998],[44.41703,39.4839],[44.40879,39.47224],[44.42047,39.46429],[44.42459,39.44838],[44.43008,39.44414],[44.43077,39.43672],[44.42596,39.43142],[44.42184,39.41179],[44.37789,39.41073],[44.347,39.39375],[44.32983,39.38685],[44.31747,39.39163],[44.29344,39.37518],[44.28451,39.38314],[44.27696,39.3842],[44.26666,39.39853],[44.24537,39.39853],[44.23988,39.40967],[44.21791,39.41816],[44.19387,39.41126],[44.1925,39.4033],[44.17465,39.40012],[44.16023,39.40224],[44.14512,39.39959],[44.141,39.39322],[44.13002,39.39057],[44.13482,39.39375],[44.13963,39.40383],[44.13276,39.40648],[44.11491,39.40224],[44.09637,39.41232],[44.0847,39.40755],[44.07165,39.41285],[44.04968,39.40118],[44.0586,39.38791],[44.0435,39.38473],[44.03251,39.37305],[44.03801,39.35925],[44.0586,39.35606],[44.05723,39.34491],[44.07165,39.33589],[44.07989,39.32739],[44.07577,39.30773],[44.08058,39.29498],[44.10804,39.28382],[44.0998,39.27691],[44.09362,39.27691],[44.09156,39.26575],[44.08332,39.25405],[44.08882,39.24767],[44.10324,39.24554],[44.10049,39.22853],[44.09431,39.21735],[44.09706,39.20512],[44.11079,39.19873],[44.11422,39.19022],[44.13482,39.1817],[44.14512,39.18383],[44.16641,39.17691],[44.18838,39.15775],[44.2131,39.13006],[44.20829,39.11301],[44.21859,39.10608],[44.22134,39.09276],[44.20349,39.0901],[44.18975,39.07571],[44.20486,39.05598],[44.19593,39.04531],[44.21104,39.01971],[44.19044,39.01118],[44.17945,39.01064],[44.17053,38.99143],[44.19044,38.98022],[44.1822,38.95673],[44.20005,38.94926],[44.18907,38.93698],[44.19662,38.93003],[44.19937,38.92202],[44.21928,38.91935],[44.22065,38.90279],[44.21516,38.90225],[44.21035,38.89904],[44.21722,38.88515],[44.23027,38.88087],[44.24537,38.86965],[44.24263,38.85628],[44.24469,38.8504],[44.25705,38.84773],[44.27902,38.85468],[44.28657,38.84452],[44.29962,38.84024],[44.30099,38.83542],[44.29481,38.82847],[44.30236,38.82366],[44.31404,38.80707],[44.30374,38.8044],[44.30168,38.79102],[44.28588,38.78406],[44.29206,38.76372],[44.28657,38.75301],[44.27696,38.74658],[44.27902,38.73158],[44.26322,38.72034],[44.25293,38.71766],[44.26048,38.71284],[44.26185,38.70426],[44.2694,38.70158],[44.27215,38.68926],[44.27009,38.68497],[44.28314,38.67478],[44.27696,38.65656],[44.27146,38.65495],[44.26803,38.65012],[44.27421,38.64369],[44.3003,38.63779],[44.3209,38.62277],[44.32228,38.60935],[44.31678,38.60774],[44.32571,38.57876],[44.31747,38.5734],[44.31198,38.56051],[44.31747,38.55084],[44.30717,38.53259],[44.31335,38.52292],[44.31129,38.51701],[44.3209,38.5111],[44.32365,38.50411],[44.32022,38.49498],[44.32434,38.48423],[44.31335,38.47778],[44.30992,38.45412],[44.30236,38.44659],[44.3161,38.43261],[44.31884,38.40948],[44.30992,38.3971],[44.30099,38.39495],[44.31335,38.37665],[44.32846,38.36965],[44.34082,38.37234],[44.35249,38.37019],[44.35386,38.37665],[44.36279,38.3745],[44.3827,38.35727],[44.38819,38.36481],[44.41978,38.37019],[44.44931,38.3858],[44.46235,38.35942],[44.47471,38.35619],[44.4905,38.35673],[44.50012,38.35134],[44.49394,38.34488],[44.5111,38.34434],[44.50973,38.3368],[44.49737,38.33357],[44.49668,38.3061],[44.47883,38.30287],[44.45617,38.28454],[44.43901,38.27915],[44.43626,38.26891],[44.41429,38.26244],[44.39643,38.24087],[44.40536,38.2317],[44.40948,38.21984],[44.40536,38.21714],[44.40742,38.20635],[44.39575,38.19771],[44.39987,38.18584],[44.39781,38.17289],[44.38957,38.16641],[44.39506,38.16317],[44.39025,38.14643],[44.3724,38.13833],[44.34837,38.13401],[44.35936,38.12321],[44.35867,38.11619],[44.36691,38.1043],[44.36416,38.1016],[44.34631,38.10376],[44.33464,38.0989],[44.32777,38.1016],[44.3312,38.09187],[44.32777,38.07782],[44.31884,38.07944],[44.31198,38.07404],[44.31198,38.06917],[44.31816,38.06809],[44.31884,38.06377],[44.30168,38.05458],[44.30854,38.04268],[44.28726,38.02105],[44.27833,38.02213],[44.26803,38.00968],[44.26872,37.99399],[44.24125,37.96368],[44.24125,37.95719],[44.25155,37.94203],[44.24469,37.93011],[44.2337,37.9274],[44.22683,37.90628],[44.2337,37.90249],[44.22203,37.88894],[44.23782,37.8846],[44.24263,37.87756],[44.26872,37.8678],[44.29,37.87268],[44.29275,37.86618],[44.30717,37.86889],[44.31884,37.8781],[44.33326,37.87593],[44.3367,37.86997],[44.36828,37.86292],[44.37034,37.86563],[44.38888,37.86347],[44.40742,37.84774],[44.40536,37.84124],[44.39369,37.83202],[44.39506,37.82063],[44.41497,37.81629],[44.4239,37.79893],[44.44862,37.80598],[44.44999,37.78536],[44.44381,37.77451],[44.45343,37.76745],[44.47197,37.76311],[44.4802,37.77125],[44.49531,37.77234],[44.51454,37.77614],[44.52209,37.78319],[44.56192,37.77776],[44.5626,37.77017],[44.58801,37.76365],[44.59762,37.74628],[44.62028,37.72673],[44.6244,37.70827],[44.62921,37.70718],[44.61479,37.68925],[44.60311,37.68001],[44.59144,37.67512],[44.58663,37.67023],[44.57359,37.66588],[44.57359,37.65664],[44.5681,37.64196],[44.57016,37.63761],[44.5784,37.63761],[44.5935,37.61803],[44.59899,37.61695],[44.61479,37.6028],[44.59762,37.5805],[44.61204,37.5707],[44.60861,37.56852],[44.61547,37.56471],[44.61067,37.56036],[44.60311,37.55873],[44.60174,37.55383],[44.61341,37.54512],[44.60655,37.53967],[44.60037,37.51353],[44.58663,37.50863],[44.59968,37.49556],[44.60586,37.48466],[44.60037,37.47485],[44.58595,37.47376],[44.58732,37.46068],[44.58526,37.45033],[44.57908,37.44815],[44.58595,37.43997],[44.61959,37.43779],[44.63745,37.42252],[44.6347,37.41979],[44.65667,37.4007],[44.6553,37.38652],[44.68345,37.38161],[44.68689,37.38489],[44.7219,37.37725],[44.7219,37.3647],[44.72534,37.35323],[44.73289,37.35105],[44.73289,37.34341],[44.75006,37.33304],[44.76722,37.33085],[44.7995,37.30846],[44.8146,37.28334],[44.81323,37.27022],[44.80361,37.25875],[44.79538,37.25492],[44.78782,37.25656],[44.7631,37.23688],[44.75761,37.22759],[44.76173,37.22322],[44.75967,37.20736],[44.76722,37.1915],[44.76654,37.18329],[44.78302,37.1718],[44.78645,37.16031],[44.78439,37.15648],[44.7837,37.14608],[44.77066,37.15593],[44.76928,37.16688],[44.75761,37.16961],[44.75349,37.1636],[44.73495,37.16797],[44.7171,37.17508],[44.69856,37.17071],[44.69238,37.17673],[44.67315,37.1718],[44.64843,37.18876],[44.62371,37.18822],[44.61959,37.18001],[44.60037,37.1718],[44.60105,37.16688],[44.58183,37.1625],[44.57634,37.16524],[44.55986,37.14991],[44.5578,37.13951],[44.55024,37.13678],[44.54818,37.13076],[44.55368,37.12473],[44.5475,37.1209],[44.52484,37.12254],[44.52415,37.11652],[44.51522,37.11214],[44.51797,37.10228],[44.49256,37.08859],[44.48501,37.08914],[44.46647,37.07435],[44.44793,37.07325],[44.44244,37.06668],[44.42665,37.06504],[44.41635,37.05462],[44.40261,37.05243],[44.39918,37.05791],[44.39437,37.05024],[44.38476,37.0601],[44.35867,37.05243],[44.34768,37.04202],[44.36622,37.02558],[44.3518,37.02119],[44.33876,37.00913],[44.32983,36.99761],[44.32708,36.98774],[44.31541,36.98445],[44.3058,36.97293],[44.31266,36.96854],[44.30992,36.96251],[44.28932,36.97732],[44.27009,36.97513],[44.25087,36.9828],[44.25361,36.98884],[44.25293,36.99871],[44.24881,37.00035],[44.24194,37.01187],[44.23713,37.01242],[44.22409,37.03435],[44.23439,37.03983],[44.22683,37.05682],[44.21653,37.0623],[44.21585,37.06668],[44.19181,37.08092],[44.19456,37.09352],[44.18426,37.09681],[44.18289,37.10667],[44.20143,37.11981],[44.20486,37.1324],[44.2131,37.13568],[44.22271,37.15867],[44.23507,37.16141],[44.24949,37.15703],[44.27764,37.16633],[44.28039,37.18822],[44.27627,37.19642],[44.27421,37.19423],[44.26666,37.19806],[44.2646,37.20408],[44.27078,37.20955],[44.26803,37.24563],[44.25224,37.25],[44.24194,37.26968],[44.23027,37.28224],[44.20967,37.28115],[44.18838,37.29426],[44.17327,37.29699],[44.16366,37.30355],[44.15199,37.30246],[44.14375,37.31119],[44.12658,37.31939],[44.12521,37.32321],[44.10324,37.31611],[44.06684,37.31502],[44.06204,37.32157],[44.0538,37.32048],[44.03183,37.32539],[44.02427,37.31829],[44.01947,37.32812],[43.99749,37.30955],[43.992,37.29754],[43.95286,37.29262],[43.95698,37.27186],[43.94325,37.26858],[43.94599,37.25875],[43.94187,37.24946],[43.9302,37.24618],[43.93775,37.2418],[43.92471,37.23634],[43.91922,37.22267],[43.88694,37.22212],[43.85192,37.22486],[43.84162,37.21173],[43.84368,37.209],[43.84025,37.2008],[43.83132,37.19423],[43.81759,37.21119],[43.80798,37.2254],[43.79081,37.22923],[43.77777,37.22704],[43.74618,37.23415],[43.74618,37.22978],[43.74069,37.22868],[43.72146,37.2336],[43.70567,37.2336],[43.70636,37.23032],[43.68782,37.23415],[43.68095,37.22759],[43.65486,37.22322],[43.65005,37.2254],[43.64318,37.21884],[43.61915,37.22267],[43.61572,37.23415],[43.60679,37.23907],[43.59443,37.2336],[43.58413,37.23907],[43.57933,37.25164],[43.56491,37.25711],[43.55735,37.25328],[43.52233,37.24727],[43.51341,37.23907],[43.50585,37.24344],[43.49624,37.2429],[43.49212,37.24782],[43.47496,37.25274],[43.47564,37.26312],[43.45916,37.27022],[43.44062,37.27405],[43.41316,37.28388],[43.40766,37.29372],[43.40286,37.29153],[43.38913,37.29863],[43.38913,37.30628],[43.3699,37.30846],[43.37196,37.3172],[43.36441,37.32212],[43.36029,37.32758],[43.32801,37.32648],[43.31771,37.31775],[43.31703,37.30628],[43.30261,37.303],[43.28956,37.31229],[43.27034,37.31447],[43.27034,37.32921],[43.24836,37.33085],[43.24356,37.34232],[43.236,37.34723],[43.21884,37.34668],[43.20098,37.34996],[43.1948,37.35705],[43.18794,37.35978],[43.16803,37.35815],[43.16597,37.35978],[43.16116,37.35869],[43.15979,37.36251],[43.15223,37.3707],[43.14125,37.37288],[43.1385,37.37015],[43.12614,37.37288],[43.12202,37.37124],[43.11035,37.37288],[43.10142,37.36688],[43.06983,37.36688],[43.06228,37.35651],[43.02177,37.35323],[43.02108,37.34341],[43.0101,37.33249],[42.99018,37.32812],[42.9895,37.32594],[42.97233,37.32594],[42.95791,37.31283],[42.95517,37.31174],[42.94761,37.31939],[42.93319,37.31993],[42.92083,37.32812],[42.90573,37.33031],[42.8968,37.32812],[42.87963,37.3385],[42.87071,37.33795],[42.86384,37.34505],[42.84805,37.34832],[42.83638,37.34232],[42.82745,37.34941],[42.82127,37.36142],[42.82608,37.36142],[42.82539,37.37124],[42.78831,37.37997],[42.7835,37.37616],[42.77938,37.37616],[42.76977,37.36142],[42.7526,37.34887],[42.74437,37.34614],[42.73956,37.3374],[42.73201,37.33522],[42.73475,37.33031],[42.73201,37.32266],[42.73613,37.32048],[42.73201,37.3172],[42.72651,37.32048],[42.72445,37.31502],[42.70935,37.30737],[42.69973,37.31065],[42.68737,37.30901],[42.69218,37.30027],[42.69012,37.29535],[42.69561,37.2959],[42.69561,37.29153],[42.68875,37.28825],[42.68257,37.2806],[42.68531,37.28006],[42.68119,37.26913],[42.67639,37.26913],[42.67707,37.27405],[42.65991,37.27295],[42.65991,37.26858],[42.65235,37.26749],[42.65785,37.26257],[42.65029,37.25602],[42.65579,37.24618],[42.64686,37.2429],[42.64755,37.23688],[42.63931,37.2347],[42.62832,37.22431],[42.6297,37.21884],[42.62283,37.2172],[42.61596,37.21884],[42.61665,37.21501],[42.61253,37.21501],[42.61871,37.20572],[42.59948,37.19095],[42.59674,37.1811],[42.58918,37.1718],[42.58438,37.1718],[42.58369,37.16414],[42.5782,37.15758],[42.58163,37.14663],[42.57408,37.1417],[42.5624,37.14718],[42.54798,37.14937],[42.54112,37.14335],[42.52807,37.14499],[42.52327,37.1417],[42.50953,37.1428],[42.50747,37.13842],[42.50198,37.13459],[42.47657,37.13678],[42.47108,37.14116],[42.46559,37.1417],[42.44773,37.1324],[42.44224,37.13349],[42.44087,37.12857],[42.42851,37.12802],[42.40997,37.12035],[42.4086,37.11324],[42.40242,37.11324],[42.38731,37.10995],[42.3722,37.11597],[42.36804,37.11823],[42.36203,37.11488],[42.36122,37.11159],[42.35783,37.10964],[42.3589,37.10704],[42.35723,37.10608],[42.35304,37.09816],[42.3533,37.09664],[42.35301,37.09547],[42.35254,37.0947],[42.35176,37.09383],[42.35071,37.09305],[42.35017,37.09197],[42.34976,37.09079],[42.34972,37.08962],[42.35045,37.08793],[42.3514,37.08682],[42.35213,37.08584],[42.35312,37.08505],[42.35469,37.08439],[42.35746,37.08388],[42.36064,37.08287],[42.36166,37.0822],[42.36488,37.08129],[42.36616,37.08055],[42.3676,37.07995],[42.36878,37.07991],[42.37084,37.07922],[42.37233,37.07901],[42.37395,37.07894],[42.37551,37.07863],[42.37611,37.07788],[42.37632,37.07678],[42.37577,37.07547],[42.37469,37.07416],[42.37323,37.0711],[42.37213,37.06931],[42.37043,37.06768],[42.10755,36.83468],[41.99656,36.73578],[41.88586,36.6367],[41.81716,36.58777],[41.60899,36.55612],[41.39944,36.52377],[41.34007,36.43451],[41.28244,36.34767],[41.28456,36.29631],[41.2728,36.18192],[41.26425,36.12075],[41.25574,36.05957],[41.31272,35.95129],[41.34116,35.89713],[41.36955,35.84296],[41.3782,35.7067],[41.38222,35.62549],[41.26806,35.48472],[41.26547,35.38139],[41.22027,35.25888],[41.21788,35.20069],[41.20874,35.14277],[41.21815,34.96068],[41.22751,34.7786],[41.12249,34.6536],[41.06868,34.54918],[41.01527,34.44458],[41.00434,34.43667],[40.98361,34.41245],[40.97774,34.39802],[40.64011,34.31517],[40.17865,34.08475],[39.71788,33.85148],[39.25437,33.61394],[38.7936,33.37468],[39.08623,32.50159],[38.98599,32.47766],[39.04367,32.30411],[39.25999,32.35559],[39.28074,32.29285],[39.30115,32.23026],[39.20093,32.15428],[39.19539,32.14982],[39.1653,32.12835],[39.12623,32.09806],[39.06709,32.05155],[39.03983,32.03019],[38.99592,31.99646],[38.40619,31.85664],[38.06776,31.77281],[37.47939,31.62067],[37.00089,31.50011],[37.41118,31.0953],[37.49933,31.00695],[37.56585,30.94509],[37.7449,30.7672],[37.74773,30.76329],[37.75262,30.75496],[37.75956,30.74626],[37.7713,30.73225],[37.89281,30.60815],[37.99715,30.5006],[37.76268,30.38346],[37.66554,30.33265],[37.63762,30.27875],[37.62927,30.26205],[37.59404,30.18937],[37.55197,30.10062],[37.51849,30.0347],[37.50011,30.00013],[37.4565,29.99068],[37.2191,29.95033],[36.75338,29.86833],[36.68781,29.77137],[36.65863,29.72701],[36.60678,29.65135],[36.57194,29.5991],[36.52753,29.53474],[36.51334,29.51488],[36.50453,29.49994],[36.28675,29.34332],[36.2225,29.29701],[36.15876,29.25055],[36.07009,29.18503],[36.00492,29.19323],[35.91549,29.20821],[35.77942,29.23248],[35.76154,29.23485],[35.75414,29.23565],[35.67668,29.2463],[35.59647,29.26006],[35.5163,29.27367],[35.50759,29.27466],[35.50184,29.27501],[35.45647,29.28111],[35.36924,29.29449],[35.21643,29.31895],[35.06789,29.34286],[35.05677,29.34419],[35.0271,29.34912],[35.0214,29.34992],[34.9998,29.35213],[34.99878,29.35233],[34.99226,29.35282],[34.98475,29.35366],[34.9763,29.35472],[34.96726,29.35624],[34.95777,29.35742],[34.89532,29.3726],[34.90225,29.49005],[34.90361,29.49353],[34.89535,29.51258],[34.88485,29.52762],[34.87843,29.54342],[34.87259,29.57943],[34.86709,29.59545],[34.8663,29.59725],[34.86964,29.60215],[34.87697,29.61328],[34.87857,29.64361],[34.85654,29.68794],[34.84986,29.74641],[34.84856,29.75875],[34.82597,29.80722],[34.81424,29.84198],[34.80254,29.8691],[34.79428,29.89025],[34.78856,29.90604],[34.78297,29.91918],[34.77555,29.94155],[34.7683,29.96163],[34.76407,29.97368],[34.75522,29.99713],[34.74782,30.02018],[34.7338,30.05372],[34.70673,30.11771],[34.65091,30.26546],[34.63467,30.30857],[34.61145,30.37105],[34.54343,30.413],[34.54177,30.44205],[34.55755,30.4948],[34.51856,30.53254],[34.51661,30.54656],[34.51879,30.59244],[34.49696,30.67964],[34.40336,30.85926],[34.3467,31.00636],[34.33949,31.02413],[34.33229,31.03996],[34.2399,31.29595],[34.23552,31.29648],[34.22669,31.3107],[34.21791,31.32478],[19,35],[19,40],[19.75,40],[19.96902,39.79482],[19.95391,39.68605],[20.00061,39.68076],[20.00885,39.69239],[20.03082,39.69979],[20.03631,39.69186],[20.06584,39.68869],[20.0782,39.67918],[20.08918,39.68288],[20.09811,39.67072],[20.11047,39.66649],[20.12901,39.65592],[20.15098,39.65487],[20.1757,39.64799],[20.18188,39.64905],[20.19287,39.64429],[20.22926,39.64905],[20.21827,39.66491],[20.23132,39.67759],[20.22857,39.68235],[20.23063,39.68552],[20.24505,39.68288],[20.26359,39.67178],[20.26359,39.68552],[20.2684,39.69609],[20.27732,39.70031],[20.2835,39.71194],[20.29998,39.71352],[20.31234,39.72567],[20.32127,39.72937],[20.32127,39.73623],[20.30616,39.74573],[20.30342,39.75154],[20.29174,39.76527],[20.30754,39.77899],[20.28762,39.80589],[20.3041,39.81592],[20.31646,39.80906],[20.32676,39.81011],[20.35697,39.79851],[20.37551,39.78479],[20.39131,39.78796],[20.39474,39.79376],[20.41397,39.81433],[20.41603,39.84123],[20.38925,39.86969],[20.38238,39.88181],[20.38444,39.89077],[20.37071,39.89446],[20.35972,39.91342],[20.35354,39.91342],[20.33706,39.92448],[20.34599,39.94606],[20.33432,39.96238],[20.32745,39.96449],[20.3247,39.97343],[20.31921,39.97448],[20.31234,39.99079],[20.33775,39.99185],[20.37483,39.98922],[20.37895,39.99342],[20.39131,39.99658],[20.39955,40.00763],[20.39817,40.01604],[20.41122,40.02866],[20.41397,40.03865],[20.40985,40.04916],[20.42221,40.06125],[20.44898,40.07386],[20.46478,40.07386],[20.47576,40.06546],[20.4895,40.06388],[20.50735,40.07649],[20.51078,40.0828],[20.54992,40.06546],[20.5973,40.07124],[20.62339,40.08962],[20.64125,40.09015],[20.66665,40.09698],[20.67626,40.09645],[20.67695,40.12586],[20.68519,40.14266],[20.69412,40.15158],[20.67626,40.1668],[20.68244,40.18307],[20.67832,40.18884],[20.70716,40.19985],[20.71334,40.21139],[20.72227,40.21558],[20.72364,40.22659],[20.72158,40.25385],[20.71334,40.25699],[20.70716,40.26747],[20.71472,40.28423],[20.73051,40.29576],[20.73394,40.31042],[20.76416,40.32142],[20.7566,40.33189],[20.76553,40.3434],[20.77583,40.34968],[20.77583,40.35596],[20.78407,40.35753],[20.79162,40.36224],[20.79231,40.38421],[20.7875,40.3999],[20.79299,40.41401],[20.78407,40.42499],[20.79574,40.43492],[20.81291,40.44067],[20.81634,40.43858],[20.82321,40.44067],[20.82252,40.44642],[20.82801,40.45008],[20.83213,40.46418],[20.84312,40.47933],[20.85754,40.47829],[20.87196,40.47045],[20.87677,40.47306],[20.90629,40.47515],[20.91659,40.47045],[20.91796,40.46732],[20.92689,40.46262],[20.95161,40.46784],[20.95367,40.47306],[20.95985,40.48351],[20.96672,40.48769],[20.96946,40.49918],[20.96328,40.5091],[20.96946,40.52058],[20.9777,40.52006],[20.97908,40.52476],[21.00036,40.53676],[20.99762,40.54146],[21.00517,40.55241],[21.02371,40.55607],[21.04087,40.55711],[21.04362,40.56702],[21.04568,40.57328],[21.04019,40.59101],[21.04362,40.59414],[21.04705,40.60248],[21.04431,40.61395],[21.05529,40.61708],[21.05186,40.63532],[21.05735,40.66553],[21.04293,40.68272],[21.02645,40.70718],[21.01135,40.72124],[20.988,40.73269],[20.98251,40.73893],[20.98526,40.75141],[20.98045,40.76286],[20.97084,40.76338],[20.96534,40.76858],[20.95642,40.77066],[20.97633,40.78106],[20.98388,40.79197],[20.98388,40.85433],[21.12121,40.85381],[21.1473,40.8564],[21.1576,40.85848],[21.16104,40.86419],[21.17065,40.86835],[21.17683,40.8751],[21.19743,40.87769],[21.20498,40.88444],[21.24275,40.87458],[21.25167,40.86264],[21.26129,40.85952],[21.2709,40.86627],[21.28532,40.86419],[21.31553,40.86783],[21.31965,40.87043],[21.32789,40.87094],[21.35192,40.87769],[21.36085,40.87873],[21.41647,40.91818],[21.4405,40.91662],[21.46522,40.90676],[21.48994,40.91247],[21.51878,40.90884],[21.52496,40.91039],[21.53183,40.90624],[21.53938,40.89431],[21.54762,40.89067],[21.55174,40.88237],[21.56547,40.87666],[21.5689,40.86731],[21.58607,40.86939],[21.59225,40.86627],[21.60324,40.88081],[21.6101,40.87925],[21.61972,40.88912],[21.62796,40.88756],[21.63482,40.89638],[21.64787,40.90105],[21.67121,40.90053],[21.66709,40.9187],[21.67121,40.92804],[21.68151,40.93322],[21.68289,40.93997],[21.70555,40.94308],[21.73095,40.93063],[21.73713,40.93115],[21.7543,40.92804],[21.75361,40.92544],[21.77146,40.92855],[21.78485,40.92881],[21.79618,40.94126],[21.80511,40.94412],[21.8003,40.95812],[21.79962,40.97575],[21.81884,40.98819],[21.83326,40.99441],[21.84425,40.99596],[21.84974,41.00322],[21.84768,41.00684],[21.86004,41.01824],[21.8827,41.02705],[21.88201,41.04155],[21.89849,41.03896],[21.9136,41.05036],[21.90948,41.05605],[21.90879,41.06433],[21.90399,41.06899],[21.91017,41.08452],[21.91017,41.09177],[21.92253,41.09591],[21.93214,41.10419],[21.94999,41.11195],[21.95549,41.11867],[21.96235,41.11712],[21.97403,41.13005],[21.99256,41.12695],[22.02896,41.13367],[22.0475,41.14815],[22.0578,41.14815],[22.0626,41.16056],[22.08183,41.15074],[22.07908,41.14557],[22.09419,41.13677],[22.09693,41.13833],[22.11479,41.13315],[22.12852,41.12333],[22.14843,41.12798],[22.15599,41.14039],[22.16354,41.14453],[22.17109,41.15797],[22.19375,41.16314],[22.20611,41.16159],[22.2171,41.17038],[22.23907,41.16366],[22.26997,41.16366],[22.27546,41.15435],[22.28439,41.15642],[22.30499,41.14557],[22.32147,41.15022],[22.32147,41.14298],[22.32627,41.13109],[22.32627,41.12126],[22.33314,41.12126],[22.33245,41.12747],[22.34962,41.13626],[22.36404,41.13315],[22.36816,41.13833],[22.38876,41.13264],[22.40387,41.13781],[22.40181,41.12953],[22.41622,41.11919],[22.45811,41.12022],[22.46635,41.11712],[22.47047,41.12022],[22.51716,41.12747],[22.56111,41.13109],[22.57278,41.11971],[22.59269,41.11764],[22.61741,41.13367],[22.64213,41.16108],[22.64625,41.17968],[22.66548,41.18692],[22.70942,41.13988],[22.71766,41.1435],[22.73277,41.14557],[22.74787,41.16263],[22.75749,41.25819],[22.76092,41.26542],[22.7568,41.27522],[22.76573,41.29328],[22.75886,41.29792],[22.7568,41.30876],[22.76573,41.32526],[22.7877,41.32784],[22.79937,41.34021],[22.80761,41.33866],[22.81105,41.34227],[22.82203,41.33557],[22.88932,41.34176],[22.93602,41.33815],[22.95181,41.35207],[22.96348,41.35361],[22.96485,41.37062],[22.96279,41.38093],[22.96691,41.3938],[22.96073,41.40926],[22.95455,41.41235],[22.95249,41.41904],[22.96348,41.4314],[22.96829,41.4314],[22.97996,41.44735],[22.96417,41.46537],[22.96623,41.47566],[22.96073,41.47926],[22.95867,41.4952],[22.96966,41.50394],[22.97103,41.51783],[22.96348,41.52348],[22.95867,41.53685],[22.96005,41.54199],[22.96897,41.5425],[22.96966,41.55483],[22.97309,41.56305],[22.96691,41.56768],[22.96485,41.57847],[22.95936,41.58566],[22.95249,41.58566],[22.94975,41.59952],[22.95455,41.618],[22.95249,41.62776],[22.947,41.63186],[22.95112,41.64315],[22.96623,41.64931],[22.98339,41.64777],[22.98545,41.65239],[22.98133,41.65649],[22.98614,41.65854],[22.99369,41.67393],[23.0088,41.68419],[23.02185,41.70214],[23.02734,41.70367],[23.03283,41.7088],[23.03077,41.72879],[23.02047,41.74826],[23.01498,41.75082],[23.01429,41.75748],[23.00674,41.76926],[22.99369,41.7667],[22.9882,41.77233],[22.97035,41.77182],[22.96142,41.77694],[22.96623,41.78104],[22.96485,41.78872],[22.94151,41.81533],[22.94288,41.82813],[22.93533,41.84399],[22.93739,41.84756],[22.93121,41.85063],[22.92709,41.86495],[22.9113,41.87774],[22.90168,41.8762],[22.89619,41.89921],[22.89825,41.90278],[22.89001,41.91914],[22.88246,41.9222],[22.87422,41.93701],[22.87765,41.94365],[22.87353,41.95591],[22.87765,41.97684],[22.8749,41.97786],[22.8749,41.99726],[22.8646,42.00338],[22.86735,42.01665],[22.86598,42.02277],[22.85705,42.02226],[22.85224,42.02532],[22.84469,42.02022],[22.82615,42.02124],[22.81654,42.02685],[22.79869,42.04725],[22.79319,42.03756],[22.74856,42.04623],[22.73414,42.04725],[22.72796,42.05898],[22.71766,42.06815],[22.69844,42.06407],[22.67509,42.06407],[22.6696,42.06917],[22.63046,42.09363],[22.61879,42.0972],[22.61192,42.09567],[22.60093,42.0972],[22.59063,42.11095],[22.58308,42.10841],[22.5666,42.11758],[22.54875,42.13489],[22.52746,42.13896],[22.52334,42.14711],[22.50961,42.15475],[22.5151,42.15831],[22.50686,42.16951],[22.50137,42.18884],[22.50343,42.19291],[22.48558,42.20207],[22.46978,42.20207],[22.46635,42.21071],[22.44781,42.23614],[22.44918,42.24224],[22.43957,42.24681],[22.43408,42.25698],[22.42446,42.25545],[22.42309,42.2646],[22.41897,42.26562],[22.39975,42.2834],[22.40181,42.29051],[22.38945,42.29559],[22.37846,42.3088],[22.35923,42.31133],[22.36679,42.32403],[22.40043,42.32707],[22.40455,42.33266],[22.4176,42.3291],[22.42309,42.33367],[22.43339,42.32301],[22.443,42.33063],[22.45262,42.33113],[22.4636,42.34382],[22.46086,42.36361],[22.46978,42.37528],[22.48008,42.38035],[22.47734,42.39405],[22.50755,42.3981],[22.51442,42.39608],[22.51922,42.3976],[22.5254,42.41686],[22.53433,42.42142],[22.54325,42.4498],[22.54463,42.46449],[22.56042,42.48323],[22.54669,42.50602],[22.52128,42.52778],[22.51236,42.52727],[22.49931,42.53486],[22.49038,42.54701],[22.47528,42.55409],[22.47184,42.56117],[22.44918,42.56673],[22.43888,42.56572],[22.44026,42.58999],[22.44987,42.59707],[22.45124,42.61425],[22.45811,42.62183],[22.45742,42.63143],[22.46429,42.63395],[22.46635,42.64052],[22.45399,42.6481],[22.46017,42.6486],[22.4588,42.65618],[22.46566,42.65921],[22.47596,42.67486],[22.46978,42.68243],[22.46154,42.68243],[22.45811,42.6895],[22.46978,42.69353],[22.47528,42.71019],[22.48695,42.72229],[22.49519,42.7228],[22.49656,42.7339],[22.50206,42.73944],[22.48695,42.75003],[22.47665,42.76818],[22.46017,42.77927],[22.45605,42.79338],[22.44781,42.79792],[22.44712,42.80396],[22.43957,42.80547],[22.43957,42.82361],[22.46566,42.83418],[22.47047,42.83116],[22.48008,42.83519],[22.50068,42.8513],[22.50686,42.85079],[22.51579,42.85885],[22.51716,42.86891],[22.52197,42.87646],[22.53021,42.87848],[22.53707,42.882],[22.57527,42.86319],[22.57244,42.87571],[22.57862,42.883],[22.58411,42.89181],[22.59132,42.8908],[22.59716,42.89457],[22.60265,42.89256],[22.61776,42.89659],[22.64076,42.87797],[22.64762,42.88049],[22.65277,42.883],[22.66033,42.88275],[22.66651,42.87747],[22.67234,42.87571],[22.67715,42.86589],[22.6823,42.86766],[22.68127,42.87193],[22.695,42.87873],[22.69638,42.88451],[22.70118,42.88426],[22.70462,42.88049],[22.71217,42.88653],[22.72144,42.88502],[22.72831,42.88879],[22.73689,42.88527],[22.74478,42.88627],[22.75337,42.89483],[22.75337,42.89935],[22.75886,42.90187],[22.76195,42.90765],[22.75955,42.91092],[22.76779,42.91771],[22.77362,42.91872],[22.77877,42.93053],[22.77362,42.93581],[22.77465,42.93883],[22.76882,42.94436],[22.7695,42.94938],[22.77706,42.95039],[22.77912,42.95315],[22.78221,42.94988],[22.78392,42.95742],[22.78221,42.96345],[22.78495,42.96973],[22.78392,42.97124],[22.78598,42.97426],[22.78461,42.98154],[22.79766,42.98581],[22.83096,42.99686],[22.85053,43.00615],[22.86323,43.02196],[22.89791,43.03627],[22.89962,43.04831],[22.91027,43.05709],[22.91233,43.06437],[22.91576,43.06713],[22.91851,43.07992],[22.93224,43.08794],[22.95146,43.0917],[22.95558,43.09596],[22.96108,43.09697],[22.98305,43.11176],[22.98614,43.12228],[22.99163,43.12955],[22.99541,43.13982],[22.99369,43.15084],[22.99747,43.1566],[22.99575,43.16186],[22.98614,43.16662],[23.00502,43.1854],[23.00571,43.19266],[23.00056,43.19216],[22.98339,43.20192],[22.96211,43.20667],[22.95009,43.20567],[22.94048,43.20292],[22.93533,43.20943],[22.92949,43.21043],[22.92743,43.21268],[22.92297,43.21443],[22.91988,43.21818],[22.91301,43.22144],[22.90718,43.22094],[22.89653,43.22594],[22.89619,43.23069],[22.89001,43.23419],[22.88452,43.2402],[22.8828,43.24595],[22.87559,43.2487],[22.86941,43.2562],[22.86975,43.26745],[22.8646,43.26895],[22.86254,43.27295],[22.84847,43.2752],[22.84812,43.2787],[22.84263,43.2862],[22.84572,43.29669],[22.83783,43.30194],[22.83748,43.30594],[22.83199,43.31243],[22.82856,43.32043],[22.82684,43.33092],[22.80899,43.33816],[22.80384,43.33791],[22.79525,43.34315],[22.79045,43.35089],[22.78118,43.35813],[22.76916,43.36362],[22.76916,43.3771],[22.75577,43.38034],[22.74684,43.38733],[22.73345,43.38933],[22.72247,43.39606],[22.69844,43.39357],[22.69363,43.39556],[22.69123,43.39407],[22.6799,43.39457],[22.66719,43.40305],[22.66651,43.41302],[22.66067,43.422],[22.66136,43.42599],[22.63904,43.43322],[22.62908,43.42873],[22.62085,43.42923],[22.59716,43.43621],[22.5896,43.4422],[22.58789,43.45167],[22.57484,43.46413],[22.55321,43.46214],[22.5333,43.47135],[22.5333,43.47833],[22.52471,43.48531],[22.52403,43.49676],[22.51339,43.50523],[22.51373,43.50971],[22.50686,43.51619],[22.50137,43.52988],[22.50343,43.53983],[22.49416,43.5478],[22.4897,43.55626],[22.48798,43.56845],[22.49622,43.58312],[22.48661,43.59083],[22.49347,43.60152],[22.48729,43.61992],[22.48111,43.62464],[22.49141,43.63408],[22.4897,43.64253],[22.48386,43.64601],[22.48043,43.6547],[22.45777,43.66066],[22.43991,43.67358],[22.42069,43.68053],[22.42069,43.685],[22.40696,43.69692],[22.40627,43.70759],[22.40215,43.72322],[22.39391,43.72992],[22.39906,43.73885],[22.39872,43.75423],[22.40318,43.75919],[22.39322,43.76092],[22.37777,43.77431],[22.35717,43.8105],[22.36061,43.82288],[22.3661,43.82536],[22.37915,43.84591],[22.38876,43.88255],[22.3946,43.90902],[22.38842,43.92485],[22.39185,43.93103],[22.40901,43.93943],[22.4073,43.94759],[22.41142,43.95649],[22.41142,43.96242],[22.41382,43.97181],[22.41142,43.98071],[22.40867,43.98293],[22.40833,43.98886],[22.41657,43.99256],[22.41004,44.00343],[22.42412,44.00664],[22.44129,44.01084],[22.44232,44.01652],[22.46841,44.01528],[22.48352,44.01997],[22.49519,44.01849],[22.52265,44.01899],[22.53295,44.02145],[22.53295,44.02516],[22.5381,44.0254],[22.54394,44.0338],[22.53742,44.03873],[22.54257,44.04194],[22.53089,44.0486],[22.53501,44.0528],[22.55424,44.05329],[22.55973,44.05773],[22.58033,44.05428],[22.58274,44.06168],[22.61947,44.06366],[22.6181,44.06859],[22.62462,44.07377],[22.61432,44.0787],[22.61982,44.0824],[22.61913,44.09744],[22.60952,44.10509],[22.61913,44.14797],[22.61741,44.15018],[22.62119,44.15068],[22.62702,44.14674],[22.62668,44.15388],[22.6284,44.15831],[22.62531,44.15881],[22.62222,44.16225],[22.61638,44.16127],[22.61192,44.16595],[22.61638,44.16644],[22.61776,44.17334],[22.62496,44.17063],[22.62771,44.17186],[22.62771,44.17481],[22.63286,44.17432],[22.63629,44.17752],[22.6284,44.18368],[22.63286,44.18466],[22.63698,44.18146],[22.64144,44.18466],[22.64316,44.18786],[22.63801,44.18983],[22.63767,44.19205],[22.64213,44.19303],[22.64694,44.20337],[22.6435,44.20878],[22.65037,44.2078],[22.65312,44.20411],[22.65758,44.20878],[22.66582,44.2142],[22.66513,44.21075],[22.66891,44.20755],[22.66788,44.21198],[22.6744,44.21543],[22.66891,44.22847],[22.68814,44.25503],[22.67303,44.28453],[22.56729,44.30321],[22.52197,44.33956],[22.49176,44.43083],[22.46292,44.44848],[22.45605,44.47691],[22.52059,44.47495],[22.55905,44.49846],[22.57553,44.54252],[22.62359,44.55427],[22.69638,44.51609],[22.76641,44.54252],[22.75131,44.5709],[22.66891,44.61784],[22.60986,44.62175],[22.46841,44.71453],[22.4176,44.70868],[22.38327,44.67548],[22.31872,44.66865],[22.29812,44.64227],[22.27066,44.6237],[22.26242,44.59242],[22.18002,44.48181],[22.11547,44.47887],[22.06054,44.53078],[22.03582,44.54056],[22.02484,44.59144],[22.00286,44.611],[21.996,44.63348],[21.77764,44.66181],[21.72271,44.65204],[21.68563,44.66572],[21.62796,44.66083],[21.61148,44.69892],[21.60049,44.74965],[21.51672,44.77891],[21.3945,44.77696],[21.38351,44.81204],[21.35879,44.82665],[21.36154,44.86657],[21.49887,44.87338],[21.55929,44.89187],[21.54968,44.92689],[21.52221,44.93855],[21.46591,44.95799],[21.44119,44.95993],[21.40548,44.97645],[21.41098,44.98617],[21.36154,45.02306],[21.45492,45.04247],[21.44805,45.058],[21.48376,45.09582],[21.46728,45.10745],[21.47689,45.12392],[21.49887,45.12392],[21.52771,45.13846],[21.51123,45.17429],[21.49337,45.17622],[21.47964,45.19365],[21.43569,45.20332],[21.40274,45.22848],[21.39038,45.21784],[21.29013,45.24588],[21.27502,45.23331],[21.20498,45.26038],[21.20773,45.27295],[21.18988,45.28841],[21.17889,45.32222],[21.15692,45.32415],[21.14318,45.30676],[21.09924,45.29904],[21.08001,45.31835],[21.06216,45.31256],[21.06353,45.32994],[21.01684,45.32704],[21.01135,45.34056],[20.93444,45.38784],[20.92071,45.41676],[20.90286,45.41484],[20.86578,45.43411],[20.88089,45.44857],[20.86853,45.46398],[20.83007,45.48131],[20.77102,45.48324],[20.76828,45.50249],[20.81085,45.51789],[20.8287,45.53425],[20.79025,45.58809],[20.77102,45.58521],[20.76416,45.61019],[20.80398,45.66012],[20.79849,45.69946],[20.80535,45.7474],[20.81909,45.75315],[20.82183,45.77231],[20.78338,45.78763],[20.77102,45.75411],[20.70373,45.75123],[20.68038,45.79721],[20.65979,45.79625],[20.65017,45.81157],[20.65841,45.83262],[20.57876,45.87566],[20.57189,45.90434],[20.51696,45.89574],[20.49911,45.91103],[20.48675,45.9521],[20.44555,45.96928],[20.40298,45.9626],[20.34805,46.00173],[20.35354,46.0065],[20.33843,46.04273],[20.34118,46.04845],[20.3096,46.07323],[20.29861,46.08942],[20.27252,46.09894],[20.26565,46.11227],[20.28282,46.11656],[20.26222,46.12132],[20.26496,46.12608],[20.29724,46.15177],[20.30891,46.15652],[20.3144,46.15129],[20.3556,46.16984],[20.36865,46.1532],[20.38032,46.1589],[20.39611,46.15272],[20.39817,46.15557],[20.42152,46.14558],[20.45929,46.14225],[20.49362,46.17222],[20.49705,46.18933],[20.5252,46.18078],[20.54649,46.17888],[20.59593,46.15034],[20.61241,46.14416],[20.63095,46.12846],[20.63644,46.12655],[20.64605,46.13226],[20.65017,46.14654],[20.66734,46.15272],[20.68313,46.14463],[20.69549,46.15938],[20.70648,46.16128],[20.71472,46.16651],[20.72227,46.18791],[20.73326,46.19361],[20.72639,46.19836],[20.72845,46.20692],[20.76072,46.20597],[20.74905,46.25252],[20.77514,46.27625],[20.78819,46.27293],[20.87402,46.28764],[20.88981,46.27198],[20.92277,46.26296],[20.92552,46.2753],[20.94612,46.2791],[20.95298,46.26629],[20.99006,46.25869],[21.02439,46.26629],[21.03744,46.24872],[21.06559,46.24397],[21.07246,46.25347],[21.07864,46.25252],[21.1013,46.26344],[21.11503,46.30235],[21.14524,46.30425],[21.15142,46.29713],[21.16996,46.29713],[21.17889,46.30567],[21.17408,46.32037],[21.17683,46.33602],[21.19194,46.34029],[21.20086,46.3474],[21.19743,46.37109],[21.20567,46.40425],[21.21734,46.40282],[21.22077,46.41087],[21.22627,46.41371],[21.28532,46.40425],[21.29631,46.40614],[21.28944,46.41371],[21.3121,46.44069],[21.31622,46.4511],[21.29493,46.47711],[21.27571,46.47617],[21.27433,46.48231],[21.2606,46.5017],[21.27639,46.5343],[21.27433,46.54091],[21.27983,46.54611],[21.29081,46.54516],[21.30386,46.56122],[21.30386,46.56594],[21.32034,46.5834],[21.30317,46.59095],[21.31347,46.61737],[21.33064,46.6301],[21.35261,46.63057],[21.36634,46.63859],[21.38214,46.62916],[21.41029,46.62256],[21.41922,46.64519],[21.44119,46.65132],[21.45561,46.66027],[21.45629,46.66781],[21.44462,46.6664],[21.42952,46.68006],[21.42952,46.69419],[21.4508,46.68948],[21.46934,46.69608],[21.49063,46.68713],[21.50848,46.70031],[21.51191,46.71067],[21.52908,46.72103],[21.52633,46.74033],[21.49269,46.75726],[21.48239,46.75868],[21.48994,46.77561],[21.50848,46.7836],[21.52221,46.80758],[21.52015,46.83718],[21.53389,46.83952],[21.54007,46.8461],[21.5586,46.85408],[21.59568,46.86066],[21.60186,46.86864],[21.60186,46.88037],[21.60324,46.8846],[21.6156,46.88694],[21.60667,46.9043],[21.59843,46.90712],[21.59774,46.92775],[21.6053,46.93338],[21.6362,46.93432],[21.65954,46.95541],[21.67465,46.95541],[21.68151,46.96713],[21.66778,46.97135],[21.67945,46.99758],[21.68838,46.99945],[21.68838,47.00273],[21.68083,47.00507],[21.67671,47.01818],[21.65954,47.02192],[21.64856,47.03924],[21.6822,47.04626],[21.68632,47.05421],[21.70349,47.06404],[21.70143,47.06825],[21.71722,47.07479],[21.7131,47.08228],[21.72615,47.09817],[21.77146,47.10892],[21.79275,47.10705],[21.79069,47.12527],[21.79893,47.12948],[21.81404,47.17011],[21.82983,47.17851],[21.84082,47.17617],[21.84494,47.18317],[21.8573,47.18784],[21.85798,47.22003],[21.84631,47.22423],[21.85249,47.24008],[21.8724,47.26338],[21.87995,47.26478],[21.88613,47.27084],[21.88888,47.27876],[21.87721,47.28575],[21.88613,47.29087],[21.89575,47.31741],[21.9239,47.34347],[21.92459,47.35278],[21.93695,47.36301],[21.93695,47.37138],[21.95137,47.37464],[21.96373,47.38021],[21.97471,47.37975],[21.99462,47.38068],[21.996,47.37836],[22.00973,47.37603],[22.02484,47.3923],[22.03651,47.41368],[22.03033,47.42251],[22.03376,47.42855],[22.02621,47.44109],[22.03239,47.4513],[22.0214,47.45409],[22.00698,47.47637],[22.01316,47.50096],[22.02484,47.52183],[22.04544,47.53852],[22.06123,47.52972],[22.07084,47.53806],[22.05436,47.54826],[22.07634,47.56123],[22.09213,47.55753],[22.10517,47.57328],[22.11547,47.57606],[22.12715,47.58995],[22.12783,47.59921],[22.17247,47.59227],[22.18963,47.6094],[22.19787,47.63578],[22.20474,47.65475],[22.20954,47.65475],[22.22053,47.66215],[22.22259,47.68295],[22.23014,47.69266],[22.2583,47.69589],[22.26242,47.71623],[22.2583,47.71946],[22.26242,47.73054],[22.2837,47.73008],[22.31666,47.74255],[22.32215,47.75548],[22.31735,47.76748],[22.32627,47.76748],[22.35031,47.75179],[22.38876,47.74532],[22.41142,47.74763],[22.4121,47.74301],[22.42927,47.7407],[22.42584,47.75132],[22.43202,47.76194],[22.44026,47.79193],[22.44918,47.80347],[22.46841,47.80531],[22.48146,47.80992],[22.53982,47.78132],[22.54875,47.77302],[22.61123,47.77348],[22.61673,47.77717],[22.62977,47.77717],[22.63801,47.78086],[22.64694,47.77855],[22.6696,47.78732],[22.68127,47.78778],[22.7005,47.81638],[22.70805,47.8256],[22.71354,47.83574],[22.73002,47.83666],[22.75474,47.8339],[22.76641,47.84219],[22.7774,47.84311],[22.77191,47.86431],[22.76092,47.86753],[22.76779,47.87997],[22.75543,47.8901],[22.76092,47.89516],[22.79319,47.8924],[22.82821,47.90897],[22.84881,47.90851],[22.88932,47.95176],[22.89688,47.95314],[22.9113,47.95958],[22.9319,47.95912],[22.94769,47.96739],[22.93533,47.99911],[22.92915,47.99911],[22.92022,48.00784],[22.9216,48.01381],[22.92709,48.01932],[22.94494,48.0161],[22.96005,48.00738],[22.96279,48.01197],[22.9779,48.00921],[22.97859,48.00692],[22.99438,48.00508],[22.99644,47.99635],[23.00537,47.99543],[23.01223,47.99221],[23.02459,47.99221],[23.03146,48.00003],[23.05961,48.00416],[23.07334,48.00876],[23.08364,48.006],[23.09257,48.00784],[23.09463,48.01289],[23.09806,48.0161],[23.09257,48.01748],[23.10974,48.03539],[23.10836,48.04044],[23.1015,48.04366],[23.11248,48.05513],[23.10699,48.06844],[23.11729,48.07349],[23.12347,48.07853],[23.12484,48.08266],[23.11523,48.08771],[23.14064,48.09826],[23.14956,48.10284],[23.15231,48.11339],[23.16535,48.11568],[23.1681,48.12118],[23.18183,48.11935],[23.19282,48.09826],[23.23539,48.09321],[23.24089,48.0955],[23.24775,48.09459],[23.25325,48.10192],[23.26973,48.10147],[23.2711,48.08679],[23.28208,48.08266],[23.29307,48.07349],[23.28758,48.07165],[23.27934,48.0611],[23.28758,48.05008],[23.30062,48.04503],[23.3171,48.04503],[23.32672,48.03815],[23.33496,48.03952],[23.34045,48.03631],[23.3329,48.03264],[23.33221,48.02253],[23.34526,48.0184],[23.348,48.0207],[23.3535,48.02024],[23.35693,48.01519],[23.37616,48.01013],[23.37822,48.00462],[23.38645,48.006],[23.40293,48.00095],[23.40499,47.99405],[23.41804,47.98808],[23.43521,47.98946],[23.43933,47.98302],[23.44894,47.98164],[23.45306,47.97521],[23.48396,47.97337],[23.49494,47.96831],[23.50456,47.97015],[23.50662,47.97889],[23.5231,47.99589],[23.5231,47.99957],[23.53134,48.01978],[23.54301,48.01013],[23.554,48.00876],[23.56567,48.00462],[23.58696,48.00416],[23.59314,48.00784],[23.61579,48.0083],[23.62472,48.00278],[23.63159,48.0037],[23.64463,47.99865],[23.64944,47.99038],[23.66798,47.9844],[23.70849,47.99176],[23.7133,47.99176],[23.71742,47.98808],[23.7284,47.99405],[23.75793,47.99543],[23.76617,47.99267],[23.77098,47.99589],[23.78608,47.98808],[23.81012,47.98394],[23.82316,47.97935],[23.83621,47.96464],[23.83483,47.95774],[23.84239,47.95452],[23.84925,47.94026],[23.86848,47.93198],[23.88359,47.94256],[23.90762,47.94509],[23.91483,47.9467],[23.93611,47.94532],[23.95191,47.95636],[23.95362,47.9628],[23.97079,47.96418],[23.97354,47.96602],[23.98109,47.96556],[23.98452,47.9605],[24.00238,47.96188],[24.01062,47.96785],[24.03327,47.94946],[24.06211,47.95406],[24.10263,47.9352],[24.10125,47.93014],[24.11293,47.91588],[24.1452,47.91266],[24.15275,47.9168],[24.16099,47.91634],[24.16511,47.91956],[24.1761,47.91634],[24.19532,47.91772],[24.21936,47.90345],[24.22142,47.89793],[24.23378,47.89793],[24.25643,47.90805],[24.27909,47.90621],[24.29695,47.91266],[24.32441,47.92554],[24.34501,47.91404],[24.38072,47.92692],[24.38278,47.93888],[24.3917,47.949],[24.3917,47.95406],[24.41436,47.9605],[24.43565,47.97107],[24.44801,47.96418],[24.47273,47.96234],[24.51118,47.95084],[24.52697,47.96188],[24.55238,47.9605],[24.56268,47.96785],[24.58259,47.9651],[24.58602,47.95958],[24.5977,47.94716],[24.60113,47.94578],[24.61074,47.95222],[24.6231,47.95176],[24.63134,47.94026],[24.62928,47.93428],[24.63684,47.92922],[24.63684,47.92416],[24.65194,47.91864],[24.65332,47.91035],[24.66087,47.90897],[24.67392,47.89655],[24.66705,47.87536],[24.67254,47.86247],[24.70344,47.85187],[24.70619,47.84035],[24.73434,47.84219],[24.75219,47.82929],[24.75769,47.83804],[24.77897,47.83758],[24.78378,47.82329],[24.82841,47.82099],[24.82017,47.80623],[24.83665,47.79701],[24.83665,47.77994],[24.85107,47.77394],[24.85656,47.76471],[24.87785,47.75179],[24.88609,47.73378],[24.88197,47.72362],[24.93965,47.72916],[24.98703,47.72962],[24.99664,47.72546],[25.00694,47.73378],[25.0399,47.72639],[25.05363,47.74486],[25.06324,47.73978],[25.11611,47.75456],[25.11611,47.76933],[25.14701,47.79147],[25.16693,47.79009],[25.17173,47.79701],[25.16624,47.80854],[25.17929,47.81684],[25.18135,47.82606],[25.20126,47.83851],[25.19989,47.85049],[25.22254,47.86016],[25.22872,47.89286],[25.26718,47.89194],[25.31112,47.91496],[25.34614,47.9145],[25.49858,47.93198],[25.59333,47.9375],[25.62629,47.94808],[25.6565,47.94854],[25.70938,47.9421],[25.71762,47.94164],[25.72036,47.9444],[25.7341,47.94532],[25.73822,47.94118],[25.77598,47.93888],[25.81993,47.95314],[25.82473,47.96372],[25.86113,47.97061],[25.89134,47.96188],[25.90713,47.96418],[25.91537,47.97751],[25.93803,47.97751],[25.95039,47.97153],[26.05957,47.98854],[26.10076,47.97935],[26.11862,47.9821],[26.12548,47.98854],[26.13647,47.98394],[26.18522,47.99405],[26.19964,48.00784],[26.20719,48.02713],[26.21131,48.051],[26.26693,48.07578],[26.27655,48.08679],[26.28616,48.11476],[26.29715,48.13355],[26.31706,48.14867],[26.33148,48.15555],[26.33491,48.1615],[26.32873,48.17799],[26.33216,48.18302],[26.34727,48.18302],[26.34864,48.19126],[26.35826,48.1844],[26.36924,48.19081],[26.37268,48.19813],[26.38366,48.19676],[26.38023,48.19081],[26.38641,48.18669],[26.42143,48.20179],[26.43379,48.19264],[26.43928,48.19401],[26.43241,48.20316],[26.45576,48.20728],[26.45713,48.21277],[26.46675,48.22101],[26.48254,48.21506],[26.49215,48.21826],[26.51481,48.21049],[26.52236,48.2146],[26.52511,48.20865],[26.54846,48.21689],[26.5464,48.22604],[26.57386,48.21964],[26.56906,48.23016],[26.57455,48.24296],[26.58691,48.24754],[26.59515,48.2393],[26.62124,48.23976],[26.61575,48.25028],[26.62674,48.24754],[26.63085,48.26034],[26.64184,48.25897],[26.64321,48.25394],[26.65351,48.25622],[26.65969,48.26445],[26.66656,48.26125],[26.6645,48.24891],[26.68167,48.24845],[26.69197,48.25485],[26.69883,48.26582],[26.70707,48.25485],[26.72493,48.24662],[26.73179,48.24982],[26.7263,48.25759],[26.74278,48.25577],[26.73522,48.24845],[26.73522,48.24525],[26.75994,48.24799],[26.78192,48.24342],[26.78535,48.24845],[26.8087,48.25439],[26.82655,48.24479],[26.83067,48.22558],[26.84234,48.22879],[26.85058,48.23473],[26.85745,48.22924],[26.85882,48.21964],[26.88697,48.20225],[26.91101,48.20271],[26.90345,48.19447],[26.89041,48.19447],[26.90345,48.17982],[26.91856,48.18211],[26.91375,48.19767],[26.93916,48.19996],[26.94877,48.1876],[26.93229,48.1702],[26.93985,48.16196],[26.97212,48.16196],[26.99066,48.15097],[26.9886,48.14593],[26.9728,48.14547],[26.95701,48.15188],[26.95083,48.14638],[26.96594,48.13035],[26.98516,48.12897],[27.00164,48.12118],[27.01744,48.13768],[27.02774,48.13676],[27.02224,48.12622],[27.0298,48.12347],[27.03666,48.13126],[27.04147,48.12897],[27.0346,48.11751],[27.04078,48.10376],[27.02568,48.09],[27.04147,48.08174],[27.0449,48.07073],[27.08061,48.051],[27.08473,48.03447],[27.10739,48.03493],[27.1067,48.02759],[27.09022,48.02253],[27.09022,48.00876],[27.09846,48.006],[27.11769,48.01656],[27.12936,48.01197],[27.11975,48.00278],[27.12799,47.99359],[27.16438,47.99543],[27.15408,47.97429],[27.14172,47.96831],[27.17811,47.94854],[27.15339,47.9237],[27.19802,47.90253],[27.2248,47.84035],[27.24746,47.83574],[27.24678,47.83067],[27.23442,47.82606],[27.22549,47.83251],[27.21656,47.82606],[27.21931,47.81499],[27.23922,47.81684],[27.23785,47.81269],[27.2303,47.79931],[27.24952,47.79516],[27.25364,47.7804],[27.26532,47.77948],[27.26669,47.7624],[27.28042,47.76379],[27.28797,47.7564],[27.27836,47.75225],[27.28591,47.74948],[27.29759,47.75502],[27.29965,47.74948],[27.28797,47.74532],[27.28111,47.73332],[27.29347,47.72731],[27.28866,47.72315],[27.26257,47.72962],[27.25158,47.71761],[27.26944,47.71161],[27.27012,47.70098],[27.28111,47.70098],[27.27493,47.69173],[27.28179,47.6848],[27.2969,47.68064],[27.29415,47.66307],[27.30514,47.66122],[27.31544,47.64272],[27.33261,47.62606],[27.36282,47.61866],[27.37175,47.59968],[27.40539,47.5844],[27.42736,47.58486],[27.43011,47.58162],[27.41912,47.57282],[27.42256,47.56355],[27.4308,47.56401],[27.4253,47.55336],[27.44041,47.54965],[27.43011,47.54733],[27.44659,47.53574],[27.45346,47.5376],[27.45552,47.53574],[27.44453,47.53018],[27.45346,47.5223],[27.4665,47.52832],[27.45483,47.5172],[27.45277,47.50699],[27.46719,47.49818],[27.47543,47.48612],[27.49465,47.4889],[27.49122,47.48287],[27.50701,47.48055],[27.51319,47.49122],[27.51251,47.4773],[27.52143,47.4824],[27.53585,47.47823],[27.53311,47.48797],[27.5386,47.48844],[27.54615,47.47498],[27.5592,47.46477],[27.5695,47.46662],[27.57362,47.45363],[27.56057,47.44852],[27.56057,47.43877],[27.55165,47.42994],[27.56057,47.42297],[27.56881,47.42437],[27.57568,47.40903],[27.58323,47.41043],[27.58255,47.39834],[27.57019,47.39602],[27.56881,47.37557],[27.58255,47.37882],[27.57568,47.36905],[27.59147,47.3658],[27.59422,47.37138],[27.59834,47.36905],[27.59628,47.34719],[27.60658,47.35091],[27.60589,47.33882],[27.61413,47.34161],[27.6155,47.33928],[27.60108,47.33044],[27.58117,47.32998],[27.5901,47.32532],[27.59765,47.31741],[27.60383,47.32486],[27.60932,47.31834],[27.62031,47.32393],[27.62855,47.31182],[27.63954,47.31089],[27.63542,47.30531],[27.64709,47.29879],[27.64709,47.30437],[27.66288,47.3081],[27.67456,47.30065],[27.6773,47.3095],[27.68417,47.28807],[27.68966,47.29133],[27.70546,47.28947],[27.70477,47.30018],[27.7288,47.29506],[27.73704,47.27783],[27.74665,47.2769],[27.74459,47.26292],[27.75695,47.25639],[27.74459,47.25546],[27.75146,47.2522],[27.75695,47.24661],[27.74528,47.24707],[27.75009,47.23915],[27.75901,47.23961],[27.75421,47.23122],[27.77687,47.23169],[27.77137,47.2219],[27.78579,47.21863],[27.77687,47.20417],[27.78785,47.2079],[27.78648,47.19017],[27.80021,47.19064],[27.79747,47.17104],[27.8112,47.16404],[27.80021,47.1533],[27.78717,47.15517],[27.78442,47.15143],[27.79678,47.14816],[27.80021,47.14349],[27.7803,47.14443],[27.78236,47.13929],[27.84484,47.13555],[27.85308,47.12761],[27.84553,47.12154],[27.84004,47.12948],[27.82768,47.12387],[27.83248,47.11733],[27.85652,47.11172],[27.85926,47.10378],[27.87437,47.10845],[27.86956,47.10331],[27.88673,47.09911],[27.87986,47.09209],[27.88948,47.08929],[27.89703,47.07386],[27.9039,47.07666],[27.91694,47.06731],[27.93479,47.06076],[27.9396,47.06544],[27.96089,47.05609],[27.94441,47.05],[27.96295,47.0486],[27.95814,47.04299],[27.97256,47.04439],[27.98492,47.03316],[27.99179,47.03643],[27.99659,47.03456],[27.99522,47.02895],[28.01994,47.02427],[28.02681,47.02895],[28.03779,47.03082],[28.04054,47.02192],[28.05015,47.02567],[28.0529,47.0149],[28.0426,47.01818],[28.03299,47.01209],[28.08036,46.99149],[28.07899,46.984],[28.09684,46.97931],[28.07968,46.96244],[28.09272,46.95494],[28.0989,46.94698],[28.08311,46.9376],[28.11195,46.92166],[28.1044,46.91228],[28.08654,46.9043],[28.09066,46.89633],[28.1147,46.89351],[28.11607,46.87803],[28.10028,46.87145],[28.125,46.85267],[28.11058,46.84375],[28.11676,46.82214],[28.16894,46.78172],[28.19297,46.72668],[28.22799,46.67865],[28.25065,46.61501],[28.23349,46.57868],[28.22181,46.53761],[28.21495,46.49981],[28.25134,46.45914],[28.24653,46.41513],[28.19229,46.35166],[28.20602,46.32132],[28.19572,46.30235],[28.13598,46.27388],[28.14353,46.25204],[28.11607,46.24255],[28.11332,46.20977],[28.13942,46.17745],[28.12088,46.10656],[28.0941,46.07275],[28.10096,46.04225],[28.08792,46.00936],[28.11676,45.94351],[28.125,45.92202],[28.11882,45.90338],[28.11126,45.88188],[28.12774,45.88092],[28.12774,45.86467],[28.10783,45.8618],[28.1147,45.79529],[28.13736,45.77758],[28.15383,45.78332],[28.14422,45.75938],[28.16551,45.73686],[28.171,45.70905],[28.15933,45.70426],[28.17237,45.68075],[28.16001,45.651],[28.17581,45.64764],[28.16001,45.63708],[28.14216,45.62172],[28.11676,45.6246],[28.08929,45.60875],[28.11813,45.57319],[28.15933,45.56887],[28.16413,45.54098],[28.15383,45.50875],[28.18405,45.47602],[28.21151,45.46879],[28.27743,45.44712],[28.28361,45.39989],[28.30284,45.37674],[28.34335,45.32415],[28.56582,45.24733],[28.65646,45.24056],[28.7107,45.22219],[28.79173,45.2396],[28.79241,45.257],[28.76083,45.26473],[28.7519,45.28599],[28.79585,45.29324],[28.80752,45.3087],[28.7828,45.32125],[28.78006,45.32656],[28.81164,45.33766],[28.85009,45.31642],[28.87481,45.31497],[28.93249,45.28068],[28.95034,45.28551],[28.95172,45.30676],[28.96751,45.33139],[28.98468,45.33284],[29.04304,45.35938],[29.05471,45.36034],[29.08218,45.37289],[29.10896,45.37626],[29.12063,45.38205],[29.17831,45.39893],[29.19273,45.41435],[29.22157,45.42062],[29.24629,45.43508],[29.29023,45.42544],[29.32731,45.44857],[29.35615,45.43749],[29.42894,45.4423],[29.43855,45.43459],[29.47906,45.42207],[29.54978,45.40809],[29.59098,45.38928],[29.6521,45.34056],[29.66857,45.30918],[29.67819,45.26908],[29.66377,45.26087],[29.66239,45.24105],[29.6775,45.213],[29.68917,45.19123],[29.7924,45.18344],[39.30908,42.25698]]]}},{"type":"Feature","properties":{"cq_zone_name":"Southwestern Zone of Asia","cq_zone_number":21,"cq_zone_name_loc":[28,53]},"geometry":{"type":"Polygon","coordinates":[[[39.30908,42.25698],[40.00671,43.38109],[40.01632,43.421],[40.0122,43.423],[40.0122,43.42948],[40.02868,43.43746],[40.04035,43.45341],[40.04791,43.48281],[40.0637,43.50623],[40.07331,43.51071],[40.07949,43.51868],[40.08842,43.52316],[40.09597,43.52963],[40.09048,43.55601],[40.09872,43.56198],[40.09872,43.56596],[40.11177,43.57044],[40.13031,43.56496],[40.15777,43.57442],[40.17013,43.57641],[40.21339,43.57541],[40.24292,43.58586],[40.25939,43.58685],[40.27107,43.5774],[40.28137,43.57889],[40.2951,43.57093],[40.29991,43.57143],[40.30609,43.5774],[40.31364,43.57889],[40.32051,43.57591],[40.32463,43.56944],[40.34317,43.56248],[40.35484,43.56447],[40.3878,43.55501],[40.40359,43.55551],[40.41252,43.55252],[40.42076,43.55452],[40.42762,43.55302],[40.43243,43.5575],[40.4393,43.557],[40.44891,43.54904],[40.46745,43.54606],[40.47706,43.54954],[40.50521,43.52565],[40.5162,43.52565],[40.51963,43.52117],[40.52856,43.52117],[40.56358,43.51967],[40.58624,43.53112],[40.5931,43.53162],[40.60752,43.54755],[40.62126,43.55103],[40.62812,43.54904],[40.66108,43.56347],[40.67619,43.55651],[40.67825,43.55053],[40.69198,43.54854],[40.68924,43.54058],[40.69473,43.53411],[40.73867,43.52714],[40.74417,43.52117],[40.75584,43.51967],[40.75653,43.51419],[40.76614,43.5132],[40.77438,43.50573],[40.83068,43.48829],[40.83686,43.48979],[40.84648,43.4878],[40.87806,43.48481],[40.8918,43.48979],[40.89454,43.4873],[40.8918,43.48132],[40.89797,43.47634],[40.90003,43.46836],[40.8918,43.4584],[40.92887,43.44444],[40.92613,43.43347],[40.93093,43.42499],[40.94467,43.4245],[40.94879,43.42051],[40.95771,43.421],[40.98037,43.42599],[40.98449,43.42998],[41.00509,43.43247],[41.02638,43.41003],[41.0353,43.40754],[41.03942,43.39956],[41.04835,43.39457],[41.05247,43.39806],[41.07444,43.38808],[41.07994,43.39057],[41.09642,43.38459],[41.10397,43.39457],[41.10054,43.40105],[41.10603,43.40355],[41.11633,43.39806],[41.13006,43.39806],[41.15341,43.40405],[41.15615,43.38858],[41.16851,43.38309],[41.18087,43.38509],[41.20491,43.38009],[41.22207,43.38159],[41.22963,43.37161],[41.23924,43.36762],[41.23855,43.36113],[41.24954,43.35763],[41.25709,43.36512],[41.277,43.35913],[41.27906,43.34565],[41.28799,43.33766],[41.3031,43.34016],[41.31614,43.33966],[41.3237,43.34815],[41.33949,43.34765],[41.34429,43.35364],[41.35597,43.35813],[41.36146,43.36961],[41.37725,43.36712],[41.39305,43.36612],[41.41159,43.35763],[41.41502,43.34964],[41.41159,43.34615],[41.41021,43.33316],[41.41708,43.33017],[41.41433,43.32367],[41.42395,43.31368],[41.44111,43.30619],[41.4624,43.30919],[41.48849,43.2862],[41.52626,43.2717],[41.54548,43.2707],[41.56333,43.2487],[41.57432,43.2522],[41.58874,43.23419],[41.59217,43.23619],[41.61758,43.22219],[41.63612,43.22169],[41.64505,43.22919],[41.65947,43.2377],[41.678,43.22819],[41.68418,43.21668],[41.70478,43.22119],[41.71165,43.22719],[41.72195,43.2412],[41.7453,43.2387],[41.77276,43.21818],[41.78237,43.22269],[41.80366,43.20167],[41.80984,43.20267],[41.8222,43.21318],[41.83319,43.21418],[41.84829,43.21168],[41.85859,43.22669],[41.86683,43.23369],[41.86134,43.2422],[41.87988,43.2467],[41.88262,43.2507],[41.89773,43.2452],[41.90185,43.23669],[41.8991,43.23119],[41.91627,43.22569],[41.94305,43.22469],[41.95472,43.20467],[41.97052,43.21318],[41.98425,43.21568],[42.00141,43.21368],[42.01103,43.21768],[42.02476,43.21268],[42.03506,43.20267],[42.03781,43.18965],[42.04948,43.18915],[42.05703,43.19566],[42.06939,43.19716],[42.09549,43.21268],[42.1099,43.20968],[42.13188,43.21068],[42.13874,43.21668],[42.16415,43.22319],[42.17788,43.21668],[42.19299,43.21918],[42.19642,43.22669],[42.24655,43.22719],[42.25135,43.21318],[42.29324,43.21168],[42.30629,43.22369],[42.3159,43.21918],[42.33924,43.22018],[42.35092,43.23119],[42.35435,43.2452],[42.38525,43.2447],[42.40997,43.2497],[42.41409,43.2567],[42.44087,43.2507],[42.45185,43.23619],[42.44361,43.22719],[42.45872,43.21218],[42.51091,43.19766],[42.54455,43.17714],[42.59605,43.16963],[42.60154,43.16261],[42.61322,43.16562],[42.62489,43.15761],[42.64411,43.15109],[42.66815,43.13707],[42.67845,43.13757],[42.67295,43.14458],[42.67982,43.15961],[42.67982,43.17263],[42.70523,43.17513],[42.70797,43.17914],[42.73338,43.18214],[42.73819,43.17864],[42.74505,43.18264],[42.74574,43.18465],[42.77595,43.18965],[42.7938,43.18164],[42.79724,43.17363],[42.8144,43.16712],[42.81921,43.17213],[42.86041,43.17864],[42.87689,43.16963],[42.87414,43.16311],[42.88169,43.1551],[42.89749,43.15861],[42.90229,43.1536],[42.93045,43.14859],[42.92289,43.13707],[42.92495,43.12654],[42.93182,43.12303],[42.96684,43.12504],[42.984,43.11702],[42.99018,43.11852],[43.02589,43.09897],[43.03276,43.09195],[43.04306,43.09045],[43.041,43.08443],[43.01765,43.07089],[43.02658,43.04982],[43.0355,43.04179],[43.0355,43.03075],[43.04306,43.02774],[43.087,42.99962],[43.11103,43.00063],[43.11721,42.99159],[43.13232,42.98405],[43.13369,42.97853],[43.13987,42.97802],[43.14331,42.96848],[43.17077,42.96396],[43.18519,42.94536],[43.18382,42.93983],[43.20373,42.93078],[43.23394,42.93129],[43.23738,42.92475],[43.29437,42.9167],[43.30192,42.90816],[43.31771,42.91369],[43.33419,42.8991],[43.33351,42.89005],[43.3596,42.89055],[43.38775,42.90011],[43.41041,42.89357],[43.44543,42.89407],[43.45985,42.88753],[43.47496,42.89055],[43.49144,42.87495],[43.51409,42.8664],[43.54431,42.86439],[43.5601,42.8674],[43.56285,42.86338],[43.57109,42.86338],[43.58619,42.85281],[43.58963,42.84274],[43.60885,42.83368],[43.60611,42.81555],[43.637,42.81303],[43.64318,42.79842],[43.65074,42.7954],[43.67134,42.79842],[43.68164,42.80245],[43.69262,42.7954],[43.68988,42.78633],[43.73039,42.76768],[43.7709,42.76112],[43.80455,42.74247],[43.80798,42.73692],[43.80523,42.72179],[43.78669,42.7001],[43.77708,42.67688],[43.77227,42.67385],[43.75854,42.65466],[43.71391,42.63446],[43.72695,42.62941],[43.74275,42.61829],[43.75511,42.61627],[43.75099,42.60111],[43.76815,42.58948],[43.78807,42.5905],[43.78875,42.59606],[43.81004,42.59808],[43.81622,42.59353],[43.8272,42.59353],[43.83544,42.59808],[43.87321,42.58443],[43.91029,42.57482],[43.91647,42.56673],[43.94325,42.56319],[43.94393,42.55004],[43.95492,42.55206],[43.96316,42.54802],[43.97415,42.55257],[43.97895,42.56269],[43.99269,42.56774],[44.0126,42.59302],[44.05174,42.60465],[44.06684,42.60111],[44.0895,42.60566],[44.11491,42.61728],[44.14993,42.60616],[44.18495,42.62334],[44.19181,42.63446],[44.23233,42.6284],[44.23301,42.64456],[44.23713,42.64608],[44.24057,42.66628],[44.24949,42.68092],[44.27284,42.69505],[44.3003,42.70514],[44.31266,42.72229],[44.3518,42.71019],[44.36142,42.71523],[44.38613,42.71422],[44.39231,42.70666],[44.40742,42.70766],[44.41635,42.71876],[44.49806,42.70312],[44.51831,42.69694],[44.52158,42.70312],[44.50149,42.73591],[44.5111,42.75205],[44.53651,42.75457],[44.55093,42.76516],[44.57771,42.7465],[44.59693,42.75003],[44.63951,42.7465],[44.67796,42.7576],[44.75349,42.71422],[44.74388,42.70514],[44.76654,42.64305],[44.80224,42.61779],[44.82833,42.61779],[44.82421,42.64254],[44.83795,42.67334],[44.85717,42.67688],[44.87159,42.72431],[44.8867,42.74701],[44.97802,42.74549],[45.03364,42.69555],[45.06385,42.69757],[45.08377,42.71069],[45.10574,42.70363],[45.13183,42.71019],[45.15724,42.70716],[45.17372,42.68445],[45.19157,42.66628],[45.21904,42.66022],[45.23895,42.64052],[45.2568,42.60768],[45.28358,42.60717],[45.28495,42.58847],[45.30761,42.56926],[45.31469,42.57405],[45.32409,42.56471],[45.32615,42.55004],[45.33233,42.52677],[45.35224,42.52221],[45.37559,42.53031],[45.39688,42.53841],[45.40443,42.54852],[45.41748,42.55055],[45.43533,42.54043],[45.45043,42.54448],[45.49232,42.53638],[45.52322,42.54498],[45.54313,42.53841],[45.57197,42.54802],[45.59669,42.53183],[45.59875,42.51715],[45.61592,42.50804],[45.63377,42.51007],[45.65094,42.50045],[45.68458,42.50551],[45.69831,42.48222],[45.72303,42.47716],[45.77179,42.48931],[45.77728,42.47412],[45.7759,42.46095],[45.78277,42.44676],[45.7759,42.4422],[45.77316,42.42295],[45.75668,42.40926],[45.75187,42.39506],[45.73814,42.38289],[45.74157,42.36412],[45.74295,42.33266],[45.75599,42.32403],[45.75119,42.30778],[45.7402,42.29458],[45.72303,42.29204],[45.70381,42.2961],[45.6887,42.28492],[45.6681,42.28289],[45.65437,42.29204],[45.61866,42.25342],[45.62278,42.24376],[45.60768,42.23309],[45.61042,42.21122],[45.62347,42.20919],[45.64956,42.18528],[45.6681,42.18833],[45.72303,42.16238],[45.72578,42.15475],[45.74844,42.14864],[45.74226,42.13336],[45.75187,42.12674],[45.76767,42.12776],[45.76904,42.11656],[45.78758,42.10229],[45.80406,42.11554],[45.82809,42.10841],[45.85418,42.11452],[45.88302,42.10382],[45.89881,42.10586],[45.92285,42.08344],[45.91255,42.06305],[45.93383,42.05337],[45.9304,42.03246],[45.94551,42.03654],[45.95512,42.02481],[45.98327,42.04368],[46.00662,42.03807],[46.01966,42.04368],[46.02447,42.02583],[46.04713,42.0192],[46.07048,42.04062],[46.0849,42.00593],[46.10893,41.98654],[46.11305,41.99777],[46.14875,42.00899],[46.15493,41.99267],[46.19133,41.99777],[46.22291,42.01359],[46.23596,42.01563],[46.25724,42.00491],[46.25793,41.99828],[46.25106,41.9942],[46.2442,41.97889],[46.26617,41.98399],[46.26686,41.9697],[46.28471,41.9457],[46.31904,41.92986],[46.33758,41.9457],[46.35681,41.93855],[46.35887,41.93395],[46.39938,41.93855],[46.40487,41.9222],[46.42616,41.91198],[46.45156,41.8941],[46.47834,41.88132],[46.50718,41.88949],[46.53739,41.87978],[46.53808,41.87007],[46.55113,41.86649],[46.55387,41.85728],[46.54975,41.84961],[46.55456,41.8225],[46.58271,41.80407],[46.60194,41.81073],[46.62048,41.82199],[46.61842,41.82915],[46.62666,41.83375],[46.6349,41.82813],[46.66511,41.83733],[46.67747,41.83222],[46.69189,41.83375],[46.707,41.82761],[46.72142,41.82659],[46.7173,41.84756],[46.75918,41.8624],[46.76399,41.84091],[46.7839,41.81584],[46.77085,41.81124],[46.7633,41.79947],[46.79214,41.7795],[46.79008,41.77438],[46.80656,41.76106],[46.83059,41.76004],[46.83265,41.74928],[46.85668,41.73289],[46.86424,41.72059],[46.87179,41.71956],[46.87728,41.72623],[46.8972,41.73289],[46.91299,41.7252],[46.93084,41.70777],[46.9226,41.6847],[46.93153,41.67598],[46.93977,41.67752],[46.94595,41.66316],[46.95694,41.6529],[47.00157,41.64213],[47.00775,41.62673],[46.99333,41.60004],[47.00981,41.58001],[47.02217,41.57744],[47.01942,41.5574],[47.03247,41.56254],[47.05307,41.55689],[47.07023,41.55637],[47.06611,41.57179],[47.11074,41.59387],[47.11212,41.58514],[47.12448,41.58412],[47.11624,41.56922],[47.13203,41.54867],[47.17117,41.53171],[47.17323,41.52143],[47.15675,41.50754],[47.16156,41.49726],[47.18284,41.48697],[47.19245,41.48749],[47.19795,41.4736],[47.19039,41.47],[47.20138,41.46691],[47.20962,41.45353],[47.21923,41.44632],[47.23022,41.45044],[47.24464,41.44684],[47.23365,41.43346],[47.22404,41.4211],[47.23091,41.40874],[47.21649,41.40153],[47.23365,41.40205],[47.24533,41.39741],[47.25563,41.39741],[47.26249,41.38659],[47.27073,41.35207],[47.25837,41.33918],[47.27073,41.32784],[47.28653,41.32681],[47.30644,41.3036],[47.32017,41.30308],[47.37167,41.27522],[47.43278,41.26748],[47.45201,41.27471],[47.47261,41.25716],[47.49733,41.27006],[47.50488,41.26077],[47.50282,41.22979],[47.5344,41.20552],[47.5653,41.19829],[47.56668,41.2112],[47.57492,41.21585],[47.60994,41.21792],[47.62023,41.23805],[47.64701,41.22979],[47.64907,41.22618],[47.68959,41.22721],[47.70057,41.22515],[47.71019,41.21017],[47.72735,41.20707],[47.72804,41.19518],[47.78366,41.18588],[47.79533,41.20655],[47.80906,41.21172],[47.80975,41.21792],[47.82692,41.21946],[47.8482,41.21482],[47.85841,41.22056],[47.88185,41.21895],[47.91137,41.25406],[47.90931,41.2649],[47.91137,41.27574],[47.89077,41.28761],[47.89833,41.29741],[47.93609,41.3134],[47.96836,41.32062],[47.94982,41.35],[47.96287,41.36134],[47.98141,41.35155],[47.98347,41.36238],[48.0027,41.37268],[48.00476,41.3799],[48.00064,41.39793],[48.00544,41.40411],[48.00201,41.40977],[48.00407,41.41955],[48.00201,41.42831],[48.03016,41.43603],[48.06518,41.45816],[48.05351,41.46845],[48.07617,41.50034],[48.09608,41.49263],[48.14003,41.5096],[48.2032,41.50652],[48.24646,41.52297],[48.30001,41.56614],[48.37417,41.58925],[48.414,41.62519],[48.41743,41.64367],[48.43666,41.66778],[48.49365,41.72981],[48.51425,41.74313],[48.55545,41.78052],[48.55613,41.801],[48.56849,41.80407],[48.57948,41.81687],[48.57605,41.82454],[48.58085,41.8312],[48.58017,41.85166],[49,42],[53.90922,37.34778],[54.2443,37.32048],[54.25735,37.32758],[54.28482,37.35214],[54.34799,37.34887],[54.39743,37.36088],[54.43862,37.38816],[54.48463,37.41489],[54.486,37.41925],[54.49424,37.42198],[54.50386,37.42034],[54.51965,37.43397],[54.52926,37.4307],[54.54574,37.44215],[54.5684,37.45033],[54.57801,37.44869],[54.5787,37.45687],[54.59449,37.46014],[54.61166,37.45414],[54.61784,37.44597],[54.62951,37.44815],[54.64736,37.44051],[54.66865,37.4367],[54.6865,37.44597],[54.70642,37.45796],[54.73251,37.49066],[54.75723,37.49229],[54.75929,37.49719],[54.76821,37.49992],[54.77233,37.51462],[54.79774,37.52334],[54.79705,37.55165],[54.80461,37.55165],[54.80941,37.57995],[54.82109,37.60226],[54.81903,37.6126],[54.78813,37.62075],[54.78607,37.63435],[54.79087,37.65066],[54.80667,37.66371],[54.7998,37.67349],[54.80117,37.68056],[54.8101,37.68436],[54.80941,37.68816],[54.82109,37.70229],[54.81491,37.70772],[54.82589,37.72619],[54.841,37.73922],[54.84169,37.74574],[54.85405,37.75062],[54.85267,37.7566],[54.86228,37.75985],[54.87464,37.76908],[54.89181,37.76583],[54.89456,37.77071],[54.91447,37.78482],[54.92889,37.78591],[54.95842,37.80435],[54.95361,37.80707],[54.95567,37.81141],[54.98794,37.82714],[54.99824,37.82822],[54.99343,37.83636],[55.01953,37.84341],[55.02571,37.85317],[55.03807,37.86184],[55.03463,37.87268],[55.03807,37.87973],[55.05455,37.88677],[55.05455,37.8949],[55.08064,37.90574],[55.07926,37.91549],[55.09025,37.91549],[55.09162,37.92199],[55.11634,37.93878],[55.13076,37.95069],[55.15548,37.95177],[55.16853,37.95935],[55.1905,37.95286],[55.19462,37.94744],[55.20217,37.95015],[55.20835,37.96639],[55.21522,37.96747],[55.22552,37.97992],[55.2729,37.99129],[55.29487,38.00265],[55.35255,38.02591],[55.3553,38.03349],[55.39032,38.04052],[55.3965,38.04376],[55.40679,38.04484],[55.43083,38.06377],[55.43975,38.06539],[55.4425,38.07674],[55.45417,38.08647],[55.45349,38.08917],[55.46516,38.09511],[55.48301,38.09349],[55.48782,38.08377],[55.50018,38.08214],[55.52009,38.08863],[55.52352,38.09349],[55.53794,38.09349],[55.5709,38.10106],[55.57914,38.09836],[55.59494,38.107],[55.67115,38.10808],[55.69313,38.10484],[55.70961,38.11349],[55.72883,38.11349],[55.74119,38.12105],[55.76179,38.12753],[55.77964,38.11781],[55.79818,38.11889],[55.80986,38.12591],[55.84831,38.107],[55.88058,38.09566],[55.91972,38.09025],[55.92933,38.09782],[55.94306,38.09349],[55.95611,38.09403],[55.97877,38.07836],[56.03439,38.07674],[56.07627,38.08377],[56.11953,38.09079],[56.17103,38.09241],[56.19232,38.07836],[56.21017,38.07242],[56.23901,38.0735],[56.24656,38.07728],[56.2603,38.07566],[56.28913,38.08539],[56.31935,38.07674],[56.32141,38.08052],[56.33377,38.07782],[56.33651,38.10214],[56.35093,38.11781],[56.34475,38.14211],[56.32827,38.14859],[56.32827,38.15291],[56.31866,38.17883],[56.32965,38.18584],[56.33171,38.19771],[56.40037,38.24195],[56.41067,38.25327],[56.42578,38.25597],[56.44363,38.25974],[56.45462,38.26406],[56.48208,38.26298],[56.48757,38.26675],[56.50199,38.26028],[56.50337,38.2646],[56.50886,38.25867],[56.51916,38.26244],[56.52328,38.26891],[56.53427,38.2619],[56.54731,38.26783],[56.5583,38.26136],[56.5686,38.26406],[56.58851,38.2522],[56.59881,38.2344],[56.60774,38.2344],[56.61598,38.24249],[56.63589,38.24573],[56.64482,38.25759],[56.67572,38.26783],[56.72103,38.26568],[56.73408,38.2743],[56.75125,38.28454],[56.76704,38.26945],[56.78146,38.26514],[56.7897,38.25327],[56.83021,38.2371],[56.84051,38.22955],[56.84806,38.23116],[56.88858,38.21822],[56.89476,38.22092],[56.90506,38.21606],[56.93115,38.21552],[56.96342,38.2112],[56.99295,38.21606],[57.00393,38.19016],[57.03208,38.18206],[57.06298,38.1826],[57.08839,38.1934],[57.10762,38.21714],[57.1495,38.24573],[57.14675,38.25435],[57.15637,38.26244],[57.15568,38.27053],[57.16255,38.27268],[57.16735,38.26837],[57.18315,38.26945],[57.18795,38.27646],[57.21679,38.28023],[57.21885,38.27538],[57.24426,38.27376],[57.25318,38.26244],[57.24426,38.25381],[57.25181,38.24249],[57.25044,38.23116],[57.29301,38.21552],[57.28958,38.20473],[57.29782,38.20311],[57.29644,38.18422],[57.29095,38.17559],[57.30125,38.15129],[57.33558,38.13887],[57.34176,38.11457],[57.35137,38.10916],[57.35549,38.10052],[57.36854,38.09566],[57.36991,38.08809],[57.37678,38.08701],[57.37403,38.07674],[57.37747,38.0562],[57.36305,38.04863],[57.36099,38.02916],[57.36648,38.01996],[57.36236,38.00157],[57.34931,37.98696],[57.38159,37.97776],[57.38502,37.9718],[57.40287,37.97126],[57.4118,37.96098],[57.44613,37.94149],[57.47772,37.93499],[57.48596,37.93824],[57.49832,37.9339],[57.51136,37.91982],[57.52372,37.91928],[57.5354,37.9274],[57.54295,37.92307],[57.55737,37.93228],[57.58003,37.93878],[57.62809,37.92361],[57.65556,37.92632],[57.69058,37.91549],[57.69813,37.92199],[57.72216,37.92415],[57.74345,37.91386],[57.75306,37.89978],[57.7819,37.89815],[57.78602,37.9014],[57.80387,37.89111],[57.80799,37.87593],[57.82722,37.86292],[57.86018,37.87431],[57.89176,37.8716],[57.89382,37.86238],[57.91374,37.86455],[57.92129,37.85425],[57.93159,37.85533],[57.93434,37.84829],[57.94738,37.85154],[57.95288,37.84178],[57.96043,37.84503],[58.00987,37.81575],[58.0236,37.81412],[58.02772,37.80707],[58.06549,37.80273],[58.07235,37.80707],[58.0854,37.80001],[58.09364,37.80273],[58.10188,37.78808],[58.11218,37.79567],[58.12316,37.79622],[58.12385,37.78428],[58.14239,37.78428],[58.15406,37.79296],[58.17329,37.78265],[58.20488,37.77397],[58.21174,37.75443],[58.21792,37.74031],[58.22479,37.73922],[58.22685,37.71804],[58.23303,37.70718],[58.22547,37.69523],[58.22891,37.68327],[58.26599,37.67077],[58.27491,37.67349],[58.29071,37.66479],[58.31611,37.66371],[58.3271,37.6686],[58.34358,37.66316],[58.3477,37.65773],[58.36486,37.65718],[58.36761,37.64794],[58.36761,37.63707],[58.3786,37.63816],[58.38409,37.62837],[58.40469,37.62837],[58.41293,37.63598],[58.44314,37.63217],[58.45069,37.63707],[58.48709,37.63761],[58.49052,37.64685],[58.51249,37.65501],[58.5173,37.67784],[58.53927,37.69686],[58.55781,37.70283],[58.60382,37.68653],[58.61961,37.66262],[58.68347,37.6387],[58.74115,37.63109],[58.74321,37.64903],[58.75556,37.65936],[58.78646,37.64794],[58.7844,37.64468],[58.78784,37.64087],[58.80912,37.65447],[58.80844,37.66642],[58.81874,37.68056],[58.80432,37.69794],[58.82011,37.6974],[58.84414,37.68545],[58.89152,37.65827],[58.94096,37.65338],[59.03572,37.61912],[59.05151,37.62021],[59.07897,37.60008],[59.09202,37.59791],[59.09683,37.58866],[59.10987,37.58431],[59.12498,37.57505],[59.12841,37.56907],[59.14764,37.5609],[59.15657,37.56199],[59.15863,37.55546],[59.17923,37.54131],[59.18541,37.54457],[59.22866,37.51353],[59.23828,37.52061],[59.2733,37.50918],[59.31999,37.52933],[59.35432,37.52824],[59.36256,37.50972],[59.38522,37.49283],[59.39277,37.47867],[59.38316,37.45087],[59.38728,37.44542],[59.39415,37.44869],[59.41406,37.43615],[59.40239,37.42797],[59.38385,37.42089],[59.37835,37.40725],[59.38797,37.37452],[59.3914,37.34232],[59.39964,37.3243],[59.39758,37.31502],[59.41268,37.30792],[59.4326,37.30846],[59.43328,37.29262],[59.45114,37.27842],[59.44908,37.27132],[59.46212,37.26749],[59.47174,37.2511],[59.48204,37.24946],[59.49234,37.23196],[59.48478,37.22158],[59.47517,37.2183],[59.47654,37.21228],[59.49096,37.20791],[59.52804,37.18657],[59.53765,37.18548],[59.53971,37.17727],[59.55276,37.17782],[59.54795,37.16797],[59.54383,37.15703],[59.54795,37.1417],[59.55894,37.13185],[59.57954,37.13185],[59.58435,37.13459],[59.59808,37.1313],[59.61662,37.12309],[59.6228,37.12309],[59.62692,37.11871],[59.64546,37.12145],[59.6537,37.1417],[59.68185,37.1417],[59.72648,37.12747],[59.73335,37.11433],[59.75395,37.10995],[59.76081,37.12638],[59.79995,37.11105],[59.81025,37.10612],[59.81643,37.10667],[59.82948,37.099],[59.83223,37.10119],[59.84321,37.09516],[59.85351,37.07983],[59.87136,37.06778],[59.87823,37.06668],[59.9002,37.05298],[59.90707,37.05134],[59.92218,37.04312],[59.96612,37.04366],[59.98123,37.0464],[60.02037,37.03544],[60.04303,37.02174],[60.08972,36.97238],[60.09109,36.94714],[60.10963,36.91805],[60.13572,36.89554],[60.13572,36.89225],[60.15907,36.86533],[60.15976,36.85819],[60.18653,36.83292],[60.20576,36.82192],[60.214,36.82247],[60.20988,36.81313],[60.22293,36.79554],[60.24765,36.77959],[60.26275,36.76364],[60.26962,36.74108],[60.28541,36.72072],[60.3067,36.67943],[60.33622,36.64252],[60.34378,36.64307],[60.34309,36.62985],[60.49621,36.62599],[60.59921,36.6293],[60.67474,36.62103],[60.87799,36.63371],[61.13754,36.64473],[61.15402,36.63206],[61.1705,36.59458],[61.17187,36.58851],[61.18148,36.58079],[61.17805,36.57197],[61.1856,36.56866],[61.18148,36.55487],[61.18423,36.5466],[61.1753,36.54164],[61.1808,36.5295],[61.16775,36.52012],[61.15882,36.50411],[61.16157,36.4997],[61.15608,36.48534],[61.16912,36.47872],[61.17462,36.45995],[61.15882,36.45332],[61.16706,36.41631],[61.14303,36.39586],[61.14234,36.38701],[61.1547,36.36545],[61.14715,36.34057],[61.1602,36.33172],[61.15951,36.31955],[61.15127,36.3201],[61.16294,36.31235],[61.15745,36.3035],[61.17942,36.27417],[61.19796,36.26088],[61.18835,36.2559],[61.19453,36.2199],[61.2014,36.22045],[61.20689,36.20771],[61.2117,36.19164],[61.2268,36.18555],[61.22406,36.15617],[61.21582,36.14951],[61.22131,36.13953],[61.21238,36.13232],[61.2117,36.12456],[61.22818,36.11957],[61.22749,36.11236],[61.21513,36.11347],[61.2062,36.10182],[61.20826,36.09183],[61.1911,36.07241],[61.18148,36.06464],[61.18423,36.05631],[61.18011,36.0441],[61.16432,36.03688],[61.16363,36.02577],[61.17393,36.00967],[61.165,36.00689],[61.1705,35.99189],[61.14303,35.97856],[61.13067,35.96744],[61.11969,35.96744],[61.11625,35.96077],[61.11969,35.95522],[61.12999,35.96077],[61.14097,35.94855],[61.15539,35.94632],[61.1602,35.94966],[61.20346,35.93409],[61.23504,35.89906],[61.2371,35.86902],[61.25907,35.83395],[61.25839,35.81224],[61.26594,35.79999],[61.25358,35.79331],[61.24671,35.7649],[61.25289,35.75487],[61.24397,35.74038],[61.24603,35.71529],[61.23916,35.71306],[61.23504,35.69968],[61.22749,35.7008],[61.2268,35.69299],[61.21513,35.68128],[61.22543,35.68016],[61.22474,35.65729],[61.22955,35.64334],[61.23573,35.6506],[61.25015,35.64278],[61.25289,35.63274],[61.24603,35.62716],[61.27212,35.61432],[61.27418,35.60595],[61.28242,35.60874],[61.28723,35.61432],[61.31538,35.62158],[61.371,35.62548],[61.37786,35.6199],[61.36756,35.61376],[61.37649,35.59087],[61.39434,35.59199],[61.3916,35.58696],[61.40052,35.58529],[61.39709,35.57635],[61.38542,35.56798],[61.40121,35.55457],[61.41014,35.55289],[61.42387,35.54004],[61.4431,35.53334],[61.45271,35.51881],[61.58866,35.43773],[61.77955,35.41199],[61.96838,35.45395],[62.06451,35.43437],[62.1064,35.38345],[62.15309,35.34089],[62.26638,35.29663],[62.2657,35.28766],[62.27394,35.28654],[62.27531,35.26972],[62.28973,35.25795],[62.28904,35.24001],[62.29522,35.23272],[62.29248,35.22823],[62.29385,35.2215],[62.29179,35.21421],[62.2966,35.20691],[62.29316,35.17942],[62.30209,35.17044],[62.29797,35.15247],[62.3014,35.14181],[62.29866,35.13451],[62.30484,35.12833],[62.33161,35.1491],[62.4765,35.27813],[62.48817,35.27365],[62.49641,35.27533],[62.50671,35.26636],[62.51426,35.26524],[62.52182,35.27365],[62.53006,35.26188],[62.54173,35.25851],[62.55065,35.23664],[62.574,35.23159],[62.57675,35.22206],[62.58361,35.22655],[62.60147,35.22823],[62.6049,35.2372],[62.62619,35.21028],[62.65502,35.23159],[62.67494,35.23159],[62.69279,35.23832],[62.70996,35.2372],[62.72506,35.25122],[62.74292,35.25178],[62.75184,35.27197],[62.76145,35.28766],[62.77862,35.29102],[62.78549,35.30167],[62.82257,35.29943],[62.85553,35.31568],[62.86994,35.33977],[62.87681,35.34705],[62.88574,35.34033],[62.8926,35.34649],[62.89398,35.35881],[62.91252,35.36049],[62.9187,35.36945],[62.9235,35.37001],[62.9338,35.38009],[62.96333,35.38904],[63.00453,35.40864],[63.02375,35.40192],[63.01414,35.41815],[63.03199,35.41367],[63.05191,35.41367],[63.09379,35.42039],[63.09997,35.41871],[63.10203,35.43549],[63.11027,35.44836],[63.11027,35.46905],[63.11714,35.4808],[63.11302,35.49086],[63.11988,35.49254],[63.11233,35.5121],[63.12332,35.51546],[63.12881,35.54451],[63.1137,35.54787],[63.10203,35.55904],[63.10546,35.57468],[63.10958,35.58529],[63.10134,35.59366],[63.0986,35.60539],[63.0931,35.62046],[63.10958,35.62325],[63.11233,35.6333],[63.2476,35.68072],[63.24211,35.70191],[63.21601,35.71418],[63.21052,35.70805],[63.19541,35.71585],[63.18924,35.73257],[63.17413,35.7348],[63.17001,35.74707],[63.14048,35.76657],[63.13911,35.78105],[63.13156,35.79108],[63.13156,35.80166],[63.10958,35.81057],[63.09928,35.81948],[63.1089,35.82338],[63.11439,35.83785],[63.11027,35.84453],[63.12194,35.8462],[63.12881,35.85232],[63.12126,35.85455],[63.11988,35.8629],[63.30528,35.85677],[63.53599,35.90295],[63.56964,35.95188],[63.70216,35.96633],[63.98918,36.03577],[64.06883,35.998],[64.07295,36.00134],[64.06883,36.00745],[64.0702,36.02744],[64.06333,36.02466],[64.05853,36.07074],[64.05921,36.10293],[64.07707,36.10847],[64.09217,36.12844],[64.10247,36.13011],[64.10591,36.12345],[64.12513,36.12955],[64.14573,36.14674],[64.15672,36.14785],[64.1629,36.16171],[64.18968,36.15949],[64.21165,36.16726],[64.23774,36.15173],[64.26178,36.16227],[64.28237,36.15173],[64.31671,36.20771],[64.34967,36.21713],[64.36065,36.22876],[64.3991,36.23208],[64.44442,36.24316],[64.5227,36.30073],[64.57969,36.35052],[64.58862,36.37651],[64.63737,36.44172],[64.61952,36.58355],[64.62226,36.60284],[64.61883,36.63591],[64.70535,36.79663],[64.79873,36.92299],[64.75547,37.11324],[64.99031,37.21884],[65.13244,37.24618],[65.19081,37.23579],[65.22857,37.2511],[65.26771,37.23306],[65.53207,37.23907],[65.64262,37.34286],[65.64674,37.44215],[65.70167,37.53586],[65.70785,37.53967],[65.71884,37.53749],[65.72433,37.54076],[65.74356,37.53967],[65.75866,37.5364],[65.76072,37.55002],[65.7669,37.54893],[65.76347,37.53477],[65.81771,37.50591],[65.88569,37.47649],[65.95298,37.47376],[65.99968,37.4476],[66.04156,37.45469],[66.06971,37.44978],[66.09237,37.4307],[66.1116,37.40561],[66.15554,37.39961],[66.16928,37.36851],[66.194,37.3707],[66.22009,37.36415],[66.2297,37.36742],[66.24893,37.36251],[66.26197,37.34505],[66.31759,37.32157],[66.34025,37.33413],[66.35398,37.32976],[66.36428,37.33467],[66.38557,37.32812],[66.41578,37.34723],[66.43364,37.33959],[66.46316,37.33467],[66.47964,37.32812],[66.54968,37.3505],[66.55311,37.35705],[66.57577,37.36906],[66.59706,37.36797],[66.60804,37.35978],[66.6101,37.34941],[66.6204,37.34123],[66.62178,37.33194],[66.65885,37.32594],[66.69181,37.35596],[66.71379,37.35705],[66.73301,37.36415],[66.744,37.35378],[66.76872,37.36088],[66.80442,37.36415],[66.84768,37.35378],[66.90605,37.37506],[66.94587,37.39907],[67.01042,37.37397],[67.04544,37.38052],[67.08869,37.34887],[67.08732,37.34177],[67.11067,37.32867],[67.10929,37.29153],[67.12371,37.2806],[67.12577,37.27132],[67.14088,37.26858],[67.14225,37.26367],[67.16217,37.25875],[67.18895,37.26039],[67.22808,37.23634],[67.24662,37.21611],[67.2583,37.18384],[67.38464,37.21665],[67.45536,37.23579],[67.48352,37.27077],[67.49794,37.28115],[67.53364,37.26804],[67.53501,37.2582],[67.57209,37.22431],[67.59475,37.22868],[67.6078,37.23743],[67.62428,37.23852],[67.64488,37.22267],[67.65724,37.22814],[67.6799,37.23306],[67.74581,37.21009],[67.78564,37.1718],[67.78564,37.10721],[67.79594,37.08257],[67.84263,37.06613],[67.89138,37.06778],[67.89894,37.06339],[67.90168,37.05408],[67.89207,37.03709],[67.94838,36.99432],[67.95249,36.97129],[67.99781,36.95318],[68.00056,36.93233],[68.02459,36.92354],[68.11935,36.96141],[68.1475,36.99322],[68.18939,37.02119],[68.22372,37.02612],[68.2608,37.00748],[68.28277,37.02503],[68.2917,37.05517],[68.29376,37.09845],[68.30474,37.10612],[68.348,37.10831],[68.37684,37.09845],[68.39744,37.10174],[68.42285,37.11159],[68.46954,37.15375],[68.59451,37.19259],[68.61373,37.19478],[68.95912,37.3172],[69.08958,37.2183],[69.11636,37.17344],[69.23172,37.1094],[69.24682,37.09407],[69.29626,37.11543],[69.32098,37.11597],[69.32991,37.13514],[69.35806,37.15375],[69.36836,37.16469],[69.39926,37.16469],[69.43496,37.20955],[69.48646,37.52116],[69.75975,37.58648],[69.81468,37.56907],[69.8291,37.58811],[69.83596,37.60172],[69.85794,37.60389],[69.86755,37.61205],[69.88678,37.61042],[69.90669,37.6213],[69.92454,37.60987],[69.94583,37.60879],[69.95132,37.56961],[69.96299,37.56417],[69.99733,37.56852],[70.00282,37.55437],[70.02273,37.54838],[70.03578,37.55165],[70.05157,37.54076],[70.05775,37.54838],[70.08384,37.5315],[70.09757,37.53368],[70.11199,37.52552],[70.12641,37.52715],[70.14358,37.52334],[70.15319,37.53532],[70.16693,37.52933],[70.17379,37.53314],[70.17311,37.54348],[70.18203,37.556],[70.1786,37.57233],[70.19439,37.56363],[70.20195,37.56798],[70.21225,37.56852],[70.21225,37.57505],[70.20469,37.57832],[70.20332,37.58485],[70.22186,37.58376],[70.21362,37.60498],[70.25276,37.61531],[70.25276,37.60987],[70.26512,37.60987],[70.26237,37.6387],[70.26512,37.65066],[70.27061,37.65012],[70.27748,37.65936],[70.27816,37.67512],[70.28915,37.67892],[70.28503,37.68273],[70.30426,37.69251],[70.30082,37.70501],[70.29258,37.70555],[70.28572,37.71641],[70.29945,37.72891],[70.2864,37.75171],[70.2967,37.76908],[70.28091,37.77994],[70.27404,37.7973],[70.28091,37.81466],[70.26718,37.81846],[70.25344,37.8331],[70.2198,37.83419],[70.20401,37.84286],[70.18615,37.84666],[70.17723,37.88027],[70.18203,37.88623],[70.17654,37.89869],[70.17929,37.90411],[70.17105,37.93174],[70.18203,37.93715],[70.18203,37.94636],[70.1889,37.94636],[70.19989,37.92957],[70.21362,37.92036],[70.21225,37.93228],[70.23696,37.94094],[70.24314,37.94473],[70.25276,37.94473],[70.26031,37.93769],[70.27679,37.94527],[70.26855,37.95177],[70.26649,37.9626],[70.25894,37.97126],[70.26168,37.97992],[70.2864,37.9691],[70.29121,37.98696],[70.31387,37.99778],[70.33035,37.99832],[70.33721,38.01401],[70.36056,38.0297],[70.37017,38.04376],[70.36399,38.05133],[70.36399,38.05403],[70.37979,38.05674],[70.38253,38.06377],[70.39627,38.06647],[70.40588,38.07566],[70.41687,38.0762],[70.41824,38.08809],[70.4306,38.1016],[70.44158,38.10106],[70.47798,38.10916],[70.49171,38.12267],[70.50476,38.12159],[70.50064,38.14697],[70.50613,38.17127],[70.51712,38.19286],[70.5384,38.21228],[70.54046,38.23494],[70.56724,38.26999],[70.60501,38.28346],[70.60913,38.29586],[70.60501,38.30394],[70.60707,38.31256],[70.61599,38.32226],[70.6105,38.34704],[70.63178,38.35511],[70.64071,38.34973],[70.66337,38.35296],[70.66268,38.35781],[70.68809,38.36642],[70.69496,38.38311],[70.67504,38.38903],[70.67367,38.40517],[70.69908,38.42024],[70.71693,38.41432],[70.75607,38.42669],[70.76911,38.45681],[70.78559,38.45574],[70.78765,38.45143],[70.81237,38.44498],[70.82267,38.45358],[70.84327,38.44767],[70.84327,38.44068],[70.85289,38.44068],[70.85975,38.45143],[70.85838,38.46057],[70.87074,38.46756],[70.89271,38.46541],[70.90164,38.44874],[70.90576,38.4439],[70.90782,38.43799],[70.92086,38.43584],[70.92361,38.43153],[70.93391,38.43315],[70.93528,38.44122],[70.94215,38.44229],[70.94627,38.43853],[70.95794,38.44068],[70.96275,38.45681],[70.94352,38.46595],[70.9449,38.47724],[70.96618,38.47563],[70.99021,38.49014],[71.00051,38.48315],[71.00051,38.47939],[71.03004,38.46111],[71.02935,38.45197],[71.05476,38.39979],[71.06918,38.40194],[71.063,38.41378],[71.07604,38.41324],[71.0939,38.42239],[71.10763,38.41916],[71.10557,38.40571],[71.12068,38.40679],[71.13029,38.3971],[71.14196,38.40194],[71.15089,38.39656],[71.14814,38.39011],[71.16462,38.38634],[71.18591,38.34596],[71.20033,38.34273],[71.21887,38.32603],[71.24359,38.31903],[71.24839,38.31095],[71.29852,38.31364],[71.31088,38.3061],[71.32942,38.30394],[71.33491,38.29424],[71.32736,38.28454],[71.33285,38.28023],[71.33354,38.27161],[71.35688,38.27107],[71.37405,38.25705],[71.36718,38.22415],[71.37954,38.20959],[71.36512,38.19718],[71.36581,38.17721],[71.37474,38.16155],[71.36581,38.14859],[71.34933,38.14697],[71.33972,38.13185],[71.33697,38.11403],[71.31843,38.09944],[71.32118,38.06917],[71.3047,38.04484],[71.28341,38.04376],[71.28616,38.03403],[71.29509,38.03132],[71.29371,38.01672],[71.27586,38.00698],[71.28067,37.99453],[71.26968,37.99399],[71.26762,37.98263],[71.27655,37.96531],[71.26281,37.95394],[71.26625,37.93715],[71.25183,37.9339],[71.25732,37.92307],[71.28204,37.91982],[71.29097,37.93282],[71.31431,37.91982],[71.32942,37.8846],[71.37886,37.90519],[71.41868,37.91007],[71.48941,37.94203],[71.49902,37.95177],[71.51962,37.95286],[71.52786,37.94365],[71.54022,37.94744],[71.57798,37.93336],[71.5924,37.91928],[71.58622,37.89978],[71.59996,37.87647],[71.58485,37.84883],[71.59652,37.80164],[71.5567,37.78591],[71.54708,37.77342],[71.53198,37.76637],[71.54914,37.73814],[71.54914,37.71478],[71.54159,37.69305],[71.52648,37.6724],[71.52717,37.63435],[71.50588,37.61096],[71.49421,37.53858],[71.5052,37.51299],[71.52648,37.48085],[71.50451,37.45305],[71.49902,37.40889],[71.47911,37.40452],[71.47636,37.38652],[71.49009,37.38052],[71.4949,37.36797],[71.48872,37.33358],[71.50794,37.31611],[71.49215,37.29972],[71.48048,37.23196],[71.4537,37.21392],[71.46331,37.18767],[71.44958,37.18056],[71.44477,37.16961],[71.45233,37.1532],[71.44271,37.12309],[71.44477,37.09681],[71.43447,37.08859],[71.43035,37.06065],[71.46194,37.02283],[71.45851,37.01571],[71.47087,36.98555],[71.46469,36.95812],[71.48323,36.93397],[71.49284,36.9175],[71.51687,36.88291],[71.52717,36.87248],[71.5258,36.85984],[71.54228,36.84665],[71.53816,36.82522],[71.57524,36.75814],[71.59034,36.73448],[71.62193,36.71136],[71.63566,36.69375],[71.65832,36.68604],[71.6748,36.67227],[71.68579,36.67778],[71.71188,36.67117],[71.7263,36.67667],[71.75102,36.67667],[71.76338,36.67943],[71.78878,36.67612],[71.81694,36.68218],[71.8444,36.68218],[71.86157,36.69375],[71.90551,36.73338],[71.95838,36.75594],[71.98448,36.77959],[72.0243,36.81313],[72.04902,36.82412],[72.05452,36.83182],[72.07168,36.84116],[72.11357,36.84665],[72.12799,36.86863],[72.22961,36.93123],[72.36076,36.99158],[72.47543,36.99597],[72.55783,37.00035],[72.56744,37.00693],[72.62306,37.02722],[72.66082,37.019],[72.68829,37.05791],[72.70271,37.06997],[72.70202,37.08038],[72.71713,37.08969],[72.73773,37.11871],[72.75901,37.15375],[72.77343,37.18931],[72.79266,37.21119],[72.81669,37.23142],[72.83798,37.23634],[72.85583,37.22978],[72.88192,37.23962],[72.91282,37.2582],[72.95402,37.29098],[72.97256,37.29208],[72.97874,37.29754],[73.03024,37.30737],[73.03779,37.30519],[73.07487,37.3172],[73.09822,37.32539],[73.10714,37.34123],[73.1044,37.34286],[73.10577,37.36251],[73.13186,37.37234],[73.14834,37.40234],[73.16688,37.40998],[73.19641,37.40834],[73.20945,37.40289],[73.23623,37.41816],[73.25477,37.43561],[73.28018,37.4476],[73.28155,37.45251],[73.30421,37.46395],[73.3406,37.46504],[73.35227,37.45959],[73.36395,37.46123],[73.36944,37.45578],[73.36669,37.4476],[73.37356,37.43997],[73.4024,37.45578],[73.41613,37.46777],[73.45527,37.47376],[73.49716,37.47376],[73.53424,37.47213],[73.58299,37.44597],[73.65028,37.4367],[73.77525,37.43888],[73.77113,37.4067],[73.77182,37.3958],[73.76701,37.39143],[73.76976,37.3827],[73.76976,37.34505],[73.77422,37.33938],[73.74984,37.33031],[73.75396,37.32539],[73.71139,37.31666],[73.70452,37.30737],[73.69354,37.31065],[73.67294,37.30955],[73.66676,37.31775],[73.65371,37.31229],[73.64822,37.30027],[73.65509,37.29153],[73.64341,37.2806],[73.63243,37.28279],[73.61526,37.27295],[73.62075,37.2664],[73.63105,37.2664],[73.63311,37.24836],[73.65509,37.23688],[73.6647,37.24946],[73.70246,37.2511],[73.71345,37.24508],[73.73062,37.24563],[73.73886,37.22704],[73.76152,37.22267],[73.76289,37.2336],[73.7828,37.23798],[73.8034,37.22704],[73.81507,37.23251],[73.82743,37.22704],[73.84391,37.23579],[73.84391,37.24836],[73.8549,37.25765],[73.8858,37.26585],[73.88511,37.27295],[73.90846,37.28224],[73.92562,37.28388],[73.95378,37.27459],[73.96408,37.29972],[73.98948,37.2959],[74.00047,37.28989],[74.02107,37.29262],[74.02381,37.30682],[74.0348,37.30846],[74.03892,37.29972],[74.06089,37.31338],[74.05815,37.32539],[74.06639,37.32648],[74.09179,37.31775],[74.11171,37.32157],[74.11514,37.32921],[74.13162,37.32594],[74.15359,37.34013],[74.1838,37.33576],[74.20784,37.34286],[74.21058,37.34996],[74.22088,37.34832],[74.23805,37.37506],[74.25247,37.37343],[74.23118,37.39525],[74.24217,37.41598],[74.25659,37.40889],[74.26689,37.41052],[74.27856,37.40398],[74.32044,37.4007],[74.32388,37.40725],[74.34104,37.4067],[74.34997,37.42143],[74.37606,37.42361],[74.3898,37.41216],[74.38636,37.4007],[74.41589,37.38925],[74.42894,37.3958],[74.43306,37.41107],[74.43855,37.41652],[74.45159,37.40452],[74.4667,37.40725],[74.46533,37.42579],[74.48318,37.41052],[74.48249,37.40398],[74.49554,37.39689],[74.50653,37.4007],[74.52301,37.4018],[74.52919,37.41052],[74.55734,37.39689],[74.55459,37.3898],[74.56626,37.37397],[74.57862,37.37779],[74.59304,37.37725],[74.61364,37.38434],[74.63905,37.37725],[74.64317,37.3827],[74.67201,37.38925],[74.68849,37.40507],[74.7084,37.38489],[74.72831,37.37834],[74.73861,37.37779],[74.80453,37.35378],[74.82307,37.33522],[74.83131,37.33467],[74.84985,37.30628],[74.87731,37.27514],[74.87869,37.26039],[74.88899,37.25711],[74.88967,37.2336],[74.8883,37.22868],[74.88899,37.22267],[74.88006,37.22048],[74.87182,37.22486],[74.86496,37.22267],[74.85878,37.2254],[74.85466,37.21939],[74.83474,37.21884],[74.82994,37.21501],[74.80796,37.21556],[74.80384,37.2265],[74.79972,37.22923],[74.80178,37.23688],[74.79835,37.24618],[74.79217,37.24891],[74.7805,37.25164],[74.77844,37.26039],[74.76333,37.26749],[74.75029,37.28334],[74.73793,37.28661],[74.72488,37.28224],[74.71527,37.28224],[74.70359,37.26749],[74.68849,37.2664],[74.67681,37.25437],[74.66514,37.24126],[74.66651,37.23798],[74.65896,37.23306],[74.64454,37.24071],[74.6466,37.25164],[74.62944,37.26421],[74.61639,37.25437],[74.59442,37.25984],[74.5903,37.25602],[74.5903,37.24508],[74.58412,37.23579],[74.55184,37.2429],[74.54292,37.25055],[74.53605,37.24235],[74.5182,37.24399],[74.50035,37.23962],[74.4976,37.22868],[74.50172,37.22212],[74.49829,37.21884],[74.49623,37.21119],[74.48455,37.20845],[74.48181,37.20298],[74.47219,37.20189],[74.46876,37.19642],[74.477,37.18767],[74.48112,37.18931],[74.48249,37.18329],[74.49073,37.17892],[74.48661,37.17563],[74.48661,37.16469],[74.46945,37.15922],[74.47288,37.15101],[74.46327,37.14499],[74.45777,37.14663],[74.45571,37.1428],[74.46121,37.13021],[74.47769,37.12145],[74.49142,37.11762],[74.49142,37.1105],[74.48387,37.09571],[74.49623,37.09078],[74.49829,37.07764],[74.49485,37.06613],[74.49829,37.06175],[74.50859,37.06284],[74.50927,37.06997],[74.51339,37.07764],[74.52644,37.07983],[74.53811,37.06449],[74.53468,37.0612],[74.53605,37.05572],[74.53262,37.05079],[74.55459,37.04531],[74.56558,37.03161],[74.58137,37.03215],[74.62463,37.04695],[74.62394,37.05956],[74.63768,37.06832],[74.65141,37.06997],[74.66102,37.08038],[74.70085,37.08366],[74.70634,37.07544],[74.70771,37.06504],[74.72282,37.05627],[74.71595,37.03818],[74.72282,37.03489],[74.72694,37.02558],[74.73861,37.02174],[74.76333,37.02503],[74.77569,37.02064],[74.77775,37.02558],[74.79217,37.02996],[74.79148,37.04257],[74.79972,37.05298],[74.82238,37.05298],[74.83543,37.05901],[74.84092,37.05736],[74.84092,37.0464],[74.84573,37.02777],[74.83818,37.01845],[74.84916,37.00913],[74.86427,36.98061],[74.88143,36.95922],[74.88143,36.95263],[74.88693,36.94495],[74.88418,36.93617],[74.89173,36.93287],[74.89723,36.93562],[74.90684,36.93068],[74.91302,36.93397],[74.91989,36.93397],[74.91645,36.94495],[74.93087,36.94659],[74.93156,36.95428],[74.92263,36.96086],[74.91714,36.97842],[74.93087,36.98171],[74.94323,36.98884],[74.95765,36.98719],[74.97413,36.99706],[74.98443,36.98993],[74.99473,36.99158],[75.00091,37.0009],[75.0119,37.0009],[75.02632,37.01626],[75.0428,37.01461],[75.0428,37.00748],[75.05722,37.002],[75.07301,37.002],[75.08125,37.00803],[75.10597,37.01187],[75.11283,37.00693],[75.11627,37.01022],[75.12657,37.01351],[75.13,37.02229],[75.14167,37.02777],[75.15335,37.01626],[75.16433,37.01626],[75.16777,37.00858],[75.15815,36.99816],[75.15953,36.98774],[75.16983,36.98555],[75.18013,36.97842],[75.19592,36.97293],[75.20004,36.97677],[75.21583,36.97074],[75.2172,36.96635],[75.23574,36.95867],[75.2687,36.96854],[75.27076,36.97129],[75.27625,36.97183],[75.29067,36.97513],[75.30784,36.96525],[75.31471,36.97019],[75.32226,36.95976],[75.35934,36.95592],[75.37445,36.94659],[75.39299,36.95044],[75.39299,36.95428],[75.39917,36.95537],[75.40741,36.94659],[75.40603,36.93672],[75.38681,36.92903],[75.39024,36.92025],[75.38475,36.90433],[75.40947,36.8917],[75.41976,36.89005],[75.41976,36.87962],[75.43075,36.83456],[75.42388,36.82082],[75.42388,36.80928],[75.41908,36.79883],[75.42663,36.79224],[75.42045,36.77244],[75.42938,36.75979],[75.43487,36.75924],[75.43418,36.75098],[75.44517,36.74383],[75.45272,36.72292],[75.46714,36.71687],[75.47607,36.72347],[75.48706,36.72952],[75.49873,36.73943],[75.5104,36.72622],[75.53237,36.72182],[75.53787,36.73613],[75.52757,36.75649],[75.53306,36.76034],[75.53306,36.77189],[75.55091,36.77079],[75.56739,36.77574],[75.57014,36.76804],[75.58799,36.76969],[75.62233,36.76969],[75.63194,36.76639],[75.63743,36.77079],[75.68481,36.76034],[75.69786,36.74768],[75.71228,36.74713],[75.71845,36.75318],[75.74867,36.73888],[75.76583,36.72457],[75.7933,36.71191],[75.80223,36.71136],[75.81253,36.69815],[75.82832,36.69099],[75.84754,36.67392],[75.86471,36.67117],[75.88874,36.63812],[75.91003,36.6304],[75.9423,36.59678],[75.92514,36.56921],[75.9375,36.55929],[75.95397,36.53722],[75.97114,36.51515],[75.98487,36.50577],[75.9938,36.48866],[76.00616,36.47651],[76.02813,36.41907],[76.03569,36.40912],[76.02813,36.39973],[76.02676,36.39254],[76.00341,36.38149],[75.99449,36.35716],[75.98693,36.35218],[75.98487,36.34333],[75.99517,36.32729],[75.99517,36.30682],[76.01783,36.29963],[76.02607,36.27029],[76.03843,36.2631],[76.05697,36.24427],[76.06246,36.22599],[76.04873,36.22378],[76.03637,36.22655],[76.03157,36.23596],[76.00479,36.23208],[76.00685,36.20106],[76.01165,36.19607],[76.00135,36.18444],[76.03088,36.17557],[76.01234,36.1728],[75.98968,36.16393],[75.96977,36.16337],[75.96359,36.15838],[75.96839,36.14951],[75.93475,36.13621],[75.93269,36.12789],[75.95054,36.11347],[75.93818,36.1057],[75.94574,36.09738],[75.94436,36.08795],[75.95535,36.08073],[75.94093,36.07352],[75.95329,36.06464],[75.9478,36.06131],[75.95809,36.04521],[75.9835,36.03188],[75.99655,36.01911],[76.02195,36.01633],[76.02951,36.02355],[76.04599,36.02411],[76.0865,36.023],[76.10298,36.01356],[76.09886,36.008],[76.09886,35.99856],[76.11328,35.96855],[76.13456,35.95522],[76.14624,35.93187],[76.15928,35.92019],[76.14967,35.8935],[76.1531,35.8807],[76.1483,35.87458],[76.15379,35.86623],[76.15173,35.859],[76.14074,35.85121],[76.14418,35.83785],[76.16821,35.82171],[76.17851,35.82393],[76.19842,35.82338],[76.22039,35.83006],[76.22177,35.84119],[76.2973,35.84342],[76.30966,35.83228],[76.31927,35.83451],[76.36047,35.82672],[76.35223,35.85455],[76.36871,35.86345],[76.42776,35.85232],[76.46484,35.88793],[76.51428,35.88126],[76.54724,35.90351],[76.54586,35.93131],[76.58432,35.91908],[76.5953,35.90017],[76.57196,35.86902],[76.5802,35.86234],[76.58981,35.84342],[76.56234,35.82338],[76.59668,35.77325],[76.61521,35.76155],[76.64199,35.77047],[76.64955,35.75932],[76.69006,35.75097],[76.69692,35.72533],[76.75598,35.68184],[76.75941,35.66343],[76.7752,35.65952],[76.78138,35.64167],[76.77314,35.63776],[76.76284,35.63999],[76.75598,35.63051],[76.79443,35.58641],[76.79237,35.5758],[76.77864,35.5797],[76.76628,35.56351],[76.7498,35.55401],[76.7601,35.51937],[76.7752,35.5149],[76.7958,35.51825],[76.79306,35.49422],[76.81915,35.45619],[76.84043,35.43997],[76.83288,35.41983],[76.84799,35.4008],[76.8679,35.38904],[76.90017,35.38792],[76.91734,35.40248],[76.94755,35.39352],[76.95442,35.38177],[76.95098,35.37729],[76.9606,35.36329],[76.98326,35.36049],[76.97914,35.34649],[76.9915,35.32969],[76.98463,35.31568],[77.01622,35.29943],[77.00042,35.28878],[76.9915,35.26916],[76.97502,35.25739],[77.00111,35.23889],[77.00386,35.22711],[76.99287,35.21084],[77.00523,35.19962],[77.01553,35.18447],[77.05261,35.17717],[77.08831,35.16875],[77.08488,35.14293],[77.07183,35.13394],[77.07183,35.12159],[77.08213,35.11597],[77.07939,35.10249],[77.10823,35.09126],[77.12127,35.06428],[77.11372,35.05079],[77.09518,35.04742],[77.05192,35.05023],[77.04093,35.03843],[77.03064,35.04011],[77.01416,35.0328],[77.00798,34.99231],[77.00866,34.976],[76.9963,34.93435],[76.86927,34.98331],[76.85966,34.96362],[76.81228,34.95349],[76.7704,34.93097],[76.75735,34.93885],[76.74842,34.91127],[76.75941,34.89381],[76.74774,34.83071],[76.71203,34.81042],[76.68044,34.75063],[76.64062,34.75628],[76.60011,34.75007],[76.54174,34.76756],[76.50466,34.79463],[76.47033,34.79801],[76.43188,34.77264],[76.43257,34.75063],[76.29524,34.71791],[76.26091,34.71678],[76.27258,34.69759],[76.25472,34.69138],[76.24854,34.68291],[76.25472,34.67387],[76.24099,34.675],[76.19018,34.66088],[76.16203,34.63433],[76.11259,34.64055],[76.10229,34.64846],[76.10092,34.66258],[76.09062,34.6654],[76.0865,34.67105],[76.06041,34.68855],[76.03225,34.68573],[76.00273,34.65749],[75.99105,34.63829],[75.96771,34.63885],[75.9011,34.58686],[75.83862,34.55972],[75.78231,34.51108],[75.69786,34.52183],[75.66146,34.53258],[75.50628,34.5388],[75.36621,34.53767],[75.35385,34.54898],[75.34286,34.56594],[75.32981,34.57103],[75.31951,34.56538],[75.30166,34.58573],[75.28381,34.59534],[75.26527,34.59986],[75.25016,34.60156],[75.25634,34.61908],[75.26733,34.62077],[75.26733,34.63772],[75.18974,34.65015],[75.17807,34.64563],[75.16502,34.6558],[75.12657,34.6541],[75.12039,34.64959],[75.08743,34.65467],[75.05104,34.63377],[75.03456,34.63772],[75.02632,34.63094],[75.0016,34.64394],[74.99748,34.65354],[74.98374,34.64733],[74.93156,34.67387],[74.86633,34.67331],[74.85878,34.68121],[74.84916,34.6846],[74.83955,34.67444],[74.7393,34.67952],[74.73312,34.68291],[74.729,34.68065],[74.65004,34.70605],[74.58824,34.74951],[74.5745,34.76192],[74.52438,34.76756],[74.47906,34.77884],[74.47288,34.77151],[74.46601,34.77207],[74.46052,34.78166],[74.43855,34.7794],[74.43512,34.7732],[74.39323,34.78504],[74.34379,34.78786],[74.31083,34.7811],[74.24079,34.72524],[74.21264,34.71904],[74.15908,34.69081],[74.15634,34.68121],[74.14604,34.67161],[74.14947,34.66088],[74.12338,34.66088],[74.11033,34.67895],[74.09454,34.67048],[74.05334,34.67331],[74.02931,34.68291],[74.00871,34.68404],[73.98742,34.68008],[73.96957,34.68573],[73.95446,34.67218],[73.95721,34.66653],[73.95034,34.65523],[73.95446,34.64902],[73.93386,34.6462],[73.93043,34.62755],[73.93455,34.61569],[73.92906,34.60212],[73.95378,34.59534],[73.95309,34.58234],[73.95927,34.58121],[73.95103,34.56877],[73.95584,34.56651],[73.94142,34.55124],[73.93798,34.5535],[73.90571,34.52805],[73.91189,34.519],[73.89747,34.51447],[73.88786,34.50033],[73.8906,34.48901],[73.87962,34.48335],[73.88717,34.45448],[73.87824,34.45335],[73.84735,34.43239],[73.84048,34.43523],[73.84048,34.42843],[73.80409,34.4256],[73.7931,34.412],[73.77937,34.40294],[73.76907,34.38594],[73.75534,34.38084],[73.75053,34.36837],[73.75053,34.344],[73.76152,34.34343],[73.7725,34.33266],[73.79722,34.33776],[73.79585,34.34343],[73.81507,34.34513],[73.81095,34.33719],[73.82057,34.33209],[73.84666,34.32926],[73.8549,34.32302],[73.86451,34.33549],[73.88374,34.33379],[73.90434,34.35137],[73.91189,34.3508],[73.92356,34.3406],[73.9373,34.33719],[73.927,34.32132],[73.91807,34.30827],[73.93112,34.30714],[73.9318,34.31281],[73.9421,34.31395],[73.94416,34.30147],[73.93592,34.29636],[73.93798,34.28615],[73.9476,34.27651],[73.98948,34.27367],[73.9888,34.26232],[74.00802,34.22656],[74.00459,34.2152],[73.99978,34.21464],[73.9991,34.19817],[74.01077,34.1959],[74.00253,34.18965],[73.99841,34.18113],[73.96133,34.16749],[73.96064,34.15897],[73.9682,34.1567],[73.9627,34.14988],[73.95378,34.15272],[73.94828,34.13795],[73.92837,34.12885],[73.927,34.10498],[73.9064,34.10668],[73.90365,34.08963],[73.90708,34.08451],[73.90571,34.07654],[73.89953,34.07256],[73.8961,34.05777],[73.90846,34.04298],[73.92219,34.03729],[73.92768,34.0225],[73.96682,34.01055],[73.98742,34.01339],[74.01077,34.02534],[74.0142,34.03672],[74.04373,34.03729],[74.05197,34.0316],[74.06982,34.03786],[74.10896,34.03786],[74.13917,34.0464],[74.16183,34.02876],[74.1687,34.0299],[74.17488,34.03388],[74.18106,34.02364],[74.19822,34.01624],[74.21539,34.01738],[74.21333,34.02648],[74.23255,34.02364],[74.23736,34.01282],[74.25384,34.00428],[74.26277,33.9855],[74.26139,33.97639],[74.27787,33.96899],[74.26895,33.95418],[74.28131,33.93766],[74.27719,33.89663],[74.24629,33.88238],[74.21402,33.85502],[74.20646,33.85958],[74.20578,33.8476],[74.19822,33.8476],[74.19136,33.83962],[74.16389,33.83734],[74.11377,33.82422],[74.06089,33.82479],[74.04235,33.80425],[74.03411,33.80596],[74.03274,33.79683],[74.00802,33.77458],[74.01145,33.76031],[74.00116,33.74318],[73.98124,33.7409],[73.98262,33.7329],[73.96133,33.72205],[73.96682,33.70434],[73.98262,33.70777],[73.9833,33.70263],[73.9785,33.6992],[73.9888,33.68606],[73.98399,33.67578],[73.99223,33.6552],[73.9833,33.6552],[73.97987,33.63977],[74.00184,33.6169],[74.02519,33.59689],[74.03205,33.57629],[74.0554,33.57572],[74.06295,33.58259],[74.08424,33.58201],[74.0966,33.57115],[74.1069,33.57401],[74.13917,33.55684],[74.15771,33.53681],[74.15771,33.50991],[74.19273,33.47899],[74.18861,33.46868],[74.18312,33.47097],[74.1838,33.44691],[74.17625,33.43373],[74.179,33.4131],[74.18655,33.40966],[74.18655,33.38615],[74.17625,33.37182],[74.16732,33.34085],[74.15634,33.33511],[74.15634,33.32708],[74.14398,33.32249],[74.12544,33.30413],[74.10759,33.30011],[74.09042,33.28404],[74.05609,33.27945],[74.04785,33.28806],[74.02656,33.26797],[74.01832,33.26969],[74.01283,33.25247],[74.00116,33.23983],[74.00939,33.23179],[74.00528,33.21973],[74.01626,33.21341],[74.01832,33.20537],[74.03686,33.19732],[74.04853,33.20307],[74.05265,33.19502],[74.06639,33.19732],[74.08012,33.17951],[74.10209,33.16744],[74.11102,33.16629],[74.11857,33.15882],[74.12956,33.16112],[74.13299,33.14847],[74.15359,33.14042],[74.15702,33.12375],[74.16526,33.12202],[74.15977,33.11052],[74.179,33.09844],[74.18037,33.09269],[74.17144,33.07658],[74.20715,33.06737],[74.25041,33.04493],[74.29504,33.03342],[74.32594,33.03169],[74.31976,33.0219],[74.32456,33.00405],[74.34036,32.95106],[74.31289,32.93435],[74.32868,32.91821],[74.3486,32.9234],[74.37469,32.91821],[74.37332,32.91302],[74.39254,32.90899],[74.40078,32.89919],[74.41452,32.89803],[74.41864,32.88247],[74.41246,32.86747],[74.42138,32.85536],[74.41932,32.84094],[74.43718,32.82536],[74.43786,32.81151],[74.44679,32.80343],[74.44816,32.7942],[74.46052,32.78438],[74.46464,32.77746],[74.47288,32.77803],[74.48181,32.76591],[74.50378,32.76649],[74.51065,32.74743],[74.54635,32.74685],[74.55802,32.75898],[74.5745,32.75783],[74.57656,32.75378],[74.61776,32.76129],[74.63699,32.7509],[74.64042,32.7584],[74.62875,32.7688],[74.64042,32.78265],[74.65484,32.78265],[74.65759,32.78785],[74.63287,32.80747],[74.6418,32.82132],[74.6569,32.83055],[74.66514,32.82478],[74.68299,32.8369],[74.70428,32.84267],[74.70565,32.81844],[74.69673,32.81036],[74.69673,32.80458],[74.67613,32.77284],[74.67544,32.75783],[74.66514,32.74974],[74.65484,32.73068],[74.66171,32.72606],[74.6521,32.69891],[74.66583,32.67521],[74.69398,32.66596],[74.68917,32.65093],[74.6775,32.65093],[74.66995,32.64168],[74.65416,32.63417],[74.65553,32.6174],[74.63905,32.61566],[74.64248,32.59889],[74.6569,32.59657],[74.64729,32.58674],[74.65278,32.56244],[74.67407,32.56822],[74.67338,32.5526],[74.66102,32.55375],[74.66514,32.54276],[74.69055,32.53292],[74.68162,32.51265],[74.68711,32.50512],[74.68093,32.49123],[74.69123,32.48543],[74.70359,32.4947],[74.71527,32.48775],[74.71183,32.47848],[74.72763,32.47617],[74.72831,32.48138],[74.75303,32.47906],[74.75646,32.48254],[74.79766,32.47906],[74.80178,32.48196],[74.81002,32.48254],[74.81964,32.4976],[74.84779,32.48949],[74.85809,32.49528],[74.86496,32.48717],[74.878,32.49354],[74.88418,32.49123],[74.87594,32.47964],[74.90203,32.46748],[74.90615,32.47211],[74.91989,32.46632],[74.93705,32.47153],[74.93774,32.46632],[74.94323,32.45299],[74.95216,32.44662],[74.96727,32.45937],[74.98649,32.45183],[75.01876,32.46748],[75.01533,32.47501],[75.027,32.49702],[75.05653,32.48196],[75.07164,32.4808],[75.08949,32.47095],[75.10116,32.47675],[75.10871,32.47617],[75.11009,32.45995],[75.12107,32.45415],[75.1197,32.44256],[75.13549,32.42692],[75.12725,32.42692],[75.13343,32.41069],[75.15197,32.42112],[75.15953,32.41938],[75.18974,32.42576],[75.19935,32.42054],[75.20072,32.41184],[75.19249,32.41011],[75.19317,32.39909],[75.20828,32.39503],[75.21308,32.40257],[75.24467,32.38692],[75.25222,32.39155],[75.25566,32.38923],[75.25978,32.37358],[75.27488,32.37706],[75.2893,32.37126],[75.28999,32.35734],[75.30098,32.35096],[75.30029,32.3469],[75.32226,32.34284],[75.32775,32.33007],[75.33737,32.32195],[75.32226,32.29874],[75.35041,32.28945],[75.34355,32.28132],[75.37239,32.27842],[75.37994,32.26855],[75.37445,32.26797],[75.36964,32.24532],[75.37582,32.2279],[75.36552,32.22325],[75.34492,32.21861],[75.33393,32.21977],[75.31265,32.19885],[75.31951,32.18142],[75.30647,32.16805],[75.29823,32.15468],[75.28381,32.15119],[75.27694,32.13608],[75.28312,32.13026],[75.27831,32.11573],[75.26321,32.10293],[75.24398,32.09828],[75.23918,32.09304],[75.23025,32.09479],[75.23506,32.10409],[75.22956,32.10875],[75.22201,32.09944],[75.21583,32.11863],[75.20416,32.11922],[75.20484,32.09653],[75.19729,32.09711],[75.19592,32.08315],[75.17326,32.06861],[75.15747,32.08082],[75.12245,32.07908],[75.10871,32.07035],[75.10597,32.06046],[75.09017,32.07559],[75.0888,32.06279],[75.07232,32.0593],[75.06752,32.06802],[75.05928,32.05522],[75.04142,32.043],[75.03456,32.04882],[75.02014,32.04882],[75.01396,32.0366],[75.00228,32.04125],[74.97688,32.03951],[74.97207,32.04009],[74.97963,32.04591],[74.97482,32.05406],[74.92469,32.06628],[74.90753,32.04998],[74.878,32.05406],[74.87045,32.04766],[74.87594,32.02903],[74.86976,32.02146],[74.8677,32.02845],[74.8629,32.02204],[74.84916,32.0203],[74.85122,32.01389],[74.8368,32.00924],[74.82925,31.99934],[74.82994,31.97954],[74.8162,31.96031],[74.7853,31.95798],[74.7702,31.94924],[74.75852,31.95507],[74.75372,31.944],[74.74411,31.93817],[74.73449,31.944],[74.71389,31.93643],[74.7187,31.92419],[74.67544,31.92535],[74.63218,31.88455],[74.60884,31.89155],[74.60678,31.86939],[74.59854,31.86881],[74.59167,31.84956],[74.58412,31.85189],[74.57313,31.84081],[74.5745,31.81689],[74.55802,31.80406],[74.5642,31.79647],[74.55528,31.79355],[74.55047,31.78188],[74.56146,31.76203],[74.54772,31.74977],[74.50584,31.74101],[74.50172,31.72933],[74.48593,31.71765],[74.49829,31.71064],[74.50241,31.69604],[74.53399,31.68026],[74.52987,31.66565],[74.5388,31.65981],[74.53949,31.64753],[74.54635,31.64578],[74.55734,31.60777],[74.5745,31.60251],[74.59304,31.57561],[74.61227,31.56976],[74.60678,31.56215],[74.61776,31.55279],[74.61158,31.52762],[74.59442,31.52704],[74.58274,31.51884],[74.58068,31.49953],[74.5951,31.49777],[74.61227,31.49894],[74.62051,31.4843],[74.63356,31.48782],[74.626,31.47611],[74.63836,31.47786],[74.65484,31.45444],[74.63699,31.44448],[74.6521,31.42631],[74.64317,31.4187],[74.63287,31.41928],[74.62188,31.43159],[74.61845,31.41987],[74.60746,31.42514],[74.58755,31.4017],[74.58686,31.38119],[74.55116,31.36536],[74.54635,31.33604],[74.52781,31.31375],[74.53949,31.30495],[74.52095,31.26974],[74.53331,31.25155],[74.51545,31.22806],[74.52713,31.20986],[74.51889,31.18284],[74.51065,31.18167],[74.51477,31.15053],[74.51202,31.1329],[74.54635,31.12055],[74.55322,31.08763],[74.57107,31.08351],[74.61227,31.09645],[74.60952,31.11291],[74.59442,31.12878],[74.60678,31.13466],[74.63218,31.13231],[74.63424,31.11879],[74.65827,31.13172],[74.67132,31.12408],[74.68849,31.12761],[74.68917,31.11761],[74.69947,31.11232],[74.70291,31.09292],[74.69192,31.08234],[74.69741,31.07587],[74.67132,31.05234],[74.61433,31.04469],[74.59785,31.03705],[74.58961,31.04999],[74.57176,31.05528],[74.54841,31.03116],[74.53949,31.0088],[74.54567,30.9935],[74.51477,30.97996],[74.50447,30.96524],[74.49073,30.97466],[74.45915,30.96524],[74.46327,30.95641],[74.44198,30.95052],[74.43855,30.94169],[74.41795,30.93933],[74.4152,30.93167],[74.42756,30.93226],[74.42482,30.9252],[74.4104,30.92343],[74.4104,30.9193],[74.42413,30.91636],[74.42207,30.90929],[74.39666,30.90929],[74.38362,30.89574],[74.36645,30.89515],[74.3589,30.87335],[74.38087,30.86097],[74.36714,30.85743],[74.36714,30.84918],[74.35546,30.84741],[74.3534,30.85331],[74.31976,30.84682],[74.31976,30.82678],[74.29641,30.79729],[74.29985,30.78844],[74.30603,30.79021],[74.30191,30.77959],[74.27581,30.77428],[74.26483,30.77841],[74.26071,30.77251],[74.27444,30.74478],[74.28611,30.73475],[74.28199,30.72885],[74.27444,30.73593],[74.26551,30.72472],[74.23118,30.72472],[74.2202,30.69343],[74.1941,30.66508],[74.13986,30.62845],[74.1275,30.63377],[74.11788,30.60955],[74.10347,30.619],[74.0966,30.6125],[74.10003,30.61014],[74.10141,30.60364],[74.09523,30.60068],[74.10141,30.57822],[74.07463,30.55634],[74.08012,30.54925],[74.09111,30.54866],[74.06776,30.51968],[74.05677,30.5179],[74.05059,30.53565],[74.03961,30.54274],[74.03892,30.53151],[74.02519,30.52559],[74.01214,30.53387],[74.01214,30.52382],[74.01969,30.51554],[73.98948,30.51258],[73.96408,30.48595],[73.96957,30.47649],[73.96476,30.45755],[73.94897,30.46169],[73.94691,30.48418],[73.93386,30.4901],[73.92974,30.46702],[73.93661,30.44926],[73.92425,30.43979],[73.97026,30.44275],[73.96476,30.42617],[73.9476,30.41492],[73.93524,30.40012],[73.92082,30.39656],[73.91532,30.38413],[73.88442,30.36872],[73.88168,30.35984],[73.90228,30.34917],[73.93043,30.32013],[73.95927,30.26677],[73.97232,30.19736],[73.82125,30.08691],[73.80752,30.06909],[73.59878,30.01857],[73.39759,29.9472],[73.35159,29.79477],[73.28086,29.57286],[73.08448,29.23727],[73.00483,29.15336],[72.94509,29.02795],[72.73155,28.94807],[72.47955,28.81158],[72.40402,28.7827],[72.35664,28.73454],[72.29896,28.6707],[72.20626,28.39442],[72.13142,28.31344],[72.0037,28.21971],[71.92611,28.12286],[71.89933,27.96105],[71.88217,27.9568],[71.66725,27.87732],[71.38229,27.87185],[71.20239,27.83421],[70.98403,27.74249],[70.96275,27.72851],[70.95245,27.72973],[70.90576,27.71027],[70.87074,27.70541],[70.75882,27.72061],[70.74028,27.74188],[70.73341,27.76133],[70.68328,27.82814],[70.67916,27.86943],[70.6771,27.92101],[70.59951,27.99197],[70.5899,28.01016],[70.55282,28.02774],[70.50613,28.03683],[70.43472,28.01925],[70.37223,28.01319],[70.29739,27.93557],[70.22666,27.9022],[70.20744,27.88217],[70.19783,27.86578],[70.13671,27.81296],[70.11611,27.77165],[70.07148,27.66346],[70.02479,27.56246],[69.93209,27.4973],[69.8703,27.40712],[69.76318,27.32419],[69.70138,27.28636],[69.63409,27.21555],[69.5874,27.18257],[69.51324,27.01264],[69.49813,26.87063],[69.4844,26.80691],[69.51049,26.74315],[69.72335,26.65236],[69.79202,26.59712],[69.89502,26.5787],[70.05432,26.6008],[70.11749,26.58607],[70.17517,26.55168],[70.18615,26.47794],[70.17517,26.42507],[70.18615,26.37218],[70.16418,26.29218],[70.17517,26.25031],[70.16693,26.21828],[70.14221,26.16283],[70.08178,26.08515],[70.09826,25.94199],[70.17517,25.82708],[70.22049,25.79494],[70.25207,25.75537],[70.2658,25.71702],[70.38665,25.67247],[70.52673,25.68361],[70.60913,25.71331],[70.64758,25.71331],[70.6723,25.67618],[70.66955,25.63533],[70.66818,25.53128],[70.67779,25.52881],[70.6723,25.42095],[70.66268,25.39862],[70.73684,25.33161],[70.75058,25.27698],[70.8879,25.14777],[70.91949,24.99726],[70.94009,24.93127],[71.02798,24.80917],[71.06643,24.71564],[71.09664,24.68695],[71.07536,24.66324],[71.05476,24.64888],[71.02523,24.64077],[70.99708,24.61456],[70.98815,24.59583],[70.99502,24.56336],[70.9909,24.54649],[71.00738,24.52713],[70.99845,24.46715],[70.99777,24.44715],[71.01013,24.44464],[71.03691,24.43152],[71.07124,24.43652],[71.10351,24.43464],[71.12548,24.41964],[71.12136,24.40526],[71.10763,24.39713],[71.08497,24.39525],[71.06643,24.37774],[71.05888,24.36211],[71.0424,24.35022],[71.01905,24.34709],[71.00532,24.35085],[70.98403,24.36461],[70.95451,24.34834],[70.94833,24.34709],[70.92498,24.3277],[70.88516,24.30517],[70.87554,24.29578],[70.87486,24.28076],[70.88378,24.27325],[70.9085,24.26136],[70.88996,24.25322],[70.87829,24.24696],[70.85014,24.24446],[70.83503,24.23068],[70.80825,24.22129],[70.74302,24.21878],[70.71556,24.21565],[70.69496,24.21878],[70.66749,24.22004],[70.64277,24.22379],[70.59196,24.24446],[70.58303,24.24446],[70.57617,24.25072],[70.56999,24.25259],[70.57548,24.26637],[70.58509,24.27951],[70.58509,24.28827],[70.57891,24.29453],[70.58235,24.30392],[70.56106,24.3546],[70.58097,24.36586],[70.59608,24.39713],[70.59677,24.40963],[70.57205,24.42151],[70.559,24.42026],[70.5487,24.41339],[70.49102,24.39713],[70.47386,24.38962],[70.44433,24.38525],[70.40657,24.37399],[70.39009,24.35898],[70.37017,24.35022],[70.29121,24.34959],[70.24795,24.3277],[70.21156,24.32269],[70.1992,24.31644],[70.18272,24.3108],[70.11268,24.30142],[70.06599,24.2],[70.05088,24.18872],[70.03784,24.17557],[70.0241,24.17181],[69.73228,24.17118],[69.59426,24.29203],[69.54689,24.27889],[69.49951,24.26762],[69.47204,24.27075],[69.44458,24.28014],[69.402,24.27075],[69.36836,24.27075],[69.31274,24.28139],[69.19464,24.23632],[69.09782,24.27325],[69.03465,24.23945],[69.01062,24.22442],[68.98521,24.22755],[68.97285,24.26073],[68.9447,24.30204],[68.91586,24.2864],[68.89801,24.28202],[68.89938,24.272],[68.88839,24.25385],[68.87947,24.22191],[68.86299,24.21064],[68.852,24.21565],[68.83827,24.26324],[68.83827,24.29203],[68.82797,24.31018],[68.81012,24.30705],[68.77922,24.30329],[68.76548,24.28953],[68.75175,23.97307],[68.3995,23.97119],[68.34251,23.96492],[68.32878,23.9235],[68.27522,23.92977],[68.21067,23.87704],[68.19969,23.77592],[68.15918,23.67408],[67,22],[53.17382,13.9234],[44.20898,11.26461],[42.90161,13.36289],[42.52807,13.5926],[39.6967,18.538],[34.40918,27.33273],[34.45861,27.95801],[34.89532,29.3726],[34.95777,29.35742],[34.96726,29.35624],[34.9763,29.35472],[34.98475,29.35366],[34.99226,29.35282],[34.99878,29.35233],[34.9998,29.35213],[35.0214,29.34992],[35.0271,29.34912],[35.05677,29.34419],[35.06789,29.34286],[35.21643,29.31895],[35.36924,29.29449],[35.45647,29.28111],[35.50184,29.27501],[35.50759,29.27466],[35.5163,29.27367],[35.59647,29.26006],[35.67668,29.2463],[35.75414,29.23565],[35.76154,29.23485],[35.77942,29.23248],[35.91549,29.20821],[36.00492,29.19323],[36.07009,29.18503],[36.15876,29.25055],[36.2225,29.29701],[36.28675,29.34332],[36.50453,29.49994],[36.51334,29.51488],[36.52753,29.53474],[36.57194,29.5991],[36.60678,29.65135],[36.65863,29.72701],[36.68781,29.77137],[36.75338,29.86833],[37.2191,29.95033],[37.4565,29.99068],[37.50011,30.00013],[37.51849,30.0347],[37.55197,30.10062],[37.59404,30.18937],[37.62927,30.26205],[37.63762,30.27875],[37.66554,30.33265],[37.76268,30.38346],[37.99715,30.5006],[37.89281,30.60815],[37.7713,30.73225],[37.75956,30.74626],[37.75262,30.75496],[37.74773,30.76329],[37.7449,30.7672],[37.56585,30.94509],[37.49933,31.00695],[37.41118,31.0953],[37.00089,31.50011],[37.47939,31.62067],[38.06776,31.77281],[38.40619,31.85664],[38.99592,31.99646],[39.03983,32.03019],[39.06709,32.05155],[39.12623,32.09806],[39.1653,32.12835],[39.19539,32.14982],[39.20093,32.15428],[39.30115,32.23026],[39.28074,32.29285],[39.25999,32.35559],[39.04367,32.30411],[38.98599,32.47766],[39.08623,32.50159],[38.7936,33.37468],[39.25437,33.61394],[39.71788,33.85148],[40.17865,34.08475],[40.64011,34.31517],[40.97774,34.39802],[40.98361,34.41245],[41.00434,34.43667],[41.01527,34.44458],[41.06868,34.54918],[41.12249,34.6536],[41.22751,34.7786],[41.21815,34.96068],[41.20874,35.14277],[41.21788,35.20069],[41.22027,35.25888],[41.26547,35.38139],[41.26806,35.48472],[41.38222,35.62549],[41.3782,35.7067],[41.36955,35.84296],[41.34116,35.89713],[41.31272,35.95129],[41.25574,36.05957],[41.26425,36.12075],[41.2728,36.18192],[41.28456,36.29631],[41.28244,36.34767],[41.34007,36.43451],[41.39944,36.52377],[41.60899,36.55612],[41.81716,36.58777],[41.88586,36.6367],[41.99656,36.73578],[42.10755,36.83468],[42.37043,37.06768],[42.37213,37.06931],[42.37323,37.0711],[42.37469,37.07416],[42.37577,37.07547],[42.37632,37.07678],[42.37611,37.07788],[42.37551,37.07863],[42.37395,37.07894],[42.37233,37.07901],[42.37084,37.07922],[42.36878,37.07991],[42.3676,37.07995],[42.36616,37.08055],[42.36488,37.08129],[42.36166,37.0822],[42.36064,37.08287],[42.35746,37.08388],[42.35469,37.08439],[42.35312,37.08505],[42.35213,37.08584],[42.3514,37.08682],[42.35045,37.08793],[42.34972,37.08962],[42.34976,37.09079],[42.35017,37.09197],[42.35071,37.09305],[42.35176,37.09383],[42.35254,37.0947],[42.35301,37.09547],[42.3533,37.09664],[42.35304,37.09816],[42.35723,37.10608],[42.3589,37.10704],[42.35783,37.10964],[42.36122,37.11159],[42.36203,37.11488],[42.36804,37.11823],[42.3722,37.11597],[42.38731,37.10995],[42.40242,37.11324],[42.4086,37.11324],[42.40997,37.12035],[42.42851,37.12802],[42.44087,37.12857],[42.44224,37.13349],[42.44773,37.1324],[42.46559,37.1417],[42.47108,37.14116],[42.47657,37.13678],[42.50198,37.13459],[42.50747,37.13842],[42.50953,37.1428],[42.52327,37.1417],[42.52807,37.14499],[42.54112,37.14335],[42.54798,37.14937],[42.5624,37.14718],[42.57408,37.1417],[42.58163,37.14663],[42.5782,37.15758],[42.58369,37.16414],[42.58438,37.1718],[42.58918,37.1718],[42.59674,37.1811],[42.59948,37.19095],[42.61871,37.20572],[42.61253,37.21501],[42.61665,37.21501],[42.61596,37.21884],[42.62283,37.2172],[42.6297,37.21884],[42.62832,37.22431],[42.63931,37.2347],[42.64755,37.23688],[42.64686,37.2429],[42.65579,37.24618],[42.65029,37.25602],[42.65785,37.26257],[42.65235,37.26749],[42.65991,37.26858],[42.65991,37.27295],[42.67707,37.27405],[42.67639,37.26913],[42.68119,37.26913],[42.68531,37.28006],[42.68257,37.2806],[42.68875,37.28825],[42.69561,37.29153],[42.69561,37.2959],[42.69012,37.29535],[42.69218,37.30027],[42.68737,37.30901],[42.69973,37.31065],[42.70935,37.30737],[42.72445,37.31502],[42.72651,37.32048],[42.73201,37.3172],[42.73613,37.32048],[42.73201,37.32266],[42.73475,37.33031],[42.73201,37.33522],[42.73956,37.3374],[42.74437,37.34614],[42.7526,37.34887],[42.76977,37.36142],[42.77938,37.37616],[42.7835,37.37616],[42.78831,37.37997],[42.82539,37.37124],[42.82608,37.36142],[42.82127,37.36142],[42.82745,37.34941],[42.83638,37.34232],[42.84805,37.34832],[42.86384,37.34505],[42.87071,37.33795],[42.87963,37.3385],[42.8968,37.32812],[42.90573,37.33031],[42.92083,37.32812],[42.93319,37.31993],[42.94761,37.31939],[42.95517,37.31174],[42.95791,37.31283],[42.97233,37.32594],[42.9895,37.32594],[42.99018,37.32812],[43.0101,37.33249],[43.02108,37.34341],[43.02177,37.35323],[43.06228,37.35651],[43.06983,37.36688],[43.10142,37.36688],[43.11035,37.37288],[43.12202,37.37124],[43.12614,37.37288],[43.1385,37.37015],[43.14125,37.37288],[43.15223,37.3707],[43.15979,37.36251],[43.16116,37.35869],[43.16597,37.35978],[43.16803,37.35815],[43.18794,37.35978],[43.1948,37.35705],[43.20098,37.34996],[43.21884,37.34668],[43.236,37.34723],[43.24356,37.34232],[43.24836,37.33085],[43.27034,37.32921],[43.27034,37.31447],[43.28956,37.31229],[43.30261,37.303],[43.31703,37.30628],[43.31771,37.31775],[43.32801,37.32648],[43.36029,37.32758],[43.36441,37.32212],[43.37196,37.3172],[43.3699,37.30846],[43.38913,37.30628],[43.38913,37.29863],[43.40286,37.29153],[43.40766,37.29372],[43.41316,37.28388],[43.44062,37.27405],[43.45916,37.27022],[43.47564,37.26312],[43.47496,37.25274],[43.49212,37.24782],[43.49624,37.2429],[43.50585,37.24344],[43.51341,37.23907],[43.52233,37.24727],[43.55735,37.25328],[43.56491,37.25711],[43.57933,37.25164],[43.58413,37.23907],[43.59443,37.2336],[43.60679,37.23907],[43.61572,37.23415],[43.61915,37.22267],[43.64318,37.21884],[43.65005,37.2254],[43.65486,37.22322],[43.68095,37.22759],[43.68782,37.23415],[43.70636,37.23032],[43.70567,37.2336],[43.72146,37.2336],[43.74069,37.22868],[43.74618,37.22978],[43.74618,37.23415],[43.77777,37.22704],[43.79081,37.22923],[43.80798,37.2254],[43.81759,37.21119],[43.83132,37.19423],[43.84025,37.2008],[43.84368,37.209],[43.84162,37.21173],[43.85192,37.22486],[43.88694,37.22212],[43.91922,37.22267],[43.92471,37.23634],[43.93775,37.2418],[43.9302,37.24618],[43.94187,37.24946],[43.94599,37.25875],[43.94325,37.26858],[43.95698,37.27186],[43.95286,37.29262],[43.992,37.29754],[43.99749,37.30955],[44.01947,37.32812],[44.02427,37.31829],[44.03183,37.32539],[44.0538,37.32048],[44.06204,37.32157],[44.06684,37.31502],[44.10324,37.31611],[44.12521,37.32321],[44.12658,37.31939],[44.14375,37.31119],[44.15199,37.30246],[44.16366,37.30355],[44.17327,37.29699],[44.18838,37.29426],[44.20967,37.28115],[44.23027,37.28224],[44.24194,37.26968],[44.25224,37.25],[44.26803,37.24563],[44.27078,37.20955],[44.2646,37.20408],[44.26666,37.19806],[44.27421,37.19423],[44.27627,37.19642],[44.28039,37.18822],[44.27764,37.16633],[44.24949,37.15703],[44.23507,37.16141],[44.22271,37.15867],[44.2131,37.13568],[44.20486,37.1324],[44.20143,37.11981],[44.18289,37.10667],[44.18426,37.09681],[44.19456,37.09352],[44.19181,37.08092],[44.21585,37.06668],[44.21653,37.0623],[44.22683,37.05682],[44.23439,37.03983],[44.22409,37.03435],[44.23713,37.01242],[44.24194,37.01187],[44.24881,37.00035],[44.25293,36.99871],[44.25361,36.98884],[44.25087,36.9828],[44.27009,36.97513],[44.28932,36.97732],[44.30992,36.96251],[44.31266,36.96854],[44.3058,36.97293],[44.31541,36.98445],[44.32708,36.98774],[44.32983,36.99761],[44.33876,37.00913],[44.3518,37.02119],[44.36622,37.02558],[44.34768,37.04202],[44.35867,37.05243],[44.38476,37.0601],[44.39437,37.05024],[44.39918,37.05791],[44.40261,37.05243],[44.41635,37.05462],[44.42665,37.06504],[44.44244,37.06668],[44.44793,37.07325],[44.46647,37.07435],[44.48501,37.08914],[44.49256,37.08859],[44.51797,37.10228],[44.51522,37.11214],[44.52415,37.11652],[44.52484,37.12254],[44.5475,37.1209],[44.55368,37.12473],[44.54818,37.13076],[44.55024,37.13678],[44.5578,37.13951],[44.55986,37.14991],[44.57634,37.16524],[44.58183,37.1625],[44.60105,37.16688],[44.60037,37.1718],[44.61959,37.18001],[44.62371,37.18822],[44.64843,37.18876],[44.67315,37.1718],[44.69238,37.17673],[44.69856,37.17071],[44.7171,37.17508],[44.73495,37.16797],[44.75349,37.1636],[44.75761,37.16961],[44.76928,37.16688],[44.77066,37.15593],[44.7837,37.14608],[44.78439,37.15648],[44.78645,37.16031],[44.78302,37.1718],[44.76654,37.18329],[44.76722,37.1915],[44.75967,37.20736],[44.76173,37.22322],[44.75761,37.22759],[44.7631,37.23688],[44.78782,37.25656],[44.79538,37.25492],[44.80361,37.25875],[44.81323,37.27022],[44.8146,37.28334],[44.7995,37.30846],[44.76722,37.33085],[44.75006,37.33304],[44.73289,37.34341],[44.73289,37.35105],[44.72534,37.35323],[44.7219,37.3647],[44.7219,37.37725],[44.68689,37.38489],[44.68345,37.38161],[44.6553,37.38652],[44.65667,37.4007],[44.6347,37.41979],[44.63745,37.42252],[44.61959,37.43779],[44.58595,37.43997],[44.57908,37.44815],[44.58526,37.45033],[44.58732,37.46068],[44.58595,37.47376],[44.60037,37.47485],[44.60586,37.48466],[44.59968,37.49556],[44.58663,37.50863],[44.60037,37.51353],[44.60655,37.53967],[44.61341,37.54512],[44.60174,37.55383],[44.60311,37.55873],[44.61067,37.56036],[44.61547,37.56471],[44.60861,37.56852],[44.61204,37.5707],[44.59762,37.5805],[44.61479,37.6028],[44.59899,37.61695],[44.5935,37.61803],[44.5784,37.63761],[44.57016,37.63761],[44.5681,37.64196],[44.57359,37.65664],[44.57359,37.66588],[44.58663,37.67023],[44.59144,37.67512],[44.60311,37.68001],[44.61479,37.68925],[44.62921,37.70718],[44.6244,37.70827],[44.62028,37.72673],[44.59762,37.74628],[44.58801,37.76365],[44.5626,37.77017],[44.56192,37.77776],[44.52209,37.78319],[44.51454,37.77614],[44.49531,37.77234],[44.4802,37.77125],[44.47197,37.76311],[44.45343,37.76745],[44.44381,37.77451],[44.44999,37.78536],[44.44862,37.80598],[44.4239,37.79893],[44.41497,37.81629],[44.39506,37.82063],[44.39369,37.83202],[44.40536,37.84124],[44.40742,37.84774],[44.38888,37.86347],[44.37034,37.86563],[44.36828,37.86292],[44.3367,37.86997],[44.33326,37.87593],[44.31884,37.8781],[44.30717,37.86889],[44.29275,37.86618],[44.29,37.87268],[44.26872,37.8678],[44.24263,37.87756],[44.23782,37.8846],[44.22203,37.88894],[44.2337,37.90249],[44.22683,37.90628],[44.2337,37.9274],[44.24469,37.93011],[44.25155,37.94203],[44.24125,37.95719],[44.24125,37.96368],[44.26872,37.99399],[44.26803,38.00968],[44.27833,38.02213],[44.28726,38.02105],[44.30854,38.04268],[44.30168,38.05458],[44.31884,38.06377],[44.31816,38.06809],[44.31198,38.06917],[44.31198,38.07404],[44.31884,38.07944],[44.32777,38.07782],[44.3312,38.09187],[44.32777,38.1016],[44.33464,38.0989],[44.34631,38.10376],[44.36416,38.1016],[44.36691,38.1043],[44.35867,38.11619],[44.35936,38.12321],[44.34837,38.13401],[44.3724,38.13833],[44.39025,38.14643],[44.39506,38.16317],[44.38957,38.16641],[44.39781,38.17289],[44.39987,38.18584],[44.39575,38.19771],[44.40742,38.20635],[44.40536,38.21714],[44.40948,38.21984],[44.40536,38.2317],[44.39643,38.24087],[44.41429,38.26244],[44.43626,38.26891],[44.43901,38.27915],[44.45617,38.28454],[44.47883,38.30287],[44.49668,38.3061],[44.49737,38.33357],[44.50973,38.3368],[44.5111,38.34434],[44.49394,38.34488],[44.50012,38.35134],[44.4905,38.35673],[44.47471,38.35619],[44.46235,38.35942],[44.44931,38.3858],[44.41978,38.37019],[44.38819,38.36481],[44.3827,38.35727],[44.36279,38.3745],[44.35386,38.37665],[44.35249,38.37019],[44.34082,38.37234],[44.32846,38.36965],[44.31335,38.37665],[44.30099,38.39495],[44.30992,38.3971],[44.31884,38.40948],[44.3161,38.43261],[44.30236,38.44659],[44.30992,38.45412],[44.31335,38.47778],[44.32434,38.48423],[44.32022,38.49498],[44.32365,38.50411],[44.3209,38.5111],[44.31129,38.51701],[44.31335,38.52292],[44.30717,38.53259],[44.31747,38.55084],[44.31198,38.56051],[44.31747,38.5734],[44.32571,38.57876],[44.31678,38.60774],[44.32228,38.60935],[44.3209,38.62277],[44.3003,38.63779],[44.27421,38.64369],[44.26803,38.65012],[44.27146,38.65495],[44.27696,38.65656],[44.28314,38.67478],[44.27009,38.68497],[44.27215,38.68926],[44.2694,38.70158],[44.26185,38.70426],[44.26048,38.71284],[44.25293,38.71766],[44.26322,38.72034],[44.27902,38.73158],[44.27696,38.74658],[44.28657,38.75301],[44.29206,38.76372],[44.28588,38.78406],[44.30168,38.79102],[44.30374,38.8044],[44.31404,38.80707],[44.30236,38.82366],[44.29481,38.82847],[44.30099,38.83542],[44.29962,38.84024],[44.28657,38.84452],[44.27902,38.85468],[44.25705,38.84773],[44.24469,38.8504],[44.24263,38.85628],[44.24537,38.86965],[44.23027,38.88087],[44.21722,38.88515],[44.21035,38.89904],[44.21516,38.90225],[44.22065,38.90279],[44.21928,38.91935],[44.19937,38.92202],[44.19662,38.93003],[44.18907,38.93698],[44.20005,38.94926],[44.1822,38.95673],[44.19044,38.98022],[44.17053,38.99143],[44.17945,39.01064],[44.19044,39.01118],[44.21104,39.01971],[44.19593,39.04531],[44.20486,39.05598],[44.18975,39.07571],[44.20349,39.0901],[44.22134,39.09276],[44.21859,39.10608],[44.20829,39.11301],[44.2131,39.13006],[44.18838,39.15775],[44.16641,39.17691],[44.14512,39.18383],[44.13482,39.1817],[44.11422,39.19022],[44.11079,39.19873],[44.09706,39.20512],[44.09431,39.21735],[44.10049,39.22853],[44.10324,39.24554],[44.08882,39.24767],[44.08332,39.25405],[44.09156,39.26575],[44.09362,39.27691],[44.0998,39.27691],[44.10804,39.28382],[44.08058,39.29498],[44.07577,39.30773],[44.07989,39.32739],[44.07165,39.33589],[44.05723,39.34491],[44.0586,39.35606],[44.03801,39.35925],[44.03251,39.37305],[44.0435,39.38473],[44.0586,39.38791],[44.04968,39.40118],[44.07165,39.41285],[44.0847,39.40755],[44.09637,39.41232],[44.11491,39.40224],[44.13276,39.40648],[44.13963,39.40383],[44.13482,39.39375],[44.13002,39.39057],[44.141,39.39322],[44.14512,39.39959],[44.16023,39.40224],[44.17465,39.40012],[44.1925,39.4033],[44.19387,39.41126],[44.21791,39.41816],[44.23988,39.40967],[44.24537,39.39853],[44.26666,39.39853],[44.27696,39.3842],[44.28451,39.38314],[44.29344,39.37518],[44.31747,39.39163],[44.32983,39.38685],[44.347,39.39375],[44.37789,39.41073],[44.42184,39.41179],[44.42596,39.43142],[44.43077,39.43672],[44.43008,39.44414],[44.42459,39.44838],[44.42047,39.46429],[44.40879,39.47224],[44.41703,39.4839],[44.43969,39.4998],[44.43145,39.51039],[44.43351,39.51993],[44.4239,39.53211],[44.42459,39.54217],[44.4239,39.55064],[44.42253,39.56811],[44.44175,39.57446],[44.46098,39.59563],[44.48158,39.61044],[44.48638,39.64323],[44.48158,39.67072],[44.46716,39.68341],[44.61273,39.7811],[44.62234,39.76685],[44.63264,39.75576],[44.62989,39.74468],[44.64088,39.74098],[44.64843,39.72672],[44.65393,39.72725],[44.66903,39.71405],[44.68963,39.71563],[44.7013,39.71194],[44.71366,39.71352],[44.72877,39.7019],[44.7274,39.69873],[44.74113,39.69397],[44.75692,39.67495],[44.75486,39.67125],[44.78782,39.65275],[44.79812,39.65064],[44.80361,39.64271],[44.80636,39.62843],[44.80842,39.63742],[44.8146,39.64323],[44.81735,39.65328],[44.80155,39.65592],[44.8043,39.67231],[44.79469,39.66861],[44.80155,39.68446],[44.78302,39.6871],[44.78508,39.6908],[44.77821,39.70296],[44.76379,39.70348],[44.76791,39.71669],[44.74868,39.71722],[44.74388,39.74204],[44.73426,39.74732],[44.72671,39.74098],[44.70954,39.77107],[44.68757,39.77107],[44.68689,39.78268],[44.69924,39.79007],[44.68208,39.79798],[44.67727,39.78743],[44.66972,39.79323],[44.65805,39.79007],[44.65049,39.80062],[44.63195,39.80589],[44.62783,39.81381],[44.61273,39.81433],[44.62028,39.82119],[44.61547,39.8291],[44.6038,39.82277],[44.59419,39.82594],[44.58869,39.83385],[44.59487,39.84228],[44.59144,39.85968],[44.56604,39.87022],[44.55986,39.8776],[44.55162,39.8855],[44.55299,39.90341],[44.54338,39.90815],[44.53651,39.92237],[44.5214,39.92079],[44.51522,39.92974],[44.50286,39.93448],[44.50012,39.94554],[44.48158,39.96659],[44.46441,39.97291],[44.45411,39.97027],[44.45068,39.97922],[44.42871,39.98974],[44.41772,40.00132],[44.39231,40.005],[44.37995,40.00395],[44.35867,40.01709],[44.35386,40.02603],[44.34288,40.02761],[44.33532,40.03234],[44.32571,40.03024],[44.31747,40.0397],[44.2955,40.0376],[44.29412,40.04601],[44.28382,40.04286],[44.27764,40.04864],[44.26391,40.04759],[44.24881,40.05022],[44.22134,40.04391],[44.21447,40.03392],[44.19319,40.04023],[44.18838,40.03182],[44.17121,40.02814],[44.16503,40.03129],[44.13414,40.03024],[44.11903,40.0355],[44.10461,40.02971],[44.08264,40.03339],[44.0126,40.02446],[43.99475,40.03129],[43.96453,40.01867],[43.89656,40.02551],[43.86634,40.03655],[43.85673,40.04496],[43.84162,40.04496],[43.83476,40.04864],[43.82446,40.04706],[43.82309,40.05968],[43.80798,40.06178],[43.79425,40.07071],[43.78395,40.06966],[43.76541,40.08332],[43.75236,40.07807],[43.73863,40.08227],[43.72283,40.07964],[43.70155,40.08805],[43.69125,40.09698],[43.67958,40.09698],[43.67065,40.10853],[43.6576,40.11221],[43.65554,40.12114],[43.64936,40.13059],[43.65348,40.14266],[43.6631,40.15421],[43.70155,40.1626],[43.71391,40.16208],[43.71254,40.1731],[43.70224,40.17782],[43.69674,40.19251],[43.6734,40.20562],[43.65486,40.2245],[43.66172,40.22817],[43.68301,40.22607],[43.67958,40.25699],[43.66447,40.27009],[43.64593,40.26957],[43.63288,40.28214],[43.63563,40.29471],[43.62739,40.29838],[43.61778,40.31199],[43.59031,40.34497],[43.59718,40.35648],[43.59512,40.36224],[43.59924,40.37165],[43.60679,40.37532],[43.60611,40.38316],[43.61434,40.38944],[43.62052,40.39885],[43.61434,40.41506],[43.61915,40.41663],[43.61915,40.42186],[43.61228,40.42656],[43.60748,40.43649],[43.591,40.44799],[43.56765,40.46],[43.55735,40.46],[43.54362,40.47724],[43.55804,40.48038],[43.55735,40.495],[43.5704,40.49709],[43.57109,40.50335],[43.60061,40.51275],[43.60817,40.51484],[43.61846,40.52476],[43.62739,40.52423],[43.62602,40.51954],[43.63426,40.51954],[43.64044,40.52423],[43.62739,40.53676],[43.63494,40.53937],[43.64662,40.53154],[43.65074,40.53728],[43.64456,40.54563],[43.64181,40.55972],[43.66653,40.56545],[43.74549,40.69729],[43.74481,40.70458],[43.73588,40.71499],[43.74755,40.72592],[43.74069,40.74829],[43.72421,40.78106],[43.71803,40.80185],[43.70567,40.82212],[43.6782,40.84602],[43.68026,40.86731],[43.67614,40.87043],[43.67408,40.886],[43.68095,40.90313],[43.66996,40.91143],[43.67614,40.93063],[43.67065,40.93841],[43.59237,40.98663],[43.58413,40.9887],[43.57795,40.99285],[43.56285,40.99441],[43.54431,40.99907],[43.5189,41.01513],[43.50723,41.01203],[43.49418,41.01617],[43.48457,41.01669],[43.46809,41.03171],[43.46946,41.04932],[43.47015,41.06848],[43.45916,41.07417],[43.45504,41.08556],[43.44749,41.08918],[43.44749,41.10056],[43.4571,41.11039],[43.45779,41.12022],[43.47358,41.12436],[43.46191,41.15229],[43.44749,41.17761],[43.4111,41.18692],[43.37608,41.20345],[43.33007,41.20139],[43.32321,41.19518],[43.27652,41.18588],[43.26416,41.17917],[43.22914,41.17348],[43.23669,41.18433],[43.2003,41.23392],[43.19961,41.24632],[43.19412,41.25303],[43.17695,41.25561],[43.15017,41.24528],[43.1282,41.25303],[43.17077,41.27316],[43.21197,41.29019],[43.21472,41.30411],[43.19892,41.30876],[43.19,41.30463],[43.16597,41.30979],[43.1591,41.31701],[43.13644,41.31907],[43.11172,41.34794],[43.08494,41.35928],[43.05885,41.36598],[43.05542,41.37165],[43.041,41.37577],[43.03276,41.37114],[43.01902,41.37629],[43.0204,41.37938],[43.00941,41.39741],[43.00529,41.39947],[43.00392,41.4072],[42.98812,41.41235],[42.98812,41.42522],[42.96752,41.43346],[42.96958,41.44169],[42.96684,41.45147],[42.94349,41.45713],[42.93113,41.47051],[42.89955,41.47874],[42.90092,41.49983],[42.87551,41.50394],[42.86384,41.49314],[42.85423,41.47051],[42.82882,41.48028],[42.81578,41.4916],[42.79998,41.49623],[42.80548,41.50806],[42.79724,41.51577],[42.80548,41.53068],[42.81784,41.53993],[42.82058,41.55637],[42.8302,41.55894],[42.83363,41.57179],[42.83363,41.58617],[42.8144,41.58874],[42.79174,41.58771],[42.78282,41.5836],[42.78007,41.5759],[42.77114,41.58412],[42.7526,41.58617],[42.74025,41.59644],[42.71415,41.59541],[42.69699,41.6026],[42.66059,41.59439],[42.60154,41.58463],[42.5933,41.57487],[42.5782,41.56768],[42.57476,41.55843],[42.57957,41.54301],[42.56378,41.52554],[42.57133,41.5096],[42.56034,41.50703],[42.55348,41.4988],[42.54867,41.49983],[42.54592,41.49314],[42.53288,41.4916],[42.52601,41.47977],[42.51228,41.47257],[42.52395,41.44272],[42.51983,41.43706],[42.49237,41.44684],[42.48275,41.4386],[42.46833,41.43706],[42.43537,41.44324],[42.41546,41.45868],[42.40036,41.46639],[42.38456,41.46228],[42.3825,41.46742],[42.36328,41.46434],[42.34886,41.47257],[42.32894,41.46845],[42.31246,41.4808],[42.30148,41.48492],[42.28019,41.49417],[42.24517,41.49366],[42.22595,41.49983],[42.20466,41.4916],[42.19574,41.50754],[42.1772,41.5132],[42.15934,41.50703],[42.12158,41.506],[42.11334,41.51114],[42.08519,41.51063],[42.04811,41.49675],[42.033,41.49623],[42.02682,41.50034],[41.99386,41.50446],[41.99111,41.51629],[41.98288,41.52297],[41.97395,41.52143],[41.96296,41.52503],[41.91078,41.4988],[41.89704,41.48492],[41.8943,41.47463],[41.88606,41.47154],[41.88194,41.46022],[41.84623,41.44838],[41.84555,41.44015],[41.82289,41.43346],[41.81259,41.43603],[41.80435,41.44735],[41.78993,41.44838],[41.78512,41.46176],[41.77551,41.46382],[41.77413,41.46073],[41.75216,41.47051],[41.7089,41.47463],[41.71714,41.48749],[41.70959,41.49675],[41.68968,41.488],[41.67869,41.48749],[41.66633,41.48337],[41.63406,41.48749],[41.61964,41.50137],[41.58256,41.5096],[41.57913,41.5168],[41.56814,41.52091],[41.55647,41.51885],[41.54548,41.52143],[39.30908,42.25698]]]}},{"type":"Feature","properties":{"cq_zone_name":"Southern Zone of Asia","cq_zone_number":22,"cq_zone_name_loc":[6,75]},"geometry":{"type":"Polygon","coordinates":[[[67,22],[68.15918,23.67408],[68.19969,23.77592],[68.21067,23.87704],[68.27522,23.92977],[68.32878,23.9235],[68.34251,23.96492],[68.3995,23.97119],[68.75175,23.97307],[68.76548,24.28953],[68.77922,24.30329],[68.81012,24.30705],[68.82797,24.31018],[68.83827,24.29203],[68.83827,24.26324],[68.852,24.21565],[68.86299,24.21064],[68.87947,24.22191],[68.88839,24.25385],[68.89938,24.272],[68.89801,24.28202],[68.91586,24.2864],[68.9447,24.30204],[68.97285,24.26073],[68.98521,24.22755],[69.01062,24.22442],[69.03465,24.23945],[69.09782,24.27325],[69.19464,24.23632],[69.31274,24.28139],[69.36836,24.27075],[69.402,24.27075],[69.44458,24.28014],[69.47204,24.27075],[69.49951,24.26762],[69.54689,24.27889],[69.59426,24.29203],[69.73228,24.17118],[70.0241,24.17181],[70.03784,24.17557],[70.05088,24.18872],[70.06599,24.2],[70.11268,24.30142],[70.18272,24.3108],[70.1992,24.31644],[70.21156,24.32269],[70.24795,24.3277],[70.29121,24.34959],[70.37017,24.35022],[70.39009,24.35898],[70.40657,24.37399],[70.44433,24.38525],[70.47386,24.38962],[70.49102,24.39713],[70.5487,24.41339],[70.559,24.42026],[70.57205,24.42151],[70.59677,24.40963],[70.59608,24.39713],[70.58097,24.36586],[70.56106,24.3546],[70.58235,24.30392],[70.57891,24.29453],[70.58509,24.28827],[70.58509,24.27951],[70.57548,24.26637],[70.56999,24.25259],[70.57617,24.25072],[70.58303,24.24446],[70.59196,24.24446],[70.64277,24.22379],[70.66749,24.22004],[70.69496,24.21878],[70.71556,24.21565],[70.74302,24.21878],[70.80825,24.22129],[70.83503,24.23068],[70.85014,24.24446],[70.87829,24.24696],[70.88996,24.25322],[70.9085,24.26136],[70.88378,24.27325],[70.87486,24.28076],[70.87554,24.29578],[70.88516,24.30517],[70.92498,24.3277],[70.94833,24.34709],[70.95451,24.34834],[70.98403,24.36461],[71.00532,24.35085],[71.01905,24.34709],[71.0424,24.35022],[71.05888,24.36211],[71.06643,24.37774],[71.08497,24.39525],[71.10763,24.39713],[71.12136,24.40526],[71.12548,24.41964],[71.10351,24.43464],[71.07124,24.43652],[71.03691,24.43152],[71.01013,24.44464],[70.99777,24.44715],[70.99845,24.46715],[71.00738,24.52713],[70.9909,24.54649],[70.99502,24.56336],[70.98815,24.59583],[70.99708,24.61456],[71.02523,24.64077],[71.05476,24.64888],[71.07536,24.66324],[71.09664,24.68695],[71.06643,24.71564],[71.02798,24.80917],[70.94009,24.93127],[70.91949,24.99726],[70.8879,25.14777],[70.75058,25.27698],[70.73684,25.33161],[70.66268,25.39862],[70.6723,25.42095],[70.67779,25.52881],[70.66818,25.53128],[70.66955,25.63533],[70.6723,25.67618],[70.64758,25.71331],[70.60913,25.71331],[70.52673,25.68361],[70.38665,25.67247],[70.2658,25.71702],[70.25207,25.75537],[70.22049,25.79494],[70.17517,25.82708],[70.09826,25.94199],[70.08178,26.08515],[70.14221,26.16283],[70.16693,26.21828],[70.17517,26.25031],[70.16418,26.29218],[70.18615,26.37218],[70.17517,26.42507],[70.18615,26.47794],[70.17517,26.55168],[70.11749,26.58607],[70.05432,26.6008],[69.89502,26.5787],[69.79202,26.59712],[69.72335,26.65236],[69.51049,26.74315],[69.4844,26.80691],[69.49813,26.87063],[69.51324,27.01264],[69.5874,27.18257],[69.63409,27.21555],[69.70138,27.28636],[69.76318,27.32419],[69.8703,27.40712],[69.93209,27.4973],[70.02479,27.56246],[70.07148,27.66346],[70.11611,27.77165],[70.13671,27.81296],[70.19783,27.86578],[70.20744,27.88217],[70.22666,27.9022],[70.29739,27.93557],[70.37223,28.01319],[70.43472,28.01925],[70.50613,28.03683],[70.55282,28.02774],[70.5899,28.01016],[70.59951,27.99197],[70.6771,27.92101],[70.67916,27.86943],[70.68328,27.82814],[70.73341,27.76133],[70.74028,27.74188],[70.75882,27.72061],[70.87074,27.70541],[70.90576,27.71027],[70.95245,27.72973],[70.96275,27.72851],[70.98403,27.74249],[71.20239,27.83421],[71.38229,27.87185],[71.66725,27.87732],[71.88217,27.9568],[71.89933,27.96105],[71.92611,28.12286],[72.0037,28.21971],[72.13142,28.31344],[72.20626,28.39442],[72.29896,28.6707],[72.35664,28.73454],[72.40402,28.7827],[72.47955,28.81158],[72.73155,28.94807],[72.94509,29.02795],[73.00483,29.15336],[73.08448,29.23727],[73.28086,29.57286],[73.35159,29.79477],[73.39759,29.9472],[73.59878,30.01857],[73.80752,30.06909],[73.82125,30.08691],[73.97232,30.19736],[73.95927,30.26677],[73.93043,30.32013],[73.90228,30.34917],[73.88168,30.35984],[73.88442,30.36872],[73.91532,30.38413],[73.92082,30.39656],[73.93524,30.40012],[73.9476,30.41492],[73.96476,30.42617],[73.97026,30.44275],[73.92425,30.43979],[73.93661,30.44926],[73.92974,30.46702],[73.93386,30.4901],[73.94691,30.48418],[73.94897,30.46169],[73.96476,30.45755],[73.96957,30.47649],[73.96408,30.48595],[73.98948,30.51258],[74.01969,30.51554],[74.01214,30.52382],[74.01214,30.53387],[74.02519,30.52559],[74.03892,30.53151],[74.03961,30.54274],[74.05059,30.53565],[74.05677,30.5179],[74.06776,30.51968],[74.09111,30.54866],[74.08012,30.54925],[74.07463,30.55634],[74.10141,30.57822],[74.09523,30.60068],[74.10141,30.60364],[74.10003,30.61014],[74.0966,30.6125],[74.10347,30.619],[74.11788,30.60955],[74.1275,30.63377],[74.13986,30.62845],[74.1941,30.66508],[74.2202,30.69343],[74.23118,30.72472],[74.26551,30.72472],[74.27444,30.73593],[74.28199,30.72885],[74.28611,30.73475],[74.27444,30.74478],[74.26071,30.77251],[74.26483,30.77841],[74.27581,30.77428],[74.30191,30.77959],[74.30603,30.79021],[74.29985,30.78844],[74.29641,30.79729],[74.31976,30.82678],[74.31976,30.84682],[74.3534,30.85331],[74.35546,30.84741],[74.36714,30.84918],[74.36714,30.85743],[74.38087,30.86097],[74.3589,30.87335],[74.36645,30.89515],[74.38362,30.89574],[74.39666,30.90929],[74.42207,30.90929],[74.42413,30.91636],[74.4104,30.9193],[74.4104,30.92343],[74.42482,30.9252],[74.42756,30.93226],[74.4152,30.93167],[74.41795,30.93933],[74.43855,30.94169],[74.44198,30.95052],[74.46327,30.95641],[74.45915,30.96524],[74.49073,30.97466],[74.50447,30.96524],[74.51477,30.97996],[74.54567,30.9935],[74.53949,31.0088],[74.54841,31.03116],[74.57176,31.05528],[74.58961,31.04999],[74.59785,31.03705],[74.61433,31.04469],[74.67132,31.05234],[74.69741,31.07587],[74.69192,31.08234],[74.70291,31.09292],[74.69947,31.11232],[74.68917,31.11761],[74.68849,31.12761],[74.67132,31.12408],[74.65827,31.13172],[74.63424,31.11879],[74.63218,31.13231],[74.60678,31.13466],[74.59442,31.12878],[74.60952,31.11291],[74.61227,31.09645],[74.57107,31.08351],[74.55322,31.08763],[74.54635,31.12055],[74.51202,31.1329],[74.51477,31.15053],[74.51065,31.18167],[74.51889,31.18284],[74.52713,31.20986],[74.51545,31.22806],[74.53331,31.25155],[74.52095,31.26974],[74.53949,31.30495],[74.52781,31.31375],[74.54635,31.33604],[74.55116,31.36536],[74.58686,31.38119],[74.58755,31.4017],[74.60746,31.42514],[74.61845,31.41987],[74.62188,31.43159],[74.63287,31.41928],[74.64317,31.4187],[74.6521,31.42631],[74.63699,31.44448],[74.65484,31.45444],[74.63836,31.47786],[74.626,31.47611],[74.63356,31.48782],[74.62051,31.4843],[74.61227,31.49894],[74.5951,31.49777],[74.58068,31.49953],[74.58274,31.51884],[74.59442,31.52704],[74.61158,31.52762],[74.61776,31.55279],[74.60678,31.56215],[74.61227,31.56976],[74.59304,31.57561],[74.5745,31.60251],[74.55734,31.60777],[74.54635,31.64578],[74.53949,31.64753],[74.5388,31.65981],[74.52987,31.66565],[74.53399,31.68026],[74.50241,31.69604],[74.49829,31.71064],[74.48593,31.71765],[74.50172,31.72933],[74.50584,31.74101],[74.54772,31.74977],[74.56146,31.76203],[74.55047,31.78188],[74.55528,31.79355],[74.5642,31.79647],[74.55802,31.80406],[74.5745,31.81689],[74.57313,31.84081],[74.58412,31.85189],[74.59167,31.84956],[74.59854,31.86881],[74.60678,31.86939],[74.60884,31.89155],[74.63218,31.88455],[74.67544,31.92535],[74.7187,31.92419],[74.71389,31.93643],[74.73449,31.944],[74.74411,31.93817],[74.75372,31.944],[74.75852,31.95507],[74.7702,31.94924],[74.7853,31.95798],[74.8162,31.96031],[74.82994,31.97954],[74.82925,31.99934],[74.8368,32.00924],[74.85122,32.01389],[74.84916,32.0203],[74.8629,32.02204],[74.8677,32.02845],[74.86976,32.02146],[74.87594,32.02903],[74.87045,32.04766],[74.878,32.05406],[74.90753,32.04998],[74.92469,32.06628],[74.97482,32.05406],[74.97963,32.04591],[74.97207,32.04009],[74.97688,32.03951],[75.00228,32.04125],[75.01396,32.0366],[75.02014,32.04882],[75.03456,32.04882],[75.04142,32.043],[75.05928,32.05522],[75.06752,32.06802],[75.07232,32.0593],[75.0888,32.06279],[75.09017,32.07559],[75.10597,32.06046],[75.10871,32.07035],[75.12245,32.07908],[75.15747,32.08082],[75.17326,32.06861],[75.19592,32.08315],[75.19729,32.09711],[75.20484,32.09653],[75.20416,32.11922],[75.21583,32.11863],[75.22201,32.09944],[75.22956,32.10875],[75.23506,32.10409],[75.23025,32.09479],[75.23918,32.09304],[75.24398,32.09828],[75.26321,32.10293],[75.27831,32.11573],[75.28312,32.13026],[75.27694,32.13608],[75.28381,32.15119],[75.29823,32.15468],[75.30647,32.16805],[75.31951,32.18142],[75.31265,32.19885],[75.33393,32.21977],[75.34492,32.21861],[75.36552,32.22325],[75.37582,32.2279],[75.36964,32.24532],[75.37445,32.26797],[75.37994,32.26855],[75.37239,32.27842],[75.34355,32.28132],[75.35041,32.28945],[75.32226,32.29874],[75.33737,32.32195],[75.32775,32.33007],[75.32226,32.34284],[75.30029,32.3469],[75.30098,32.35096],[75.28999,32.35734],[75.2893,32.37126],[75.27488,32.37706],[75.25978,32.37358],[75.25566,32.38923],[75.25222,32.39155],[75.24467,32.38692],[75.21308,32.40257],[75.20828,32.39503],[75.19317,32.39909],[75.19249,32.41011],[75.20072,32.41184],[75.19935,32.42054],[75.18974,32.42576],[75.15953,32.41938],[75.15197,32.42112],[75.13343,32.41069],[75.12725,32.42692],[75.13549,32.42692],[75.1197,32.44256],[75.12107,32.45415],[75.11009,32.45995],[75.10871,32.47617],[75.10116,32.47675],[75.08949,32.47095],[75.07164,32.4808],[75.05653,32.48196],[75.027,32.49702],[75.01533,32.47501],[75.01876,32.46748],[74.98649,32.45183],[74.96727,32.45937],[74.95216,32.44662],[74.94323,32.45299],[74.93774,32.46632],[74.93705,32.47153],[74.91989,32.46632],[74.90615,32.47211],[74.90203,32.46748],[74.87594,32.47964],[74.88418,32.49123],[74.878,32.49354],[74.86496,32.48717],[74.85809,32.49528],[74.84779,32.48949],[74.81964,32.4976],[74.81002,32.48254],[74.80178,32.48196],[74.79766,32.47906],[74.75646,32.48254],[74.75303,32.47906],[74.72831,32.48138],[74.72763,32.47617],[74.71183,32.47848],[74.71527,32.48775],[74.70359,32.4947],[74.69123,32.48543],[74.68093,32.49123],[74.68711,32.50512],[74.68162,32.51265],[74.69055,32.53292],[74.66514,32.54276],[74.66102,32.55375],[74.67338,32.5526],[74.67407,32.56822],[74.65278,32.56244],[74.64729,32.58674],[74.6569,32.59657],[74.64248,32.59889],[74.63905,32.61566],[74.65553,32.6174],[74.65416,32.63417],[74.66995,32.64168],[74.6775,32.65093],[74.68917,32.65093],[74.69398,32.66596],[74.66583,32.67521],[74.6521,32.69891],[74.66171,32.72606],[74.65484,32.73068],[74.66514,32.74974],[74.67544,32.75783],[74.67613,32.77284],[74.69673,32.80458],[74.69673,32.81036],[74.70565,32.81844],[74.70428,32.84267],[74.68299,32.8369],[74.66514,32.82478],[74.6569,32.83055],[74.6418,32.82132],[74.63287,32.80747],[74.65759,32.78785],[74.65484,32.78265],[74.64042,32.78265],[74.62875,32.7688],[74.64042,32.7584],[74.63699,32.7509],[74.61776,32.76129],[74.57656,32.75378],[74.5745,32.75783],[74.55802,32.75898],[74.54635,32.74685],[74.51065,32.74743],[74.50378,32.76649],[74.48181,32.76591],[74.47288,32.77803],[74.46464,32.77746],[74.46052,32.78438],[74.44816,32.7942],[74.44679,32.80343],[74.43786,32.81151],[74.43718,32.82536],[74.41932,32.84094],[74.42138,32.85536],[74.41246,32.86747],[74.41864,32.88247],[74.41452,32.89803],[74.40078,32.89919],[74.39254,32.90899],[74.37332,32.91302],[74.37469,32.91821],[74.3486,32.9234],[74.32868,32.91821],[74.31289,32.93435],[74.34036,32.95106],[74.32456,33.00405],[74.31976,33.0219],[74.32594,33.03169],[74.29504,33.03342],[74.25041,33.04493],[74.20715,33.06737],[74.17144,33.07658],[74.18037,33.09269],[74.179,33.09844],[74.15977,33.11052],[74.16526,33.12202],[74.15702,33.12375],[74.15359,33.14042],[74.13299,33.14847],[74.12956,33.16112],[74.11857,33.15882],[74.11102,33.16629],[74.10209,33.16744],[74.08012,33.17951],[74.06639,33.19732],[74.05265,33.19502],[74.04853,33.20307],[74.03686,33.19732],[74.01832,33.20537],[74.01626,33.21341],[74.00528,33.21973],[74.00939,33.23179],[74.00116,33.23983],[74.01283,33.25247],[74.01832,33.26969],[74.02656,33.26797],[74.04785,33.28806],[74.05609,33.27945],[74.09042,33.28404],[74.10759,33.30011],[74.12544,33.30413],[74.14398,33.32249],[74.15634,33.32708],[74.15634,33.33511],[74.16732,33.34085],[74.17625,33.37182],[74.18655,33.38615],[74.18655,33.40966],[74.179,33.4131],[74.17625,33.43373],[74.1838,33.44691],[74.18312,33.47097],[74.18861,33.46868],[74.19273,33.47899],[74.15771,33.50991],[74.15771,33.53681],[74.13917,33.55684],[74.1069,33.57401],[74.0966,33.57115],[74.08424,33.58201],[74.06295,33.58259],[74.0554,33.57572],[74.03205,33.57629],[74.02519,33.59689],[74.00184,33.6169],[73.97987,33.63977],[73.9833,33.6552],[73.99223,33.6552],[73.98399,33.67578],[73.9888,33.68606],[73.9785,33.6992],[73.9833,33.70263],[73.98262,33.70777],[73.96682,33.70434],[73.96133,33.72205],[73.98262,33.7329],[73.98124,33.7409],[74.00116,33.74318],[74.01145,33.76031],[74.00802,33.77458],[74.03274,33.79683],[74.03411,33.80596],[74.04235,33.80425],[74.06089,33.82479],[74.11377,33.82422],[74.16389,33.83734],[74.19136,33.83962],[74.19822,33.8476],[74.20578,33.8476],[74.20646,33.85958],[74.21402,33.85502],[74.24629,33.88238],[74.27719,33.89663],[74.28131,33.93766],[74.26895,33.95418],[74.27787,33.96899],[74.26139,33.97639],[74.26277,33.9855],[74.25384,34.00428],[74.23736,34.01282],[74.23255,34.02364],[74.21333,34.02648],[74.21539,34.01738],[74.19822,34.01624],[74.18106,34.02364],[74.17488,34.03388],[74.1687,34.0299],[74.16183,34.02876],[74.13917,34.0464],[74.10896,34.03786],[74.06982,34.03786],[74.05197,34.0316],[74.04373,34.03729],[74.0142,34.03672],[74.01077,34.02534],[73.98742,34.01339],[73.96682,34.01055],[73.92768,34.0225],[73.92219,34.03729],[73.90846,34.04298],[73.8961,34.05777],[73.89953,34.07256],[73.90571,34.07654],[73.90708,34.08451],[73.90365,34.08963],[73.9064,34.10668],[73.927,34.10498],[73.92837,34.12885],[73.94828,34.13795],[73.95378,34.15272],[73.9627,34.14988],[73.9682,34.1567],[73.96064,34.15897],[73.96133,34.16749],[73.99841,34.18113],[74.00253,34.18965],[74.01077,34.1959],[73.9991,34.19817],[73.99978,34.21464],[74.00459,34.2152],[74.00802,34.22656],[73.9888,34.26232],[73.98948,34.27367],[73.9476,34.27651],[73.93798,34.28615],[73.93592,34.29636],[73.94416,34.30147],[73.9421,34.31395],[73.9318,34.31281],[73.93112,34.30714],[73.91807,34.30827],[73.927,34.32132],[73.9373,34.33719],[73.92356,34.3406],[73.91189,34.3508],[73.90434,34.35137],[73.88374,34.33379],[73.86451,34.33549],[73.8549,34.32302],[73.84666,34.32926],[73.82057,34.33209],[73.81095,34.33719],[73.81507,34.34513],[73.79585,34.34343],[73.79722,34.33776],[73.7725,34.33266],[73.76152,34.34343],[73.75053,34.344],[73.75053,34.36837],[73.75534,34.38084],[73.76907,34.38594],[73.77937,34.40294],[73.7931,34.412],[73.80409,34.4256],[73.84048,34.42843],[73.84048,34.43523],[73.84735,34.43239],[73.87824,34.45335],[73.88717,34.45448],[73.87962,34.48335],[73.8906,34.48901],[73.88786,34.50033],[73.89747,34.51447],[73.91189,34.519],[73.90571,34.52805],[73.93798,34.5535],[73.94142,34.55124],[73.95584,34.56651],[73.95103,34.56877],[73.95927,34.58121],[73.95309,34.58234],[73.95378,34.59534],[73.92906,34.60212],[73.93455,34.61569],[73.93043,34.62755],[73.93386,34.6462],[73.95446,34.64902],[73.95034,34.65523],[73.95721,34.66653],[73.95446,34.67218],[73.96957,34.68573],[73.98742,34.68008],[74.00871,34.68404],[74.02931,34.68291],[74.05334,34.67331],[74.09454,34.67048],[74.11033,34.67895],[74.12338,34.66088],[74.14947,34.66088],[74.14604,34.67161],[74.15634,34.68121],[74.15908,34.69081],[74.21264,34.71904],[74.24079,34.72524],[74.31083,34.7811],[74.34379,34.78786],[74.39323,34.78504],[74.43512,34.7732],[74.43855,34.7794],[74.46052,34.78166],[74.46601,34.77207],[74.47288,34.77151],[74.47906,34.77884],[74.52438,34.76756],[74.5745,34.76192],[74.58824,34.74951],[74.65004,34.70605],[74.729,34.68065],[74.73312,34.68291],[74.7393,34.67952],[74.83955,34.67444],[74.84916,34.6846],[74.85878,34.68121],[74.86633,34.67331],[74.93156,34.67387],[74.98374,34.64733],[74.99748,34.65354],[75.0016,34.64394],[75.02632,34.63094],[75.03456,34.63772],[75.05104,34.63377],[75.08743,34.65467],[75.12039,34.64959],[75.12657,34.6541],[75.16502,34.6558],[75.17807,34.64563],[75.18974,34.65015],[75.26733,34.63772],[75.26733,34.62077],[75.25634,34.61908],[75.25016,34.60156],[75.26527,34.59986],[75.28381,34.59534],[75.30166,34.58573],[75.31951,34.56538],[75.32981,34.57103],[75.34286,34.56594],[75.35385,34.54898],[75.36621,34.53767],[75.50628,34.5388],[75.66146,34.53258],[75.69786,34.52183],[75.78231,34.51108],[75.83862,34.55972],[75.9011,34.58686],[75.96771,34.63885],[75.99105,34.63829],[76.00273,34.65749],[76.03225,34.68573],[76.06041,34.68855],[76.0865,34.67105],[76.09062,34.6654],[76.10092,34.66258],[76.10229,34.64846],[76.11259,34.64055],[76.16203,34.63433],[76.19018,34.66088],[76.24099,34.675],[76.25472,34.67387],[76.24854,34.68291],[76.25472,34.69138],[76.27258,34.69759],[76.26091,34.71678],[76.29524,34.71791],[76.43257,34.75063],[76.43188,34.77264],[76.47033,34.79801],[76.50466,34.79463],[76.54174,34.76756],[76.60011,34.75007],[76.64062,34.75628],[76.68044,34.75063],[76.71203,34.81042],[76.74774,34.83071],[76.75941,34.89381],[76.74842,34.91127],[76.75735,34.93885],[76.7704,34.93097],[76.81228,34.95349],[76.85966,34.96362],[76.86927,34.98331],[76.9963,34.93435],[77.00866,34.976],[77.00798,34.99231],[77.01416,35.0328],[77.03064,35.04011],[77.04093,35.03843],[77.05192,35.05023],[77.09518,35.04742],[77.11372,35.05079],[77.12127,35.06428],[77.10823,35.09126],[77.07939,35.10249],[77.08213,35.11597],[77.07183,35.12159],[77.07183,35.13394],[77.08488,35.14293],[77.08831,35.16875],[77.05261,35.17717],[77.01553,35.18447],[77.00523,35.19962],[76.99287,35.21084],[77.00386,35.22711],[77.00111,35.23889],[76.97502,35.25739],[76.9915,35.26916],[77.00042,35.28878],[77.01622,35.29943],[76.98463,35.31568],[76.9915,35.32969],[76.97914,35.34649],[76.98326,35.36049],[76.9606,35.36329],[76.95098,35.37729],[76.95442,35.38177],[76.94755,35.39352],[76.91734,35.40248],[76.90017,35.38792],[76.8679,35.38904],[76.84799,35.4008],[76.83288,35.41983],[76.84043,35.43997],[76.81915,35.45619],[76.79306,35.49422],[76.7958,35.51825],[76.7752,35.5149],[76.7601,35.51937],[76.7498,35.55401],[76.76628,35.56351],[76.77864,35.5797],[76.79237,35.5758],[76.79443,35.58641],[76.75598,35.63051],[76.76284,35.63999],[76.77314,35.63776],[76.78138,35.64167],[76.7752,35.65952],[76.78344,35.6612],[76.80679,35.66566],[76.81434,35.67012],[76.82189,35.66733],[76.83906,35.66901],[76.84387,35.67459],[76.85417,35.66789],[76.85966,35.65115],[76.90223,35.61934],[76.93244,35.61153],[76.95854,35.59534],[76.96609,35.59478],[76.97296,35.60036],[76.98326,35.59869],[76.99493,35.60874],[77.01072,35.61041],[77.02858,35.60092],[77.06153,35.60092],[77.09106,35.5663],[77.11235,35.56351],[77.12127,35.55736],[77.12882,35.55569],[77.14668,35.53893],[77.16659,35.53781],[77.19268,35.52272],[77.21466,35.52272],[77.22564,35.53055],[77.25036,35.53166],[77.26272,35.53893],[77.27302,35.53669],[77.2998,35.54396],[77.33688,35.52663],[77.341,35.50428],[77.35542,35.49533],[77.36297,35.4998],[77.3719,35.49645],[77.37121,35.48974],[77.3822,35.47297],[77.39593,35.47073],[77.40829,35.47353],[77.42477,35.46961],[77.444,35.46122],[77.50099,35.48974],[77.51815,35.48583],[77.52571,35.48471],[77.53601,35.48862],[77.54287,35.48471],[77.55867,35.48807],[77.58132,35.47968],[77.57926,35.46961],[77.593,35.46458],[77.60604,35.47185],[77.63076,35.46234],[77.64175,35.46738],[77.63832,35.47856],[77.63832,35.48303],[77.65342,35.48527],[77.67059,35.46794],[77.67952,35.46402],[77.68775,35.45339],[77.69737,35.46402],[77.71865,35.46122],[77.74337,35.49533],[77.75573,35.49869],[77.75848,35.50372],[77.78114,35.49757],[77.78251,35.5054],[77.79968,35.50931],[77.80311,35.52049],[77.8141,35.5216],[77.8553,35.4903],[77.86216,35.50148],[77.87864,35.48974],[77.87864,35.4808],[77.91091,35.4629],[77.92121,35.48303],[77.91778,35.4903],[77.92396,35.49757],[77.93563,35.49086],[77.94593,35.47912],[77.95486,35.48359],[77.96722,35.48136],[77.96928,35.49701],[78.00087,35.49254],[78.0091,35.48192],[78.02421,35.4685],[78.0352,35.47241],[78.03863,35.48639],[78.05305,35.49086],[78.0661,35.48639],[78.07296,35.49533],[78.08258,35.49198],[78.08738,35.48695],[78.11965,35.48024],[78.10935,35.46905],[78.10523,35.44724],[78.10798,35.44053],[78.09356,35.42374],[78.05442,35.40248],[78.04412,35.37841],[78.0249,35.36161],[78.00979,35.30055],[78.01185,35.27309],[78.00293,35.24057],[78.01528,35.21757],[78.0249,35.21477],[78.02833,35.20467],[78.03863,35.20074],[78.0558,35.17829],[78.0661,35.17437],[78.08601,35.17661],[78.09013,35.16595],[78.10317,35.16763],[78.10592,35.16202],[78.10043,35.13507],[78.10386,35.11934],[78.11279,35.11597],[78.11416,35.1053],[78.13339,35.09631],[78.13201,35.09182],[78.14506,35.07159],[78.13339,35.06035],[78.13682,35.05192],[78.12171,35.04686],[78.11554,35.03561],[78.14231,35.01031],[78.15673,34.99062],[78.17665,34.98556],[78.20274,34.9715],[78.20137,34.95293],[78.18489,34.94111],[78.1739,34.93942],[78.20617,34.90339],[78.20411,34.89212],[78.22334,34.88874],[78.23776,34.88086],[78.22952,34.85438],[78.23638,34.84311],[78.22746,34.81098],[78.23295,34.79914],[78.22677,34.77207],[78.2151,34.76812],[78.20549,34.75289],[78.20274,34.73371],[78.21098,34.71847],[78.27209,34.69984],[78.2769,34.68121],[78.27415,34.67105],[78.26179,34.66484],[78.26797,34.65241],[78.27072,34.6332],[78.28857,34.61512],[78.32908,34.6106],[78.33526,34.60325],[78.38333,34.60778],[78.40873,34.59647],[78.43002,34.59138],[78.43139,34.57329],[78.42727,34.55916],[78.43689,34.54219],[78.44512,34.54389],[78.45817,34.56877],[78.47808,34.56934],[78.4774,34.57895],[78.498,34.58291],[78.51379,34.57386],[78.53164,34.57895],[78.55018,34.57216],[78.55842,34.55633],[78.55911,34.53993],[78.55499,34.53371],[78.56117,34.52805],[78.55636,34.5207],[78.56254,34.51221],[78.58108,34.50542],[78.59001,34.50825],[78.59275,34.52862],[78.61404,34.53936],[78.62503,34.53767],[78.64563,34.55124],[78.64563,34.53993],[78.6882,34.52862],[78.70742,34.52749],[78.71498,34.50203],[78.76098,34.48109],[78.75618,34.47429],[78.75686,34.46637],[78.73695,34.45788],[78.75892,34.44768],[78.76304,34.44089],[78.7754,34.43692],[78.78227,34.44146],[78.80561,34.43523],[78.81935,34.42107],[78.84819,34.41767],[78.88046,34.39161],[78.91067,34.38197],[78.91754,34.38651],[78.93402,34.37971],[78.94775,34.38934],[78.96492,34.38707],[78.96217,34.37234],[78.99032,34.35364],[79.04457,34.32812],[79.03495,34.31792],[78.98002,34.31224],[78.98551,34.29977],[78.96766,34.27821],[78.96148,34.23678],[78.95118,34.22599],[78.945,34.22599],[78.9244,34.17204],[78.92578,34.1567],[78.9093,34.15159],[78.90998,34.14193],[78.90518,34.14193],[78.89968,34.14704],[78.88458,34.15102],[78.87565,34.16409],[78.86261,34.16636],[78.8578,34.14306],[78.84063,34.14193],[78.82827,34.12431],[78.79325,34.13681],[78.7857,34.1209],[78.74519,34.0919],[78.71566,34.0919],[78.70742,34.09361],[78.693,34.0919],[78.69644,34.08508],[78.68202,34.07882],[78.67103,34.09361],[78.65661,34.07598],[78.66554,34.07029],[78.65524,34.0555],[78.65593,34.03445],[78.66828,34.03046],[78.67378,34.02648],[78.68957,34.02364],[78.70124,34.02648],[78.70742,34.01851],[78.72734,34.01567],[78.7294,34.00884],[78.74244,34.00087],[78.73626,33.95589],[78.7294,33.92285],[78.76442,33.91373],[78.76167,33.89036],[78.75137,33.88352],[78.76647,33.83277],[78.75343,33.78428],[78.76579,33.77344],[78.76373,33.76145],[78.77677,33.74546],[78.7651,33.72548],[78.71772,33.62319],[78.75686,33.62605],[78.75206,33.60947],[78.74176,33.60203],[78.74244,33.57801],[78.73283,33.57],[78.77059,33.52651],[78.78364,33.5059],[78.81385,33.48299],[78.81248,33.47326],[78.82003,33.45665],[78.83514,33.43717],[78.83789,33.42456],[78.85368,33.41596],[78.89076,33.41482],[78.90518,33.40966],[78.91136,33.39819],[78.93676,33.38673],[78.94088,33.38042],[78.94706,33.37813],[78.95393,33.37125],[78.9505,33.36437],[78.95736,33.35806],[78.95393,33.35461],[78.96217,33.33856],[78.97727,33.33339],[78.98071,33.32708],[78.9965,33.32536],[79.00337,33.32766],[79.01229,33.32307],[79.02053,33.32593],[79.02671,33.32077],[79.02465,33.31331],[79.02946,33.30815],[79.0377,33.30757],[79.03221,33.29437],[79.04045,33.29036],[79.03358,33.2783],[79.04594,33.25993],[79.05281,33.26165],[79.06104,33.25591],[79.08027,33.24443],[79.06791,33.23868],[79.07272,33.22318],[79.08508,33.2203],[79.10362,33.20651],[79.10636,33.19962],[79.1249,33.20192],[79.15306,33.18296],[79.16404,33.19158],[79.17434,33.20422],[79.17434,33.20939],[79.18121,33.21169],[79.18464,33.2203],[79.19494,33.21743],[79.20112,33.20939],[79.20867,33.21341],[79.21554,33.23811],[79.23065,33.23351],[79.23957,33.23351],[79.25262,33.21686],[79.25811,33.21628],[79.27116,33.22088],[79.27322,33.21284],[79.28764,33.20422],[79.29725,33.20307],[79.30137,33.19215],[79.32472,33.18928],[79.33433,33.20537],[79.35836,33.19847],[79.37965,33.1979],[79.38446,33.20307],[79.40368,33.19502],[79.41261,33.17893],[79.40918,33.16916],[79.39613,33.17031],[79.3927,33.15594],[79.40025,33.14962],[79.40094,33.13985],[79.38926,33.13985],[79.36592,33.10419],[79.36866,33.08463],[79.35974,33.06852],[79.35905,33.06047],[79.34669,33.06047],[79.33639,33.05414],[79.32815,33.03342],[79.33845,33.02766],[79.34188,33.01327],[79.33845,33.00232],[79.33158,33.0006],[79.34463,32.98044],[79.35493,32.97756],[79.36317,32.96258],[79.35287,32.95452],[79.36386,32.93781],[79.37896,32.9453],[79.40094,32.94357],[79.39132,32.91763],[79.41055,32.90495],[79.42565,32.89284],[79.45243,32.88823],[79.45449,32.87958],[79.46205,32.88189],[79.47235,32.87843],[79.47303,32.84728],[79.45999,32.83575],[79.46823,32.82998],[79.47029,32.82132],[79.48059,32.81093],[79.48059,32.79939],[79.50599,32.78496],[79.54376,32.77341],[79.5417,32.76302],[79.54925,32.76533],[79.55612,32.76071],[79.55406,32.75321],[79.54788,32.74801],[79.54444,32.73068],[79.54925,32.72202],[79.55749,32.72028],[79.56092,32.71451],[79.552,32.70411],[79.54238,32.70757],[79.53964,32.68388],[79.54788,32.67695],[79.52522,32.65151],[79.49981,32.64168],[79.49638,32.63127],[79.48745,32.62896],[79.47853,32.6174],[79.46823,32.6174],[79.46136,32.60641],[79.45243,32.60467],[79.42771,32.55896],[79.43389,32.55028],[79.43115,32.53928],[79.41604,32.54276],[79.41673,32.53002],[79.41124,32.51786],[79.39888,32.52597],[79.36317,32.53176],[79.35493,32.52539],[79.33296,32.54218],[79.34051,32.5526],[79.32952,32.56417],[79.32128,32.55781],[79.31098,32.5607],[79.30755,32.55086],[79.29245,32.54102],[79.28489,32.54623],[79.28215,32.55144],[79.27597,32.55665],[79.26567,32.53755],[79.25674,32.53639],[79.24919,32.51613],[79.22378,32.52423],[79.22172,32.50918],[79.18739,32.51613],[79.18258,32.4976],[79.15786,32.49644],[79.14962,32.47675],[79.13177,32.4808],[79.1304,32.46979],[79.11941,32.45705],[79.11872,32.43503],[79.12902,32.42054],[79.11392,32.41764],[79.10087,32.39503],[79.10362,32.37474],[79.10018,32.36836],[79.08714,32.37242],[79.0789,32.38112],[79.05967,32.38692],[79.02946,32.37996],[79.02259,32.38286],[78.99032,32.3701],[78.96972,32.33413],[78.93882,32.3585],[78.91067,32.36894],[78.90312,32.38112],[78.90449,32.38923],[78.8935,32.40025],[78.88114,32.39677],[78.86947,32.413],[78.84338,32.41127],[78.83308,32.41764],[78.83308,32.42865],[78.81591,32.43155],[78.80767,32.44082],[78.796,32.47501],[78.78021,32.48022],[78.77952,32.51555],[78.76853,32.52597],[78.76922,32.53928],[78.75755,32.56475],[78.76098,32.57864],[78.77334,32.58269],[78.78089,32.61566],[78.77471,32.61971],[78.76853,32.63185],[78.75137,32.64226],[78.75137,32.64631],[78.7397,32.66192],[78.74862,32.68966],[78.73832,32.69544],[78.72459,32.67463],[78.67172,32.65729],[78.66416,32.65729],[78.64151,32.64284],[78.63395,32.64573],[78.63121,32.6359],[78.64082,32.61103],[78.61061,32.6012],[78.58039,32.60409],[78.57559,32.61335],[78.54812,32.62086],[78.54331,32.61161],[78.51585,32.61566],[78.51654,32.6012],[78.50074,32.58211],[78.49044,32.58558],[78.47808,32.57517],[78.45405,32.58153],[78.4465,32.57401],[78.41491,32.56764],[78.395,32.53755],[78.39637,32.52771],[78.40942,32.52481],[78.42865,32.5057],[78.42521,32.49586],[78.45542,32.47095],[78.45062,32.45937],[78.4616,32.45589],[78.46366,32.44488],[78.47259,32.44256],[78.46984,32.39445],[78.45405,32.38923],[78.46504,32.37358],[78.46984,32.36314],[78.4822,32.36488],[78.48495,32.35386],[78.4774,32.32601],[78.49662,32.32485],[78.51104,32.30338],[78.4877,32.27668],[78.49388,32.27029],[78.4877,32.26681],[78.49182,32.261],[78.48426,32.25462],[78.48289,32.24881],[78.47396,32.24358],[78.47465,32.23487],[78.45062,32.23022],[78.44444,32.21512],[78.42865,32.21222],[78.43551,32.19537],[78.44101,32.19478],[78.4465,32.18374],[78.44238,32.17735],[78.44993,32.15875],[78.44444,32.15236],[78.45542,32.14538],[78.45542,32.13433],[78.46641,32.12968],[78.49182,32.14073],[78.49868,32.14887],[78.50898,32.14945],[78.51585,32.1355],[78.53095,32.11165],[78.56597,32.0942],[78.56803,32.08024],[78.58039,32.07152],[78.58108,32.05231],[78.57078,32.04358],[78.5749,32.03078],[78.58932,32.02496],[78.60168,32.02728],[78.65524,32.00458],[78.70262,31.99177],[78.71841,31.97895],[78.73558,31.9673],[78.73695,31.95565],[78.76785,31.94575],[78.76785,31.92827],[78.75961,31.92535],[78.74382,31.90146],[78.74656,31.89213],[78.74107,31.8863],[78.74931,31.88163],[78.75068,31.86939],[78.74313,31.86239],[78.74382,31.85481],[78.73352,31.83089],[78.70262,31.80756],[78.70605,31.77371],[78.72596,31.75794],[78.7342,31.72407],[78.74244,31.71765],[78.74656,31.70246],[78.75412,31.69604],[78.7548,31.68844],[78.74931,31.68552],[78.75343,31.67792],[78.76647,31.67325],[78.79806,31.6826],[78.80149,31.67734],[78.79737,31.65805],[78.80905,31.63935],[78.82072,31.63876],[78.82896,31.62532],[78.84201,31.62298],[78.84819,31.60836],[78.84063,31.59783],[78.83239,31.59842],[78.82209,31.57795],[78.8063,31.57736],[78.80424,31.56508],[78.78021,31.55513],[78.7754,31.54518],[78.76098,31.54986],[78.75206,31.5405],[78.73077,31.53348],[78.72665,31.51416],[78.72047,31.50831],[78.72665,31.48313],[78.74313,31.48079],[78.74725,31.48547],[78.76716,31.47259],[78.77815,31.45151],[78.79806,31.44565],[78.79463,31.4351],[78.78776,31.43452],[78.75412,31.38588],[78.75755,31.37298],[78.74931,31.36712],[78.76991,31.34835],[78.76442,31.34073],[78.77403,31.33017],[78.76785,31.32724],[78.77883,31.32079],[78.77746,31.31199],[78.79119,31.30319],[78.81317,31.30847],[78.81591,31.30026],[78.83789,31.2938],[78.85643,31.2938],[78.85711,31.30026],[78.85025,31.31023],[78.86055,31.31551],[78.87153,31.30788],[78.88252,31.28559],[78.90106,31.29028],[78.89762,31.30436],[78.91067,31.30847],[78.91754,31.31434],[78.91822,31.32079],[78.92921,31.33135],[78.93127,31.34249],[78.93951,31.34601],[78.94569,31.36595],[78.96904,31.35656],[78.98071,31.36243],[78.99032,31.35422],[78.98551,31.34777],[79.00062,31.34132],[79.01847,31.3466],[79.0171,31.35832],[79.01023,31.38412],[79.01847,31.38998],[79.01504,31.41108],[79.01847,31.4269],[79.04525,31.43452],[79.05006,31.42456],[79.06928,31.43803],[79.06791,31.45092],[79.07478,31.46029],[79.08165,31.45151],[79.09881,31.45444],[79.11941,31.4392],[79.14207,31.43276],[79.16542,31.39819],[79.17366,31.39701],[79.1764,31.38588],[79.16816,31.37298],[79.16954,31.36301],[79.21348,31.35363],[79.23545,31.33604],[79.22515,31.32783],[79.22241,31.31316],[79.22996,31.30495],[79.24987,31.29615],[79.24644,31.27503],[79.22653,31.26153],[79.26017,31.23922],[79.28558,31.23805],[79.29313,31.22454],[79.29931,31.21926],[79.3103,31.1517],[79.3309,31.1329],[79.36111,31.12232],[79.37828,31.11467],[79.39201,31.11761],[79.40849,31.11409],[79.41741,31.09469],[79.41398,31.0741],[79.41879,31.06881],[79.41879,31.04764],[79.42909,31.0241],[79.45518,31.03116],[79.47441,31.03528],[79.50805,31.03116],[79.50736,31.01704],[79.51629,31.01233],[79.51698,30.99762],[79.54101,30.97819],[79.55337,30.95818],[79.56573,30.95405],[79.56848,30.94934],[79.58908,30.94699],[79.60281,30.93933],[79.61723,30.94463],[79.62135,30.95052],[79.66529,30.96583],[79.66392,30.9829],[79.69963,30.97113],[79.73465,30.97878],[79.74975,31.00586],[79.77722,30.99173],[79.8294,30.97289],[79.86373,30.97407],[79.87472,30.96465],[79.88983,30.91872],[79.91317,30.91165],[79.93103,30.87394],[79.96124,30.88808],[80.03402,30.84093],[80.0505,30.83739],[80.08071,30.81498],[80.08895,30.79375],[80.11917,30.77959],[80.14938,30.79021],[80.15899,30.80673],[80.1741,30.80909],[80.19744,30.77251],[80.19332,30.75835],[80.21392,30.75009],[80.2359,30.75953],[80.25238,30.73947],[80.24551,30.71704],[80.23178,30.70878],[80.23178,30.68634],[80.20019,30.69106],[80.19332,30.6639],[80.22216,30.63791],[80.21118,30.5859],[80.25512,30.56817],[80.31555,30.56344],[80.34301,30.52086],[80.37048,30.52796],[80.38421,30.51849],[80.41442,30.52677],[80.45425,30.49483],[80.49957,30.48536],[80.54763,30.4463],[80.56823,30.46169],[80.60531,30.46998],[80.69732,30.4167],[80.70694,30.41788],[80.78521,30.35036],[80.80719,30.32428],[80.83465,30.31361],[80.86074,30.31243],[80.87722,30.29938],[80.91018,30.30057],[80.92804,30.27567],[80.92666,30.26381],[80.94039,30.26262],[80.98571,30.26855],[81.02005,30.25432],[81.03103,30.22228],[81.04751,30.20686],[81.03653,30.19617],[81.04476,30.17956],[81.05232,30.17956],[81.06399,30.157],[81.08184,30.15165],[81.08047,30.12256],[81.08459,30.11721],[81.08459,30.0982],[81.09832,30.09939],[81.11,30.08632],[81.09214,30.05364],[81.11274,30.03521],[81.11961,30.03165],[81.12579,30.01976],[81.16767,30.01143],[81.18003,30.015],[81.18621,30.00905],[81.19514,30.02213],[81.20819,30.02094],[81.21849,30.00608],[81.24939,30.01381],[81.25556,30.02035],[81.23703,30.03224],[81.27204,30.04591],[81.28852,30.07325],[81.28715,30.11246],[81.25488,30.14572],[81.25694,30.15284],[81.30363,30.15937],[81.30432,30.16412],[81.31599,30.15106],[81.33316,30.15462],[81.35101,30.17778],[81.37092,30.18846],[81.37573,30.19914],[81.39564,30.20567],[81.39083,30.23237],[81.39564,30.24245],[81.39221,30.24957],[81.41349,30.26677],[81.41624,30.28338],[81.40319,30.28516],[81.40251,30.29405],[81.42036,30.3065],[81.41555,30.31598],[81.40525,30.31658],[81.39427,30.32547],[81.40663,30.34088],[81.39564,30.3705],[81.41899,30.37169],[81.4286,30.38472],[81.40251,30.39716],[81.40937,30.41907],[81.4286,30.42144],[81.43478,30.41255],[81.4389,30.41611],[81.45538,30.40959],[81.46774,30.40486],[81.47804,30.38886],[81.4904,30.38294],[81.55426,30.36991],[81.55357,30.37583],[81.55014,30.38057],[81.55014,30.40486],[81.55769,30.40782],[81.56181,30.42795],[81.60644,30.41196],[81.62017,30.42262],[81.61743,30.44749],[81.66755,30.42973],[81.69502,30.42321],[81.71562,30.41196],[81.72729,30.41196],[81.73347,30.39716],[81.77536,30.38531],[81.79046,30.39005],[81.81175,30.38413],[81.82891,30.37524],[81.84951,30.37524],[81.85226,30.37939],[81.87011,30.37643],[81.8811,30.36102],[81.91268,30.35273],[81.94152,30.34621],[81.9477,30.35747],[81.9635,30.3545],[81.95732,30.33851],[81.97174,30.33613],[81.99302,30.32073],[82.0095,30.33139],[82.01156,30.34147],[82.02186,30.34443],[82.02941,30.33851],[82.03628,30.34384],[82.05345,30.33495],[82.06512,30.35569],[82.08572,30.36102],[82.09121,30.35095],[82.10975,30.34917],[82.11181,30.33258],[82.12692,30.30472],[82.11181,30.27745],[82.11662,30.27033],[82.11456,30.25728],[82.10632,30.25372],[82.09945,30.2389],[82.10975,30.22584],[82.12898,30.22584],[82.13516,30.20567],[82.15782,30.19024],[82.18391,30.19083],[82.18803,30.17659],[82.18254,30.16056],[82.20588,30.15522],[82.19833,30.14512],[82.19696,30.13681],[82.18048,30.13325],[82.17498,30.12315],[82.17224,30.12374],[82.17155,30.11662],[82.1791,30.11721],[82.18597,30.11127],[82.18048,30.10414],[82.18116,30.09761],[82.17567,30.0887],[82.1688,30.08632],[82.16606,30.07563],[82.17155,30.06612],[82.1949,30.06968],[82.23197,30.06612],[82.24159,30.07622],[82.26081,30.06374],[82.28416,30.06018],[82.28691,30.04591],[82.30339,30.03818],[82.31437,30.03878],[82.31986,30.04829],[82.33703,30.0471],[82.34939,30.02511],[82.35488,30.0257],[82.36244,30.01143],[82.37617,30.0144],[82.37686,30.0263],[82.38166,30.02808],[82.38647,30.02035],[82.39265,30.0257],[82.40844,30.01084],[82.42012,30.00608],[82.42424,29.99538],[82.45513,29.97872],[82.462,29.98229],[82.47573,29.97337],[82.47436,29.96385],[82.49839,29.94839],[82.51556,29.95196],[82.52861,29.97218],[82.56294,29.95493],[82.56774,29.93113],[82.58422,29.92161],[82.60276,29.88947],[82.63984,29.87458],[82.64328,29.86744],[82.6316,29.85851],[82.63023,29.84838],[82.61924,29.84779],[82.62268,29.83766],[82.64053,29.83468],[82.66525,29.84421],[82.68516,29.8466],[82.68859,29.85374],[82.69615,29.85553],[82.71263,29.83885],[82.72293,29.83766],[82.73048,29.82039],[82.73666,29.81562],[82.70919,29.79179],[82.70164,29.79536],[82.69546,29.79179],[82.69683,29.77987],[82.68859,29.77451],[82.69134,29.76199],[82.71057,29.76914],[82.71812,29.76676],[82.7243,29.77153],[82.74559,29.76974],[82.76138,29.75901],[82.76756,29.73099],[82.79846,29.71906],[82.81906,29.72145],[82.82249,29.71191],[82.81494,29.70594],[82.81974,29.6958],[82.8321,29.68864],[82.85751,29.68745],[82.87811,29.69222],[82.88772,29.69461],[82.88978,29.70057],[82.90901,29.70177],[82.91587,29.70892],[82.92961,29.69878],[82.9351,29.70475],[82.94815,29.69222],[82.94197,29.67433],[82.95707,29.66239],[82.9866,29.66836],[82.98934,29.66597],[83.0017,29.66597],[83.00857,29.67313],[83.0223,29.65046],[83.03535,29.65464],[83.04153,29.63196],[83.06625,29.62539],[83.06968,29.61167],[83.08548,29.60271],[83.09097,29.6057],[83.0896,29.61226],[83.115,29.61704],[83.11912,29.62957],[83.13217,29.62002],[83.14521,29.6248],[83.16444,29.61764],[83.15826,29.59793],[83.17817,29.59137],[83.18847,29.59853],[83.18779,29.60928],[83.19602,29.61226],[83.20083,29.60629],[83.21868,29.6045],[83.21388,29.59077],[83.23173,29.57883],[83.25988,29.57704],[83.26881,29.56867],[83.27979,29.56927],[83.28529,29.5627],[83.28391,29.55733],[83.25645,29.55792],[83.25508,29.5412],[83.26606,29.52806],[83.26812,29.51013],[83.28323,29.49818],[83.29147,29.50356],[83.30383,29.49937],[83.3155,29.50774],[83.34571,29.49399],[83.34434,29.4671],[83.35601,29.45095],[83.36631,29.44796],[83.3773,29.42524],[83.41369,29.42285],[83.41781,29.4067],[83.42468,29.40311],[83.42056,29.39414],[83.42468,29.38636],[83.41369,29.38038],[83.41575,29.35823],[83.42468,29.35584],[83.42948,29.35045],[83.43978,29.34926],[83.44665,29.32891],[83.43772,29.30975],[83.46931,29.27382],[83.48236,29.2822],[83.49609,29.26423],[83.51532,29.25525],[83.52081,29.23847],[83.51806,29.2169],[83.55102,29.20132],[83.56201,29.20551],[83.57231,29.20132],[83.57643,29.18034],[83.59016,29.17494],[83.61145,29.18214],[83.63273,29.15815],[83.66226,29.18214],[83.65676,29.20431],[83.6808,29.21091],[83.71169,29.24386],[83.76663,29.24087],[83.77349,29.24686],[83.78242,29.24566],[83.79959,29.25525],[83.79547,29.27801],[83.81813,29.30496],[83.84971,29.29717],[83.85864,29.30735],[83.8964,29.31873],[83.90327,29.32591],[83.94928,29.31693],[83.96438,29.3307],[84.00283,29.31154],[83.9891,29.29897],[84.02687,29.28819],[84.04541,29.30077],[84.05433,29.29657],[84.06875,29.2858],[84.0866,29.29478],[84.12162,29.27382],[84.11407,29.26244],[84.11613,29.24386],[84.13879,29.23967],[84.17999,29.23847],[84.19235,29.24446],[84.20402,29.23608],[84.19784,29.2157],[84.18617,29.20731],[84.17724,29.20731],[84.16282,29.18573],[84.17312,29.13177],[84.19853,29.12397],[84.20196,29.10297],[84.18617,29.07957],[84.19029,29.04596],[84.2102,29.05316],[84.22737,29.05376],[84.24728,29.03816],[84.25071,29.01714],[84.24316,29.00814],[84.23973,28.9709],[84.22668,28.94326],[84.22462,28.89518],[84.25415,28.88917],[84.26513,28.89939],[84.29534,28.87293],[84.32144,28.86752],[84.32487,28.86091],[84.34272,28.87293],[84.3592,28.8597],[84.37637,28.86512],[84.41001,28.84948],[84.4004,28.83805],[84.40315,28.82843],[84.41894,28.83264],[84.43405,28.8182],[84.43267,28.80256],[84.44572,28.79173],[84.44572,28.7809],[84.43679,28.77006],[84.45396,28.76284],[84.46014,28.75381],[84.47799,28.74719],[84.4931,28.73515],[84.51438,28.74839],[84.524,28.74358],[84.54048,28.74358],[84.55352,28.7514],[84.57412,28.73394],[84.62631,28.73756],[84.64828,28.71708],[84.65171,28.70142],[84.66819,28.696],[84.66819,28.68215],[84.7039,28.6707],[84.69635,28.63817],[84.71351,28.63274],[84.72312,28.62189],[84.78149,28.61104],[84.85977,28.57185],[84.86938,28.58271],[84.88998,28.58391],[84.89341,28.59175],[84.91127,28.58994],[84.94491,28.59597],[84.95109,28.58211],[84.98062,28.59055],[84.99298,28.6014],[84.98474,28.60863],[85.00808,28.63696],[85.0177,28.64058],[85.02937,28.65624],[85.03967,28.65805],[85.04173,28.6689],[85.0534,28.6707],[85.0534,28.68155],[85.08636,28.67131],[85.11589,28.68697],[85.13099,28.67673],[85.15846,28.64299],[85.17906,28.646],[85.19004,28.64058],[85.18592,28.63154],[85.19897,28.62732],[85.18936,28.60502],[85.17425,28.59658],[85.18936,28.56884],[85.18798,28.53325],[85.1667,28.53325],[85.1509,28.48921],[85.12001,28.48679],[85.10009,28.45963],[85.10284,28.44756],[85.11451,28.44394],[85.11657,28.4071],[85.12825,28.39381],[85.10971,28.3485],[85.12275,28.334],[85.16738,28.33158],[85.18318,28.32251],[85.20172,28.34185],[85.24154,28.31888],[85.25596,28.2947],[85.27107,28.29833],[85.2745,28.28926],[85.29373,28.28805],[85.34454,28.30498],[85.34866,28.28866],[85.36857,28.28624],[85.37544,28.28019],[85.41183,28.30921],[85.41458,28.32614],[85.44822,28.3352],[85.49972,28.334],[85.5265,28.32795],[85.56015,28.31042],[85.59928,28.30559],[85.59722,28.30014],[85.60752,28.25721],[85.63911,28.27354],[85.66177,28.30317],[85.65422,28.31949],[85.66383,28.32856],[85.66726,28.3485],[85.68924,28.34548],[85.68237,28.38233],[85.71121,28.38656],[85.72219,28.37267],[85.72013,28.35454],[85.72975,28.33943],[85.727,28.32674],[85.73661,28.32312],[85.73318,28.29289],[85.75103,28.23785],[85.79841,28.19792],[85.81558,28.20276],[85.83274,28.18521],[85.84922,28.184],[85.86982,28.14587],[85.87051,28.12165],[85.89386,28.11256],[85.90278,28.08894],[85.8966,28.07016],[85.89866,28.0544],[85.91651,28.04713],[85.93574,28.0241],[85.94192,28.0235],[85.96733,27.99925],[85.97557,27.99925],[85.97763,27.98773],[85.96115,27.97257],[85.9481,27.94285],[86.00166,27.91191],[86.01265,27.91373],[86.02157,27.90766],[86.06346,27.90159],[86.06758,27.9113],[86.10122,27.92404],[86.12388,27.92708],[86.12663,27.94042],[86.1074,27.95801],[86.10191,27.98712],[86.07856,28.01925],[86.09024,28.03198],[86.08818,28.05622],[86.09504,28.06228],[86.08337,28.09015],[86.09367,28.09984],[86.11839,28.09015],[86.13281,28.09924],[86.13487,28.11862],[86.14242,28.11862],[86.14173,28.12952],[86.16027,28.1386],[86.17813,28.14344],[86.17607,28.17008],[86.18705,28.17432],[86.19667,28.15495],[86.20147,28.13376],[86.21521,28.12286],[86.22345,28.09621],[86.20765,28.0956],[86.20491,28.07925],[86.22619,28.03198],[86.2207,28.0241],[86.22345,27.9853],[86.23512,27.97439],[86.27151,27.98166],[86.29623,27.97378],[86.31477,27.94831],[86.33606,27.9659],[86.34841,27.9386],[86.37313,27.94285],[86.41227,27.90766],[86.43974,27.90705],[86.46995,27.93072],[86.46652,27.94528],[86.5139,27.95862],[86.51321,27.97014],[86.5187,27.97681],[86.5139,27.98409],[86.52351,28.02289],[86.53175,28.02895],[86.5345,28.05077],[86.54823,28.05259],[86.56745,28.06713],[86.55784,28.08046],[86.56608,28.08894],[86.56265,28.10832],[86.57569,28.11438],[86.60453,28.10166],[86.60659,28.09015],[86.60247,28.08773],[86.60797,28.0744],[86.64917,28.07561],[86.66221,28.09621],[86.68693,28.10772],[86.71646,28.10772],[86.73637,28.1059],[86.7501,28.09439],[86.75079,28.07985],[86.76178,28.07501],[86.75148,28.06652],[86.74873,28.04834],[86.75697,28.03683],[86.77345,28.03986],[86.79267,28.01865],[86.80641,28.0241],[86.83387,28.0138],[86.84829,28.01865],[86.85104,28.02834],[86.87164,28.0241],[86.87301,28.00955],[86.89086,27.99864],[86.93412,27.97803],[86.93361,27.9615],[86.98219,27.94831],[87.01446,27.95559],[87.03918,27.94831],[87.05223,27.92708],[87.08107,27.91494],[87.08999,27.88399],[87.10784,27.87853],[87.11265,27.84332],[87.14355,27.83664],[87.16003,27.8245],[87.22732,27.82389],[87.23762,27.83846],[87.26234,27.85061],[87.30285,27.84454],[87.31796,27.82511],[87.35916,27.82753],[87.37358,27.84514],[87.40379,27.85243],[87.42164,27.86153],[87.43469,27.84696],[87.42851,27.84029],[87.4031,27.83604],[87.45254,27.82328],[87.4855,27.84636],[87.53494,27.84636],[87.55004,27.85182],[87.55348,27.86518],[87.5679,27.86639],[87.5885,27.85364],[87.5885,27.82146],[87.60223,27.82268],[87.61047,27.81053],[87.61734,27.82025],[87.63107,27.82389],[87.6345,27.833],[87.66952,27.83482],[87.66128,27.82025],[87.66609,27.80689],[87.68325,27.81235],[87.71072,27.81175],[87.72377,27.80506],[87.7375,27.81235],[87.73544,27.82146],[87.74574,27.83604],[87.75535,27.83786],[87.76771,27.85971],[87.77938,27.86578],[87.77732,27.87732],[87.78625,27.89856],[87.80342,27.90948],[87.81578,27.92222],[87.82333,27.9198],[87.82951,27.95316],[87.85697,27.94406],[87.8659,27.91191],[87.87895,27.91434],[87.88925,27.90887],[87.93113,27.92101],[87.938,27.91191],[87.95791,27.90705],[87.96752,27.89128],[87.98606,27.88399],[88.00323,27.89917],[88.02452,27.89977],[88.02589,27.90523],[88.05954,27.89613],[88.05954,27.89006],[88.08425,27.89492],[88.09318,27.87307],[88.10279,27.867],[88.12545,27.88157],[88.13507,27.88217],[88.13781,27.89128],[88.1179,27.91919],[88.13575,27.93921],[88.13095,27.95013],[88.14262,27.9659],[88.18588,27.94406],[88.20716,27.93921],[88.20442,27.95923],[88.22364,27.96286],[88.236,27.96893],[88.25042,27.94164],[88.26622,27.95619],[88.28064,27.95498],[88.28887,27.9659],[88.30947,27.96711],[88.31634,27.97863],[88.33213,27.97863],[88.33831,27.9847],[88.37883,27.98833],[88.38775,27.97742],[88.41316,27.98227],[88.41865,28.00046],[88.46672,28.01865],[88.47564,28.03744],[88.49487,28.05259],[88.53469,28.03501],[88.55323,28.03925],[88.55529,28.08167],[88.56697,28.09076],[88.58207,28.08349],[88.60061,28.08894],[88.6116,28.11014],[88.637,28.11801],[88.64936,28.09742],[88.66447,28.08954],[88.66722,28.07561],[88.67889,28.07258],[88.68438,28.07803],[88.73382,28.07198],[88.75579,28.07985],[88.77845,28.0538],[88.7915,28.04956],[88.81347,28.02168],[88.83613,28.01622],[88.84574,27.99076],[88.83819,27.9289],[88.86085,27.92647],[88.88145,27.89067],[88.8787,27.87125],[88.88763,27.85607],[88.88076,27.84879],[88.88282,27.83361],[88.85742,27.81478],[88.86085,27.79352],[88.85467,27.78016],[88.85673,27.75525],[88.86222,27.75525],[88.86703,27.7437],[88.86016,27.73823],[88.85673,27.71696],[88.83956,27.71271],[88.84094,27.7048],[88.84918,27.69447],[88.84437,27.68535],[88.85055,27.67562],[88.84025,27.65312],[88.82171,27.64582],[88.81485,27.64886],[88.80455,27.62635],[88.81141,27.61905],[88.80729,27.59715],[88.79013,27.58558],[88.79287,27.57524],[88.76403,27.56793],[88.77296,27.55576],[88.77639,27.5308],[88.79287,27.53141],[88.77914,27.47172],[88.79631,27.42907],[88.80592,27.42175],[88.80729,27.40469],[88.81897,27.40469],[88.82309,27.39188],[88.83956,27.38274],[88.86154,27.38579],[88.86222,27.37054],[88.88145,27.35652],[88.88557,27.34249],[88.91853,27.32846],[88.93638,27.33761],[88.95904,27.31199],[88.97209,27.30528],[88.98376,27.31687],[89.00299,27.32724],[88.99681,27.34554],[88.97827,27.35469],[88.97895,27.36262],[88.97689,27.38457],[88.96522,27.40164],[88.97964,27.42114],[88.97483,27.43272],[88.97758,27.44186],[88.98513,27.44308],[88.99269,27.46014],[88.99337,27.47355],[88.98719,27.49304],[88.99543,27.50157],[89.00573,27.49852],[89.01397,27.50705],[89.00299,27.52897],[89.04007,27.54906],[89.03045,27.56063],[89.03869,27.56854],[89.03114,27.5795],[89.03595,27.58802],[89.04487,27.58802],[89.05311,27.60019],[89.06204,27.60202],[89.07783,27.61114],[89.10667,27.60506],[89.12178,27.61601],[89.12727,27.6154],[89.13276,27.62879],[89.13002,27.6373],[89.17808,27.6744],[89.17739,27.68231],[89.1925,27.69994],[89.19662,27.72061],[89.21722,27.72243],[89.22889,27.73216],[89.22134,27.74006],[89.22546,27.74735],[89.21859,27.75768],[89.22546,27.78441],[89.23301,27.78684],[89.23645,27.80263],[89.26803,27.81296],[89.26528,27.82936],[89.30648,27.85546],[89.33189,27.85364],[89.36691,27.87307],[89.38957,27.89128],[89.39849,27.9198],[89.4136,27.92708],[89.41223,27.93436],[89.42047,27.94346],[89.43283,27.94709],[89.45205,27.97621],[89.45205,28.00713],[89.46991,28.01562],[89.47059,28.02289],[89.46029,28.03198],[89.50561,28.08046],[89.50767,28.09318],[89.53582,28.08773],[89.55299,28.1059],[89.55093,28.11801],[89.56054,28.12104],[89.5681,28.11862],[89.59762,28.15313],[89.59625,28.16221],[89.61685,28.16887],[89.62509,28.16584],[89.64294,28.17371],[89.66835,28.17069],[89.68208,28.18461],[89.72053,28.17311],[89.74388,28.19005],[89.76585,28.1834],[89.78302,28.20639],[89.76997,28.22273],[89.7837,28.2306],[89.79469,28.24632],[89.80499,28.23846],[89.81941,28.24088],[89.82696,28.25963],[89.82902,28.2814],[89.86473,28.31344],[89.89906,28.31103],[89.91897,28.31888],[89.98214,28.31526],[89.99038,28.334],[90.05973,28.34608],[90.06935,28.33641],[90.09407,28.33158],[90.10849,28.34185],[90.13732,28.33339],[90.15518,28.31586],[90.18127,28.31949],[90.18814,28.34064],[90.20942,28.36058],[90.24238,28.35635],[90.26573,28.32976],[90.25749,28.29289],[90.26985,28.27959],[90.33233,28.26447],[90.34538,28.30317],[90.37971,28.3074],[90.3804,28.28926],[90.40992,28.27475],[90.43258,28.29531],[90.47241,28.27354],[90.4779,28.2554],[90.53215,28.24935],[90.5754,28.2439],[90.596,28.23362],[90.60287,28.23785],[90.61248,28.22878],[90.60562,28.22152],[90.60218,28.20881],[90.57472,28.20095],[90.55755,28.17916],[90.54863,28.15797],[90.5088,28.14889],[90.50193,28.14042],[90.48477,28.13618],[90.49987,28.10711],[90.47241,28.08894],[90.45249,28.08833],[90.4422,28.0641],[90.45181,28.04774],[90.48683,28.05077],[90.5088,28.06652],[90.56167,28.04956],[90.5857,28.0241],[90.61729,28.04713],[90.6372,28.04834],[90.66741,28.05986],[90.69145,28.07985],[90.70655,28.07016],[90.72578,28.06955],[90.72715,28.06107],[90.76355,28.04713],[90.77247,28.05259],[90.78208,28.0435],[90.80886,28.05077],[90.8274,28.04471],[90.83702,28.04834],[90.85556,28.04531],[90.8535,28.05198],[90.89744,28.03622],[90.89263,28.03016],[90.91186,28.02713],[90.92147,28.0338],[90.91873,28.03925],[90.92697,28.0435],[90.94825,28.03259],[90.94413,28.02531],[90.97847,28.00107],[90.98945,28.00592],[90.9922,28.02289],[91.02516,28.02471],[91.06979,27.99318],[91.07872,28.00228],[91.10343,27.99925],[91.11099,27.99197],[91.1309,27.99682],[91.15287,27.98833],[91.16798,28.00228],[91.19133,27.98712],[91.21124,27.98712],[91.21673,28.01986],[91.23802,28.03138],[91.25038,28.0538],[91.24557,28.06531],[91.26274,28.07137],[91.30462,28.06289],[91.33827,28.06592],[91.34376,28.05016],[91.36299,28.04895],[91.38702,28.03077],[91.40007,28.02834],[91.40899,28.01986],[91.43165,28.01562],[91.43783,28.00228],[91.44332,28.01016],[91.46392,28.00531],[91.4756,27.97863],[91.48452,27.97742],[91.49208,27.9659],[91.48452,27.94285],[91.54495,27.91919],[91.55525,27.90038],[91.56761,27.89856],[91.58958,27.90827],[91.6246,27.89249],[91.62117,27.867],[91.61293,27.85971],[91.60057,27.86578],[91.59507,27.85729],[91.57653,27.86396],[91.57035,27.84879],[91.55319,27.85486],[91.56486,27.82632],[91.57653,27.81296],[91.61293,27.82389],[91.63559,27.80446],[91.64245,27.77044],[91.64451,27.76315],[91.84707,27.76072],[91.87179,27.72365],[91.89376,27.72122],[91.90132,27.7279],[91.92604,27.71635],[91.96517,27.73884],[91.98028,27.77469],[92.005,27.7832],[92.03727,27.77651],[92.10937,27.80263],[92.14233,27.83482],[92.16018,27.83057],[92.17323,27.84575],[92.18833,27.84879],[92.21443,27.86275],[92.21237,27.87185],[92.24395,27.88885],[92.25494,27.88157],[92.26799,27.88703],[92.29064,27.87185],[92.30506,27.85061],[92.29888,27.83725],[92.31674,27.81721],[92.32017,27.79717],[92.33802,27.79717],[92.42454,27.83543],[92.42729,27.80263],[92.43759,27.80385],[92.45544,27.79352],[92.47604,27.83179],[92.50007,27.85061],[92.51106,27.84696],[92.58041,27.88521],[92.6017,27.91676],[92.64289,27.91009],[92.67173,27.94528],[92.73147,27.97984],[92.73216,27.98651],[92.72186,27.99561],[92.73628,28.03865],[92.73147,28.0544],[92.70401,28.06834],[92.66281,28.07076],[92.65731,28.08409],[92.66349,28.09863],[92.67654,28.14829],[92.69577,28.15131],[92.71705,28.16705],[92.73696,28.15374],[92.74795,28.16221],[92.76718,28.16342],[92.77267,28.16827],[92.77061,28.17856],[92.78709,28.18763],[92.83035,28.17371],[92.86949,28.18824],[92.88459,28.19974],[92.92099,28.20216],[92.93472,28.21729],[92.92854,28.22878],[92.93403,28.25056],[92.9457,28.26326],[92.99171,28.27414],[93.0027,28.2947],[93.02879,28.29773],[93.04801,28.31103],[93.06175,28.30559],[93.07548,28.32372],[93.14895,28.36904],[93.14758,28.37992],[93.16406,28.40287],[93.17161,28.4385],[93.16886,28.4542],[93.19633,28.49404],[93.25332,28.54592],[93.33435,28.58693],[93.36593,28.59658],[93.42498,28.66347],[93.47923,28.67432],[93.51356,28.66769],[93.62548,28.68637],[93.63922,28.65504],[93.6866,28.67733],[93.70651,28.66408],[93.72642,28.67251],[93.7326,28.68275],[93.78479,28.71227],[93.78822,28.73575],[93.84246,28.74839],[93.86238,28.74297],[93.8974,28.75742],[93.91044,28.74057],[93.92005,28.74418],[93.9125,28.77187],[93.94203,28.78932],[93.94683,28.80316],[93.9743,28.82301],[93.98941,28.80557],[93.98666,28.79353],[93.99696,28.78932],[94.02099,28.79173],[94.01962,28.83204],[94.02854,28.85369],[94.05876,28.8591],[94.05876,28.87774],[94.0773,28.88255],[94.13566,28.89037],[94.17411,28.91201],[94.16656,28.92523],[94.17961,28.93425],[94.22973,28.92884],[94.26063,28.93004],[94.27368,28.95047],[94.27505,28.96729],[94.30046,28.98111],[94.30732,28.99312],[94.32312,28.99372],[94.34646,29.00513],[94.36569,29.02735],[94.35882,29.03696],[94.34234,29.03696],[94.32861,29.04056],[94.32449,29.05737],[94.31144,29.06757],[94.31488,29.07657],[94.28466,29.08557],[94.27299,29.10237],[94.27505,29.11437],[94.29016,29.12217],[94.29634,29.13417],[94.29428,29.15276],[94.37942,29.15516],[94.38835,29.18393],[94.41513,29.17974],[94.43023,29.18873],[94.44465,29.18333],[94.45495,29.19233],[94.4522,29.20551],[94.45426,29.2133],[94.48928,29.20791],[94.50027,29.2157],[94.50988,29.23068],[94.54353,29.2211],[94.57168,29.24386],[94.57031,29.25704],[94.58335,29.26184],[94.59228,29.27442],[94.61425,29.28041],[94.62387,29.29538],[94.64447,29.29598],[94.65545,29.30675],[94.6685,29.30496],[94.69322,29.31753],[94.71725,29.29119],[94.73579,29.28699],[94.73648,29.27322],[94.74952,29.25285],[94.7454,29.24087],[94.75433,29.22649],[94.7763,29.2169],[94.79278,29.2187],[94.80171,29.20911],[94.79759,29.18333],[94.80651,29.16475],[94.84771,29.18333],[94.89372,29.17554],[94.90882,29.16115],[94.92599,29.15635],[94.9665,29.15875],[94.99122,29.14616],[95.00083,29.13177],[95.02143,29.12637],[95.01525,29.13776],[95.01525,29.14736],[94.98642,29.17254],[95.00015,29.17254],[95.04066,29.14976],[95.05645,29.15276],[95.09559,29.14196],[95.10177,29.12697],[95.11756,29.11437],[95.1004,29.10117],[95.10108,29.09637],[95.12649,29.09877],[95.1313,29.08857],[95.15396,29.09277],[95.18005,29.10297],[95.19241,29.09997],[95.21026,29.10837],[95.23292,29.10177],[95.23773,29.08197],[95.25764,29.07957],[95.26313,29.06937],[95.27275,29.07417],[95.27343,29.10417],[95.28167,29.11137],[95.27824,29.11737],[95.28785,29.12217],[95.3009,29.13836],[95.38673,29.13656],[95.39978,29.12517],[95.41488,29.12637],[95.40939,29.14196],[95.41488,29.14796],[95.41626,29.16355],[95.42038,29.16895],[95.42038,29.18214],[95.42861,29.18513],[95.43342,29.19293],[95.45265,29.17794],[95.45265,29.16535],[95.44853,29.15935],[95.45814,29.13656],[95.46913,29.13357],[95.47737,29.14196],[95.50758,29.12577],[95.51376,29.14256],[95.51239,29.16175],[95.50071,29.18393],[95.50277,29.19293],[95.52612,29.18933],[95.53093,29.19532],[95.54946,29.19892],[95.57487,29.18094],[95.60646,29.19412],[95.59616,29.20971],[95.59684,29.22589],[95.60714,29.23548],[95.6353,29.22349],[95.63873,29.2157],[95.64491,29.21091],[95.66413,29.22349],[95.69709,29.22469],[95.70671,29.2139],[95.70396,29.20252],[95.70877,29.20072],[95.72113,29.2151],[95.74241,29.2193],[95.74379,29.22469],[95.72937,29.23727],[95.75134,29.27382],[95.74996,29.28699],[95.73829,29.29837],[95.75889,29.32292],[95.77743,29.32352],[95.81314,29.34866],[95.83786,29.35345],[95.84404,29.34028],[95.83786,29.3325],[95.83992,29.32292],[95.86189,29.31514],[95.87631,29.31633],[95.88935,29.32891],[95.93811,29.35045],[95.94223,29.36601],[95.95596,29.36721],[95.96351,29.37499],[95.98274,29.36302],[95.99853,29.36841],[96.01844,29.36422],[96.05278,29.38456],[96.06445,29.37439],[96.14135,29.34208],[96.14341,29.31274],[96.15028,29.30795],[96.1544,29.29837],[96.17019,29.29298],[96.19354,29.26723],[96.21894,29.26244],[96.22718,29.25645],[96.2622,29.24566],[96.26289,29.2175],[96.2883,29.20911],[96.28761,29.20252],[96.30409,29.19053],[96.30134,29.16535],[96.28692,29.13117],[96.25396,29.11437],[96.21482,29.11377],[96.20178,29.09757],[96.21551,29.07357],[96.18461,29.04536],[96.18667,29.03275],[96.20452,29.03275],[96.21208,29.04836],[96.2313,29.05556],[96.24435,29.08557],[96.25671,29.08257],[96.2725,29.09817],[96.29859,29.09937],[96.30958,29.11437],[96.32537,29.11737],[96.35078,29.08677],[96.36589,29.08137],[96.3652,29.04476],[96.38305,29.03095],[96.4167,29.02375],[96.44416,28.99372],[96.43867,28.98712],[96.4373,28.9703],[96.4476,28.94086],[96.46476,28.93425],[96.50528,28.94987],[96.52313,28.93485],[96.52862,28.91802],[96.51832,28.90961],[96.51969,28.88857],[96.52725,28.88015],[96.52107,28.86692],[96.53892,28.85128],[96.54991,28.84948],[96.56639,28.82843],[96.59042,28.8188],[96.57394,28.79052],[96.57463,28.7815],[96.60141,28.7809],[96.60278,28.76284],[96.62956,28.73394],[96.62887,28.70082],[96.64741,28.68998],[96.64054,28.67793],[96.60278,28.67492],[96.59591,28.68155],[96.57737,28.68275],[96.56501,28.69721],[96.55609,28.68516],[96.54579,28.68576],[96.53961,28.67733],[96.54304,28.65203],[96.52862,28.64419],[96.52793,28.61828],[96.51283,28.61225],[96.51969,28.59416],[96.51626,28.58331],[96.49223,28.58572],[96.47438,28.57366],[96.48124,28.55738],[96.46408,28.54532],[96.46614,28.52541],[96.40708,28.52541],[96.40502,28.5049],[96.43043,28.50972],[96.4524,28.4874],[96.46476,28.49223],[96.473,28.49343],[96.48811,28.46265],[96.49086,28.43367],[96.49841,28.42884],[96.51145,28.44816],[96.49978,28.49343],[96.50733,28.50429],[96.50871,28.51938],[96.49223,28.53989],[96.52038,28.55798],[96.55128,28.5616],[96.56227,28.58391],[96.60141,28.60321],[96.60003,28.61225],[96.61582,28.62009],[96.65153,28.61888],[96.68998,28.59055],[96.70509,28.59658],[96.71127,28.61044],[96.72226,28.60441],[96.72294,28.57788],[96.74766,28.56824],[96.76071,28.55195],[96.75315,28.53989],[96.75865,28.51757],[96.82113,28.50188],[96.86027,28.48197],[96.86233,28.45239],[96.89529,28.41857],[96.88293,28.40408],[96.89048,28.38898],[96.91864,28.36542],[96.92344,28.35273],[96.95228,28.34729],[96.97769,28.33097],[97.01545,28.32856],[97.04017,28.34004],[97.07656,28.36904],[97.126,28.36119],[97.14729,28.35212],[97.16926,28.32856],[97.18025,28.33339],[97.20497,28.30196],[97.21801,28.30317],[97.23724,28.29349],[97.24273,28.26628],[97.26402,28.26447],[97.27226,28.24511],[97.28118,28.24572],[97.28462,28.22999],[97.30041,28.23604],[97.30316,28.22939],[97.32925,28.21608],[97.34436,28.21487],[97.34779,28.20821],[97.35809,28.20518],[97.36221,28.19248],[97.35397,28.17371],[97.36084,28.16645],[97.35603,28.15374],[97.3265,28.14102],[97.32925,28.10832],[97.32444,28.08409],[97.3114,28.06228],[97.32719,28.05804],[97.35603,28.06592],[97.3677,28.04834],[97.37457,28.03259],[97.39448,28.01925],[97.39654,28.00834],[97.37525,27.97924],[97.36633,27.97681],[97.36427,27.96105],[97.378,27.95073],[97.36633,27.9386],[97.37869,27.8937],[97.36015,27.87307],[97.34161,27.8846],[97.32101,27.88946],[97.31414,27.90463],[97.30316,27.91616],[97.25029,27.89128],[97.24685,27.88399],[97.20222,27.84696],[97.19879,27.83786],[97.17819,27.82814],[97.17956,27.81843],[97.16995,27.81235],[97.14798,27.80992],[97.14454,27.79778],[97.1315,27.78988],[97.10403,27.78563],[97.11158,27.76922],[97.10266,27.74006],[97.0903,27.74856],[97.07244,27.751],[97.0594,27.7431],[97.04841,27.74553],[97.02713,27.73641],[97.02026,27.72547],[97.02095,27.71392],[97.00103,27.689],[96.99623,27.67258],[96.98181,27.67075],[96.97563,27.66102],[96.95777,27.66528],[96.93786,27.66163],[96.94198,27.6373],[96.92482,27.63183],[96.92825,27.62392],[96.9001,27.61662],[96.89872,27.60932],[96.91589,27.58619],[96.90559,27.57159],[96.92344,27.5588],[96.91383,27.5448],[96.92756,27.5375],[96.92207,27.51862],[96.9358,27.50766],[96.931,27.49609],[96.92413,27.48999],[96.91383,27.45771],[96.94404,27.42663],[96.94473,27.41871],[96.9564,27.40712],[96.97288,27.40469],[96.97082,27.39981],[96.97769,27.38823],[96.97357,27.37481],[96.99279,27.35103],[97.00241,27.34554],[97.01202,27.31687],[97.04292,27.30467],[97.05184,27.28026],[97.06352,27.27782],[97.06558,27.26744],[97.08824,27.24242],[97.1006,27.2412],[97.10334,27.22837],[97.10128,27.21372],[97.10952,27.20334],[97.13287,27.19235],[97.13699,27.17463],[97.15072,27.1673],[97.15896,27.16608],[97.16377,27.14897],[97.17681,27.14347],[97.17269,27.12331],[97.16514,27.11781],[97.14866,27.09214],[97.1109,27.10681],[97.09716,27.10864],[97.07588,27.09519],[97.00859,27.14531],[96.98524,27.14836],[96.97013,27.15936],[96.90147,27.17097],[96.85821,27.20212],[96.85752,27.21677],[96.8843,27.23204],[96.88842,27.24547],[96.87606,27.25951],[96.85684,27.26439],[96.82594,27.31565],[96.77856,27.35713],[96.74148,27.35835],[96.71539,27.37542],[96.70303,27.3742],[96.68998,27.34432],[96.66801,27.33395],[96.65016,27.34249],[96.64192,27.35469],[96.622,27.36627],[96.60484,27.36323],[96.59729,27.337],[96.57875,27.31199],[96.55883,27.29979],[96.54167,27.29979],[96.52519,27.28819],[96.51077,27.29674],[96.48468,27.29552],[96.43386,27.30467],[96.40022,27.28819],[96.35559,27.29002],[96.33773,27.28636],[96.32057,27.29491],[96.28967,27.28331],[96.28006,27.26988],[96.25396,27.27477],[96.23268,27.27416],[96.22444,27.26378],[96.20178,27.26134],[96.19422,27.25218],[96.15234,27.24425],[96.12968,27.23021],[96.10359,27.22532],[96.04522,27.19235],[96.03492,27.17341],[96.02188,27.16425],[96.00196,27.12086],[95.97656,27.10314],[95.94978,27.05606],[95.91476,27.03894],[95.90103,27.0261],[95.86875,27.01386],[95.85502,27.0157],[95.83168,27.00836],[95.8097,27.01753],[95.80284,26.99918],[95.78979,26.99367],[95.78636,26.97899],[95.77125,26.97348],[95.76576,26.95941],[95.75408,26.95635],[95.75683,26.91104],[95.72525,26.88594],[95.71014,26.88471],[95.67581,26.90676],[95.63873,26.8645],[95.63461,26.83938],[95.6092,26.81426],[95.55084,26.83019],[95.50277,26.80629],[95.48423,26.74745],[95.45951,26.7315],[95.44166,26.70206],[95.41694,26.69899],[95.373,26.68243],[95.35858,26.66832],[95.34347,26.67568],[95.32562,26.66648],[95.31395,26.66525],[95.30227,26.65114],[95.27343,26.65789],[95.26107,26.65727],[95.25695,26.672],[95.24665,26.68427],[95.23155,26.67814],[95.21369,26.65973],[95.2034,26.64254],[95.17112,26.63272],[95.15121,26.61492],[95.14709,26.59589],[95.15327,26.58361],[95.13542,26.55843],[95.12649,26.5572],[95.12168,26.55106],[95.10726,26.54123],[95.11756,26.52035],[95.07499,26.47364],[95.06332,26.4509],[95.06332,26.44352],[95.08186,26.44844],[95.10383,26.4177],[95.10108,26.39494],[95.13404,26.38264],[95.12306,26.35557],[95.12649,26.33465],[95.121,26.30757],[95.12855,26.30018],[95.12168,26.26139],[95.12718,26.25524],[95.11688,26.23615],[95.12855,26.22198],[95.14228,26.2152],[95.11894,26.18501],[95.12649,26.177],[95.11688,26.16468],[95.12649,26.14434],[95.11688,26.11598],[95.11894,26.1018],[95.13267,26.09502],[95.14366,26.09563],[95.14778,26.08947],[95.16838,26.08947],[95.18554,26.07528],[95.18692,26.06726],[95.17868,26.06603],[95.1567,26.01853],[95.14228,26.00125],[95.12306,25.98705],[95.11962,25.97718],[95.09697,25.9636],[95.08117,25.94693],[95.05851,25.93705],[95.02967,25.9352],[95.02899,25.90493],[95.01731,25.88949],[95.02006,25.86972],[95.03173,25.8586],[95.03311,25.82461],[95.05165,25.7968],[95.04615,25.77701],[95.04547,25.73929],[95.02143,25.72754],[94.99465,25.72382],[94.98848,25.70712],[94.94041,25.67247],[94.92324,25.64833],[94.91912,25.6149],[94.90539,25.60004],[94.88273,25.59509],[94.88067,25.58765],[94.89509,25.56845],[94.84497,25.55916],[94.82917,25.5443],[94.82711,25.52571],[94.81269,25.51084],[94.8072,25.49348],[94.79003,25.48976],[94.78248,25.48109],[94.76257,25.48047],[94.75261,25.49178],[94.72274,25.47287],[94.68618,25.4659],[94.67468,25.44575],[94.67468,25.42529],[94.66095,25.40606],[94.65133,25.40606],[94.63623,25.39614],[94.63485,25.35705],[94.62524,25.34774],[94.58541,25.26891],[94.59091,25.25835],[94.57786,25.21426],[94.59022,25.19375],[94.60395,25.18505],[94.61769,25.1863],[94.6376,25.16765],[94.65065,25.16765],[94.6836,25.15212],[94.69116,25.15647],[94.72343,25.13223],[94.73854,25.13533],[94.74197,25.12228],[94.73854,25.1142],[94.74472,25.08746],[94.73922,25.06631],[94.74678,25.06072],[94.73785,25.00037],[94.7042,24.98419],[94.69665,24.96365],[94.71382,24.93127],[94.70283,24.9238],[94.68704,24.88955],[94.67811,24.87397],[94.66301,24.87335],[94.65545,24.85591],[94.63417,24.83659],[94.62936,24.80668],[94.62181,24.78798],[94.63005,24.75493],[94.61082,24.73747],[94.60601,24.70878],[94.58747,24.70504],[94.57992,24.70941],[94.58061,24.72188],[94.57099,24.71751],[94.57099,24.70566],[94.56069,24.71315],[94.54284,24.70504],[94.54834,24.68196],[94.54216,24.64264],[94.50988,24.59208],[94.45632,24.5696],[94.43504,24.50464],[94.42131,24.48277],[94.39384,24.48152],[94.40002,24.46027],[94.39796,24.4509],[94.40895,24.43964],[94.39521,24.41214],[94.36157,24.39338],[94.37599,24.37587],[94.35127,24.33521],[94.32106,24.32582],[94.32243,24.27638],[94.3032,24.23444],[94.2984,24.23819],[94.29153,24.23256],[94.28054,24.17494],[94.25857,24.16179],[94.25376,24.12356],[94.25445,24.08345],[94.23797,24.05085],[94.23042,24.05963],[94.22767,24.05586],[94.23728,24.03454],[94.20295,23.98374],[94.18922,23.93228],[94.17755,23.92538],[94.16931,23.92664],[94.15695,23.84753],[94.14253,23.84941],[94.1439,23.83685],[94.12948,23.8312],[94.11163,23.84376],[94.11438,23.86009],[94.09515,23.88583],[94.04846,23.89274],[94.04228,23.90906],[94.02511,23.91597],[94.02168,23.92538],[93.99696,23.92036],[93.98323,23.93228],[93.97087,23.92224],[93.94477,23.94609],[93.89328,23.95174],[93.85894,23.93291],[93.81362,23.92475],[93.80264,23.93228],[93.79783,23.95111],[93.77655,23.96743],[93.75732,24.00507],[93.72161,24.00005],[93.68454,24.0082],[93.67012,24.00444],[93.65501,24.00569],[93.62686,24.01134],[93.61038,24.00193],[93.61518,23.98688],[93.60076,23.97307],[93.59733,23.96429],[93.58634,23.96241],[93.56025,23.98186],[93.51287,23.94295],[93.46138,23.97746],[93.46481,23.99252],[93.45932,23.99817],[93.45657,24.01009],[93.43803,24.01761],[93.42361,24.059],[93.40576,24.08094],[93.35838,24.09473],[93.34671,24.10664],[93.33915,24.10351],[93.35357,24.08909],[93.33366,24.09035],[93.33778,24.06276],[93.32405,24.05273],[93.32679,24.04207],[93.33847,24.04144],[93.33229,24.03517],[93.33915,24.02765],[93.34121,24.02012],[93.33229,24.02012],[93.33778,23.99189],[93.33229,23.98499],[93.34465,23.96554],[93.36799,23.93228],[93.39271,23.92977],[93.38653,23.87139],[93.3879,23.82806],[93.40507,23.79853],[93.39752,23.78597],[93.3934,23.75706],[93.41056,23.72878],[93.40782,23.71055],[93.42155,23.69986],[93.42704,23.68666],[93.43597,23.68603],[93.4291,23.66528],[93.41812,23.64263],[93.42224,23.6332],[93.42292,23.6074],[93.42704,23.58664],[93.41468,23.56839],[93.4188,23.53755],[93.39202,23.49662],[93.39889,23.4708],[93.39271,23.44875],[93.3879,23.44875],[93.39065,23.41284],[93.40026,23.39016],[93.3879,23.36432],[93.35563,23.35297],[93.36868,23.33153],[93.36593,23.27351],[93.38584,23.21989],[93.37829,23.21547],[93.37692,23.18202],[93.36868,23.17318],[93.36937,23.14414],[93.38584,23.13972],[93.3831,23.12899],[93.36868,23.13088],[93.33847,23.0772],[93.35289,23.07341],[93.33984,23.07088],[93.34259,23.05888],[93.33366,23.05888],[93.31306,23.01844],[93.30276,23.02097],[93.29246,23.00643],[93.27598,23.00517],[93.27049,23.01212],[93.24714,23.0039],[93.23341,23.01465],[93.23272,23.02413],[93.22654,23.02286],[93.21418,23.05067],[93.1826,23.05888],[93.17642,23.0494],[93.16268,23.04814],[93.14552,23.06014],[93.13797,23.05888],[93.13797,23.05003],[93.13041,23.05003],[93.12767,23.02792],[93.13179,23.0235],[93.12767,23.01718],[93.12835,23.00074],[93.13797,22.99126],[93.14621,22.97293],[93.13453,22.96914],[93.14895,22.92424],[93.16474,22.91159],[93.15719,22.90906],[93.14552,22.91412],[93.13041,22.9059],[93.13316,22.89009],[93.11668,22.86605],[93.11874,22.85656],[93.10981,22.82682],[93.10226,22.82365],[93.10913,22.81859],[93.09814,22.8072],[93.09608,22.77934],[93.10569,22.75212],[93.09814,22.72932],[93.09745,22.71665],[93.09127,22.71095],[93.09745,22.69828],[93.09814,22.68625],[93.09402,22.67801],[93.10089,22.66154],[93.10913,22.65583],[93.10707,22.63872],[93.12011,22.62605],[93.12767,22.62351],[93.12835,22.61781],[93.13797,22.60703],[93.14003,22.58992],[93.11462,22.56202],[93.10981,22.543],[93.11187,22.53602],[93.10775,22.52778],[93.12492,22.52397],[93.12423,22.51128],[93.12904,22.49669],[93.13522,22.49289],[93.13659,22.48845],[93.12835,22.46243],[93.13316,22.45672],[93.1517,22.45101],[93.16612,22.45101],[93.17779,22.43705],[93.18534,22.39388],[93.19015,22.38944],[93.18534,22.37484],[93.18878,22.33991],[93.19564,22.32911],[93.19015,22.32276],[93.19427,22.31387],[93.19084,22.30561],[93.19908,22.28274],[93.19839,22.25605],[93.1771,22.24588],[93.16955,22.24652],[93.162,22.2516],[93.15513,22.24779],[93.14552,22.24906],[93.13934,22.23571],[93.15101,22.21982],[93.15033,22.21092],[93.16131,22.19694],[93.14895,22.17468],[93.12492,22.17468],[93.11187,22.20202],[93.09471,22.19694],[93.08441,22.20329],[93.04801,22.20202],[93.03909,22.1963],[93.04733,22.17596],[93.04664,22.16515],[93.03634,22.14988],[93.05419,22.12444],[93.05831,22.099],[93.02192,22.09963],[93.0075,22.10727],[93.00338,22.10409],[93.01025,22.08945],[93.00338,22.08055],[93.00613,22.07291],[92.99377,22.03663],[93.00407,22.01881],[93.00201,21.9978],[93.0075,21.98953],[92.99514,21.97743],[92.97935,21.98252],[92.97935,21.98889],[92.96012,22.02327],[92.95738,22.03218],[92.94982,22.03027],[92.9409,22.01563],[92.92854,22.01818],[92.93197,22.00035],[92.91961,21.99526],[92.91961,21.98316],[92.91137,21.97616],[92.91275,21.9475],[92.90725,21.94304],[92.90382,21.94304],[92.89901,21.96851],[92.89421,21.97998],[92.89627,21.98252],[92.89558,22.00226],[92.89077,22.01308],[92.87841,22.01563],[92.86468,22.02581],[92.86331,22.05891],[92.85301,22.06846],[92.83996,22.06209],[92.8379,22.07291],[92.8228,22.07673],[92.80563,22.09836],[92.76855,22.11299],[92.75482,22.12635],[92.73284,22.13653],[92.72804,22.15243],[92.71293,22.14798],[92.70813,22.15243],[92.69439,22.14988],[92.69645,22.13716],[92.69165,22.13971],[92.69233,22.10599],[92.69302,22.07355],[92.6889,22.07355],[92.68753,22.10536],[92.68203,22.10218],[92.68203,22.08373],[92.68478,22.04745],[92.67929,22.01245],[92.67036,22.00926],[92.65731,22.01754],[92.63397,21.98571],[92.61611,21.9787],[92.60307,21.98125],[92.61268,21.95769],[92.60994,21.9424],[92.61611,21.94368],[92.61611,21.93795],[92.612,21.92393],[92.62161,21.92457],[92.63191,21.87424],[92.62916,21.86277],[92.62161,21.86341],[92.61268,21.84875],[92.62092,21.82325],[92.60856,21.81879],[92.61131,21.77671],[92.60582,21.74164],[92.60925,21.72888],[92.6017,21.70145],[92.60856,21.68359],[92.60307,21.65487],[92.61131,21.6204],[92.60856,21.59104],[92.61543,21.57061],[92.6271,21.48565],[92.62367,21.47543],[92.64083,21.42814],[92.64152,21.40896],[92.64976,21.39042],[92.65113,21.35909],[92.66281,21.32008],[92.67997,21.29833],[92.67997,21.28873],[92.63877,21.27401],[92.62229,21.26058],[92.62367,21.25354],[92.59758,21.24522],[92.58522,21.28233],[92.58728,21.28873],[92.57629,21.31944],[92.57148,21.32519],[92.57354,21.33159],[92.56668,21.34758],[92.56462,21.37188],[92.55706,21.38467],[92.53715,21.37572],[92.53097,21.38914],[92.51724,21.3885],[92.51449,21.37763],[92.50762,21.37572],[92.51106,21.36548],[92.50213,21.35461],[92.49733,21.36293],[92.47398,21.35461],[92.46917,21.36357],[92.45819,21.36868],[92.43896,21.36612],[92.43759,21.37444],[92.43141,21.37316],[92.42729,21.39618],[92.43278,21.40768],[92.4266,21.43389],[92.41287,21.44284],[92.38197,21.4799],[92.34283,21.46648],[92.33596,21.43773],[92.32635,21.43197],[92.32429,21.41983],[92.29751,21.42047],[92.29202,21.43133],[92.27279,21.43389],[92.26387,21.41152],[92.26936,21.39937],[92.25494,21.38786],[92.257,21.36293],[92.23159,21.35014],[92.22541,21.35142],[92.19863,21.32839],[92.19932,21.31048],[92.21717,21.27785],[92.22061,21.25354],[92.21099,21.25034],[92.21923,21.23242],[92.19863,21.20105],[92.1952,21.20105],[92.18215,21.19209],[92.18147,21.18505],[92.17254,21.17929],[92.17666,21.16072],[92.19314,21.162],[92.20001,21.16136],[92.20344,21.14983],[92.19795,21.13766],[92.20001,21.12357],[92.20687,21.11845],[92.21649,21.12229],[92.22404,21.12037],[92.23434,21.09475],[92.25906,21.07809],[92.26387,21.06143],[92.25425,21.04413],[92.25563,21.02041],[92.26867,21.00054],[92.27142,20.94797],[92.3085,20.88639],[92.3394,20.82095],[92.37442,20.72529],[92.37098,20.70281],[90,20],[90,-3],[67,-3],[67,22]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central Zone of Asia","cq_zone_number":23,"cq_zone_name_loc":[44,93]},"geometry":{"type":"Polygon","coordinates":[[[121.47377,53.33128],[121.44767,53.32185],[121.42227,53.32349],[121.41128,53.31898],[121.39205,53.31733],[121.3639,53.3239],[121.32408,53.32267],[121.29867,53.29846],[121.27327,53.28861],[121.25541,53.29313],[121.24443,53.28902],[121.23481,53.28163],[121.22108,53.27958],[121.17851,53.28328],[121.16546,53.2804],[121.14486,53.28245],[121.1222,53.27506],[121.11465,53.27876],[121.11053,53.29354],[121.09474,53.29559],[121.09199,53.30585],[121.06315,53.30174],[121.03775,53.28615],[121.01509,53.28902],[120.98281,53.28984],[120.94574,53.29559],[120.9375,53.29313],[120.9272,53.28533],[120.8963,53.28615],[120.87913,53.29395],[120.87364,53.29148],[120.87501,53.28245],[120.8139,53.26726],[120.81184,53.26151],[120.82695,53.25535],[120.83519,53.23933],[120.82901,53.23686],[120.82214,53.24179],[120.80841,53.23933],[120.79605,53.22864],[120.76034,53.21096],[120.74729,53.21096],[120.72601,53.19986],[120.71777,53.18957],[120.70404,53.1834],[120.69717,53.17764],[120.68275,53.17353],[120.6903,53.1583],[120.68412,53.15212],[120.68756,53.14553],[120.68412,53.14182],[120.65048,53.13317],[120.64292,53.1237],[120.64224,53.11587],[120.63262,53.10103],[120.59761,53.09526],[120.58044,53.08536],[120.5619,53.08165],[120.54061,53.07134],[120.52619,53.05854],[120.52207,53.04327],[120.5001,53.03791],[120.49049,53.02552],[120.46028,53.01437],[120.43212,52.99908],[120.41153,52.97262],[120.40466,52.95691],[120.37651,52.94408],[120.35797,52.9416],[120.35041,52.93084],[120.3408,52.91925],[120.34423,52.90434],[120.33668,52.89896],[120.29892,52.89647],[120.28724,52.88902],[120.2893,52.86747],[120.27145,52.85793],[120.24742,52.85462],[120.23437,52.84674],[120.21308,52.84052],[120.20896,52.83346],[120.19523,52.82558],[120.18425,52.80857],[120.17463,52.80566],[120.15678,52.81189],[120.13687,52.81272],[120.1197,52.80359],[120.09841,52.79694],[120.09155,52.78449],[120.07301,52.78241],[120.05722,52.77826],[120.03044,52.77909],[120.02357,52.7712],[120.02494,52.7633],[120.05035,52.73213],[120.05104,52.71633],[120.06271,52.70301],[120.04348,52.68554],[120.03662,52.66347],[120.02563,52.63681],[120.03593,52.61889],[120.0373,52.60513],[120.04486,52.59303],[120.06683,52.58344],[120.11833,52.58552],[120.18837,52.57676],[120.21102,52.59095],[120.24398,52.60429],[120.28244,52.62264],[120.30784,52.61722],[120.34492,52.61472],[120.39436,52.61597],[120.42732,52.63848],[120.45822,52.64389],[120.47882,52.62681],[120.53512,52.60513],[120.55366,52.59387],[120.59143,52.59136],[120.61958,52.56925],[120.6546,52.56549],[120.67932,52.54587],[120.71159,52.54963],[120.72601,52.54086],[120.72601,52.53334],[120.71846,52.5275],[120.6855,52.51789],[120.68,52.50869],[120.69099,52.49992],[120.69786,52.48863],[120.67657,52.46521],[120.67863,52.44764],[120.68275,52.44178],[120.68344,52.42838],[120.66215,52.41121],[120.65803,52.40158],[120.64155,52.38565],[120.64842,52.3714],[120.64086,52.36008],[120.63125,52.36008],[120.61477,52.3584],[120.6134,52.35002],[120.62233,52.34163],[120.62164,52.32442],[120.64773,52.30134],[120.69236,52.28748],[120.70472,52.26185],[120.71296,52.25891],[120.72876,52.26017],[120.75141,52.25428],[120.75347,52.24419],[120.74317,52.23705],[120.73631,52.22107],[120.73768,52.20424],[120.7521,52.19119],[120.75553,52.18024],[120.78163,52.16382],[120.77888,52.15708],[120.75279,52.13728],[120.75897,52.12716],[120.76377,52.11704],[120.75485,52.10313],[120.73974,52.09807],[120.73425,52.09047],[120.74455,52.08541],[120.74729,52.07992],[120.73974,52.0757],[120.72738,52.0795],[120.71846,52.07866],[120.71228,52.06853],[120.68481,52.04784],[120.67863,52.03221],[120.68756,52.02334],[120.71228,52.01109],[120.69717,51.98107],[120.68412,51.97515],[120.68,51.9688],[120.66558,51.96669],[120.65391,51.95484],[120.64842,51.92521],[120.63125,51.92097],[120.61134,51.91928],[120.56945,51.90827],[120.55229,51.91335],[120.53924,51.90573],[120.54473,51.89895],[120.53993,51.88115],[120.52894,51.87733],[120.51178,51.88115],[120.50079,51.88539],[120.4795,51.88539],[120.4644,51.87903],[120.47264,51.86631],[120.4747,51.85529],[120.45272,51.84426],[120.40672,51.83747],[120.39024,51.83153],[120.39848,51.81498],[120.39573,51.81158],[120.37033,51.80861],[120.35385,51.78908],[120.30441,51.78313],[120.28518,51.74998],[120.26252,51.75083],[120.25016,51.73128],[120.23918,51.72702],[120.22201,51.72362],[120.21652,51.71554],[120.19729,51.7015],[120.18287,51.68873],[120.16708,51.67894],[120.13481,51.67255],[120.08949,51.68234],[120.07988,51.67681],[120.09704,51.65551],[120.09292,51.64785],[120.0634,51.64145],[120.04829,51.63037],[120.05104,51.62014],[120.0428,51.61673],[120.04417,51.61034],[120.027,51.58347],[120.04348,51.56725],[120.03799,51.56085],[120.0428,51.55572],[120.04142,51.54975],[120.02494,51.54334],[120.02082,51.53138],[120.01396,51.52327],[119.99542,51.5113],[119.98443,51.50874],[119.97688,51.50361],[119.98374,51.49463],[119.97413,51.48394],[119.9961,51.45743],[119.99336,51.44844],[119.97825,51.44544],[119.96933,51.43646],[119.97001,51.42747],[119.96452,51.42147],[119.96383,51.40091],[119.95628,51.3962],[119.92813,51.39449],[119.91508,51.3962],[119.90135,51.38806],[119.90615,51.37349],[119.93637,51.3662],[119.94049,51.36277],[119.93156,51.35463],[119.91989,51.34819],[119.91302,51.34305],[119.89585,51.34519],[119.87594,51.33404],[119.87869,51.30314],[119.86633,51.29284],[119.84573,51.2937],[119.82032,51.2894],[119.80316,51.27781],[119.81895,51.25976],[119.80316,51.25418],[119.7908,51.24687],[119.79217,51.23827],[119.81208,51.23053],[119.81826,51.21892],[119.81414,51.21247],[119.79286,51.21333],[119.79766,51.21634],[119.7702,51.22451],[119.76745,51.21849],[119.75097,51.21333],[119.75921,51.20645],[119.75784,51.19698],[119.76882,51.19096],[119.76402,51.18235],[119.78118,51.17417],[119.77981,51.16556],[119.77363,51.16255],[119.76402,51.16599],[119.75647,51.16556],[119.75303,51.1591],[119.76676,51.15867],[119.77569,51.15264],[119.76951,51.1436],[119.7702,51.13369],[119.76127,51.12292],[119.75166,51.12378],[119.74342,51.11386],[119.74617,51.10266],[119.75509,51.10093],[119.75303,51.08842],[119.73312,51.08713],[119.73793,51.07505],[119.72625,51.07203],[119.71527,51.07592],[119.7084,51.07031],[119.72145,51.0647],[119.71321,51.04571],[119.69879,51.04268],[119.68986,51.03362],[119.67338,51.01721],[119.65896,51.01159],[119.64798,51.01202],[119.62051,51.00338],[119.626,50.99776],[119.61502,50.99085],[119.59785,50.98696],[119.58892,50.98177],[119.58274,50.97485],[119.58274,50.9688],[119.57382,50.95583],[119.57382,50.94977],[119.56695,50.94545],[119.56283,50.9342],[119.53193,50.91212],[119.51408,50.90563],[119.51065,50.89263],[119.50996,50.84237],[119.48799,50.84323],[119.4873,50.82849],[119.50103,50.81938],[119.50653,50.8107],[119.50172,50.8055],[119.50515,50.79551],[119.51477,50.79074],[119.51477,50.78814],[119.50309,50.78814],[119.49623,50.78206],[119.49829,50.77468],[119.48799,50.77337],[119.49829,50.76469],[119.4873,50.7434],[119.47769,50.73862],[119.45503,50.71037],[119.43924,50.70559],[119.43992,50.69167],[119.43443,50.6908],[119.4255,50.68253],[119.40971,50.68601],[119.39186,50.67775],[119.37812,50.68079],[119.36988,50.67775],[119.37057,50.67296],[119.38156,50.66687],[119.38568,50.66077],[119.37057,50.65468],[119.3637,50.64249],[119.34722,50.62855],[119.34173,50.62855],[119.33006,50.64031],[119.32457,50.63596],[119.328,50.62463],[119.31427,50.61941],[119.30465,50.61156],[119.28817,50.61592],[119.27307,50.60023],[119.27993,50.59544],[119.28062,50.58716],[119.29161,50.58236],[119.28405,50.57146],[119.26002,50.56753],[119.26277,50.55576],[119.27375,50.55663],[119.27513,50.55139],[119.27032,50.54179],[119.25384,50.53525],[119.26071,50.5287],[119.25041,50.506],[119.22569,50.50338],[119.22843,50.49595],[119.24629,50.4929],[119.25521,50.4846],[119.25865,50.47629],[119.25247,50.46537],[119.23736,50.46406],[119.23255,50.4575],[119.24217,50.45007],[119.23255,50.43957],[119.21676,50.44088],[119.21745,50.42951],[119.20509,50.42251],[119.21058,50.41333],[119.19754,50.40764],[119.179,50.42251],[119.15702,50.42076],[119.1529,50.41114],[119.13848,50.40939],[119.12956,50.39495],[119.11788,50.38838],[119.13093,50.37962],[119.13505,50.38882],[119.14398,50.39013],[119.15016,50.37787],[119.16389,50.37918],[119.17007,50.37393],[119.14672,50.36473],[119.14947,50.35816],[119.16938,50.35641],[119.18861,50.3621],[119.18655,50.35772],[119.17076,50.35071],[119.17282,50.34721],[119.18518,50.34765],[119.20852,50.36342],[119.22637,50.36298],[119.22981,50.3437],[119.24903,50.34195],[119.25178,50.35247],[119.26139,50.3529],[119.2662,50.36517],[119.29023,50.35597],[119.29298,50.34283],[119.30053,50.34589],[119.29916,50.35597],[119.30877,50.3494],[119.32251,50.36035],[119.33624,50.3529],[119.34928,50.35816],[119.35272,50.35115],[119.3589,50.34808],[119.35066,50.34502],[119.36096,50.3402],[119.35958,50.32968],[119.35134,50.32836],[119.35134,50.32529],[119.37881,50.31916],[119.3692,50.31609],[119.36508,50.30863],[119.3431,50.30337],[119.33967,50.29591],[119.34379,50.28539],[119.32113,50.28451],[119.31701,50.281],[119.33143,50.27486],[119.33418,50.27178],[119.32594,50.26739],[119.32663,50.26037],[119.3383,50.26169],[119.34104,50.25423],[119.32937,50.25554],[119.33075,50.24237],[119.31976,50.23754],[119.32594,50.23578],[119.31495,50.23315],[119.31289,50.21733],[119.33898,50.20195],[119.35615,50.20767],[119.35821,50.20063],[119.35272,50.19624],[119.35478,50.1914],[119.33006,50.18833],[119.32594,50.17645],[119.3383,50.1637],[119.29916,50.15534],[119.30053,50.14434],[119.31221,50.14654],[119.31976,50.1263],[119.31427,50.12145],[119.31427,50.11265],[119.27101,50.08622],[119.27925,50.08402],[119.27581,50.08093],[119.25521,50.07653],[119.25041,50.07917],[119.24148,50.07168],[119.24423,50.06683],[119.22363,50.06198],[119.21608,50.05273],[119.20646,50.05184],[119.20715,50.04347],[119.19204,50.04479],[119.18586,50.05008],[119.18174,50.04391],[119.17076,50.04655],[119.18037,50.04038],[119.17213,50.03332],[119.1687,50.04038],[119.15702,50.0342],[119.15908,50.02494],[119.15565,50.02185],[119.15496,50.02627],[119.14192,50.03156],[119.13436,50.02715],[119.14604,50.0245],[119.1378,50.01965],[119.12475,50.0223],[119.11788,50.017],[119.11651,50.00685],[119.1069,50.00067],[119.10072,50.00332],[119.10278,50.00023],[119.09179,49.99626],[119.08905,50.00288],[119.076,49.99803],[119.076,49.98831],[119.05403,49.9786],[119.05334,49.98522],[119.04647,49.97904],[119.03686,49.98876],[118.99086,49.97595],[118.96202,49.98169],[118.95309,49.97198],[118.94073,49.97374],[118.94348,49.968],[118.93249,49.96535],[118.92288,49.97065],[118.92013,49.96623],[118.91326,49.97021],[118.89267,49.96358],[118.87756,49.95563],[118.84254,49.94724],[118.83361,49.95033],[118.824,49.93752],[118.78967,49.92691],[118.77388,49.93575],[118.73199,49.93],[118.72512,49.93266],[118.70864,49.92072],[118.7004,49.91939],[118.69628,49.92337],[118.68736,49.92337],[118.67431,49.91055],[118.67088,49.91718],[118.65234,49.91984],[118.6544,49.91542],[118.64822,49.91851],[118.64959,49.91409],[118.63723,49.91763],[118.63243,49.90878],[118.62693,49.90878],[118.61183,49.8933],[118.60702,49.89684],[118.60359,49.89375],[118.60015,49.89551],[118.59466,49.88799],[118.57749,49.88357],[118.57612,49.87516],[118.56651,49.8672],[118.56857,49.85923],[118.56239,49.85569],[118.5672,49.85303],[118.55896,49.83709],[118.54316,49.83444],[118.53424,49.83001],[118.50952,49.82868],[118.51158,49.81672],[118.49647,49.81937],[118.47518,49.80608],[118.47656,49.80342],[118.46694,49.80121],[118.45871,49.79456],[118.45527,49.78481],[118.44154,49.77993],[118.42781,49.78215],[118.41201,49.77949],[118.38935,49.76352],[118.37768,49.76263],[118.35296,49.7511],[118.34129,49.75154],[118.33648,49.748],[118.33236,49.74223],[118.32824,49.748],[118.32618,49.74178],[118.31726,49.744],[118.31794,49.73779],[118.31382,49.74134],[118.2788,49.72669],[118.27743,49.72181],[118.25683,49.72048],[118.24928,49.71648],[118.24447,49.70183],[118.22868,49.68851],[118.21907,49.69206],[118.19503,49.67562],[118.17375,49.67607],[118.171,49.67296],[118.16207,49.66718],[118.16207,49.66096],[118.15383,49.66585],[118.15246,49.66096],[118.14628,49.65785],[118.14491,49.66851],[118.13804,49.66851],[118.12912,49.66273],[118.12637,49.66629],[118.10646,49.6694],[118.1147,49.66629],[118.10989,49.66318],[118.11195,49.65518],[118.10508,49.6534],[118.1092,49.65073],[118.10852,49.64629],[118.09753,49.6454],[118.0989,49.63695],[118.09547,49.63384],[118.08929,49.63695],[118.08654,49.64673],[118.08448,49.6414],[118.07281,49.6365],[118.06663,49.63873],[118.05908,49.6365],[118.06045,49.62805],[118.07281,49.62583],[118.06526,49.62227],[118.06457,49.61871],[118.07624,49.61871],[118.0735,49.61426],[118.05908,49.61382],[118.05496,49.62005],[118.04878,49.61782],[118.0529,49.61249],[118.0474,49.60893],[118.03916,49.61293],[118.03504,49.62183],[118.03093,49.62227],[118.03093,49.61204],[117.99316,49.61471],[117.99247,49.62183],[117.97393,49.6196],[117.97462,49.6156],[117.96775,49.61115],[117.94853,49.61026],[117.94509,49.60448],[117.95265,49.60403],[117.94441,49.59424],[117.92793,49.5978],[117.89085,49.59424],[117.88398,49.54347],[117.87368,49.54125],[117.87094,49.53768],[117.8778,49.53233],[117.87506,49.52699],[117.87918,49.51317],[117.87025,49.51495],[117.8675,49.50916],[117.85789,49.5096],[117.85308,49.51629],[117.85446,49.52075],[117.84622,49.52208],[117.84416,49.52922],[117.83729,49.52877],[117.83454,49.53813],[117.82699,49.53991],[117.80983,49.53055],[117.80914,49.51986],[117.8009,49.51718],[117.63473,49.56397],[117.47268,49.62672],[117.27287,49.63072],[117.05658,49.6854],[116.71394,49.84551],[116.62605,49.93531],[116.56219,49.94547],[116.49971,49.95828],[116.39946,49.98655],[116.33697,50.00023],[116.23741,50.03641],[116.18042,50.02759],[116.13304,50.02362],[116.06849,50.0095],[116.05064,50.00067],[116.01837,49.98876],[115.97785,49.97021],[115.94764,49.96093],[115.82954,49.92116],[115.81306,49.90967],[115.76225,49.89109],[115.7595,49.89153],[115.74302,49.88578],[115.67298,49.88578],[115.62629,49.89905],[115.58647,49.90613],[115.54733,49.90701],[115.54046,49.90524],[115.3228,49.9521],[115.28297,49.96491],[115.23696,49.98434],[115.17242,50.02185],[115.13122,50.05625],[115.07835,50.08402],[115.06668,50.09415],[115.07011,50.10384],[115.03646,50.13906],[115.02204,50.14874],[114.99046,50.17338],[114.9678,50.18173],[114.88609,50.20591],[114.8394,50.22392],[114.77897,50.22919],[114.7673,50.23271],[114.65675,50.24983],[114.62448,50.24632],[114.52285,50.23051],[114.47959,50.2371],[114.45213,50.24193],[114.44664,50.24588],[114.43359,50.2494],[114.42398,50.24983],[114.34295,50.281],[114.33746,50.28582],[114.2633,50.26827],[114.17953,50.24676],[113.98178,50.1549],[113.88908,50.10869],[113.83277,50.1034],[113.74076,50.07168],[113.64326,49.98964],[113.48533,49.97198],[113.47229,49.93531],[113.3377,49.88755],[113.21754,49.83665],[113.15918,49.76574],[113.16467,49.75199],[113.14132,49.74045],[113.07884,49.65384],[113.0809,49.64673],[113.0706,49.64184],[113.07128,49.6325],[113.06167,49.62405],[113.05412,49.60848],[113.03764,49.60181],[113.02871,49.5938],[113.02391,49.59691],[113.00399,49.59201],[112.99987,49.59469],[112.98202,49.58979],[112.97927,49.58489],[112.97035,49.58489],[112.96348,49.58178],[112.95867,49.58578],[112.947,49.58534],[112.93945,49.57732],[112.9422,49.5702],[112.93258,49.56753],[112.92709,49.57243],[112.91542,49.57154],[112.89276,49.56174],[112.88589,49.55149],[112.88108,49.55238],[112.8749,49.54704],[112.8543,49.54169],[112.85568,49.53679],[112.844,49.52788],[112.81242,49.5154],[112.79663,49.52119],[112.79045,49.51406],[112.77465,49.5096],[112.76641,49.51317],[112.75268,49.50737],[112.7211,49.52164],[112.71354,49.51629],[112.71217,49.50648],[112.69569,49.50202],[112.64762,49.51763],[112.63595,49.51183],[112.62496,49.51272],[112.59681,49.51094],[112.57484,49.51718],[112.47665,49.52253],[112.42721,49.50871],[112.28439,49.48507],[112.19375,49.44848],[111.93901,49.37522],[111.91772,49.37656],[111.81129,49.37343],[111.78726,49.38237],[111.744,49.38505],[111.68769,49.38371],[111.53045,49.32377],[111.48445,49.33138],[111.37802,49.35822],[111.29219,49.31572],[111.10885,49.26601],[111.09306,49.26198],[111.0086,49.23867],[110.96328,49.22297],[110.94749,49.21535],[110.8905,49.20234],[110.81222,49.17586],[110.77995,49.17407],[110.72227,49.16733],[110.69343,49.16599],[110.65567,49.17497],[110.58425,49.18619],[110.5307,49.18933],[110.52177,49.18664],[110.51284,49.18798],[110.50804,49.19651],[110.4943,49.19651],[110.49293,49.19112],[110.42083,49.22297],[110.39405,49.25525],[110.33226,49.20055],[110.25329,49.16599],[110.21278,49.15701],[110.19905,49.15521],[110.16815,49.16509],[110.13519,49.16509],[110.10154,49.17856],[110.05691,49.1799],[110.04661,49.18215],[110.02739,49.19337],[110.00129,49.19247],[109.97589,49.20234],[109.94911,49.19561],[109.92507,49.20279],[109.90997,49.19741],[109.88456,49.19471],[109.81315,49.21356],[109.66552,49.22567],[109.55703,49.22163],[109.51858,49.23329],[109.49043,49.23912],[109.46777,49.26914],[109.44717,49.27362],[109.43069,49.28572],[109.4252,49.29557],[109.3888,49.3005],[109.33868,49.3278],[109.17388,49.35554],[109.0702,49.32377],[108.94798,49.34302],[108.94043,49.34302],[108.92944,49.34749],[108.91571,49.34346],[108.89991,49.34391],[108.89991,49.34078],[108.88275,49.33228],[108.86352,49.33675],[108.85185,49.33272],[108.84704,49.33451],[108.84292,49.34167],[108.83537,49.34749],[108.82164,49.34257],[108.78662,49.3363],[108.75778,49.3448],[108.73924,49.34257],[108.72207,49.33496],[108.71795,49.33854],[108.69804,49.33228],[108.66783,49.34838],[108.65066,49.34212],[108.6486,49.33586],[108.60672,49.33004],[108.56964,49.33854],[108.56483,49.33496],[108.54217,49.33854],[108.52294,49.32064],[108.51608,49.32109],[108.51265,49.32601],[108.4996,49.32691],[108.49136,49.3363],[108.49136,49.34167],[108.46733,49.35822],[108.45291,49.35867],[108.44604,49.36404],[108.44604,49.3703],[108.43849,49.37879],[108.44741,49.3989],[108.43849,49.40382],[108.4378,49.41946],[108.42887,49.42258],[108.4069,49.4199],[108.39729,49.42482],[108.38768,49.42482],[108.36708,49.43241],[108.35815,49.4467],[108.34922,49.44982],[108.34442,49.46187],[108.35334,49.47481],[108.3451,49.49132],[108.3451,49.50247],[108.3403,49.5096],[108.33068,49.50782],[108.32656,49.51049],[108.3197,49.51049],[108.31832,49.52877],[108.3039,49.53991],[108.29704,49.55105],[108.27644,49.54882],[108.26957,49.55328],[108.23867,49.54214],[108.22151,49.54971],[108.21945,49.54838],[108.20365,49.5506],[108.19473,49.55951],[108.18512,49.55773],[108.17688,49.55951],[108.1707,49.55951],[108.16726,49.56263],[108.16177,49.56174],[108.15284,49.57065],[108.14598,49.56975],[108.10684,49.58534],[108.09997,49.58534],[108.05603,49.60626],[108.05603,49.61204],[108.04847,49.61249],[108.02581,49.62361],[108.02101,49.62983],[108.02719,49.6325],[108.03611,49.63295],[108.03955,49.63739],[108.03062,49.64051],[108.02375,49.65562],[108.02581,49.66318],[108.03268,49.67162],[108.02307,49.67562],[108.02101,49.6694],[108.00247,49.66896],[107.98255,49.65696],[107.96058,49.65384],[107.94273,49.66273],[107.94479,49.68495],[107.93586,49.70094],[107.94273,49.71116],[107.95028,49.71116],[107.95509,49.71737],[107.96608,49.71959],[107.98049,49.73557],[107.97363,49.73956],[107.97157,49.74888],[107.96196,49.74977],[107.94822,49.77594],[107.95097,49.77949],[107.96951,49.78215],[107.98736,49.78924],[107.97843,49.79855],[107.98255,49.80653],[107.97157,49.81273],[107.95303,49.80874],[107.94479,49.81361],[107.93724,49.81627],[107.93792,49.82558],[107.9441,49.82956],[107.95097,49.84418],[107.94479,49.84728],[107.94616,49.8517],[107.92488,49.85613],[107.92213,49.8641],[107.92488,49.87561],[107.93724,49.87561],[107.94754,49.88003],[107.95921,49.8995],[107.96539,49.90613],[107.97637,49.90524],[107.97226,49.90746],[107.97706,49.91453],[107.96676,49.93928],[107.94891,49.94459],[107.9393,49.94459],[107.93106,49.93796],[107.91801,49.93531],[107.90634,49.94149],[107.89878,49.93575],[107.8878,49.9331],[107.84866,49.93708],[107.84935,49.95077],[107.84523,49.95298],[107.83561,49.96182],[107.82051,49.95696],[107.80609,49.93442],[107.79441,49.93177],[107.78068,49.94724],[107.76283,49.95563],[107.75665,49.96933],[107.72918,49.98081],[107.71133,49.97374],[107.70584,49.96888],[107.6921,49.97065],[107.6818,49.96535],[107.6612,49.96668],[107.65296,49.95961],[107.64473,49.96314],[107.64473,49.97374],[107.63717,49.97683],[107.62207,49.97595],[107.61383,49.97153],[107.59117,49.96977],[107.55477,49.98346],[107.54173,49.98522],[107.52868,49.97551],[107.49092,49.97728],[107.471,49.98566],[107.4607,49.97948],[107.45109,49.97816],[107.43736,49.98257],[107.42569,49.98257],[107.42569,49.97816],[107.42981,49.97198],[107.40783,49.97948],[107.39959,49.97728],[107.38243,49.9786],[107.36526,49.98699],[107.34809,50.00023],[107.32063,50.00332],[107.3069,50.00023],[107.27806,50.00067],[107.27325,49.99185],[107.25402,49.98876],[107.2451,49.99803],[107.2396,49.99803],[107.22518,49.99847],[107.21832,50.00729],[107.2142,49.99847],[107.20321,50.00773],[107.19223,50.00773],[107.18605,50.01568],[107.17643,50.01126],[107.16819,50.01347],[107.1627,50.02362],[107.14897,50.02494],[107.14485,50.03112],[107.15309,50.03817],[107.15171,50.04347],[107.14004,50.04214],[107.13249,50.04964],[107.12562,50.04964],[107.11944,50.04788],[107.09747,50.05184],[107.08992,50.05846],[107.09129,50.06507],[107.08442,50.06683],[107.07893,50.06286],[107.06657,50.08005],[107.0755,50.0893],[107.06794,50.09151],[107.05696,50.0871],[107.05009,50.09767],[107.05078,50.11221],[107.04597,50.11353],[107.04322,50.12013],[107.03979,50.12894],[107.03155,50.13158],[107.01644,50.1439],[107.01644,50.15006],[107.00889,50.15006],[107.00683,50.15622],[107.00134,50.15666],[107.00202,50.16238],[107.01301,50.16766],[107.00271,50.17382],[106.99447,50.18481],[107.01301,50.19052],[107.0137,50.19932],[106.97937,50.20854],[106.87912,50.26081],[106.81594,50.29767],[106.73149,50.3174],[106.73149,50.31346],[106.5921,50.33888],[106.57218,50.33231],[106.55571,50.33625],[106.5406,50.34326],[106.51382,50.34546],[106.50627,50.33932],[106.49734,50.3231],[106.48635,50.3231],[106.44722,50.31477],[106.3916,50.3196],[106.32637,50.3082],[106.31744,50.30162],[106.31126,50.30425],[106.30371,50.30381],[106.30096,50.29986],[106.29341,50.30118],[106.26045,50.29855],[106.24877,50.30688],[106.24328,50.30644],[106.23504,50.31609],[106.21101,50.3196],[106.19384,50.3345],[106.18698,50.33494],[106.18217,50.33888],[106.12518,50.33669],[106.11625,50.33538],[106.10458,50.33581],[106.08055,50.3345],[106.07849,50.34502],[106.0675,50.34852],[106.07025,50.36605],[106.07437,50.37086],[106.06956,50.37962],[106.07574,50.38969],[106.05514,50.40414],[106.04621,50.40195],[106.01806,50.41158],[106.00914,50.41158],[105.98922,50.41595],[105.92262,50.41639],[105.91095,50.41333],[105.8979,50.41376],[105.85945,50.42558],[105.84434,50.43957],[105.81893,50.44045],[105.80383,50.43432],[105.78804,50.43957],[105.77911,50.4387],[105.76538,50.43432],[105.75988,50.4352],[105.72555,50.42776],[105.70289,50.42645],[105.64521,50.4352],[105.62736,50.42689],[105.60401,50.42995],[105.59989,50.43389],[105.57792,50.44001],[105.57312,50.44832],[105.5223,50.4575],[105.47973,50.44438],[105.44265,50.44176],[105.42755,50.44351],[105.41175,50.44919],[105.4042,50.45837],[105.38429,50.46143],[105.36094,50.47367],[105.35408,50.47935],[105.3273,50.4728],[105.29846,50.47236],[105.26687,50.46493],[105.26481,50.45969],[105.26893,50.45444],[105.2703,50.44788],[105.25932,50.44132],[105.25451,50.44132],[105.22224,50.4247],[105.21537,50.42426],[105.19958,50.41245],[105.17623,50.41026],[105.1625,50.41289],[105.15976,50.4037],[105.11787,50.38969],[105.10414,50.39845],[105.09384,50.39582],[105.08766,50.38882],[105.02723,50.38707],[105.01281,50.39188],[105.00801,50.38794],[104.97779,50.39451],[104.97093,50.40326],[104.93248,50.40282],[104.92561,50.40589],[104.91668,50.40676],[104.91119,50.40414],[104.89952,50.40764],[104.88922,50.40764],[104.88784,50.39888],[104.8796,50.39845],[104.8796,50.39276],[104.87274,50.38925],[104.87548,50.37086],[104.85145,50.3678],[104.8487,50.35904],[104.83978,50.35772],[104.83154,50.36035],[104.82811,50.35334],[104.82055,50.35071],[104.81094,50.34107],[104.80476,50.33976],[104.79652,50.34239],[104.76974,50.34458],[104.76219,50.33932],[104.74777,50.34677],[104.74777,50.3494],[104.72236,50.35685],[104.71069,50.35422],[104.69696,50.36736],[104.67292,50.35904],[104.66812,50.35334],[104.66812,50.34283],[104.65988,50.33012],[104.64546,50.3231],[104.63722,50.32354],[104.62417,50.31653],[104.60838,50.32003],[104.60563,50.31609],[104.59602,50.31653],[104.56993,50.30732],[104.56169,50.30206],[104.55688,50.30776],[104.53216,50.31609],[104.52529,50.31477],[104.51705,50.3174],[104.49028,50.30776],[104.4738,50.31346],[104.45457,50.31433],[104.44702,50.30556],[104.41886,50.30776],[104.40101,50.31258],[104.3914,50.31126],[104.38728,50.30513],[104.38865,50.29986],[104.3811,50.29767],[104.37217,50.27442],[104.36531,50.27091],[104.36462,50.26344],[104.34059,50.24983],[104.3399,50.24413],[104.33029,50.24281],[104.30625,50.245],[104.29184,50.24237],[104.29115,50.2371],[104.2733,50.22129],[104.28085,50.20547],[104.27604,50.19932],[104.26368,50.19888],[104.25064,50.19316],[104.24171,50.18569],[104.22386,50.18745],[104.19982,50.17469],[104.19639,50.17513],[104.15451,50.14918],[104.14627,50.14742],[104.13459,50.13818],[104.11674,50.14434],[104.1085,50.14126],[104.09477,50.14434],[104.08721,50.14126],[104.07554,50.1483],[104.05769,50.15006],[104.0467,50.14742],[104.01443,50.14874],[104.00894,50.1527],[103.99932,50.15006],[103.98834,50.15754],[103.97666,50.15578],[103.97392,50.16502],[103.95538,50.16458],[103.94577,50.17426],[103.94439,50.18129],[103.93547,50.18349],[103.93341,50.17821],[103.91693,50.17821],[103.91075,50.18349],[103.89976,50.18261],[103.88877,50.17601],[103.88053,50.17997],[103.88122,50.19008],[103.85856,50.18964],[103.84964,50.19712],[103.8359,50.19448],[103.83659,50.18349],[103.82492,50.17645],[103.82286,50.16634],[103.79951,50.1527],[103.77685,50.16458],[103.7487,50.1637],[103.7487,50.16062],[103.73703,50.15886],[103.72947,50.1439],[103.73222,50.13818],[103.72467,50.12762],[103.71574,50.12806],[103.71025,50.12586],[103.68347,50.14346],[103.64982,50.14214],[103.64296,50.14698],[103.63472,50.1505],[103.60862,50.14434],[103.61,50.15666],[103.60107,50.16678],[103.57704,50.16898],[103.56399,50.16326],[103.55644,50.16326],[103.54545,50.17118],[103.54064,50.17162],[103.53996,50.17689],[103.52966,50.18129],[103.52279,50.19624],[103.51387,50.19888],[103.507,50.19712],[103.48228,50.19844],[103.47679,50.20415],[103.46374,50.20679],[103.44245,50.20459],[103.43559,50.2103],[103.4246,50.21162],[103.41705,50.20811],[103.41018,50.21162],[103.38478,50.20723],[103.37928,50.20898],[103.3731,50.20723],[103.36898,50.19888],[103.35937,50.20063],[103.35319,50.20283],[103.33877,50.19844],[103.31886,50.18877],[103.3065,50.18964],[103.29345,50.18525],[103.28247,50.18964],[103.27285,50.18964],[103.25569,50.19316],[103.25569,50.20942],[103.2756,50.22217],[103.27629,50.22524],[103.27148,50.22832],[103.27285,50.23271],[103.26324,50.24237],[103.24951,50.24764],[103.24882,50.25598],[103.25775,50.25598],[103.26805,50.26388],[103.2653,50.26652],[103.26736,50.27091],[103.27629,50.27573],[103.27354,50.28144],[103.2756,50.28407],[103.26599,50.29021],[103.26461,50.29855],[103.25775,50.30293],[103.24951,50.30206],[103.23783,50.32179],[103.23509,50.32354],[103.22822,50.31916],[103.21929,50.31872],[103.21517,50.32617],[103.20419,50.33275],[103.17672,50.33319],[103.17123,50.32573],[103.17535,50.32091],[103.17192,50.31565],[103.1623,50.31609],[103.15406,50.31565],[103.14651,50.30513],[103.106,50.31828],[103.09295,50.31609],[103.08677,50.31828],[103.07235,50.31872],[103.06617,50.3139],[103.04351,50.31258],[103.02223,50.30644],[103.00849,50.3082],[102.99133,50.30469],[102.97966,50.30556],[102.96661,50.30469],[102.94601,50.30688],[102.93914,50.306],[102.92266,50.30951],[102.90206,50.32266],[102.89726,50.32968],[102.87048,50.32793],[102.85743,50.33669],[102.84713,50.33231],[102.83683,50.33713],[102.83889,50.34195],[102.83065,50.34458],[102.83134,50.34852],[102.82791,50.35597],[102.79083,50.36517],[102.76886,50.37699],[102.75924,50.37743],[102.75375,50.38794],[102.751,50.40107],[102.74276,50.40064],[102.73727,50.40632],[102.72972,50.40895],[102.70156,50.39757],[102.69813,50.39495],[102.6844,50.39363],[102.64732,50.40151],[102.64251,50.40851],[102.64183,50.41333],[102.62535,50.43389],[102.61505,50.45356],[102.62191,50.46056],[102.61711,50.48591],[102.60749,50.49552],[102.61024,50.506],[102.59239,50.51779],[102.58346,50.52041],[102.57385,50.51866],[102.57522,50.5239],[102.54638,50.52652],[102.5402,50.53263],[102.55325,50.54921],[102.55325,50.55663],[102.53677,50.5889],[102.5251,50.59457],[102.47909,50.59718],[102.46673,50.60198],[102.44545,50.61984],[102.44888,50.6316],[102.44613,50.64554],[102.42141,50.64031],[102.41111,50.64292],[102.4015,50.64031],[102.39395,50.64423],[102.38845,50.66034],[102.37609,50.66774],[102.34588,50.66295],[102.32597,50.6747],[102.30056,50.68253],[102.30812,50.70385],[102.33146,50.71863],[102.34108,50.73167],[102.33558,50.74036],[102.3246,50.74384],[102.32322,50.75166],[102.30331,50.76469],[102.2937,50.77381],[102.2937,50.78162],[102.28477,50.78423],[102.27378,50.79248],[102.25181,50.79855],[102.23877,50.79855],[102.23053,50.80897],[102.21885,50.81114],[102.20855,50.81721],[102.21954,50.82806],[102.20993,50.83803],[102.2113,50.848],[102.21679,50.85277],[102.2216,50.85234],[102.21405,50.86317],[102.2113,50.87531],[102.23739,50.8896],[102.24151,50.89783],[102.24632,50.9026],[102.24082,50.91602],[102.21885,50.929],[102.22503,50.93766],[102.21336,50.95323],[102.22915,50.9688],[102.2422,50.97529],[102.23121,50.97572],[102.22297,50.99517],[102.22503,50.99949],[102.21679,51.00986],[102.21267,51.02023],[102.20375,51.02844],[102.20237,51.0388],[102.18383,51.04225],[102.18109,51.0483],[102.1495,51.05822],[102.15225,51.06513],[102.14744,51.06901],[102.15156,51.08239],[102.16461,51.08368],[102.1701,51.09576],[102.16667,51.09619],[102.1598,51.09403],[102.13851,51.10007],[102.13783,51.10481],[102.13302,51.10998],[102.13165,51.12766],[102.13439,51.13196],[102.12341,51.13843],[102.12478,51.14274],[102.12341,51.14963],[102.13508,51.15867],[102.13783,51.17546],[102.15431,51.1746],[102.16667,51.17977],[102.15431,51.19268],[102.14469,51.19354],[102.12753,51.20903],[102.14332,51.22021],[102.11448,51.23655],[102.10556,51.24773],[102.11792,51.25332],[102.1138,51.25933],[102.1186,51.26535],[102.11586,51.26921],[102.11998,51.28038],[102.1138,51.28339],[102.11311,51.28854],[102.12066,51.28983],[102.13165,51.28425],[102.14332,51.28425],[102.1495,51.27995],[102.14881,51.28382],[102.17353,51.28511],[102.17765,51.29241],[102.18246,51.29498],[102.17765,51.30185],[102.17559,51.30185],[102.16735,51.30829],[102.16873,51.31902],[102.15911,51.32074],[102.14744,51.33318],[102.14813,51.33919],[102.13714,51.34562],[102.12547,51.34862],[102.12478,51.36192],[102.0877,51.37306],[102.07466,51.37821],[102.06024,51.37949],[102.04856,51.38678],[102.03826,51.38763],[102.03414,51.39063],[102.02865,51.3902],[102.01835,51.3962],[102.00187,51.3872],[102.0005,51.38163],[101.9902,51.39406],[101.97715,51.39535],[101.97097,51.39192],[101.96136,51.40948],[101.949,51.41462],[101.93801,51.41376],[101.92771,51.41633],[101.92016,51.41334],[101.91055,51.41419],[101.88995,51.40006],[101.88652,51.40091],[101.88789,51.40391],[101.88514,51.40777],[101.86592,51.40905],[101.8666,51.41334],[101.86317,51.41719],[101.85562,51.41591],[101.83776,51.41933],[101.82884,51.41462],[101.82884,51.41805],[101.81236,51.4219],[101.81167,51.43218],[101.80343,51.43731],[101.79725,51.43603],[101.78833,51.44159],[101.78146,51.43988],[101.74781,51.45529],[101.73339,51.45186],[101.72035,51.45315],[101.71691,51.45486],[101.69906,51.44801],[101.69151,51.45357],[101.67709,51.45101],[101.67297,51.44673],[101.66542,51.4463],[101.65718,51.4433],[101.651,51.44459],[101.64138,51.44288],[101.63383,51.44288],[101.61804,51.43988],[101.6201,51.44459],[101.6146,51.45443],[101.62147,51.46256],[101.62147,51.4694],[101.60156,51.47283],[101.59675,51.47967],[101.58577,51.48095],[101.57478,51.47924],[101.56929,51.47539],[101.56791,51.4694],[101.56448,51.47625],[101.56654,51.48181],[101.55487,51.49335],[101.55212,51.49335],[101.54251,51.49976],[101.53083,51.50019],[101.52259,51.49634],[101.4965,51.50233],[101.47865,51.49292],[101.45942,51.49036],[101.45805,51.47838],[101.46011,51.4724],[101.43745,51.45571],[101.41685,51.457],[101.40792,51.45315],[101.39694,51.45357],[101.3887,51.45914],[101.38183,51.45571],[101.3681,51.45657],[101.36879,51.46128],[101.36192,51.46256],[101.35574,51.46684],[101.36741,51.47197],[101.35917,51.47283],[101.35505,51.47881],[101.34475,51.48394],[101.34063,51.4895],[101.31179,51.49592],[101.29531,51.50575],[101.28089,51.51002],[101.28227,51.51728],[101.26167,51.53565],[101.2603,51.54206],[101.24244,51.54676],[101.23077,51.5442],[101.22116,51.53779],[101.20605,51.53181],[101.19232,51.52198],[101.17446,51.52455],[101.15661,51.51942],[101.13807,51.52028],[101.13189,51.52412],[101.13395,51.54505],[101.12434,51.55188],[101.12503,51.5617],[101.10168,51.57877],[101.10305,51.592],[101.0955,51.58347],[101.09138,51.58133],[101.09001,51.57237],[101.07902,51.56085],[101.06254,51.57066],[101.03851,51.57365],[101.01722,51.57024],[101.01722,51.57493],[101.01448,51.58133],[101.02203,51.58773],[101.01928,51.59072],[101.01791,51.59456],[100.99731,51.60522],[100.98564,51.61545],[100.95748,51.61588],[100.92865,51.60735],[100.89569,51.62014],[100.85586,51.63421],[100.86204,51.64103],[100.84899,51.6487],[100.8229,51.64827],[100.81398,51.65296],[100.8078,51.66276],[100.79544,51.66276],[100.77346,51.66957],[100.7666,51.67042],[100.73707,51.67851],[100.71785,51.68958],[100.71167,51.69001],[100.70549,51.69894],[100.69725,51.70235],[100.69244,51.71001],[100.68695,51.71214],[100.66909,51.70745],[100.65742,51.71426],[100.65605,51.72872],[100.6327,51.7249],[100.61004,51.72617],[100.60386,51.71979],[100.59682,51.71873],[100.59082,51.7351],[100.5867,51.74148],[100.57159,51.73893],[100.56541,51.7368],[100.53176,51.73723],[100.53245,51.74318],[100.5297,51.75041],[100.50293,51.75041],[100.50018,51.74488],[100.49194,51.74233],[100.47615,51.74446],[100.46035,51.73851],[100.45005,51.73936],[100.4425,51.72745],[100.42602,51.73213],[100.40954,51.73085],[100.4116,51.74531],[100.41641,51.74531],[100.41641,51.74828],[100.40199,51.74743],[100.38482,51.73893],[100.36903,51.74191],[100.36216,51.73808],[100.35667,51.73851],[100.35049,51.74361],[100.33332,51.73893],[100.32165,51.73893],[100.30929,51.7368],[100.29487,51.74276],[100.28251,51.73766],[100.27427,51.74021],[100.27427,51.74191],[100.27153,51.74488],[100.26603,51.74616],[100.26191,51.75083],[100.24681,51.74701],[100.23857,51.74956],[100.21453,51.74276],[100.2008,51.74318],[100.19874,51.74658],[100.18569,51.74871],[100.18158,51.75211],[100.17265,51.74913],[100.16235,51.75169],[100.15548,51.75679],[100.14518,51.75594],[100.13557,51.75891],[100.13008,51.75509],[100.11634,51.75806],[100.10879,51.75381],[100.10192,51.75381],[100.0978,51.74998],[100.093,51.74913],[100.07995,51.74063],[100.07377,51.74106],[100.06485,51.73255],[100.05592,51.73213],[100.05043,51.7368],[100.03738,51.73255],[100.02845,51.73468],[100.02639,51.73936],[100.01335,51.73936],[99.99687,51.74488],[99.98039,51.75551],[99.96391,51.74233],[99.95155,51.74276],[99.9282,51.74871],[99.92614,51.74573],[99.91722,51.73851],[99.90829,51.73936],[99.90966,51.74616],[99.89799,51.75934],[99.88151,51.76274],[99.87739,51.77208],[99.87052,51.77718],[99.87052,51.78016],[99.86228,51.7861],[99.8719,51.79375],[99.86366,51.80521],[99.84649,51.80691],[99.83688,51.80479],[99.8307,51.80734],[99.84581,51.82134],[99.84649,51.83577],[99.83482,51.83535],[99.81903,51.84808],[99.82521,51.84935],[99.82933,51.85868],[99.82727,51.87013],[99.82383,51.87606],[99.82864,51.88284],[99.82315,51.88878],[99.81628,51.88963],[99.81765,51.89852],[99.81079,51.90361],[99.80941,51.91081],[99.80117,51.91589],[99.76821,51.91377],[99.7483,51.90827],[99.7435,51.90318],[99.7229,51.90446],[99.69062,51.89768],[99.68719,51.8892],[99.6817,51.88835],[99.6714,51.89683],[99.66728,51.90488],[99.65217,51.89683],[99.63569,51.89302],[99.62677,51.89429],[99.61853,51.88708],[99.61921,51.88073],[99.61372,51.87861],[99.61372,51.89005],[99.60823,51.89768],[99.59999,51.90361],[99.60136,51.907],[99.59793,51.91928],[99.60342,51.92352],[99.59793,51.92394],[99.59106,51.9286],[99.58282,51.9286],[99.56771,51.93325],[99.55192,51.94765],[99.53887,51.95272],[99.54711,51.9595],[99.53613,51.96415],[99.53064,51.9633],[99.51965,51.96796],[99.51416,51.96119],[99.49974,51.95611],[99.50248,51.95315],[99.50042,51.95146],[99.47639,51.95569],[99.47502,51.9523],[99.46472,51.94849],[99.43794,51.95611],[99.42421,51.95865],[99.41047,51.95315],[99.40155,51.96584],[99.39056,51.96415],[99.39262,51.95823],[99.38919,51.95526],[99.36653,51.95484],[99.3679,51.94087],[99.3576,51.94087],[99.35211,51.94257],[99.34799,51.95019],[99.34249,51.95611],[99.33219,51.95738],[99.32533,51.95569],[99.31434,51.9595],[99.30954,51.95696],[99.29443,51.96076],[99.291,51.96415],[99.27589,51.97007],[99.2704,51.96838],[99.26284,51.97684],[99.26696,51.98065],[99.27795,51.98361],[99.28413,51.98699],[99.26902,51.9946],[99.2704,51.99841],[99.2752,52.00052],[99.27383,52.00897],[99.2807,52.01278],[99.27795,52.01912],[99.26765,52.01869],[99.26216,52.02165],[99.25598,52.01869],[99.25598,52.01151],[99.23606,52.01278],[99.22164,52.02672],[99.20585,52.02799],[99.20311,52.02588],[99.19143,52.03221],[99.17152,52.03559],[99.16053,52.02799],[99.15504,52.02883],[99.15641,52.03137],[99.14405,52.03348],[99.14199,52.02883],[99.13307,52.02376],[99.12277,52.02757],[99.11453,52.03137],[99.10972,52.04151],[99.1056,52.0432],[99.10354,52.0508],[99.08844,52.04911],[99.08157,52.05206],[99.08432,52.0584],[99.08226,52.06304],[99.0747,52.06431],[99.07264,52.06937],[99.06784,52.07106],[99.05822,52.06726],[99.04449,52.06768],[99.02458,52.06557],[99.0184,52.07275],[99.01016,52.07275],[99.00192,52.07655],[99.01016,52.08035],[98.9978,52.0871],[99.00466,52.09258],[98.99917,52.09596],[99.00054,52.09933],[98.99642,52.10566],[98.97995,52.11409],[98.98063,52.12758],[98.97651,52.12843],[98.96827,52.14149],[98.97171,52.14486],[98.96827,52.15118],[98.97239,52.15624],[98.98681,52.15877],[98.98819,52.16508],[98.98338,52.16508],[98.97377,52.17435],[98.96003,52.18235],[98.92227,52.19329],[98.91059,52.20424],[98.88313,52.21349],[98.84742,52.19456],[98.82888,52.19498],[98.81721,52.20255],[98.83575,52.22864],[98.83644,52.24504],[98.8227,52.27446],[98.80897,52.27782],[98.7918,52.27656],[98.76365,52.28118],[98.72451,52.2963],[98.71215,52.29546],[98.69911,52.27992],[98.67095,52.27109],[98.66134,52.27151],[98.65036,52.28748],[98.65104,52.30554],[98.66066,52.33743],[98.6737,52.35211],[98.67782,52.36721],[98.63044,52.41331],[98.638,52.42545],[98.67439,52.43801],[98.70185,52.45684],[98.72863,52.47734],[98.74168,52.49323],[98.76297,52.5066],[98.79798,52.51998],[98.8076,52.52875],[98.833,52.52959],[98.83369,52.54462],[98.7973,52.57718],[98.78768,52.60263],[98.81446,52.61555],[98.83987,52.6168],[98.85498,52.62431],[98.87077,52.62722],[98.87558,52.63681],[98.87077,52.64639],[98.87558,52.65556],[98.92227,52.64764],[98.95179,52.68554],[98.93806,52.70759],[98.95523,52.71508],[98.96072,52.72215],[98.9463,52.75125],[98.95179,52.76663],[98.94767,52.78117],[98.95248,52.79072],[98.95248,52.79861],[98.91197,52.80566],[98.88038,52.80193],[98.8591,52.80234],[98.85429,52.80898],[98.86322,52.81645],[98.8639,52.82683],[98.85772,52.83554],[98.87283,52.86498],[98.90235,52.87659],[98.90579,52.88363],[98.89755,52.89523],[98.91403,52.90724],[98.9257,52.92587],[98.94287,52.93746],[98.96484,52.93291],[98.98201,52.93498],[98.99437,52.92173],[99.01702,52.91055],[99.04037,52.90517],[99.05273,52.89647],[99.0802,52.89109],[99.10217,52.88156],[99.13925,52.87286],[99.15367,52.86664],[99.18251,52.87037],[99.23263,52.8712],[99.24087,52.87534],[99.22851,52.88653],[99.2237,52.90683],[99.22714,52.91966],[99.25666,52.92877],[99.2704,52.93043],[99.26353,52.94036],[99.24911,52.94822],[99.23812,52.95856],[99.22782,52.97469],[99.17427,52.98585],[99.10972,53.00528],[99.01977,53.02345],[98.99505,53.04162],[99.00192,53.05896],[99.02183,53.07051],[99.05273,53.08577],[99.05342,53.09402],[99.02526,53.10185],[98.99642,53.11628],[98.98407,53.12864],[98.96415,53.13194],[98.93325,53.15253],[98.91609,53.15418],[98.90098,53.15253],[98.8948,53.14141],[98.9154,53.12493],[98.84948,53.12905],[98.80897,53.13523],[98.76022,53.15335],[98.74305,53.1583],[98.69842,53.1583],[98.68606,53.14882],[98.67301,53.12947],[98.64967,53.11546],[98.59611,53.10762],[98.55491,53.11051],[98.52951,53.10845],[98.46977,53.10185],[98.44505,53.10185],[98.4272,53.1101],[98.39286,53.09773],[98.3757,53.09649],[98.35166,53.09938],[98.32283,53.1002],[98.30154,53.13565],[98.3036,53.14718],[98.32695,53.16035],[98.32008,53.17188],[98.32695,53.19492],[98.32283,53.22741],[98.29467,53.21507],[98.2624,53.21096],[98.23288,53.23193],[98.19168,53.24672],[98.16902,53.23933],[98.14361,53.23768],[98.08662,53.24755],[98.05709,53.24919],[98.01864,53.25576],[98.00491,53.27753],[97.98088,53.29764],[97.98294,53.31118],[97.99736,53.33087],[97.99049,53.34235],[97.9438,53.35014],[97.90123,53.35055],[97.8305,53.37267],[97.80647,53.37022],[97.75634,53.37513],[97.73437,53.37472],[97.67807,53.3612],[97.65266,53.35997],[97.62588,53.37472],[97.61283,53.37718],[97.60803,53.38332],[97.61421,53.39438],[97.61215,53.4214],[97.60047,53.42999],[97.57919,53.44144],[97.5579,53.44758],[97.52769,53.44717],[97.46658,53.45371],[97.45285,53.46311],[97.44529,53.47783],[97.44804,53.49417],[97.43568,53.5052],[97.40684,53.52684],[97.40409,53.53622],[97.38487,53.55213],[97.33955,53.58068],[97.3114,53.58353],[97.26402,53.59005],[97.25097,53.59658],[97.23106,53.60106],[97.21389,53.61654],[97.19879,53.62305],[97.1878,53.62143],[97.17132,53.61206],[97.15072,53.61409],[97.12532,53.62265],[97.0848,53.65074],[97.05116,53.64504],[97.00515,53.6605],[96.9873,53.67474],[96.98249,53.68532],[96.97425,53.69345],[96.93718,53.70158],[96.90422,53.72352],[96.84173,53.72799],[96.77719,53.72312],[96.76002,53.71987],[96.74697,53.72677],[96.73461,53.72515],[96.70921,53.7093],[96.71333,53.69873],[96.70852,53.67556],[96.69136,53.64708],[96.69204,53.62713],[96.70234,53.62631],[96.7044,53.62143],[96.67488,53.60024],[96.69479,53.58883],[96.66664,53.57456],[96.67007,53.56763],[96.62544,53.55744],[96.60965,53.55988],[96.55677,53.54928],[96.5451,53.55417],[96.52381,53.55581],[96.51145,53.54561],[96.4991,53.54153],[96.47781,53.5252],[96.46133,53.51051],[96.4476,53.50724],[96.43936,53.51622],[96.44073,53.53296],[96.39953,53.54806],[96.3858,53.56356],[96.37619,53.56192],[96.36383,53.56356],[96.37825,53.59005],[96.37756,53.59943],[96.35009,53.60065],[96.27525,53.58027],[96.27388,53.58598],[96.28143,53.59454],[96.2883,53.61491],[96.27594,53.6202],[96.24229,53.61287],[96.23199,53.59209],[96.22993,53.57212],[96.24092,53.55988],[96.24023,53.53337],[96.22924,53.51785],[96.19903,53.51132],[96.14822,53.51336],[96.11045,53.50642],[96.10702,53.49989],[96.1132,53.49172],[96.11526,53.47415],[96.10702,53.45494],[96.06857,53.45739],[96.04385,53.46025],[96.00471,53.4811],[95.99784,53.48968],[95.97518,53.48682],[95.9024,53.50275],[95.86463,53.50315],[95.8358,53.5003],[95.79734,53.50438],[95.73898,53.52479],[95.72868,53.53255],[95.68954,53.5154],[95.66619,53.49907],[95.64422,53.46761],[95.60783,53.45453],[95.55221,53.44389],[95.522,53.44226],[95.50895,53.43367],[95.48767,53.40994],[95.47119,53.40584],[95.44647,53.40421],[95.42793,53.39479],[95.41282,53.37759],[95.39909,53.37513],[95.38604,53.37472],[95.35652,53.38906],[95.3469,53.38414],[95.32562,53.38005],[95.30639,53.38742],[95.30845,53.41567],[95.31463,53.44308],[95.26451,53.46107],[95.23223,53.46556],[95.19241,53.46148],[95.17181,53.45289],[95.14022,53.42017],[95.11619,53.40216],[95.06538,53.39602],[95.03379,53.36776],[95.00358,53.37145],[94.99054,53.38291],[94.99054,53.40175],[94.95414,53.40175],[94.93492,53.39438],[94.92393,53.40093],[94.89578,53.39847],[94.86557,53.39888],[94.8072,53.39356],[94.79141,53.38906],[94.72892,53.37882],[94.70352,53.36817],[94.63966,53.33538],[94.61425,53.3239],[94.59709,53.31323],[94.60121,53.3038],[94.61975,53.29559],[94.66575,53.29025],[94.68017,53.28245],[94.68566,53.26808],[94.69528,53.25864],[94.70764,53.23316],[94.69596,53.22042],[94.6582,53.21179],[94.64721,53.18752],[94.62455,53.18505],[94.60807,53.16529],[94.61013,53.14759],[94.60601,53.13153],[94.58747,53.11381],[94.57374,53.08206],[94.58885,53.05235],[94.57237,53.03006],[94.57305,53.00238],[94.56344,52.9904],[94.52911,52.96766],[94.51606,52.94822],[94.51263,52.91304],[94.50576,52.90144],[94.48997,52.89357],[94.46525,52.89067],[94.40345,52.91428],[94.38491,52.91387],[94.34577,52.89564],[94.31007,52.89896],[94.2881,52.89647],[94.24827,52.87368],[94.16793,52.84093],[94.15008,52.82849],[94.13291,52.78366],[94.13566,52.76787],[94.12811,52.7579],[94.11094,52.75042],[94.08691,52.73213],[94.09721,52.69178],[94.09034,52.68221],[94.07112,52.67013],[94.04914,52.6643],[94.02236,52.65472],[93.98323,52.64306],[93.97224,52.63389],[93.9537,52.62639],[93.94477,52.61514],[93.95851,52.58844],[93.94889,52.57509],[93.89122,52.53877],[93.8301,52.49239],[93.80882,52.46479],[93.78959,52.45391],[93.77105,52.45057],[93.75801,52.43633],[93.75732,52.38901],[93.75114,52.37308],[93.72917,52.35002],[93.69758,52.32568],[93.68042,52.30554],[93.6763,52.28706],[93.65913,52.24377],[93.6708,52.21854],[93.65776,52.20844],[93.58291,52.18403],[93.56987,52.17308],[93.55339,52.17645],[93.5218,52.17814],[93.47099,52.16972],[93.40713,52.13938],[93.37692,52.13222],[93.32611,52.12758],[93.29933,52.10439],[93.26088,52.08203],[93.24165,52.04277],[93.21006,52.03897],[93.18809,52.03264],[93.14758,52.017],[93.12698,51.99587],[93.10981,51.96965],[93.06724,51.94384],[93.03634,51.92521],[93.00201,51.91801],[92.96218,51.91505],[92.94776,51.91166],[92.93472,51.90191],[92.8997,51.88624],[92.88665,51.87437],[92.88253,51.85783],[92.87498,51.84426],[92.84614,51.83577],[92.8276,51.83917],[92.80014,51.85104],[92.78366,51.85444],[92.7452,51.8485],[92.72735,51.85062],[92.69027,51.85486],[92.67723,51.85189],[92.64907,51.82516],[92.63191,51.81201],[92.61955,51.81073],[92.6017,51.81922],[92.58796,51.8171],[92.53715,51.79757],[92.50831,51.80182],[92.49733,51.79884],[92.48909,51.79247],[92.47947,51.79375],[92.46093,51.80436],[92.44583,51.80606],[92.43141,51.80097],[92.39776,51.81413],[92.38472,51.81286],[92.34077,51.81965],[92.3085,51.81837],[92.28378,51.81413],[92.25975,51.82347],[92.23709,51.82304],[92.22679,51.8154],[92.20893,51.80946],[92.18284,51.80564],[92.17392,51.80012],[92.13958,51.79545],[92.11898,51.7912],[92.09564,51.78356],[92.0716,51.77378],[92.05719,51.78525],[92.03384,51.79587],[92.01873,51.79927],[91.99676,51.79587],[91.96174,51.80436],[91.9535,51.80394],[91.93222,51.81922],[91.91299,51.83026],[91.90406,51.84086],[91.89445,51.85529],[91.87797,51.86462],[91.85737,51.86504],[91.83952,51.85868],[91.82991,51.86038],[91.81617,51.87352],[91.79901,51.88454],[91.78596,51.88539],[91.77017,51.8731],[91.75781,51.86716],[91.73172,51.86801],[91.72279,51.87267],[91.69738,51.87013],[91.68434,51.87521],[91.64108,51.87564],[91.60469,51.88412],[91.59713,51.88878],[91.56005,51.90361],[91.52435,51.907],[91.49482,51.89598],[91.47766,51.89047],[91.45637,51.89174],[91.39938,51.89725],[91.35955,51.89302],[91.3005,51.89429],[91.28608,51.89683],[91.2696,51.89302],[91.25381,51.88327],[91.20575,51.90107],[91.18377,51.90318],[91.16867,51.90022],[91.13914,51.92182],[91.09726,51.94299],[91.07666,51.94849],[91.05606,51.94299],[91.0437,51.9468],[90.99975,51.94045],[90.96542,51.93749],[90.94482,51.9286],[90.91529,51.92606],[90.89057,51.91843],[90.85556,51.90149],[90.84732,51.90234],[90.83976,51.90784],[90.83427,51.92944],[90.8329,51.95103],[90.82397,51.965],[90.80955,51.9688],[90.80062,51.97473],[90.79582,51.98403],[90.77865,51.98868],[90.76973,51.99883],[90.76698,52.02419],[90.7608,52.04446],[90.74844,52.06979],[90.72647,52.08372],[90.70106,52.09132],[90.64682,52.09891],[90.60699,52.1103],[90.57815,52.12295],[90.54451,52.14191],[90.53077,52.15582],[90.49507,52.18277],[90.47996,52.18908],[90.46211,52.18908],[90.44769,52.18319],[90.40168,52.18782],[90.3598,52.20634],[90.35224,52.20424],[90.32478,52.18277],[90.30281,52.17224],[90.25955,52.17056],[90.23345,52.16213],[90.18402,52.15329],[90.14694,52.15708],[90.14144,52.14613],[90.14213,52.10987],[90.1538,52.09342],[90.1593,52.07486],[90.13046,52.03897],[90.11535,52.03475],[90.10711,52.02123],[90.08308,52.01193],[90.07415,51.99037],[90.06111,51.98022],[90.03021,51.9743],[90.01579,51.96796],[90.01647,51.95526],[90.02265,51.94468],[90.03776,51.93749],[90.05149,51.93749],[90.06042,51.92902],[90.06042,51.91505],[90.07141,51.90276],[90.06591,51.88878],[90.07141,51.86674],[90.08514,51.84002],[90.10299,51.80606],[90.13252,51.78143],[90.14144,51.75934],[90.12565,51.75169],[90.10299,51.74956],[90.09819,51.74021],[90.08377,51.73638],[90.05836,51.74488],[90.04119,51.74573],[90.0254,51.76019],[90.01098,51.76146],[89.97253,51.75551],[89.92858,51.75509],[89.92172,51.73978],[89.89837,51.72107],[89.87983,51.68915],[89.85099,51.68149],[89.84001,51.66361],[89.81048,51.64231],[89.7995,51.61716],[89.7686,51.60096],[89.70817,51.557],[89.68689,51.54847],[89.65324,51.54163],[89.63882,51.54548],[89.62577,51.54334],[89.61273,51.53181],[89.56741,51.56896],[89.55505,51.56981],[89.54681,51.56853],[89.496,51.58901],[89.45961,51.59413],[89.44381,51.60479],[89.42939,51.60948],[89.36279,51.60096],[89.33807,51.59157],[89.29893,51.56938],[89.29206,51.55572],[89.27833,51.54548],[89.24675,51.54804],[89.24057,51.56255],[89.23851,51.5792],[89.25087,51.60394],[89.25224,51.61247],[89.2646,51.63506],[89.26528,51.64401],[89.25842,51.65083],[89.24675,51.65381],[89.22203,51.65466],[89.21173,51.6585],[89.16915,51.63762],[89.13345,51.63719],[89.12384,51.64273],[89.0895,51.62441],[89.08538,51.59157],[89.01603,51.58389],[88.99887,51.57152],[88.98307,51.57109],[88.95217,51.56341],[88.93089,51.5664],[88.92059,51.56512],[88.89175,51.5664],[88.85467,51.56383],[88.83956,51.56853],[88.82377,51.5664],[88.82171,51.56042],[88.8018,51.55615],[88.79905,51.54249],[88.81485,51.52412],[88.84437,51.51515],[88.85261,51.5019],[88.8581,51.47582],[88.87184,51.46983],[88.89518,51.4694],[88.91647,51.46513],[88.93158,51.44972],[88.96934,51.4326],[89.00436,51.3962],[89.00985,51.38249],[89.00367,51.36792],[88.98719,51.34519],[88.99475,51.33618],[88.99406,51.3143],[88.97277,51.26406],[88.97209,51.25804],[88.95904,51.24558],[88.97483,51.23741],[88.96797,51.22752],[88.96591,51.21849],[88.97003,51.20602],[89.01741,51.18493],[89.03801,51.18321],[89.04762,51.16815],[89.05311,51.12378],[89.03114,51.10309],[89.04075,51.09877],[89.06066,51.07592],[89.06478,51.06383],[89.06478,51.0483],[89.09225,51.04096],[89.10873,51.03966],[89.13345,51.01202],[89.14856,51.00554],[89.1616,51.00381],[89.1925,50.98264],[89.24881,50.92251],[89.26391,50.91645],[89.2749,50.90433],[89.27696,50.8935],[89.28108,50.87964],[89.30786,50.8844],[89.32365,50.88354],[89.35249,50.87704],[89.35592,50.86187],[89.37583,50.86057],[89.40261,50.8493],[89.393,50.83976],[89.38476,50.82719],[89.39231,50.82025],[89.39575,50.81114],[89.42047,50.80159],[89.43008,50.8094],[89.47059,50.78076],[89.47952,50.77077],[89.48158,50.75166],[89.49119,50.73906],[89.5111,50.73037],[89.52896,50.72645],[89.53926,50.7182],[89.55917,50.68732],[89.57084,50.68514],[89.58252,50.65773],[89.59075,50.64859],[89.60311,50.6451],[89.62165,50.64771],[89.64019,50.64771],[89.64981,50.63988],[89.64569,50.6181],[89.65255,50.60241],[89.65393,50.58846],[89.65873,50.58105],[89.66972,50.57277],[89.68551,50.57233],[89.69993,50.57059],[89.72328,50.5719],[89.73907,50.56666],[89.75761,50.55227],[89.77958,50.54659],[89.79881,50.54485],[89.80911,50.53394],[89.82559,50.53263],[89.84344,50.52739],[89.85305,50.5143],[89.85305,50.50032],[89.86335,50.4846],[89.86885,50.46624],[89.86816,50.45138],[89.85443,50.43739],[89.83657,50.43258],[89.82559,50.41289],[89.7892,50.42033],[89.76791,50.4142],[89.75143,50.41201],[89.73289,50.40282],[89.72465,50.39101],[89.71435,50.38575],[89.67933,50.38531],[89.66903,50.37699],[89.62303,50.37743],[89.59281,50.42733],[89.5729,50.43564],[89.54132,50.45225],[89.51385,50.46012],[89.5111,50.45182],[89.50218,50.44569],[89.50424,50.43651],[89.49256,50.41814],[89.48707,50.40151],[89.496,50.3967],[89.50012,50.38444],[89.49943,50.36955],[89.49668,50.35816],[89.4754,50.35422],[89.43901,50.34239],[89.41635,50.33801],[89.39987,50.33888],[89.38819,50.33669],[89.38682,50.32617],[89.39025,50.31697],[89.41841,50.31346],[89.39781,50.30162],[89.39369,50.28933],[89.35455,50.26125],[89.34494,50.24808],[89.34425,50.23798],[89.347,50.22875],[89.3415,50.21645],[89.31816,50.20767],[89.33464,50.20503],[89.37309,50.18129],[89.38545,50.18305],[89.39918,50.18261],[89.40811,50.17865],[89.42527,50.18833],[89.43832,50.19932],[89.4548,50.20019],[89.51248,50.19492],[89.52346,50.18745],[89.52758,50.17645],[89.53582,50.1549],[89.53376,50.13994],[89.52278,50.1307],[89.52484,50.12454],[89.53926,50.11617],[89.56535,50.11221],[89.59144,50.10032],[89.5935,50.08578],[89.58252,50.07741],[89.55986,50.07212],[89.54406,50.06066],[89.53926,50.0342],[89.54956,50.02538],[89.55436,50.01656],[89.57428,50.02097],[89.59968,50.01568],[89.60243,49.99935],[89.61067,49.97639],[89.62234,49.9733],[89.62577,49.97021],[89.60998,49.96491],[89.60586,49.94459],[89.61479,49.94149],[89.60517,49.93177],[89.5935,49.91807],[89.59144,49.91276],[89.60105,49.91144],[89.60998,49.90569],[89.61616,49.90746],[89.62989,49.9048],[89.63401,49.8849],[89.6244,49.88446],[89.61753,49.87915],[89.61479,49.87118],[89.61135,49.86321],[89.62165,49.85879],[89.62165,49.85613],[89.6244,49.85436],[89.62852,49.84551],[89.64431,49.84285],[89.64019,49.83311],[89.64912,49.82868],[89.65255,49.82425],[89.62989,49.81273],[89.62852,49.80697],[89.64981,49.7919],[89.65805,49.79057],[89.66835,49.7817],[89.68002,49.7817],[89.7013,49.78924],[89.7171,49.78747],[89.72396,49.77017],[89.72053,49.7511],[89.71229,49.73468],[89.70886,49.72137],[89.68414,49.70849],[89.67521,49.69384],[89.63745,49.68806],[89.59556,49.68007],[89.58938,49.68007],[89.57428,49.67651],[89.55162,49.68184],[89.51454,49.67651],[89.50012,49.66407],[89.46716,49.66051],[89.45823,49.66407],[89.44381,49.64362],[89.43008,49.63473],[89.43557,49.63295],[89.43557,49.62316],[89.42596,49.62227],[89.41909,49.6156],[89.4033,49.62094],[89.39094,49.61071],[89.37927,49.61026],[89.38888,49.59647],[89.37034,49.59201],[89.36142,49.58356],[89.3518,49.58534],[89.34562,49.58311],[89.33532,49.58311],[89.347,49.5929],[89.33052,49.5978],[89.31678,49.60403],[89.30854,49.6027],[89.30099,49.61204],[89.28176,49.6196],[89.27627,49.62939],[89.25773,49.63695],[89.24881,49.6454],[89.23164,49.64362],[89.2131,49.63606],[89.18563,49.63161],[89.18151,49.61871],[89.20005,49.60403],[89.19044,49.58712],[89.19937,49.58222],[89.20417,49.57109],[89.21585,49.5702],[89.22546,49.56085],[89.23164,49.55105],[89.22889,49.54481],[89.21173,49.53813],[89.20211,49.53011],[89.2028,49.52164],[89.19044,49.51673],[89.17465,49.51763],[89.15267,49.51629],[89.14444,49.50202],[89.12933,49.49756],[89.12178,49.49935],[89.11148,49.49756],[89.10736,49.48909],[89.09294,49.48864],[89.08058,49.48418],[89.04624,49.48284],[89.03595,49.4882],[89.01878,49.48061],[89.01123,49.46633],[88.99955,49.4708],[88.97758,49.46187],[88.96591,49.46366],[88.95561,49.48374],[88.96522,49.4931],[88.95904,49.50113],[88.94256,49.50916],[88.93432,49.51049],[88.93226,49.5154],[88.92746,49.51986],[88.92814,49.52565],[88.93432,49.52788],[88.93364,49.53768],[88.92608,49.54526],[88.90892,49.54615],[88.90068,49.55728],[88.88832,49.55773],[88.86909,49.54748],[88.87664,49.54214],[88.87596,49.52966],[88.88008,49.52119],[88.87733,49.50202],[88.86909,49.49801],[88.85261,49.49578],[88.85261,49.48864],[88.87115,49.48507],[88.87252,49.48017],[88.8842,49.47526],[88.86291,49.46589],[88.84986,49.46723],[88.86016,49.46143],[88.86497,49.45473],[88.85536,49.45295],[88.84025,49.44089],[88.82034,49.44759],[88.82034,49.45205],[88.81279,49.45919],[88.78738,49.4583],[88.77845,49.45473],[88.75099,49.46098],[88.74755,49.45964],[88.74961,49.45696],[88.73725,49.45027],[88.72352,49.45473],[88.71528,49.4525],[88.70498,49.45964],[88.68644,49.46098],[88.6734,49.46544],[88.65898,49.48106],[88.64112,49.49043],[88.63151,49.49221],[88.62602,49.49801],[88.60611,49.49355],[88.60336,49.50202],[88.59718,49.50336],[88.56559,49.49444],[88.55117,49.48329],[88.52371,49.4873],[88.51341,49.48507],[88.49556,49.47214],[88.46603,49.46946],[88.43444,49.47035],[88.4317,49.47615],[88.42483,49.47972],[88.4214,49.48552],[88.40835,49.48953],[88.40286,49.49622],[88.39187,49.48641],[88.38089,49.48552],[88.37677,49.48284],[88.36303,49.4815],[88.35891,49.49043],[88.34793,49.49087],[88.34587,49.49489],[88.339,49.49533],[88.33076,49.48998],[88.32389,49.48998],[88.32733,49.48686],[88.32321,49.48418],[88.3184,49.4757],[88.29574,49.47169],[88.28407,49.4766],[88.26553,49.48017],[88.26553,49.48284],[88.25042,49.47927],[88.24562,49.4815],[88.23669,49.47526],[88.23257,49.47794],[88.2209,49.47927],[88.21609,49.47481],[88.19549,49.46321],[88.19068,49.45652],[88.18382,49.45473],[88.17352,49.45473],[88.16597,49.44536],[88.16665,49.44],[88.17352,49.44],[88.17901,49.43419],[88.17832,49.42392],[88.18656,49.41722],[88.18107,49.4141],[88.17077,49.4141],[88.16597,49.40873],[88.15429,49.40695],[88.14125,49.40159],[88.11859,49.39041],[88.12065,49.38684],[88.11721,49.37879],[88.12408,49.37656],[88.12339,49.37298],[88.13919,49.36896],[88.16047,49.36225],[88.15841,49.35643],[88.16665,49.35062],[88.16528,49.34525],[88.16459,49.34033],[88.15429,49.3372],[88.16459,49.33228],[88.17009,49.32333],[88.16322,49.31751],[88.15773,49.31661],[88.16665,49.30632],[88.16253,49.29915],[88.17009,49.29602],[88.17009,49.29333],[88.15429,49.28617],[88.14605,49.28034],[88.12683,49.27945],[88.12339,49.27273],[88.10691,49.2557],[88.08631,49.2548],[88.08082,49.26063],[88.06434,49.26018],[88.05061,49.25705],[88.05198,49.25256],[88.05748,49.24719],[88.05473,49.23956],[88.03001,49.23284],[88.01696,49.22567],[88.01902,49.22118],[88.01284,49.21849],[88.00529,49.20907],[87.9998,49.20952],[88.00254,49.1992],[87.98881,49.18394],[87.97645,49.18619],[87.96615,49.18349],[87.95585,49.18484],[87.9483,49.18035],[87.93113,49.17945],[87.9277,49.17362],[87.91809,49.17272],[87.90641,49.17721],[87.89268,49.17631],[87.8865,49.17182],[87.87551,49.17227],[87.86041,49.17811],[87.8556,49.17541],[87.83432,49.17631],[87.82264,49.17811],[87.81372,49.16778],[87.78556,49.17452],[87.77801,49.17901],[87.77389,49.17631],[87.77183,49.17227],[87.75123,49.16733],[87.74711,49.17137],[87.73887,49.17631],[87.72514,49.17721],[87.70591,49.17586],[87.69561,49.17586],[87.686,49.17137],[87.68051,49.15925],[87.67089,49.15117],[87.65853,49.15117],[87.64892,49.15341],[87.64068,49.14937],[87.63382,49.14758],[87.62626,49.15072],[87.62077,49.14847],[87.61459,49.14488],[87.60635,49.14937],[87.60154,49.14892],[87.58781,49.14533],[87.58232,49.14129],[87.57614,49.14263],[87.56927,49.14129],[87.56446,49.135],[87.55554,49.14039],[87.54867,49.13949],[87.5418,49.14219],[87.53425,49.13994],[87.52189,49.14443],[87.50953,49.13814],[87.49168,49.13859],[87.49031,49.1332],[87.49168,49.12646],[87.50541,49.11747],[87.50747,49.10534],[87.50198,49.09005],[87.48962,49.086],[87.47726,49.08915],[87.46559,49.08825],[87.46078,49.086],[87.44773,49.08106],[87.43812,49.07251],[87.42782,49.07116],[87.42507,49.07386],[87.40654,49.07611],[87.40448,49.07971],[87.39898,49.08241],[87.39761,49.0869],[87.38319,49.08915],[87.38044,49.09275],[87.36534,49.09635],[87.36259,49.09455],[87.35778,49.09545],[87.3468,49.10309],[87.33238,49.09904],[87.32208,49.10084],[87.32139,49.10489],[87.30491,49.10714],[87.29461,49.11298],[87.28157,49.11882],[87.27676,49.11837],[87.27401,49.11298],[87.26028,49.11568],[87.25067,49.11253],[87.23007,49.11433],[87.22663,49.11882],[87.21427,49.12152],[87.21565,49.12871],[87.1978,49.14263],[87.16896,49.13994],[87.15042,49.14982],[87.10166,49.15162],[87.10166,49.13994],[87.09137,49.13724],[87.08038,49.13185],[87.06596,49.12916],[87.02957,49.13814],[86.99249,49.14308],[86.96571,49.135],[86.93481,49.1323],[86.89704,49.135],[86.87782,49.12826],[86.87576,49.12062],[86.86065,49.11658],[86.84417,49.10084],[86.84692,49.06441],[86.83044,49.05047],[86.7707,49.02706],[86.74736,49.01175],[86.72538,48.98787],[86.73019,48.95091],[86.73774,48.91979],[86.75148,48.89632],[86.77757,48.88864],[86.78581,48.87284],[86.79748,48.87194],[86.81602,48.85613],[86.81877,48.83353],[86.79267,48.81816],[86.76109,48.80505],[86.7501,48.77927],[86.76796,48.75709],[86.77757,48.73672],[86.77139,48.72041],[86.74049,48.69775],[86.72676,48.68506],[86.69998,48.66919],[86.69929,48.65423],[86.68899,48.64788],[86.69174,48.64379],[86.67732,48.63563],[86.63475,48.62655],[86.63406,48.61021],[86.61895,48.59931],[86.59217,48.57524],[86.59698,48.55979],[86.58599,48.5407],[86.40609,48.47883],[86.39579,48.48066],[86.39167,48.4893],[86.37931,48.49294],[86.37725,48.50204],[86.36764,48.50068],[86.36627,48.49385],[86.32438,48.49431],[86.32026,48.48839],[86.29898,48.49067],[86.29692,48.47701],[86.28181,48.47201],[86.27975,48.46199],[86.2722,48.4588],[86.26808,48.45152],[86.2516,48.45288],[86.23512,48.43239],[86.06071,48.43785],[85.91239,48.43694],[85.88836,48.43011],[85.86158,48.43239],[85.82931,48.4251],[85.80734,48.41644],[85.78743,48.41735],[85.75515,48.40367],[85.75309,48.39501],[85.72494,48.36674],[85.71189,48.35944],[85.71395,48.34894],[85.69198,48.33069],[85.69198,48.30192],[85.68031,48.29096],[85.68306,48.27679],[85.65971,48.24068],[85.65216,48.24342],[85.63499,48.23244],[85.62263,48.20454],[85.61164,48.20545],[85.58486,48.19218],[85.58212,48.17203],[85.57113,48.15692],[85.55397,48.1386],[85.56152,48.13172],[85.5574,48.12668],[85.55259,48.12897],[85.54435,48.07945],[85.53611,48.07027],[85.54367,48.05284],[85.53131,48.04412],[85.52787,48.02575],[85.54092,48.01978],[85.54779,48.00738],[85.53817,47.9867],[85.55191,47.98256],[85.63568,47.58671],[85.62881,47.57837],[85.62812,47.55845],[85.61027,47.53528],[85.6089,47.51673],[85.61714,47.49168],[85.64941,47.45455],[85.66383,47.45038],[85.68374,47.43041],[85.68306,47.40578],[85.68786,47.39277],[85.70228,47.37928],[85.69679,47.36766],[85.68855,47.3658],[85.6858,47.33091],[85.67138,47.32113],[85.67413,47.31275],[85.681,47.30856],[85.69885,47.28854],[85.69404,47.27084],[85.67894,47.2508],[85.68855,47.24381],[85.681,47.2205],[85.6652,47.2163],[85.64941,47.20604],[85.6398,47.18504],[85.57525,47.13882],[85.57251,47.12434],[85.58555,47.11359],[85.578,47.11172],[85.57457,47.09396],[85.56633,47.06497],[85.55671,47.05141],[85.54573,47.05328],[85.53337,47.05],[85.50315,47.05515],[85.47981,47.05328],[85.4599,47.06263],[85.41252,47.06076],[85.40634,47.05375],[85.38162,47.04766],[85.34591,47.05421],[85.32325,47.04392],[85.30815,47.05],[85.29991,47.0645],[85.27381,47.06825],[85.27313,47.05655],[85.26351,47.05047],[85.21408,47.05187],[85.19073,47.00975],[85.17631,47.00413],[85.17562,46.9943],[85.16876,46.98727],[85.14679,46.98915],[85.12962,46.98118],[85.12825,46.97697],[85.09803,46.96572],[85.09529,46.95916],[85.07812,46.95776],[85.08361,46.94745],[85.07743,46.93291],[85.06851,46.92729],[85.04928,46.92916],[85.03555,46.92306],[85.00534,46.92588],[84.98268,46.91509],[84.97787,46.89117],[84.97169,46.88788],[84.97856,46.87427],[84.96414,46.87145],[84.96414,46.86676],[84.94285,46.86206],[84.92843,46.87521],[84.91607,46.87849],[84.9147,46.89023],[84.87968,46.9104],[84.85977,46.92729],[84.86183,46.9451],[84.82612,46.95963],[84.81582,46.95776],[84.78286,46.97322],[84.77668,46.99055],[84.75059,47.0046],[84.71008,47.00975],[84.66201,47.00179],[84.6318,46.99477],[84.58374,46.99992],[84.55558,46.9943],[84.54116,46.984],[84.51507,46.97978],[84.50889,46.97556],[84.48486,46.99196],[84.47799,46.98962],[84.46014,46.99289],[84.45465,47.00882],[84.3798,46.99851],[84.32762,47.0032],[84.30015,46.99336],[84.28848,46.99992],[84.23355,47.00086],[84.22462,46.99851],[84.20127,47.00179],[84.16694,46.99477],[84.15664,46.98072],[84.12574,46.96807],[84.05983,46.97228],[84.05571,46.96853],[83.98361,46.9943],[83.9582,46.98259],[83.95477,46.99102],[83.92524,46.98493],[83.92044,46.97509],[83.90396,46.97463],[83.90258,46.98212],[83.871,46.98868],[83.87031,46.99617],[83.83529,46.99477],[83.83804,47.00413],[83.81332,47.01537],[83.79409,47.01771],[83.76525,47.02754],[83.75633,47.02473],[83.74809,47.03129],[83.73848,47.03175],[83.73298,47.02707],[83.71238,47.02427],[83.70689,47.01724],[83.69934,47.01865],[83.69453,47.03643],[83.67942,47.0369],[83.61763,47.0486],[83.60595,47.04626],[83.60458,47.05421],[83.5778,47.0631],[83.5675,47.05702],[83.55926,47.0617],[83.56613,47.079],[83.5263,47.08602],[83.52836,47.09069],[83.51532,47.09583],[83.50776,47.10845],[83.48098,47.10892],[83.48236,47.11686],[83.46382,47.11967],[83.46862,47.12854],[83.45214,47.13181],[83.44253,47.12574],[83.4288,47.12294],[83.4288,47.11593],[83.41301,47.11733],[83.38691,47.14069],[83.38691,47.1491],[83.36563,47.1617],[83.36357,47.17851],[83.35327,47.17477],[83.3361,47.17057],[83.31825,47.17104],[83.28735,47.18224],[83.2846,47.17617],[83.25576,47.17524],[83.23448,47.18037],[83.23791,47.19017],[83.22212,47.18831],[83.20632,47.19904],[83.20426,47.21443],[83.17268,47.2205],[83.15139,47.23449],[83.12736,47.23215],[83.09303,47.22329],[83.08067,47.22796],[83.05114,47.22376],[83.0429,47.21583],[83.03329,47.22423],[83.02436,47.21677],[83.02436,47.18784],[83.0278,47.1645],[83.00926,47.14489],[83.01818,47.14302],[83.01818,47.13228],[83.00239,47.12107],[83.00926,47.11313],[82.99278,47.06497],[82.96943,47.0486],[82.96669,47.03503],[82.95158,47.02146],[82.93922,47.01771],[82.93029,46.9943],[82.92961,46.97275],[82.92137,46.95541],[82.91931,46.92822],[82.89527,46.88553],[82.87124,46.82825],[82.863,46.80005],[82.78747,46.69231],[82.7861,46.68195],[82.77374,46.65933],[82.77442,46.62633],[82.76756,46.59473],[82.73941,46.51682],[82.69271,46.44116],[82.61581,46.30994],[82.56774,46.24207],[82.51281,46.15462],[82.45582,45.97692],[82.42492,45.96737],[82.4105,45.96881],[82.3748,45.96499],[82.33429,45.93825],[82.34184,45.90673],[82.33017,45.88761],[82.34458,45.8398],[82.34664,45.79481],[82.33772,45.78141],[82.31643,45.76369],[82.31094,45.73638],[82.28759,45.70857],[82.28347,45.68603],[82.28416,45.6558],[82.27661,45.6318],[82.25738,45.61691],[82.27111,45.5506],[82.28073,45.53425],[82.44003,45.45964],[82.54165,45.42158],[82.58697,45.34442],[82.58079,45.21977],[82.56019,45.20332],[82.47436,45.17719],[82.45582,45.18687],[82.39334,45.1951],[82.38235,45.2009],[82.36106,45.20187],[82.3233,45.21058],[82.313,45.22074],[82.3027,45.22219],[82.26699,45.24008],[82.24502,45.23331],[82.21344,45.2338],[82.19009,45.22364],[82.15232,45.22316],[82.12554,45.21106],[82.11662,45.20284],[82.1022,45.20187],[82.0816,45.22074],[82.0816,45.23621],[82.08847,45.24685],[82.06581,45.24733],[82.04177,45.25362],[82.03834,45.24637],[81.9944,45.2338],[81.97929,45.23766],[81.97242,45.2338],[81.9429,45.2367],[81.9223,45.22848],[81.88453,45.2802],[81.85501,45.29566],[81.85638,45.30193],[81.83029,45.31594],[81.82823,45.33235],[81.80557,45.35504],[81.79458,45.36034],[81.7678,45.37674],[81.75682,45.37337],[81.73072,45.37385],[81.73347,45.36565],[81.71081,45.35841],[81.69502,45.36951],[81.67648,45.36517],[81.67785,45.35504],[81.65519,45.35069],[81.63185,45.35697],[81.61262,45.34104],[81.59133,45.34008],[81.58241,45.33139],[81.5673,45.32366],[81.57486,45.30966],[81.5316,45.30532],[81.52816,45.29372],[81.51855,45.28116],[81.5007,45.27971],[81.47941,45.27392],[81.45195,45.26183],[81.43615,45.26715],[81.43547,45.27778],[81.42173,45.28455],[81.38809,45.26908],[81.37573,45.25313],[81.36405,45.26038],[81.30638,45.2541],[81.305,45.24588],[81.26998,45.2367],[81.23771,45.24153],[81.23085,45.2483],[81.22055,45.24588],[81.22398,45.23718],[81.20613,45.23573],[81.16699,45.22509],[81.16424,45.20623],[81.13746,45.20961],[81.12991,45.21784],[81.1203,45.21445],[81.10588,45.22171],[81.10107,45.21735],[81.10862,45.19945],[81.08528,45.1951],[81.07429,45.1801],[81.0688,45.17284],[81.05506,45.17719],[81.03584,45.16654],[80.99601,45.1588],[80.95619,45.16848],[80.95207,45.16122],[80.92941,45.15638],[80.89508,45.12489],[80.87585,45.13119],[80.85937,45.12489],[80.83465,45.13991],[80.78865,45.15056],[80.7756,45.14378],[80.74333,45.15976],[80.70556,45.14427],[80.69595,45.13264],[80.68016,45.13361],[80.67466,45.12877],[80.63896,45.11472],[80.62454,45.11859],[80.59776,45.10454],[80.56205,45.11278],[80.51193,45.10745],[80.48927,45.12683],[80.4776,45.11472],[80.46318,45.1123],[80.43846,45.09824],[80.44395,45.08806],[80.44052,45.07691],[80.42541,45.06576],[80.40756,45.05848],[80.40275,45.04878],[80.34919,45.04005],[80.33477,45.05218],[80.32653,45.06964],[80.2922,45.06527],[80.26199,45.05363],[80.24002,45.02743],[80.23384,45.03277],[80.2153,45.02452],[80.20294,45.03083],[80.19264,45.0284],[80.1789,45.04296],[80.17135,45.03859],[80.13908,45.05557],[80.12535,45.03956],[80.11093,45.04684],[80.08758,45.04587],[80.08621,45.03374],[80.09376,45.02986],[80.09719,45.00705],[80.056,45.01336],[80.0457,45.00365],[80.03677,45.00365],[80.01136,44.98228],[79.98802,44.97937],[79.97566,44.96139],[79.96879,44.96674],[79.95643,44.95993],[79.95574,44.9541],[79.94407,44.95216],[79.9427,44.93855],[79.90493,44.92883],[79.88296,44.91181],[79.88639,44.89285],[79.91386,44.90111],[79.93171,44.88895],[79.96604,44.88214],[79.94613,44.86609],[79.94544,44.85148],[79.999,44.82032],[79.99351,44.80084],[79.99557,44.7906],[80.01892,44.79499],[80.03471,44.80473],[80.04707,44.80035],[80.05943,44.80766],[80.09582,44.81399],[80.11299,44.80863],[80.12672,44.82227],[80.14595,44.82568],[80.1535,44.84175],[80.16517,44.84175],[80.16861,44.82665],[80.16243,44.8135],[80.16792,44.80814],[80.1638,44.79986],[80.17204,44.7945],[80.19607,44.76038],[80.19058,44.75258],[80.23864,44.72136],[80.31211,44.70331],[80.33821,44.68964],[80.35057,44.66572],[80.36773,44.65497],[80.39657,44.63152],[80.40962,44.60855],[80.39108,44.59095],[80.39451,44.56796],[80.3849,44.56258],[80.36979,44.52882],[80.36842,44.50532],[80.34713,44.48377],[80.35057,44.46074],[80.36567,44.44162],[80.37666,44.41269],[80.39245,44.31205],[80.40481,44.29436],[80.4055,44.24962],[80.39657,44.19943],[80.40412,44.14279],[80.39314,44.11273],[80.44464,44.07525],[80.45494,44.02935],[80.44876,44.00664],[80.45906,43.97601],[80.48172,43.95773],[80.47347,43.93498],[80.50918,43.9063],[80.51124,43.88205],[80.503,43.87562],[80.51948,43.85631],[80.52154,43.82164],[80.68496,43.57939],[80.75294,43.46587],[80.75637,43.44843],[80.73646,43.43347],[80.73577,43.40953],[80.7344,43.39207],[80.72273,43.3751],[80.70694,43.36412],[80.7035,43.35064],[80.68222,43.33416],[80.6987,43.31768],[80.75294,43.31718],[80.78041,43.30969],[80.77079,43.2937],[80.77285,43.2797],[80.76255,43.2682],[80.78865,43.2382],[80.77972,43.22169],[80.7859,43.20267],[80.80719,43.17764],[80.7962,43.17413],[80.78453,43.14007],[80.7653,43.14558],[80.74264,43.14608],[80.72479,43.13356],[80.71449,43.13456],[80.70419,43.14658],[80.6726,43.14408],[80.66024,43.15059],[80.64308,43.14458],[80.63552,43.14709],[80.62728,43.14057],[80.61424,43.14358],[80.60257,43.13556],[80.58746,43.13707],[80.57373,43.12103],[80.56068,43.11552],[80.54969,43.09847],[80.53665,43.09947],[80.4824,43.07039],[80.457,43.07591],[80.40893,43.05785],[80.39794,43.0453],[80.39176,43.02723],[80.38078,43.02222],[80.39176,42.99711],[80.41442,42.98506],[80.48515,42.94536],[80.55175,42.9333],[80.56961,42.91972],[80.58952,42.91419],[80.59913,42.89608],[80.57991,42.89558],[80.57304,42.88904],[80.55175,42.88653],[80.55038,42.87948],[80.54283,42.88653],[80.52909,42.8825],[80.51055,42.87495],[80.51055,42.88149],[80.49888,42.882],[80.49751,42.87344],[80.4618,42.86388],[80.45906,42.85633],[80.44876,42.86036],[80.42472,42.85432],[80.42198,42.84425],[80.40618,42.82965],[80.39176,42.83871],[80.38078,42.83015],[80.36773,42.83015],[80.35743,42.83267],[80.33821,42.82914],[80.33203,42.82512],[80.32653,42.82914],[80.33065,42.83519],[80.30731,42.8372],[80.29289,42.83317],[80.27847,42.8367],[80.26199,42.82864],[80.25375,42.78179],[80.22354,42.71321],[80.22903,42.69505],[80.20294,42.68798],[80.1741,42.67032],[80.16174,42.6289],[80.17822,42.60313],[80.1789,42.58898],[80.21942,42.53233],[80.23452,42.52727],[80.251,42.52373],[80.26062,42.51563],[80.2771,42.5207],[80.25924,42.50146],[80.2407,42.5045],[80.20774,42.47007],[80.21324,42.45284],[80.205,42.42953],[80.21461,42.42497],[80.21255,42.41382],[80.23452,42.4052],[80.22628,42.3981],[80.24002,42.38847],[80.22834,42.36564],[80.23658,42.34027],[80.2462,42.34078],[80.2613,42.33063],[80.28396,42.31946],[80.25856,42.30372],[80.26336,42.2834],[80.28053,42.28238],[80.29083,42.26257],[80.27984,42.24732],[80.28739,42.24173],[80.28327,42.23309],[80.25306,42.22292],[80.22972,42.21834],[80.2153,42.228],[80.19882,42.22902],[80.17822,42.22139],[80.17959,42.21936],[80.17416,42.21081],[80.1638,42.20766],[80.16311,42.17002],[80.13153,42.16798],[80.13908,42.15627],[80.13771,42.14609],[80.15075,42.13438],[80.15144,42.11707],[80.17204,42.09312],[80.20019,42.07784],[80.22491,42.06458],[80.1995,42.03807],[80.16929,42.03705],[80.13839,42.03144],[80.02441,42.04878],[80.01823,42.04266],[79.9221,42.04215],[79.8809,42.03246],[79.84588,42.0141],[79.84931,41.98093],[79.83627,41.97838],[79.82872,41.96919],[79.81704,41.96714],[79.8191,41.95029],[79.80125,41.93855],[79.80606,41.93037],[79.77172,41.89103],[79.75456,41.90125],[79.63577,41.89307],[79.61929,41.87774],[79.61311,41.86086],[79.54444,41.83989],[79.48265,41.83682],[79.48745,41.84552],[79.46342,41.8537],[79.44488,41.84501],[79.40986,41.83938],[79.3927,41.82403],[79.3721,41.80919],[79.34944,41.79384],[79.32197,41.8097],[79.30755,41.79486],[79.29313,41.78923],[79.27391,41.76465],[79.24781,41.75748],[79.25056,41.74723],[79.22927,41.74057],[79.21623,41.72674],[79.18533,41.72264],[79.16473,41.72776],[79.14276,41.7211],[79.12422,41.72418],[79.11254,41.70419],[79.08233,41.69034],[79.03083,41.67906],[79.02122,41.65906],[78.99169,41.66162],[78.9299,41.64213],[78.90518,41.6139],[78.88595,41.60774],[78.88664,41.59644],[78.87496,41.59439],[78.85231,41.59336],[78.85231,41.57795],[78.82278,41.57384],[78.8166,41.55792],[78.79051,41.56408],[78.74794,41.55432],[78.71154,41.55226],[78.68888,41.53171],[78.70468,41.52143],[78.68888,41.51063],[78.66348,41.49829],[78.64494,41.46948],[78.61816,41.47566],[78.60511,41.46845],[78.58314,41.47051],[78.57902,41.4808],[78.55293,41.47257],[78.53645,41.45816],[78.52889,41.44118],[78.51036,41.43809],[78.50624,41.43294],[78.44924,41.41338],[78.42315,41.41595],[78.40667,41.40771],[78.40118,41.41338],[78.38951,41.41029],[78.38676,41.39329],[78.33526,41.3969],[78.32222,41.38196],[78.31054,41.39123],[78.29956,41.38762],[78.28994,41.39277],[78.2769,41.38917],[78.24531,41.39329],[78.23776,41.39947],[78.2254,41.4005],[78.21579,41.39587],[78.18969,41.39432],[78.15467,41.38093],[78.15536,41.37474],[78.14575,41.3665],[78.15879,41.3397],[78.14987,41.33299],[78.14918,41.32371],[78.13819,41.31288],[78.13751,41.28812],[78.13201,41.28554],[78.1327,41.24787],[78.12377,41.22928],[78.09013,41.22308],[78.0297,41.20139],[78.0146,41.19054],[78.00018,41.19312],[77.97477,41.18072],[77.95967,41.19054],[77.91915,41.18847],[77.88826,41.17813],[77.88208,41.16831],[77.85049,41.15694],[77.81959,41.14195],[77.80311,41.12022],[77.79899,41.09022],[77.8086,41.07417],[77.82371,41.05812],[77.81066,41.04414],[77.79693,41.04828],[77.76672,41.01617],[77.73307,41.0286],[77.7008,41.00633],[77.6596,41.00218],[77.64862,41.01151],[77.62115,41.00529],[77.61154,41.0084],[77.59506,41.00166],[77.58682,41.00218],[77.5827,40.99492],[77.56553,40.99544],[77.55043,41.00322],[77.46597,40.99752],[77.46871,41.01047],[77.47489,41.01462],[77.47009,41.0229],[77.42958,41.02239],[77.41241,41.03378],[77.40074,41.03689],[77.38151,41.0286],[77.37533,41.03948],[77.35611,41.04052],[77.33757,41.02964],[77.31079,41.01928],[77.31079,41.01203],[77.27371,41.00063],[77.26066,41.00477],[77.26203,41.01358],[77.23869,41.01617],[77.24487,41.02446],[77.22908,41.03067],[77.21054,41.02498],[77.18444,41.02394],[77.18307,41.01047],[77.14599,41.01928],[77.13706,41.02653],[77.11853,41.02808],[77.09999,41.03948],[77.10548,41.04777],[77.08763,41.05553],[77.08351,41.06382],[77.06703,41.06019],[77.03819,41.06175],[77.02995,41.05709],[77.01278,41.05709],[77.01278,41.06433],[76.99562,41.07262],[76.96472,41.05812],[76.95854,41.0488],[76.94686,41.03275],[76.92146,41.02342],[76.89674,41.01876],[76.88369,41.02808],[76.86721,41.02031],[76.8473,40.99803],[76.85279,40.97523],[76.81983,40.97782],[76.79786,40.96797],[76.791,40.96071],[76.75392,40.95293],[76.75529,40.93219],[76.73126,40.90002],[76.73812,40.89327],[76.73881,40.87614],[76.72439,40.85381],[76.73263,40.84654],[76.7189,40.84134],[76.72096,40.82264],[76.72782,40.81796],[76.7134,40.8138],[76.70242,40.78834],[76.68594,40.77794],[76.66877,40.78366],[76.66946,40.7769],[76.64268,40.76234],[76.64955,40.71916],[76.67358,40.69365],[76.65367,40.68115],[76.65847,40.66293],[76.64886,40.65772],[76.65435,40.62281],[76.6365,40.61395],[76.61521,40.61447],[76.60491,40.60456],[76.60697,40.59153],[76.59599,40.58006],[76.55822,40.55346],[76.55136,40.53467],[76.53076,40.50962],[76.53968,40.50388],[76.539,40.49134],[76.53694,40.48821],[76.53762,40.46366],[76.50466,40.44537],[76.50535,40.42656],[76.48269,40.42656],[76.47102,40.41611],[76.4566,40.41454],[76.45317,40.40251],[76.44561,40.40147],[76.4463,40.39205],[76.40853,40.38525],[76.38244,40.37636],[76.37832,40.38787],[76.36596,40.38682],[76.35223,40.36485],[76.34056,40.35125],[76.34193,40.34131],[76.33575,40.33817],[76.3179,40.36538],[76.32545,40.38892],[76.31515,40.39415],[76.31103,40.40617],[76.29455,40.40408],[76.27876,40.41245],[76.28768,40.42813],[76.27121,40.43858],[76.25129,40.42029],[76.23138,40.41401],[76.22726,40.4046],[76.17713,40.37898],[76.16752,40.36904],[76.14074,40.36799],[76.12564,40.37427],[76.11396,40.37375],[76.10504,40.37741],[76.0865,40.37689],[76.06727,40.38369],[76.05629,40.37427],[76.04049,40.36904],[76.04736,40.35491],[76.01989,40.35387],[75.99861,40.36747],[75.99655,40.37898],[75.97595,40.38159],[75.95329,40.37427],[75.95878,40.36276],[75.94574,40.3523],[75.94711,40.34235],[75.92376,40.33398],[75.92514,40.32142],[75.93132,40.31409],[75.92994,40.30152],[75.91278,40.29],[75.90797,40.30152],[75.8654,40.31199],[75.85235,40.31147],[75.83244,40.3167],[75.82489,40.32717],[75.80978,40.32456],[75.80497,40.31356],[75.78918,40.3099],[75.77819,40.301],[75.75347,40.30152],[75.74317,40.29576],[75.73493,40.30728],[75.7212,40.29785],[75.71777,40.28633],[75.70266,40.27952],[75.69236,40.28423],[75.68824,40.2989],[75.69992,40.30257],[75.68618,40.32194],[75.68138,40.34549],[75.66284,40.35334],[75.66833,40.37427],[75.67039,40.39624],[75.68138,40.42133],[75.70953,40.44172],[75.70747,40.45269],[75.72051,40.46366],[75.72257,40.47515],[75.69374,40.48247],[75.68756,40.49761],[75.67932,40.50074],[75.66902,40.495],[75.66078,40.50388],[75.64704,40.50544],[75.64018,40.52737],[75.62233,40.54615],[75.62027,40.59779],[75.63194,40.6202],[75.61271,40.63427],[75.6134,40.64365],[75.59486,40.64626],[75.60035,40.66345],[75.56808,40.65407],[75.54405,40.64886],[75.52619,40.63584],[75.48843,40.61916],[75.47813,40.60717],[75.46096,40.60196],[75.44517,40.57954],[75.42938,40.56441],[75.40878,40.55346],[75.38681,40.55189],[75.38131,40.54511],[75.37307,40.54772],[75.34973,40.53624],[75.32638,40.53206],[75.33119,40.52162],[75.2996,40.5044],[75.30098,40.49082],[75.27969,40.47881],[75.25634,40.48038],[75.26046,40.47097],[75.23918,40.46053],[75.23712,40.44747],[75.18562,40.44903],[75.17395,40.45635],[75.15541,40.45635],[75.13687,40.46053],[75.12451,40.45948],[75.09361,40.43597],[75.08468,40.44276],[75.07782,40.44119],[75.06134,40.44747],[75.05172,40.44537],[75.04417,40.45269],[75.0373,40.45112],[75.01739,40.46575],[74.98512,40.45269],[74.91714,40.48508],[74.91989,40.49187],[74.8986,40.49865],[74.87731,40.51275],[74.83955,40.52267],[74.81689,40.50753],[74.81895,40.49239],[74.81483,40.4715],[74.80728,40.45583],[74.78874,40.45478],[74.7956,40.43492],[74.84092,40.40617],[74.84298,40.39624],[74.85534,40.3931],[74.87525,40.36381],[74.90409,40.35439],[74.91233,40.34445],[74.90547,40.34445],[74.90203,40.33869],[74.8883,40.33974],[74.88281,40.33503],[74.86839,40.33293],[74.85946,40.32351],[74.8162,40.34759],[74.78805,40.35387],[74.7647,40.34811],[74.74617,40.35282],[74.73587,40.34549],[74.69123,40.34863],[74.70085,40.33659],[74.70222,40.32299],[74.69261,40.31409],[74.67819,40.29733],[74.68299,40.28947],[74.66171,40.27376],[74.6418,40.27114],[74.62944,40.28319],[74.61639,40.28057],[74.6054,40.28371],[74.58618,40.27952],[74.57931,40.26642],[74.56352,40.25909],[74.56008,40.24861],[74.54429,40.22974],[74.52575,40.21034],[74.49829,40.20457],[74.48387,40.18674],[74.47082,40.18097],[74.46395,40.16628],[74.45091,40.15578],[74.41658,40.13689],[74.40696,40.13584],[74.38842,40.11694],[74.37606,40.11641],[74.36645,40.10486],[74.34173,40.09383],[74.3328,40.09803],[74.31701,40.1017],[74.3122,40.11168],[74.30259,40.11431],[74.29092,40.10538],[74.27925,40.10591],[74.26483,40.12534],[74.25659,40.13269],[74.22981,40.12219],[74.21608,40.12639],[74.17419,40.11536],[74.15771,40.11536],[74.14672,40.10591],[74.12269,40.11116],[74.11033,40.1017],[74.10621,40.08647],[74.09248,40.0891],[74.08905,40.08332],[74.06845,40.07807],[74.05403,40.0933],[74.04167,40.10066],[74.01145,40.07912],[74.01763,40.06966],[74.00322,40.0623],[73.9991,40.04706],[73.98124,40.04811],[73.9524,40.03444],[73.93661,40.03234],[73.9318,40.02498],[73.95103,40.01657],[73.97094,40.01604],[73.97644,40.00605],[73.95721,39.97554],[73.93455,39.95922],[73.90571,39.92026],[73.90777,39.91289],[73.9215,39.90446],[73.91464,39.87549],[73.90228,39.86231],[73.88236,39.86179],[73.88099,39.85282],[73.86245,39.84703],[73.84735,39.83385],[73.83979,39.81117],[73.83979,39.79482],[73.83224,39.78057],[73.83636,39.77002],[73.83842,39.75629],[73.84254,39.75418],[73.84803,39.7584],[73.8652,39.75682],[73.87,39.74573],[73.90296,39.74573],[73.90571,39.73729],[73.92013,39.72567],[73.90914,39.72144],[73.92837,39.70613],[73.92082,39.69662],[73.92356,39.68446],[73.9373,39.65962],[73.94073,39.63319],[73.94691,39.62208],[73.94691,39.59986],[73.9112,39.59087],[73.91395,39.56335],[73.89198,39.55435],[73.87962,39.54164],[73.89335,39.53423],[73.87275,39.51251],[73.87138,39.49874],[73.87687,39.49503],[73.87412,39.48443],[73.84117,39.47436],[73.79447,39.46747],[73.77731,39.46853],[73.7574,39.46217],[73.7162,39.46111],[73.69216,39.46535],[73.68255,39.46323],[73.66951,39.46323],[73.6647,39.47171],[73.65371,39.46906],[73.64135,39.47542],[73.61869,39.46853],[73.61183,39.46217],[73.59947,39.46058],[73.59535,39.45263],[73.59878,39.44467],[73.59123,39.43513],[73.59672,39.42505],[73.58985,39.41126],[73.57406,39.40595],[73.56994,39.398],[73.52462,39.39163],[73.49784,39.37995],[73.52394,39.37252],[73.55346,39.35713],[73.56376,39.34757],[73.54934,39.33748],[73.55346,39.31304],[73.55964,39.3072],[73.55209,39.2902],[73.5363,39.27797],[73.56308,39.27053],[73.5617,39.25086],[73.58505,39.23969],[73.61183,39.24554],[73.63311,39.23012],[73.63174,39.22001],[73.64135,39.2131],[73.64135,39.20352],[73.65371,39.20192],[73.65921,39.19182],[73.66264,39.1652],[73.68667,39.16201],[73.67637,39.14337],[73.70384,39.13645],[73.70864,39.12207],[73.71894,39.11248],[73.71139,39.10289],[73.71894,39.09809],[73.70933,39.07624],[73.7313,39.06451],[73.73748,39.05065],[73.73886,39.03785],[73.75396,39.02451],[73.76564,39.03412],[73.77525,39.02718],[73.78555,39.03198],[73.79035,39.04158],[73.81164,39.04158],[73.83979,39.00851],[73.84254,38.98556],[73.85147,38.953],[73.83705,38.92736],[73.82469,38.91721],[73.80409,38.93217],[73.79241,38.92736],[73.77662,38.94232],[73.76564,38.93858],[73.75465,38.94071],[73.73954,38.92843],[73.73268,38.9108],[73.71894,38.9092],[73.70796,38.89744],[73.70933,38.88568],[73.69697,38.87927],[73.70178,38.86644],[73.69697,38.85254],[73.72993,38.84559],[73.73199,38.83061],[73.77044,38.77389],[73.75465,38.77068],[73.7416,38.73212],[73.7622,38.72194],[73.80409,38.66031],[73.79997,38.64905],[73.80821,38.64154],[73.80065,38.61365],[73.85902,38.58037],[73.89267,38.58574],[73.92356,38.5444],[73.97506,38.53796],[73.99017,38.5256],[74.00871,38.52345],[74.00871,38.53259],[74.04304,38.54333],[74.076,38.5342],[74.08836,38.53903],[74.08767,38.5487],[74.07806,38.55246],[74.06227,38.57608],[74.07325,38.58843],[74.07325,38.61096],[74.11582,38.60989],[74.12063,38.64154],[74.18724,38.64047],[74.25865,38.60131],[74.28337,38.59862],[74.50584,38.47294],[74.61639,38.44767],[74.65278,38.44498],[74.66583,38.4353],[74.69535,38.42562],[74.66583,38.38042],[74.68574,38.33465],[74.69329,38.30933],[74.70703,38.28724],[74.69535,38.26514],[74.69879,38.22793],[74.71183,38.21282],[74.75235,38.21498],[74.77157,38.19556],[74.80178,38.19987],[74.8059,38.17721],[74.79766,38.15561],[74.80728,38.14697],[74.80796,38.13671],[74.81758,38.12915],[74.8217,38.08539],[74.83612,38.07296],[74.84985,38.07512],[74.85672,38.06214],[74.84985,38.04917],[74.86564,38.03835],[74.86496,38.027],[74.88487,38.02159],[74.89379,38.03673],[74.91508,38.02375],[74.91783,38.00968],[74.91302,37.99778],[74.91577,37.97938],[74.90959,37.96747],[74.92126,37.93607],[74.91645,37.9014],[74.93637,37.89707],[74.93568,37.87973],[74.91302,37.85642],[74.92675,37.82822],[74.94461,37.82443],[74.95147,37.80978],[74.98718,37.80544],[75.00984,37.77234],[74.9858,37.75117],[74.96727,37.7528],[74.9604,37.72999],[74.93637,37.7175],[74.92401,37.70446],[74.93156,37.69251],[74.90066,37.67675],[74.89723,37.66099],[74.91165,37.6338],[74.92538,37.62619],[74.92332,37.61531],[74.94049,37.60063],[74.93019,37.58594],[74.93431,37.57723],[74.93225,37.57124],[74.94461,37.55655],[74.95353,37.55437],[74.95353,37.54675],[74.97207,37.53804],[75.01052,37.52388],[75.03524,37.50155],[75.05172,37.51027],[75.05996,37.52552],[75.084,37.49665],[75.08125,37.49392],[75.0888,37.48575],[75.09498,37.48575],[75.10185,37.47322],[75.11146,37.47376],[75.12451,37.46395],[75.12519,37.4476],[75.13481,37.44379],[75.15129,37.4078],[75.12863,37.39798],[75.12451,37.38543],[75.11627,37.38598],[75.09292,37.37179],[75.12107,37.33904],[75.12794,37.31611],[75.10871,37.31392],[75.09567,37.3172],[75.06958,37.31229],[75.05447,37.30191],[75.0428,37.30573],[75.0167,37.29372],[74.98031,37.28771],[74.96933,37.29044],[74.96383,37.28825],[74.95147,37.29153],[74.91165,37.27405],[74.91714,37.26148],[74.91233,37.24727],[74.91783,37.24454],[74.91508,37.23415],[74.88967,37.2336],[74.8883,37.22868],[74.88899,37.22267],[74.88006,37.22048],[74.87182,37.22486],[74.86496,37.22267],[74.85878,37.2254],[74.85466,37.21939],[74.83474,37.21884],[74.82994,37.21501],[74.80796,37.21556],[74.80384,37.2265],[74.79972,37.22923],[74.80178,37.23688],[74.79835,37.24618],[74.79217,37.24891],[74.7805,37.25164],[74.77844,37.26039],[74.76333,37.26749],[74.75029,37.28334],[74.73793,37.28661],[74.72488,37.28224],[74.71527,37.28224],[74.70359,37.26749],[74.68849,37.2664],[74.67681,37.25437],[74.66514,37.24126],[74.66651,37.23798],[74.65896,37.23306],[74.64454,37.24071],[74.6466,37.25164],[74.62944,37.26421],[74.61639,37.25437],[74.59442,37.25984],[74.5903,37.25602],[74.5903,37.24508],[74.58412,37.23579],[74.55184,37.2429],[74.54292,37.25055],[74.53605,37.24235],[74.5182,37.24399],[74.50035,37.23962],[74.4976,37.22868],[74.50172,37.22212],[74.49829,37.21884],[74.49623,37.21119],[74.48455,37.20845],[74.48181,37.20298],[74.47219,37.20189],[74.46876,37.19642],[74.477,37.18767],[74.48112,37.18931],[74.48249,37.18329],[74.49073,37.17892],[74.48661,37.17563],[74.48661,37.16469],[74.46945,37.15922],[74.47288,37.15101],[74.46327,37.14499],[74.45777,37.14663],[74.45571,37.1428],[74.46121,37.13021],[74.47769,37.12145],[74.49142,37.11762],[74.49142,37.1105],[74.48387,37.09571],[74.49623,37.09078],[74.49829,37.07764],[74.49485,37.06613],[74.49829,37.06175],[74.50859,37.06284],[74.50927,37.06997],[74.51339,37.07764],[74.52644,37.07983],[74.53811,37.06449],[74.53468,37.0612],[74.53605,37.05572],[74.53262,37.05079],[74.55459,37.04531],[74.56558,37.03161],[74.58137,37.03215],[74.62463,37.04695],[74.62394,37.05956],[74.63768,37.06832],[74.65141,37.06997],[74.66102,37.08038],[74.70085,37.08366],[74.70634,37.07544],[74.70771,37.06504],[74.72282,37.05627],[74.71595,37.03818],[74.72282,37.03489],[74.72694,37.02558],[74.73861,37.02174],[74.76333,37.02503],[74.77569,37.02064],[74.77775,37.02558],[74.79217,37.02996],[74.79148,37.04257],[74.79972,37.05298],[74.82238,37.05298],[74.83543,37.05901],[74.84092,37.05736],[74.84092,37.0464],[74.84573,37.02777],[74.83818,37.01845],[74.84916,37.00913],[74.86427,36.98061],[74.88143,36.95922],[74.88143,36.95263],[74.88693,36.94495],[74.88418,36.93617],[74.89173,36.93287],[74.89723,36.93562],[74.90684,36.93068],[74.91302,36.93397],[74.91989,36.93397],[74.91645,36.94495],[74.93087,36.94659],[74.93156,36.95428],[74.92263,36.96086],[74.91714,36.97842],[74.93087,36.98171],[74.94323,36.98884],[74.95765,36.98719],[74.97413,36.99706],[74.98443,36.98993],[74.99473,36.99158],[75.00091,37.0009],[75.0119,37.0009],[75.02632,37.01626],[75.0428,37.01461],[75.0428,37.00748],[75.05722,37.002],[75.07301,37.002],[75.08125,37.00803],[75.10597,37.01187],[75.11283,37.00693],[75.11627,37.01022],[75.12657,37.01351],[75.13,37.02229],[75.14167,37.02777],[75.15335,37.01626],[75.16433,37.01626],[75.16777,37.00858],[75.15815,36.99816],[75.15953,36.98774],[75.16983,36.98555],[75.18013,36.97842],[75.19592,36.97293],[75.20004,36.97677],[75.21583,36.97074],[75.2172,36.96635],[75.23574,36.95867],[75.2687,36.96854],[75.27076,36.97129],[75.27625,36.97183],[75.29067,36.97513],[75.30784,36.96525],[75.31471,36.97019],[75.32226,36.95976],[75.35934,36.95592],[75.37445,36.94659],[75.39299,36.95044],[75.39299,36.95428],[75.39917,36.95537],[75.40741,36.94659],[75.40603,36.93672],[75.38681,36.92903],[75.39024,36.92025],[75.38475,36.90433],[75.40947,36.8917],[75.41976,36.89005],[75.41976,36.87962],[75.43075,36.83456],[75.42388,36.82082],[75.42388,36.80928],[75.41908,36.79883],[75.42663,36.79224],[75.42045,36.77244],[75.42938,36.75979],[75.43487,36.75924],[75.43418,36.75098],[75.44517,36.74383],[75.45272,36.72292],[75.46714,36.71687],[75.47607,36.72347],[75.48706,36.72952],[75.49873,36.73943],[75.5104,36.72622],[75.53237,36.72182],[75.53787,36.73613],[75.52757,36.75649],[75.53306,36.76034],[75.53306,36.77189],[75.55091,36.77079],[75.56739,36.77574],[75.57014,36.76804],[75.58799,36.76969],[75.62233,36.76969],[75.63194,36.76639],[75.63743,36.77079],[75.68481,36.76034],[75.69786,36.74768],[75.71228,36.74713],[75.71845,36.75318],[75.74867,36.73888],[75.76583,36.72457],[75.7933,36.71191],[75.80223,36.71136],[75.81253,36.69815],[75.82832,36.69099],[75.84754,36.67392],[75.86471,36.67117],[75.88874,36.63812],[75.91003,36.6304],[75.9423,36.59678],[75.92514,36.56921],[75.9375,36.55929],[75.95397,36.53722],[75.97114,36.51515],[75.98487,36.50577],[75.9938,36.48866],[76.00616,36.47651],[76.02813,36.41907],[76.03569,36.40912],[76.02813,36.39973],[76.02676,36.39254],[76.00341,36.38149],[75.99449,36.35716],[75.98693,36.35218],[75.98487,36.34333],[75.99517,36.32729],[75.99517,36.30682],[76.01783,36.29963],[76.02607,36.27029],[76.03843,36.2631],[76.05697,36.24427],[76.06246,36.22599],[76.04873,36.22378],[76.03637,36.22655],[76.03157,36.23596],[76.00479,36.23208],[76.00685,36.20106],[76.01165,36.19607],[76.00135,36.18444],[76.03088,36.17557],[76.01234,36.1728],[75.98968,36.16393],[75.96977,36.16337],[75.96359,36.15838],[75.96839,36.14951],[75.93475,36.13621],[75.93269,36.12789],[75.95054,36.11347],[75.93818,36.1057],[75.94574,36.09738],[75.94436,36.08795],[75.95535,36.08073],[75.94093,36.07352],[75.95329,36.06464],[75.9478,36.06131],[75.95809,36.04521],[75.9835,36.03188],[75.99655,36.01911],[76.02195,36.01633],[76.02951,36.02355],[76.04599,36.02411],[76.0865,36.023],[76.10298,36.01356],[76.09886,36.008],[76.09886,35.99856],[76.11328,35.96855],[76.13456,35.95522],[76.14624,35.93187],[76.15928,35.92019],[76.14967,35.8935],[76.1531,35.8807],[76.1483,35.87458],[76.15379,35.86623],[76.15173,35.859],[76.14074,35.85121],[76.14418,35.83785],[76.16821,35.82171],[76.17851,35.82393],[76.19842,35.82338],[76.22039,35.83006],[76.22177,35.84119],[76.2973,35.84342],[76.30966,35.83228],[76.31927,35.83451],[76.36047,35.82672],[76.35223,35.85455],[76.36871,35.86345],[76.42776,35.85232],[76.46484,35.88793],[76.51428,35.88126],[76.54724,35.90351],[76.54586,35.93131],[76.58432,35.91908],[76.5953,35.90017],[76.57196,35.86902],[76.5802,35.86234],[76.58981,35.84342],[76.56234,35.82338],[76.59668,35.77325],[76.61521,35.76155],[76.64199,35.77047],[76.64955,35.75932],[76.69006,35.75097],[76.69692,35.72533],[76.75598,35.68184],[76.75941,35.66343],[76.7752,35.65952],[76.78344,35.6612],[76.80679,35.66566],[76.81434,35.67012],[76.82189,35.66733],[76.83906,35.66901],[76.84387,35.67459],[76.85417,35.66789],[76.85966,35.65115],[76.90223,35.61934],[76.93244,35.61153],[76.95854,35.59534],[76.96609,35.59478],[76.97296,35.60036],[76.98326,35.59869],[76.99493,35.60874],[77.01072,35.61041],[77.02858,35.60092],[77.06153,35.60092],[77.09106,35.5663],[77.11235,35.56351],[77.12127,35.55736],[77.12882,35.55569],[77.14668,35.53893],[77.16659,35.53781],[77.19268,35.52272],[77.21466,35.52272],[77.22564,35.53055],[77.25036,35.53166],[77.26272,35.53893],[77.27302,35.53669],[77.2998,35.54396],[77.33688,35.52663],[77.341,35.50428],[77.35542,35.49533],[77.36297,35.4998],[77.3719,35.49645],[77.37121,35.48974],[77.3822,35.47297],[77.39593,35.47073],[77.40829,35.47353],[77.42477,35.46961],[77.444,35.46122],[77.50099,35.48974],[77.51815,35.48583],[77.52571,35.48471],[77.53601,35.48862],[77.54287,35.48471],[77.55867,35.48807],[77.58132,35.47968],[77.57926,35.46961],[77.593,35.46458],[77.60604,35.47185],[77.63076,35.46234],[77.64175,35.46738],[77.63832,35.47856],[77.63832,35.48303],[77.65342,35.48527],[77.67059,35.46794],[77.67952,35.46402],[77.68775,35.45339],[77.69737,35.46402],[77.71865,35.46122],[77.74337,35.49533],[77.75573,35.49869],[77.75848,35.50372],[77.78114,35.49757],[77.78251,35.5054],[77.79968,35.50931],[77.80311,35.52049],[77.8141,35.5216],[77.8553,35.4903],[77.86216,35.50148],[77.87864,35.48974],[77.87864,35.4808],[77.91091,35.4629],[77.92121,35.48303],[77.91778,35.4903],[77.92396,35.49757],[77.93563,35.49086],[77.94593,35.47912],[77.95486,35.48359],[77.96722,35.48136],[77.96928,35.49701],[78.00087,35.49254],[78.0091,35.48192],[78.02421,35.4685],[78.0352,35.47241],[78.03863,35.48639],[78.05305,35.49086],[78.0661,35.48639],[78.07296,35.49533],[78.08258,35.49198],[78.08738,35.48695],[78.11965,35.48024],[78.10935,35.46905],[78.10523,35.44724],[78.10798,35.44053],[78.09356,35.42374],[78.05442,35.40248],[78.04412,35.37841],[78.0249,35.36161],[78.00979,35.30055],[78.01185,35.27309],[78.00293,35.24057],[78.01528,35.21757],[78.0249,35.21477],[78.02833,35.20467],[78.03863,35.20074],[78.0558,35.17829],[78.0661,35.17437],[78.08601,35.17661],[78.09013,35.16595],[78.10317,35.16763],[78.10592,35.16202],[78.10043,35.13507],[78.10386,35.11934],[78.11279,35.11597],[78.11416,35.1053],[78.13339,35.09631],[78.13201,35.09182],[78.14506,35.07159],[78.13339,35.06035],[78.13682,35.05192],[78.12171,35.04686],[78.11554,35.03561],[78.14231,35.01031],[78.15673,34.99062],[78.17665,34.98556],[78.20274,34.9715],[78.20137,34.95293],[78.18489,34.94111],[78.1739,34.93942],[78.20617,34.90339],[78.20411,34.89212],[78.22334,34.88874],[78.23776,34.88086],[78.22952,34.85438],[78.23638,34.84311],[78.22746,34.81098],[78.23295,34.79914],[78.22677,34.77207],[78.2151,34.76812],[78.20549,34.75289],[78.20274,34.73371],[78.21098,34.71847],[78.27209,34.69984],[78.2769,34.68121],[78.27415,34.67105],[78.26179,34.66484],[78.26797,34.65241],[78.27072,34.6332],[78.28857,34.61512],[78.32908,34.6106],[78.33526,34.60325],[78.38333,34.60778],[78.40873,34.59647],[78.43002,34.59138],[78.43139,34.57329],[78.42727,34.55916],[78.43689,34.54219],[78.44512,34.54389],[78.45817,34.56877],[78.47808,34.56934],[78.4774,34.57895],[78.498,34.58291],[78.51379,34.57386],[78.53164,34.57895],[78.55018,34.57216],[78.55842,34.55633],[78.55911,34.53993],[78.55499,34.53371],[78.56117,34.52805],[78.55636,34.5207],[78.56254,34.51221],[78.58108,34.50542],[78.59001,34.50825],[78.59275,34.52862],[78.61404,34.53936],[78.62503,34.53767],[78.64563,34.55124],[78.64563,34.53993],[78.6882,34.52862],[78.70742,34.52749],[78.71498,34.50203],[78.76098,34.48109],[78.75618,34.47429],[78.75686,34.46637],[78.73695,34.45788],[78.75892,34.44768],[78.76304,34.44089],[78.7754,34.43692],[78.78227,34.44146],[78.80561,34.43523],[78.81935,34.42107],[78.84819,34.41767],[78.88046,34.39161],[78.91067,34.38197],[78.91754,34.38651],[78.93402,34.37971],[78.94775,34.38934],[78.96492,34.38707],[78.96217,34.37234],[78.99032,34.35364],[79.04457,34.32812],[79.03495,34.31792],[78.98002,34.31224],[78.98551,34.29977],[78.96766,34.27821],[78.96148,34.23678],[78.95118,34.22599],[78.945,34.22599],[78.9244,34.17204],[78.92578,34.1567],[78.9093,34.15159],[78.90998,34.14193],[78.90518,34.14193],[78.89968,34.14704],[78.88458,34.15102],[78.87565,34.16409],[78.86261,34.16636],[78.8578,34.14306],[78.84063,34.14193],[78.82827,34.12431],[78.79325,34.13681],[78.7857,34.1209],[78.74519,34.0919],[78.71566,34.0919],[78.70742,34.09361],[78.693,34.0919],[78.69644,34.08508],[78.68202,34.07882],[78.67103,34.09361],[78.65661,34.07598],[78.66554,34.07029],[78.65524,34.0555],[78.65593,34.03445],[78.66828,34.03046],[78.67378,34.02648],[78.68957,34.02364],[78.70124,34.02648],[78.70742,34.01851],[78.72734,34.01567],[78.7294,34.00884],[78.74244,34.00087],[78.73626,33.95589],[78.7294,33.92285],[78.76442,33.91373],[78.76167,33.89036],[78.75137,33.88352],[78.76647,33.83277],[78.75343,33.78428],[78.76579,33.77344],[78.76373,33.76145],[78.77677,33.74546],[78.7651,33.72548],[78.71772,33.62319],[78.75686,33.62605],[78.75206,33.60947],[78.74176,33.60203],[78.74244,33.57801],[78.73283,33.57],[78.77059,33.52651],[78.78364,33.5059],[78.81385,33.48299],[78.81248,33.47326],[78.82003,33.45665],[78.83514,33.43717],[78.83789,33.42456],[78.85368,33.41596],[78.89076,33.41482],[78.90518,33.40966],[78.91136,33.39819],[78.93676,33.38673],[78.94088,33.38042],[78.94706,33.37813],[78.95393,33.37125],[78.9505,33.36437],[78.95736,33.35806],[78.95393,33.35461],[78.96217,33.33856],[78.97727,33.33339],[78.98071,33.32708],[78.9965,33.32536],[79.00337,33.32766],[79.01229,33.32307],[79.02053,33.32593],[79.02671,33.32077],[79.02465,33.31331],[79.02946,33.30815],[79.0377,33.30757],[79.03221,33.29437],[79.04045,33.29036],[79.03358,33.2783],[79.04594,33.25993],[79.05281,33.26165],[79.06104,33.25591],[79.08027,33.24443],[79.06791,33.23868],[79.07272,33.22318],[79.08508,33.2203],[79.10362,33.20651],[79.10636,33.19962],[79.1249,33.20192],[79.15306,33.18296],[79.16404,33.19158],[79.17434,33.20422],[79.17434,33.20939],[79.18121,33.21169],[79.18464,33.2203],[79.19494,33.21743],[79.20112,33.20939],[79.20867,33.21341],[79.21554,33.23811],[79.23065,33.23351],[79.23957,33.23351],[79.25262,33.21686],[79.25811,33.21628],[79.27116,33.22088],[79.27322,33.21284],[79.28764,33.20422],[79.29725,33.20307],[79.30137,33.19215],[79.32472,33.18928],[79.33433,33.20537],[79.35836,33.19847],[79.37965,33.1979],[79.38446,33.20307],[79.40368,33.19502],[79.41261,33.17893],[79.40918,33.16916],[79.39613,33.17031],[79.3927,33.15594],[79.40025,33.14962],[79.40094,33.13985],[79.38926,33.13985],[79.36592,33.10419],[79.36866,33.08463],[79.35974,33.06852],[79.35905,33.06047],[79.34669,33.06047],[79.33639,33.05414],[79.32815,33.03342],[79.33845,33.02766],[79.34188,33.01327],[79.33845,33.00232],[79.33158,33.0006],[79.34463,32.98044],[79.35493,32.97756],[79.36317,32.96258],[79.35287,32.95452],[79.36386,32.93781],[79.37896,32.9453],[79.40094,32.94357],[79.39132,32.91763],[79.41055,32.90495],[79.42565,32.89284],[79.45243,32.88823],[79.45449,32.87958],[79.46205,32.88189],[79.47235,32.87843],[79.47303,32.84728],[79.45999,32.83575],[79.46823,32.82998],[79.47029,32.82132],[79.48059,32.81093],[79.48059,32.79939],[79.50599,32.78496],[79.54376,32.77341],[79.5417,32.76302],[79.54925,32.76533],[79.55612,32.76071],[79.55406,32.75321],[79.54788,32.74801],[79.54444,32.73068],[79.54925,32.72202],[79.55749,32.72028],[79.56092,32.71451],[79.552,32.70411],[79.54238,32.70757],[79.53964,32.68388],[79.54788,32.67695],[79.52522,32.65151],[79.49981,32.64168],[79.49638,32.63127],[79.48745,32.62896],[79.47853,32.6174],[79.46823,32.6174],[79.46136,32.60641],[79.45243,32.60467],[79.42771,32.55896],[79.43389,32.55028],[79.43115,32.53928],[79.41604,32.54276],[79.41673,32.53002],[79.41124,32.51786],[79.39888,32.52597],[79.36317,32.53176],[79.35493,32.52539],[79.33296,32.54218],[79.34051,32.5526],[79.32952,32.56417],[79.32128,32.55781],[79.31098,32.5607],[79.30755,32.55086],[79.29245,32.54102],[79.28489,32.54623],[79.28215,32.55144],[79.27597,32.55665],[79.26567,32.53755],[79.25674,32.53639],[79.24919,32.51613],[79.22378,32.52423],[79.22172,32.50918],[79.18739,32.51613],[79.18258,32.4976],[79.15786,32.49644],[79.14962,32.47675],[79.13177,32.4808],[79.1304,32.46979],[79.11941,32.45705],[79.11872,32.43503],[79.12902,32.42054],[79.11392,32.41764],[79.10087,32.39503],[79.10362,32.37474],[79.10018,32.36836],[79.08714,32.37242],[79.0789,32.38112],[79.05967,32.38692],[79.02946,32.37996],[79.02259,32.38286],[78.99032,32.3701],[78.96972,32.33413],[78.93882,32.3585],[78.91067,32.36894],[78.90312,32.38112],[78.90449,32.38923],[78.8935,32.40025],[78.88114,32.39677],[78.86947,32.413],[78.84338,32.41127],[78.83308,32.41764],[78.83308,32.42865],[78.81591,32.43155],[78.80767,32.44082],[78.796,32.47501],[78.78021,32.48022],[78.77952,32.51555],[78.76853,32.52597],[78.76922,32.53928],[78.75755,32.56475],[78.76098,32.57864],[78.77334,32.58269],[78.78089,32.61566],[78.77471,32.61971],[78.76853,32.63185],[78.75137,32.64226],[78.75137,32.64631],[78.7397,32.66192],[78.74862,32.68966],[78.73832,32.69544],[78.72459,32.67463],[78.67172,32.65729],[78.66416,32.65729],[78.64151,32.64284],[78.63395,32.64573],[78.63121,32.6359],[78.64082,32.61103],[78.61061,32.6012],[78.58039,32.60409],[78.57559,32.61335],[78.54812,32.62086],[78.54331,32.61161],[78.51585,32.61566],[78.51654,32.6012],[78.50074,32.58211],[78.49044,32.58558],[78.47808,32.57517],[78.45405,32.58153],[78.4465,32.57401],[78.41491,32.56764],[78.395,32.53755],[78.39637,32.52771],[78.40942,32.52481],[78.42865,32.5057],[78.42521,32.49586],[78.45542,32.47095],[78.45062,32.45937],[78.4616,32.45589],[78.46366,32.44488],[78.47259,32.44256],[78.46984,32.39445],[78.45405,32.38923],[78.46504,32.37358],[78.46984,32.36314],[78.4822,32.36488],[78.48495,32.35386],[78.4774,32.32601],[78.49662,32.32485],[78.51104,32.30338],[78.4877,32.27668],[78.49388,32.27029],[78.4877,32.26681],[78.49182,32.261],[78.48426,32.25462],[78.48289,32.24881],[78.47396,32.24358],[78.47465,32.23487],[78.45062,32.23022],[78.44444,32.21512],[78.42865,32.21222],[78.43551,32.19537],[78.44101,32.19478],[78.4465,32.18374],[78.44238,32.17735],[78.44993,32.15875],[78.44444,32.15236],[78.45542,32.14538],[78.45542,32.13433],[78.46641,32.12968],[78.49182,32.14073],[78.49868,32.14887],[78.50898,32.14945],[78.51585,32.1355],[78.53095,32.11165],[78.56597,32.0942],[78.56803,32.08024],[78.58039,32.07152],[78.58108,32.05231],[78.57078,32.04358],[78.5749,32.03078],[78.58932,32.02496],[78.60168,32.02728],[78.65524,32.00458],[78.70262,31.99177],[78.71841,31.97895],[78.73558,31.9673],[78.73695,31.95565],[78.76785,31.94575],[78.76785,31.92827],[78.75961,31.92535],[78.74382,31.90146],[78.74656,31.89213],[78.74107,31.8863],[78.74931,31.88163],[78.75068,31.86939],[78.74313,31.86239],[78.74382,31.85481],[78.73352,31.83089],[78.70262,31.80756],[78.70605,31.77371],[78.72596,31.75794],[78.7342,31.72407],[78.74244,31.71765],[78.74656,31.70246],[78.75412,31.69604],[78.7548,31.68844],[78.74931,31.68552],[78.75343,31.67792],[78.76647,31.67325],[78.79806,31.6826],[78.80149,31.67734],[78.79737,31.65805],[78.80905,31.63935],[78.82072,31.63876],[78.82896,31.62532],[78.84201,31.62298],[78.84819,31.60836],[78.84063,31.59783],[78.83239,31.59842],[78.82209,31.57795],[78.8063,31.57736],[78.80424,31.56508],[78.78021,31.55513],[78.7754,31.54518],[78.76098,31.54986],[78.75206,31.5405],[78.73077,31.53348],[78.72665,31.51416],[78.72047,31.50831],[78.72665,31.48313],[78.74313,31.48079],[78.74725,31.48547],[78.76716,31.47259],[78.77815,31.45151],[78.79806,31.44565],[78.79463,31.4351],[78.78776,31.43452],[78.75412,31.38588],[78.75755,31.37298],[78.74931,31.36712],[78.76991,31.34835],[78.76442,31.34073],[78.77403,31.33017],[78.76785,31.32724],[78.77883,31.32079],[78.77746,31.31199],[78.79119,31.30319],[78.81317,31.30847],[78.81591,31.30026],[78.83789,31.2938],[78.85643,31.2938],[78.85711,31.30026],[78.85025,31.31023],[78.86055,31.31551],[78.87153,31.30788],[78.88252,31.28559],[78.90106,31.29028],[78.89762,31.30436],[78.91067,31.30847],[78.91754,31.31434],[78.91822,31.32079],[78.92921,31.33135],[78.93127,31.34249],[78.93951,31.34601],[78.94569,31.36595],[78.96904,31.35656],[78.98071,31.36243],[78.99032,31.35422],[78.98551,31.34777],[79.00062,31.34132],[79.01847,31.3466],[79.0171,31.35832],[79.01023,31.38412],[79.01847,31.38998],[79.01504,31.41108],[79.01847,31.4269],[79.04525,31.43452],[79.05006,31.42456],[79.06928,31.43803],[79.06791,31.45092],[79.07478,31.46029],[79.08165,31.45151],[79.09881,31.45444],[79.11941,31.4392],[79.14207,31.43276],[79.16542,31.39819],[79.17366,31.39701],[79.1764,31.38588],[79.16816,31.37298],[79.16954,31.36301],[79.21348,31.35363],[79.23545,31.33604],[79.22515,31.32783],[79.22241,31.31316],[79.22996,31.30495],[79.24987,31.29615],[79.24644,31.27503],[79.22653,31.26153],[79.26017,31.23922],[79.28558,31.23805],[79.29313,31.22454],[79.29931,31.21926],[79.3103,31.1517],[79.3309,31.1329],[79.36111,31.12232],[79.37828,31.11467],[79.39201,31.11761],[79.40849,31.11409],[79.41741,31.09469],[79.41398,31.0741],[79.41879,31.06881],[79.41879,31.04764],[79.42909,31.0241],[79.45518,31.03116],[79.47441,31.03528],[79.50805,31.03116],[79.50736,31.01704],[79.51629,31.01233],[79.51698,30.99762],[79.54101,30.97819],[79.55337,30.95818],[79.56573,30.95405],[79.56848,30.94934],[79.58908,30.94699],[79.60281,30.93933],[79.61723,30.94463],[79.62135,30.95052],[79.66529,30.96583],[79.66392,30.9829],[79.69963,30.97113],[79.73465,30.97878],[79.74975,31.00586],[79.77722,30.99173],[79.8294,30.97289],[79.86373,30.97407],[79.87472,30.96465],[79.88983,30.91872],[79.91317,30.91165],[79.93103,30.87394],[79.96124,30.88808],[80.03402,30.84093],[80.0505,30.83739],[80.08071,30.81498],[80.08895,30.79375],[80.11917,30.77959],[80.14938,30.79021],[80.15899,30.80673],[80.1741,30.80909],[80.19744,30.77251],[80.19332,30.75835],[80.21392,30.75009],[80.2359,30.75953],[80.25238,30.73947],[80.24551,30.71704],[80.23178,30.70878],[80.23178,30.68634],[80.20019,30.69106],[80.19332,30.6639],[80.22216,30.63791],[80.21118,30.5859],[80.25512,30.56817],[80.31555,30.56344],[80.34301,30.52086],[80.37048,30.52796],[80.38421,30.51849],[80.41442,30.52677],[80.45425,30.49483],[80.49957,30.48536],[80.54763,30.4463],[80.56823,30.46169],[80.60531,30.46998],[80.69732,30.4167],[80.70694,30.41788],[80.78521,30.35036],[80.80719,30.32428],[80.83465,30.31361],[80.86074,30.31243],[80.87722,30.29938],[80.91018,30.30057],[80.92804,30.27567],[80.92666,30.26381],[80.94039,30.26262],[80.98571,30.26855],[81.02005,30.25432],[81.03103,30.22228],[81.04751,30.20686],[81.03653,30.19617],[81.04476,30.17956],[81.05232,30.17956],[81.06399,30.157],[81.08184,30.15165],[81.08047,30.12256],[81.08459,30.11721],[81.08459,30.0982],[81.09832,30.09939],[81.11,30.08632],[81.09214,30.05364],[81.11274,30.03521],[81.11961,30.03165],[81.12579,30.01976],[81.16767,30.01143],[81.18003,30.015],[81.18621,30.00905],[81.19514,30.02213],[81.20819,30.02094],[81.21849,30.00608],[81.24939,30.01381],[81.25556,30.02035],[81.23703,30.03224],[81.27204,30.04591],[81.28852,30.07325],[81.28715,30.11246],[81.25488,30.14572],[81.25694,30.15284],[81.30363,30.15937],[81.30432,30.16412],[81.31599,30.15106],[81.33316,30.15462],[81.35101,30.17778],[81.37092,30.18846],[81.37573,30.19914],[81.39564,30.20567],[81.39083,30.23237],[81.39564,30.24245],[81.39221,30.24957],[81.41349,30.26677],[81.41624,30.28338],[81.40319,30.28516],[81.40251,30.29405],[81.42036,30.3065],[81.41555,30.31598],[81.40525,30.31658],[81.39427,30.32547],[81.40663,30.34088],[81.39564,30.3705],[81.41899,30.37169],[81.4286,30.38472],[81.40251,30.39716],[81.40937,30.41907],[81.4286,30.42144],[81.43478,30.41255],[81.4389,30.41611],[81.45538,30.40959],[81.46774,30.40486],[81.47804,30.38886],[81.4904,30.38294],[81.55426,30.36991],[81.55357,30.37583],[81.55014,30.38057],[81.55014,30.40486],[81.55769,30.40782],[81.56181,30.42795],[81.60644,30.41196],[81.62017,30.42262],[81.61743,30.44749],[81.66755,30.42973],[81.69502,30.42321],[81.71562,30.41196],[81.72729,30.41196],[81.73347,30.39716],[81.77536,30.38531],[81.79046,30.39005],[81.81175,30.38413],[81.82891,30.37524],[81.84951,30.37524],[81.85226,30.37939],[81.87011,30.37643],[81.8811,30.36102],[81.91268,30.35273],[81.94152,30.34621],[81.9477,30.35747],[81.9635,30.3545],[81.95732,30.33851],[81.97174,30.33613],[81.99302,30.32073],[82.0095,30.33139],[82.01156,30.34147],[82.02186,30.34443],[82.02941,30.33851],[82.03628,30.34384],[82.05345,30.33495],[82.06512,30.35569],[82.08572,30.36102],[82.09121,30.35095],[82.10975,30.34917],[82.11181,30.33258],[82.12692,30.30472],[82.11181,30.27745],[82.11662,30.27033],[82.11456,30.25728],[82.10632,30.25372],[82.09945,30.2389],[82.10975,30.22584],[82.12898,30.22584],[82.13516,30.20567],[82.15782,30.19024],[82.18391,30.19083],[82.18803,30.17659],[82.18254,30.16056],[82.20588,30.15522],[82.19833,30.14512],[82.19696,30.13681],[82.18048,30.13325],[82.17498,30.12315],[82.17224,30.12374],[82.17155,30.11662],[82.1791,30.11721],[82.18597,30.11127],[82.18048,30.10414],[82.18116,30.09761],[82.17567,30.0887],[82.1688,30.08632],[82.16606,30.07563],[82.17155,30.06612],[82.1949,30.06968],[82.23197,30.06612],[82.24159,30.07622],[82.26081,30.06374],[82.28416,30.06018],[82.28691,30.04591],[82.30339,30.03818],[82.31437,30.03878],[82.31986,30.04829],[82.33703,30.0471],[82.34939,30.02511],[82.35488,30.0257],[82.36244,30.01143],[82.37617,30.0144],[82.37686,30.0263],[82.38166,30.02808],[82.38647,30.02035],[82.39265,30.0257],[82.40844,30.01084],[82.42012,30.00608],[82.42424,29.99538],[82.45513,29.97872],[82.462,29.98229],[82.47573,29.97337],[82.47436,29.96385],[82.49839,29.94839],[82.51556,29.95196],[82.52861,29.97218],[82.56294,29.95493],[82.56774,29.93113],[82.58422,29.92161],[82.60276,29.88947],[82.63984,29.87458],[82.64328,29.86744],[82.6316,29.85851],[82.63023,29.84838],[82.61924,29.84779],[82.62268,29.83766],[82.64053,29.83468],[82.66525,29.84421],[82.68516,29.8466],[82.68859,29.85374],[82.69615,29.85553],[82.71263,29.83885],[82.72293,29.83766],[82.73048,29.82039],[82.73666,29.81562],[82.70919,29.79179],[82.70164,29.79536],[82.69546,29.79179],[82.69683,29.77987],[82.68859,29.77451],[82.69134,29.76199],[82.71057,29.76914],[82.71812,29.76676],[82.7243,29.77153],[82.74559,29.76974],[82.76138,29.75901],[82.76756,29.73099],[82.79846,29.71906],[82.81906,29.72145],[82.82249,29.71191],[82.81494,29.70594],[82.81974,29.6958],[82.8321,29.68864],[82.85751,29.68745],[82.87811,29.69222],[82.88772,29.69461],[82.88978,29.70057],[82.90901,29.70177],[82.91587,29.70892],[82.92961,29.69878],[82.9351,29.70475],[82.94815,29.69222],[82.94197,29.67433],[82.95707,29.66239],[82.9866,29.66836],[82.98934,29.66597],[83.0017,29.66597],[83.00857,29.67313],[83.0223,29.65046],[83.03535,29.65464],[83.04153,29.63196],[83.06625,29.62539],[83.06968,29.61167],[83.08548,29.60271],[83.09097,29.6057],[83.0896,29.61226],[83.115,29.61704],[83.11912,29.62957],[83.13217,29.62002],[83.14521,29.6248],[83.16444,29.61764],[83.15826,29.59793],[83.17817,29.59137],[83.18847,29.59853],[83.18779,29.60928],[83.19602,29.61226],[83.20083,29.60629],[83.21868,29.6045],[83.21388,29.59077],[83.23173,29.57883],[83.25988,29.57704],[83.26881,29.56867],[83.27979,29.56927],[83.28529,29.5627],[83.28391,29.55733],[83.25645,29.55792],[83.25508,29.5412],[83.26606,29.52806],[83.26812,29.51013],[83.28323,29.49818],[83.29147,29.50356],[83.30383,29.49937],[83.3155,29.50774],[83.34571,29.49399],[83.34434,29.4671],[83.35601,29.45095],[83.36631,29.44796],[83.3773,29.42524],[83.41369,29.42285],[83.41781,29.4067],[83.42468,29.40311],[83.42056,29.39414],[83.42468,29.38636],[83.41369,29.38038],[83.41575,29.35823],[83.42468,29.35584],[83.42948,29.35045],[83.43978,29.34926],[83.44665,29.32891],[83.43772,29.30975],[83.46931,29.27382],[83.48236,29.2822],[83.49609,29.26423],[83.51532,29.25525],[83.52081,29.23847],[83.51806,29.2169],[83.55102,29.20132],[83.56201,29.20551],[83.57231,29.20132],[83.57643,29.18034],[83.59016,29.17494],[83.61145,29.18214],[83.63273,29.15815],[83.66226,29.18214],[83.65676,29.20431],[83.6808,29.21091],[83.71169,29.24386],[83.76663,29.24087],[83.77349,29.24686],[83.78242,29.24566],[83.79959,29.25525],[83.79547,29.27801],[83.81813,29.30496],[83.84971,29.29717],[83.85864,29.30735],[83.8964,29.31873],[83.90327,29.32591],[83.94928,29.31693],[83.96438,29.3307],[84.00283,29.31154],[83.9891,29.29897],[84.02687,29.28819],[84.04541,29.30077],[84.05433,29.29657],[84.06875,29.2858],[84.0866,29.29478],[84.12162,29.27382],[84.11407,29.26244],[84.11613,29.24386],[84.13879,29.23967],[84.17999,29.23847],[84.19235,29.24446],[84.20402,29.23608],[84.19784,29.2157],[84.18617,29.20731],[84.17724,29.20731],[84.16282,29.18573],[84.17312,29.13177],[84.19853,29.12397],[84.20196,29.10297],[84.18617,29.07957],[84.19029,29.04596],[84.2102,29.05316],[84.22737,29.05376],[84.24728,29.03816],[84.25071,29.01714],[84.24316,29.00814],[84.23973,28.9709],[84.22668,28.94326],[84.22462,28.89518],[84.25415,28.88917],[84.26513,28.89939],[84.29534,28.87293],[84.32144,28.86752],[84.32487,28.86091],[84.34272,28.87293],[84.3592,28.8597],[84.37637,28.86512],[84.41001,28.84948],[84.4004,28.83805],[84.40315,28.82843],[84.41894,28.83264],[84.43405,28.8182],[84.43267,28.80256],[84.44572,28.79173],[84.44572,28.7809],[84.43679,28.77006],[84.45396,28.76284],[84.46014,28.75381],[84.47799,28.74719],[84.4931,28.73515],[84.51438,28.74839],[84.524,28.74358],[84.54048,28.74358],[84.55352,28.7514],[84.57412,28.73394],[84.62631,28.73756],[84.64828,28.71708],[84.65171,28.70142],[84.66819,28.696],[84.66819,28.68215],[84.7039,28.6707],[84.69635,28.63817],[84.71351,28.63274],[84.72312,28.62189],[84.78149,28.61104],[84.85977,28.57185],[84.86938,28.58271],[84.88998,28.58391],[84.89341,28.59175],[84.91127,28.58994],[84.94491,28.59597],[84.95109,28.58211],[84.98062,28.59055],[84.99298,28.6014],[84.98474,28.60863],[85.00808,28.63696],[85.0177,28.64058],[85.02937,28.65624],[85.03967,28.65805],[85.04173,28.6689],[85.0534,28.6707],[85.0534,28.68155],[85.08636,28.67131],[85.11589,28.68697],[85.13099,28.67673],[85.15846,28.64299],[85.17906,28.646],[85.19004,28.64058],[85.18592,28.63154],[85.19897,28.62732],[85.18936,28.60502],[85.17425,28.59658],[85.18936,28.56884],[85.18798,28.53325],[85.1667,28.53325],[85.1509,28.48921],[85.12001,28.48679],[85.10009,28.45963],[85.10284,28.44756],[85.11451,28.44394],[85.11657,28.4071],[85.12825,28.39381],[85.10971,28.3485],[85.12275,28.334],[85.16738,28.33158],[85.18318,28.32251],[85.20172,28.34185],[85.24154,28.31888],[85.25596,28.2947],[85.27107,28.29833],[85.2745,28.28926],[85.29373,28.28805],[85.34454,28.30498],[85.34866,28.28866],[85.36857,28.28624],[85.37544,28.28019],[85.41183,28.30921],[85.41458,28.32614],[85.44822,28.3352],[85.49972,28.334],[85.5265,28.32795],[85.56015,28.31042],[85.59928,28.30559],[85.59722,28.30014],[85.60752,28.25721],[85.63911,28.27354],[85.66177,28.30317],[85.65422,28.31949],[85.66383,28.32856],[85.66726,28.3485],[85.68924,28.34548],[85.68237,28.38233],[85.71121,28.38656],[85.72219,28.37267],[85.72013,28.35454],[85.72975,28.33943],[85.727,28.32674],[85.73661,28.32312],[85.73318,28.29289],[85.75103,28.23785],[85.79841,28.19792],[85.81558,28.20276],[85.83274,28.18521],[85.84922,28.184],[85.86982,28.14587],[85.87051,28.12165],[85.89386,28.11256],[85.90278,28.08894],[85.8966,28.07016],[85.89866,28.0544],[85.91651,28.04713],[85.93574,28.0241],[85.94192,28.0235],[85.96733,27.99925],[85.97557,27.99925],[85.97763,27.98773],[85.96115,27.97257],[85.9481,27.94285],[86.00166,27.91191],[86.01265,27.91373],[86.02157,27.90766],[86.06346,27.90159],[86.06758,27.9113],[86.10122,27.92404],[86.12388,27.92708],[86.12663,27.94042],[86.1074,27.95801],[86.10191,27.98712],[86.07856,28.01925],[86.09024,28.03198],[86.08818,28.05622],[86.09504,28.06228],[86.08337,28.09015],[86.09367,28.09984],[86.11839,28.09015],[86.13281,28.09924],[86.13487,28.11862],[86.14242,28.11862],[86.14173,28.12952],[86.16027,28.1386],[86.17813,28.14344],[86.17607,28.17008],[86.18705,28.17432],[86.19667,28.15495],[86.20147,28.13376],[86.21521,28.12286],[86.22345,28.09621],[86.20765,28.0956],[86.20491,28.07925],[86.22619,28.03198],[86.2207,28.0241],[86.22345,27.9853],[86.23512,27.97439],[86.27151,27.98166],[86.29623,27.97378],[86.31477,27.94831],[86.33606,27.9659],[86.34841,27.9386],[86.37313,27.94285],[86.41227,27.90766],[86.43974,27.90705],[86.46995,27.93072],[86.46652,27.94528],[86.5139,27.95862],[86.51321,27.97014],[86.5187,27.97681],[86.5139,27.98409],[86.52351,28.02289],[86.53175,28.02895],[86.5345,28.05077],[86.54823,28.05259],[86.56745,28.06713],[86.55784,28.08046],[86.56608,28.08894],[86.56265,28.10832],[86.57569,28.11438],[86.60453,28.10166],[86.60659,28.09015],[86.60247,28.08773],[86.60797,28.0744],[86.64917,28.07561],[86.66221,28.09621],[86.68693,28.10772],[86.71646,28.10772],[86.73637,28.1059],[86.7501,28.09439],[86.75079,28.07985],[86.76178,28.07501],[86.75148,28.06652],[86.74873,28.04834],[86.75697,28.03683],[86.77345,28.03986],[86.79267,28.01865],[86.80641,28.0241],[86.83387,28.0138],[86.84829,28.01865],[86.85104,28.02834],[86.87164,28.0241],[86.87301,28.00955],[86.89086,27.99864],[86.93412,27.97803],[86.93361,27.9615],[86.98219,27.94831],[87.01446,27.95559],[87.03918,27.94831],[87.05223,27.92708],[87.08107,27.91494],[87.08999,27.88399],[87.10784,27.87853],[87.11265,27.84332],[87.14355,27.83664],[87.16003,27.8245],[87.22732,27.82389],[87.23762,27.83846],[87.26234,27.85061],[87.30285,27.84454],[87.31796,27.82511],[87.35916,27.82753],[87.37358,27.84514],[87.40379,27.85243],[87.42164,27.86153],[87.43469,27.84696],[87.42851,27.84029],[87.4031,27.83604],[87.45254,27.82328],[87.4855,27.84636],[87.53494,27.84636],[87.55004,27.85182],[87.55348,27.86518],[87.5679,27.86639],[87.5885,27.85364],[87.5885,27.82146],[87.60223,27.82268],[87.61047,27.81053],[87.61734,27.82025],[87.63107,27.82389],[87.6345,27.833],[87.66952,27.83482],[87.66128,27.82025],[87.66609,27.80689],[87.68325,27.81235],[87.71072,27.81175],[87.72377,27.80506],[87.7375,27.81235],[87.73544,27.82146],[87.74574,27.83604],[87.75535,27.83786],[87.76771,27.85971],[87.77938,27.86578],[87.77732,27.87732],[87.78625,27.89856],[87.80342,27.90948],[87.81578,27.92222],[87.82333,27.9198],[87.82951,27.95316],[87.85697,27.94406],[87.8659,27.91191],[87.87895,27.91434],[87.88925,27.90887],[87.93113,27.92101],[87.938,27.91191],[87.95791,27.90705],[87.96752,27.89128],[87.98606,27.88399],[88.00323,27.89917],[88.02452,27.89977],[88.02589,27.90523],[88.05954,27.89613],[88.05954,27.89006],[88.08425,27.89492],[88.09318,27.87307],[88.10279,27.867],[88.12545,27.88157],[88.13507,27.88217],[88.13781,27.89128],[88.1179,27.91919],[88.13575,27.93921],[88.13095,27.95013],[88.14262,27.9659],[88.18588,27.94406],[88.20716,27.93921],[88.20442,27.95923],[88.22364,27.96286],[88.236,27.96893],[88.25042,27.94164],[88.26622,27.95619],[88.28064,27.95498],[88.28887,27.9659],[88.30947,27.96711],[88.31634,27.97863],[88.33213,27.97863],[88.33831,27.9847],[88.37883,27.98833],[88.38775,27.97742],[88.41316,27.98227],[88.41865,28.00046],[88.46672,28.01865],[88.47564,28.03744],[88.49487,28.05259],[88.53469,28.03501],[88.55323,28.03925],[88.55529,28.08167],[88.56697,28.09076],[88.58207,28.08349],[88.60061,28.08894],[88.6116,28.11014],[88.637,28.11801],[88.64936,28.09742],[88.66447,28.08954],[88.66722,28.07561],[88.67889,28.07258],[88.68438,28.07803],[88.73382,28.07198],[88.75579,28.07985],[88.77845,28.0538],[88.7915,28.04956],[88.81347,28.02168],[88.83613,28.01622],[88.84574,27.99076],[88.83819,27.9289],[88.86085,27.92647],[88.88145,27.89067],[88.8787,27.87125],[88.88763,27.85607],[88.88076,27.84879],[88.88282,27.83361],[88.85742,27.81478],[88.86085,27.79352],[88.85467,27.78016],[88.85673,27.75525],[88.86222,27.75525],[88.86703,27.7437],[88.86016,27.73823],[88.85673,27.71696],[88.83956,27.71271],[88.84094,27.7048],[88.84918,27.69447],[88.84437,27.68535],[88.85055,27.67562],[88.84025,27.65312],[88.82171,27.64582],[88.81485,27.64886],[88.80455,27.62635],[88.81141,27.61905],[88.80729,27.59715],[88.79013,27.58558],[88.79287,27.57524],[88.76403,27.56793],[88.77296,27.55576],[88.77639,27.5308],[88.79287,27.53141],[88.77914,27.47172],[88.79631,27.42907],[88.80592,27.42175],[88.80729,27.40469],[88.81897,27.40469],[88.82309,27.39188],[88.83956,27.38274],[88.86154,27.38579],[88.86222,27.37054],[88.88145,27.35652],[88.88557,27.34249],[88.91853,27.32846],[88.93638,27.33761],[88.95904,27.31199],[88.97209,27.30528],[88.98376,27.31687],[89.00299,27.32724],[88.99681,27.34554],[88.97827,27.35469],[88.97895,27.36262],[88.97689,27.38457],[88.96522,27.40164],[88.97964,27.42114],[88.97483,27.43272],[88.97758,27.44186],[88.98513,27.44308],[88.99269,27.46014],[88.99337,27.47355],[88.98719,27.49304],[88.99543,27.50157],[89.00573,27.49852],[89.01397,27.50705],[89.00299,27.52897],[89.04007,27.54906],[89.03045,27.56063],[89.03869,27.56854],[89.03114,27.5795],[89.03595,27.58802],[89.04487,27.58802],[89.05311,27.60019],[89.06204,27.60202],[89.07783,27.61114],[89.10667,27.60506],[89.12178,27.61601],[89.12727,27.6154],[89.13276,27.62879],[89.13002,27.6373],[89.17808,27.6744],[89.17739,27.68231],[89.1925,27.69994],[89.19662,27.72061],[89.21722,27.72243],[89.22889,27.73216],[89.22134,27.74006],[89.22546,27.74735],[89.21859,27.75768],[89.22546,27.78441],[89.23301,27.78684],[89.23645,27.80263],[89.26803,27.81296],[89.26528,27.82936],[89.30648,27.85546],[89.33189,27.85364],[89.36691,27.87307],[89.38957,27.89128],[89.39849,27.9198],[89.4136,27.92708],[89.41223,27.93436],[89.42047,27.94346],[89.43283,27.94709],[89.45205,27.97621],[89.45205,28.00713],[89.46991,28.01562],[89.47059,28.02289],[89.46029,28.03198],[89.50561,28.08046],[89.50767,28.09318],[89.53582,28.08773],[89.55299,28.1059],[89.55093,28.11801],[89.56054,28.12104],[89.5681,28.11862],[89.59762,28.15313],[89.59625,28.16221],[89.61685,28.16887],[89.62509,28.16584],[89.64294,28.17371],[89.66835,28.17069],[89.68208,28.18461],[89.72053,28.17311],[89.74388,28.19005],[89.76585,28.1834],[89.78302,28.20639],[89.76997,28.22273],[89.7837,28.2306],[89.79469,28.24632],[89.80499,28.23846],[89.81941,28.24088],[89.82696,28.25963],[89.82902,28.2814],[89.86473,28.31344],[89.89906,28.31103],[89.91897,28.31888],[89.98214,28.31526],[89.99038,28.334],[90.05973,28.34608],[90.06935,28.33641],[90.09407,28.33158],[90.10849,28.34185],[90.13732,28.33339],[90.15518,28.31586],[90.18127,28.31949],[90.18814,28.34064],[90.20942,28.36058],[90.24238,28.35635],[90.26573,28.32976],[90.25749,28.29289],[90.26985,28.27959],[90.33233,28.26447],[90.34538,28.30317],[90.37971,28.3074],[90.3804,28.28926],[90.40992,28.27475],[90.43258,28.29531],[90.47241,28.27354],[90.4779,28.2554],[90.53215,28.24935],[90.5754,28.2439],[90.596,28.23362],[90.60287,28.23785],[90.61248,28.22878],[90.60562,28.22152],[90.60218,28.20881],[90.57472,28.20095],[90.55755,28.17916],[90.54863,28.15797],[90.5088,28.14889],[90.50193,28.14042],[90.48477,28.13618],[90.49987,28.10711],[90.47241,28.08894],[90.45249,28.08833],[90.4422,28.0641],[90.45181,28.04774],[90.48683,28.05077],[90.5088,28.06652],[90.56167,28.04956],[90.5857,28.0241],[90.61729,28.04713],[90.6372,28.04834],[90.66741,28.05986],[90.69145,28.07985],[90.70655,28.07016],[90.72578,28.06955],[90.72715,28.06107],[90.76355,28.04713],[90.77247,28.05259],[90.78208,28.0435],[90.80886,28.05077],[90.8274,28.04471],[90.83702,28.04834],[90.85556,28.04531],[90.8535,28.05198],[90.89744,28.03622],[90.89263,28.03016],[90.91186,28.02713],[90.92147,28.0338],[90.91873,28.03925],[90.92697,28.0435],[90.94825,28.03259],[90.94413,28.02531],[90.97847,28.00107],[90.98945,28.00592],[90.9922,28.02289],[91.02516,28.02471],[91.06979,27.99318],[91.07872,28.00228],[91.10343,27.99925],[91.11099,27.99197],[91.1309,27.99682],[91.15287,27.98833],[91.16798,28.00228],[91.19133,27.98712],[91.21124,27.98712],[91.21673,28.01986],[91.23802,28.03138],[91.25038,28.0538],[91.24557,28.06531],[91.26274,28.07137],[91.30462,28.06289],[91.33827,28.06592],[91.34376,28.05016],[91.36299,28.04895],[91.38702,28.03077],[91.40007,28.02834],[91.40899,28.01986],[91.43165,28.01562],[91.43783,28.00228],[91.44332,28.01016],[91.46392,28.00531],[91.4756,27.97863],[91.48452,27.97742],[91.49208,27.9659],[91.48452,27.94285],[91.54495,27.91919],[91.55525,27.90038],[91.56761,27.89856],[91.58958,27.90827],[91.6246,27.89249],[91.62117,27.867],[91.61293,27.85971],[91.60057,27.86578],[91.59507,27.85729],[91.57653,27.86396],[91.57035,27.84879],[91.55319,27.85486],[91.56486,27.82632],[91.57653,27.81296],[91.61293,27.82389],[91.63559,27.80446],[91.64245,27.77044],[91.64451,27.76315],[91.84707,27.76072],[91.87179,27.72365],[91.89376,27.72122],[91.90132,27.7279],[91.92604,27.71635],[91.96517,27.73884],[91.98028,27.77469],[92.005,27.7832],[92.03727,27.77651],[92.10937,27.80263],[92.14233,27.83482],[92.16018,27.83057],[92.17323,27.84575],[92.18833,27.84879],[92.21443,27.86275],[92.21237,27.87185],[92.24395,27.88885],[92.25494,27.88157],[92.26799,27.88703],[92.29064,27.87185],[92.30506,27.85061],[92.29888,27.83725],[92.31674,27.81721],[92.32017,27.79717],[92.33802,27.79717],[92.42454,27.83543],[92.42729,27.80263],[92.43759,27.80385],[92.45544,27.79352],[92.47604,27.83179],[92.50007,27.85061],[92.51106,27.84696],[92.58041,27.88521],[92.6017,27.91676],[92.64289,27.91009],[92.67173,27.94528],[92.73147,27.97984],[92.73216,27.98651],[92.72186,27.99561],[92.73628,28.03865],[92.73147,28.0544],[92.70401,28.06834],[92.66281,28.07076],[92.65731,28.08409],[92.66349,28.09863],[92.67654,28.14829],[92.69577,28.15131],[92.71705,28.16705],[92.73696,28.15374],[92.74795,28.16221],[92.76718,28.16342],[92.77267,28.16827],[92.77061,28.17856],[92.78709,28.18763],[92.83035,28.17371],[92.86949,28.18824],[92.88459,28.19974],[92.92099,28.20216],[92.93472,28.21729],[92.92854,28.22878],[92.93403,28.25056],[92.9457,28.26326],[92.99171,28.27414],[93.0027,28.2947],[93.02879,28.29773],[93.04801,28.31103],[93.06175,28.30559],[93.07548,28.32372],[93.14895,28.36904],[93.14758,28.37992],[93.16406,28.40287],[93.17161,28.4385],[93.16886,28.4542],[93.19633,28.49404],[93.25332,28.54592],[93.33435,28.58693],[93.36593,28.59658],[93.42498,28.66347],[93.47923,28.67432],[93.51356,28.66769],[93.62548,28.68637],[93.63922,28.65504],[93.6866,28.67733],[93.70651,28.66408],[93.72642,28.67251],[93.7326,28.68275],[93.78479,28.71227],[93.78822,28.73575],[93.84246,28.74839],[93.86238,28.74297],[93.8974,28.75742],[93.91044,28.74057],[93.92005,28.74418],[93.9125,28.77187],[93.94203,28.78932],[93.94683,28.80316],[93.9743,28.82301],[93.98941,28.80557],[93.98666,28.79353],[93.99696,28.78932],[94.02099,28.79173],[94.01962,28.83204],[94.02854,28.85369],[94.05876,28.8591],[94.05876,28.87774],[94.0773,28.88255],[94.13566,28.89037],[94.17411,28.91201],[94.16656,28.92523],[94.17961,28.93425],[94.22973,28.92884],[94.26063,28.93004],[94.27368,28.95047],[94.27505,28.96729],[94.30046,28.98111],[94.30732,28.99312],[94.32312,28.99372],[94.34646,29.00513],[94.36569,29.02735],[94.35882,29.03696],[94.34234,29.03696],[94.32861,29.04056],[94.32449,29.05737],[94.31144,29.06757],[94.31488,29.07657],[94.28466,29.08557],[94.27299,29.10237],[94.27505,29.11437],[94.29016,29.12217],[94.29634,29.13417],[94.29428,29.15276],[94.37942,29.15516],[94.38835,29.18393],[94.41513,29.17974],[94.43023,29.18873],[94.44465,29.18333],[94.45495,29.19233],[94.4522,29.20551],[94.45426,29.2133],[94.48928,29.20791],[94.50027,29.2157],[94.50988,29.23068],[94.54353,29.2211],[94.57168,29.24386],[94.57031,29.25704],[94.58335,29.26184],[94.59228,29.27442],[94.61425,29.28041],[94.62387,29.29538],[94.64447,29.29598],[94.65545,29.30675],[94.6685,29.30496],[94.69322,29.31753],[94.71725,29.29119],[94.73579,29.28699],[94.73648,29.27322],[94.74952,29.25285],[94.7454,29.24087],[94.75433,29.22649],[94.7763,29.2169],[94.79278,29.2187],[94.80171,29.20911],[94.79759,29.18333],[94.80651,29.16475],[94.84771,29.18333],[94.89372,29.17554],[94.90882,29.16115],[94.92599,29.15635],[94.9665,29.15875],[94.99122,29.14616],[95.00083,29.13177],[95.02143,29.12637],[95.01525,29.13776],[95.01525,29.14736],[94.98642,29.17254],[95.00015,29.17254],[95.04066,29.14976],[95.05645,29.15276],[95.09559,29.14196],[95.10177,29.12697],[95.11756,29.11437],[95.1004,29.10117],[95.10108,29.09637],[95.12649,29.09877],[95.1313,29.08857],[95.15396,29.09277],[95.18005,29.10297],[95.19241,29.09997],[95.21026,29.10837],[95.23292,29.10177],[95.23773,29.08197],[95.25764,29.07957],[95.26313,29.06937],[95.27275,29.07417],[95.27343,29.10417],[95.28167,29.11137],[95.27824,29.11737],[95.28785,29.12217],[95.3009,29.13836],[95.38673,29.13656],[95.39978,29.12517],[95.41488,29.12637],[95.40939,29.14196],[95.41488,29.14796],[95.41626,29.16355],[95.42038,29.16895],[95.42038,29.18214],[95.42861,29.18513],[95.43342,29.19293],[95.45265,29.17794],[95.45265,29.16535],[95.44853,29.15935],[95.45814,29.13656],[95.46913,29.13357],[95.47737,29.14196],[95.50758,29.12577],[95.51376,29.14256],[95.51239,29.16175],[95.50071,29.18393],[95.50277,29.19293],[95.52612,29.18933],[95.53093,29.19532],[95.54946,29.19892],[95.57487,29.18094],[95.60646,29.19412],[95.59616,29.20971],[95.59684,29.22589],[95.60714,29.23548],[95.6353,29.22349],[95.63873,29.2157],[95.64491,29.21091],[95.66413,29.22349],[95.69709,29.22469],[95.70671,29.2139],[95.70396,29.20252],[95.70877,29.20072],[95.72113,29.2151],[95.74241,29.2193],[95.74379,29.22469],[95.72937,29.23727],[95.75134,29.27382],[95.74996,29.28699],[95.73829,29.29837],[95.75889,29.32292],[95.77743,29.32352],[95.81314,29.34866],[95.83786,29.35345],[95.84404,29.34028],[95.83786,29.3325],[95.83992,29.32292],[95.86189,29.31514],[95.87631,29.31633],[95.88935,29.32891],[95.93811,29.35045],[95.94223,29.36601],[95.95596,29.36721],[95.96351,29.37499],[95.98274,29.36302],[95.99853,29.36841],[96.01844,29.36422],[96.05278,29.38456],[96.06445,29.37439],[96.14135,29.34208],[96.14341,29.31274],[96.15028,29.30795],[96.1544,29.29837],[96.17019,29.29298],[96.19354,29.26723],[96.21894,29.26244],[96.22718,29.25645],[96.2622,29.24566],[96.26289,29.2175],[96.2883,29.20911],[96.28761,29.20252],[96.30409,29.19053],[96.30134,29.16535],[96.28692,29.13117],[96.25396,29.11437],[96.21482,29.11377],[96.20178,29.09757],[96.21551,29.07357],[96.18461,29.04536],[96.18667,29.03275],[96.20452,29.03275],[96.21208,29.04836],[96.2313,29.05556],[96.24435,29.08557],[96.25671,29.08257],[96.2725,29.09817],[96.29859,29.09937],[96.30958,29.11437],[96.32537,29.11737],[96.35078,29.08677],[96.36589,29.08137],[96.3652,29.04476],[96.38305,29.03095],[96.4167,29.02375],[96.44416,28.99372],[96.43867,28.98712],[96.4373,28.9703],[96.4476,28.94086],[96.46476,28.93425],[96.50528,28.94987],[96.52313,28.93485],[96.52862,28.91802],[96.51832,28.90961],[96.51969,28.88857],[96.52725,28.88015],[96.52107,28.86692],[96.53892,28.85128],[96.54991,28.84948],[96.56639,28.82843],[96.59042,28.8188],[96.57394,28.79052],[96.57463,28.7815],[96.60141,28.7809],[96.60278,28.76284],[96.62956,28.73394],[96.62887,28.70082],[96.64741,28.68998],[96.64054,28.67793],[96.60278,28.67492],[96.59591,28.68155],[96.57737,28.68275],[96.56501,28.69721],[96.55609,28.68516],[96.54579,28.68576],[96.53961,28.67733],[96.54304,28.65203],[96.52862,28.64419],[96.52793,28.61828],[96.51283,28.61225],[96.51969,28.59416],[96.51626,28.58331],[96.49223,28.58572],[96.47438,28.57366],[96.48124,28.55738],[96.46408,28.54532],[96.46614,28.52541],[96.40708,28.52541],[96.40502,28.5049],[96.43043,28.50972],[96.4524,28.4874],[96.46476,28.49223],[96.473,28.49343],[96.48811,28.46265],[96.49086,28.43367],[96.49841,28.42884],[96.51145,28.44816],[96.49978,28.49343],[96.50733,28.50429],[96.50871,28.51938],[96.49223,28.53989],[96.52038,28.55798],[96.55128,28.5616],[96.56227,28.58391],[96.60141,28.60321],[96.60003,28.61225],[96.61582,28.62009],[96.65153,28.61888],[96.68998,28.59055],[96.70509,28.59658],[96.71127,28.61044],[96.72226,28.60441],[96.72294,28.57788],[96.74766,28.56824],[96.76071,28.55195],[96.75315,28.53989],[96.75865,28.51757],[96.82113,28.50188],[96.86027,28.48197],[96.86233,28.45239],[96.89529,28.41857],[96.88293,28.40408],[96.89048,28.38898],[96.91864,28.36542],[96.92344,28.35273],[96.95228,28.34729],[96.97769,28.33097],[97.01545,28.32856],[97.04017,28.34004],[97.07656,28.36904],[97.126,28.36119],[97.14729,28.35212],[97.16926,28.32856],[97.18025,28.33339],[97.20497,28.30196],[97.21801,28.30317],[97.23724,28.29349],[97.24273,28.26628],[97.26402,28.26447],[97.27226,28.24511],[97.28118,28.24572],[97.28462,28.22999],[97.30041,28.23604],[97.30316,28.22939],[97.32925,28.21608],[97.34436,28.21487],[97.34985,28.24027],[97.37869,28.23906],[97.41439,28.25116],[97.40066,28.27777],[97.42126,28.29833],[97.46109,28.27052],[97.48306,28.28745],[97.46658,28.30559],[97.50366,28.31647],[97.51602,28.3346],[97.49267,28.35031],[97.47894,28.38294],[97.50503,28.40952],[97.50228,28.4228],[97.52151,28.44212],[97.50366,28.46989],[97.50091,28.49283],[97.52151,28.49404],[97.5737,28.54713],[97.59429,28.52541],[97.62588,28.52541],[97.6506,28.53868],[97.72064,28.49404],[97.73712,28.40348],[97.76733,28.37811],[97.79892,28.33097],[97.84423,28.33339],[97.84423,28.35273],[97.86895,28.36844],[97.9129,28.36844],[97.95547,28.32493],[97.95272,28.29954],[97.99118,28.29108],[98.02413,28.24511],[98.00766,28.21971],[98.02551,28.19308],[98.05023,28.19066],[98.0516,28.20276],[98.08868,28.20518],[98.09967,28.16463],[98.11615,28.16705],[98.12851,28.15979],[98.13056,28.15071],[98.14086,28.14526],[98.17108,28.16403],[98.17108,28.21002],[98.21777,28.21487],[98.26446,28.24148],[98.23425,28.30921],[98.20404,28.33823],[98.20404,28.35515],[98.22601,28.35031],[98.23425,28.36723],[98.28369,28.3914],[98.32214,28.3213],[98.37982,28.25116],[98.37432,28.19066],[98.39355,28.16161],[98.39355,28.1059],[98.42926,28.1059],[98.47045,28.15434],[98.49792,28.14466],[98.54187,28.17856],[98.62701,28.16887],[98.65448,28.20276],[98.70666,28.21971],[98.70941,28.29954],[98.74786,28.33097],[98.6737,28.47834],[98.62152,28.49283],[98.638,28.54592],[98.59405,28.67613],[98.63525,28.68817],[98.68194,28.72913],[98.65997,28.81339],[98.66546,28.83986],[98.64624,28.88556],[98.65997,28.91682],[98.62426,28.96729],[98.65173,28.9745],[98.70941,28.96008],[98.75885,29.00333],[98.79455,28.99132],[98.81103,28.94086],[98.8385,28.81098],[98.9154,28.80376],[98.92364,28.83023],[98.96759,28.83264],[98.96759,28.86632],[98.9154,28.89518],[98.92913,28.97931],[99.01153,29.03936],[98.96759,29.13057],[98.95935,29.17374],[98.97583,29.20012],[99.02252,29.19053],[99.039,29.20491],[99.1159,29.2193],[99.07196,29.31035],[99.04724,29.51372],[99.05548,29.5639],[98.99505,29.65464],[98.99505,29.73576],[99.01702,29.79536],[99.01153,29.81681],[99.06921,29.93351],[99.04724,29.94541],[99.039,30.07622],[98.99505,30.15225],[98.97308,30.25195],[98.98407,30.28516],[98.9566,30.4392],[98.92913,30.56699],[98.93737,30.59063],[98.91815,30.61427],[98.90441,30.68988],[98.96484,30.73239],[98.9566,30.77251],[98.89892,30.78903],[98.84948,30.85272],[98.77258,30.89986],[98.80828,30.98702],[98.74237,31.05058],[98.70941,31.12114],[98.6325,31.17521],[98.60229,31.194],[98.62152,31.21515],[98.60229,31.23394],[98.638,31.33721],[98.69293,31.32783],[98.77533,31.25507],[98.80554,31.2762],[98.81378,31.30906],[98.88244,31.3677],[98.7918,31.47083],[98.70666,31.51299],[98.69018,31.55045],[98.55285,31.65104],[98.55285,31.69078],[98.42651,31.83089],[98.40454,31.90787],[98.43475,31.92186],[98.43475,32.00341],[98.40179,32.04533],[98.30841,32.1198],[98.22876,32.23603],[98.21777,32.34748],[98.12164,32.39851],[97.95135,32.47732],[97.74536,32.52828],[97.66571,32.55144],[97.60528,32.61624],[97.52838,32.63243],[97.4295,32.70642],[97.38006,32.82421],[97.3883,32.83344],[97.37182,32.88189],[97.35534,32.89803],[97.36908,32.96028],[97.51739,32.99023],[97.50366,33.02248],[97.53662,33.03629],[97.52014,33.09154],[97.48718,33.10764],[97.48718,33.16514],[97.57782,33.22949],[97.63275,33.3397],[97.67395,33.34888],[97.7536,33.40851],[97.62725,33.45894],[97.60528,33.45894],[97.55859,33.47039],[97.5119,33.51849],[97.52563,33.57343],[97.41027,33.61004],[97.43225,33.68092],[97.40478,33.80425],[97.36908,33.82479],[97.36908,33.84532],[97.39654,33.8476],[97.39654,33.87497],[97.60253,33.93196],[97.64099,33.92968],[97.66021,33.96158],[97.65472,34.00941],[97.69043,34.01396],[97.70416,34.05038],[97.66571,34.12317],[97.78106,34.16863],[97.81127,34.20725],[97.95135,34.1959],[98.04473,34.11407],[98.08868,34.12317],[98.20953,34.08223],[98.3963,34.09133],[98.39355,34.05721],[98.44299,34.0003],[98.41552,33.94336],[98.42651,33.90233],[98.41278,33.86813],[98.4375,33.84076],[98.45672,33.84988],[98.49517,33.77001],[98.52264,33.77001],[98.5968,33.71748],[98.59954,33.68321],[98.66272,33.65349],[98.61877,33.63062],[98.66272,33.58487],[98.64349,33.54139],[98.73138,33.47956],[98.74237,33.41081],[98.78356,33.36265],[98.76434,33.28002],[98.80828,33.26165],[98.80554,33.20881],[98.833,33.19043],[98.89068,33.13755],[98.97033,33.10994],[99.03625,33.08693],[99.20379,33.03399],[99.27246,32.87958],[99.37957,32.90034],[99.45648,32.85882],[99.55535,32.84498],[99.58282,32.7942],[99.70916,32.76418],[99.73114,32.7249],[99.79431,32.87266],[99.76684,32.94184],[99.77783,32.95797],[99.81079,32.94414],[99.84649,32.94414],[99.8822,33.00175],[99.8767,33.0432],[99.90966,33.0455],[99.91241,33.02017],[99.9646,32.94414],[100.03601,32.92109],[100.02777,32.90034],[100.11291,32.86113],[100.14312,32.72259],[100.09643,32.66943],[100.11291,32.64168],[100.20355,32.61161],[100.23101,32.69486],[100.25299,32.7457],[100.33813,32.72722],[100.39856,32.75725],[100.37933,32.69717],[100.42053,32.73184],[100.47821,32.67868],[100.54687,32.57227],[100.66223,32.52134],[100.65673,32.5607],[100.66497,32.62549],[100.71441,32.6093],[100.71716,32.63937],[100.68695,32.67637],[100.93414,32.61161],[101.07696,32.67868],[101.15112,32.66018],[101.22528,32.73415],[101.23077,32.8219],[101.21704,32.85651],[101.17034,32.90265],[101.13189,32.91187],[101.13464,32.99023],[101.18682,32.98793],[101.18133,33.05011],[101.14013,33.06162],[101.15112,33.08923],[101.17309,33.09844],[101.12365,33.19502],[101.12365,33.22949],[101.18408,33.26625],[101.29119,33.26625],[101.38732,33.15364],[101.39282,33.21341],[101.48895,33.2272],[101.62902,33.09844],[101.66198,33.14674],[101.65649,33.16054],[101.6867,33.18583],[101.68121,33.20422],[101.71966,33.2203],[101.73889,33.27313],[101.65374,33.31446],[101.66473,33.37411],[101.69494,33.43831],[101.77459,33.44977],[101.78009,33.52765],[101.76635,33.54368],[101.78833,33.55741],[101.81304,33.54826],[101.83227,33.55741],[101.83227,33.58259],[101.846,33.60318],[101.90094,33.5597],[101.90643,33.48872],[101.95037,33.4429],[101.91741,33.42914],[101.91741,33.40393],[101.88446,33.37182],[101.87347,33.30987],[101.77185,33.27084],[101.78558,33.22949],[101.83227,33.20422],[101.83227,33.12605],[101.87072,33.10534],[101.8927,33.13985],[101.92016,33.15134],[101.93664,33.18813],[101.99157,33.19962],[102.07946,33.19732],[102.10968,33.28691],[102.13989,33.27773],[102.16461,33.24098],[102.20855,33.23179],[102.19757,33.32134],[102.18109,33.33741],[102.22229,33.36035],[102.26348,33.41081],[102.3706,33.39475],[102.47497,33.46581],[102.44751,33.52765],[102.47772,33.53452],[102.44201,33.57572],[102.33764,33.61233],[102.32116,33.66949],[102.33764,33.7289],[102.29644,33.71063],[102.2882,33.73347],[102.32116,33.74946],[102.29644,33.77914],[102.23877,33.79284],[102.26074,33.8362],[102.13989,33.97069],[102.22778,33.96386],[102.24975,33.98208],[102.38983,33.97753],[102.40905,34.03445],[102.43927,34.08678],[102.46948,34.07086],[102.60681,34.1027],[102.65075,34.08451],[102.65075,34.12544],[102.59582,34.15727],[102.73315,34.23451],[102.78259,34.23451],[102.79357,34.26629],[102.854,34.2731],[102.86773,34.30941],[102.92266,34.31168],[102.98034,34.25267],[102.97485,34.1959],[103.12042,34.1709],[103.12591,34.10043],[103.17535,34.07768],[103.12866,34.06631],[103.12042,34.03672],[103.14514,34.03672],[103.15887,34.00713],[103.11767,33.9593],[103.1314,33.93196],[103.17535,33.92285],[103.14788,33.82251],[103.22204,33.79056],[103.24127,33.81338],[103.28247,33.79969],[103.28247,33.77458],[103.3374,33.74261],[103.43078,33.75631],[103.46649,33.80653],[103.51318,33.81338],[103.55438,33.73347],[103.52417,33.68092],[103.54339,33.66949],[103.58734,33.72434],[103.76586,33.66492],[103.87573,33.69006],[103.9801,33.67178],[104.057,33.69006],[104.18335,33.59631],[104.15588,33.53681],[104.18335,33.46581],[104.2163,33.4406],[104.2218,33.40851],[104.27124,33.40163],[104.2987,33.33741],[104.32891,33.32823],[104.36187,33.3397],[104.42779,33.33052],[104.40307,33.30987],[104.41406,33.28461],[104.35089,33.29609],[104.33166,33.31446],[104.30419,33.30298],[104.33166,33.24557],[104.32067,33.2226],[104.37561,33.10304],[104.33715,33.03629],[104.39758,33.02939],[104.42779,33.01787],[104.38659,32.99023],[104.37561,32.94875],[104.29595,32.95106],[104.27948,32.90034],[104.2987,32.83344],[104.36187,32.82421],[104.4635,32.75032],[104.51019,32.75956],[104.53491,32.72259],[104.57611,32.73184],[104.59259,32.7018],[104.65026,32.6625],[104.6997,32.67406],[104.7409,32.63474],[104.83429,32.65787],[104.88647,32.6093],[105.03479,32.65093],[105.08422,32.63012],[105.11169,32.58847],[105.21331,32.63474],[105.2243,32.66481],[105.25726,32.65325],[105.34515,32.6833],[105.36438,32.70873],[105.46325,32.73184],[105.45776,32.76649],[105.41381,32.77803],[105.40283,32.83113],[105.38085,32.87958],[105.40557,32.8865],[105.41381,32.93031],[105.46875,32.93262],[105.49346,32.91187],[105.53192,32.91648],[105.60058,32.87036],[105.6665,32.89573],[105.75714,32.90726],[105.8258,32.95567],[105.87249,32.93723],[105.92468,32.99714],[105.92193,33.10994],[105.89996,33.14905],[105.92468,33.19043],[105.96038,33.14445],[105.96588,33.19962],[105.91095,33.23868],[105.85327,33.24098],[105.73791,33.29839],[105.7489,33.342],[105.7077,33.38788],[105.83129,33.3787],[105.8258,33.45665],[105.96038,33.60775],[106.03179,33.59631],[106.08398,33.6169],[106.12518,33.5986],[106.1087,33.57115],[106.1444,33.58487],[106.14715,33.55512],[106.20208,33.54597],[106.29821,33.60546],[106.35864,33.58716],[106.3861,33.61004],[106.44653,33.62148],[106.46026,33.52307],[106.54266,33.5162],[106.5866,33.60775],[106.53167,33.6992],[106.48773,33.71063],[106.48773,33.77001],[106.45752,33.80425],[106.48773,33.84304],[106.47125,33.87953],[106.43005,33.86585],[106.41357,33.90461],[106.47399,33.97069],[106.47949,34.039],[106.50695,34.06631],[106.50146,34.10953],[106.56463,34.10725],[106.58386,34.1459],[106.54541,34.25267],[106.49597,34.24132],[106.52618,34.28899],[106.58111,34.27764],[106.60034,34.25267],[106.6333,34.25721],[106.66351,34.23905],[106.70471,34.30033],[106.69097,34.3389],[106.72119,34.3593],[106.71844,34.37064],[106.62506,34.40464],[106.60583,34.45448],[106.47674,34.52239],[106.33392,34.51561],[106.33941,34.55633],[106.31744,34.58573],[106.4273,34.65128],[106.47399,34.63546],[106.44104,34.68291],[106.51245,34.74161],[106.5509,34.74386],[106.58111,34.77094],[106.55365,34.82056],[106.56189,34.86114],[106.52618,34.88367],[106.48498,34.976],[106.55365,35.08845],[106.64154,35.07046],[106.71569,35.09968],[106.83654,35.0817],[106.89422,35.08395],[106.9931,35.05922],[107.01782,35.02549],[107.09198,35.021],[107.08374,34.98725],[107.16613,34.94223],[107.20733,34.88142],[107.28973,34.93548],[107.35015,34.93548],[107.36114,34.91746],[107.38861,34.93097],[107.52868,34.91296],[107.56713,34.96699],[107.62207,34.96249],[107.62756,34.91746],[107.68524,34.94899],[107.86377,34.99175],[107.84454,35.02549],[107.80883,35.01874],[107.7127,35.15135],[107.65502,35.24337],[107.73193,35.27477],[107.73193,35.3084],[107.872,35.25683],[107.96814,35.24113],[108.08898,35.27477],[108.17962,35.31064],[108.25103,35.25683],[108.34167,35.29719],[108.44879,35.27701],[108.55316,35.29719],[108.57513,35.28822],[108.61084,35.32633],[108.60809,35.36441],[108.63281,35.42039],[108.60534,35.50316],[108.63281,35.53669],[108.53668,35.60595],[108.5202,35.72198],[108.52844,35.83785],[108.49273,35.88237],[108.51745,35.90907],[108.56414,35.92242],[108.58337,35.95133],[108.64929,35.94688],[108.66027,35.99578],[108.68774,36.018],[108.68774,36.08906],[108.70422,36.13787],[108.64929,36.25534],[108.64929,36.37927],[108.62457,36.43012],[108.50921,36.46988],[108.50372,36.4257],[108.40759,36.44779],[108.3609,36.55377],[108.22357,36.57583],[108.22357,36.63536],[108.15765,36.55818],[108.09173,36.61332],[108.06152,36.59568],[108.01208,36.63095],[108.02581,36.6574],[108.00659,36.68824],[107.95166,36.6596],[107.91046,36.74108],[107.67425,36.83347],[107.6358,36.82247],[107.58087,36.83786],[107.53418,36.82467],[107.53418,36.87302],[107.48748,36.90158],[107.30621,36.92574],[107.2705,37.099],[107.276,37.12966],[107.29797,37.10338],[107.33642,37.14499],[107.33093,37.18439],[107.26776,37.2347],[107.3117,37.24344],[107.25677,37.33522],[107.28698,37.48575],[107.34466,37.52279],[107.37213,37.58594],[107.32818,37.58594],[107.31445,37.6077],[107.42431,37.65555],[107.38311,37.69251],[107.45727,37.68599],[107.49847,37.7642],[107.62207,37.77939],[107.66052,37.851],[107.65502,37.86401],[107.69622,37.88569],[107.74017,37.84883],[107.98736,37.78374],[108.02856,37.69251],[108.01483,37.66642],[108.02032,37.65338],[108.13842,37.62075],[108.21533,37.66208],[108.29772,37.66208],[108.32519,37.63163],[108.43505,37.64468],[108.53118,37.68816],[108.62731,37.6512],[108.73168,37.69034],[108.78662,37.68164],[108.78112,37.75768],[108.80035,37.79459],[108.80035,37.92686],[108.82782,37.98534],[108.8031,38.04376],[108.87725,38.02645],[108.94317,37.9182],[109.01184,37.97235],[109.0393,38.02429],[109.07226,38.03078],[109.06951,38.10214],[108.94043,38.16911],[108.94043,38.21228],[108.97888,38.25112],[108.95965,38.26621],[109.01184,38.36965],[109.05304,38.39549],[109.06402,38.44283],[109.27551,38.61687],[109.3222,38.59755],[109.3634,38.6233],[109.33044,38.66621],[109.33044,38.69194],[109.40185,38.71551],[109.51171,38.83328],[109.54742,38.81189],[109.62982,38.85895],[109.682,38.93377],[109.682,38.96154],[109.66278,38.99784],[109.86053,39.12793],[109.89898,39.10022],[109.92095,39.11514],[109.888,39.14284],[109.95666,39.18969],[109.87152,39.24501],[109.89898,39.27479],[109.96215,39.2131],[110.05004,39.21735],[110.2066,39.28116],[110.16265,39.38526],[110.13519,39.39163],[110.1242,39.42982],[110.14343,39.45104],[110.26428,39.41922],[110.38513,39.30667],[110.42083,39.34704],[110.43182,39.38314],[110.48675,39.3619],[110.52795,39.38314],[110.5664,39.31304],[110.62957,39.27053],[110.68725,39.26415],[110.7669,39.37677],[110.89599,39.50827],[111.02508,39.56547],[111.14868,39.5824],[111.14593,39.52946],[111.05255,39.44255],[111.11297,39.35978],[111.18164,39.42558],[111.34643,39.42558],[111.37939,39.4786],[111.42334,39.50827],[111.44256,39.64165],[111.51123,39.66702],[111.62384,39.63319],[111.65679,39.64165],[111.78588,39.58875],[111.84082,39.61626],[111.93145,39.61626],[111.92321,39.66491],[111.96441,39.6945],[111.96716,39.79587],[112.03582,39.8465],[112.04681,39.88655],[112.22808,40.13689],[112.24182,40.17257],[112.29675,40.21034],[112.31323,40.25647],[112.34344,40.25856],[112.4533,40.30257],[112.51098,40.26485],[112.62634,40.2376],[112.74169,40.16628],[112.84881,40.20614],[112.89825,40.33189],[113.24981,40.4114],[113.31024,40.32142],[113.55743,40.35073],[113.68652,40.44276],[113.76892,40.47411],[113.79364,40.51797],[113.86779,40.46157],[113.95019,40.52006],[114.0628,40.5305],[114.07928,40.5618],[114.04907,40.60352],[114.07653,40.6598],[114.0628,40.71811],[114.13147,40.73477],[114.10675,40.80133],[114.07928,40.79093],[114.04632,40.83043],[114.07653,40.85744],[114.04632,40.92596],[113.9859,40.94463],[113.97491,40.97989],[113.81561,41.10005],[113.86779,41.11039],[113.91998,41.16624],[113.9859,41.18485],[114.01886,41.23444],[113.9804,41.27161],[113.97216,41.2427],[113.95568,41.28812],[113.9035,41.31082],[113.9392,41.39123],[113.86505,41.43037],[113.93096,41.488],[114.03533,41.53325],[114.12597,41.53325],[114.23309,41.51474],[114.2221,41.61338],[114.25506,41.6216],[114.21386,41.68932],[114.23858,41.70982],[114.19738,41.7836],[114.35394,41.95132],[114.41436,41.94314],[114.50775,41.97991],[114.47753,42.03909],[114.51324,42.11044],[114.57641,42.13896],[114.64508,42.10841],[114.68353,42.12063],[114.74945,42.11248],[114.80163,42.14915],[114.85931,42.10637],[114.906,42.01461],[114.93347,41.84296],[114.87304,41.80612],[114.906,41.75287],[114.89776,41.64623],[114.85656,41.5949],[114.91149,41.61133],[115.04882,41.60928],[115.09002,41.6216],[115.19714,41.60312],[115.21637,41.57436],[115.2658,41.58874],[115.27404,41.63392],[115.3125,41.59285],[115.38116,41.59285],[115.35095,41.64007],[115.36468,41.67291],[115.31799,41.69547],[115.3482,41.71393],[115.43609,41.72623],[115.57617,41.80817],[115.65033,41.8184],[115.6723,41.85933],[115.8316,41.93089],[115.91125,41.9411],[116.02111,41.78564],[116.10076,41.7754],[116.12548,41.80203],[116.10076,41.84501],[116.13647,41.86342],[116.20239,41.86342],[116.22985,41.93497],[116.29852,41.96765],[116.32049,42.00032],[116.37542,42.00848],[116.42211,41.98603],[116.38641,41.94519],[116.44683,41.93497],[116.49902,41.97786],[116.54296,41.93089],[116.72699,41.95744],[116.74621,41.98195],[116.80389,41.98399],[116.84234,42.00644],[116.86431,42.00644],[116.88903,42.0921],[116.84509,42.15322],[116.82312,42.16136],[116.7984,42.198],[116.91375,42.19596],[116.9165,42.22851],[116.88079,42.35854],[116.91925,42.41129],[117.00164,42.42345],[117.00988,42.45791],[117.0758,42.46196],[117.09777,42.47614],[117.18841,42.46804],[117.2763,42.48425],[117.36145,42.45386],[117.41638,42.47007],[117.41363,42.51462],[117.3999,42.52474],[117.46582,42.60566],[117.55371,42.60768],[117.6828,42.58544],[117.80914,42.62587],[117.78717,42.58746],[118.02063,42.38695],[118.00689,42.35448],[118.06457,42.29153],[117.96844,42.23868],[118.10852,42.17358],[118.08654,42.10841],[118.15521,42.08191],[118.11401,42.03705],[118.19366,42.02889],[118.21838,42.06152],[118.21563,42.07987],[118.26232,42.0921],[118.30078,42.05133],[118.24035,42.02277],[118.30902,41.99624],[118.30902,41.93497],[118.26232,41.91862],[118.33648,41.8716],[118.28704,41.76516],[118.26232,41.75902],[118.23211,41.80817],[118.15246,41.81022],[118.12225,41.73442],[118.1607,41.67906],[118.21838,41.64213],[118.22113,41.58874],[118.31176,41.56614],[118.30627,41.49829],[118.26782,41.48389],[118.35022,41.43037],[118.33923,41.3397],[118.39141,41.30669],[118.41339,41.32732],[118.53149,41.34588],[118.67157,41.35],[118.75946,41.32113],[118.77319,41.35],[118.85009,41.36856],[118.87756,41.3005],[119.21264,41.27987],[119.21539,41.30876],[119.24285,41.32113],[119.32525,41.33557],[119.31152,41.40359],[119.36645,41.42007],[119.40765,41.49623],[119.35272,41.57025],[119.42138,41.56819],[119.30877,41.64213],[119.29779,41.79384],[119.33624,41.92271],[119.32525,41.97378],[119.38568,42.04929],[119.38018,42.11044],[119.31427,42.12063],[119.24285,42.20614],[119.34448,42.30169],[119.42413,42.31387],[119.50653,42.38898],[119.57519,42.36666],[119.55047,42.29965],[119.64935,42.24071],[119.84985,42.21631],[119.86633,42.16951],[119.84161,42.14304],[119.83886,42.10229],[119.95697,41.96357],[119.95697,41.91862],[119.99542,41.91045],[120.02563,41.82454],[120.04486,41.82454],[120.04486,41.76926],[120.02288,41.73442],[120.09429,41.69137],[120.13824,41.72418],[120.12451,41.76721],[120.23712,41.87569],[120.2893,41.88592],[120.25634,41.90636],[120.36895,41.99216],[120.41564,41.99011],[120.46508,42.02277],[120.45959,42.05337],[120.49255,42.06152],[120.46783,42.09822],[120.58593,42.1634],[120.63537,42.15933],[120.75073,42.22851],[120.79467,42.22445],[120.94574,42.27324],[121.03637,42.24681],[121.18743,42.33215],[121.2149,42.36463],[121.30279,42.39506],[121.31927,42.45386],[121.48681,42.49842],[121.59942,42.51057],[121.67083,42.4417],[121.70929,42.43764],[121.74224,42.49437],[121.85485,42.53486],[121.91803,42.59757],[121.92352,42.66022],[121.98394,42.7006],[122.06634,42.71473],[122.18444,42.68647],[122.20916,42.72482],[122.26135,42.69858],[122.34649,42.67839],[122.40417,42.69253],[122.40142,42.71271],[122.4591,42.76919],[122.37121,42.77524],[122.35473,42.83368],[122.46185,42.84576],[122.57446,42.82763],[122.56897,42.79338],[122.63763,42.77524],[122.72552,42.7833],[122.84637,42.71473],[122.87933,42.76717],[123.04412,42.77121],[123.23364,42.83569],[123.17871,42.86187],[123.18695,42.93832],[123.26385,42.99058],[123.46984,43.03878],[123.57147,43.00464],[123.6676,43.17914],[123.65936,43.20918],[123.69506,43.2872],[123.69506,43.3751],[123.61541,43.36113],[123.54675,43.41103],[123.51928,43.39706],[123.48358,43.44893],[123.45062,43.44294],[123.42865,43.40903],[123.37371,43.47285],[123.32977,43.4868],[123.30505,43.54655],[123.35723,43.57243],[123.44512,43.54655],[123.45611,43.57243],[123.41766,43.60823],[123.48083,43.59232],[123.51379,43.5963],[123.53302,43.62812],[123.52478,43.69568],[123.48358,43.74133],[123.49456,43.77902],[123.45886,43.82263],[123.4671,43.86423],[123.37371,43.96712],[123.40118,43.98491],[123.32977,44.03034],[123.32428,44.08561],[123.39019,44.15659],[123.29956,44.19795],[123.26934,44.25503],[123.20068,44.34153],[123.12927,44.36313],[123.11554,44.39846],[123.13751,44.41416],[123.13201,44.51021],[123.04138,44.50238],[122.8601,44.40043],[122.75299,44.36902],[122.68432,44.2865],[122.48931,44.23929],[122.31353,44.23339],[122.27233,44.2629],[122.29705,44.31795],[122.28607,44.47495],[122.2174,44.48866],[122.2229,44.52588],[122.20092,44.5572],[122.12951,44.58655],[122.10205,44.67646],[122.15698,44.72527],[122.14874,44.74283],[122.10205,44.74088],[122.11029,44.76818],[122.13775,44.76038],[122.16247,44.77793],[122.10479,44.78573],[122.04711,44.90646],[122.07733,44.9123],[122.07733,45.00753],[122.12677,45.06576],[122.11029,45.13943],[122.14325,45.1801],[122.19268,45.17816],[122.22564,45.20719],[122.23938,45.27295],[122.14599,45.29807],[122.14599,45.3753],[122.17895,45.41194],[122.16522,45.44471],[122.09106,45.46591],[122.00592,45.49864],[121.99493,45.55252],[121.96746,45.5929],[121.99768,45.59866],[122.00592,45.61788],[121.95098,45.71576],[121.80816,45.71001],[121.81091,45.69467],[121.72027,45.70042],[121.64337,45.74836],[121.65161,45.77518],[121.69555,45.76752],[121.75048,45.79434],[121.77795,45.84984],[121.81366,45.88044],[121.80542,45.96642],[121.76147,45.99505],[121.83013,46.02557],[121.86859,46.00268],[121.91528,46.0065],[122.00042,45.97978],[122.08557,45.92249],[122.09381,45.88044],[122.21191,45.84602],[122.25036,45.80008],[122.341,45.85558],[122.37121,45.85941],[122.35748,45.91294],[122.43988,45.91676],[122.49755,45.85749],[122.5003,45.78667],[122.56073,45.81922],[122.63214,45.76943],[122.67883,45.70809],[122.73651,45.70234],[122.79418,45.7656],[122.75848,45.84028],[122.77771,45.85558],[122.80242,45.85558],[122.83264,45.90338],[122.79693,46.07323],[123.04687,46.09799],[123.07159,46.12274],[123.11279,46.13226],[123.10455,46.17602],[123.12652,46.17602],[123.12927,46.21595],[123.17596,46.25014],[123.14575,46.29571],[123.00567,46.44164],[123.00567,46.57019],[123.04412,46.57963],[123.05236,46.62869],[123.07708,46.62869],[123.09906,46.60794],[123.18145,46.60794],[123.21716,46.58718],[123.28033,46.62114],[123.27484,46.65509],[123.31604,46.6664],[123.37646,46.67771],[123.59893,46.69466],[123.63739,46.73421],[123.62915,46.80758],[123.57971,46.82637],[123.62365,46.84892],[123.60443,46.89773],[123.57147,46.89773],[123.56323,46.83389],[123.51654,46.82449],[123.47808,46.8508],[123.53027,46.95026],[123.4671,46.95401],[123.40667,46.93713],[123.37921,46.84516],[123.3435,46.83201],[123.3023,46.8677],[123.22265,46.85643],[123.16772,46.73421],[123.07708,46.74362],[123.0194,46.72103],[122.98645,46.76432],[122.92053,46.79253],[122.88482,46.89586],[122.90679,46.95963],[122.84637,46.94463],[122.80242,46.94088],[122.76947,46.98774],[122.85736,47.0645],[122.64038,47.11313],[122.53326,47.19157],[122.41516,47.34254],[122.50579,47.39649],[122.57171,47.5376],[122.76397,47.61357],[122.84637,47.67648],[122.98919,47.7153],[123.06335,47.75409],[123.16497,47.77994],[123.24188,47.8574],[123.29681,47.95498],[123.54126,48.02483],[123.75274,48.19904],[124.07684,48.43466],[124.26086,48.53479],[124.31304,48.50022],[124.32128,48.34894],[124.41467,48.2393],[124.41467,48.18623],[124.4696,48.17341],[124.47235,48.13493],[124.43115,48.1276],[124.42016,48.08725],[124.50531,48.12026],[124.52728,48.14959],[124.52179,48.16791],[124.57397,48.25759],[124.51904,48.40003],[124.53826,48.53115],[124.52453,48.54934],[124.60693,48.65105],[124.61792,48.75799],[124.65087,48.78153],[124.65637,48.83399],[124.69482,48.84122],[124.70581,48.91708],[124.7525,48.92069],[124.77447,49.00184],[124.82666,49.04867],[124.80743,49.11523],[124.84863,49.1314],[124.86511,49.17093],[124.91455,49.18708],[124.98596,49.16374],[125.03265,49.17272],[125.04638,49.14937],[125.12054,49.12601],[125.21392,49.19247],[125.21667,49.28214],[125.26062,49.32154],[125.27435,49.37879],[125.26336,49.44848],[125.23315,49.4931],[125.22491,49.58934],[125.14801,49.62672],[125.12603,49.67118],[125.19195,49.64451],[125.21118,49.67118],[125.22216,49.72447],[125.1947,49.73868],[125.22766,49.78126],[125.17547,49.83266],[125.23864,49.85038],[125.1892,49.95652],[125.2359,49.96358],[125.28808,50.01479],[125.24963,50.05008],[125.28259,50.05184],[125.3128,50.04655],[125.33752,50.06419],[125.27435,50.08005],[125.29632,50.1329],[125.36224,50.1417],[125.34301,50.16458],[125.45288,50.22612],[125.48034,50.29811],[125.53527,50.36298],[125.52703,50.41201],[125.57922,50.40326],[125.57647,50.44526],[125.63415,50.44526],[125.74401,50.52215],[125.76599,50.51691],[125.8319,50.56056],[125.78796,50.67905],[125.82641,50.69645],[125.76873,50.74862],[125.79071,50.7712],[125.85113,50.75904],[125.96099,50.8857],[126.01867,50.90303],[126.06536,50.97399],[126.04888,50.98609],[126.05438,51.03794],[125.97473,51.08109],[125.99121,51.11731],[125.93627,51.11386],[125.92529,51.13283],[125.88134,51.14317],[125.8374,51.22408],[125.76049,51.2344],[125.76324,51.25675],[125.68908,51.33232],[125.57647,51.44544],[125.38421,51.5856],[125.35949,51.61972],[125.31005,51.6129],[125.28533,51.63336],[125.13153,51.63677],[125.12878,51.66233],[125.09857,51.66063],[125.06012,51.60096],[125.07385,51.5395],[124.92004,51.4848],[124.94476,51.44544],[124.88983,51.4249],[124.87335,51.37692],[124.77996,51.39235],[124.73602,51.34777],[124.6289,51.32374],[124.55474,51.3752],[124.4284,51.35291],[124.41192,51.26878],[124.2691,51.30829],[124.23339,51.35291],[124.1043,51.34605],[124.07684,51.32203],[123.91754,51.30486],[123.84338,51.36663],[123.78845,51.35806],[123.71704,51.39749],[123.65936,51.31859],[123.29681,51.25675],[123.06335,51.32203],[123.01391,51.31173],[122.96447,51.35463],[122.96722,51.39577],[122.90954,51.41633],[122.8656,51.47625],[122.88208,51.54462],[122.82989,51.5856],[122.85186,51.60778],[122.75848,51.73723],[122.76947,51.77973],[122.71179,51.89174],[122.73376,51.92394],[122.72277,51.97811],[122.67883,51.97303],[122.65411,52.05586],[122.62115,52.07275],[122.64312,52.10819],[122.63214,52.13517],[122.73101,52.15202],[122.77496,52.18572],[122.76672,52.23452],[122.78869,52.2463],[122.77496,52.26647],[122.70904,52.2547],[122.68158,52.27824],[122.57995,52.26143],[122.54974,52.28664],[122.47558,52.30008],[122.48382,52.34373],[122.44262,52.39236],[122.40966,52.37392],[122.33551,52.41582],[122.31079,52.47776],[122.20092,52.46939],[122.16247,52.52457],[122.1405,52.51454],[122.09381,52.42419],[122.04162,52.41414],[122.04162,52.37224],[121.97021,52.33701],[121.94274,52.28328],[121.83837,52.28664],[121.71752,52.32023],[121.71203,52.34708],[121.65435,52.39236],[121.67083,52.41917],[121.64611,52.44094],[121.52801,52.46103],[121.50054,52.48445],[121.42639,52.50284],[121.40716,52.5229],[121.34948,52.53126],[121.32202,52.57134],[121.28356,52.58302],[121.22589,52.57301],[121.18743,52.5947],[121.28082,52.64639],[121.30279,52.68637],[121.38244,52.68637],[121.45935,52.74626],[121.47857,52.77452],[121.51153,52.7795],[121.60217,52.82932],[121.62139,52.85918],[121.61041,52.89067],[121.67083,52.92049],[121.71478,52.99825],[121.78894,53.02139],[121.79718,53.04451],[121.8164,53.06102],[121.7807,53.09072],[121.78619,53.11051],[121.75323,53.14841],[121.72027,53.14677],[121.6571,53.17805],[121.65985,53.1978],[121.67358,53.20438],[121.67633,53.24056],[121.64062,53.26192],[121.60766,53.26357],[121.57196,53.29477],[121.51153,53.3161],[121.47377,53.33128]]]}},{"type":"Feature","properties":{"cq_zone_name":"Eastern Zone of Asia","cq_zone_number":24,"cq_zone_name_loc":[33,115]},"geometry":{"type":"Polygon","coordinates":[[[98.17108,28.16403],[98.17108,28.21002],[98.21777,28.21487],[98.26446,28.24148],[98.23425,28.30921],[98.20404,28.33823],[98.20404,28.35515],[98.22601,28.35031],[98.23425,28.36723],[98.28369,28.3914],[98.32214,28.3213],[98.37982,28.25116],[98.37432,28.19066],[98.39355,28.16161],[98.39355,28.1059],[98.42926,28.1059],[98.47045,28.15434],[98.49792,28.14466],[98.54187,28.17856],[98.62701,28.16887],[98.65448,28.20276],[98.70666,28.21971],[98.70941,28.29954],[98.74786,28.33097],[98.6737,28.47834],[98.62152,28.49283],[98.638,28.54592],[98.59405,28.67613],[98.63525,28.68817],[98.68194,28.72913],[98.65997,28.81339],[98.66546,28.83986],[98.64624,28.88556],[98.65997,28.91682],[98.62426,28.96729],[98.65173,28.9745],[98.70941,28.96008],[98.75885,29.00333],[98.79455,28.99132],[98.81103,28.94086],[98.8385,28.81098],[98.9154,28.80376],[98.92364,28.83023],[98.96759,28.83264],[98.96759,28.86632],[98.9154,28.89518],[98.92913,28.97931],[99.01153,29.03936],[98.96759,29.13057],[98.95935,29.17374],[98.97583,29.20012],[99.02252,29.19053],[99.039,29.20491],[99.1159,29.2193],[99.07196,29.31035],[99.04724,29.51372],[99.05548,29.5639],[98.99505,29.65464],[98.99505,29.73576],[99.01702,29.79536],[99.01153,29.81681],[99.06921,29.93351],[99.04724,29.94541],[99.039,30.07622],[98.99505,30.15225],[98.97308,30.25195],[98.98407,30.28516],[98.9566,30.4392],[98.92913,30.56699],[98.93737,30.59063],[98.91815,30.61427],[98.90441,30.68988],[98.96484,30.73239],[98.9566,30.77251],[98.89892,30.78903],[98.84948,30.85272],[98.77258,30.89986],[98.80828,30.98702],[98.74237,31.05058],[98.70941,31.12114],[98.6325,31.17521],[98.60229,31.194],[98.62152,31.21515],[98.60229,31.23394],[98.638,31.33721],[98.69293,31.32783],[98.77533,31.25507],[98.80554,31.2762],[98.81378,31.30906],[98.88244,31.3677],[98.7918,31.47083],[98.70666,31.51299],[98.69018,31.55045],[98.55285,31.65104],[98.55285,31.69078],[98.42651,31.83089],[98.40454,31.90787],[98.43475,31.92186],[98.43475,32.00341],[98.40179,32.04533],[98.30841,32.1198],[98.22876,32.23603],[98.21777,32.34748],[98.12164,32.39851],[97.95135,32.47732],[97.74536,32.52828],[97.66571,32.55144],[97.60528,32.61624],[97.52838,32.63243],[97.4295,32.70642],[97.38006,32.82421],[97.3883,32.83344],[97.37182,32.88189],[97.35534,32.89803],[97.36908,32.96028],[97.51739,32.99023],[97.50366,33.02248],[97.53662,33.03629],[97.52014,33.09154],[97.48718,33.10764],[97.48718,33.16514],[97.57782,33.22949],[97.63275,33.3397],[97.67395,33.34888],[97.7536,33.40851],[97.62725,33.45894],[97.60528,33.45894],[97.55859,33.47039],[97.5119,33.51849],[97.52563,33.57343],[97.41027,33.61004],[97.43225,33.68092],[97.40478,33.80425],[97.36908,33.82479],[97.36908,33.84532],[97.39654,33.8476],[97.39654,33.87497],[97.60253,33.93196],[97.64099,33.92968],[97.66021,33.96158],[97.65472,34.00941],[97.69043,34.01396],[97.70416,34.05038],[97.66571,34.12317],[97.78106,34.16863],[97.81127,34.20725],[97.95135,34.1959],[98.04473,34.11407],[98.08868,34.12317],[98.20953,34.08223],[98.3963,34.09133],[98.39355,34.05721],[98.44299,34.0003],[98.41552,33.94336],[98.42651,33.90233],[98.41278,33.86813],[98.4375,33.84076],[98.45672,33.84988],[98.49517,33.77001],[98.52264,33.77001],[98.5968,33.71748],[98.59954,33.68321],[98.66272,33.65349],[98.61877,33.63062],[98.66272,33.58487],[98.64349,33.54139],[98.73138,33.47956],[98.74237,33.41081],[98.78356,33.36265],[98.76434,33.28002],[98.80828,33.26165],[98.80554,33.20881],[98.833,33.19043],[98.89068,33.13755],[98.97033,33.10994],[99.03625,33.08693],[99.20379,33.03399],[99.27246,32.87958],[99.37957,32.90034],[99.45648,32.85882],[99.55535,32.84498],[99.58282,32.7942],[99.70916,32.76418],[99.73114,32.7249],[99.79431,32.87266],[99.76684,32.94184],[99.77783,32.95797],[99.81079,32.94414],[99.84649,32.94414],[99.8822,33.00175],[99.8767,33.0432],[99.90966,33.0455],[99.91241,33.02017],[99.9646,32.94414],[100.03601,32.92109],[100.02777,32.90034],[100.11291,32.86113],[100.14312,32.72259],[100.09643,32.66943],[100.11291,32.64168],[100.20355,32.61161],[100.23101,32.69486],[100.25299,32.7457],[100.33813,32.72722],[100.39856,32.75725],[100.37933,32.69717],[100.42053,32.73184],[100.47821,32.67868],[100.54687,32.57227],[100.66223,32.52134],[100.65673,32.5607],[100.66497,32.62549],[100.71441,32.6093],[100.71716,32.63937],[100.68695,32.67637],[100.93414,32.61161],[101.07696,32.67868],[101.15112,32.66018],[101.22528,32.73415],[101.23077,32.8219],[101.21704,32.85651],[101.17034,32.90265],[101.13189,32.91187],[101.13464,32.99023],[101.18682,32.98793],[101.18133,33.05011],[101.14013,33.06162],[101.15112,33.08923],[101.17309,33.09844],[101.12365,33.19502],[101.12365,33.22949],[101.18408,33.26625],[101.29119,33.26625],[101.38732,33.15364],[101.39282,33.21341],[101.48895,33.2272],[101.62902,33.09844],[101.66198,33.14674],[101.65649,33.16054],[101.6867,33.18583],[101.68121,33.20422],[101.71966,33.2203],[101.73889,33.27313],[101.65374,33.31446],[101.66473,33.37411],[101.69494,33.43831],[101.77459,33.44977],[101.78009,33.52765],[101.76635,33.54368],[101.78833,33.55741],[101.81304,33.54826],[101.83227,33.55741],[101.83227,33.58259],[101.846,33.60318],[101.90094,33.5597],[101.90643,33.48872],[101.95037,33.4429],[101.91741,33.42914],[101.91741,33.40393],[101.88446,33.37182],[101.87347,33.30987],[101.77185,33.27084],[101.78558,33.22949],[101.83227,33.20422],[101.83227,33.12605],[101.87072,33.10534],[101.8927,33.13985],[101.92016,33.15134],[101.93664,33.18813],[101.99157,33.19962],[102.07946,33.19732],[102.10968,33.28691],[102.13989,33.27773],[102.16461,33.24098],[102.20855,33.23179],[102.19757,33.32134],[102.18109,33.33741],[102.22229,33.36035],[102.26348,33.41081],[102.3706,33.39475],[102.47497,33.46581],[102.44751,33.52765],[102.47772,33.53452],[102.44201,33.57572],[102.33764,33.61233],[102.32116,33.66949],[102.33764,33.7289],[102.29644,33.71063],[102.2882,33.73347],[102.32116,33.74946],[102.29644,33.77914],[102.23877,33.79284],[102.26074,33.8362],[102.13989,33.97069],[102.22778,33.96386],[102.24975,33.98208],[102.38983,33.97753],[102.40905,34.03445],[102.43927,34.08678],[102.46948,34.07086],[102.60681,34.1027],[102.65075,34.08451],[102.65075,34.12544],[102.59582,34.15727],[102.73315,34.23451],[102.78259,34.23451],[102.79357,34.26629],[102.854,34.2731],[102.86773,34.30941],[102.92266,34.31168],[102.98034,34.25267],[102.97485,34.1959],[103.12042,34.1709],[103.12591,34.10043],[103.17535,34.07768],[103.12866,34.06631],[103.12042,34.03672],[103.14514,34.03672],[103.15887,34.00713],[103.11767,33.9593],[103.1314,33.93196],[103.17535,33.92285],[103.14788,33.82251],[103.22204,33.79056],[103.24127,33.81338],[103.28247,33.79969],[103.28247,33.77458],[103.3374,33.74261],[103.43078,33.75631],[103.46649,33.80653],[103.51318,33.81338],[103.55438,33.73347],[103.52417,33.68092],[103.54339,33.66949],[103.58734,33.72434],[103.76586,33.66492],[103.87573,33.69006],[103.9801,33.67178],[104.057,33.69006],[104.18335,33.59631],[104.15588,33.53681],[104.18335,33.46581],[104.2163,33.4406],[104.2218,33.40851],[104.27124,33.40163],[104.2987,33.33741],[104.32891,33.32823],[104.36187,33.3397],[104.42779,33.33052],[104.40307,33.30987],[104.41406,33.28461],[104.35089,33.29609],[104.33166,33.31446],[104.30419,33.30298],[104.33166,33.24557],[104.32067,33.2226],[104.37561,33.10304],[104.33715,33.03629],[104.39758,33.02939],[104.42779,33.01787],[104.38659,32.99023],[104.37561,32.94875],[104.29595,32.95106],[104.27948,32.90034],[104.2987,32.83344],[104.36187,32.82421],[104.4635,32.75032],[104.51019,32.75956],[104.53491,32.72259],[104.57611,32.73184],[104.59259,32.7018],[104.65026,32.6625],[104.6997,32.67406],[104.7409,32.63474],[104.83429,32.65787],[104.88647,32.6093],[105.03479,32.65093],[105.08422,32.63012],[105.11169,32.58847],[105.21331,32.63474],[105.2243,32.66481],[105.25726,32.65325],[105.34515,32.6833],[105.36438,32.70873],[105.46325,32.73184],[105.45776,32.76649],[105.41381,32.77803],[105.40283,32.83113],[105.38085,32.87958],[105.40557,32.8865],[105.41381,32.93031],[105.46875,32.93262],[105.49346,32.91187],[105.53192,32.91648],[105.60058,32.87036],[105.6665,32.89573],[105.75714,32.90726],[105.8258,32.95567],[105.87249,32.93723],[105.92468,32.99714],[105.92193,33.10994],[105.89996,33.14905],[105.92468,33.19043],[105.96038,33.14445],[105.96588,33.19962],[105.91095,33.23868],[105.85327,33.24098],[105.73791,33.29839],[105.7489,33.342],[105.7077,33.38788],[105.83129,33.3787],[105.8258,33.45665],[105.96038,33.60775],[106.03179,33.59631],[106.08398,33.6169],[106.12518,33.5986],[106.1087,33.57115],[106.1444,33.58487],[106.14715,33.55512],[106.20208,33.54597],[106.29821,33.60546],[106.35864,33.58716],[106.3861,33.61004],[106.44653,33.62148],[106.46026,33.52307],[106.54266,33.5162],[106.5866,33.60775],[106.53167,33.6992],[106.48773,33.71063],[106.48773,33.77001],[106.45752,33.80425],[106.48773,33.84304],[106.47125,33.87953],[106.43005,33.86585],[106.41357,33.90461],[106.47399,33.97069],[106.47949,34.039],[106.50695,34.06631],[106.50146,34.10953],[106.56463,34.10725],[106.58386,34.1459],[106.54541,34.25267],[106.49597,34.24132],[106.52618,34.28899],[106.58111,34.27764],[106.60034,34.25267],[106.6333,34.25721],[106.66351,34.23905],[106.70471,34.30033],[106.69097,34.3389],[106.72119,34.3593],[106.71844,34.37064],[106.62506,34.40464],[106.60583,34.45448],[106.47674,34.52239],[106.33392,34.51561],[106.33941,34.55633],[106.31744,34.58573],[106.4273,34.65128],[106.47399,34.63546],[106.44104,34.68291],[106.51245,34.74161],[106.5509,34.74386],[106.58111,34.77094],[106.55365,34.82056],[106.56189,34.86114],[106.52618,34.88367],[106.48498,34.976],[106.55365,35.08845],[106.64154,35.07046],[106.71569,35.09968],[106.83654,35.0817],[106.89422,35.08395],[106.9931,35.05922],[107.01782,35.02549],[107.09198,35.021],[107.08374,34.98725],[107.16613,34.94223],[107.20733,34.88142],[107.28973,34.93548],[107.35015,34.93548],[107.36114,34.91746],[107.38861,34.93097],[107.52868,34.91296],[107.56713,34.96699],[107.62207,34.96249],[107.62756,34.91746],[107.68524,34.94899],[107.86377,34.99175],[107.84454,35.02549],[107.80883,35.01874],[107.7127,35.15135],[107.65502,35.24337],[107.73193,35.27477],[107.73193,35.3084],[107.872,35.25683],[107.96814,35.24113],[108.08898,35.27477],[108.17962,35.31064],[108.25103,35.25683],[108.34167,35.29719],[108.44879,35.27701],[108.55316,35.29719],[108.57513,35.28822],[108.61084,35.32633],[108.60809,35.36441],[108.63281,35.42039],[108.60534,35.50316],[108.63281,35.53669],[108.53668,35.60595],[108.5202,35.72198],[108.52844,35.83785],[108.49273,35.88237],[108.51745,35.90907],[108.56414,35.92242],[108.58337,35.95133],[108.64929,35.94688],[108.66027,35.99578],[108.68774,36.018],[108.68774,36.08906],[108.70422,36.13787],[108.64929,36.25534],[108.64929,36.37927],[108.62457,36.43012],[108.50921,36.46988],[108.50372,36.4257],[108.40759,36.44779],[108.3609,36.55377],[108.22357,36.57583],[108.22357,36.63536],[108.15765,36.55818],[108.09173,36.61332],[108.06152,36.59568],[108.01208,36.63095],[108.02581,36.6574],[108.00659,36.68824],[107.95166,36.6596],[107.91046,36.74108],[107.67425,36.83347],[107.6358,36.82247],[107.58087,36.83786],[107.53418,36.82467],[107.53418,36.87302],[107.48748,36.90158],[107.30621,36.92574],[107.2705,37.099],[107.276,37.12966],[107.29797,37.10338],[107.33642,37.14499],[107.33093,37.18439],[107.26776,37.2347],[107.3117,37.24344],[107.25677,37.33522],[107.28698,37.48575],[107.34466,37.52279],[107.37213,37.58594],[107.32818,37.58594],[107.31445,37.6077],[107.42431,37.65555],[107.38311,37.69251],[107.45727,37.68599],[107.49847,37.7642],[107.62207,37.77939],[107.66052,37.851],[107.65502,37.86401],[107.69622,37.88569],[107.74017,37.84883],[107.98736,37.78374],[108.02856,37.69251],[108.01483,37.66642],[108.02032,37.65338],[108.13842,37.62075],[108.21533,37.66208],[108.29772,37.66208],[108.32519,37.63163],[108.43505,37.64468],[108.53118,37.68816],[108.62731,37.6512],[108.73168,37.69034],[108.78662,37.68164],[108.78112,37.75768],[108.80035,37.79459],[108.80035,37.92686],[108.82782,37.98534],[108.8031,38.04376],[108.87725,38.02645],[108.94317,37.9182],[109.01184,37.97235],[109.0393,38.02429],[109.07226,38.03078],[109.06951,38.10214],[108.94043,38.16911],[108.94043,38.21228],[108.97888,38.25112],[108.95965,38.26621],[109.01184,38.36965],[109.05304,38.39549],[109.06402,38.44283],[109.27551,38.61687],[109.3222,38.59755],[109.3634,38.6233],[109.33044,38.66621],[109.33044,38.69194],[109.40185,38.71551],[109.51171,38.83328],[109.54742,38.81189],[109.62982,38.85895],[109.682,38.93377],[109.682,38.96154],[109.66278,38.99784],[109.86053,39.12793],[109.89898,39.10022],[109.92095,39.11514],[109.888,39.14284],[109.95666,39.18969],[109.87152,39.24501],[109.89898,39.27479],[109.96215,39.2131],[110.05004,39.21735],[110.2066,39.28116],[110.16265,39.38526],[110.13519,39.39163],[110.1242,39.42982],[110.14343,39.45104],[110.26428,39.41922],[110.38513,39.30667],[110.42083,39.34704],[110.43182,39.38314],[110.48675,39.3619],[110.52795,39.38314],[110.5664,39.31304],[110.62957,39.27053],[110.68725,39.26415],[110.7669,39.37677],[110.89599,39.50827],[111.02508,39.56547],[111.14868,39.5824],[111.14593,39.52946],[111.05255,39.44255],[111.11297,39.35978],[111.18164,39.42558],[111.34643,39.42558],[111.37939,39.4786],[111.42334,39.50827],[111.44256,39.64165],[111.51123,39.66702],[111.62384,39.63319],[111.65679,39.64165],[111.78588,39.58875],[111.84082,39.61626],[111.93145,39.61626],[111.92321,39.66491],[111.96441,39.6945],[111.96716,39.79587],[112.03582,39.8465],[112.04681,39.88655],[112.22808,40.13689],[112.24182,40.17257],[112.29675,40.21034],[112.31323,40.25647],[112.34344,40.25856],[112.4533,40.30257],[112.51098,40.26485],[112.62634,40.2376],[112.74169,40.16628],[112.84881,40.20614],[112.89825,40.33189],[113.24981,40.4114],[113.31024,40.32142],[113.55743,40.35073],[113.68652,40.44276],[113.76892,40.47411],[113.79364,40.51797],[113.86779,40.46157],[113.95019,40.52006],[114.0628,40.5305],[114.07928,40.5618],[114.04907,40.60352],[114.07653,40.6598],[114.0628,40.71811],[114.13147,40.73477],[114.10675,40.80133],[114.07928,40.79093],[114.04632,40.83043],[114.07653,40.85744],[114.04632,40.92596],[113.9859,40.94463],[113.97491,40.97989],[113.81561,41.10005],[113.86779,41.11039],[113.91998,41.16624],[113.9859,41.18485],[114.01886,41.23444],[113.9804,41.27161],[113.97216,41.2427],[113.95568,41.28812],[113.9035,41.31082],[113.9392,41.39123],[113.86505,41.43037],[113.93096,41.488],[114.03533,41.53325],[114.12597,41.53325],[114.23309,41.51474],[114.2221,41.61338],[114.25506,41.6216],[114.21386,41.68932],[114.23858,41.70982],[114.19738,41.7836],[114.35394,41.95132],[114.41436,41.94314],[114.50775,41.97991],[114.47753,42.03909],[114.51324,42.11044],[114.57641,42.13896],[114.64508,42.10841],[114.68353,42.12063],[114.74945,42.11248],[114.80163,42.14915],[114.85931,42.10637],[114.906,42.01461],[114.93347,41.84296],[114.87304,41.80612],[114.906,41.75287],[114.89776,41.64623],[114.85656,41.5949],[114.91149,41.61133],[115.04882,41.60928],[115.09002,41.6216],[115.19714,41.60312],[115.21637,41.57436],[115.2658,41.58874],[115.27404,41.63392],[115.3125,41.59285],[115.38116,41.59285],[115.35095,41.64007],[115.36468,41.67291],[115.31799,41.69547],[115.3482,41.71393],[115.43609,41.72623],[115.57617,41.80817],[115.65033,41.8184],[115.6723,41.85933],[115.8316,41.93089],[115.91125,41.9411],[116.02111,41.78564],[116.10076,41.7754],[116.12548,41.80203],[116.10076,41.84501],[116.13647,41.86342],[116.20239,41.86342],[116.22985,41.93497],[116.29852,41.96765],[116.32049,42.00032],[116.37542,42.00848],[116.42211,41.98603],[116.38641,41.94519],[116.44683,41.93497],[116.49902,41.97786],[116.54296,41.93089],[116.72699,41.95744],[116.74621,41.98195],[116.80389,41.98399],[116.84234,42.00644],[116.86431,42.00644],[116.88903,42.0921],[116.84509,42.15322],[116.82312,42.16136],[116.7984,42.198],[116.91375,42.19596],[116.9165,42.22851],[116.88079,42.35854],[116.91925,42.41129],[117.00164,42.42345],[117.00988,42.45791],[117.0758,42.46196],[117.09777,42.47614],[117.18841,42.46804],[117.2763,42.48425],[117.36145,42.45386],[117.41638,42.47007],[117.41363,42.51462],[117.3999,42.52474],[117.46582,42.60566],[117.55371,42.60768],[117.6828,42.58544],[117.80914,42.62587],[117.78717,42.58746],[118.02063,42.38695],[118.00689,42.35448],[118.06457,42.29153],[117.96844,42.23868],[118.10852,42.17358],[118.08654,42.10841],[118.15521,42.08191],[118.11401,42.03705],[118.19366,42.02889],[118.21838,42.06152],[118.21563,42.07987],[118.26232,42.0921],[118.30078,42.05133],[118.24035,42.02277],[118.30902,41.99624],[118.30902,41.93497],[118.26232,41.91862],[118.33648,41.8716],[118.28704,41.76516],[118.26232,41.75902],[118.23211,41.80817],[118.15246,41.81022],[118.12225,41.73442],[118.1607,41.67906],[118.21838,41.64213],[118.22113,41.58874],[118.31176,41.56614],[118.30627,41.49829],[118.26782,41.48389],[118.35022,41.43037],[118.33923,41.3397],[118.39141,41.30669],[118.41339,41.32732],[118.53149,41.34588],[118.67157,41.35],[118.75946,41.32113],[118.77319,41.35],[118.85009,41.36856],[118.87756,41.3005],[119.21264,41.27987],[119.21539,41.30876],[119.24285,41.32113],[119.32525,41.33557],[119.31152,41.40359],[119.36645,41.42007],[119.40765,41.49623],[119.35272,41.57025],[119.42138,41.56819],[119.30877,41.64213],[119.29779,41.79384],[119.33624,41.92271],[119.32525,41.97378],[119.38568,42.04929],[119.38018,42.11044],[119.31427,42.12063],[119.24285,42.20614],[119.34448,42.30169],[119.42413,42.31387],[119.50653,42.38898],[119.57519,42.36666],[119.55047,42.29965],[119.64935,42.24071],[119.84985,42.21631],[119.86633,42.16951],[119.84161,42.14304],[119.83886,42.10229],[119.95697,41.96357],[119.95697,41.91862],[119.99542,41.91045],[120.02563,41.82454],[120.04486,41.82454],[120.04486,41.76926],[120.02288,41.73442],[120.09429,41.69137],[120.13824,41.72418],[120.12451,41.76721],[120.23712,41.87569],[120.2893,41.88592],[120.25634,41.90636],[120.36895,41.99216],[120.41564,41.99011],[120.46508,42.02277],[120.45959,42.05337],[120.49255,42.06152],[120.46783,42.09822],[120.58593,42.1634],[120.63537,42.15933],[120.75073,42.22851],[120.79467,42.22445],[120.94574,42.27324],[121.03637,42.24681],[121.18743,42.33215],[121.2149,42.36463],[121.30279,42.39506],[121.31927,42.45386],[121.48681,42.49842],[121.59942,42.51057],[121.67083,42.4417],[121.70929,42.43764],[121.74224,42.49437],[121.85485,42.53486],[121.91803,42.59757],[121.92352,42.66022],[121.98394,42.7006],[122.06634,42.71473],[122.18444,42.68647],[122.20916,42.72482],[122.26135,42.69858],[122.34649,42.67839],[122.40417,42.69253],[122.40142,42.71271],[122.4591,42.76919],[122.37121,42.77524],[122.35473,42.83368],[122.46185,42.84576],[122.57446,42.82763],[122.56897,42.79338],[122.63763,42.77524],[122.72552,42.7833],[122.84637,42.71473],[122.87933,42.76717],[123.04412,42.77121],[123.23364,42.83569],[123.17871,42.86187],[123.18695,42.93832],[123.26385,42.99058],[123.46984,43.03878],[123.57147,43.00464],[123.6676,43.17914],[123.65936,43.20918],[123.69506,43.2872],[123.69506,43.3751],[123.61541,43.36113],[123.54675,43.41103],[123.51928,43.39706],[123.48358,43.44893],[123.45062,43.44294],[123.42865,43.40903],[123.37371,43.47285],[123.32977,43.4868],[123.30505,43.54655],[123.35723,43.57243],[123.44512,43.54655],[123.45611,43.57243],[123.41766,43.60823],[123.48083,43.59232],[123.51379,43.5963],[123.53302,43.62812],[123.52478,43.69568],[123.48358,43.74133],[123.49456,43.77902],[123.45886,43.82263],[123.4671,43.86423],[123.37371,43.96712],[123.40118,43.98491],[123.32977,44.03034],[123.32428,44.08561],[123.39019,44.15659],[123.29956,44.19795],[123.26934,44.25503],[123.20068,44.34153],[123.12927,44.36313],[123.11554,44.39846],[123.13751,44.41416],[123.13201,44.51021],[123.04138,44.50238],[122.8601,44.40043],[122.75299,44.36902],[122.68432,44.2865],[122.48931,44.23929],[122.31353,44.23339],[122.27233,44.2629],[122.29705,44.31795],[122.28607,44.47495],[122.2174,44.48866],[122.2229,44.52588],[122.20092,44.5572],[122.12951,44.58655],[122.10205,44.67646],[122.15698,44.72527],[122.14874,44.74283],[122.10205,44.74088],[122.11029,44.76818],[122.13775,44.76038],[122.16247,44.77793],[122.10479,44.78573],[122.04711,44.90646],[122.07733,44.9123],[122.07733,45.00753],[122.12677,45.06576],[122.11029,45.13943],[122.14325,45.1801],[122.19268,45.17816],[122.22564,45.20719],[122.23938,45.27295],[122.14599,45.29807],[122.14599,45.3753],[122.17895,45.41194],[122.16522,45.44471],[122.09106,45.46591],[122.00592,45.49864],[121.99493,45.55252],[121.96746,45.5929],[121.99768,45.59866],[122.00592,45.61788],[121.95098,45.71576],[121.80816,45.71001],[121.81091,45.69467],[121.72027,45.70042],[121.64337,45.74836],[121.65161,45.77518],[121.69555,45.76752],[121.75048,45.79434],[121.77795,45.84984],[121.81366,45.88044],[121.80542,45.96642],[121.76147,45.99505],[121.83013,46.02557],[121.86859,46.00268],[121.91528,46.0065],[122.00042,45.97978],[122.08557,45.92249],[122.09381,45.88044],[122.21191,45.84602],[122.25036,45.80008],[122.341,45.85558],[122.37121,45.85941],[122.35748,45.91294],[122.43988,45.91676],[122.49755,45.85749],[122.5003,45.78667],[122.56073,45.81922],[122.63214,45.76943],[122.67883,45.70809],[122.73651,45.70234],[122.79418,45.7656],[122.75848,45.84028],[122.77771,45.85558],[122.80242,45.85558],[122.83264,45.90338],[122.79693,46.07323],[123.04687,46.09799],[123.07159,46.12274],[123.11279,46.13226],[123.10455,46.17602],[123.12652,46.17602],[123.12927,46.21595],[123.17596,46.25014],[123.14575,46.29571],[123.00567,46.44164],[123.00567,46.57019],[123.04412,46.57963],[123.05236,46.62869],[123.07708,46.62869],[123.09906,46.60794],[123.18145,46.60794],[123.21716,46.58718],[123.28033,46.62114],[123.27484,46.65509],[123.31604,46.6664],[123.37646,46.67771],[123.59893,46.69466],[123.63739,46.73421],[123.62915,46.80758],[123.57971,46.82637],[123.62365,46.84892],[123.60443,46.89773],[123.57147,46.89773],[123.56323,46.83389],[123.51654,46.82449],[123.47808,46.8508],[123.53027,46.95026],[123.4671,46.95401],[123.40667,46.93713],[123.37921,46.84516],[123.3435,46.83201],[123.3023,46.8677],[123.22265,46.85643],[123.16772,46.73421],[123.07708,46.74362],[123.0194,46.72103],[122.98645,46.76432],[122.92053,46.79253],[122.88482,46.89586],[122.90679,46.95963],[122.84637,46.94463],[122.80242,46.94088],[122.76947,46.98774],[122.85736,47.0645],[122.64038,47.11313],[122.53326,47.19157],[122.41516,47.34254],[122.50579,47.39649],[122.57171,47.5376],[122.76397,47.61357],[122.84637,47.67648],[122.98919,47.7153],[123.06335,47.75409],[123.16497,47.77994],[123.24188,47.8574],[123.29681,47.95498],[123.54126,48.02483],[123.75274,48.19904],[124.07684,48.43466],[124.26086,48.53479],[124.31304,48.50022],[124.32128,48.34894],[124.41467,48.2393],[124.41467,48.18623],[124.4696,48.17341],[124.47235,48.13493],[124.43115,48.1276],[124.42016,48.08725],[124.50531,48.12026],[124.52728,48.14959],[124.52179,48.16791],[124.57397,48.25759],[124.51904,48.40003],[124.53826,48.53115],[124.52453,48.54934],[124.60693,48.65105],[124.61792,48.75799],[124.65087,48.78153],[124.65637,48.83399],[124.69482,48.84122],[124.70581,48.91708],[124.7525,48.92069],[124.77447,49.00184],[124.82666,49.04867],[124.80743,49.11523],[124.84863,49.1314],[124.86511,49.17093],[124.91455,49.18708],[124.98596,49.16374],[125.03265,49.17272],[125.04638,49.14937],[125.12054,49.12601],[125.21392,49.19247],[125.21667,49.28214],[125.26062,49.32154],[125.27435,49.37879],[125.26336,49.44848],[125.23315,49.4931],[125.22491,49.58934],[125.14801,49.62672],[125.12603,49.67118],[125.19195,49.64451],[125.21118,49.67118],[125.22216,49.72447],[125.1947,49.73868],[125.22766,49.78126],[125.17547,49.83266],[125.23864,49.85038],[125.1892,49.95652],[125.2359,49.96358],[125.28808,50.01479],[125.24963,50.05008],[125.28259,50.05184],[125.3128,50.04655],[125.33752,50.06419],[125.27435,50.08005],[125.29632,50.1329],[125.36224,50.1417],[125.34301,50.16458],[125.45288,50.22612],[125.48034,50.29811],[125.53527,50.36298],[125.52703,50.41201],[125.57922,50.40326],[125.57647,50.44526],[125.63415,50.44526],[125.74401,50.52215],[125.76599,50.51691],[125.8319,50.56056],[125.78796,50.67905],[125.82641,50.69645],[125.76873,50.74862],[125.79071,50.7712],[125.85113,50.75904],[125.96099,50.8857],[126.01867,50.90303],[126.06536,50.97399],[126.04888,50.98609],[126.05438,51.03794],[125.97473,51.08109],[125.99121,51.11731],[125.93627,51.11386],[125.92529,51.13283],[125.88134,51.14317],[125.8374,51.22408],[125.76049,51.2344],[125.76324,51.25675],[125.68908,51.33232],[125.57647,51.44544],[125.38421,51.5856],[125.35949,51.61972],[125.31005,51.6129],[125.28533,51.63336],[125.13153,51.63677],[125.12878,51.66233],[125.09857,51.66063],[125.06012,51.60096],[125.07385,51.5395],[124.92004,51.4848],[124.94476,51.44544],[124.88983,51.4249],[124.87335,51.37692],[124.77996,51.39235],[124.73602,51.34777],[124.6289,51.32374],[124.55474,51.3752],[124.4284,51.35291],[124.41192,51.26878],[124.2691,51.30829],[124.23339,51.35291],[124.1043,51.34605],[124.07684,51.32203],[123.91754,51.30486],[123.84338,51.36663],[123.78845,51.35806],[123.71704,51.39749],[123.65936,51.31859],[123.29681,51.25675],[123.06335,51.32203],[123.01391,51.31173],[122.96447,51.35463],[122.96722,51.39577],[122.90954,51.41633],[122.8656,51.47625],[122.88208,51.54462],[122.82989,51.5856],[122.85186,51.60778],[122.75848,51.73723],[122.76947,51.77973],[122.71179,51.89174],[122.73376,51.92394],[122.72277,51.97811],[122.67883,51.97303],[122.65411,52.05586],[122.62115,52.07275],[122.64312,52.10819],[122.63214,52.13517],[122.73101,52.15202],[122.77496,52.18572],[122.76672,52.23452],[122.78869,52.2463],[122.77496,52.26647],[122.70904,52.2547],[122.68158,52.27824],[122.57995,52.26143],[122.54974,52.28664],[122.47558,52.30008],[122.48382,52.34373],[122.44262,52.39236],[122.40966,52.37392],[122.33551,52.41582],[122.31079,52.47776],[122.20092,52.46939],[122.16247,52.52457],[122.1405,52.51454],[122.09381,52.42419],[122.04162,52.41414],[122.04162,52.37224],[121.97021,52.33701],[121.94274,52.28328],[121.83837,52.28664],[121.71752,52.32023],[121.71203,52.34708],[121.65435,52.39236],[121.67083,52.41917],[121.64611,52.44094],[121.52801,52.46103],[121.50054,52.48445],[121.42639,52.50284],[121.40716,52.5229],[121.34948,52.53126],[121.32202,52.57134],[121.28356,52.58302],[121.22589,52.57301],[121.18743,52.5947],[121.28082,52.64639],[121.30279,52.68637],[121.38244,52.68637],[121.45935,52.74626],[121.47857,52.77452],[121.51153,52.7795],[121.60217,52.82932],[121.62139,52.85918],[121.61041,52.89067],[121.67083,52.92049],[121.71478,52.99825],[121.78894,53.02139],[121.79718,53.04451],[121.8164,53.06102],[121.7807,53.09072],[121.78619,53.11051],[121.75323,53.14841],[121.72027,53.14677],[121.6571,53.17805],[121.65985,53.1978],[121.67358,53.20438],[121.67633,53.24056],[121.64062,53.26192],[121.60766,53.26357],[121.57196,53.29477],[121.51153,53.3161],[121.47377,53.33128],[121.5905,53.35178],[121.62277,53.36571],[121.65298,53.37267],[121.67633,53.38783],[121.69487,53.39029],[121.73126,53.38496],[121.7498,53.38906],[121.81091,53.41444],[121.84524,53.41608],[121.85966,53.42385],[121.87477,53.42549],[121.90498,53.42058],[121.94755,53.42876],[122.0169,53.42549],[122.05879,53.41894],[122.09449,53.42221],[122.11303,53.4304],[122.13569,53.44676],[122.16316,53.4717],[122.21878,53.46066],[122.2895,53.47864],[122.30461,53.4958],[122.34787,53.50275],[122.37258,53.46802],[122.40829,53.45248],[122.41928,53.4443],[122.45155,53.44185],[122.48451,53.45616],[122.52433,53.45044],[122.58476,53.4627],[122.67608,53.45657],[122.73788,53.46229],[122.82165,53.45453],[122.86697,53.45862],[122.91503,53.46883],[122.9322,53.48069],[123.00636,53.49621],[123.07777,53.5056],[123.13613,53.49621],[123.16909,53.50683],[123.18763,53.5252],[123.22814,53.54928],[123.26866,53.56111],[123.37303,53.53704],[123.45199,53.53418],[123.46092,53.50928],[123.47602,53.49621],[123.49662,53.49621],[123.50349,53.50724],[123.48014,53.52398],[123.48907,53.54561],[123.51928,53.55458],[123.54812,53.54112],[123.54675,53.52765],[123.52478,53.50806],[123.52409,53.49866],[123.5392,53.49621],[123.5646,53.50315],[123.57971,53.54602],[123.61816,53.54806],[123.67034,53.51867],[123.68133,53.50111],[123.7033,53.49131],[123.73764,53.49785],[123.80767,53.48436],[123.84956,53.48845],[123.88801,53.47783],[123.99307,53.42099],[123.99993,53.40666],[124.01641,53.39438],[124.04594,53.40011],[124.07341,53.38988],[124.07821,53.37104],[124.09675,53.36366],[124.1043,53.34973],[124.13246,53.34645],[124.16198,53.36571],[124.23133,53.37718],[124.24644,53.37226],[124.25056,53.36325],[124.28695,53.34194],[124.31098,53.33292],[124.3357,53.3079],[124.33708,53.29477],[124.35768,53.27835],[124.35836,53.26192],[124.37278,53.25289],[124.40025,53.24837],[124.40712,53.24385],[124.403,53.22864],[124.43252,53.22124],[124.46342,53.2159],[124.47921,53.21631],[124.48745,53.20562],[124.5211,53.20109],[124.58084,53.20603],[124.63302,53.20685],[124.67697,53.20068],[124.72023,53.18628],[124.70581,53.16035],[124.71611,53.148],[124.73808,53.14429],[124.75387,53.13647],[124.82597,53.14388],[124.84657,53.11875],[124.85549,53.09402],[124.88777,53.09732],[124.90287,53.11587],[124.87678,53.162],[124.953,53.18587],[124.96398,53.19245],[125.08209,53.20274],[125.16311,53.20192],[125.20431,53.19204],[125.2153,53.18464],[125.26336,53.16818],[125.29014,53.15088],[125.37185,53.12905],[125.39794,53.12617],[125.40481,53.11834],[125.44189,53.10598],[125.4927,53.09691],[125.49476,53.07464],[125.50437,53.04823],[125.51879,53.04864],[125.56411,53.07464],[125.60668,53.08041],[125.63278,53.05978],[125.63552,53.03708],[125.65887,53.02263],[125.68359,53.00114],[125.72135,52.99495],[125.73989,52.98544],[125.73234,52.97634],[125.72341,52.96849],[125.72273,52.95649],[125.72753,52.94408],[125.71655,52.93332],[125.67398,52.92463],[125.65544,52.91552],[125.65612,52.88446],[125.65544,52.8712],[125.67398,52.85835],[125.709,52.877],[125.74333,52.87783],[125.76118,52.8944],[125.79277,52.89274],[125.82298,52.89647],[125.84838,52.8886],[125.8422,52.87741],[125.85456,52.8571],[125.87516,52.83969],[125.91224,52.81811],[125.93009,52.78283],[125.93833,52.77909],[125.96305,52.75832],[125.98159,52.75749],[126.00013,52.77452],[126.00769,52.79155],[126.04614,52.79694],[126.10519,52.76995],[126.10725,52.75541],[126.03858,52.74419],[126.04545,52.71882],[126.06674,52.6922],[126.05781,52.67721],[125.99258,52.67638],[125.96649,52.65972],[125.95962,52.62681],[125.97473,52.60471],[126.01043,52.58052],[126.03035,52.57426],[126.04888,52.58552],[126.05369,52.60096],[126.06262,52.60388],[126.09626,52.59178],[126.11206,52.58094],[126.13403,52.57342],[126.20201,52.53126],[126.20338,52.52207],[126.18759,52.49908],[126.18141,52.47441],[126.19171,52.46605],[126.20956,52.4673],[126.21849,52.4719],[126.25968,52.47399],[126.28715,52.44303],[126.3153,52.42461],[126.34895,52.38272],[126.34002,52.35169],[126.31462,52.34331],[126.31118,52.32652],[126.31942,52.30763],[126.34758,52.3026],[126.38534,52.3026],[126.42654,52.29672],[126.43341,52.2837],[126.42242,52.27698],[126.40937,52.28118],[126.39427,52.27866],[126.37573,52.26899],[126.3462,52.26227],[126.30706,52.23873],[126.29264,52.21518],[126.3002,52.20339],[126.35307,52.18656],[126.39633,52.18445],[126.41143,52.17435],[126.45469,52.16129],[126.48834,52.15961],[126.55082,52.13433],[126.55632,52.12295],[126.55014,52.10777],[126.53366,52.09596],[126.53434,52.06937],[126.50688,52.06262],[126.49932,52.05629],[126.51306,52.04657],[126.511,52.03559],[126.48559,52.03982],[126.44989,52.03264],[126.43821,52.01743],[126.44027,52.00306],[126.46225,51.98149],[126.45469,51.96415],[126.45332,51.94976],[126.46568,51.93622],[126.49589,51.92775],[126.50962,51.90488],[126.5364,51.88539],[126.56318,51.85232],[126.5673,51.83365],[126.5728,51.82092],[126.58721,51.81201],[126.62017,51.77208],[126.65313,51.76189],[126.65863,51.75509],[126.65313,51.74446],[126.65794,51.73553],[126.67373,51.72787],[126.69227,51.72915],[126.71081,51.72915],[126.72111,51.71767],[126.72248,51.70022],[126.70738,51.68447],[126.70738,51.67723],[126.72729,51.65935],[126.7321,51.64231],[126.71768,51.62569],[126.69364,51.61929],[126.66961,51.60138],[126.6806,51.5792],[126.71562,51.56725],[126.77673,51.55444],[126.83509,51.53138],[126.81861,51.50404],[126.80351,51.49121],[126.7939,51.46641],[126.78085,51.454],[126.77742,51.43945],[126.80763,51.41548],[126.8811,51.40948],[126.91062,51.3932],[126.92024,51.36792],[126.91131,51.34519],[126.89483,51.3409],[126.83441,51.34433],[126.81381,51.33404],[126.80694,51.30615],[126.83372,51.26105],[126.85295,51.24902],[126.88865,51.24472],[126.90925,51.2516],[126.91406,51.2632],[126.9065,51.28038],[126.88591,51.28811],[126.86943,51.30615],[126.86943,51.31731],[126.95114,51.33189],[126.97586,51.32717],[126.97448,51.307],[126.96144,51.28339],[126.94427,51.26406],[126.91955,51.24687],[126.89483,51.19569],[126.90856,51.14446],[126.91474,51.11128],[126.91749,51.05779],[126.94221,51.0483],[126.97792,51.02671],[127.0095,50.99949],[127.03285,50.96664],[127.11113,50.93376],[127.15438,50.88787],[127.20382,50.81114],[127.24365,50.76643],[127.28485,50.75644],[127.29721,50.74036],[127.28553,50.7182],[127.27935,50.70428],[127.28347,50.6734],[127.30613,50.63813],[127.33223,50.62245],[127.34115,50.60808],[127.36381,50.58716],[127.35694,50.56361],[127.35763,50.54572],[127.31849,50.53088],[127.31094,50.52259],[127.30819,50.50425],[127.28897,50.48416],[127.28622,50.46799],[127.29103,50.45663],[127.30476,50.44919],[127.34527,50.44526],[127.36106,50.43345],[127.36312,50.40326],[127.32948,50.35948],[127.33085,50.33275],[127.37068,50.28846],[127.44689,50.27047],[127.46681,50.2652],[127.49908,50.25335],[127.53135,50.25247],[127.56843,50.24193],[127.59796,50.23842],[127.6007,50.18481],[127.57873,50.1461],[127.56362,50.12718],[127.52105,50.08842],[127.50183,50.06022],[127.48672,50.00729],[127.49015,49.9839],[127.50457,49.96535],[127.53822,49.93752],[127.53891,49.91497],[127.51899,49.85303],[127.52037,49.82026],[127.55813,49.78924],[127.59246,49.78126],[127.65014,49.77372],[127.66937,49.76574],[127.67005,49.69517],[127.68722,49.6694],[127.71537,49.65207],[127.76275,49.63473],[127.78129,49.6196],[127.79983,49.59068],[127.83828,49.58489],[127.86094,49.5751],[127.91381,49.57732],[127.93167,49.59112],[127.94677,49.61337],[127.97561,49.6067],[128.01681,49.56708],[128.03672,49.55907],[128.06899,49.53813],[128.12324,49.54615],[128.18916,49.53724],[128.22486,49.54704],[128.23654,49.56174],[128.28666,49.56263],[128.32443,49.54125],[128.35464,49.55194],[128.36769,49.57821],[128.38073,49.58712],[128.46244,49.58845],[128.53317,49.60092],[128.63067,49.57955],[128.68423,49.56797],[128.71376,49.56129],[128.72474,49.59023],[128.75564,49.59112],[128.79135,49.58133],[128.79821,49.55862],[128.79478,49.54526],[128.74465,49.50782],[128.74191,49.48864],[128.75564,49.47526],[128.78723,49.46901],[128.81881,49.4824],[128.85932,49.4766],[128.88473,49.47927],[128.92044,49.46053],[128.99734,49.45384],[129.0303,49.41633],[129.04335,49.3846],[129.06738,49.36225],[129.0969,49.3542],[129.13467,49.35196],[129.16557,49.38147],[129.20265,49.3989],[129.24728,49.39578],[129.27406,49.38237],[129.30152,49.36001],[129.35028,49.35286],[129.37156,49.36404],[129.37706,49.37566],[129.36676,49.38684],[129.375,49.42571],[129.41413,49.43955],[129.46495,49.43107],[129.52262,49.41365],[129.54116,49.37298],[129.54803,49.29781],[129.58099,49.27586],[129.60845,49.27586],[129.64485,49.29199],[129.69772,49.29557],[129.7293,49.27766],[129.74716,49.24943],[129.74441,49.20862],[129.77668,49.17945],[129.8323,49.17137],[129.83573,49.16105],[129.82749,49.14533],[129.84672,49.10084],[129.90989,49.07791],[129.91127,49.06981],[129.97924,49.02706],[130.00122,48.99779],[130.08018,48.96128],[130.15159,48.92701],[130.18592,48.89813],[130.22163,48.86652],[130.26489,48.86336],[130.35827,48.88819],[130.43792,48.90354],[130.46608,48.90128],[130.47843,48.88232],[130.48805,48.86516],[130.5162,48.85387],[130.55877,48.85884],[130.61027,48.87826],[130.64666,48.88232],[130.67619,48.876],[130.68237,48.85568],[130.65284,48.82133],[130.61576,48.78108],[130.58006,48.71497],[130.52993,48.63653],[130.52101,48.6143],[130.53268,48.60522],[130.59242,48.59386],[130.60752,48.57569],[130.61096,48.50159],[130.62538,48.49158],[130.66452,48.49203],[130.72151,48.51387],[130.75584,48.50432],[130.76957,48.48566],[130.74142,48.45698],[130.72975,48.43785],[130.7476,48.41006],[130.76614,48.35442],[130.80802,48.34347],[130.81901,48.33069],[130.81901,48.31836],[130.83412,48.30466],[130.83412,48.29826],[130.81764,48.28502],[130.80459,48.26262],[130.77232,48.25439],[130.76477,48.23885],[130.75309,48.22604],[130.75241,48.18577],[130.72288,48.17249],[130.67413,48.1363],[130.65559,48.11201],[130.6604,48.09184],[130.67619,48.08129],[130.6755,48.05743],[130.6961,48.03769],[130.72769,48.02896],[130.74005,48.00876],[130.8554,47.94026],[130.95016,47.82744],[130.95222,47.72916],[130.96733,47.71022],[130.98999,47.69867],[131.02294,47.68757],[131.0559,47.68665],[131.11976,47.68434],[131.1898,47.70514],[131.22139,47.72639],[131.26945,47.73701],[131.35322,47.72546],[131.42807,47.74394],[131.49948,47.7347],[131.52145,47.73793],[131.54892,47.725],[131.55098,47.69867],[131.55784,47.66677],[131.60041,47.66122],[131.65329,47.6774],[131.68418,47.70236],[131.71989,47.70698],[131.82563,47.67001],[131.88056,47.68157],[131.93481,47.67186],[131.96846,47.66816],[131.99935,47.71392],[132.04467,47.70421],[132.11059,47.70467],[132.17582,47.69636],[132.2026,47.7019],[132.23419,47.70283],[132.27676,47.72315],[132.28843,47.74717],[132.33581,47.75686],[132.38594,47.74948],[132.49992,47.7153],[132.5782,47.72593],[132.59468,47.75502],[132.59674,47.79839],[132.63381,47.84311],[132.67227,47.86938],[132.6551,47.93336],[132.67021,47.95544],[132.70248,47.96188],[132.75123,47.93842],[132.81097,47.9329],[132.8762,48.00095],[132.9277,48.0207],[132.99087,48.03034],[133.04031,48.10055],[133.06572,48.10651],[133.09661,48.10284],[133.17695,48.10926],[133.24699,48.09917],[133.28476,48.09184],[133.32939,48.10834],[133.39462,48.11705],[133.44131,48.07486],[133.48663,48.07303],[133.51478,48.09092],[133.56628,48.14638],[133.56765,48.1757],[133.59443,48.19218],[133.64662,48.18485],[133.70086,48.18714],[133.74069,48.24982],[133.78601,48.25851],[133.82171,48.23885],[133.85604,48.24662],[133.87458,48.26948],[133.92746,48.27222],[133.992,48.25897],[134.01466,48.2841],[134.01054,48.31425],[134.0435,48.33708],[134.12658,48.33753],[134.23645,48.36628],[134.27627,48.37632],[134.40811,48.38954],[134.48982,48.42236],[134.57702,48.4055],[134.66011,48.41006],[134.76885,48.37548],[134.76536,48.35311],[134.71793,48.2851],[134.72187,48.27448],[134.6901,48.25839],[134.66501,48.24082],[134.66151,48.19654],[134.66767,48.14325],[134.63262,48.12293],[134.6257,48.09881],[134.58033,48.06278],[134.56725,48.03926],[134.54319,48.02859],[134.54245,47.98837],[134.58016,47.95183],[134.57118,47.90976],[134.65009,47.89346],[134.67333,47.82038],[134.74263,47.78201],[134.78445,47.72518],[134.72392,47.65762],[134.68542,47.63866],[134.67715,47.59216],[134.64141,47.56047],[134.58088,47.51705],[134.57533,47.4972],[134.48189,47.44023],[134.31207,47.43612],[134.24113,47.35768],[134.18781,47.3417],[134.13997,47.2587],[134.21299,47.19058],[134.22009,47.11872],[134.21277,47.09867],[134.12306,47.0861],[134.11299,47.02302],[134.05348,46.9824],[134.06814,46.93709],[134.03885,46.88428],[134.03656,46.84379],[134.01757,46.83482],[134.01505,46.81645],[134.04847,46.77501],[134.0297,46.74485],[134.01508,46.72133],[134.02517,46.6978],[134.00368,46.63752],[133.96022,46.61684],[133.9092,46.59191],[133.89389,46.54244],[133.87388,46.5262],[133.86484,46.50997],[133.86131,46.49278],[133.84129,46.48127],[133.84179,46.4545],[133.86152,46.44287],[133.89635,46.44827],[133.94766,46.3931],[133.93099,46.3739],[133.89784,46.36417],[133.87294,46.36013],[133.86176,46.34471],[133.87737,46.31887],[133.9122,46.33285],[133.91657,46.32278],[133.88798,46.30321],[133.90883,46.27985],[133.91045,46.26409],[133.89309,46.25105],[133.85376,46.24751],[133.87461,46.23244],[133.85426,46.21547],[133.84215,46.2004],[133.82677,46.20423],[133.81962,46.22327],[133.79983,46.22904],[133.79242,46.19523],[133.76852,46.17091],[133.68503,46.15081],[133.69547,46.11031],[133.73886,46.066],[133.7125,46.02478],[133.66965,45.98737],[133.67184,45.94308],[133.62955,45.94793],[133.59879,45.93508],[133.61472,45.90598],[133.59564,45.88882],[133.58478,45.86592],[133.52725,45.90278],[133.48069,45.85933],[133.45831,45.78491],[133.43043,45.69516],[133.47555,45.69345],[133.48221,45.66104],[133.44493,45.64974],[133.46806,45.60771],[133.42539,45.62656],[133.3992,45.61852],[133.41822,45.57167],[133.37407,45.57673],[133.31344,45.55102],[133.19726,45.50587],[133.14288,45.42919],[133.12695,45.35251],[133.09977,45.29288],[133.08885,45.248],[133.13286,45.17604],[133.12751,45.125],[133.0837,45.1059],[133.04539,45.06741],[132.95228,45.01758],[132.84875,45.05972],[131.98167,45.25696],[131.96625,45.2719],[131.92885,45.28297],[131.91343,45.33654],[131.87603,45.34376],[131.80673,45.29054],[131.78687,45.21414],[131.68124,45.22562],[131.64701,45.1597],[131.69391,45.12661],[131.59926,45.05577],[131.48263,44.99658],[131.48626,44.97593],[131.47342,44.95917],[131.42761,44.96572],[131.40927,44.98004],[131.34139,44.98682],[131.28863,44.92558],[131.2029,44.91489],[131.16867,44.94697],[131.10149,44.94017],[131.07888,44.91634],[131.07824,44.88084],[130.96225,44.86187],[130.96711,44.81953],[131.00447,44.82602],[131.01436,44.77406],[131.0616,44.77927],[131.07864,44.73964],[131.09539,44.71396],[131.11215,44.7],[131.30002,44.05154],[131.26473,44.03001],[131.23493,43.98083],[131.25773,43.91012],[131.22285,43.86712],[131.20994,43.80828],[131.21708,43.67874],[131.22615,43.58614],[131.18124,43.55376],[131.19312,43.5256],[131.26361,43.4936],[131.30937,43.45761],[131.28575,43.43302],[131.31157,43.38849],[131.27532,43.37125],[131.25005,43.27213],[131.20281,43.22898],[131.19272,43.20618],[131.21009,43.18338],[131.20274,43.16659],[131.21187,43.14579],[131.16972,43.1062],[131.16601,43.07062],[131.11739,43.07175],[131.09838,43.02183],[131.10682,42.97192],[131.14273,42.96219],[131.13322,42.92919],[131.11272,42.91227],[131.01605,42.91746],[131.04022,42.8623],[130.98103,42.85455],[130.91635,42.87498],[130.88586,42.84739],[130.82667,42.87989],[130.78396,42.87214],[130.76446,42.84052],[130.72024,42.82955],[130.67053,42.85482],[130.57111,42.8087],[130.46619,42.7686],[130.39422,42.72447],[130.40147,42.72398],[130.40853,42.71541],[130.40735,42.7129],[130.42009,42.70333],[130.43077,42.70788],[130.4344,42.70367],[130.43871,42.70147],[130.44543,42.70078],[130.44802,42.70161],[130.44977,42.69444],[130.45908,42.68474],[130.46822,42.68987],[130.47186,42.68944],[130.47849,42.69011],[130.48443,42.68826],[130.48763,42.69044],[130.49151,42.69011],[130.49428,42.69336],[130.49842,42.69258],[130.50051,42.69506],[130.50776,42.69552],[130.51654,42.70054],[130.52256,42.70103],[130.53243,42.69839],[130.54229,42.69122],[130.54514,42.69175],[130.54851,42.68946],[130.55286,42.69001],[130.5548,42.68931],[130.5621,42.68535],[130.56853,42.67817],[130.57676,42.67538],[130.58362,42.67108],[130.58843,42.66488],[130.58842,42.6602],[130.59596,42.65184],[130.59463,42.64683],[130.59809,42.64356],[130.59604,42.6403],[130.60505,42.63431],[130.60616,42.63085],[130.61289,42.63038],[130.61482,42.6284],[130.61833,42.61836],[130.61635,42.61238],[130.62054,42.60538],[130.62817,42.59888],[130.62589,42.59373],[130.62566,42.58857],[130.62029,42.58543],[130.62178,42.58179],[130.61538,42.57077],[130.60417,42.56506],[130.60395,42.55176],[130.59412,42.55724],[130.58498,42.55918],[130.5748,42.55834],[130.56903,42.55488],[130.56256,42.55497],[130.56921,42.53787],[130.56499,42.534],[130.56075,42.52912],[130.55787,42.52523],[130.56254,42.51729],[130.55381,42.52098],[130.55264,42.51861],[130.55825,42.50303],[130.58484,42.48728],[130.58392,42.48465],[130.58604,42.48106],[130.5854,42.47873],[130.59083,42.4732],[130.59522,42.46766],[130.59035,42.46409],[130.59235,42.45621],[130.59142,42.45441],[130.59354,42.45059],[130.59427,42.44627],[130.6029,42.44121],[130.60895,42.43944],[130.61139,42.43653],[130.61418,42.43464],[130.61714,42.43528],[130.62422,42.43262],[130.6313,42.42718],[130.63425,42.42604],[130.635,42.42489],[130.63524,42.42374],[130.63762,42.42189],[130.63897,42.42016],[130.64067,42.41543],[130.63224,42.42295],[130.60546,42.43207],[130.57113,42.43308],[130.56427,42.4417],[130.56358,42.465],[130.58075,42.47412],[130.58075,42.48273],[130.55397,42.49184],[130.54779,42.50703],[130.55122,42.52474],[130.52581,42.54751],[130.52581,42.56572],[130.51208,42.58392],[130.51963,42.6001],[130.51277,42.61829],[130.47843,42.61728],[130.4599,42.59302],[130.47981,42.56623],[130.475,42.55459],[130.44822,42.54751],[130.42419,42.55763],[130.41732,42.57482],[130.43655,42.60313],[130.41526,42.61476],[130.39192,42.6001],[130.38024,42.60212],[130.37544,42.61627],[130.31227,42.65921],[130.28686,42.7006],[130.25459,42.70666],[130.23536,42.73894],[130.24635,42.76062],[130.23399,42.78028],[130.2539,42.78885],[130.23674,42.81051],[130.25047,42.85734],[130.27107,42.88602],[130.26351,42.90011],[130.25253,42.90765],[130.21888,42.90363],[130.1612,42.91419],[130.13786,42.90262],[130.12207,42.91117],[130.10421,42.91318],[130.10215,42.92877],[130.12413,42.92877],[130.13237,42.93129],[130.13511,42.93682],[130.13168,42.94184],[130.12344,42.93883],[130.11451,42.94737],[130.11932,42.95692],[130.14679,42.97049],[130.14747,42.97601],[130.13992,42.98003],[130.13305,42.97752],[130.12207,42.98556],[130.10971,42.98757],[130.0843,42.98204],[130.05958,42.96697],[130.03898,42.97199],[130.0177,42.96898],[130.00671,42.97501],[129.99366,42.97049],[129.9559,42.97752],[129.9504,42.98807],[129.9559,43.01017],[129.92843,43.00916],[129.90371,43.00715],[129.88861,42.99912],[129.87693,42.98807],[129.88311,42.97802],[129.90371,42.98054],[129.91607,42.97853],[129.91401,42.97199],[129.90509,42.96747],[129.88792,42.97149],[129.87281,42.97049],[129.86595,42.97099],[129.85084,42.95943],[129.85084,42.94586],[129.87007,42.91922],[129.86663,42.9152],[129.84603,42.92123],[129.83848,42.90514],[129.84397,42.89156],[129.83642,42.86338],[129.82406,42.86137],[129.81308,42.84878],[129.81514,42.83569],[129.80209,42.81706],[129.80964,42.80446],[129.8117,42.79086],[129.7966,42.78431],[129.79454,42.77776],[129.78561,42.77373],[129.78286,42.7581],[129.76913,42.73087],[129.76089,42.72583],[129.75952,42.70766],[129.78012,42.68647],[129.79522,42.68495],[129.80278,42.68193],[129.80278,42.67789],[129.79316,42.67233],[129.78492,42.6789],[129.77462,42.67132],[129.77806,42.66628],[129.77531,42.65264],[129.78698,42.64557],[129.78149,42.64103],[129.77256,42.64254],[129.76638,42.65466],[129.74784,42.64911],[129.7499,42.64153],[129.7602,42.6385],[129.7657,42.63294],[129.75265,42.62385],[129.75471,42.61476],[129.77119,42.61577],[129.7808,42.61425],[129.77874,42.60465],[129.75677,42.6001],[129.75059,42.58342],[129.74029,42.5814],[129.73617,42.57229],[129.73823,42.5551],[129.74647,42.54296],[129.74304,42.5298],[129.73754,42.52272],[129.74029,42.51209],[129.73205,42.49792],[129.7396,42.49184],[129.74372,42.46703],[129.73411,42.46196],[129.72312,42.44322],[129.71351,42.43764],[129.70115,42.427],[129.68124,42.42852],[129.67163,42.4346],[129.64347,42.42599],[129.61944,42.46247],[129.60914,42.46348],[129.59816,42.45132],[129.58923,42.45183],[129.58374,42.44474],[129.60914,42.44322],[129.60914,42.43916],[129.59678,42.42801],[129.59884,42.41686],[129.59129,42.40875],[129.5755,42.41433],[129.56451,42.40165],[129.55833,42.38441],[129.57344,42.38796],[129.56932,42.37832],[129.55558,42.37883],[129.55009,42.37427],[129.55284,42.36412],[129.54597,42.36057],[129.54254,42.3697],[129.53498,42.36311],[129.52468,42.39202],[129.5082,42.39202],[129.4979,42.39912],[129.49653,42.41027],[129.48005,42.41838],[129.45808,42.42295],[129.44778,42.4422],[129.43542,42.44271],[129.4313,42.43308],[129.41619,42.43663],[129.39765,42.45082],[129.38736,42.44778],[129.38736,42.44068],[129.38873,42.43308],[129.38324,42.42447],[129.36058,42.42497],[129.35508,42.43055],[129.36264,42.43866],[129.36882,42.4498],[129.36264,42.45487],[129.35028,42.45386],[129.33792,42.44676],[129.33517,42.43815],[129.35234,42.42649],[129.35508,42.4194],[129.35234,42.41737],[129.34135,42.41838],[129.33998,42.41382],[129.34959,42.40977],[129.35096,42.40571],[129.3386,42.40571],[129.33105,42.41838],[129.33174,42.43156],[129.32075,42.42548],[129.32075,42.41838],[129.3077,42.42396],[129.30496,42.4199],[129.31114,42.4052],[129.30084,42.40368],[129.32075,42.38898],[129.31663,42.3834],[129.29328,42.38948],[129.29054,42.37832],[129.27475,42.38644],[129.26857,42.38644],[129.26239,42.37274],[129.25415,42.37325],[129.25277,42.37832],[129.24179,42.37985],[129.23286,42.37122],[129.23698,42.3626],[129.22531,42.35549],[129.23011,42.34382],[129.24591,42.34129],[129.25689,42.32707],[129.24316,42.31743],[129.22393,42.31337],[129.20677,42.32047],[129.19372,42.31337],[129.20951,42.3027],[129.21638,42.3027],[129.22187,42.30829],[129.2308,42.31032],[129.23492,42.30626],[129.22462,42.2961],[129.19784,42.28442],[129.20539,42.28137],[129.22531,42.28035],[129.21638,42.26511],[129.19921,42.26155],[129.19097,42.26511],[129.17793,42.26257],[129.1745,42.23665],[129.18136,42.23461],[129.1896,42.24173],[129.20059,42.24275],[129.20539,42.23766],[129.19441,42.22699],[129.20127,42.21326],[129.21844,42.21631],[129.2205,42.20461],[129.1896,42.20309],[129.18891,42.19037],[129.15733,42.18477],[129.16557,42.16442],[129.14154,42.16493],[129.12574,42.16238],[129.12849,42.15169],[129.1175,42.1466],[129.11338,42.13896],[129.10514,42.13947],[129.10102,42.14253],[129.09141,42.13795],[129.08111,42.141],[129.07905,42.15271],[129.07081,42.15627],[129.06532,42.15271],[129.06944,42.13744],[129.05227,42.13947],[129.04884,42.13031],[129.03991,42.13438],[129.03648,42.12318],[129.02687,42.11859],[129.03991,42.11503],[129.03305,42.10739],[129.02137,42.09873],[129.00901,42.09771],[129.00215,42.08956],[128.98498,42.09159],[128.97605,42.08854],[128.96369,42.09465],[128.94996,42.08089],[128.94584,42.06356],[128.95339,42.0605],[128.95614,42.0549],[128.94927,42.0498],[128.95202,42.04215],[128.94584,42.03246],[128.94653,42.0243],[128.93966,42.02532],[128.93005,42.01614],[128.90533,42.01053],[128.89228,42.01767],[128.89022,42.02277],[128.88198,42.02634],[128.87512,42.02175],[128.85864,42.0243],[128.85246,42.02889],[128.83667,42.02226],[128.82843,42.03144],[128.82225,42.03246],[128.80783,42.04215],[128.80233,42.04011],[128.78036,42.03909],[128.76937,42.03195],[128.76594,42.03807],[128.75564,42.03858],[128.74877,42.05133],[128.73024,42.0498],[128.73024,42.04215],[128.72406,42.04062],[128.70071,42.02379],[128.69178,42.01614],[128.67736,42.01308],[128.66088,42.01818],[128.64921,42.01665],[128.65402,42.02022],[128.65264,42.02583],[128.62861,42.03603],[128.61625,42.03093],[128.60389,42.03195],[128.58947,42.0243],[128.59222,42.01563],[128.5881,42.00695],[128.5778,42.00083],[128.56407,41.99777],[128.55995,41.99981],[128.54621,42.00083],[128.54141,42.0044],[128.53385,42.00185],[128.48991,41.99675],[128.47892,42.0044],[128.46244,42.00848],[128.46107,42.01308],[128.44184,42.01563],[128.43292,42.02124],[128.40133,42.01614],[128.28392,42.02481],[128.08822,42.02124],[128.03123,41.99522],[128.04908,41.98042],[128.05458,41.97889],[128.07311,41.96868],[128.08891,41.94978],[128.09921,41.94672],[128.10058,41.93497],[128.09715,41.92322],[128.10264,41.89972],[128.10813,41.8941],[128.10333,41.87722],[128.10401,41.85524],[128.09715,41.83836],[128.10607,41.80868],[128.10264,41.80612],[128.10676,41.79128],[128.11363,41.78769],[128.12667,41.77848],[128.13354,41.78257],[128.13835,41.77643],[128.1459,41.73289],[128.16238,41.71188],[128.18298,41.70777],[128.20152,41.6847],[128.21182,41.68675],[128.21525,41.68111],[128.24066,41.67701],[128.26744,41.65444],[128.28186,41.62416],[128.29971,41.62776],[128.29971,41.61749],[128.28872,41.61236],[128.3052,41.59387],[128.31138,41.58668],[128.30932,41.57282],[128.29216,41.55894],[128.29353,41.55483],[128.28735,41.55072],[128.28666,41.54353],[128.29353,41.54353],[128.29559,41.53582],[128.2798,41.53376],[128.27499,41.52914],[128.27842,41.52245],[128.26057,41.5132],[128.25439,41.50446],[128.24615,41.5024],[128.22967,41.4916],[128.23928,41.48903],[128.23654,41.47308],[128.2331,41.47257],[128.22967,41.45456],[128.23928,41.4525],[128.23997,41.44787],[128.23379,41.44375],[128.22212,41.44427],[128.20632,41.42573],[128.20495,41.41132],[128.20015,41.40617],[128.19259,41.41029],[128.18161,41.41029],[128.16375,41.40205],[128.16101,41.39329],[128.14796,41.38196],[128.12049,41.37783],[128.11912,41.36907],[128.10676,41.36134],[128.09646,41.36804],[128.08616,41.37165],[128.08822,41.37732],[128.10264,41.38505],[128.10401,41.39123],[128.09715,41.39638],[128.09646,41.39071],[128.08204,41.39226],[128.07792,41.38814],[128.07929,41.37887],[128.07449,41.37577],[128.06831,41.38247],[128.06899,41.39329],[128.05183,41.39432],[128.0484,41.39071],[128.03947,41.38865],[128.03123,41.39174],[128.0381,41.3969],[128.03535,41.40462],[128.04084,41.41389],[128.02848,41.42007],[128.03123,41.41389],[128.01956,41.40874],[128.012,41.41029],[128.01406,41.42522],[128.00033,41.42522],[127.9969,41.42985],[128.00926,41.43654],[128.012,41.4453],[127.99758,41.44427],[127.98934,41.42934],[127.98866,41.41904],[127.97699,41.41595],[127.97699,41.42934],[127.96119,41.43603],[127.95021,41.435],[127.94128,41.43963],[127.94471,41.44272],[127.94334,41.44838],[127.93441,41.44684],[127.93167,41.45713],[127.92755,41.45302],[127.92823,41.44375],[127.91587,41.43654],[127.90832,41.42831],[127.90283,41.42779],[127.89802,41.43448],[127.89184,41.43191],[127.88497,41.43294],[127.88085,41.43809],[127.88772,41.44272],[127.88154,41.4453],[127.87468,41.44478],[127.86781,41.43809],[127.87056,41.42264],[127.86644,41.41543],[127.87262,41.40874],[127.86712,41.4005],[127.85682,41.40359],[127.84446,41.42007],[127.8273,41.41646],[127.82867,41.40359],[127.81974,41.40617],[127.81494,41.41801],[127.80464,41.42161],[127.79365,41.42161],[127.79022,41.41441],[127.78884,41.40462],[127.78541,41.40514],[127.78129,41.41646],[127.77442,41.42522],[127.76619,41.42007],[127.75314,41.42522],[127.73666,41.42316],[127.71949,41.41543],[127.70301,41.41646],[127.68722,41.4211],[127.67967,41.42007],[127.67143,41.41286],[127.66456,41.41389],[127.66181,41.42161],[127.65289,41.42625],[127.64671,41.42264],[127.65907,41.40977],[127.65701,41.40411],[127.64396,41.40359],[127.62474,41.41441],[127.61306,41.42985],[127.58628,41.42419],[127.55332,41.43243],[127.53891,41.45559],[127.54097,41.47463],[127.53135,41.47257],[127.52105,41.46485],[127.50114,41.47257],[127.4929,41.47463],[127.47573,41.46691],[127.47093,41.47051],[127.47299,41.47874],[127.46818,41.48028],[127.46131,41.47874],[127.45857,41.47051],[127.462,41.46228],[127.45239,41.45662],[127.44072,41.45765],[127.42218,41.46176],[127.40913,41.4561],[127.39883,41.46331],[127.39746,41.47668],[127.3796,41.47874],[127.37136,41.47411],[127.36106,41.47771],[127.35488,41.47668],[127.35694,41.46228],[127.34664,41.45971],[127.28622,41.48337],[127.27317,41.47566],[127.26013,41.47566],[127.25189,41.47926],[127.24777,41.48646],[127.27455,41.49109],[127.2821,41.49623],[127.2821,41.50292],[127.27592,41.51114],[127.26425,41.51217],[127.24227,41.49777],[127.22923,41.50652],[127.23472,41.51885],[127.22442,41.52143],[127.21687,41.51731],[127.21,41.51629],[127.2052,41.52194],[127.20863,41.53119],[127.19696,41.53222],[127.19284,41.52605],[127.18185,41.52245],[127.17155,41.52554],[127.16812,41.53839],[127.1585,41.53942],[127.14202,41.52348],[127.13516,41.52605],[127.13928,41.53736],[127.13172,41.54045],[127.12692,41.53788],[127.10975,41.53633],[127.09739,41.54353],[127.09602,41.54713],[127.09945,41.55278],[127.10632,41.55226],[127.11181,41.54815],[127.11731,41.54815],[127.11662,41.55226],[127.11319,41.55894],[127.1228,41.56716],[127.13996,41.56819],[127.13859,41.58001],[127.14752,41.58617],[127.15507,41.58412],[127.17498,41.58463],[127.17842,41.58771],[127.17361,41.59695],[127.1276,41.59541],[127.11525,41.60568],[127.12211,41.61133],[127.11799,41.62416],[127.10014,41.618],[127.08641,41.6257],[127.09877,41.63032],[127.10289,41.63392],[127.10151,41.64264],[127.09259,41.64418],[127.08435,41.64161],[127.0713,41.64367],[127.06443,41.65701],[127.04246,41.66419],[127.03079,41.67188],[127.0404,41.68316],[127.04658,41.69239],[127.05276,41.68932],[127.06237,41.68573],[127.0713,41.68829],[127.07611,41.69547],[127.07611,41.70214],[127.06855,41.70265],[127.05551,41.7006],[127.04864,41.70265],[127.05207,41.71188],[127.04864,41.71956],[127.04521,41.72571],[127.04658,41.73238],[127.04658,41.74262],[127.03834,41.74109],[127.01568,41.73904],[126.99989,41.74518],[127.00332,41.76004],[127.00126,41.76055],[126.97929,41.76414],[126.9738,41.77489],[126.96418,41.77438],[126.9374,41.76977],[126.92916,41.77438],[126.93122,41.78462],[126.94496,41.78769],[126.9477,41.79384],[126.94564,41.80458],[126.93603,41.80817],[126.91818,41.8051],[126.9017,41.79435],[126.88316,41.79025],[126.85363,41.76106],[126.84883,41.74211],[126.84333,41.7334],[126.8399,41.72161],[126.83372,41.71905],[126.82617,41.7211],[126.81655,41.74365],[126.81106,41.74775],[126.80419,41.74672],[126.79458,41.73442],[126.79595,41.72161],[126.79046,41.71341],[126.79733,41.69547],[126.7939,41.69137],[126.77948,41.69188],[126.76918,41.70214],[126.76986,41.71598],[126.75888,41.72315],[126.73965,41.73084],[126.71836,41.74672],[126.69158,41.75082],[126.68472,41.74467],[126.68129,41.73238],[126.68952,41.72469],[126.70944,41.72213],[126.72729,41.71649],[126.7266,41.7088],[126.70326,41.68829],[126.68266,41.67906],[126.68678,41.67291],[126.67923,41.66727],[126.66137,41.6647],[126.65451,41.65701],[126.64077,41.65393],[126.62704,41.6647],[126.61811,41.67137],[126.60713,41.66778],[126.60438,41.65854],[126.60987,41.64623],[126.60781,41.63956],[126.58859,41.62622],[126.58927,41.61595],[126.58035,41.61492],[126.56593,41.61698],[126.55906,41.61287],[126.57211,41.58514],[126.58721,41.56511],[126.58241,41.54867],[126.5625,41.54199],[126.5522,41.5276],[126.55288,41.51577],[126.54396,41.49417],[126.55151,41.48954],[126.55151,41.48543],[126.53915,41.48028],[126.52748,41.47103],[126.52061,41.45507],[126.5007,41.43243],[126.50619,41.41698],[126.50482,41.39277],[126.5158,41.38041],[126.5316,41.3732],[126.53572,41.36753],[126.53091,41.35568],[126.51786,41.34743],[126.4801,41.34485],[126.4746,41.34743],[126.47735,41.3531],[126.50138,41.35568],[126.50962,41.36238],[126.50756,41.37114],[126.48765,41.37165],[126.45607,41.35722],[126.43135,41.35155],[126.4286,41.34073],[126.43272,41.3299],[126.40731,41.33145],[126.39495,41.30153],[126.36062,41.27935],[126.36062,41.27212],[126.35376,41.26025],[126.35444,41.2427],[126.33316,41.23702],[126.31599,41.22773],[126.30844,41.21068],[126.305,41.18898],[126.28372,41.18588],[126.29127,41.16883],[126.27891,41.15797],[126.26586,41.1528],[126.23153,41.1435],[126.22398,41.12643],[126.19171,41.1166],[126.17866,41.10108],[126.16424,41.09125],[126.14021,41.08608],[126.11961,41.09073],[126.10794,41.07262],[126.13128,41.05812],[126.12579,41.04311],[126.11549,41.03016],[126.09832,41.03637],[126.0942,41.0286],[126.10313,41.00425],[126.07772,41.00373],[126.06124,40.99441],[126.06948,40.98611],[126.07017,40.98093],[126.07772,40.97367],[126.06468,40.96538],[126.0482,40.95967],[126.05026,40.94671],[126.03378,40.93945],[126.03584,40.92596],[126.03103,40.92337],[126.01387,40.9327],[125.99739,40.9327],[125.97747,40.91662],[125.97267,40.90988],[125.98022,40.90676],[125.99533,40.9161],[126.01593,40.91195],[126.02142,40.90002],[126.00563,40.8969],[125.98915,40.89275],[125.97198,40.90365],[125.96511,40.89534],[125.96443,40.88704],[125.94863,40.87769],[125.93009,40.87769],[125.91362,40.88133],[125.90675,40.89327],[125.9143,40.90988],[125.90744,40.91143],[125.89851,40.89794],[125.8889,40.8969],[125.8786,40.90417],[125.8683,40.90417],[125.85594,40.88444],[125.82641,40.87406],[125.80787,40.8616],[125.7962,40.86731],[125.79826,40.88029],[125.78384,40.88912],[125.76461,40.89015],[125.74813,40.86887],[125.70694,40.86783],[125.68359,40.83978],[125.63209,40.80809],[125.63209,40.79613],[125.67741,40.78678],[125.68496,40.78002],[125.68016,40.76286],[125.6417,40.76442],[125.59845,40.75558],[125.58197,40.7743],[125.56892,40.77586],[125.54832,40.76026],[125.54695,40.73581],[125.54214,40.72332],[125.52154,40.71707],[125.4776,40.71968],[125.45494,40.69938],[125.4515,40.6697],[125.43914,40.66605],[125.4261,40.67178],[125.41236,40.67022],[125.40756,40.66136],[125.41717,40.62958],[125.40756,40.62437],[125.3897,40.6301],[125.36979,40.6473],[125.35743,40.64886],[125.33821,40.63844],[125.32241,40.63844],[125.29357,40.65616],[125.28053,40.65407],[125.26817,40.64574],[125.26405,40.62072],[125.25032,40.61186],[125.17753,40.60248],[125.09582,40.55763],[125.0251,40.53467],[125.00175,40.51901],[125.00244,40.50388],[125.01136,40.49552],[125.03196,40.48873],[125.03952,40.48299],[125.04364,40.47097],[125.03883,40.46053],[125.02372,40.45792],[124.98252,40.47045],[124.9427,40.45374],[124.92485,40.45478],[124.90425,40.46314],[124.91043,40.47359],[124.90493,40.48194],[124.89463,40.4809],[124.85481,40.42813],[124.80125,40.39676],[124.76898,40.38682],[124.74975,40.38002],[124.73671,40.36695],[124.72984,40.33241],[124.71817,40.3188],[124.64126,40.29209],[124.61654,40.28738],[124.57466,40.25961],[124.5726,40.25175],[124.55474,40.24494],[124.54582,40.23865],[124.52041,40.22764],[124.51973,40.2224],[124.50943,40.21873],[124.50256,40.19828],[124.48951,40.18726],[124.48196,40.17257],[124.46067,40.17625],[124.44488,40.16628],[124.42771,40.14896],[124.42497,40.14214],[124.40437,40.13374],[124.38789,40.11168],[124.37347,40.10328],[124.36592,40.0912],[124.3515,40.08437],[124.33433,40.06073],[124.33708,40.04706],[124.36386,40.03918],[124.37141,40.03234],[124.37004,40.01552],[124.35356,39.97027],[124.346,39.97343],[124.34394,39.98711],[124.32266,39.97922],[124.3103,39.96712],[124.29451,39.9687],[124.28489,39.96291],[124.28352,39.94764],[124.29382,39.94396],[124.28009,39.92869],[124.26704,39.93238],[124.24369,39.92922],[124.22447,39.91763],[124.2176,39.89762],[124.21005,39.84544],[124.17228,39.83754],[124.16473,39.77688],[124,39],[124,30],[121.7,22],[117,15.2],[110,15.2],[108.16666,18],[108.16666,21.41666],[108.08212,21.50035],[108.04916,21.53867],[108.0368,21.5457],[108.02375,21.54762],[107.98049,21.54378],[107.96608,21.53676],[107.95509,21.5374],[107.94204,21.5655],[107.94204,21.56933],[107.92556,21.58274],[107.92762,21.58976],[107.90359,21.58848],[107.88368,21.60955],[107.89192,21.61594],[107.87132,21.64721],[107.85621,21.65487],[107.84591,21.64977],[107.84248,21.64211],[107.83218,21.64274],[107.82737,21.65168],[107.81364,21.6587],[107.79716,21.65359],[107.78411,21.65615],[107.78137,21.64977],[107.75596,21.64147],[107.74154,21.63955],[107.73124,21.63062],[107.72163,21.62934],[107.70927,21.61849],[107.67356,21.60572],[107.62344,21.60828],[107.61245,21.60508],[107.58499,21.61019],[107.58224,21.61785],[107.57331,21.61785],[107.56988,21.61211],[107.55889,21.61274],[107.54379,21.5904],[107.53692,21.59295],[107.52456,21.58976],[107.50396,21.59678],[107.48336,21.59806],[107.49572,21.60508],[107.49778,21.61721],[107.49229,21.62296],[107.49641,21.63445],[107.47581,21.66317],[107.46688,21.66444],[107.41745,21.63955],[107.41676,21.63445],[107.40921,21.62296],[107.3941,21.61657],[107.39822,21.60955],[107.38243,21.59615],[107.36869,21.60189],[107.3632,21.59742],[107.35771,21.60508],[107.36183,21.61083],[107.35977,21.6204],[107.35633,21.62296],[107.35359,21.63062],[107.36251,21.63764],[107.35908,21.66572],[107.34329,21.67657],[107.34947,21.67912],[107.33779,21.68805],[107.33436,21.69762],[107.31857,21.71293],[107.322,21.72378],[107.31514,21.72505],[107.31376,21.72824],[107.30758,21.72952],[107.30072,21.74228],[107.28698,21.73654],[107.28767,21.73207],[107.27874,21.73271],[107.26295,21.72888],[107.25059,21.71804],[107.24784,21.704],[107.22106,21.70719],[107.19703,21.72059],[107.19841,21.72824],[107.1936,21.73462],[107.18673,21.74546],[107.16888,21.75248],[107.16407,21.74929],[107.15858,21.75758],[107.13867,21.76205],[107.13317,21.7748],[107.12631,21.77735],[107.11738,21.79393],[107.09884,21.7952],[107.08168,21.80795],[107.04803,21.81114],[107.02674,21.82198],[107.01988,21.84429],[107.0137,21.85066],[107.01713,21.86404],[107.02949,21.86787],[107.04048,21.87997],[107.05421,21.88189],[107.06382,21.89527],[107.05696,21.91183],[107.05902,21.9182],[107.03498,21.93667],[107.02606,21.93795],[107.024,21.94559],[107.00408,21.94623],[106.9931,21.95514],[106.97937,21.92712],[106.96289,21.9182],[106.95465,21.92266],[106.95327,21.93158],[106.93267,21.93094],[106.92787,21.9424],[106.921,21.95196],[106.92581,21.96215],[106.91482,21.97616],[106.90315,21.9717],[106.88049,21.98125],[106.84478,21.9787],[106.84066,21.98252],[106.83174,21.98125],[106.83036,21.97488],[106.80564,21.97488],[106.80152,21.9787],[106.7974,21.98953],[106.79054,21.98953],[106.7871,22.00417],[106.76719,22.01054],[106.74865,22.00799],[106.74659,22.01436],[106.72943,22.00799],[106.72668,21.99971],[106.73011,21.99717],[106.7205,21.97361],[106.70677,21.97616],[106.70402,21.96979],[106.69166,21.96469],[106.68273,22.0029],[106.70883,22.02518],[106.70539,22.03918],[106.69853,22.04173],[106.69715,22.05509],[106.70677,22.06718],[106.70745,22.08436],[106.71226,22.09327],[106.69715,22.10663],[106.69166,22.13589],[106.69715,22.1537],[106.70608,22.15561],[106.70265,22.16515],[106.69235,22.16133],[106.67175,22.18104],[106.68136,22.20457],[106.69715,22.20393],[106.70127,22.21855],[106.70333,22.22809],[106.69509,22.23254],[106.68548,22.26495],[106.69029,22.27702],[106.68136,22.28846],[106.66694,22.28401],[106.66694,22.32276],[106.66008,22.32467],[106.65802,22.3361],[106.63742,22.34182],[106.62025,22.33483],[106.61338,22.33991],[106.59004,22.34309],[106.58454,22.33991],[106.5763,22.34626],[106.57012,22.34182],[106.56051,22.3488],[106.57287,22.36277],[106.57081,22.36912],[106.58386,22.37484],[106.56738,22.39388],[106.56463,22.40848],[106.55914,22.42245],[106.56463,22.42435],[106.56601,22.43641],[106.55914,22.44403],[106.55708,22.45989],[106.57218,22.47322],[106.57768,22.46814],[106.58454,22.47449],[106.58042,22.50304],[106.58248,22.51826],[106.58866,22.53095],[106.59072,22.54934],[106.59896,22.55061],[106.60102,22.56392],[106.60102,22.57534],[106.60926,22.57914],[106.60789,22.58548],[106.60308,22.58992],[106.60995,22.6026],[106.62918,22.60386],[106.64909,22.5766],[106.669,22.5766],[106.6793,22.5709],[106.69784,22.58294],[106.70745,22.57851],[106.72668,22.58738],[106.72737,22.60196],[106.71569,22.61274],[106.72256,22.61844],[106.72943,22.63302],[106.72119,22.63809],[106.72531,22.64379],[106.73492,22.6476],[106.7411,22.66787],[106.76033,22.67294],[106.76513,22.68308],[106.75964,22.69195],[106.78436,22.70525],[106.77063,22.71539],[106.77337,22.72362],[106.76925,22.73312],[106.79672,22.76858],[106.8132,22.76985],[106.82212,22.77808],[106.82418,22.78757],[106.83723,22.80466],[106.81663,22.81922],[106.79397,22.81542],[106.772,22.81859],[106.76376,22.80783],[106.76651,22.82871],[106.70814,22.86605],[106.7205,22.87491],[106.70745,22.88756],[106.70059,22.88376],[106.69303,22.88819],[106.68479,22.88376],[106.67381,22.89135],[106.66694,22.88882],[106.67175,22.87617],[106.65184,22.86668],[106.64291,22.87364],[106.62506,22.87807],[106.63055,22.89072],[106.6175,22.89831],[106.60446,22.92993],[106.59141,22.9331],[106.56463,22.91855],[106.54472,22.9274],[106.5406,22.94321],[106.51039,22.94764],[106.50146,22.92993],[106.49803,22.90527],[106.48223,22.90211],[106.47399,22.9097],[106.46232,22.89578],[106.45202,22.90337],[106.44172,22.88946],[106.42868,22.88503],[106.42181,22.89641],[106.40876,22.88503],[106.41769,22.87427],[106.40464,22.87491],[106.40258,22.88123],[106.37786,22.88313],[106.36344,22.87807],[106.36138,22.86478],[106.34697,22.85719],[106.32705,22.87301],[106.31195,22.86415],[106.2989,22.87364],[106.29135,22.87301],[106.28929,22.86731],[106.25701,22.87807],[106.26525,22.88186],[106.25152,22.89578],[106.26251,22.89705],[106.26388,22.90653],[106.25701,22.92171],[106.24877,22.92361],[106.24465,22.94638],[106.23848,22.94448],[106.23573,22.95839],[106.22406,22.95902],[106.20414,22.98241],[106.16432,22.98494],[106.12999,23.00011],[106.12037,22.99],[106.12449,22.98052],[106.1087,22.99],[106.09085,22.99063],[106.07986,22.99822],[106.06063,22.99126],[106.00227,22.99126],[105.99609,22.9723],[106.00708,22.9704],[105.99403,22.94068],[105.95626,22.95017],[105.95489,22.94068],[105.93635,22.93689],[105.9233,22.94764],[105.88897,22.93563],[105.88073,22.91855],[105.87112,22.92298],[105.87387,22.93183],[105.867,22.93752],[105.86013,22.93626],[105.85601,22.9489],[105.83473,22.96345],[105.83198,22.97862],[105.81619,22.99316],[105.80314,22.99316],[105.78872,23.00327],[105.78186,23.01907],[105.75302,23.03803],[105.73654,23.03487],[105.72967,23.04372],[105.7283,23.06393],[105.67749,23.06393],[105.64384,23.08289],[105.63079,23.08099],[105.62736,23.07341],[105.61706,23.07025],[105.61019,23.07846],[105.5944,23.08099],[105.58685,23.07404],[105.57243,23.07341],[105.56694,23.09362],[105.57243,23.10689],[105.55801,23.13152],[105.56762,23.14225],[105.56213,23.15172],[105.55938,23.16877],[105.53054,23.19149],[105.4969,23.20664],[105.47905,23.25017],[105.45364,23.27856],[105.44677,23.28045],[105.43098,23.30064],[105.41862,23.30127],[105.40901,23.28424],[105.39115,23.29496],[105.38429,23.31136],[105.36918,23.32334],[105.35202,23.34603],[105.35064,23.36747],[105.32249,23.39457],[105.29914,23.37251],[105.29708,23.36116],[105.28816,23.35801],[105.28404,23.34225],[105.27168,23.34036],[105.25589,23.34351],[105.24833,23.33027],[105.25932,23.31829],[105.25245,23.31136],[105.24353,23.28928],[105.22979,23.28487],[105.23185,23.27541],[105.21537,23.26721],[105.214,23.27541],[105.20301,23.26342],[105.19615,23.26658],[105.19546,23.27793],[105.16799,23.2855],[105.15426,23.26405],[105.12611,23.25838],[105.1165,23.24828],[105.11169,23.25081],[105.10345,23.26279],[105.08285,23.25585],[105.08216,23.25901],[105.07186,23.26216],[105.02723,23.22367],[105.00251,23.2161],[104.99633,23.19969],[104.97779,23.19465],[104.96475,23.20474],[104.95651,23.20664],[104.95513,23.19906],[104.95857,23.1877],[104.95101,23.17192],[104.91531,23.1877],[104.89334,23.17887],[104.87686,23.16498],[104.87892,23.14288],[104.87136,23.12204],[104.86244,23.12204],[104.86038,23.12646],[104.85351,23.11699],[104.81437,23.11952],[104.81231,23.08289],[104.82399,23.07088],[104.83154,23.02413],[104.82673,23.01149],[104.84321,22.99379],[104.84458,22.9685],[104.85969,22.96281],[104.86312,22.9508],[104.83566,22.92551],[104.77249,22.89894],[104.75807,22.86162],[104.73678,22.8515],[104.73884,22.84011],[104.73403,22.83188],[104.73541,22.81985],[104.69078,22.82871],[104.67636,22.81669],[104.65919,22.83504],[104.62348,22.83188],[104.6125,22.81669],[104.59602,22.81732],[104.59808,22.82365],[104.60426,22.83251],[104.59739,22.8477],[104.58229,22.86035],[104.56649,22.83568],[104.53353,22.81796],[104.51705,22.78821],[104.50676,22.78504],[104.46762,22.75275],[104.45869,22.75212],[104.42298,22.73755],[104.41062,22.72552],[104.39895,22.70018],[104.37423,22.69068],[104.35363,22.69448],[104.3399,22.72109],[104.32067,22.73249],[104.30831,22.72869],[104.27948,22.74072],[104.2678,22.74325],[104.26986,22.75592],[104.25819,22.76668],[104.25544,22.77681],[104.26849,22.81289],[104.26506,22.82049],[104.27467,22.83821],[104.26712,22.84454],[104.22454,22.82492],[104.16618,22.81606],[104.14146,22.80213],[104.1291,22.80973],[104.10713,22.79517],[104.0982,22.78631],[104.09202,22.76731],[104.08103,22.76288],[104.08172,22.75655],[104.06044,22.74958],[104.04052,22.72425],[104.02198,22.66597],[104.0316,22.65393],[104.01924,22.59309],[104.01168,22.57914],[104.00413,22.57787],[104.01718,22.56646],[104.011,22.55695],[104.01649,22.54617],[104.0055,22.54173],[104.01237,22.52143],[104.0055,22.51763],[103.98971,22.52016],[103.9746,22.50748],[103.96843,22.51255],[103.96499,22.50684],[103.95332,22.51255],[103.94371,22.52778],[103.93409,22.52524],[103.92654,22.53856],[103.91624,22.53285],[103.91418,22.54236],[103.8874,22.57026],[103.88328,22.56265],[103.862,22.58485],[103.84689,22.59372],[103.83796,22.6083],[103.82286,22.61781],[103.81324,22.64063],[103.78234,22.66661],[103.7693,22.68878],[103.75282,22.68941],[103.7384,22.70272],[103.74252,22.71032],[103.70201,22.74199],[103.68759,22.74768],[103.68209,22.76351],[103.66699,22.76795],[103.66424,22.78631],[103.64158,22.79707],[103.61824,22.78504],[103.61961,22.77618],[103.56468,22.69955],[103.56811,22.67928],[103.57978,22.66471],[103.57154,22.64126],[103.55369,22.63556],[103.54614,22.61084],[103.52966,22.59309],[103.50906,22.60577],[103.50906,22.61337],[103.48915,22.61844],[103.45687,22.65837],[103.46099,22.67801],[103.42666,22.71222],[103.43009,22.73185],[103.44451,22.73755],[103.43902,22.75402],[103.41911,22.76288],[103.41087,22.77934],[103.3889,22.78314],[103.3731,22.7996],[103.33465,22.80783],[103.32778,22.81732],[103.31817,22.80276],[103.31955,22.78061],[103.28727,22.73882],[103.28796,22.70652],[103.28109,22.70018],[103.28178,22.68435],[103.26599,22.67231],[103.25019,22.67167],[103.23165,22.65774],[103.22891,22.64696],[103.20762,22.6457],[103.19526,22.65203],[103.18359,22.64253],[103.18496,22.63049],[103.17604,22.62922],[103.16024,22.59626],[103.18153,22.55885],[103.15818,22.54173],[103.14926,22.54553],[103.12042,22.5208],[103.08952,22.51319],[103.07373,22.49035],[103.07098,22.47576],[103.07991,22.46814],[103.08059,22.44974],[103.06961,22.4472],[103.05793,22.44974],[103.03115,22.44276],[102.99202,22.46307],[102.98584,22.47893],[102.96524,22.47703],[102.95768,22.48401],[102.92884,22.48401],[102.92335,22.50684],[102.91236,22.51192],[102.90962,22.52524],[102.89451,22.53412],[102.89245,22.543],[102.89726,22.54236],[102.88078,22.56075],[102.8849,22.569],[102.87666,22.57724],[102.8849,22.58421],[102.87597,22.59753],[102.86636,22.60069],[102.86705,22.6102],[102.84851,22.61084],[102.84507,22.61908],[102.82241,22.62732],[102.81898,22.62161],[102.7892,22.62542],[102.78465,22.63492],[102.78808,22.64189],[102.76611,22.64633],[102.74826,22.67104],[102.73727,22.66597],[102.72491,22.67738],[102.71049,22.67991],[102.70706,22.69322],[102.68783,22.70398],[102.65625,22.68878],[102.60681,22.73185],[102.58895,22.72299],[102.58621,22.70652],[102.57041,22.70588],[102.56355,22.72489],[102.55119,22.74452],[102.51136,22.77681],[102.48321,22.77808],[102.48115,22.76985],[102.46879,22.76985],[102.45231,22.75338],[102.45643,22.73439],[102.44545,22.72362],[102.43652,22.69955],[102.41043,22.68308],[102.39669,22.69068],[102.38227,22.68181],[102.40562,22.64189],[102.41798,22.64063],[102.42141,22.63429],[102.40562,22.63302],[102.37403,22.59245],[102.34931,22.58928],[102.3452,22.58231],[102.35687,22.56773],[102.33902,22.55885],[102.32322,22.55631],[102.32322,22.54934],[102.30056,22.53031],[102.29026,22.50494],[102.28134,22.5024],[102.26142,22.4656],[102.25112,22.45862],[102.2676,22.43007],[102.26417,22.41356],[102.23808,22.42689],[102.19001,22.43451],[102.16049,22.42753],[102.14744,22.39833],[102.13371,22.40722],[102.12684,22.41991],[102.12478,22.43451],[102.11036,22.43641],[102.10212,22.44403],[102.08839,22.44086],[102.05818,22.44911],[102.04925,22.45799],[102.02316,22.45482],[102.01149,22.44403],[101.99913,22.44213],[102.00119,22.43641],[101.9696,22.42689],[101.95587,22.44403],[101.90986,22.43705],[101.91741,22.42372],[101.91124,22.41483],[101.91192,22.40277],[101.90506,22.38373],[101.88995,22.38563],[101.86386,22.3888],[101.84669,22.41039],[101.83776,22.41547],[101.82334,22.43895],[101.82334,22.46434],[101.81167,22.46497],[101.80824,22.47385],[101.81442,22.47956],[101.79657,22.48337],[101.78421,22.5005],[101.75399,22.49923],[101.75262,22.49352],[101.73545,22.49923],[101.72172,22.47322],[101.68533,22.47703],[101.68327,22.47195],[101.69014,22.4637],[101.66404,22.44657],[101.67228,22.42816],[101.66061,22.42118],[101.67915,22.38055],[101.65786,22.36595],[101.64619,22.3488],[101.65168,22.33419],[101.63314,22.31196],[101.62834,22.29735],[101.6304,22.28274],[101.60568,22.26939],[101.58989,22.27956],[101.56105,22.28147],[101.55418,22.26812],[101.53701,22.25541],[101.54045,22.24016],[101.54457,22.23698],[101.54319,22.22872],[101.57203,22.20965],[101.56791,22.20139],[101.57684,22.18359],[101.59057,22.18168],[101.58577,22.16705],[101.60293,22.15751],[101.59469,22.14607],[101.60499,22.12953],[101.57478,22.12826],[101.57821,22.10472],[101.58508,22.1009],[101.58783,22.08691],[101.59538,22.08373],[101.59469,22.064],[101.60705,22.05891],[101.61323,22.05191],[101.61529,22.02836],[101.63383,22.01308],[101.6201,22.00353],[101.61598,21.97679],[101.63314,21.95323],[101.65443,21.95068],[101.66954,21.93158],[101.69014,21.94686],[101.69838,21.94623],[101.70661,21.92202],[101.69426,21.90546],[101.71554,21.88252],[101.72515,21.88316],[101.73683,21.87488],[101.73957,21.84684],[101.75399,21.83728],[101.77597,21.836],[101.77665,21.83026],[101.78489,21.82453],[101.77253,21.81879],[101.77116,21.80413],[101.76017,21.78181],[101.7588,21.75694],[101.74301,21.74865],[101.74644,21.72761],[101.7588,21.72569],[101.7691,21.71612],[101.77391,21.70145],[101.76361,21.69571],[101.77665,21.6906],[101.77047,21.65934],[101.78627,21.65487],[101.78558,21.63509],[101.8,21.637],[101.80824,21.64019],[101.81716,21.6236],[101.83433,21.61657],[101.8103,21.58848],[101.8103,21.57955],[101.80481,21.57571],[101.7485,21.58721],[101.7485,21.57444],[101.75399,21.56294],[101.76223,21.56039],[101.75262,21.54506],[101.75949,21.53229],[101.76979,21.52909],[101.78077,21.51696],[101.76841,21.5144],[101.7382,21.48565],[101.75468,21.45434],[101.75674,21.43709],[101.74644,21.42878],[101.75674,21.41727],[101.75331,21.40832],[101.74163,21.41024],[101.73683,21.40065],[101.74369,21.38019],[101.73889,21.37188],[101.73957,21.36421],[101.72721,21.35525],[101.73339,21.322],[101.76635,21.28809],[101.78009,21.29513],[101.79039,21.28873],[101.8,21.29001],[101.80206,21.27209],[101.81167,21.25994],[101.84669,21.25418],[101.83502,21.2273],[101.84051,21.21578],[101.83982,21.20617],[101.82746,21.20553],[101.8254,21.21194],[101.81442,21.21386],[101.79588,21.20681],[101.78146,21.22154],[101.76841,21.21642],[101.77665,21.20169],[101.7897,21.20105],[101.78489,21.19145],[101.79107,21.18633],[101.78009,21.16328],[101.76361,21.14791],[101.7176,21.14407],[101.70181,21.14983],[101.69357,21.15687],[101.70524,21.16072],[101.70043,21.17416],[101.67778,21.18441],[101.67297,21.20553],[101.65168,21.19657],[101.63246,21.20041],[101.6098,21.17544],[101.59469,21.18121],[101.58645,21.19017],[101.60293,21.21001],[101.60293,21.2209],[101.61323,21.22602],[101.60224,21.24138],[101.5892,21.2369],[101.54869,21.2561],[101.50886,21.2465],[101.49787,21.2497],[101.47934,21.2433],[101.44981,21.22538],[101.43127,21.23242],[101.40724,21.22474],[101.38801,21.22666],[101.32553,21.18825],[101.31111,21.18761],[101.29325,21.17416],[101.27952,21.18057],[101.27265,21.19209],[101.24931,21.20489],[101.24519,21.20425],[101.24862,21.21386],[101.25,21.21898],[101.21498,21.23178],[101.22596,21.2465],[101.22184,21.25418],[101.2445,21.27913],[101.25274,21.29577],[101.23901,21.30472],[101.2136,21.30728],[101.22734,21.32775],[101.23901,21.33095],[101.24038,21.33863],[101.25206,21.3399],[101.2603,21.35014],[101.25892,21.35589],[101.27265,21.36485],[101.24176,21.37444],[101.23626,21.38211],[101.24176,21.39042],[101.19163,21.40704],[101.18408,21.41791],[101.19987,21.43964],[101.193,21.45051],[101.19163,21.47543],[101.22184,21.49843],[101.21154,21.50674],[101.20742,21.5259],[101.21635,21.53101],[101.21635,21.5623],[101.18957,21.55656],[101.15524,21.56486],[101.14563,21.56294],[101.13807,21.57316],[101.15043,21.59168],[101.16897,21.59104],[101.16966,21.60125],[101.15936,21.6287],[101.1621,21.63892],[101.15387,21.64913],[101.15181,21.66955],[101.13258,21.67529],[101.12571,21.68869],[101.1161,21.68933],[101.12022,21.71612],[101.11129,21.74993],[101.12159,21.77352],[101.08932,21.77671],[101.01242,21.71293],[100.94101,21.6989],[100.91011,21.6855],[100.88813,21.68678],[100.84625,21.63892],[100.83457,21.637],[100.8078,21.61274],[100.79406,21.57252],[100.77209,21.57252],[100.72197,21.51249],[100.69862,21.51504],[100.67184,21.48118],[100.64437,21.48501],[100.60936,21.46329],[100.59562,21.46393],[100.57777,21.45115],[100.55236,21.45498],[100.53657,21.47224],[100.51803,21.47415],[100.48301,21.45945],[100.45898,21.48821],[100.4631,21.49907],[100.45761,21.51312],[100.44525,21.5144],[100.43083,21.54123],[100.39032,21.52398],[100.37452,21.53037],[100.34843,21.53165],[100.31616,21.4914],[100.30517,21.49204],[100.2983,21.48054],[100.28183,21.48501],[100.26672,21.4716],[100.2523,21.47287],[100.25367,21.46712],[100.23101,21.4684],[100.22895,21.48182],[100.20286,21.51185],[100.17814,21.51632],[100.1699,21.48438],[100.14862,21.50035],[100.12802,21.50929],[100.12184,21.52718],[100.12527,21.5374],[100.11772,21.55081],[100.12321,21.56741],[100.10673,21.58848],[100.11085,21.60125],[100.1342,21.61657],[100.14038,21.637],[100.15411,21.64913],[100.1754,21.6504],[100.16304,21.67465],[100.13214,21.70017],[100.09437,21.70464],[100.08544,21.69571],[100.07446,21.69379],[100.05043,21.67082],[100.0312,21.67848],[100.03463,21.69252],[100.02502,21.69826],[100.01747,21.69571],[99.98931,21.70911],[99.97489,21.74419],[99.97009,21.76906],[99.95842,21.77735],[99.95979,21.7952],[99.94194,21.82517],[99.94743,21.86532],[99.96528,21.88252],[99.95979,21.90864],[99.98313,21.91884],[99.97901,21.93476],[99.99893,21.97616],[99.98725,21.99589],[99.96597,22.0169],[99.95842,22.03982],[99.96734,22.04555],[99.97352,22.05891],[99.96116,22.05318],[99.93782,22.06082],[99.91859,22.05573],[99.9028,22.06909],[99.8767,22.071],[99.86228,22.06146],[99.87808,22.04045],[99.86846,22.03473],[99.86434,22.029],[99.83207,22.03027],[99.83551,22.03982],[99.80667,22.05573],[99.78195,22.05636],[99.75723,22.07355],[99.71878,22.064],[99.71878,22.04364],[99.68788,22.04682],[99.69543,22.07036],[99.68925,22.07991],[99.67414,22.07482],[99.6611,22.08882],[99.6508,22.09263],[99.6508,22.10663],[99.61372,22.09454],[99.59381,22.11554],[99.57733,22.10281],[99.56085,22.11681],[99.52308,22.09709],[99.47845,22.13844],[99.43244,22.10599],[99.39605,22.09963],[99.36653,22.10663],[99.35897,22.09454],[99.31915,22.10218],[99.30267,22.1009],[99.29306,22.11299],[99.27383,22.10281],[99.2601,22.11045],[99.20448,22.12953],[99.16809,22.15179],[99.15504,22.16833],[99.18182,22.16515],[99.20654,22.17278],[99.17976,22.1785],[99.17427,22.19312],[99.20929,22.23508],[99.2237,22.23635],[99.23263,22.25033],[99.22988,22.27067],[99.23538,22.28274],[99.234,22.29672],[99.25666,22.33483],[99.2752,22.34817],[99.27864,22.36468],[99.24774,22.39071],[99.27726,22.40214],[99.30816,22.42816],[99.30885,22.43959],[99.33494,22.45291],[99.38026,22.49606],[99.38026,22.51065],[99.3576,22.52334],[99.35966,22.53919],[99.38575,22.5747],[99.37271,22.6045],[99.36103,22.66661],[99.34799,22.67358],[99.33837,22.71285],[99.31503,22.73755],[99.3267,22.75402],[99.36859,22.76731],[99.38644,22.76478],[99.38919,22.78124],[99.38507,22.7901],[99.40086,22.83251],[99.42009,22.82808],[99.44068,22.84707],[99.46197,22.8496],[99.45373,22.86225],[99.43519,22.91792],[99.44206,22.94068],[99.47708,22.9274],[99.53887,22.90021],[99.54711,22.90717],[99.56085,22.90653],[99.56497,22.9312],[99.55879,22.9527],[99.54711,22.96345],[99.53476,22.96408],[99.53544,22.97167],[99.51965,22.99632],[99.51759,23.02602],[99.52995,23.05509],[99.52377,23.07467],[99.50935,23.08289],[99.43519,23.08541],[99.38507,23.1031],[99.36378,23.11762],[99.36378,23.12646],[99.32945,23.1372],[99.32121,23.11068],[99.30267,23.1031],[99.27932,23.10626],[99.27177,23.09868],[99.2649,23.1012],[99.25941,23.08225],[99.24499,23.07973],[99.23675,23.09426],[99.21478,23.09299],[99.20379,23.11004],[99.18731,23.10626],[99.14268,23.11004],[99.12826,23.10373],[99.11796,23.10815],[99.11315,23.09489],[99.10148,23.09236],[99.09393,23.10436],[99.04724,23.12204],[99.06166,23.17192],[99.04518,23.16498],[99.00672,23.16245],[98.96347,23.17003],[98.94973,23.18076],[98.91265,23.19023],[98.90304,23.18265],[98.88656,23.18076],[98.88382,23.19528],[98.89549,23.20348],[98.88931,23.21295],[98.9051,23.22304],[98.91471,23.23756],[98.91059,23.25333],[98.93051,23.26658],[98.92639,23.29496],[98.93669,23.2937],[98.93875,23.30757],[98.94699,23.3082],[98.90922,23.33595],[98.87764,23.32964],[98.90167,23.35864],[98.91609,23.35486],[98.92158,23.37692],[98.90991,23.39709],[98.92227,23.41662],[98.89617,23.44875],[98.89549,23.46009],[98.87626,23.49032],[98.84674,23.48403],[98.8488,23.47899],[98.83026,23.47836],[98.81652,23.49158],[98.81721,23.50418],[98.8021,23.53818],[98.81652,23.55706],[98.83506,23.56398],[98.84605,23.57972],[98.85772,23.57783],[98.86596,23.58853],[98.88176,23.59104],[98.8948,23.61558],[98.84811,23.6376],[98.83918,23.6898],[98.81996,23.69672],[98.81721,23.71306],[98.83163,23.72941],[98.80691,23.75769],[98.80691,23.76712],[98.78974,23.78471],[98.75061,23.77592],[98.73481,23.79162],[98.71215,23.79351],[98.69499,23.78471],[98.68537,23.80356],[98.67233,23.80733],[98.67782,23.8155],[98.69155,23.81173],[98.70391,23.84376],[98.69224,23.85004],[98.69018,23.86009],[98.69567,23.85821],[98.69911,23.87076],[98.69499,23.88834],[98.67851,23.91346],[98.69567,23.93731],[98.70597,23.93982],[98.69636,23.95299],[98.67439,23.95801],[98.69979,23.98688],[98.7252,23.96994],[98.73893,23.9737],[98.74031,23.98437],[98.75404,23.98437],[98.76571,23.99817],[98.76297,24.01573],[98.77121,24.0289],[98.79867,24.02639],[98.82202,24.04646],[98.84536,24.05524],[98.87214,24.07593],[98.86459,24.07969],[98.86871,24.08847],[98.8845,24.09097],[98.89823,24.10852],[98.89205,24.11855],[98.89411,24.12419],[98.87764,24.15552],[98.8536,24.13296],[98.8385,24.12858],[98.82064,24.13547],[98.77258,24.13359],[98.7561,24.12482],[98.74443,24.13108],[98.73413,24.12732],[98.7149,24.13046],[98.6943,24.10727],[98.67301,24.10414],[98.64555,24.10915],[98.61465,24.08847],[98.59268,24.08345],[98.59062,24.09285],[98.55629,24.1104],[98.54942,24.1292],[98.49449,24.12732],[98.46359,24.12795],[98.36265,24.11291],[98.35922,24.09975],[98.32351,24.10602],[98.2933,24.10288],[98.28163,24.11166],[98.25004,24.1104],[98.22258,24.11604],[98.20335,24.10539],[98.17039,24.10539],[98.16833,24.101],[98.08799,24.08784],[98.08731,24.08032],[98.03787,24.07342],[97.99736,24.05022],[97.98568,24.03266],[97.93762,24.02075],[97.91908,24.02326],[97.89505,24.01322],[97.88131,23.99566],[97.89642,23.98123],[97.8923,23.97746],[97.85728,23.98123],[97.83943,23.96492],[97.82707,23.9737],[97.8202,23.96868],[97.82501,23.9599],[97.81196,23.94233],[97.81265,23.96429],[97.76184,23.9304],[97.76458,23.9122],[97.74948,23.91157],[97.74742,23.90529],[97.7275,23.89713],[97.71789,23.88395],[97.70278,23.88144],[97.71514,23.87202],[97.69523,23.867],[97.69111,23.87328],[97.69111,23.88332],[97.68013,23.88081],[97.68013,23.86574],[97.66502,23.85632],[97.66021,23.8739],[97.64854,23.85507],[97.65129,23.84376],[97.64442,23.84376],[97.63343,23.87955],[97.62313,23.88332],[97.61627,23.89211],[97.59841,23.89713],[97.59017,23.90718],[97.56202,23.91157],[97.52906,23.92915],[97.53044,23.94986],[97.56477,23.96366],[97.57164,23.98562],[97.62657,24.00569],[97.62382,24.02639],[97.63275,24.02012],[97.63137,24.05022],[97.63961,24.04709],[97.65815,24.06652],[97.68356,24.07969],[97.69386,24.09661],[97.70828,24.09975],[97.71377,24.1104],[97.73231,24.11604],[97.73094,24.1292],[97.73712,24.13923],[97.73506,24.15301],[97.75154,24.16554],[97.74398,24.18747],[97.7275,24.19123],[97.72544,24.20689],[97.72819,24.23131],[97.74467,24.24821],[97.76802,24.26261],[97.74673,24.28452],[97.71789,24.30079],[97.69249,24.29578],[97.66777,24.30142],[97.65953,24.33145],[97.66777,24.34897],[97.68081,24.34209],[97.70347,24.34522],[97.71652,24.36336],[97.71446,24.37712],[97.68905,24.38962],[97.67532,24.40838],[97.68013,24.41464],[97.67738,24.44527],[97.66777,24.45652],[97.60734,24.44152],[97.59635,24.44965],[97.59086,24.44089],[97.57232,24.44339],[97.52906,24.43777],[97.52975,24.44527],[97.55172,24.48464],[97.56065,24.55961],[97.56889,24.60394],[97.56683,24.65263],[97.5737,24.65949],[97.56889,24.66885],[97.56752,24.69381],[97.56546,24.70379],[97.56889,24.71065],[97.56614,24.72937],[97.5531,24.72999],[97.5476,24.74433],[97.57164,24.77301],[97.59086,24.7699],[97.61558,24.77925],[97.64991,24.79483],[97.67875,24.82849],[97.69386,24.83348],[97.70278,24.84718],[97.70759,24.83659],[97.74192,24.82974],[97.77076,24.82849],[97.79548,24.84781],[97.79892,24.86214],[97.79068,24.86463],[97.78793,24.87397],[97.77351,24.88955],[97.7639,24.88269],[97.73094,24.91134],[97.73094,24.94746],[97.71652,24.98232],[97.71926,25.01592],[97.72888,25.04765],[97.71926,25.08248],[97.73025,25.08995],[97.73231,25.08124],[97.74467,25.08248],[97.75085,25.09492],[97.7584,25.09865],[97.77626,25.12477],[97.77832,25.1316],[97.79823,25.16765],[97.81745,25.23041],[97.84011,25.27326],[97.85865,25.26581],[97.87239,25.26581],[97.90466,25.21923],[97.91908,25.21301],[97.94311,25.21798],[97.96165,25.24407],[97.96783,25.2391],[97.985,25.25525],[98.00491,25.28319],[98.00216,25.29685],[98.02207,25.30927],[98.03855,25.30306],[98.06945,25.31423],[98.07495,25.33471],[98.08799,25.33844],[98.09143,25.35085],[98.09692,25.35209],[98.10104,25.37815],[98.09623,25.38001],[98.10241,25.39614],[98.11821,25.38559],[98.13743,25.38621],[98.15322,25.42281],[98.14224,25.43335],[98.15116,25.43893],[98.15803,25.45381],[98.14704,25.48109],[98.13674,25.5003],[98.12645,25.5065],[98.13194,25.52137],[98.15803,25.52695],[98.16146,25.54553],[98.17245,25.54987],[98.18893,25.57341],[98.16696,25.62543],[98.18206,25.62666],[98.1903,25.61552],[98.2006,25.6149],[98.2061,25.61923],[98.2164,25.61366],[98.23768,25.60933],[98.24386,25.61119],[98.27476,25.59261],[98.28163,25.58084],[98.29467,25.57651],[98.30291,25.55049],[98.3139,25.54801],[98.32626,25.56598],[98.3448,25.58022],[98.36128,25.57836],[98.37913,25.59818],[98.4011,25.60004],[98.40866,25.61181],[98.40866,25.65576],[98.43132,25.68113],[98.45947,25.69103],[98.46839,25.7065],[98.45947,25.73681],[98.47938,25.75846],[98.47457,25.78443],[98.48899,25.79618],[98.49243,25.8141],[98.50616,25.81596],[98.51852,25.82523],[98.51646,25.83388],[98.52813,25.84068],[98.53225,25.84686],[98.54667,25.84439],[98.55354,25.84686],[98.57757,25.84068],[98.57688,25.82647],[98.62976,25.80298],[98.66546,25.82152],[98.67439,25.82029],[98.68606,25.84439],[98.70597,25.85489],[98.70872,25.88208],[98.70323,25.90246],[98.69087,25.9142],[98.68881,25.93273],[98.66066,25.95866],[98.65036,25.96421],[98.64555,25.97533],[98.61534,25.97533],[98.60229,26.03025],[98.60092,26.06295],[98.59268,26.07343],[98.57963,26.07343],[98.5865,26.0833],[98.58512,26.09748],[98.57276,26.12091],[98.58444,26.13016],[98.58169,26.14619],[98.60229,26.13324],[98.63113,26.15174],[98.65448,26.14496],[98.66752,26.12215],[98.65722,26.1055],[98.66272,26.09193],[98.67576,26.09933],[98.69705,26.11475],[98.70048,26.1129],[98.71902,26.13016],[98.71421,26.14619],[98.70666,26.1468],[98.71215,26.15975],[98.72589,26.16283],[98.73481,26.18994],[98.72451,26.20227],[98.72383,26.22013],[98.70803,26.23922],[98.69911,26.24477],[98.69087,26.23676],[98.67027,26.24354],[98.68194,26.26817],[98.67576,26.28356],[98.68606,26.2971],[98.68194,26.31003],[98.70597,26.32665],[98.7355,26.35557],[98.72726,26.3728],[98.73207,26.38387],[98.74305,26.38879],[98.75198,26.42938],[98.74237,26.44352],[98.75885,26.50376],[98.74855,26.51236],[98.75747,26.53509],[98.75541,26.56703],[98.76777,26.5744],[98.7815,26.60571],[98.77807,26.61676],[98.78082,26.62413],[98.75953,26.66648],[98.7664,26.67323],[98.7664,26.68304],[98.76983,26.68795],[98.77121,26.69531],[98.75816,26.6947],[98.7458,26.70022],[98.74374,26.71801],[98.75541,26.75296],[98.76228,26.80384],[98.73069,26.85409],[98.75679,26.87859],[98.75267,26.92635],[98.74374,26.93492],[98.74717,26.94533],[98.73687,26.96614],[98.7458,26.9949],[98.73344,27.00713],[98.74511,27.01937],[98.76297,27.02181],[98.76571,27.05178],[98.74099,27.07563],[98.72657,27.07013],[98.71353,27.07808],[98.71353,27.09275],[98.70872,27.11047],[98.71353,27.11903],[98.70803,27.13736],[98.71147,27.14164],[98.70735,27.16608],[98.70666,27.18196],[98.70117,27.19235],[98.69018,27.20151],[98.69979,27.21922],[98.72314,27.22654],[98.72039,27.2357],[98.72451,27.24547],[98.73207,27.24913],[98.71421,27.25951],[98.71696,27.27538],[98.73481,27.28636],[98.73001,27.30345],[98.74099,27.32907],[98.73207,27.34005],[98.73207,27.35225],[98.71696,27.35774],[98.69979,27.38335],[98.70048,27.41627],[98.68537,27.43029],[98.68743,27.45283],[98.70117,27.45344],[98.70391,27.46685],[98.68263,27.48939],[98.69224,27.50705],[98.68606,27.51436],[98.69361,27.51984],[98.70323,27.52106],[98.69773,27.54724],[98.70666,27.55759],[98.70254,27.56672],[98.69155,27.56306],[98.67576,27.58619],[98.66203,27.58984],[98.64761,27.56733],[98.61946,27.57828],[98.60229,27.58254],[98.59886,27.5728],[98.58718,27.56915],[98.58169,27.57402],[98.5865,27.58863],[98.57826,27.60749],[98.56246,27.64339],[98.55423,27.65129],[98.54805,27.64034],[98.53637,27.63974],[98.53225,27.62331],[98.50822,27.63],[98.50685,27.6373],[98.47457,27.6373],[98.45809,27.6592],[98.44368,27.66832],[98.43269,27.66528],[98.42994,27.65616],[98.43956,27.62879],[98.43063,27.61479],[98.43544,27.60506],[98.43063,27.59593],[98.432,27.55393],[98.40454,27.5448],[98.39218,27.52045],[98.37226,27.51009],[98.35304,27.51801],[98.33793,27.51192],[98.31665,27.52349],[98.31733,27.53506],[98.30566,27.54906],[98.31047,27.5868],[98.29879,27.61479],[98.30429,27.63244],[98.28987,27.63669],[98.28437,27.65555],[98.27751,27.66589],[98.26652,27.66042],[98.26171,27.67988],[98.23562,27.69386],[98.23837,27.70723],[98.22395,27.71392],[98.22395,27.72973],[98.24455,27.74006],[98.24317,27.74796],[98.2164,27.76619],[98.22395,27.81235],[98.21296,27.81539],[98.1958,27.82753],[98.1752,27.83421],[98.17108,27.85425],[98.18344,27.87428],[98.19992,27.8755],[98.20472,27.89067],[98.1903,27.94103],[98.15666,27.94224],[98.14018,27.9568],[98.13194,27.99379],[98.1388,27.99682],[98.1388,28.0138],[98.14292,28.01865],[98.13743,28.0441],[98.15254,28.06713],[98.15872,28.08591],[98.1594,28.10469],[98.14773,28.11619],[98.1491,28.12346],[98.17108,28.16403]]]}},{"type":"Feature","properties":{"cq_zone_name":"Japanese Zone","cq_zone_number":25,"cq_zone_name_loc":[38,134]},"geometry":{"type":"Polygon","coordinates":[[[124,39],[124,30],[121.7,22],[130,22],[160,40],[146.16455,43.26843],[145.54187,43.542],[145.22612,43.82251],[146.49147,45.73822],[139.77955,45.73822],[136.66227,42.24603],[130.77271,42.24603],[130.68908,42.29407],[130.68248,42.30341],[130.6594,42.31581],[130.64937,42.32363],[130.64483,42.33451],[130.64424,42.3469],[130.64913,42.3527],[130.65536,42.35915],[130.66294,42.36225],[130.66846,42.36636],[130.66855,42.37495],[130.6651,42.37996],[130.66063,42.38398],[130.65753,42.38775],[130.65486,42.39042],[130.64514,42.40221],[130.64472,42.40826],[130.64337,42.4104],[130.64082,42.4131],[130.64067,42.41543],[130.63224,42.42295],[130.60546,42.43207],[130.57113,42.43308],[130.56427,42.4417],[130.56358,42.465],[130.58075,42.47412],[130.58075,42.48273],[130.55397,42.49184],[130.54779,42.50703],[130.55122,42.52474],[130.52581,42.54751],[130.52581,42.56572],[130.51208,42.58392],[130.51963,42.6001],[130.51277,42.61829],[130.47843,42.61728],[130.4599,42.59302],[130.47981,42.56623],[130.475,42.55459],[130.44822,42.54751],[130.42419,42.55763],[130.41732,42.57482],[130.43655,42.60313],[130.41526,42.61476],[130.39192,42.6001],[130.38024,42.60212],[130.37544,42.61627],[130.31227,42.65921],[130.28686,42.7006],[130.25459,42.70666],[130.23536,42.73894],[130.24635,42.76062],[130.23399,42.78028],[130.2539,42.78885],[130.23674,42.81051],[130.25047,42.85734],[130.27107,42.88602],[130.26351,42.90011],[130.25253,42.90765],[130.21888,42.90363],[130.1612,42.91419],[130.13786,42.90262],[130.12207,42.91117],[130.10421,42.91318],[130.10215,42.92877],[130.12413,42.92877],[130.13237,42.93129],[130.13511,42.93682],[130.13168,42.94184],[130.12344,42.93883],[130.11451,42.94737],[130.11932,42.95692],[130.14679,42.97049],[130.14747,42.97601],[130.13992,42.98003],[130.13305,42.97752],[130.12207,42.98556],[130.10971,42.98757],[130.0843,42.98204],[130.05958,42.96697],[130.03898,42.97199],[130.0177,42.96898],[130.00671,42.97501],[129.99366,42.97049],[129.9559,42.97752],[129.9504,42.98807],[129.9559,43.01017],[129.92843,43.00916],[129.90371,43.00715],[129.88861,42.99912],[129.87693,42.98807],[129.88311,42.97802],[129.90371,42.98054],[129.91607,42.97853],[129.91401,42.97199],[129.90509,42.96747],[129.88792,42.97149],[129.87281,42.97049],[129.86595,42.97099],[129.85084,42.95943],[129.85084,42.94586],[129.87007,42.91922],[129.86663,42.9152],[129.84603,42.92123],[129.83848,42.90514],[129.84397,42.89156],[129.83642,42.86338],[129.82406,42.86137],[129.81308,42.84878],[129.81514,42.83569],[129.80209,42.81706],[129.80964,42.80446],[129.8117,42.79086],[129.7966,42.78431],[129.79454,42.77776],[129.78561,42.77373],[129.78286,42.7581],[129.76913,42.73087],[129.76089,42.72583],[129.75952,42.70766],[129.78012,42.68647],[129.79522,42.68495],[129.80278,42.68193],[129.80278,42.67789],[129.79316,42.67233],[129.78492,42.6789],[129.77462,42.67132],[129.77806,42.66628],[129.77531,42.65264],[129.78698,42.64557],[129.78149,42.64103],[129.77256,42.64254],[129.76638,42.65466],[129.74784,42.64911],[129.7499,42.64153],[129.7602,42.6385],[129.7657,42.63294],[129.75265,42.62385],[129.75471,42.61476],[129.77119,42.61577],[129.7808,42.61425],[129.77874,42.60465],[129.75677,42.6001],[129.75059,42.58342],[129.74029,42.5814],[129.73617,42.57229],[129.73823,42.5551],[129.74647,42.54296],[129.74304,42.5298],[129.73754,42.52272],[129.74029,42.51209],[129.73205,42.49792],[129.7396,42.49184],[129.74372,42.46703],[129.73411,42.46196],[129.72312,42.44322],[129.71351,42.43764],[129.70115,42.427],[129.68124,42.42852],[129.67163,42.4346],[129.64347,42.42599],[129.61944,42.46247],[129.60914,42.46348],[129.59816,42.45132],[129.58923,42.45183],[129.58374,42.44474],[129.60914,42.44322],[129.60914,42.43916],[129.59678,42.42801],[129.59884,42.41686],[129.59129,42.40875],[129.5755,42.41433],[129.56451,42.40165],[129.55833,42.38441],[129.57344,42.38796],[129.56932,42.37832],[129.55558,42.37883],[129.55009,42.37427],[129.55284,42.36412],[129.54597,42.36057],[129.54254,42.3697],[129.53498,42.36311],[129.52468,42.39202],[129.5082,42.39202],[129.4979,42.39912],[129.49653,42.41027],[129.48005,42.41838],[129.45808,42.42295],[129.44778,42.4422],[129.43542,42.44271],[129.4313,42.43308],[129.41619,42.43663],[129.39765,42.45082],[129.38736,42.44778],[129.38736,42.44068],[129.38873,42.43308],[129.38324,42.42447],[129.36058,42.42497],[129.35508,42.43055],[129.36264,42.43866],[129.36882,42.4498],[129.36264,42.45487],[129.35028,42.45386],[129.33792,42.44676],[129.33517,42.43815],[129.35234,42.42649],[129.35508,42.4194],[129.35234,42.41737],[129.34135,42.41838],[129.33998,42.41382],[129.34959,42.40977],[129.35096,42.40571],[129.3386,42.40571],[129.33105,42.41838],[129.33174,42.43156],[129.32075,42.42548],[129.32075,42.41838],[129.3077,42.42396],[129.30496,42.4199],[129.31114,42.4052],[129.30084,42.40368],[129.32075,42.38898],[129.31663,42.3834],[129.29328,42.38948],[129.29054,42.37832],[129.27475,42.38644],[129.26857,42.38644],[129.26239,42.37274],[129.25415,42.37325],[129.25277,42.37832],[129.24179,42.37985],[129.23286,42.37122],[129.23698,42.3626],[129.22531,42.35549],[129.23011,42.34382],[129.24591,42.34129],[129.25689,42.32707],[129.24316,42.31743],[129.22393,42.31337],[129.20677,42.32047],[129.19372,42.31337],[129.20951,42.3027],[129.21638,42.3027],[129.22187,42.30829],[129.2308,42.31032],[129.23492,42.30626],[129.22462,42.2961],[129.19784,42.28442],[129.20539,42.28137],[129.22531,42.28035],[129.21638,42.26511],[129.19921,42.26155],[129.19097,42.26511],[129.17793,42.26257],[129.1745,42.23665],[129.18136,42.23461],[129.1896,42.24173],[129.20059,42.24275],[129.20539,42.23766],[129.19441,42.22699],[129.20127,42.21326],[129.21844,42.21631],[129.2205,42.20461],[129.1896,42.20309],[129.18891,42.19037],[129.15733,42.18477],[129.16557,42.16442],[129.14154,42.16493],[129.12574,42.16238],[129.12849,42.15169],[129.1175,42.1466],[129.11338,42.13896],[129.10514,42.13947],[129.10102,42.14253],[129.09141,42.13795],[129.08111,42.141],[129.07905,42.15271],[129.07081,42.15627],[129.06532,42.15271],[129.06944,42.13744],[129.05227,42.13947],[129.04884,42.13031],[129.03991,42.13438],[129.03648,42.12318],[129.02687,42.11859],[129.03991,42.11503],[129.03305,42.10739],[129.02137,42.09873],[129.00901,42.09771],[129.00215,42.08956],[128.98498,42.09159],[128.97605,42.08854],[128.96369,42.09465],[128.94996,42.08089],[128.94584,42.06356],[128.95339,42.0605],[128.95614,42.0549],[128.94927,42.0498],[128.95202,42.04215],[128.94584,42.03246],[128.94653,42.0243],[128.93966,42.02532],[128.93005,42.01614],[128.90533,42.01053],[128.89228,42.01767],[128.89022,42.02277],[128.88198,42.02634],[128.87512,42.02175],[128.85864,42.0243],[128.85246,42.02889],[128.83667,42.02226],[128.82843,42.03144],[128.82225,42.03246],[128.80783,42.04215],[128.80233,42.04011],[128.78036,42.03909],[128.76937,42.03195],[128.76594,42.03807],[128.75564,42.03858],[128.74877,42.05133],[128.73024,42.0498],[128.73024,42.04215],[128.72406,42.04062],[128.70071,42.02379],[128.69178,42.01614],[128.67736,42.01308],[128.66088,42.01818],[128.64921,42.01665],[128.65402,42.02022],[128.65264,42.02583],[128.62861,42.03603],[128.61625,42.03093],[128.60389,42.03195],[128.58947,42.0243],[128.59222,42.01563],[128.5881,42.00695],[128.5778,42.00083],[128.56407,41.99777],[128.55995,41.99981],[128.54621,42.00083],[128.54141,42.0044],[128.53385,42.00185],[128.48991,41.99675],[128.47892,42.0044],[128.46244,42.00848],[128.46107,42.01308],[128.44184,42.01563],[128.43292,42.02124],[128.40133,42.01614],[128.28392,42.02481],[128.08822,42.02124],[128.03123,41.99522],[128.04908,41.98042],[128.05458,41.97889],[128.07311,41.96868],[128.08891,41.94978],[128.09921,41.94672],[128.10058,41.93497],[128.09715,41.92322],[128.10264,41.89972],[128.10813,41.8941],[128.10333,41.87722],[128.10401,41.85524],[128.09715,41.83836],[128.10607,41.80868],[128.10264,41.80612],[128.10676,41.79128],[128.11363,41.78769],[128.12667,41.77848],[128.13354,41.78257],[128.13835,41.77643],[128.1459,41.73289],[128.16238,41.71188],[128.18298,41.70777],[128.20152,41.6847],[128.21182,41.68675],[128.21525,41.68111],[128.24066,41.67701],[128.26744,41.65444],[128.28186,41.62416],[128.29971,41.62776],[128.29971,41.61749],[128.28872,41.61236],[128.3052,41.59387],[128.31138,41.58668],[128.30932,41.57282],[128.29216,41.55894],[128.29353,41.55483],[128.28735,41.55072],[128.28666,41.54353],[128.29353,41.54353],[128.29559,41.53582],[128.2798,41.53376],[128.27499,41.52914],[128.27842,41.52245],[128.26057,41.5132],[128.25439,41.50446],[128.24615,41.5024],[128.22967,41.4916],[128.23928,41.48903],[128.23654,41.47308],[128.2331,41.47257],[128.22967,41.45456],[128.23928,41.4525],[128.23997,41.44787],[128.23379,41.44375],[128.22212,41.44427],[128.20632,41.42573],[128.20495,41.41132],[128.20015,41.40617],[128.19259,41.41029],[128.18161,41.41029],[128.16375,41.40205],[128.16101,41.39329],[128.14796,41.38196],[128.12049,41.37783],[128.11912,41.36907],[128.10676,41.36134],[128.09646,41.36804],[128.08616,41.37165],[128.08822,41.37732],[128.10264,41.38505],[128.10401,41.39123],[128.09715,41.39638],[128.09646,41.39071],[128.08204,41.39226],[128.07792,41.38814],[128.07929,41.37887],[128.07449,41.37577],[128.06831,41.38247],[128.06899,41.39329],[128.05183,41.39432],[128.0484,41.39071],[128.03947,41.38865],[128.03123,41.39174],[128.0381,41.3969],[128.03535,41.40462],[128.04084,41.41389],[128.02848,41.42007],[128.03123,41.41389],[128.01956,41.40874],[128.012,41.41029],[128.01406,41.42522],[128.00033,41.42522],[127.9969,41.42985],[128.00926,41.43654],[128.012,41.4453],[127.99758,41.44427],[127.98934,41.42934],[127.98866,41.41904],[127.97699,41.41595],[127.97699,41.42934],[127.96119,41.43603],[127.95021,41.435],[127.94128,41.43963],[127.94471,41.44272],[127.94334,41.44838],[127.93441,41.44684],[127.93167,41.45713],[127.92755,41.45302],[127.92823,41.44375],[127.91587,41.43654],[127.90832,41.42831],[127.90283,41.42779],[127.89802,41.43448],[127.89184,41.43191],[127.88497,41.43294],[127.88085,41.43809],[127.88772,41.44272],[127.88154,41.4453],[127.87468,41.44478],[127.86781,41.43809],[127.87056,41.42264],[127.86644,41.41543],[127.87262,41.40874],[127.86712,41.4005],[127.85682,41.40359],[127.84446,41.42007],[127.8273,41.41646],[127.82867,41.40359],[127.81974,41.40617],[127.81494,41.41801],[127.80464,41.42161],[127.79365,41.42161],[127.79022,41.41441],[127.78884,41.40462],[127.78541,41.40514],[127.78129,41.41646],[127.77442,41.42522],[127.76619,41.42007],[127.75314,41.42522],[127.73666,41.42316],[127.71949,41.41543],[127.70301,41.41646],[127.68722,41.4211],[127.67967,41.42007],[127.67143,41.41286],[127.66456,41.41389],[127.66181,41.42161],[127.65289,41.42625],[127.64671,41.42264],[127.65907,41.40977],[127.65701,41.40411],[127.64396,41.40359],[127.62474,41.41441],[127.61306,41.42985],[127.58628,41.42419],[127.55332,41.43243],[127.53891,41.45559],[127.54097,41.47463],[127.53135,41.47257],[127.52105,41.46485],[127.50114,41.47257],[127.4929,41.47463],[127.47573,41.46691],[127.47093,41.47051],[127.47299,41.47874],[127.46818,41.48028],[127.46131,41.47874],[127.45857,41.47051],[127.462,41.46228],[127.45239,41.45662],[127.44072,41.45765],[127.42218,41.46176],[127.40913,41.4561],[127.39883,41.46331],[127.39746,41.47668],[127.3796,41.47874],[127.37136,41.47411],[127.36106,41.47771],[127.35488,41.47668],[127.35694,41.46228],[127.34664,41.45971],[127.28622,41.48337],[127.27317,41.47566],[127.26013,41.47566],[127.25189,41.47926],[127.24777,41.48646],[127.27455,41.49109],[127.2821,41.49623],[127.2821,41.50292],[127.27592,41.51114],[127.26425,41.51217],[127.24227,41.49777],[127.22923,41.50652],[127.23472,41.51885],[127.22442,41.52143],[127.21687,41.51731],[127.21,41.51629],[127.2052,41.52194],[127.20863,41.53119],[127.19696,41.53222],[127.19284,41.52605],[127.18185,41.52245],[127.17155,41.52554],[127.16812,41.53839],[127.1585,41.53942],[127.14202,41.52348],[127.13516,41.52605],[127.13928,41.53736],[127.13172,41.54045],[127.12692,41.53788],[127.10975,41.53633],[127.09739,41.54353],[127.09602,41.54713],[127.09945,41.55278],[127.10632,41.55226],[127.11181,41.54815],[127.11731,41.54815],[127.11662,41.55226],[127.11319,41.55894],[127.1228,41.56716],[127.13996,41.56819],[127.13859,41.58001],[127.14752,41.58617],[127.15507,41.58412],[127.17498,41.58463],[127.17842,41.58771],[127.17361,41.59695],[127.1276,41.59541],[127.11525,41.60568],[127.12211,41.61133],[127.11799,41.62416],[127.10014,41.618],[127.08641,41.6257],[127.09877,41.63032],[127.10289,41.63392],[127.10151,41.64264],[127.09259,41.64418],[127.08435,41.64161],[127.0713,41.64367],[127.06443,41.65701],[127.04246,41.66419],[127.03079,41.67188],[127.0404,41.68316],[127.04658,41.69239],[127.05276,41.68932],[127.06237,41.68573],[127.0713,41.68829],[127.07611,41.69547],[127.07611,41.70214],[127.06855,41.70265],[127.05551,41.7006],[127.04864,41.70265],[127.05207,41.71188],[127.04864,41.71956],[127.04521,41.72571],[127.04658,41.73238],[127.04658,41.74262],[127.03834,41.74109],[127.01568,41.73904],[126.99989,41.74518],[127.00332,41.76004],[127.00126,41.76055],[126.97929,41.76414],[126.9738,41.77489],[126.96418,41.77438],[126.9374,41.76977],[126.92916,41.77438],[126.93122,41.78462],[126.94496,41.78769],[126.9477,41.79384],[126.94564,41.80458],[126.93603,41.80817],[126.91818,41.8051],[126.9017,41.79435],[126.88316,41.79025],[126.85363,41.76106],[126.84883,41.74211],[126.84333,41.7334],[126.8399,41.72161],[126.83372,41.71905],[126.82617,41.7211],[126.81655,41.74365],[126.81106,41.74775],[126.80419,41.74672],[126.79458,41.73442],[126.79595,41.72161],[126.79046,41.71341],[126.79733,41.69547],[126.7939,41.69137],[126.77948,41.69188],[126.76918,41.70214],[126.76986,41.71598],[126.75888,41.72315],[126.73965,41.73084],[126.71836,41.74672],[126.69158,41.75082],[126.68472,41.74467],[126.68129,41.73238],[126.68952,41.72469],[126.70944,41.72213],[126.72729,41.71649],[126.7266,41.7088],[126.70326,41.68829],[126.68266,41.67906],[126.68678,41.67291],[126.67923,41.66727],[126.66137,41.6647],[126.65451,41.65701],[126.64077,41.65393],[126.62704,41.6647],[126.61811,41.67137],[126.60713,41.66778],[126.60438,41.65854],[126.60987,41.64623],[126.60781,41.63956],[126.58859,41.62622],[126.58927,41.61595],[126.58035,41.61492],[126.56593,41.61698],[126.55906,41.61287],[126.57211,41.58514],[126.58721,41.56511],[126.58241,41.54867],[126.5625,41.54199],[126.5522,41.5276],[126.55288,41.51577],[126.54396,41.49417],[126.55151,41.48954],[126.55151,41.48543],[126.53915,41.48028],[126.52748,41.47103],[126.52061,41.45507],[126.5007,41.43243],[126.50619,41.41698],[126.50482,41.39277],[126.5158,41.38041],[126.5316,41.3732],[126.53572,41.36753],[126.53091,41.35568],[126.51786,41.34743],[126.4801,41.34485],[126.4746,41.34743],[126.47735,41.3531],[126.50138,41.35568],[126.50962,41.36238],[126.50756,41.37114],[126.48765,41.37165],[126.45607,41.35722],[126.43135,41.35155],[126.4286,41.34073],[126.43272,41.3299],[126.40731,41.33145],[126.39495,41.30153],[126.36062,41.27935],[126.36062,41.27212],[126.35376,41.26025],[126.35444,41.2427],[126.33316,41.23702],[126.31599,41.22773],[126.30844,41.21068],[126.305,41.18898],[126.28372,41.18588],[126.29127,41.16883],[126.27891,41.15797],[126.26586,41.1528],[126.23153,41.1435],[126.22398,41.12643],[126.19171,41.1166],[126.17866,41.10108],[126.16424,41.09125],[126.14021,41.08608],[126.11961,41.09073],[126.10794,41.07262],[126.13128,41.05812],[126.12579,41.04311],[126.11549,41.03016],[126.09832,41.03637],[126.0942,41.0286],[126.10313,41.00425],[126.07772,41.00373],[126.06124,40.99441],[126.06948,40.98611],[126.07017,40.98093],[126.07772,40.97367],[126.06468,40.96538],[126.0482,40.95967],[126.05026,40.94671],[126.03378,40.93945],[126.03584,40.92596],[126.03103,40.92337],[126.01387,40.9327],[125.99739,40.9327],[125.97747,40.91662],[125.97267,40.90988],[125.98022,40.90676],[125.99533,40.9161],[126.01593,40.91195],[126.02142,40.90002],[126.00563,40.8969],[125.98915,40.89275],[125.97198,40.90365],[125.96511,40.89534],[125.96443,40.88704],[125.94863,40.87769],[125.93009,40.87769],[125.91362,40.88133],[125.90675,40.89327],[125.9143,40.90988],[125.90744,40.91143],[125.89851,40.89794],[125.8889,40.8969],[125.8786,40.90417],[125.8683,40.90417],[125.85594,40.88444],[125.82641,40.87406],[125.80787,40.8616],[125.7962,40.86731],[125.79826,40.88029],[125.78384,40.88912],[125.76461,40.89015],[125.74813,40.86887],[125.70694,40.86783],[125.68359,40.83978],[125.63209,40.80809],[125.63209,40.79613],[125.67741,40.78678],[125.68496,40.78002],[125.68016,40.76286],[125.6417,40.76442],[125.59845,40.75558],[125.58197,40.7743],[125.56892,40.77586],[125.54832,40.76026],[125.54695,40.73581],[125.54214,40.72332],[125.52154,40.71707],[125.4776,40.71968],[125.45494,40.69938],[125.4515,40.6697],[125.43914,40.66605],[125.4261,40.67178],[125.41236,40.67022],[125.40756,40.66136],[125.41717,40.62958],[125.40756,40.62437],[125.3897,40.6301],[125.36979,40.6473],[125.35743,40.64886],[125.33821,40.63844],[125.32241,40.63844],[125.29357,40.65616],[125.28053,40.65407],[125.26817,40.64574],[125.26405,40.62072],[125.25032,40.61186],[125.17753,40.60248],[125.09582,40.55763],[125.0251,40.53467],[125.00175,40.51901],[125.00244,40.50388],[125.01136,40.49552],[125.03196,40.48873],[125.03952,40.48299],[125.04364,40.47097],[125.03883,40.46053],[125.02372,40.45792],[124.98252,40.47045],[124.9427,40.45374],[124.92485,40.45478],[124.90425,40.46314],[124.91043,40.47359],[124.90493,40.48194],[124.89463,40.4809],[124.85481,40.42813],[124.80125,40.39676],[124.76898,40.38682],[124.74975,40.38002],[124.73671,40.36695],[124.72984,40.33241],[124.71817,40.3188],[124.64126,40.29209],[124.61654,40.28738],[124.57466,40.25961],[124.5726,40.25175],[124.55474,40.24494],[124.54582,40.23865],[124.52041,40.22764],[124.51973,40.2224],[124.50943,40.21873],[124.50256,40.19828],[124.48951,40.18726],[124.48196,40.17257],[124.46067,40.17625],[124.44488,40.16628],[124.42771,40.14896],[124.42497,40.14214],[124.40437,40.13374],[124.38789,40.11168],[124.37347,40.10328],[124.36592,40.0912],[124.3515,40.08437],[124.33433,40.06073],[124.33708,40.04706],[124.36386,40.03918],[124.37141,40.03234],[124.37004,40.01552],[124.35356,39.97027],[124.346,39.97343],[124.34394,39.98711],[124.32266,39.97922],[124.3103,39.96712],[124.29451,39.9687],[124.28489,39.96291],[124.28352,39.94764],[124.29382,39.94396],[124.28009,39.92869],[124.26704,39.93238],[124.24369,39.92922],[124.22447,39.91763],[124.2176,39.89762],[124.21005,39.84544],[124.17228,39.83754],[124.16473,39.77688],[124,39]]]}},{"type":"Feature","properties":{"cq_zone_name":"Southeastern Zone of Asia","cq_zone_number":26,"cq_zone_name_loc":[16,100]},"geometry":{"type":"Polygon","coordinates":[[[98.14086,28.14526],[98.13056,28.15071],[98.12851,28.15979],[98.11615,28.16705],[98.09967,28.16463],[98.08868,28.20518],[98.0516,28.20276],[98.05023,28.19066],[98.02551,28.19308],[98.00766,28.21971],[98.02413,28.24511],[97.99118,28.29108],[97.95272,28.29954],[97.95547,28.32493],[97.9129,28.36844],[97.86895,28.36844],[97.84423,28.35273],[97.84423,28.33339],[97.79892,28.33097],[97.76733,28.37811],[97.73712,28.40348],[97.72064,28.49404],[97.6506,28.53868],[97.62588,28.52541],[97.59429,28.52541],[97.5737,28.54713],[97.52151,28.49404],[97.50091,28.49283],[97.50366,28.46989],[97.52151,28.44212],[97.50228,28.4228],[97.50503,28.40952],[97.47894,28.38294],[97.49267,28.35031],[97.51602,28.3346],[97.50366,28.31647],[97.46658,28.30559],[97.48306,28.28745],[97.46109,28.27052],[97.42126,28.29833],[97.40066,28.27777],[97.41439,28.25116],[97.37869,28.23906],[97.34985,28.24027],[97.34436,28.21487],[97.34779,28.20821],[97.35809,28.20518],[97.36221,28.19248],[97.35397,28.17371],[97.36084,28.16645],[97.35603,28.15374],[97.3265,28.14102],[97.32925,28.10832],[97.32444,28.08409],[97.3114,28.06228],[97.32719,28.05804],[97.35603,28.06592],[97.3677,28.04834],[97.37457,28.03259],[97.39448,28.01925],[97.39654,28.00834],[97.37525,27.97924],[97.36633,27.97681],[97.36427,27.96105],[97.378,27.95073],[97.36633,27.9386],[97.37869,27.8937],[97.36015,27.87307],[97.34161,27.8846],[97.32101,27.88946],[97.31414,27.90463],[97.30316,27.91616],[97.25029,27.89128],[97.24685,27.88399],[97.20222,27.84696],[97.19879,27.83786],[97.17819,27.82814],[97.17956,27.81843],[97.16995,27.81235],[97.14798,27.80992],[97.14454,27.79778],[97.1315,27.78988],[97.10403,27.78563],[97.11158,27.76922],[97.10266,27.74006],[97.0903,27.74856],[97.07244,27.751],[97.0594,27.7431],[97.04841,27.74553],[97.02713,27.73641],[97.02026,27.72547],[97.02095,27.71392],[97.00103,27.689],[96.99623,27.67258],[96.98181,27.67075],[96.97563,27.66102],[96.95777,27.66528],[96.93786,27.66163],[96.94198,27.6373],[96.92482,27.63183],[96.92825,27.62392],[96.9001,27.61662],[96.89872,27.60932],[96.91589,27.58619],[96.90559,27.57159],[96.92344,27.5588],[96.91383,27.5448],[96.92756,27.5375],[96.92207,27.51862],[96.9358,27.50766],[96.931,27.49609],[96.92413,27.48999],[96.91383,27.45771],[96.94404,27.42663],[96.94473,27.41871],[96.9564,27.40712],[96.97288,27.40469],[96.97082,27.39981],[96.97769,27.38823],[96.97357,27.37481],[96.99279,27.35103],[97.00241,27.34554],[97.01202,27.31687],[97.04292,27.30467],[97.05184,27.28026],[97.06352,27.27782],[97.06558,27.26744],[97.08824,27.24242],[97.1006,27.2412],[97.10334,27.22837],[97.10128,27.21372],[97.10952,27.20334],[97.13287,27.19235],[97.13699,27.17463],[97.15072,27.1673],[97.15896,27.16608],[97.16377,27.14897],[97.17681,27.14347],[97.17269,27.12331],[97.16514,27.11781],[97.14866,27.09214],[97.1109,27.10681],[97.09716,27.10864],[97.07588,27.09519],[97.00859,27.14531],[96.98524,27.14836],[96.97013,27.15936],[96.90147,27.17097],[96.85821,27.20212],[96.85752,27.21677],[96.8843,27.23204],[96.88842,27.24547],[96.87606,27.25951],[96.85684,27.26439],[96.82594,27.31565],[96.77856,27.35713],[96.74148,27.35835],[96.71539,27.37542],[96.70303,27.3742],[96.68998,27.34432],[96.66801,27.33395],[96.65016,27.34249],[96.64192,27.35469],[96.622,27.36627],[96.60484,27.36323],[96.59729,27.337],[96.57875,27.31199],[96.55883,27.29979],[96.54167,27.29979],[96.52519,27.28819],[96.51077,27.29674],[96.48468,27.29552],[96.43386,27.30467],[96.40022,27.28819],[96.35559,27.29002],[96.33773,27.28636],[96.32057,27.29491],[96.28967,27.28331],[96.28006,27.26988],[96.25396,27.27477],[96.23268,27.27416],[96.22444,27.26378],[96.20178,27.26134],[96.19422,27.25218],[96.15234,27.24425],[96.12968,27.23021],[96.10359,27.22532],[96.04522,27.19235],[96.03492,27.17341],[96.02188,27.16425],[96.00196,27.12086],[95.97656,27.10314],[95.94978,27.05606],[95.91476,27.03894],[95.90103,27.0261],[95.86875,27.01386],[95.85502,27.0157],[95.83168,27.00836],[95.8097,27.01753],[95.80284,26.99918],[95.78979,26.99367],[95.78636,26.97899],[95.77125,26.97348],[95.76576,26.95941],[95.75408,26.95635],[95.75683,26.91104],[95.72525,26.88594],[95.71014,26.88471],[95.67581,26.90676],[95.63873,26.8645],[95.63461,26.83938],[95.6092,26.81426],[95.55084,26.83019],[95.50277,26.80629],[95.48423,26.74745],[95.45951,26.7315],[95.44166,26.70206],[95.41694,26.69899],[95.373,26.68243],[95.35858,26.66832],[95.34347,26.67568],[95.32562,26.66648],[95.31395,26.66525],[95.30227,26.65114],[95.27343,26.65789],[95.26107,26.65727],[95.25695,26.672],[95.24665,26.68427],[95.23155,26.67814],[95.21369,26.65973],[95.2034,26.64254],[95.17112,26.63272],[95.15121,26.61492],[95.14709,26.59589],[95.15327,26.58361],[95.13542,26.55843],[95.12649,26.5572],[95.12168,26.55106],[95.10726,26.54123],[95.11756,26.52035],[95.07499,26.47364],[95.06332,26.4509],[95.06332,26.44352],[95.08186,26.44844],[95.10383,26.4177],[95.10108,26.39494],[95.13404,26.38264],[95.12306,26.35557],[95.12649,26.33465],[95.121,26.30757],[95.12855,26.30018],[95.12168,26.26139],[95.12718,26.25524],[95.11688,26.23615],[95.12855,26.22198],[95.14228,26.2152],[95.11894,26.18501],[95.12649,26.177],[95.11688,26.16468],[95.12649,26.14434],[95.11688,26.11598],[95.11894,26.1018],[95.13267,26.09502],[95.14366,26.09563],[95.14778,26.08947],[95.16838,26.08947],[95.18554,26.07528],[95.18692,26.06726],[95.17868,26.06603],[95.1567,26.01853],[95.14228,26.00125],[95.12306,25.98705],[95.11962,25.97718],[95.09697,25.9636],[95.08117,25.94693],[95.05851,25.93705],[95.02967,25.9352],[95.02899,25.90493],[95.01731,25.88949],[95.02006,25.86972],[95.03173,25.8586],[95.03311,25.82461],[95.05165,25.7968],[95.04615,25.77701],[95.04547,25.73929],[95.02143,25.72754],[94.99465,25.72382],[94.98848,25.70712],[94.94041,25.67247],[94.92324,25.64833],[94.91912,25.6149],[94.90539,25.60004],[94.88273,25.59509],[94.88067,25.58765],[94.89509,25.56845],[94.84497,25.55916],[94.82917,25.5443],[94.82711,25.52571],[94.81269,25.51084],[94.8072,25.49348],[94.79003,25.48976],[94.78248,25.48109],[94.76257,25.48047],[94.75261,25.49178],[94.72274,25.47287],[94.68618,25.4659],[94.67468,25.44575],[94.67468,25.42529],[94.66095,25.40606],[94.65133,25.40606],[94.63623,25.39614],[94.63485,25.35705],[94.62524,25.34774],[94.58541,25.26891],[94.59091,25.25835],[94.57786,25.21426],[94.59022,25.19375],[94.60395,25.18505],[94.61769,25.1863],[94.6376,25.16765],[94.65065,25.16765],[94.6836,25.15212],[94.69116,25.15647],[94.72343,25.13223],[94.73854,25.13533],[94.74197,25.12228],[94.73854,25.1142],[94.74472,25.08746],[94.73922,25.06631],[94.74678,25.06072],[94.73785,25.00037],[94.7042,24.98419],[94.69665,24.96365],[94.71382,24.93127],[94.70283,24.9238],[94.68704,24.88955],[94.67811,24.87397],[94.66301,24.87335],[94.65545,24.85591],[94.63417,24.83659],[94.62936,24.80668],[94.62181,24.78798],[94.63005,24.75493],[94.61082,24.73747],[94.60601,24.70878],[94.58747,24.70504],[94.57992,24.70941],[94.58061,24.72188],[94.57099,24.71751],[94.57099,24.70566],[94.56069,24.71315],[94.54284,24.70504],[94.54834,24.68196],[94.54216,24.64264],[94.50988,24.59208],[94.45632,24.5696],[94.43504,24.50464],[94.42131,24.48277],[94.39384,24.48152],[94.40002,24.46027],[94.39796,24.4509],[94.40895,24.43964],[94.39521,24.41214],[94.36157,24.39338],[94.37599,24.37587],[94.35127,24.33521],[94.32106,24.32582],[94.32243,24.27638],[94.3032,24.23444],[94.2984,24.23819],[94.29153,24.23256],[94.28054,24.17494],[94.25857,24.16179],[94.25376,24.12356],[94.25445,24.08345],[94.23797,24.05085],[94.23042,24.05963],[94.22767,24.05586],[94.23728,24.03454],[94.20295,23.98374],[94.18922,23.93228],[94.17755,23.92538],[94.16931,23.92664],[94.15695,23.84753],[94.14253,23.84941],[94.1439,23.83685],[94.12948,23.8312],[94.11163,23.84376],[94.11438,23.86009],[94.09515,23.88583],[94.04846,23.89274],[94.04228,23.90906],[94.02511,23.91597],[94.02168,23.92538],[93.99696,23.92036],[93.98323,23.93228],[93.97087,23.92224],[93.94477,23.94609],[93.89328,23.95174],[93.85894,23.93291],[93.81362,23.92475],[93.80264,23.93228],[93.79783,23.95111],[93.77655,23.96743],[93.75732,24.00507],[93.72161,24.00005],[93.68454,24.0082],[93.67012,24.00444],[93.65501,24.00569],[93.62686,24.01134],[93.61038,24.00193],[93.61518,23.98688],[93.60076,23.97307],[93.59733,23.96429],[93.58634,23.96241],[93.56025,23.98186],[93.51287,23.94295],[93.46138,23.97746],[93.46481,23.99252],[93.45932,23.99817],[93.45657,24.01009],[93.43803,24.01761],[93.42361,24.059],[93.40576,24.08094],[93.35838,24.09473],[93.34671,24.10664],[93.33915,24.10351],[93.35357,24.08909],[93.33366,24.09035],[93.33778,24.06276],[93.32405,24.05273],[93.32679,24.04207],[93.33847,24.04144],[93.33229,24.03517],[93.33915,24.02765],[93.34121,24.02012],[93.33229,24.02012],[93.33778,23.99189],[93.33229,23.98499],[93.34465,23.96554],[93.36799,23.93228],[93.39271,23.92977],[93.38653,23.87139],[93.3879,23.82806],[93.40507,23.79853],[93.39752,23.78597],[93.3934,23.75706],[93.41056,23.72878],[93.40782,23.71055],[93.42155,23.69986],[93.42704,23.68666],[93.43597,23.68603],[93.4291,23.66528],[93.41812,23.64263],[93.42224,23.6332],[93.42292,23.6074],[93.42704,23.58664],[93.41468,23.56839],[93.4188,23.53755],[93.39202,23.49662],[93.39889,23.4708],[93.39271,23.44875],[93.3879,23.44875],[93.39065,23.41284],[93.40026,23.39016],[93.3879,23.36432],[93.35563,23.35297],[93.36868,23.33153],[93.36593,23.27351],[93.38584,23.21989],[93.37829,23.21547],[93.37692,23.18202],[93.36868,23.17318],[93.36937,23.14414],[93.38584,23.13972],[93.3831,23.12899],[93.36868,23.13088],[93.33847,23.0772],[93.35289,23.07341],[93.33984,23.07088],[93.34259,23.05888],[93.33366,23.05888],[93.31306,23.01844],[93.30276,23.02097],[93.29246,23.00643],[93.27598,23.00517],[93.27049,23.01212],[93.24714,23.0039],[93.23341,23.01465],[93.23272,23.02413],[93.22654,23.02286],[93.21418,23.05067],[93.1826,23.05888],[93.17642,23.0494],[93.16268,23.04814],[93.14552,23.06014],[93.13797,23.05888],[93.13797,23.05003],[93.13041,23.05003],[93.12767,23.02792],[93.13179,23.0235],[93.12767,23.01718],[93.12835,23.00074],[93.13797,22.99126],[93.14621,22.97293],[93.13453,22.96914],[93.14895,22.92424],[93.16474,22.91159],[93.15719,22.90906],[93.14552,22.91412],[93.13041,22.9059],[93.13316,22.89009],[93.11668,22.86605],[93.11874,22.85656],[93.10981,22.82682],[93.10226,22.82365],[93.10913,22.81859],[93.09814,22.8072],[93.09608,22.77934],[93.10569,22.75212],[93.09814,22.72932],[93.09745,22.71665],[93.09127,22.71095],[93.09745,22.69828],[93.09814,22.68625],[93.09402,22.67801],[93.10089,22.66154],[93.10913,22.65583],[93.10707,22.63872],[93.12011,22.62605],[93.12767,22.62351],[93.12835,22.61781],[93.13797,22.60703],[93.14003,22.58992],[93.11462,22.56202],[93.10981,22.543],[93.11187,22.53602],[93.10775,22.52778],[93.12492,22.52397],[93.12423,22.51128],[93.12904,22.49669],[93.13522,22.49289],[93.13659,22.48845],[93.12835,22.46243],[93.13316,22.45672],[93.1517,22.45101],[93.16612,22.45101],[93.17779,22.43705],[93.18534,22.39388],[93.19015,22.38944],[93.18534,22.37484],[93.18878,22.33991],[93.19564,22.32911],[93.19015,22.32276],[93.19427,22.31387],[93.19084,22.30561],[93.19908,22.28274],[93.19839,22.25605],[93.1771,22.24588],[93.16955,22.24652],[93.162,22.2516],[93.15513,22.24779],[93.14552,22.24906],[93.13934,22.23571],[93.15101,22.21982],[93.15033,22.21092],[93.16131,22.19694],[93.14895,22.17468],[93.12492,22.17468],[93.11187,22.20202],[93.09471,22.19694],[93.08441,22.20329],[93.04801,22.20202],[93.03909,22.1963],[93.04733,22.17596],[93.04664,22.16515],[93.03634,22.14988],[93.05419,22.12444],[93.05831,22.099],[93.02192,22.09963],[93.0075,22.10727],[93.00338,22.10409],[93.01025,22.08945],[93.00338,22.08055],[93.00613,22.07291],[92.99377,22.03663],[93.00407,22.01881],[93.00201,21.9978],[93.0075,21.98953],[92.99514,21.97743],[92.97935,21.98252],[92.97935,21.98889],[92.96012,22.02327],[92.95738,22.03218],[92.94982,22.03027],[92.9409,22.01563],[92.92854,22.01818],[92.93197,22.00035],[92.91961,21.99526],[92.91961,21.98316],[92.91137,21.97616],[92.91275,21.9475],[92.90725,21.94304],[92.90382,21.94304],[92.89901,21.96851],[92.89421,21.97998],[92.89627,21.98252],[92.89558,22.00226],[92.89077,22.01308],[92.87841,22.01563],[92.86468,22.02581],[92.86331,22.05891],[92.85301,22.06846],[92.83996,22.06209],[92.8379,22.07291],[92.8228,22.07673],[92.80563,22.09836],[92.76855,22.11299],[92.75482,22.12635],[92.73284,22.13653],[92.72804,22.15243],[92.71293,22.14798],[92.70813,22.15243],[92.69439,22.14988],[92.69645,22.13716],[92.69165,22.13971],[92.69233,22.10599],[92.69302,22.07355],[92.6889,22.07355],[92.68753,22.10536],[92.68203,22.10218],[92.68203,22.08373],[92.68478,22.04745],[92.67929,22.01245],[92.67036,22.00926],[92.65731,22.01754],[92.63397,21.98571],[92.61611,21.9787],[92.60307,21.98125],[92.61268,21.95769],[92.60994,21.9424],[92.61611,21.94368],[92.61611,21.93795],[92.612,21.92393],[92.62161,21.92457],[92.63191,21.87424],[92.62916,21.86277],[92.62161,21.86341],[92.61268,21.84875],[92.62092,21.82325],[92.60856,21.81879],[92.61131,21.77671],[92.60582,21.74164],[92.60925,21.72888],[92.6017,21.70145],[92.60856,21.68359],[92.60307,21.65487],[92.61131,21.6204],[92.60856,21.59104],[92.61543,21.57061],[92.6271,21.48565],[92.62367,21.47543],[92.64083,21.42814],[92.64152,21.40896],[92.64976,21.39042],[92.65113,21.35909],[92.66281,21.32008],[92.67997,21.29833],[92.67997,21.28873],[92.63877,21.27401],[92.62229,21.26058],[92.62367,21.25354],[92.59758,21.24522],[92.58522,21.28233],[92.58728,21.28873],[92.57629,21.31944],[92.57148,21.32519],[92.57354,21.33159],[92.56668,21.34758],[92.56462,21.37188],[92.55706,21.38467],[92.53715,21.37572],[92.53097,21.38914],[92.51724,21.3885],[92.51449,21.37763],[92.50762,21.37572],[92.51106,21.36548],[92.50213,21.35461],[92.49733,21.36293],[92.47398,21.35461],[92.46917,21.36357],[92.45819,21.36868],[92.43896,21.36612],[92.43759,21.37444],[92.43141,21.37316],[92.42729,21.39618],[92.43278,21.40768],[92.4266,21.43389],[92.41287,21.44284],[92.38197,21.4799],[92.34283,21.46648],[92.33596,21.43773],[92.32635,21.43197],[92.32429,21.41983],[92.29751,21.42047],[92.29202,21.43133],[92.27279,21.43389],[92.26387,21.41152],[92.26936,21.39937],[92.25494,21.38786],[92.257,21.36293],[92.23159,21.35014],[92.22541,21.35142],[92.19863,21.32839],[92.19932,21.31048],[92.21717,21.27785],[92.22061,21.25354],[92.21099,21.25034],[92.21923,21.23242],[92.19863,21.20105],[92.1952,21.20105],[92.18215,21.19209],[92.18147,21.18505],[92.17254,21.17929],[92.17666,21.16072],[92.19314,21.162],[92.20001,21.16136],[92.20344,21.14983],[92.19795,21.13766],[92.20001,21.12357],[92.20687,21.11845],[92.21649,21.12229],[92.22404,21.12037],[92.23434,21.09475],[92.25906,21.07809],[92.26387,21.06143],[92.25425,21.04413],[92.25563,21.02041],[92.26867,21.00054],[92.27142,20.94797],[92.3085,20.88639],[92.3394,20.82095],[92.37442,20.72529],[92.37098,20.70281],[90,20],[90,6.437],[99.552,6.437],[99.86587,6.52268],[100.11966,6.42331],[100.13408,6.43049],[100.13579,6.44501],[100.1485,6.45133],[100.143,6.46398],[100.15261,6.47167],[100.15399,6.47756],[100.15948,6.48345],[100.16137,6.50205],[100.15639,6.52202],[100.1569,6.53858],[100.15329,6.55923],[100.1605,6.5596],[100.1581,6.5777],[100.17457,6.56684],[100.18349,6.57369],[100.17929,6.59058],[100.1792,6.60064],[100.16804,6.61395],[100.16907,6.64739],[100.17989,6.65507],[100.17971,6.66821],[100.17817,6.68066],[100.17113,6.69311],[100.19001,6.71802],[100.2034,6.7252],[100.21499,6.71727],[100.21971,6.69844],[100.24013,6.69213],[100.25687,6.70978],[100.26399,6.70152],[100.29335,6.7109],[100.29112,6.68141],[100.30292,6.6795],[100.30648,6.6694],[100.32734,6.66284],[100.32111,6.65563],[100.31901,6.63888],[100.32442,6.61902],[100.30227,6.60863],[100.31489,6.60087],[100.32476,6.58492],[100.33531,6.58534],[100.3445,6.57757],[100.35162,6.56981],[100.35874,6.55659],[100.35968,6.5495],[100.36749,6.53833],[100.37419,6.54429],[100.39324,6.5366],[100.40886,6.52892],[100.4231,6.51714],[100.43511,6.5236],[100.44867,6.52683],[100.45811,6.53143],[100.47218,6.52015],[100.48471,6.52475],[100.49587,6.51979],[100.49552,6.50613],[100.51714,6.48837],[100.54701,6.48631],[100.56314,6.49379],[100.57584,6.47979],[100.59592,6.4762],[100.61188,6.46578],[100.62029,6.45673],[100.64518,6.45724],[100.64123,6.44819],[100.65238,6.44187],[100.66092,6.44902],[100.68319,6.45345],[100.68624,6.46538],[100.69531,6.4652],[100.70054,6.46989],[100.70988,6.47185],[100.71018,6.48105],[100.71925,6.48634],[100.72421,6.49435],[100.73069,6.49673],[100.73187,6.50406],[100.73854,6.51139],[100.7453,6.49817],[100.73832,6.48904],[100.74497,6.47078],[100.75505,6.45525],[100.77108,6.45703],[100.7775,6.46155],[100.79204,6.44841],[100.81345,6.44209],[100.82457,6.40575],[100.82326,6.37939],[100.81917,6.36757],[100.82607,6.35576],[100.84829,6.31223],[100.834,6.2932],[100.85404,6.22912],[100.87024,6.24076],[100.87133,6.26333],[100.89165,6.2463],[100.90112,6.23165],[100.91472,6.24839],[100.94231,6.23891],[100.94786,6.26216],[100.96643,6.27173],[100.96853,6.28404],[100.98526,6.27532],[101.01572,6.2475],[101.02787,6.24348],[101.0614,6.25581],[101.09906,6.26131],[101.11165,6.25008],[101.10502,6.23886],[101.12403,6.19252],[101.1171,6.18171],[101.09917,6.17773],[101.08781,6.17608],[101.07645,6.17033],[101.07676,6.16117],[101.05784,6.14109],[101.08901,6.13165],[101.10504,6.12177],[101.10734,6.11327],[101.11857,6.11159],[101.1298,6.10582],[101.12616,6.09256],[101.1184,6.09023],[101.11339,6.07014],[101.10288,6.05142],[101.11672,6.03498],[101.10858,6.0281],[101.11005,5.9898],[101.12526,5.97883],[101.11266,5.96034],[101.09594,5.95004],[101.09913,5.93906],[101.087,5.92606],[101.08447,5.90623],[101.07694,5.91694],[101.06253,5.91945],[101.055,5.9083],[101.03956,5.91502],[101.02686,5.91218],[101.02962,5.90063],[101.0104,5.87132],[101.00697,5.85089],[101.01179,5.83456],[100.99807,5.81556],[100.98436,5.80612],[101.03798,5.73693],[101.05963,5.74218],[101.09913,5.70234],[101.09862,5.6896],[101.11279,5.67844],[101.12283,5.66182],[101.13555,5.61309],[101.14479,5.61319],[101.14578,5.62149],[101.15327,5.62306],[101.16625,5.63214],[101.16962,5.64395],[101.17642,5.64859],[101.19832,5.64982],[101.20483,5.6602],[101.21546,5.66307],[101.2216,5.67701],[101.21742,5.68575],[101.23445,5.68683],[101.2464,5.69215],[101.24549,5.69794],[101.25144,5.69963],[101.251,5.70848],[101.26247,5.71798],[101.2585,5.72691],[101.26133,5.73479],[101.25591,5.74267],[101.25759,5.75097],[101.24997,5.76074],[101.25677,5.7746],[101.26053,5.7767],[101.26017,5.787],[101.26769,5.80759],[101.2908,5.81608],[101.3051,5.81281],[101.31391,5.8027],[101.32397,5.81324],[101.33793,5.80826],[101.34639,5.81147],[101.349,5.82537],[101.35821,5.83061],[101.37153,5.83175],[101.38616,5.85076],[101.39392,5.87251],[101.42081,5.87382],[101.4367,5.86831],[101.45329,5.86415],[101.46364,5.87301],[101.475,5.86719],[101.48498,5.8682],[101.48543,5.87941],[101.49595,5.88092],[101.50235,5.89062],[101.51516,5.90389],[101.525,5.89959],[101.52522,5.90759],[101.54627,5.92153],[101.55908,5.91772],[101.57257,5.92484],[101.58195,5.93332],[101.58892,5.929],[101.59034,5.91932],[101.59726,5.91238],[101.60904,5.91488],[101.61533,5.91056],[101.61572,5.90037],[101.62298,5.89428],[101.62515,5.87527],[101.63899,5.86856],[101.65557,5.87619],[101.66271,5.86422],[101.6575,5.85635],[101.66279,5.84593],[101.65846,5.83687],[101.65942,5.81056],[101.6654,5.81123],[101.66725,5.79825],[101.67783,5.77911],[101.68909,5.77978],[101.68717,5.76235],[101.69349,5.75312],[101.70393,5.75192],[101.70846,5.7602],[101.71711,5.76575],[101.71739,5.78794],[101.72439,5.77991],[101.72996,5.78272],[101.73689,5.78144],[101.75502,5.79816],[101.77823,5.78243],[101.77305,5.77098],[101.79259,5.75406],[101.81128,5.74082],[101.81624,5.73305],[101.82376,5.73287],[101.82275,5.76104],[101.8372,5.78818],[101.85266,5.79219],[101.86812,5.7921],[101.86334,5.80148],[101.87236,5.80391],[101.88,5.81044],[101.87597,5.8197],[101.88701,5.84005],[101.89115,5.83724],[101.89666,5.84399],[101.91488,5.84142],[101.92898,5.85251],[101.93123,5.86079],[101.94171,5.86907],[101.94156,5.89074],[101.9318,5.90832],[101.92135,5.91087],[101.92527,5.92312],[101.93192,5.92581],[101.93013,5.94621],[101.94494,5.95337],[101.94205,5.98017],[101.97349,6.0097],[101.97916,6.02779],[101.98896,6.04042],[102.00278,6.04025],[102.00425,6.05237],[102.02091,6.05339],[102.03158,6.06636],[102.05328,6.08069],[102.06154,6.10185],[102.07803,6.12609],[102.09315,6.14486],[102.08484,6.16082],[102.07927,6.17131],[102.0805,6.22507],[102.09119,6.23429],[102.13866,6.2691],[108.53354,6.87119],[114.75624,5.79238],[116.78216,7.66089],[116.78216,8.5],[118.5,10.5],[117,15.2],[110,15.2],[108.16666,18],[108.16666,21.41666],[108.08212,21.50035],[108.04916,21.53867],[108.0368,21.5457],[108.02375,21.54762],[107.98049,21.54378],[107.96608,21.53676],[107.95509,21.5374],[107.94204,21.5655],[107.94204,21.56933],[107.92556,21.58274],[107.92762,21.58976],[107.90359,21.58848],[107.88368,21.60955],[107.89192,21.61594],[107.87132,21.64721],[107.85621,21.65487],[107.84591,21.64977],[107.84248,21.64211],[107.83218,21.64274],[107.82737,21.65168],[107.81364,21.6587],[107.79716,21.65359],[107.78411,21.65615],[107.78137,21.64977],[107.75596,21.64147],[107.74154,21.63955],[107.73124,21.63062],[107.72163,21.62934],[107.70927,21.61849],[107.67356,21.60572],[107.62344,21.60828],[107.61245,21.60508],[107.58499,21.61019],[107.58224,21.61785],[107.57331,21.61785],[107.56988,21.61211],[107.55889,21.61274],[107.54379,21.5904],[107.53692,21.59295],[107.52456,21.58976],[107.50396,21.59678],[107.48336,21.59806],[107.49572,21.60508],[107.49778,21.61721],[107.49229,21.62296],[107.49641,21.63445],[107.47581,21.66317],[107.46688,21.66444],[107.41745,21.63955],[107.41676,21.63445],[107.40921,21.62296],[107.3941,21.61657],[107.39822,21.60955],[107.38243,21.59615],[107.36869,21.60189],[107.3632,21.59742],[107.35771,21.60508],[107.36183,21.61083],[107.35977,21.6204],[107.35633,21.62296],[107.35359,21.63062],[107.36251,21.63764],[107.35908,21.66572],[107.34329,21.67657],[107.34947,21.67912],[107.33779,21.68805],[107.33436,21.69762],[107.31857,21.71293],[107.322,21.72378],[107.31514,21.72505],[107.31376,21.72824],[107.30758,21.72952],[107.30072,21.74228],[107.28698,21.73654],[107.28767,21.73207],[107.27874,21.73271],[107.26295,21.72888],[107.25059,21.71804],[107.24784,21.704],[107.22106,21.70719],[107.19703,21.72059],[107.19841,21.72824],[107.1936,21.73462],[107.18673,21.74546],[107.16888,21.75248],[107.16407,21.74929],[107.15858,21.75758],[107.13867,21.76205],[107.13317,21.7748],[107.12631,21.77735],[107.11738,21.79393],[107.09884,21.7952],[107.08168,21.80795],[107.04803,21.81114],[107.02674,21.82198],[107.01988,21.84429],[107.0137,21.85066],[107.01713,21.86404],[107.02949,21.86787],[107.04048,21.87997],[107.05421,21.88189],[107.06382,21.89527],[107.05696,21.91183],[107.05902,21.9182],[107.03498,21.93667],[107.02606,21.93795],[107.024,21.94559],[107.00408,21.94623],[106.9931,21.95514],[106.97937,21.92712],[106.96289,21.9182],[106.95465,21.92266],[106.95327,21.93158],[106.93267,21.93094],[106.92787,21.9424],[106.921,21.95196],[106.92581,21.96215],[106.91482,21.97616],[106.90315,21.9717],[106.88049,21.98125],[106.84478,21.9787],[106.84066,21.98252],[106.83174,21.98125],[106.83036,21.97488],[106.80564,21.97488],[106.80152,21.9787],[106.7974,21.98953],[106.79054,21.98953],[106.7871,22.00417],[106.76719,22.01054],[106.74865,22.00799],[106.74659,22.01436],[106.72943,22.00799],[106.72668,21.99971],[106.73011,21.99717],[106.7205,21.97361],[106.70677,21.97616],[106.70402,21.96979],[106.69166,21.96469],[106.68273,22.0029],[106.70883,22.02518],[106.70539,22.03918],[106.69853,22.04173],[106.69715,22.05509],[106.70677,22.06718],[106.70745,22.08436],[106.71226,22.09327],[106.69715,22.10663],[106.69166,22.13589],[106.69715,22.1537],[106.70608,22.15561],[106.70265,22.16515],[106.69235,22.16133],[106.67175,22.18104],[106.68136,22.20457],[106.69715,22.20393],[106.70127,22.21855],[106.70333,22.22809],[106.69509,22.23254],[106.68548,22.26495],[106.69029,22.27702],[106.68136,22.28846],[106.66694,22.28401],[106.66694,22.32276],[106.66008,22.32467],[106.65802,22.3361],[106.63742,22.34182],[106.62025,22.33483],[106.61338,22.33991],[106.59004,22.34309],[106.58454,22.33991],[106.5763,22.34626],[106.57012,22.34182],[106.56051,22.3488],[106.57287,22.36277],[106.57081,22.36912],[106.58386,22.37484],[106.56738,22.39388],[106.56463,22.40848],[106.55914,22.42245],[106.56463,22.42435],[106.56601,22.43641],[106.55914,22.44403],[106.55708,22.45989],[106.57218,22.47322],[106.57768,22.46814],[106.58454,22.47449],[106.58042,22.50304],[106.58248,22.51826],[106.58866,22.53095],[106.59072,22.54934],[106.59896,22.55061],[106.60102,22.56392],[106.60102,22.57534],[106.60926,22.57914],[106.60789,22.58548],[106.60308,22.58992],[106.60995,22.6026],[106.62918,22.60386],[106.64909,22.5766],[106.669,22.5766],[106.6793,22.5709],[106.69784,22.58294],[106.70745,22.57851],[106.72668,22.58738],[106.72737,22.60196],[106.71569,22.61274],[106.72256,22.61844],[106.72943,22.63302],[106.72119,22.63809],[106.72531,22.64379],[106.73492,22.6476],[106.7411,22.66787],[106.76033,22.67294],[106.76513,22.68308],[106.75964,22.69195],[106.78436,22.70525],[106.77063,22.71539],[106.77337,22.72362],[106.76925,22.73312],[106.79672,22.76858],[106.8132,22.76985],[106.82212,22.77808],[106.82418,22.78757],[106.83723,22.80466],[106.81663,22.81922],[106.79397,22.81542],[106.772,22.81859],[106.76376,22.80783],[106.76651,22.82871],[106.70814,22.86605],[106.7205,22.87491],[106.70745,22.88756],[106.70059,22.88376],[106.69303,22.88819],[106.68479,22.88376],[106.67381,22.89135],[106.66694,22.88882],[106.67175,22.87617],[106.65184,22.86668],[106.64291,22.87364],[106.62506,22.87807],[106.63055,22.89072],[106.6175,22.89831],[106.60446,22.92993],[106.59141,22.9331],[106.56463,22.91855],[106.54472,22.9274],[106.5406,22.94321],[106.51039,22.94764],[106.50146,22.92993],[106.49803,22.90527],[106.48223,22.90211],[106.47399,22.9097],[106.46232,22.89578],[106.45202,22.90337],[106.44172,22.88946],[106.42868,22.88503],[106.42181,22.89641],[106.40876,22.88503],[106.41769,22.87427],[106.40464,22.87491],[106.40258,22.88123],[106.37786,22.88313],[106.36344,22.87807],[106.36138,22.86478],[106.34697,22.85719],[106.32705,22.87301],[106.31195,22.86415],[106.2989,22.87364],[106.29135,22.87301],[106.28929,22.86731],[106.25701,22.87807],[106.26525,22.88186],[106.25152,22.89578],[106.26251,22.89705],[106.26388,22.90653],[106.25701,22.92171],[106.24877,22.92361],[106.24465,22.94638],[106.23848,22.94448],[106.23573,22.95839],[106.22406,22.95902],[106.20414,22.98241],[106.16432,22.98494],[106.12999,23.00011],[106.12037,22.99],[106.12449,22.98052],[106.1087,22.99],[106.09085,22.99063],[106.07986,22.99822],[106.06063,22.99126],[106.00227,22.99126],[105.99609,22.9723],[106.00708,22.9704],[105.99403,22.94068],[105.95626,22.95017],[105.95489,22.94068],[105.93635,22.93689],[105.9233,22.94764],[105.88897,22.93563],[105.88073,22.91855],[105.87112,22.92298],[105.87387,22.93183],[105.867,22.93752],[105.86013,22.93626],[105.85601,22.9489],[105.83473,22.96345],[105.83198,22.97862],[105.81619,22.99316],[105.80314,22.99316],[105.78872,23.00327],[105.78186,23.01907],[105.75302,23.03803],[105.73654,23.03487],[105.72967,23.04372],[105.7283,23.06393],[105.67749,23.06393],[105.64384,23.08289],[105.63079,23.08099],[105.62736,23.07341],[105.61706,23.07025],[105.61019,23.07846],[105.5944,23.08099],[105.58685,23.07404],[105.57243,23.07341],[105.56694,23.09362],[105.57243,23.10689],[105.55801,23.13152],[105.56762,23.14225],[105.56213,23.15172],[105.55938,23.16877],[105.53054,23.19149],[105.4969,23.20664],[105.47905,23.25017],[105.45364,23.27856],[105.44677,23.28045],[105.43098,23.30064],[105.41862,23.30127],[105.40901,23.28424],[105.39115,23.29496],[105.38429,23.31136],[105.36918,23.32334],[105.35202,23.34603],[105.35064,23.36747],[105.32249,23.39457],[105.29914,23.37251],[105.29708,23.36116],[105.28816,23.35801],[105.28404,23.34225],[105.27168,23.34036],[105.25589,23.34351],[105.24833,23.33027],[105.25932,23.31829],[105.25245,23.31136],[105.24353,23.28928],[105.22979,23.28487],[105.23185,23.27541],[105.21537,23.26721],[105.214,23.27541],[105.20301,23.26342],[105.19615,23.26658],[105.19546,23.27793],[105.16799,23.2855],[105.15426,23.26405],[105.12611,23.25838],[105.1165,23.24828],[105.11169,23.25081],[105.10345,23.26279],[105.08285,23.25585],[105.08216,23.25901],[105.07186,23.26216],[105.02723,23.22367],[105.00251,23.2161],[104.99633,23.19969],[104.97779,23.19465],[104.96475,23.20474],[104.95651,23.20664],[104.95513,23.19906],[104.95857,23.1877],[104.95101,23.17192],[104.91531,23.1877],[104.89334,23.17887],[104.87686,23.16498],[104.87892,23.14288],[104.87136,23.12204],[104.86244,23.12204],[104.86038,23.12646],[104.85351,23.11699],[104.81437,23.11952],[104.81231,23.08289],[104.82399,23.07088],[104.83154,23.02413],[104.82673,23.01149],[104.84321,22.99379],[104.84458,22.9685],[104.85969,22.96281],[104.86312,22.9508],[104.83566,22.92551],[104.77249,22.89894],[104.75807,22.86162],[104.73678,22.8515],[104.73884,22.84011],[104.73403,22.83188],[104.73541,22.81985],[104.69078,22.82871],[104.67636,22.81669],[104.65919,22.83504],[104.62348,22.83188],[104.6125,22.81669],[104.59602,22.81732],[104.59808,22.82365],[104.60426,22.83251],[104.59739,22.8477],[104.58229,22.86035],[104.56649,22.83568],[104.53353,22.81796],[104.51705,22.78821],[104.50676,22.78504],[104.46762,22.75275],[104.45869,22.75212],[104.42298,22.73755],[104.41062,22.72552],[104.39895,22.70018],[104.37423,22.69068],[104.35363,22.69448],[104.3399,22.72109],[104.32067,22.73249],[104.30831,22.72869],[104.27948,22.74072],[104.2678,22.74325],[104.26986,22.75592],[104.25819,22.76668],[104.25544,22.77681],[104.26849,22.81289],[104.26506,22.82049],[104.27467,22.83821],[104.26712,22.84454],[104.22454,22.82492],[104.16618,22.81606],[104.14146,22.80213],[104.1291,22.80973],[104.10713,22.79517],[104.0982,22.78631],[104.09202,22.76731],[104.08103,22.76288],[104.08172,22.75655],[104.06044,22.74958],[104.04052,22.72425],[104.02198,22.66597],[104.0316,22.65393],[104.01924,22.59309],[104.01168,22.57914],[104.00413,22.57787],[104.01718,22.56646],[104.011,22.55695],[104.01649,22.54617],[104.0055,22.54173],[104.01237,22.52143],[104.0055,22.51763],[103.98971,22.52016],[103.9746,22.50748],[103.96843,22.51255],[103.96499,22.50684],[103.95332,22.51255],[103.94371,22.52778],[103.93409,22.52524],[103.92654,22.53856],[103.91624,22.53285],[103.91418,22.54236],[103.8874,22.57026],[103.88328,22.56265],[103.862,22.58485],[103.84689,22.59372],[103.83796,22.6083],[103.82286,22.61781],[103.81324,22.64063],[103.78234,22.66661],[103.7693,22.68878],[103.75282,22.68941],[103.7384,22.70272],[103.74252,22.71032],[103.70201,22.74199],[103.68759,22.74768],[103.68209,22.76351],[103.66699,22.76795],[103.66424,22.78631],[103.64158,22.79707],[103.61824,22.78504],[103.61961,22.77618],[103.56468,22.69955],[103.56811,22.67928],[103.57978,22.66471],[103.57154,22.64126],[103.55369,22.63556],[103.54614,22.61084],[103.52966,22.59309],[103.50906,22.60577],[103.50906,22.61337],[103.48915,22.61844],[103.45687,22.65837],[103.46099,22.67801],[103.42666,22.71222],[103.43009,22.73185],[103.44451,22.73755],[103.43902,22.75402],[103.41911,22.76288],[103.41087,22.77934],[103.3889,22.78314],[103.3731,22.7996],[103.33465,22.80783],[103.32778,22.81732],[103.31817,22.80276],[103.31955,22.78061],[103.28727,22.73882],[103.28796,22.70652],[103.28109,22.70018],[103.28178,22.68435],[103.26599,22.67231],[103.25019,22.67167],[103.23165,22.65774],[103.22891,22.64696],[103.20762,22.6457],[103.19526,22.65203],[103.18359,22.64253],[103.18496,22.63049],[103.17604,22.62922],[103.16024,22.59626],[103.18153,22.55885],[103.15818,22.54173],[103.14926,22.54553],[103.12042,22.5208],[103.08952,22.51319],[103.07373,22.49035],[103.07098,22.47576],[103.07991,22.46814],[103.08059,22.44974],[103.06961,22.4472],[103.05793,22.44974],[103.03115,22.44276],[102.99202,22.46307],[102.98584,22.47893],[102.96524,22.47703],[102.95768,22.48401],[102.92884,22.48401],[102.92335,22.50684],[102.91236,22.51192],[102.90962,22.52524],[102.89451,22.53412],[102.89245,22.543],[102.89726,22.54236],[102.88078,22.56075],[102.8849,22.569],[102.87666,22.57724],[102.8849,22.58421],[102.87597,22.59753],[102.86636,22.60069],[102.86705,22.6102],[102.84851,22.61084],[102.84507,22.61908],[102.82241,22.62732],[102.81898,22.62161],[102.7892,22.62542],[102.78465,22.63492],[102.78808,22.64189],[102.76611,22.64633],[102.74826,22.67104],[102.73727,22.66597],[102.72491,22.67738],[102.71049,22.67991],[102.70706,22.69322],[102.68783,22.70398],[102.65625,22.68878],[102.60681,22.73185],[102.58895,22.72299],[102.58621,22.70652],[102.57041,22.70588],[102.56355,22.72489],[102.55119,22.74452],[102.51136,22.77681],[102.48321,22.77808],[102.48115,22.76985],[102.46879,22.76985],[102.45231,22.75338],[102.45643,22.73439],[102.44545,22.72362],[102.43652,22.69955],[102.41043,22.68308],[102.39669,22.69068],[102.38227,22.68181],[102.40562,22.64189],[102.41798,22.64063],[102.42141,22.63429],[102.40562,22.63302],[102.37403,22.59245],[102.34931,22.58928],[102.3452,22.58231],[102.35687,22.56773],[102.33902,22.55885],[102.32322,22.55631],[102.32322,22.54934],[102.30056,22.53031],[102.29026,22.50494],[102.28134,22.5024],[102.26142,22.4656],[102.25112,22.45862],[102.2676,22.43007],[102.26417,22.41356],[102.23808,22.42689],[102.19001,22.43451],[102.16049,22.42753],[102.14744,22.39833],[102.13371,22.40722],[102.12684,22.41991],[102.12478,22.43451],[102.11036,22.43641],[102.10212,22.44403],[102.08839,22.44086],[102.05818,22.44911],[102.04925,22.45799],[102.02316,22.45482],[102.01149,22.44403],[101.99913,22.44213],[102.00119,22.43641],[101.9696,22.42689],[101.95587,22.44403],[101.90986,22.43705],[101.91741,22.42372],[101.91124,22.41483],[101.91192,22.40277],[101.90506,22.38373],[101.88995,22.38563],[101.86386,22.3888],[101.84669,22.41039],[101.83776,22.41547],[101.82334,22.43895],[101.82334,22.46434],[101.81167,22.46497],[101.80824,22.47385],[101.81442,22.47956],[101.79657,22.48337],[101.78421,22.5005],[101.75399,22.49923],[101.75262,22.49352],[101.73545,22.49923],[101.72172,22.47322],[101.68533,22.47703],[101.68327,22.47195],[101.69014,22.4637],[101.66404,22.44657],[101.67228,22.42816],[101.66061,22.42118],[101.67915,22.38055],[101.65786,22.36595],[101.64619,22.3488],[101.65168,22.33419],[101.63314,22.31196],[101.62834,22.29735],[101.6304,22.28274],[101.60568,22.26939],[101.58989,22.27956],[101.56105,22.28147],[101.55418,22.26812],[101.53701,22.25541],[101.54045,22.24016],[101.54457,22.23698],[101.54319,22.22872],[101.57203,22.20965],[101.56791,22.20139],[101.57684,22.18359],[101.59057,22.18168],[101.58577,22.16705],[101.60293,22.15751],[101.59469,22.14607],[101.60499,22.12953],[101.57478,22.12826],[101.57821,22.10472],[101.58508,22.1009],[101.58783,22.08691],[101.59538,22.08373],[101.59469,22.064],[101.60705,22.05891],[101.61323,22.05191],[101.61529,22.02836],[101.63383,22.01308],[101.6201,22.00353],[101.61598,21.97679],[101.63314,21.95323],[101.65443,21.95068],[101.66954,21.93158],[101.69014,21.94686],[101.69838,21.94623],[101.70661,21.92202],[101.69426,21.90546],[101.71554,21.88252],[101.72515,21.88316],[101.73683,21.87488],[101.73957,21.84684],[101.75399,21.83728],[101.77597,21.836],[101.77665,21.83026],[101.78489,21.82453],[101.77253,21.81879],[101.77116,21.80413],[101.76017,21.78181],[101.7588,21.75694],[101.74301,21.74865],[101.74644,21.72761],[101.7588,21.72569],[101.7691,21.71612],[101.77391,21.70145],[101.76361,21.69571],[101.77665,21.6906],[101.77047,21.65934],[101.78627,21.65487],[101.78558,21.63509],[101.8,21.637],[101.80824,21.64019],[101.81716,21.6236],[101.83433,21.61657],[101.8103,21.58848],[101.8103,21.57955],[101.80481,21.57571],[101.7485,21.58721],[101.7485,21.57444],[101.75399,21.56294],[101.76223,21.56039],[101.75262,21.54506],[101.75949,21.53229],[101.76979,21.52909],[101.78077,21.51696],[101.76841,21.5144],[101.7382,21.48565],[101.75468,21.45434],[101.75674,21.43709],[101.74644,21.42878],[101.75674,21.41727],[101.75331,21.40832],[101.74163,21.41024],[101.73683,21.40065],[101.74369,21.38019],[101.73889,21.37188],[101.73957,21.36421],[101.72721,21.35525],[101.73339,21.322],[101.76635,21.28809],[101.78009,21.29513],[101.79039,21.28873],[101.8,21.29001],[101.80206,21.27209],[101.81167,21.25994],[101.84669,21.25418],[101.83502,21.2273],[101.84051,21.21578],[101.83982,21.20617],[101.82746,21.20553],[101.8254,21.21194],[101.81442,21.21386],[101.79588,21.20681],[101.78146,21.22154],[101.76841,21.21642],[101.77665,21.20169],[101.7897,21.20105],[101.78489,21.19145],[101.79107,21.18633],[101.78009,21.16328],[101.76361,21.14791],[101.7176,21.14407],[101.70181,21.14983],[101.69357,21.15687],[101.70524,21.16072],[101.70043,21.17416],[101.67778,21.18441],[101.67297,21.20553],[101.65168,21.19657],[101.63246,21.20041],[101.6098,21.17544],[101.59469,21.18121],[101.58645,21.19017],[101.60293,21.21001],[101.60293,21.2209],[101.61323,21.22602],[101.60224,21.24138],[101.5892,21.2369],[101.54869,21.2561],[101.50886,21.2465],[101.49787,21.2497],[101.47934,21.2433],[101.44981,21.22538],[101.43127,21.23242],[101.40724,21.22474],[101.38801,21.22666],[101.32553,21.18825],[101.31111,21.18761],[101.29325,21.17416],[101.27952,21.18057],[101.27265,21.19209],[101.24931,21.20489],[101.24519,21.20425],[101.24862,21.21386],[101.25,21.21898],[101.21498,21.23178],[101.22596,21.2465],[101.22184,21.25418],[101.2445,21.27913],[101.25274,21.29577],[101.23901,21.30472],[101.2136,21.30728],[101.22734,21.32775],[101.23901,21.33095],[101.24038,21.33863],[101.25206,21.3399],[101.2603,21.35014],[101.25892,21.35589],[101.27265,21.36485],[101.24176,21.37444],[101.23626,21.38211],[101.24176,21.39042],[101.19163,21.40704],[101.18408,21.41791],[101.19987,21.43964],[101.193,21.45051],[101.19163,21.47543],[101.22184,21.49843],[101.21154,21.50674],[101.20742,21.5259],[101.21635,21.53101],[101.21635,21.5623],[101.18957,21.55656],[101.15524,21.56486],[101.14563,21.56294],[101.13807,21.57316],[101.15043,21.59168],[101.16897,21.59104],[101.16966,21.60125],[101.15936,21.6287],[101.1621,21.63892],[101.15387,21.64913],[101.15181,21.66955],[101.13258,21.67529],[101.12571,21.68869],[101.1161,21.68933],[101.12022,21.71612],[101.11129,21.74993],[101.12159,21.77352],[101.08932,21.77671],[101.01242,21.71293],[100.94101,21.6989],[100.91011,21.6855],[100.88813,21.68678],[100.84625,21.63892],[100.83457,21.637],[100.8078,21.61274],[100.79406,21.57252],[100.77209,21.57252],[100.72197,21.51249],[100.69862,21.51504],[100.67184,21.48118],[100.64437,21.48501],[100.60936,21.46329],[100.59562,21.46393],[100.57777,21.45115],[100.55236,21.45498],[100.53657,21.47224],[100.51803,21.47415],[100.48301,21.45945],[100.45898,21.48821],[100.4631,21.49907],[100.45761,21.51312],[100.44525,21.5144],[100.43083,21.54123],[100.39032,21.52398],[100.37452,21.53037],[100.34843,21.53165],[100.31616,21.4914],[100.30517,21.49204],[100.2983,21.48054],[100.28183,21.48501],[100.26672,21.4716],[100.2523,21.47287],[100.25367,21.46712],[100.23101,21.4684],[100.22895,21.48182],[100.20286,21.51185],[100.17814,21.51632],[100.1699,21.48438],[100.14862,21.50035],[100.12802,21.50929],[100.12184,21.52718],[100.12527,21.5374],[100.11772,21.55081],[100.12321,21.56741],[100.10673,21.58848],[100.11085,21.60125],[100.1342,21.61657],[100.14038,21.637],[100.15411,21.64913],[100.1754,21.6504],[100.16304,21.67465],[100.13214,21.70017],[100.09437,21.70464],[100.08544,21.69571],[100.07446,21.69379],[100.05043,21.67082],[100.0312,21.67848],[100.03463,21.69252],[100.02502,21.69826],[100.01747,21.69571],[99.98931,21.70911],[99.97489,21.74419],[99.97009,21.76906],[99.95842,21.77735],[99.95979,21.7952],[99.94194,21.82517],[99.94743,21.86532],[99.96528,21.88252],[99.95979,21.90864],[99.98313,21.91884],[99.97901,21.93476],[99.99893,21.97616],[99.98725,21.99589],[99.96597,22.0169],[99.95842,22.03982],[99.96734,22.04555],[99.97352,22.05891],[99.96116,22.05318],[99.93782,22.06082],[99.91859,22.05573],[99.9028,22.06909],[99.8767,22.071],[99.86228,22.06146],[99.87808,22.04045],[99.86846,22.03473],[99.86434,22.029],[99.83207,22.03027],[99.83551,22.03982],[99.80667,22.05573],[99.78195,22.05636],[99.75723,22.07355],[99.71878,22.064],[99.71878,22.04364],[99.68788,22.04682],[99.69543,22.07036],[99.68925,22.07991],[99.67414,22.07482],[99.6611,22.08882],[99.6508,22.09263],[99.6508,22.10663],[99.61372,22.09454],[99.59381,22.11554],[99.57733,22.10281],[99.56085,22.11681],[99.52308,22.09709],[99.47845,22.13844],[99.43244,22.10599],[99.39605,22.09963],[99.36653,22.10663],[99.35897,22.09454],[99.31915,22.10218],[99.30267,22.1009],[99.29306,22.11299],[99.27383,22.10281],[99.2601,22.11045],[99.20448,22.12953],[99.16809,22.15179],[99.15504,22.16833],[99.18182,22.16515],[99.20654,22.17278],[99.17976,22.1785],[99.17427,22.19312],[99.20929,22.23508],[99.2237,22.23635],[99.23263,22.25033],[99.22988,22.27067],[99.23538,22.28274],[99.234,22.29672],[99.25666,22.33483],[99.2752,22.34817],[99.27864,22.36468],[99.24774,22.39071],[99.27726,22.40214],[99.30816,22.42816],[99.30885,22.43959],[99.33494,22.45291],[99.38026,22.49606],[99.38026,22.51065],[99.3576,22.52334],[99.35966,22.53919],[99.38575,22.5747],[99.37271,22.6045],[99.36103,22.66661],[99.34799,22.67358],[99.33837,22.71285],[99.31503,22.73755],[99.3267,22.75402],[99.36859,22.76731],[99.38644,22.76478],[99.38919,22.78124],[99.38507,22.7901],[99.40086,22.83251],[99.42009,22.82808],[99.44068,22.84707],[99.46197,22.8496],[99.45373,22.86225],[99.43519,22.91792],[99.44206,22.94068],[99.47708,22.9274],[99.53887,22.90021],[99.54711,22.90717],[99.56085,22.90653],[99.56497,22.9312],[99.55879,22.9527],[99.54711,22.96345],[99.53476,22.96408],[99.53544,22.97167],[99.51965,22.99632],[99.51759,23.02602],[99.52995,23.05509],[99.52377,23.07467],[99.50935,23.08289],[99.43519,23.08541],[99.38507,23.1031],[99.36378,23.11762],[99.36378,23.12646],[99.32945,23.1372],[99.32121,23.11068],[99.30267,23.1031],[99.27932,23.10626],[99.27177,23.09868],[99.2649,23.1012],[99.25941,23.08225],[99.24499,23.07973],[99.23675,23.09426],[99.21478,23.09299],[99.20379,23.11004],[99.18731,23.10626],[99.14268,23.11004],[99.12826,23.10373],[99.11796,23.10815],[99.11315,23.09489],[99.10148,23.09236],[99.09393,23.10436],[99.04724,23.12204],[99.06166,23.17192],[99.04518,23.16498],[99.00672,23.16245],[98.96347,23.17003],[98.94973,23.18076],[98.91265,23.19023],[98.90304,23.18265],[98.88656,23.18076],[98.88382,23.19528],[98.89549,23.20348],[98.88931,23.21295],[98.9051,23.22304],[98.91471,23.23756],[98.91059,23.25333],[98.93051,23.26658],[98.92639,23.29496],[98.93669,23.2937],[98.93875,23.30757],[98.94699,23.3082],[98.90922,23.33595],[98.87764,23.32964],[98.90167,23.35864],[98.91609,23.35486],[98.92158,23.37692],[98.90991,23.39709],[98.92227,23.41662],[98.89617,23.44875],[98.89549,23.46009],[98.87626,23.49032],[98.84674,23.48403],[98.8488,23.47899],[98.83026,23.47836],[98.81652,23.49158],[98.81721,23.50418],[98.8021,23.53818],[98.81652,23.55706],[98.83506,23.56398],[98.84605,23.57972],[98.85772,23.57783],[98.86596,23.58853],[98.88176,23.59104],[98.8948,23.61558],[98.84811,23.6376],[98.83918,23.6898],[98.81996,23.69672],[98.81721,23.71306],[98.83163,23.72941],[98.80691,23.75769],[98.80691,23.76712],[98.78974,23.78471],[98.75061,23.77592],[98.73481,23.79162],[98.71215,23.79351],[98.69499,23.78471],[98.68537,23.80356],[98.67233,23.80733],[98.67782,23.8155],[98.69155,23.81173],[98.70391,23.84376],[98.69224,23.85004],[98.69018,23.86009],[98.69567,23.85821],[98.69911,23.87076],[98.69499,23.88834],[98.67851,23.91346],[98.69567,23.93731],[98.70597,23.93982],[98.69636,23.95299],[98.67439,23.95801],[98.69979,23.98688],[98.7252,23.96994],[98.73893,23.9737],[98.74031,23.98437],[98.75404,23.98437],[98.76571,23.99817],[98.76297,24.01573],[98.77121,24.0289],[98.79867,24.02639],[98.82202,24.04646],[98.84536,24.05524],[98.87214,24.07593],[98.86459,24.07969],[98.86871,24.08847],[98.8845,24.09097],[98.89823,24.10852],[98.89205,24.11855],[98.89411,24.12419],[98.87764,24.15552],[98.8536,24.13296],[98.8385,24.12858],[98.82064,24.13547],[98.77258,24.13359],[98.7561,24.12482],[98.74443,24.13108],[98.73413,24.12732],[98.7149,24.13046],[98.6943,24.10727],[98.67301,24.10414],[98.64555,24.10915],[98.61465,24.08847],[98.59268,24.08345],[98.59062,24.09285],[98.55629,24.1104],[98.54942,24.1292],[98.49449,24.12732],[98.46359,24.12795],[98.36265,24.11291],[98.35922,24.09975],[98.32351,24.10602],[98.2933,24.10288],[98.28163,24.11166],[98.25004,24.1104],[98.22258,24.11604],[98.20335,24.10539],[98.17039,24.10539],[98.16833,24.101],[98.08799,24.08784],[98.08731,24.08032],[98.03787,24.07342],[97.99736,24.05022],[97.98568,24.03266],[97.93762,24.02075],[97.91908,24.02326],[97.89505,24.01322],[97.88131,23.99566],[97.89642,23.98123],[97.8923,23.97746],[97.85728,23.98123],[97.83943,23.96492],[97.82707,23.9737],[97.8202,23.96868],[97.82501,23.9599],[97.81196,23.94233],[97.81265,23.96429],[97.76184,23.9304],[97.76458,23.9122],[97.74948,23.91157],[97.74742,23.90529],[97.7275,23.89713],[97.71789,23.88395],[97.70278,23.88144],[97.71514,23.87202],[97.69523,23.867],[97.69111,23.87328],[97.69111,23.88332],[97.68013,23.88081],[97.68013,23.86574],[97.66502,23.85632],[97.66021,23.8739],[97.64854,23.85507],[97.65129,23.84376],[97.64442,23.84376],[97.63343,23.87955],[97.62313,23.88332],[97.61627,23.89211],[97.59841,23.89713],[97.59017,23.90718],[97.56202,23.91157],[97.52906,23.92915],[97.53044,23.94986],[97.56477,23.96366],[97.57164,23.98562],[97.62657,24.00569],[97.62382,24.02639],[97.63275,24.02012],[97.63137,24.05022],[97.63961,24.04709],[97.65815,24.06652],[97.68356,24.07969],[97.69386,24.09661],[97.70828,24.09975],[97.71377,24.1104],[97.73231,24.11604],[97.73094,24.1292],[97.73712,24.13923],[97.73506,24.15301],[97.75154,24.16554],[97.74398,24.18747],[97.7275,24.19123],[97.72544,24.20689],[97.72819,24.23131],[97.74467,24.24821],[97.76802,24.26261],[97.74673,24.28452],[97.71789,24.30079],[97.69249,24.29578],[97.66777,24.30142],[97.65953,24.33145],[97.66777,24.34897],[97.68081,24.34209],[97.70347,24.34522],[97.71652,24.36336],[97.71446,24.37712],[97.68905,24.38962],[97.67532,24.40838],[97.68013,24.41464],[97.67738,24.44527],[97.66777,24.45652],[97.60734,24.44152],[97.59635,24.44965],[97.59086,24.44089],[97.57232,24.44339],[97.52906,24.43777],[97.52975,24.44527],[97.55172,24.48464],[97.56065,24.55961],[97.56889,24.60394],[97.56683,24.65263],[97.5737,24.65949],[97.56889,24.66885],[97.56752,24.69381],[97.56546,24.70379],[97.56889,24.71065],[97.56614,24.72937],[97.5531,24.72999],[97.5476,24.74433],[97.57164,24.77301],[97.59086,24.7699],[97.61558,24.77925],[97.64991,24.79483],[97.67875,24.82849],[97.69386,24.83348],[97.70278,24.84718],[97.70759,24.83659],[97.74192,24.82974],[97.77076,24.82849],[97.79548,24.84781],[97.79892,24.86214],[97.79068,24.86463],[97.78793,24.87397],[97.77351,24.88955],[97.7639,24.88269],[97.73094,24.91134],[97.73094,24.94746],[97.71652,24.98232],[97.71926,25.01592],[97.72888,25.04765],[97.71926,25.08248],[97.73025,25.08995],[97.73231,25.08124],[97.74467,25.08248],[97.75085,25.09492],[97.7584,25.09865],[97.77626,25.12477],[97.77832,25.1316],[97.79823,25.16765],[97.81745,25.23041],[97.84011,25.27326],[97.85865,25.26581],[97.87239,25.26581],[97.90466,25.21923],[97.91908,25.21301],[97.94311,25.21798],[97.96165,25.24407],[97.96783,25.2391],[97.985,25.25525],[98.00491,25.28319],[98.00216,25.29685],[98.02207,25.30927],[98.03855,25.30306],[98.06945,25.31423],[98.07495,25.33471],[98.08799,25.33844],[98.09143,25.35085],[98.09692,25.35209],[98.10104,25.37815],[98.09623,25.38001],[98.10241,25.39614],[98.11821,25.38559],[98.13743,25.38621],[98.15322,25.42281],[98.14224,25.43335],[98.15116,25.43893],[98.15803,25.45381],[98.14704,25.48109],[98.13674,25.5003],[98.12645,25.5065],[98.13194,25.52137],[98.15803,25.52695],[98.16146,25.54553],[98.17245,25.54987],[98.18893,25.57341],[98.16696,25.62543],[98.18206,25.62666],[98.1903,25.61552],[98.2006,25.6149],[98.2061,25.61923],[98.2164,25.61366],[98.23768,25.60933],[98.24386,25.61119],[98.27476,25.59261],[98.28163,25.58084],[98.29467,25.57651],[98.30291,25.55049],[98.3139,25.54801],[98.32626,25.56598],[98.3448,25.58022],[98.36128,25.57836],[98.37913,25.59818],[98.4011,25.60004],[98.40866,25.61181],[98.40866,25.65576],[98.43132,25.68113],[98.45947,25.69103],[98.46839,25.7065],[98.45947,25.73681],[98.47938,25.75846],[98.47457,25.78443],[98.48899,25.79618],[98.49243,25.8141],[98.50616,25.81596],[98.51852,25.82523],[98.51646,25.83388],[98.52813,25.84068],[98.53225,25.84686],[98.54667,25.84439],[98.55354,25.84686],[98.57757,25.84068],[98.57688,25.82647],[98.62976,25.80298],[98.66546,25.82152],[98.67439,25.82029],[98.68606,25.84439],[98.70597,25.85489],[98.70872,25.88208],[98.70323,25.90246],[98.69087,25.9142],[98.68881,25.93273],[98.66066,25.95866],[98.65036,25.96421],[98.64555,25.97533],[98.61534,25.97533],[98.60229,26.03025],[98.60092,26.06295],[98.59268,26.07343],[98.57963,26.07343],[98.5865,26.0833],[98.58512,26.09748],[98.57276,26.12091],[98.58444,26.13016],[98.58169,26.14619],[98.60229,26.13324],[98.63113,26.15174],[98.65448,26.14496],[98.66752,26.12215],[98.65722,26.1055],[98.66272,26.09193],[98.67576,26.09933],[98.69705,26.11475],[98.70048,26.1129],[98.71902,26.13016],[98.71421,26.14619],[98.70666,26.1468],[98.71215,26.15975],[98.72589,26.16283],[98.73481,26.18994],[98.72451,26.20227],[98.72383,26.22013],[98.70803,26.23922],[98.69911,26.24477],[98.69087,26.23676],[98.67027,26.24354],[98.68194,26.26817],[98.67576,26.28356],[98.68606,26.2971],[98.68194,26.31003],[98.70597,26.32665],[98.7355,26.35557],[98.72726,26.3728],[98.73207,26.38387],[98.74305,26.38879],[98.75198,26.42938],[98.74237,26.44352],[98.75885,26.50376],[98.74855,26.51236],[98.75747,26.53509],[98.75541,26.56703],[98.76777,26.5744],[98.7815,26.60571],[98.77807,26.61676],[98.78082,26.62413],[98.75953,26.66648],[98.7664,26.67323],[98.7664,26.68304],[98.76983,26.68795],[98.77121,26.69531],[98.75816,26.6947],[98.7458,26.70022],[98.74374,26.71801],[98.75541,26.75296],[98.76228,26.80384],[98.73069,26.85409],[98.75679,26.87859],[98.75267,26.92635],[98.74374,26.93492],[98.74717,26.94533],[98.73687,26.96614],[98.7458,26.9949],[98.73344,27.00713],[98.74511,27.01937],[98.76297,27.02181],[98.76571,27.05178],[98.74099,27.07563],[98.72657,27.07013],[98.71353,27.07808],[98.71353,27.09275],[98.70872,27.11047],[98.71353,27.11903],[98.70803,27.13736],[98.71147,27.14164],[98.70735,27.16608],[98.70666,27.18196],[98.70117,27.19235],[98.69018,27.20151],[98.69979,27.21922],[98.72314,27.22654],[98.72039,27.2357],[98.72451,27.24547],[98.73207,27.24913],[98.71421,27.25951],[98.71696,27.27538],[98.73481,27.28636],[98.73001,27.30345],[98.74099,27.32907],[98.73207,27.34005],[98.73207,27.35225],[98.71696,27.35774],[98.69979,27.38335],[98.70048,27.41627],[98.68537,27.43029],[98.68743,27.45283],[98.70117,27.45344],[98.70391,27.46685],[98.68263,27.48939],[98.69224,27.50705],[98.68606,27.51436],[98.69361,27.51984],[98.70323,27.52106],[98.69773,27.54724],[98.70666,27.55759],[98.70254,27.56672],[98.69155,27.56306],[98.67576,27.58619],[98.66203,27.58984],[98.64761,27.56733],[98.61946,27.57828],[98.60229,27.58254],[98.59886,27.5728],[98.58718,27.56915],[98.58169,27.57402],[98.5865,27.58863],[98.57826,27.60749],[98.56246,27.64339],[98.55423,27.65129],[98.54805,27.64034],[98.53637,27.63974],[98.53225,27.62331],[98.50822,27.63],[98.50685,27.6373],[98.47457,27.6373],[98.45809,27.6592],[98.44368,27.66832],[98.43269,27.66528],[98.42994,27.65616],[98.43956,27.62879],[98.43063,27.61479],[98.43544,27.60506],[98.43063,27.59593],[98.432,27.55393],[98.40454,27.5448],[98.39218,27.52045],[98.37226,27.51009],[98.35304,27.51801],[98.33793,27.51192],[98.31665,27.52349],[98.31733,27.53506],[98.30566,27.54906],[98.31047,27.5868],[98.29879,27.61479],[98.30429,27.63244],[98.28987,27.63669],[98.28437,27.65555],[98.27751,27.66589],[98.26652,27.66042],[98.26171,27.67988],[98.23562,27.69386],[98.23837,27.70723],[98.22395,27.71392],[98.22395,27.72973],[98.24455,27.74006],[98.24317,27.74796],[98.2164,27.76619],[98.22395,27.81235],[98.21296,27.81539],[98.1958,27.82753],[98.1752,27.83421],[98.17108,27.85425],[98.18344,27.87428],[98.19992,27.8755],[98.20472,27.89067],[98.1903,27.94103],[98.15666,27.94224],[98.14018,27.9568],[98.13194,27.99379],[98.1388,27.99682],[98.1388,28.0138],[98.14292,28.01865],[98.13743,28.0441],[98.15254,28.06713],[98.15872,28.08591],[98.1594,28.10469],[98.14773,28.11619],[98.1491,28.12346],[98.14086,28.14526]]]}},{"type":"Feature","properties":{"cq_zone_name":"Philippine Zone","cq_zone_number":27,"cq_zone_name_loc":[15,140]},"geometry":{"type":"Polygon","coordinates":[[[165,0],[140,0],[130,2.5],[127.00219,5.5],[119.1477,4.19658],[118.98877,4.79656],[119.45312,5.3708],[118.13962,6.04534],[117.93055,6.61753],[117.35361,7.39417],[116.78216,7.66089],[116.78216,8.5],[118.5,10.5],[117,15.2],[121.7,22],[130,22],[160,40],[160,8],[165,2],[165,0]]]}},{"type":"Feature","properties":{"cq_zone_name":"Indonesian Zone","cq_zone_number":28,"cq_zone_name_loc":[0,125]},"geometry":{"type":"Polygon","coordinates":[[[165,0],[140,0],[130,2.5],[127.00219,5.5],[119.1477,4.19658],[118.98877,4.79656],[119.45312,5.3708],[118.13962,6.04534],[117.93055,6.61753],[117.35361,7.39417],[116.78216,7.66089],[114.75624,5.79238],[108.53354,6.87119],[102.13866,6.2691],[102.09119,6.23429],[102.0805,6.22507],[102.07927,6.17131],[102.08484,6.16082],[102.09315,6.14486],[102.07803,6.12609],[102.06154,6.10185],[102.05328,6.08069],[102.03158,6.06636],[102.02091,6.05339],[102.00425,6.05237],[102.00278,6.04025],[101.98896,6.04042],[101.97916,6.02779],[101.97349,6.0097],[101.94205,5.98017],[101.94494,5.95337],[101.93013,5.94621],[101.93192,5.92581],[101.92527,5.92312],[101.92135,5.91087],[101.9318,5.90832],[101.94156,5.89074],[101.94171,5.86907],[101.93123,5.86079],[101.92898,5.85251],[101.91488,5.84142],[101.89666,5.84399],[101.89115,5.83724],[101.88701,5.84005],[101.87597,5.8197],[101.88,5.81044],[101.87236,5.80391],[101.86334,5.80148],[101.86812,5.7921],[101.85266,5.79219],[101.8372,5.78818],[101.82275,5.76104],[101.82376,5.73287],[101.81624,5.73305],[101.81128,5.74082],[101.79259,5.75406],[101.77305,5.77098],[101.77823,5.78243],[101.75502,5.79816],[101.73689,5.78144],[101.72996,5.78272],[101.72439,5.77991],[101.71739,5.78794],[101.71711,5.76575],[101.70846,5.7602],[101.70393,5.75192],[101.69349,5.75312],[101.68717,5.76235],[101.68909,5.77978],[101.67783,5.77911],[101.66725,5.79825],[101.6654,5.81123],[101.65942,5.81056],[101.65846,5.83687],[101.66279,5.84593],[101.6575,5.85635],[101.66271,5.86422],[101.65557,5.87619],[101.63899,5.86856],[101.62515,5.87527],[101.62298,5.89428],[101.61572,5.90037],[101.61533,5.91056],[101.60904,5.91488],[101.59726,5.91238],[101.59034,5.91932],[101.58892,5.929],[101.58195,5.93332],[101.57257,5.92484],[101.55908,5.91772],[101.54627,5.92153],[101.52522,5.90759],[101.525,5.89959],[101.51516,5.90389],[101.50235,5.89062],[101.49595,5.88092],[101.48543,5.87941],[101.48498,5.8682],[101.475,5.86719],[101.46364,5.87301],[101.45329,5.86415],[101.4367,5.86831],[101.42081,5.87382],[101.39392,5.87251],[101.38616,5.85076],[101.37153,5.83175],[101.35821,5.83061],[101.349,5.82537],[101.34639,5.81147],[101.33793,5.80826],[101.32397,5.81324],[101.31391,5.8027],[101.3051,5.81281],[101.2908,5.81608],[101.26769,5.80759],[101.26017,5.787],[101.26053,5.7767],[101.25677,5.7746],[101.24997,5.76074],[101.25759,5.75097],[101.25591,5.74267],[101.26133,5.73479],[101.2585,5.72691],[101.26247,5.71798],[101.251,5.70848],[101.25144,5.69963],[101.24549,5.69794],[101.2464,5.69215],[101.23445,5.68683],[101.21742,5.68575],[101.2216,5.67701],[101.21546,5.66307],[101.20483,5.6602],[101.19832,5.64982],[101.17642,5.64859],[101.16962,5.64395],[101.16625,5.63214],[101.15327,5.62306],[101.14578,5.62149],[101.14479,5.61319],[101.13555,5.61309],[101.12283,5.66182],[101.11279,5.67844],[101.09862,5.6896],[101.09913,5.70234],[101.05963,5.74218],[101.03798,5.73693],[100.98436,5.80612],[100.99807,5.81556],[101.01179,5.83456],[101.00697,5.85089],[101.0104,5.87132],[101.02962,5.90063],[101.02686,5.91218],[101.03956,5.91502],[101.055,5.9083],[101.06253,5.91945],[101.07694,5.91694],[101.08447,5.90623],[101.087,5.92606],[101.09913,5.93906],[101.09594,5.95004],[101.11266,5.96034],[101.12526,5.97883],[101.11005,5.9898],[101.10858,6.0281],[101.11672,6.03498],[101.10288,6.05142],[101.11339,6.07014],[101.1184,6.09023],[101.12616,6.09256],[101.1298,6.10582],[101.11857,6.11159],[101.10734,6.11327],[101.10504,6.12177],[101.08901,6.13165],[101.05784,6.14109],[101.07676,6.16117],[101.07645,6.17033],[101.08781,6.17608],[101.09917,6.17773],[101.1171,6.18171],[101.12403,6.19252],[101.10502,6.23886],[101.11165,6.25008],[101.09906,6.26131],[101.0614,6.25581],[101.02787,6.24348],[101.01572,6.2475],[100.98526,6.27532],[100.96853,6.28404],[100.96643,6.27173],[100.94786,6.26216],[100.94231,6.23891],[100.91472,6.24839],[100.90112,6.23165],[100.89165,6.2463],[100.87133,6.26333],[100.87024,6.24076],[100.85404,6.22912],[100.834,6.2932],[100.84829,6.31223],[100.82607,6.35576],[100.81917,6.36757],[100.82326,6.37939],[100.82457,6.40575],[100.81345,6.44209],[100.79204,6.44841],[100.7775,6.46155],[100.77108,6.45703],[100.75505,6.45525],[100.74497,6.47078],[100.73832,6.48904],[100.7453,6.49817],[100.73854,6.51139],[100.73187,6.50406],[100.73069,6.49673],[100.72421,6.49435],[100.71925,6.48634],[100.71018,6.48105],[100.70988,6.47185],[100.70054,6.46989],[100.69531,6.4652],[100.68624,6.46538],[100.68319,6.45345],[100.66092,6.44902],[100.65238,6.44187],[100.64123,6.44819],[100.64518,6.45724],[100.62029,6.45673],[100.61188,6.46578],[100.59592,6.4762],[100.57584,6.47979],[100.56314,6.49379],[100.54701,6.48631],[100.51714,6.48837],[100.49552,6.50613],[100.49587,6.51979],[100.48471,6.52475],[100.47218,6.52015],[100.45811,6.53143],[100.44867,6.52683],[100.43511,6.5236],[100.4231,6.51714],[100.40886,6.52892],[100.39324,6.5366],[100.37419,6.54429],[100.36749,6.53833],[100.35968,6.5495],[100.35874,6.55659],[100.35162,6.56981],[100.3445,6.57757],[100.33531,6.58534],[100.32476,6.58492],[100.31489,6.60087],[100.30227,6.60863],[100.32442,6.61902],[100.31901,6.63888],[100.32111,6.65563],[100.32734,6.66284],[100.30648,6.6694],[100.30292,6.6795],[100.29112,6.68141],[100.29335,6.7109],[100.26399,6.70152],[100.25687,6.70978],[100.24013,6.69213],[100.21971,6.69844],[100.21499,6.71727],[100.2034,6.7252],[100.19001,6.71802],[100.17113,6.69311],[100.17817,6.68066],[100.17971,6.66821],[100.17989,6.65507],[100.16907,6.64739],[100.16804,6.61395],[100.1792,6.60064],[100.17929,6.59058],[100.18349,6.57369],[100.17457,6.56684],[100.1581,6.5777],[100.1605,6.5596],[100.15329,6.55923],[100.1569,6.53858],[100.15639,6.52202],[100.16137,6.50205],[100.15948,6.48345],[100.15399,6.47756],[100.15261,6.47167],[100.143,6.46398],[100.1485,6.45133],[100.13579,6.44501],[100.13408,6.43049],[100.11966,6.42331],[99.86587,6.52268],[99.552,6.437],[90,6.437],[90,-10],[110,-10],[123,-11.25],[138,-10],[142.19999,-9.2],[142.584,-9.35],[144,-9.35],[148,-13],[163,-13],[165,-8],[165,0]]]}},{"type":"Feature","properties":{"cq_zone_name":"Western Zone of Australia","cq_zone_number":29,"cq_zone_name_loc":[-25,115]},"geometry":{"type":"Polygon","coordinates":[[[89.99999,-89.99999],[129,-89.99999],[129,-32],[129.00139,-31.68776],[129.00185,-25.99864],[137.99899,-25.99697],[137.99457,-16.54117],[138,-10],[123,-11.25],[110,-10],[89.99999,-10],[89.99999,-89.99999]]]}},{"type":"Feature","properties":{"cq_zone_name":"Eastern Zone of Australia","cq_zone_number":30,"cq_zone_name_loc":[-25,145]},"geometry":{"type":"Polygon","coordinates":[[[129,-89.99999],[129,-32],[129.00139,-31.68776],[129.00185,-25.99864],[137.99899,-25.99697],[137.99457,-16.54117],[138,-10],[142.19999,-9.2],[142.584,-9.35],[144,-9.35],[148,-13],[163,-13],[160,-20],[155,-20],[165,-32],[165,-68],[170,-71],[170,-89.99999],[129,-89.99999]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central Pacific Zone","cq_zone_number":31,"cq_zone_name_loc":[15,-145]},"geometry":{"type":"Polygon","coordinates":[[[-180,-12],[-156,-7],[-154,-12],[-130,-12],[-130,40],[-180,40],[-200,40],[-200,8],[-195,2],[-195,-8],[-180,-12]]]}},{"type":"Feature","properties":{"cq_zone_name":"New Zealand Zone","cq_zone_number":32,"cq_zone_name_loc":[-25,-145]},"geometry":{"type":"Polygon","coordinates":[[[-180,-12],[-156,-7],[-154,-12],[-120,-12],[-120,-89.99999],[-190,-89.99999],[-190,-71],[-195,-68],[-195,-32],[-205,-20],[-200,-20],[-197,-13],[-195,-8],[-180,-12]]]}},{"type":"Feature","properties":{"cq_zone_name":"Northwestern Zone of Africa","cq_zone_number":33,"cq_zone_name_loc":[32,-26]},"geometry":{"type":"Polygon","coordinates":[[[-35,36],[-35,20.5],[-17.05,20.5],[-17.05038,20.76998],[-17.0569,20.80244],[-17.06752,20.83341],[-17.06233,20.85494],[-17.06873,20.89532],[-17.05593,20.91959],[-17.03724,20.99007],[-17.03943,21.0346],[-16.99578,21.13282],[-16.9914,21.17069],[-16.93657,21.33373],[-13.00083,21.33402],[-13.02873,22.01325],[-13.07929,22.52085],[-13.15029,22.76029],[-13.10962,22.86868],[-13.10807,22.93528],[-13.01487,23.01074],[-12.58201,23.2717],[-12.3658,23.31703],[-12.13921,23.4204],[-12.00119,23.45253],[-12.00086,26.00057],[-8.66761,26.00058],[-8.66762,27.31589],[-4.85704,25.0159],[-3.72807,24.28551],[1.16658,21.1163],[1.19058,20.99261],[1.19109,20.94114],[1.15863,20.74085],[1.18773,20.72156],[1.22781,20.72796],[1.32282,20.7395],[1.3574,20.67141],[1.59766,20.59637],[1.66322,20.53259],[1.67385,20.40193],[1.81356,20.2918],[1.88736,20.28986],[1.91653,20.22541],[1.94896,20.25246],[1.97698,20.25922],[2.005,20.24537],[2.04457,20.2692],[2.1237,20.23697],[2.18523,20.26982],[2.20832,20.31812],[2.25122,20.30522],[2.30768,20.27479],[2.30371,20.23406],[2.35742,20.19591],[2.35956,20.16137],[2.40564,20.13198],[2.39281,20.10204],[2.37746,20.09675],[2.38547,20.06437],[2.3749,20.02771],[2.39729,20.04135],[2.39706,20.06315],[2.41204,20.07469],[2.4339,20.0772],[2.4482,20.08745],[2.45701,20.08867],[2.46581,20.0957],[2.47325,20.09628],[2.48067,20.08504],[2.4977,20.09316],[2.50993,20.08772],[2.51941,20.0939],[2.52689,20.08199],[2.53713,20.06235],[2.55148,20.0556],[2.55522,20.03997],[2.56171,20.03337],[2.59667,20.03243],[2.60278,20.04439],[2.62469,20.05377],[2.6377,20.04814],[2.63528,20.0408],[2.66085,20.05326],[2.66449,20.05186],[2.66677,20.05949],[2.6711,20.0768],[2.66914,20.08416],[2.68053,20.0988],[2.68642,20.09797],[2.69937,20.08355],[2.69883,20.07123],[2.73125,19.99699],[2.82616,19.96468],[2.8936,19.96334],[2.97443,19.95002],[3.01251,19.93371],[3.03507,19.91543],[3.09197,19.89844],[3.11561,19.87865],[3.13376,19.87306],[3.14946,19.85801],[3.19802,19.84148],[3.23741,19.84161],[3.25689,19.83463],[3.26354,19.81648],[3.2472,19.79353],[3.24735,19.768],[3.24612,19.74377],[3.23116,19.70919],[3.23363,19.67444],[3.25533,19.63711],[3.23007,19.59995],[3.23667,19.56294],[3.26524,19.52851],[3.24986,19.49926],[3.26744,19.44931],[3.2591,19.43548],[3.20682,19.42942],[3.1971,19.39098],[3.17915,19.3629],[3.18592,19.32769],[3.20367,19.30803],[3.19798,19.27649],[3.12754,19.18359],[3.11479,19.13998],[3.23896,19.05925],[3.28732,19.02019],[3.29941,18.99938],[3.33347,18.99157],[3.35764,18.96814],[5.81301,19.44323],[7.45937,20.84341],[12,23.49999],[11.60295,24.26581],[11.42324,24.19938],[11.13152,24.39394],[11.04608,24.4262],[11.02952,24.45552],[10.9855,24.48733],[10.95514,24.52847],[10.9085,24.55253],[10.88108,24.55662],[10.84813,24.567],[10.81519,24.5649],[10.7946,24.54156],[10.79873,24.52822],[10.77129,24.50902],[10.73836,24.5373],[10.72362,24.57057],[10.63472,24.56886],[10.61449,24.57215],[10.60163,24.5613],[10.5888,24.55172],[10.58695,24.53964],[10.56954,24.54046],[10.54965,24.53314],[10.48032,24.5383],[10.43434,24.53347],[10.35265,24.53364],[10.33247,24.56763],[10.30316,24.59213],[10.28757,24.59913],[10.26856,24.61863],[10.21658,24.64812],[10.19894,24.68384],[10.19778,24.6971],[10.13682,24.80751],[10.10908,24.83902],[10.10058,24.87802],[10.07479,24.90936],[10.06464,24.92877],[10.04076,24.95565],[10.02842,25.35397],[9.39967,26.19533],[9.44009,26.24675],[9.50524,26.37698],[9.8635,26.51679],[9.9143,26.6447],[9.90193,26.74314],[9.93075,26.85787],[9.91238,26.86878],[9.90087,26.88337],[9.8928,26.89979],[9.87847,26.90678],[9.86138,26.93091],[9.86078,26.94234],[9.85606,26.95377],[9.83975,27.02068],[9.84052,27.05199],[9.83168,27.06618],[9.83382,27.07975],[9.8291,27.10189],[9.82301,27.11956],[9.81691,27.13357],[9.81846,27.1457],[9.80163,27.16567],[9.80232,27.1829],[9.79614,27.20013],[9.79476,27.22483],[9.78103,27.26418],[9.79407,27.30992],[9.79749,27.34956],[9.7877,27.35145],[9.80263,27.39115],[9.81481,27.40921],[9.81198,27.43865],[9.82013,27.44738],[9.81472,27.45793],[9.82575,27.47112],[9.82854,27.48432],[9.86716,27.50421],[9.86938,27.53079],[9.87985,27.55738],[9.8262,27.55896],[9.81787,27.56662],[9.82396,27.57551],[9.86851,27.58317],[9.89486,27.60908],[9.91764,27.66036],[9.92766,27.67323],[9.92807,27.69705],[9.94506,27.73065],[9.94522,27.84578],[9.96324,27.85888],[9.96632,27.88144],[9.83204,28.29156],[9.9065,28.75004],[9.88056,28.98174],[9.7887,29.40556],[9.54303,29.89505],[9.42019,30.03021],[9.39624,30.16537],[9.95379,30.38572],[10.18176,30.66292],[10.30673,30.86757],[10.28887,31.08164],[10.12133,31.48158],[10.33007,31.73043],[10.53881,31.74551],[10.63563,31.86921],[10.62258,31.90892],[10.65348,31.97193],[10.72833,31.96037],[10.8121,32.01189],[10.88488,32.1193],[11.14169,32.26614],[11.37652,32.32935],[11.5935,32.44655],[11.59625,32.52464],[11.51522,32.59611],[11.48913,32.66757],[11.49462,32.92105],[11.5523,33.12608],[11.56604,33.24828],[13.27007,36],[12.24441,37.25],[7,38.5],[-5.00336,35.99863],[-5.58643,35.96265],[-6,36],[-35,36]]]}},{"type":"Feature","properties":{"cq_zone_name":"Northeastern Zone of Africa","cq_zone_number":34,"cq_zone_name_loc":[25,25.5]},"geometry":{"type":"Polygon","coordinates":[[[39.6967,18.538],[38.58123,18.02118],[38.45077,17.89903],[38.38966,17.75457],[38.38897,17.73822],[38.34503,17.65252],[38.28048,17.63878],[38.27499,17.60868],[38.26469,17.60279],[38.26606,17.58774],[38.26194,17.57595],[38.26194,17.5681],[38.23516,17.55042],[38.2228,17.55893],[38.20632,17.56548],[38.20701,17.55828],[38.19534,17.5537],[38.17543,17.58643],[38.13697,17.57137],[38.13285,17.57661],[38.10607,17.56417],[38.09783,17.54453],[38.09715,17.51572],[38.08204,17.5203],[38.07449,17.54584],[38.05732,17.56875],[38.05252,17.56286],[38.04084,17.56548],[38.03741,17.54977],[38.03054,17.54977],[38.02848,17.54388],[38.00445,17.56221],[37.97149,17.50459],[37.97699,17.48625],[37.9557,17.46791],[37.9248,17.46529],[37.90077,17.45416],[37.87055,17.44761],[37.86506,17.46464],[37.85339,17.49346],[37.84172,17.50131],[37.83416,17.50524],[37.8218,17.50131],[37.81219,17.50459],[37.80189,17.49804],[37.78747,17.50131],[37.77442,17.48494],[37.78198,17.47774],[37.7758,17.4463],[37.76962,17.4142],[37.76207,17.3834],[37.74627,17.38668],[37.74147,17.38275],[37.611,17.37357],[37.51213,17.3408],[37.49839,17.30803],[37.50389,17.28836],[37.52037,17.27656],[37.52174,17.26541],[37.49839,17.25754],[37.4929,17.22475],[37.50732,17.20245],[37.48672,17.19327],[37.48191,17.17425],[37.47299,17.16375],[37.46955,17.14932],[37.46131,17.13685],[37.462,17.12044],[37.44003,17.09944],[37.42767,17.10207],[37.41256,17.08763],[37.41531,17.07844],[37.40638,17.07319],[37.40501,17.06006],[37.3954,17.05481],[37.36106,17.06203],[37.3487,17.0745],[37.31987,17.09748],[37.29721,17.0896],[37.26287,17.08632],[37.21,17.07844],[37.19901,17.0686],[37.16331,17.06925],[37.14614,17.08566],[37.12486,17.09222],[37.1125,17.09354],[37.08572,17.07844],[37.04864,17.09485],[37.04658,17.1001],[37.02598,17.10666],[37.01362,17.09879],[37.01637,17.09288],[37.01225,17.08501],[37.00676,17.08501],[36.99989,17.07713],[37.01088,17.064],[37.01362,17.04562],[37.03079,17.03052],[37.02667,17.02461],[37.01911,17.0233],[36.99234,16.9885],[37.00264,16.96814],[37.00332,16.94778],[37.01568,16.94252],[37.01293,16.93267],[36.99852,16.92676],[36.9992,16.90968],[37.0047,16.888],[36.99096,16.88406],[36.98959,16.87354],[36.99508,16.8696],[36.99989,16.84331],[37.01705,16.83017],[37.00607,16.80585],[37.01362,16.80585],[37.00607,16.7789],[37.00401,16.74931],[36.98616,16.73419],[36.97242,16.71117],[36.93534,16.70591],[36.9223,16.68289],[36.91131,16.6921],[36.90238,16.68552],[36.8914,16.65855],[36.89689,16.6454],[36.88797,16.625],[36.88247,16.6204],[36.88728,16.5921],[36.8811,16.5513],[36.8708,16.55459],[36.86737,16.54274],[36.85981,16.53616],[36.87561,16.50719],[36.88934,16.50193],[36.89277,16.4802],[36.89071,16.45584],[36.90582,16.43806],[36.92573,16.45715],[36.9374,16.43608],[36.96693,16.4341],[36.96281,16.42225],[36.96075,16.39722],[36.9532,16.38932],[36.95045,16.36889],[36.93328,16.37285],[36.93534,16.33068],[36.95114,16.31091],[36.94633,16.29377],[36.95594,16.28389],[36.92504,16.26477],[36.92436,16.2595],[36.90788,16.2384],[36.89552,16.23313],[36.89209,16.20874],[36.76712,15.83717],[36.70394,15.73872],[36.65588,15.58137],[36.62979,15.50926],[36.63665,15.49537],[36.63734,15.48213],[36.6188,15.45235],[36.53434,15.2292],[36.50207,15.2239],[36.43341,15.16691],[36.45675,15.03698],[36.52336,14.33823],[36.54808,14.26504],[36.55975,14.25706],[36.46705,13.97804],[36.49589,13.83474],[36.47804,13.81674],[36.47598,13.7974],[36.46911,13.79207],[36.46774,13.78206],[36.44989,13.77606],[36.40937,13.65999],[36.39427,13.55922],[36.38946,13.5452],[36.37916,13.52851],[36.28234,13.37291],[36.17042,13.02061],[36.16218,13.01793],[36.16355,12.9798],[36.14776,12.95504],[36.14364,12.93496],[36.15119,12.91756],[36.17523,12.90351],[36.16012,12.69795],[36.11755,12.68656],[36.09901,12.68991],[36.10244,12.69862],[36.09352,12.71335],[36.03035,12.71804],[36.00906,12.72474],[35.77354,12.66311],[35.77354,12.67316],[35.76393,12.67182],[35.76461,12.66445],[35.74058,12.65775],[35.71861,12.67249],[35.71174,12.66914],[35.6987,12.67249],[35.66162,12.63698],[35.45906,12.29572],[35.31074,12.04536],[35.26954,11.94394],[35.08827,11.80821],[35.04364,11.73426],[35.06286,11.69056],[35.06012,11.68384],[35.07041,11.66904],[35.08277,11.64416],[35.07659,11.53519],[35.04638,11.47935],[35.04501,11.4208],[34.98802,11.34002],[34.96604,11.28077],[34.94545,11.26797],[34.94751,11.2572],[34.92897,11.24642],[34.92965,11.23767],[34.94133,11.23834],[34.96398,11.2343],[35.00038,11.18715],[34.95231,10.9486],[34.96398,10.9486],[34.95986,10.93512],[34.98596,10.90815],[34.98596,10.89129],[34.94407,10.86904],[34.86923,10.8043],[34.86717,10.76383],[34.87815,10.75776],[34.86854,10.7328],[34.85481,10.72268],[34.83352,10.71256],[34.804,10.72605],[34.78614,10.70514],[34.78065,10.71053],[34.77859,10.71863],[34.78958,10.72403],[34.7937,10.75573],[34.76348,10.75708],[34.70443,10.82049],[34.60281,10.90478],[34.46548,10.81307],[34.39132,10.67747],[34.29451,10.58502],[34.29725,10.57219],[34.29245,10.55667],[34.28077,10.53777],[34.29657,10.47768],[34.30824,10.45337],[34.29794,10.39867],[34.34463,10.25951],[34.34806,10.22843],[34.33708,10.18856],[34.33364,10.15815],[34.32472,10.13517],[34.33296,10.11895],[34.23339,10.04864],[34.21623,9.92489],[34.22309,9.88633],[34.16198,9.76522],[34.10224,9.55809],[34.10568,9.50121],[34.1455,9.03022],[34.14413,8.60682],[34.1407,8.59799],[34.1304,8.59867],[34.09812,8.55386],[34.08645,8.55725],[34.06173,8.5362],[34.04388,8.53009],[34.03633,8.51787],[34.03427,8.50293],[34.02465,8.4907],[34.01229,8.48799],[34.00199,8.4975],[33.99375,8.4907],[33.97522,8.4941],[33.97316,8.50225],[33.95736,8.49546],[33.9505,8.49885],[33.9299,8.4975],[33.92303,8.48867],[33.899,8.48323],[33.87771,8.4615],[33.87565,8.43909],[33.88526,8.42822],[33.87634,8.42347],[33.87496,8.41396],[33.83651,8.40988],[33.82553,8.39901],[33.81729,8.40445],[33.80218,8.39833],[33.78982,8.38679],[33.79257,8.38339],[33.76785,8.3698],[33.74862,8.37863],[33.7342,8.36641],[33.71292,8.37456],[33.68888,8.38882],[33.67996,8.4126],[33.67515,8.44656],[33.6621,8.44792],[33.65661,8.45607],[33.6161,8.46965],[33.59825,8.44452],[33.56735,8.45131],[33.56117,8.47237],[33.52134,8.46829],[33.49937,8.48052],[33.48838,8.47848],[33.48701,8.46286],[33.47602,8.45607],[33.46572,8.45811],[33.44787,8.4452],[33.42384,8.45267],[33.4053,8.44316],[33.39706,8.42618],[33.36685,8.44724],[33.33663,8.44724],[33.30917,8.46761],[33.29612,8.4418],[33.28651,8.4418],[33.28239,8.45539],[33.2714,8.46082],[33.25904,8.44928],[33.24188,8.44656],[33.24943,8.43841],[33.23501,8.42211],[33.22059,8.43569],[33.2151,8.42822],[33.2151,8.40377],[33.19862,8.40988],[33.18901,8.40377],[33.1945,8.39494],[33.18695,8.38814],[33.19656,8.35282],[33.21785,8.36029],[33.21579,8.33855],[33.2048,8.3304],[33.19175,8.33312],[33.20068,8.31409],[33.19518,8.29711],[33.17184,8.30118],[33.17047,8.29575],[33.17459,8.28691],[33.17115,8.27876],[33.17733,8.2543],[33.19999,8.2475],[33.20617,8.23459],[33.19862,8.21692],[33.16703,8.19653],[33.17527,8.19178],[33.17596,8.1775],[33.18969,8.17003],[33.18214,8.16051],[33.1945,8.13604],[33.19175,8.12517],[33.17596,8.12857],[33.16703,8.12992],[33.16291,8.11225],[33.14781,8.11565],[33.11897,8.10953],[33.12309,8.06398],[33.11622,8.06126],[33.10043,8.0769],[33.08464,8.07486],[33.0867,8.06058],[33.08052,8.05583],[33.08258,8.04699],[33.07571,8.01979],[33.0661,8.02183],[33.06129,8.01503],[33.04962,8.01503],[33.03863,8.01027],[33.04138,8.00143],[33.0352,7.99327],[33.04,7.97763],[33.04,7.96743],[33.03108,7.95995],[33.01597,7.95927],[33.0091,7.95111],[32.99537,7.94431],[33.00636,7.93819],[33.00499,7.92663],[33.00018,7.91643],[33.01803,7.89262],[33.00567,7.89126],[32.99949,7.87426],[33.00361,7.86882],[33.00499,7.85862],[33.01666,7.84841],[33.02764,7.83073],[33.04756,7.81032],[33.04893,7.79195],[33.09288,7.80148],[33.10661,7.78243],[33.15399,7.79127],[33.16429,7.8008],[33.22334,7.77154],[33.24119,7.77766],[33.3181,7.72664],[33.31947,7.71235],[33.34281,7.71303],[33.35037,7.7314],[33.36479,7.72119],[33.36685,7.72936],[33.38401,7.74024],[33.40118,7.7314],[33.40255,7.7382],[33.41972,7.74093],[33.43139,7.75249],[33.45474,7.74365],[33.4719,7.75045],[33.48564,7.73956],[33.50418,7.73616],[33.52409,7.72528],[33.52409,7.71439],[33.53096,7.71439],[33.54263,7.70418],[33.53714,7.69942],[33.54675,7.69261],[33.56597,7.69874],[33.57971,7.68853],[33.62709,7.69806],[33.63533,7.68921],[33.64219,7.69466],[33.66622,7.68581],[33.70193,7.66063],[33.71704,7.66131],[33.73558,7.63954],[33.73832,7.62252],[33.75274,7.62184],[33.76236,7.60619],[33.78021,7.60142],[33.7857,7.58781],[33.82278,7.56331],[33.86466,7.5599],[33.87359,7.54493],[33.87908,7.54901],[33.89762,7.53744],[33.90449,7.52655],[33.89968,7.51566],[33.92784,7.48162],[33.92852,7.47277],[33.95668,7.46732],[33.95942,7.45098],[33.97934,7.44349],[34.00062,7.42307],[34.00817,7.40128],[34.00405,7.38698],[34.03633,7.35565],[34.03083,7.33045],[34.04182,7.27393],[34.03083,7.26575],[34.01092,7.26984],[34.02122,7.24396],[34.04045,7.22488],[34.05006,7.22488],[34.06517,7.2133],[34.06585,7.2208],[34.10293,7.1881],[34.0995,7.1806],[34.10293,7.17106],[34.12902,7.1663],[34.14276,7.14722],[34.1613,7.1479],[34.19563,7.12405],[34.18876,7.1152],[34.20043,7.09544],[34.18876,7.0859],[34.1922,7.07023],[34.19426,7.04433],[34.21966,7.03479],[34.22309,7.01912],[34.23408,7.0048],[34.26292,7.01162],[34.28146,6.99117],[34.30206,6.97618],[34.29451,6.96187],[34.29519,6.95028],[34.31304,6.94687],[34.33502,6.92097],[34.34326,6.92642],[34.38171,6.91415],[34.39476,6.92574],[34.43595,6.91347],[34.46891,6.91347],[34.49775,6.88211],[34.50737,6.88075],[34.51835,6.86712],[34.50943,6.86439],[34.51423,6.85621],[34.52728,6.85621],[34.52728,6.84121],[34.54101,6.8153],[34.53483,6.80712],[34.54376,6.79826],[34.53346,6.79076],[34.53689,6.7553],[34.52934,6.7553],[34.53277,6.74712],[34.55543,6.73689],[34.58633,6.72871],[34.61242,6.73075],[34.61311,6.72462],[34.61998,6.72189],[34.62616,6.74303],[34.65362,6.73212],[34.66049,6.71234],[34.66941,6.7137],[34.67971,6.69938],[34.71267,6.68438],[34.70718,6.67279],[34.72778,6.63937],[34.73945,6.63937],[34.76554,6.60936],[34.76898,6.59367],[34.77653,6.60117],[34.79095,6.58958],[34.81086,6.60527],[34.84108,6.60117],[34.85481,6.61004],[34.89051,6.60049],[34.88433,6.58753],[34.8912,6.57866],[34.91317,6.57866],[34.91043,6.57116],[34.93583,6.56025],[34.95849,6.51931],[34.9578,6.50499],[34.97222,6.5084],[34.97978,6.49612],[34.98115,6.48589],[35.00862,6.47429],[35.01823,6.45859],[35.01892,6.43608],[35.01274,6.42653],[35.01342,6.40742],[35.00656,6.4006],[34.99214,6.39446],[34.98939,6.37808],[35.00244,6.35215],[34.99076,6.34123],[34.98802,6.31598],[34.9736,6.30847],[34.9681,6.28868],[34.95918,6.2839],[34.96398,6.27707],[34.96192,6.25591],[34.94957,6.24841],[34.9633,6.2368],[34.96055,6.22998],[34.96604,6.22315],[34.96467,6.21359],[34.9736,6.20677],[34.97772,6.17468],[34.97016,6.17605],[34.96398,6.12075],[34.97291,6.10778],[34.97428,6.09003],[34.98802,6.08934],[34.99008,6.07842],[34.99626,6.08252],[35.00381,6.07569],[34.99626,6.03677],[35.00862,6.00809],[35.00724,5.99238],[34.99832,5.97941],[34.99282,5.95141],[34.999,5.93365],[35.01068,5.91794],[35.00999,5.9077],[35.00381,5.89609],[34.99763,5.89677],[35.00656,5.88994],[35.04089,5.83939],[35.13015,5.68773],[35.12535,5.62418],[35.31486,5.49775],[35.30662,5.47041],[35.31005,5.46357],[35.3025,5.44033],[35.29426,5.42871],[35.29014,5.37813],[35.30319,5.34941],[35.31074,5.35147],[35.31761,5.34326],[35.31761,5.33506],[35.33546,5.34463],[35.42266,5.37198],[35.45082,5.3918],[35.47348,5.41231],[35.50712,5.42325],[35.54008,5.42325],[35.56686,5.41162],[35.58471,5.41778],[35.60051,5.4],[35.61767,5.40342],[35.61836,5.38223],[35.65544,5.39522],[35.65887,5.38701],[35.71723,5.38975],[35.72547,5.37813],[35.75225,5.37061],[35.755,5.35762],[35.77423,5.34873],[35.76942,5.35488],[35.77766,5.35899],[35.79414,5.34395],[35.80444,5.34805],[35.81886,5.34258],[35.82023,5.33711],[35.83946,5.33506],[35.83946,5.32685],[35.85937,5.32275],[35.8628,5.30771],[35.85662,5.28993],[35.85044,5.29267],[35.84289,5.27831],[35.82778,5.26053],[35.8271,5.24754],[35.84014,5.23387],[35.8422,5.22293],[35.85456,5.2113],[35.85594,5.19352],[35.86555,5.18532],[35.86349,5.17027],[35.86006,5.16617],[35.85662,5.1477],[35.8525,5.15112],[35.8374,5.12445],[35.8319,5.12103],[35.81886,5.10325],[35.80925,4.79131],[35.94863,4.63117],[35.86143,4.6257],[35.78109,4.62638],[35.78041,4.67908],[35.77285,4.67977],[35.76942,4.68729],[35.75225,4.67977],[35.74607,4.68182],[35.74127,4.67977],[35.7344,4.67977],[35.72959,4.67292],[35.71517,4.66813],[35.7138,4.65581],[35.70556,4.64897],[35.70694,4.64007],[35.7035,4.63665],[35.70419,4.62433],[35.7035,4.60927],[35.70556,4.60243],[35.70144,4.58942],[35.59707,4.62502],[35.52154,4.76051],[35.51879,4.79404],[35.56617,4.89872],[35.55999,4.9172],[35.54008,4.91514],[35.46936,4.92951],[35.3897,4.91993],[35.42816,5.00681],[35.40824,5.03212],[35.26336,4.94524],[35.24345,4.98629],[35.07316,4.9172],[34.65843,4.76051],[34.3769,4.6168],[34.08645,4.32655],[33.99169,4.21973],[33.51242,3.75052],[33.1945,3.77724],[33.02764,3.8896],[32.90199,3.81287],[32.72003,3.76491],[32.41516,3.74367],[32.19543,3.59771],[32.19543,3.5936],[32.20161,3.59086],[32.2071,3.59291],[32.21672,3.57578],[32.21534,3.56824],[32.22015,3.56139],[32.21191,3.55591],[32.20848,3.54631],[32.21122,3.5374],[32.20298,3.5237],[32.20436,3.51273],[32.20298,3.50519],[32.10067,3.52986],[32.08625,3.52918],[32.08419,3.53466],[32.08763,3.53466],[32.08831,3.54768],[32.08351,3.54631],[32.08488,3.5607],[32.07115,3.5751],[32.06016,3.57989],[32.0581,3.58606],[32.04505,3.59291],[32.03956,3.58606],[31.95442,3.58606],[31.95304,3.5936],[31.95442,3.60936],[31.9448,3.64774],[31.94137,3.67378],[31.92352,3.71009],[31.91803,3.7142],[31.91322,3.71831],[31.91322,3.72517],[31.90704,3.73819],[31.90086,3.73819],[31.89949,3.7512],[31.88919,3.75943],[31.88232,3.75874],[31.87751,3.76422],[31.87751,3.77655],[31.86103,3.79368],[31.84455,3.80191],[31.82052,3.82451],[31.80336,3.83548],[31.79855,3.83137],[31.79237,3.82725],[31.79786,3.81903],[31.79649,3.81355],[31.80404,3.80876],[31.80336,3.79916],[31.77177,3.77861],[31.74224,3.75394],[31.7395,3.74778],[31.73126,3.75257],[31.72576,3.73476],[31.72233,3.73407],[31.71066,3.71626],[31.70311,3.71146],[31.70242,3.71489],[31.69487,3.71283],[31.69212,3.71009],[31.63238,3.69022],[31.57745,3.67515],[31.54518,3.65116],[31.29043,3.79368],[31.17851,3.79437],[31.16203,3.79026],[31.15448,3.77793],[31.11465,3.75531],[31.10092,3.74435],[31.10641,3.74093],[31.10023,3.73613],[31.09405,3.73819],[31.0913,3.73407],[31.08787,3.7423],[31.07414,3.74435],[31.05903,3.73407],[31.06246,3.72859],[31.06041,3.72037],[31.01989,3.69433],[31.00616,3.70735],[30.98693,3.70324],[30.97251,3.69091],[30.96839,3.67446],[30.95878,3.67103],[30.94848,3.65185],[30.94917,3.6354],[30.93956,3.62033],[30.9272,3.61553],[30.91896,3.59908],[30.90728,3.59154],[30.90385,3.57441],[30.88806,3.55591],[30.86608,3.49423],[30.85433,3.48904],[30.85136,3.49054],[30.85054,3.49925],[30.85151,3.52354],[30.86621,3.54508],[30.85991,3.57722],[30.80885,3.59488],[30.79705,3.61057],[30.79624,3.65366],[30.7754,3.6823],[30.73048,3.62139],[30.6833,3.64301],[30.6526,3.62078],[30.6219,3.60266],[30.55824,3.62292],[30.58198,3.72921],[30.55079,3.84098],[30.52627,3.8537],[30.47428,3.83354],[30.44515,3.87954],[30.41601,3.86525],[30.38688,3.89412],[30.34951,3.91751],[30.30223,3.91428],[30.2882,3.95651],[30.2165,3.93845],[30.18501,4.03182],[30.1679,4.03878],[30.15903,4.11422],[30.12232,4.11086],[30.06364,4.12941],[30.02967,4.17535],[30.02318,4.20759],[29.97685,4.21382],[29.94564,4.24195],[29.96592,4.28926],[29.89916,4.34715],[29.84655,4.33639],[29.80218,4.36944],[29.79711,4.42654],[29.80852,4.49459],[29.79838,4.51021],[29.82617,4.5565],[29.7664,4.58611],[29.74847,4.56866],[29.69887,4.61865],[29.553,4.6721],[29.5359,4.65852],[29.49347,4.69435],[29.46676,4.66502],[29.47575,4.59326],[29.4463,4.56463],[29.44805,4.52157],[29.40729,4.47726],[29.37476,4.47129],[29.35713,4.4505],[29.34499,4.3996],[29.30676,4.38429],[29.26567,4.39717],[29.25402,4.38328],[29.25062,4.35569],[29.22183,4.33886],[29.1338,4.42963],[29.08433,4.43726],[29.0788,4.45584],[29.04718,4.47169],[29.02655,4.49301],[28.92623,4.47815],[28.87607,4.49125],[28.8369,4.47972],[28.81204,4.49928],[28.80078,4.5658],[28.72635,4.54469],[28.67499,4.4395],[28.64773,4.42347],[28.60674,4.42113],[28.58246,4.38402],[28.51837,4.37566],[28.45564,4.28788],[28.38193,4.28227],[28.35874,4.35504],[28.27238,4.3566],[28.20661,4.35132],[28.1785,4.38287],[28.14215,4.40346],[28.1436,4.43094],[28.10145,4.44405],[28.08401,4.41608],[28.03542,4.47789],[28.04259,4.54401],[27.94869,4.57803],[27.93332,4.53686],[27.89873,4.5395],[27.79882,4.60753],[27.76927,4.69432],[27.77611,4.78303],[27.7359,4.80139],[27.7254,4.79141],[27.69843,4.79238],[27.7059,4.82363],[27.64942,4.89435],[27.56118,4.89346],[27.50555,4.93274],[27.5124,4.96205],[27.46018,4.99056],[27.44167,5.01922],[27.4514,5.01775],[27.45758,5.05879],[27.45689,5.08],[27.42599,5.10188],[27.41294,5.11488],[27.39852,5.15728],[27.36488,5.17916],[27.34428,5.20173],[27.31132,5.21335],[27.2969,5.23934],[27.29621,5.26464],[27.27493,5.28925],[27.24815,5.34189],[27.25364,5.37198],[27.23373,5.40137],[27.23785,5.44375],[27.2509,5.47383],[27.26326,5.51894],[27.27973,5.54559],[27.27424,5.56746],[27.28385,5.58728],[27.27562,5.59958],[27.2557,5.60368],[27.24128,5.59685],[27.23167,5.61188],[27.23785,5.65151],[27.21656,5.66996],[27.21656,5.69114],[27.19047,5.73077],[27.15065,5.7458],[27.14447,5.75332],[27.16781,5.76425],[27.16507,5.77313],[27.11494,5.78884],[27.10464,5.80387],[27.09571,5.80524],[27.07168,5.79158],[27.04902,5.79772],[27.04353,5.81548],[27.02636,5.81412],[27.02636,5.83461],[27.014,5.85305],[26.98997,5.86125],[26.96044,5.85032],[26.9268,5.87423],[26.91719,5.8954],[26.90071,5.89814],[26.88148,5.88994],[26.85676,5.89199],[26.83685,5.9077],[26.83548,5.94185],[26.82792,5.97326],[26.8135,5.99102],[26.79977,5.98214],[26.79359,5.98965],[26.7723,5.99853],[26.75033,6.01492],[26.72424,6.00741],[26.69403,6.02106],[26.67137,6.00877],[26.65351,6.00741],[26.59584,6.03267],[26.58966,6.02789],[26.5615,6.03745],[26.5512,6.0593],[26.53816,6.07159],[26.5409,6.07842],[26.53198,6.10163],[26.51344,6.11597],[26.48941,6.10573],[26.46194,6.08183],[26.44958,6.09344],[26.44821,6.10914],[26.46675,6.13236],[26.50314,6.15352],[26.5258,6.17605],[26.54022,6.20472],[26.53129,6.22315],[26.51619,6.23339],[26.50177,6.22247],[26.48735,6.22315],[26.47293,6.23612],[26.47361,6.28322],[26.42486,6.30574],[26.39534,6.30847],[26.38572,6.31529],[26.35963,6.35215],[26.32667,6.37398],[26.29646,6.39923],[26.29509,6.41288],[26.31568,6.42926],[26.31637,6.44085],[26.29921,6.44972],[26.31019,6.46815],[26.30264,6.47088],[26.2841,6.46951],[26.29097,6.49134],[26.30744,6.50226],[26.32324,6.50226],[26.32942,6.5084],[26.32324,6.52],[26.32804,6.53705],[26.3507,6.55752],[26.35414,6.58344],[26.35826,6.58821],[26.37817,6.58412],[26.38298,6.58821],[26.38092,6.60595],[26.40632,6.61891],[26.41593,6.62914],[26.41731,6.64619],[26.40426,6.6571],[26.3871,6.66392],[26.35757,6.69325],[26.26213,6.7137],[26.25045,6.74098],[26.20857,6.75326],[26.2017,6.77371],[26.17767,6.79008],[26.17424,6.8153],[26.11312,6.82144],[26.09664,6.83439],[26.08978,6.86166],[26.09184,6.90938],[26.08291,6.91074],[26.06575,6.90256],[26.06506,6.92097],[26.06163,6.92438],[26.04995,6.92097],[26.04034,6.92642],[26.05682,6.94414],[26.04858,6.97004],[26.05545,6.98436],[26.04995,7.00071],[26.03347,7.01094],[25.98403,7.01434],[25.98472,7.03615],[25.93185,7.04297],[25.9188,7.06273],[25.89202,7.07159],[25.90713,7.0859],[25.90026,7.09748],[25.87554,7.10157],[25.85769,7.11043],[25.81306,7.11656],[25.80825,7.12474],[25.81787,7.13359],[25.81443,7.15267],[25.74508,7.16153],[25.73684,7.1806],[25.71762,7.17583],[25.69702,7.19831],[25.6723,7.19423],[25.6414,7.2133],[25.59333,7.21739],[25.59608,7.23919],[25.58509,7.246],[25.57823,7.22693],[25.56724,7.23306],[25.56999,7.25553],[25.55625,7.26371],[25.5439,7.25622],[25.53566,7.28006],[25.5178,7.28346],[25.5075,7.27461],[25.4821,7.27393],[25.47248,7.28346],[25.456,7.28619],[25.45188,7.31139],[25.43609,7.30798],[25.40313,7.33522],[25.39009,7.32841],[25.38322,7.34135],[25.36605,7.34544],[25.35781,7.35293],[25.35026,7.37404],[25.33927,7.42783],[25.30769,7.43124],[25.27885,7.47277],[25.23971,7.47753],[25.22254,7.49387],[25.20263,7.49455],[25.19645,7.51089],[25.20057,7.53608],[25.19371,7.55786],[25.18066,7.56467],[25.17517,7.57828],[25.25001,7.63137],[25.26306,7.62865],[25.28984,7.6443],[25.29533,7.65587],[25.28503,7.6688],[25.30563,7.67084],[25.307,7.68105],[25.2816,7.70146],[25.28366,7.728],[25.29533,7.75113],[25.29121,7.79943],[25.28434,7.80284],[25.26786,7.79739],[25.25894,7.82733],[25.2404,7.84501],[25.22323,7.87154],[25.20538,7.87426],[25.17929,7.90215],[25.16143,7.89534],[25.13671,7.89603],[25.10994,7.8865],[25.08934,7.88854],[25.05638,7.92731],[24.9781,7.98103],[24.95613,8.01503],[24.94171,8.02455],[24.90119,8.06466],[24.89502,8.11633],[24.86068,8.1775],[24.83253,8.18362],[24.79751,8.19382],[24.77897,8.18362],[24.75219,8.18838],[24.7261,8.20877],[24.69039,8.21285],[24.63546,8.23119],[24.57847,8.20877],[24.54002,8.20741],[24.51049,8.21964],[24.47273,8.27129],[24.44595,8.28012],[24.4178,8.28623],[24.402,8.28012],[24.3869,8.26517],[24.3608,8.2577],[24.32098,8.27061],[24.29214,8.27333],[24.22622,8.29031],[24.19532,8.31409],[24.16099,8.36165],[24.15275,8.38067],[24.16099,8.44452],[24.17404,8.48731],[24.19876,8.51379],[24.2173,8.54435],[24.24888,8.57219],[24.2633,8.59527],[24.23446,8.61768],[24.23034,8.63397],[24.24545,8.66248],[24.24614,8.67334],[24.25506,8.68556],[24.25575,8.69167],[24.26193,8.69982],[24.25506,8.70525],[24.22966,8.70525],[24.20219,8.6876],[24.16305,8.70457],[24.14314,8.68488],[24.09164,8.69167],[24.03533,8.70932],[24.00032,8.70049],[23.96392,8.72764],[23.91449,8.729],[23.91174,8.72357],[23.87603,8.71814],[23.8726,8.72153],[23.81012,8.72018],[23.78265,8.7066],[23.77029,8.72289],[23.75656,8.72357],[23.7387,8.71543],[23.72154,8.72289],[23.65013,8.73715],[23.62747,8.75343],[23.6103,8.74733],[23.58009,8.74868],[23.57185,8.72764],[23.5691,8.73036],[23.55674,8.71475],[23.54095,8.72629],[23.51966,8.72425],[23.52241,8.75683],[23.5025,8.77583],[23.51348,8.79618],[23.5073,8.81247],[23.51692,8.82129],[23.51829,8.83622],[23.52928,8.83283],[23.56842,8.8715],[23.57254,8.90203],[23.58902,8.91695],[23.56979,8.94544],[23.5849,8.97257],[23.58558,8.98885],[23.58764,9.00106],[23.58146,9.00173],[23.57734,9.00919],[23.57528,9.01733],[23.55606,9.00987],[23.54919,8.99292],[23.54988,8.98546],[23.54576,8.98342],[23.53477,8.96715],[23.51074,8.96715],[23.48808,8.97189],[23.48739,8.98003],[23.47503,8.98478],[23.45855,8.98546],[23.45924,9.00648],[23.44001,9.02004],[23.44757,9.03632],[23.45443,9.03632],[23.45924,9.05056],[23.45375,9.05666],[23.46885,9.0926],[23.46885,9.14141],[23.48602,9.15633],[23.48602,9.1726],[23.49975,9.18073],[23.49975,9.18751],[23.51554,9.18683],[23.52241,9.1787],[23.53752,9.17666],[23.55194,9.18344],[23.59245,9.22004],[23.60961,9.22614],[23.61236,9.2519],[23.62472,9.27291],[23.63502,9.27358],[23.64738,9.26816],[23.65562,9.28714],[23.63914,9.31831],[23.63433,9.33118],[23.6412,9.33796],[23.63777,9.35557],[23.63845,9.37725],[23.64669,9.38132],[23.64669,9.39961],[23.65974,9.40638],[23.67691,9.43754],[23.6721,9.45719],[23.65837,9.45922],[23.6412,9.44431],[23.62884,9.48157],[23.63914,9.50527],[23.63914,9.53574],[23.64395,9.54184],[23.62815,9.54861],[23.62953,9.55877],[23.69613,9.67183],[23.67073,9.89174],[23.30243,10.47076],[23.29376,10.48713],[23.27247,10.49523],[23.26423,10.50266],[23.24363,10.53507],[23.20175,10.55802],[23.18733,10.57692],[23.16673,10.58637],[23.15506,10.60392],[23.14888,10.62349],[23.0754,10.66803],[23.04931,10.69164],[23.01361,10.70649],[23.00193,10.70716],[22.97721,10.78069],[22.91748,10.85286],[22.90374,10.87781],[22.87422,10.90748],[22.87284,10.93647],[22.92984,11.09149],[22.92915,11.10159],[22.9882,11.22083],[22.97859,11.30568],[22.93602,11.32386],[22.94288,11.42686],[22.83027,11.41878],[22.78564,11.40801],[22.78701,11.45176],[22.75955,11.47867],[22.74169,11.48675],[22.65792,11.51434],[22.60849,11.56681],[22.56042,11.63206],[22.55493,11.70401],[22.58239,11.85323],[22.63183,12.0514],[22.64144,12.06886],[22.6332,12.07423],[22.62908,12.06953],[22.61741,12.0561],[22.60093,12.06148],[22.59201,12.06685],[22.57965,12.05812],[22.56454,12.05745],[22.55836,12.05275],[22.54463,12.06416],[22.51373,12.03864],[22.50137,12.03663],[22.49725,12.03193],[22.47802,12.03327],[22.47528,12.04737],[22.47528,12.05543],[22.48077,12.06483],[22.47802,12.06819],[22.48008,12.07356],[22.48558,12.06953],[22.48489,12.07692],[22.47802,12.07826],[22.48695,12.08229],[22.48489,12.08968],[22.48352,12.09572],[22.48626,12.09975],[22.48489,12.10512],[22.49176,12.11116],[22.4897,12.11788],[22.49244,12.1219],[22.49588,12.15748],[22.49519,12.16621],[22.48901,12.17359],[22.49382,12.18366],[22.48558,12.19507],[22.4842,12.20782],[22.47871,12.20916],[22.48008,12.2152],[22.4739,12.21856],[22.47596,12.22594],[22.47322,12.24003],[22.46635,12.23466],[22.46154,12.23668],[22.46017,12.24137],[22.46704,12.24339],[22.45742,12.25479],[22.45605,12.26285],[22.45193,12.26218],[22.44781,12.26553],[22.45193,12.27895],[22.443,12.28096],[22.44026,12.28633],[22.44918,12.29908],[22.43957,12.31316],[22.44026,12.32256],[22.43133,12.3239],[22.43614,12.33061],[22.43064,12.33866],[22.4327,12.34402],[22.42652,12.35341],[22.43133,12.35542],[22.43064,12.35945],[22.41897,12.36079],[22.42103,12.3675],[22.42927,12.36683],[22.42446,12.37622],[22.43476,12.37756],[22.42996,12.39097],[22.41897,12.39768],[22.41142,12.40975],[22.40455,12.4131],[22.40318,12.42249],[22.39151,12.43188],[22.38258,12.42718],[22.37022,12.43389],[22.36473,12.44864],[22.38739,12.46205],[22.39151,12.48082],[22.40249,12.49021],[22.41348,12.50295],[22.41416,12.51099],[22.4382,12.51501],[22.43888,12.53646],[22.43545,12.54316],[22.4382,12.55255],[22.443,12.55054],[22.47596,12.63296],[22.32971,12.68254],[22.2013,12.75756],[22.20062,12.71268],[22.15255,12.67048],[21.94587,12.63095],[21.93969,12.63363],[21.93832,12.64636],[21.92871,12.65172],[21.92596,12.66378],[21.91154,12.67517],[21.88888,12.68522],[21.88613,12.69661],[21.88545,12.71067],[21.85318,12.73278],[21.86004,12.75622],[21.85661,12.77497],[21.8367,12.78233],[21.82983,12.79774],[21.81541,12.80309],[21.8161,12.81581],[21.8264,12.82586],[21.84219,12.83054],[21.85043,12.85464],[21.85661,12.88945],[21.87034,12.90686],[21.88064,12.92493],[21.8827,12.94701],[21.90193,12.99452],[21.93351,13.01927],[21.93283,13.02462],[21.92871,13.02596],[21.92665,13.05004],[21.9445,13.07212],[21.96991,13.07145],[21.9802,13.07747],[21.98089,13.08683],[21.98913,13.09954],[22.01179,13.12495],[22.00836,13.141],[22.02209,13.14501],[22.02758,13.14167],[22.0784,13.14635],[22.07771,13.15705],[22.09281,13.16774],[22.11067,13.16239],[22.13401,13.16975],[22.13882,13.17911],[22.14637,13.18312],[22.14981,13.20117],[22.16491,13.21053],[22.16835,13.22189],[22.17933,13.22657],[22.18071,13.2513],[22.20199,13.26066],[22.20748,13.27403],[22.22122,13.27603],[22.2219,13.28405],[22.23701,13.30276],[22.24937,13.30276],[22.25349,13.31078],[22.248,13.31679],[22.26173,13.32348],[22.26516,13.3335],[22.28302,13.34218],[22.27958,13.3482],[22.28988,13.35555],[22.28576,13.37225],[22.2892,13.37626],[22.27478,13.39629],[22.26104,13.40965],[22.24594,13.41233],[22.23907,13.42168],[22.24388,13.43236],[22.23701,13.43971],[22.23358,13.44973],[22.22671,13.45039],[22.2171,13.46842],[22.22053,13.48044],[22.21847,13.50448],[22.21298,13.50915],[22.21778,13.52518],[22.21641,13.55789],[22.18757,13.58993],[22.17109,13.59393],[22.17041,13.59994],[22.15667,13.61996],[22.14981,13.62129],[22.14225,13.63531],[22.14363,13.64798],[22.13539,13.65199],[22.12715,13.65933],[22.11616,13.68735],[22.12234,13.69269],[22.13127,13.70736],[22.13195,13.71603],[22.12715,13.72004],[22.12371,13.73671],[22.10723,13.75205],[22.09556,13.75672],[22.08663,13.77006],[22.07222,13.77673],[22.20474,13.92007],[22.20886,13.92073],[22.21092,13.93473],[22.22053,13.93606],[22.21435,13.95006],[22.22671,13.96272],[22.2583,13.96139],[22.26242,13.96871],[22.29606,13.97538],[22.31597,14.01469],[22.36198,14.02468],[22.39357,14.05665],[22.43957,14.05599],[22.48764,14.10727],[22.53913,14.11726],[22.5769,14.1905],[22.55081,14.2098],[22.54806,14.22045],[22.55149,14.22578],[22.55149,14.22911],[22.55699,14.23576],[22.50549,14.24641],[22.48901,14.25107],[22.47665,14.24574],[22.42515,14.29499],[22.43339,14.32094],[22.44506,14.32293],[22.45742,14.33424],[22.46086,14.34489],[22.43888,14.37482],[22.43614,14.4114],[22.44369,14.4872],[22.4279,14.50183],[22.39563,14.51911],[22.38807,14.51047],[22.38258,14.51446],[22.41004,14.60617],[22.443,14.60816],[22.46429,14.62943],[22.51304,14.64537],[22.57896,14.65135],[22.71698,14.69785],[22.71354,14.72707],[22.66891,14.85188],[22.67921,14.87577],[22.70805,14.89568],[22.73826,14.89767],[22.75817,14.90763],[22.7465,14.93881],[22.75131,14.96999],[22.76779,14.97795],[22.77122,14.98922],[22.78083,14.9932],[22.79869,15.01973],[22.80899,15.02438],[22.81311,15.03698],[22.8543,15.05422],[22.86117,15.07543],[22.88932,15.09201],[22.92778,15.09466],[22.94151,15.11455],[22.92846,15.15034],[22.93396,15.15829],[22.93533,15.16956],[22.95593,15.17818],[22.98065,15.19806],[22.98408,15.21661],[22.98751,15.2239],[23.00056,15.22787],[23.00468,15.23847],[22.98545,15.26033],[22.98683,15.28484],[23.00056,15.3014],[23.00262,15.32392],[22.99163,15.33451],[22.99644,15.35107],[22.98614,15.37821],[22.99026,15.38483],[22.98751,15.40867],[22.97241,15.43382],[22.93533,15.46029],[22.91954,15.47221],[22.91816,15.49404],[22.92778,15.51786],[22.92434,15.54697],[22.93808,15.56549],[22.99369,15.586],[23.01361,15.61113],[23.04107,15.62766],[23.04451,15.6475],[23.08021,15.66866],[23.08364,15.67725],[23.09394,15.6832],[23.09806,15.69642],[23.11248,15.70237],[23.11523,15.71757],[23.15231,15.72154],[23.16398,15.71493],[23.18183,15.71361],[23.21342,15.71559],[23.24638,15.70171],[23.2711,15.70501],[23.29513,15.69973],[23.31642,15.68915],[23.39332,15.69907],[23.42285,15.6984],[23.42971,15.71361],[23.48877,15.74335],[23.59108,15.7645],[23.67828,15.76251],[23.73458,15.74798],[23.75518,15.75062],[23.77235,15.75062],[23.7854,15.74335],[23.80737,15.74401],[23.83483,15.73872],[23.85887,15.74203],[23.87809,15.73079],[23.89869,15.72881],[23.91929,15.7189],[23.93783,15.7222],[23.96186,15.72022],[23.98178,15.70634],[24,15.6988],[24,19.5],[19.75841,21.70326],[18.5992,22.2463],[18.03325,22.50956],[18.01083,22.51362],[17.99974,22.51499],[16.93737,23.01308],[15.99997,23.44922],[14.1894,22.64545],[13.79011,22.97882],[13.76653,23.0027],[13.61797,23.11379],[13.56143,23.1478],[13.50089,23.1768],[13.41288,23.21085],[12,23.49999],[11.60295,24.26581],[11.42324,24.19938],[11.13152,24.39394],[11.04608,24.4262],[11.02952,24.45552],[10.9855,24.48733],[10.95514,24.52847],[10.9085,24.55253],[10.88108,24.55662],[10.84813,24.567],[10.81519,24.5649],[10.7946,24.54156],[10.79873,24.52822],[10.77129,24.50902],[10.73836,24.5373],[10.72362,24.57057],[10.63472,24.56886],[10.61449,24.57215],[10.60163,24.5613],[10.5888,24.55172],[10.58695,24.53964],[10.56954,24.54046],[10.54965,24.53314],[10.48032,24.5383],[10.43434,24.53347],[10.35265,24.53364],[10.33247,24.56763],[10.30316,24.59213],[10.28757,24.59913],[10.26856,24.61863],[10.21658,24.64812],[10.19894,24.68384],[10.19778,24.6971],[10.13682,24.80751],[10.10908,24.83902],[10.10058,24.87802],[10.07479,24.90936],[10.06464,24.92877],[10.04076,24.95565],[10.02842,25.35397],[9.39967,26.19533],[9.44009,26.24675],[9.50524,26.37698],[9.8635,26.51679],[9.9143,26.6447],[9.90193,26.74314],[9.93075,26.85787],[9.91238,26.86878],[9.90087,26.88337],[9.8928,26.89979],[9.87847,26.90678],[9.86138,26.93091],[9.86078,26.94234],[9.85606,26.95377],[9.83975,27.02068],[9.84052,27.05199],[9.83168,27.06618],[9.83382,27.07975],[9.8291,27.10189],[9.82301,27.11956],[9.81691,27.13357],[9.81846,27.1457],[9.80163,27.16567],[9.80232,27.1829],[9.79614,27.20013],[9.79476,27.22483],[9.78103,27.26418],[9.79407,27.30992],[9.79749,27.34956],[9.7877,27.35145],[9.80263,27.39115],[9.81481,27.40921],[9.81198,27.43865],[9.82013,27.44738],[9.81472,27.45793],[9.82575,27.47112],[9.82854,27.48432],[9.86716,27.50421],[9.86938,27.53079],[9.87985,27.55738],[9.8262,27.55896],[9.81787,27.56662],[9.82396,27.57551],[9.86851,27.58317],[9.89486,27.60908],[9.91764,27.66036],[9.92766,27.67323],[9.92807,27.69705],[9.94506,27.73065],[9.94522,27.84578],[9.96324,27.85888],[9.96632,27.88144],[9.83204,28.29156],[9.9065,28.75004],[9.88056,28.98174],[9.7887,29.40556],[9.54303,29.89505],[9.42019,30.03021],[9.39624,30.16537],[9.95379,30.38572],[10.18176,30.66292],[10.30673,30.86757],[10.28887,31.08164],[10.12133,31.48158],[10.33007,31.73043],[10.53881,31.74551],[10.63563,31.86921],[10.62258,31.90892],[10.65348,31.97193],[10.72833,31.96037],[10.8121,32.01189],[10.88488,32.1193],[11.14169,32.26614],[11.37652,32.32935],[11.5935,32.44655],[11.59625,32.52464],[11.51522,32.59611],[11.48913,32.66757],[11.49462,32.92105],[11.5523,33.12608],[11.56604,33.24828],[13.27007,36],[14,35],[19,35],[34.21791,31.32478],[34.22669,31.3107],[34.23552,31.29648],[34.2399,31.29595],[34.33229,31.03996],[34.33949,31.02413],[34.3467,31.00636],[34.40336,30.85926],[34.49696,30.67964],[34.51879,30.59244],[34.51661,30.54656],[34.51856,30.53254],[34.55755,30.4948],[34.54177,30.44205],[34.54343,30.413],[34.61145,30.37105],[34.63467,30.30857],[34.65091,30.26546],[34.70673,30.11771],[34.7338,30.05372],[34.74782,30.02018],[34.75522,29.99713],[34.76407,29.97368],[34.7683,29.96163],[34.77555,29.94155],[34.78297,29.91918],[34.78856,29.90604],[34.79428,29.89025],[34.80254,29.8691],[34.81424,29.84198],[34.82597,29.80722],[34.84856,29.75875],[34.84986,29.74641],[34.85654,29.68794],[34.87857,29.64361],[34.87697,29.61328],[34.86964,29.60215],[34.8663,29.59725],[34.86709,29.59545],[34.87259,29.57943],[34.87843,29.54342],[34.88485,29.52762],[34.89535,29.51258],[34.90361,29.49353],[34.90225,29.49005],[34.89532,29.3726],[34.45861,27.95801],[34.40918,27.33273],[39.6967,18.538]]]}},{"type":"Feature","properties":{"cq_zone_name":"Central Zone of Africa","cq_zone_number":35,"cq_zone_name_loc":[15,-6]},"geometry":{"type":"Polygon","coordinates":[[[-26,20.5],[-17.05,20.5],[-17.05038,20.76998],[-17.0569,20.80244],[-17.06752,20.83341],[-17.06233,20.85494],[-17.06873,20.89532],[-17.05593,20.91959],[-17.03724,20.99007],[-17.03943,21.0346],[-16.99578,21.13282],[-16.9914,21.17069],[-16.93657,21.33373],[-13.00083,21.33402],[-13.02873,22.01325],[-13.07929,22.52085],[-13.15029,22.76029],[-13.10962,22.86868],[-13.10807,22.93528],[-13.01487,23.01074],[-12.58201,23.2717],[-12.3658,23.31703],[-12.13921,23.4204],[-12.00119,23.45253],[-12.00086,26.00057],[-8.66761,26.00058],[-8.66762,27.31589],[-4.85704,25.0159],[-3.72807,24.28551],[1.16658,21.1163],[1.19058,20.99261],[1.19109,20.94114],[1.15863,20.74085],[1.18773,20.72156],[1.22781,20.72796],[1.32282,20.7395],[1.3574,20.67141],[1.59766,20.59637],[1.66322,20.53259],[1.67385,20.40193],[1.81356,20.2918],[1.88736,20.28986],[1.91653,20.22541],[1.94896,20.25246],[1.97698,20.25922],[2.005,20.24537],[2.04457,20.2692],[2.1237,20.23697],[2.18523,20.26982],[2.20832,20.31812],[2.25122,20.30522],[2.30768,20.27479],[2.30371,20.23406],[2.35742,20.19591],[2.35956,20.16137],[2.40564,20.13198],[2.39281,20.10204],[2.37746,20.09675],[2.38547,20.06437],[2.3749,20.02771],[2.39729,20.04135],[2.39706,20.06315],[2.41204,20.07469],[2.4339,20.0772],[2.4482,20.08745],[2.45701,20.08867],[2.46581,20.0957],[2.47325,20.09628],[2.48067,20.08504],[2.4977,20.09316],[2.50993,20.08772],[2.51941,20.0939],[2.52689,20.08199],[2.53713,20.06235],[2.55148,20.0556],[2.55522,20.03997],[2.56171,20.03337],[2.59667,20.03243],[2.60278,20.04439],[2.62469,20.05377],[2.6377,20.04814],[2.63528,20.0408],[2.66085,20.05326],[2.66449,20.05186],[2.66677,20.05949],[2.6711,20.0768],[2.66914,20.08416],[2.68053,20.0988],[2.68642,20.09797],[2.69937,20.08355],[2.69883,20.07123],[2.73125,19.99699],[2.82616,19.96468],[2.8936,19.96334],[2.97443,19.95002],[3.01251,19.93371],[3.03507,19.91543],[3.09197,19.89844],[3.11561,19.87865],[3.13376,19.87306],[3.14946,19.85801],[3.19802,19.84148],[3.23741,19.84161],[3.25689,19.83463],[3.26354,19.81648],[3.2472,19.79353],[3.24735,19.768],[3.24612,19.74377],[3.23116,19.70919],[3.23363,19.67444],[3.25533,19.63711],[3.23007,19.59995],[3.23667,19.56294],[3.26524,19.52851],[3.24986,19.49926],[3.26744,19.44931],[3.2591,19.43548],[3.20682,19.42942],[3.1971,19.39098],[3.17915,19.3629],[3.18592,19.32769],[3.20367,19.30803],[3.19798,19.27649],[3.12754,19.18359],[3.11479,19.13998],[3.23896,19.05925],[3.28732,19.02019],[3.29941,18.99938],[3.33347,18.99157],[3.35764,18.96814],[5.81301,19.44323],[7.45937,20.84341],[12,23.49999],[13.41288,23.21085],[13.50089,23.1768],[13.56143,23.1478],[13.61797,23.11379],[13.76653,23.0027],[13.79011,22.97882],[14.1894,22.64545],[14.99767,23.00427],[15.19752,21.99847],[15.19994,21.49606],[15.28202,21.45203],[15.48187,20.99663],[15.50754,20.97375],[15.50252,20.9636],[15.49475,20.95088],[15.4806,20.90365],[15.42213,20.87259],[15.40937,20.84038],[15.42565,20.79667],[15.52296,20.73115],[15.52894,20.70027],[15.54316,20.68737],[15.59632,20.60505],[15.60005,20.58699],[15.59553,20.56892],[15.62289,20.53851],[15.67914,20.53102],[15.71067,20.50809],[15.72161,20.48066],[15.74078,20.45838],[15.7599,20.46013],[15.99843,20.36163],[15.75588,19.94567],[15.66698,19.31669],[15.59181,18.79144],[15.53348,16.74936],[14.99431,16.27434],[14.64876,15.99965],[14.39523,15.74564],[14.23537,15.536],[14.08101,15.3171],[14.00001,15.20149],[13.9705,15.16357],[13.87233,15.05209],[13.78997,14.87381],[13.79616,14.79729],[13.8106,14.73139],[13.77336,14.70155],[13.7471,14.70359],[13.67415,14.64187],[13.69459,14.62],[13.69289,14.55899],[13.63436,14.51253],[13.57308,14.51393],[13.50102,14.48495],[13.47015,14.46395],[13.4712,14.41127],[13.63293,13.71035],[14.0835,13.08413],[14.20167,12.53671],[14.19995,12.50047],[14.18176,12.47765],[14.19104,12.43739],[14.17645,12.41592],[14.21404,12.36763],[14.33971,12.36625],[14.46537,12.35682],[14.54229,12.28164],[14.55534,12.23466],[14.59311,12.22526],[14.61371,12.18902],[14.66453,12.19573],[14.68177,12.15968],[14.65505,12.13974],[14.65269,12.11701],[14.63658,12.09429],[14.65656,12.0663],[14.62786,12.05731],[14.62113,12.03354],[14.65739,11.96],[14.6408,11.93451],[14.6407,11.9144],[14.60479,11.8688],[14.61262,11.78299],[14.55137,11.71889],[14.59735,11.6969],[14.64334,11.65608],[14.64538,11.5776],[14.62306,11.54778],[14.61996,11.51526],[14.51556,11.474],[14.4661,11.42914],[14.43038,11.41658],[14.33696,11.33695],[14.23805,11.29233],[14.22565,11.27061],[14.18442,11.2381],[14.14799,11.24836],[14.10575,11.26695],[14.08822,11.26938],[13.97554,11.31682],[13.94049,11.21963],[13.87659,11.1359],[13.7955,11.00888],[13.73408,11.00349],[13.71573,10.9536],[13.72852,10.92327],[13.71432,10.85821],[13.65068,10.80933],[13.62684,10.7129],[13.57921,10.68088],[13.57829,10.62024],[13.56547,10.61826],[13.57462,10.55689],[13.59201,10.5247],[13.57678,10.51106],[13.53957,10.50823],[13.53608,10.47981],[13.51336,10.43518],[13.54207,10.37023],[13.51916,10.27002],[13.49947,10.2483],[13.50175,10.20765],[13.47755,10.1936],[13.45609,10.17145],[13.42417,10.15147],[13.43404,10.14411],[13.43018,10.11783],[13.39774,10.13285],[13.39826,10.12083],[13.36857,10.11422],[13.35227,10.10491],[13.33871,10.11723],[13.30867,10.10251],[13.29512,10.07427],[13.29547,10.05158],[13.24913,10.03431],[13.25222,9.99779],[13.27987,9.98629],[13.28678,9.97462],[13.27995,9.93861],[13.26356,9.92881],[13.23481,9.91764],[13.24726,9.86049],[13.26666,9.8517],[13.30529,9.82803],[13.26701,9.78813],[13.21074,9.55277],[13.02469,9.50186],[12.97424,9.46016],[12.93477,9.41303],[12.85382,9.36812],[12.87425,9.3452],[12.89469,9.35208],[12.91238,9.35626],[12.92732,9.33604],[12.91149,9.30997],[12.91213,9.24053],[12.88733,9.14637],[12.89343,9.11525],[12.88579,9.07058],[12.86786,9.01915],[12.82181,8.97173],[12.81147,8.92432],[12.80648,8.84953],[12.81523,8.83174],[12.78328,8.7473],[12.71938,8.76028],[12.70787,8.73536],[12.6991,8.67243],[12.67883,8.64704],[12.65221,8.64927],[12.61186,8.63793],[12.59982,8.59353],[12.50474,8.64222],[12.43437,8.6203],[12.46223,8.5376],[12.33627,8.44946],[12.34196,8.43052],[12.31194,8.42244],[12.2986,8.44432],[12.26307,8.44764],[12.24558,8.38363],[12.25,8.16731],[12.19316,8.11354],[12.20773,7.9673],[12.07345,7.79448],[12.05575,7.74345],[11.9996,7.67337],[12.01976,7.52255],[11.91632,7.46432],[11.92926,7.43682],[11.92572,7.38754],[11.88412,7.36358],[11.88097,7.32328],[11.84447,7.26446],[11.88133,7.24356],[11.85856,7.21267],[11.86228,7.14818],[11.88248,7.10549],[11.86787,7.08182],[11.82714,7.08272],[11.78916,7.06454],[11.77726,7.04499],[11.726,7.04885],[11.65962,6.99598],[11.62621,6.98399],[11.60515,6.91749],[11.56853,6.89787],[11.55663,6.85643],[11.57623,6.84423],[11.58191,6.81631],[11.59583,6.7993],[11.57199,6.78775],[11.58385,6.73801],[11.55538,6.71218],[11.55201,6.67142],[11.52286,6.64285],[11.51843,6.61429],[11.49171,6.60184],[11.4595,6.60575],[11.4198,6.59721],[11.4324,6.54876],[11.42304,6.53169],[11.36311,6.52619],[11.35853,6.50265],[11.32375,6.50367],[11.28027,6.53572],[11.2416,6.52343],[11.22089,6.53912],[11.20018,6.5357],[11.20112,6.5123],[11.13751,6.50391],[11.13939,6.53078],[11.11655,6.51399],[11.09371,6.52176],[11.09573,6.67836],[11.06342,6.71627],[11.03215,6.71204],[11.00638,6.69689],[10.97718,6.68584],[10.94816,6.68986],[10.91639,6.70753],[10.91429,6.76453],[10.89297,6.76699],[10.87665,6.79624],[10.84926,6.80814],[10.82462,6.82549],[10.81945,6.85399],[10.84203,6.93183],[10.79839,6.96258],[10.7546,6.96432],[10.66404,7.04425],[10.64414,7.04584],[10.60502,7.0665],[10.59886,7.13759],[10.57622,7.16234],[10.56729,7.14355],[10.55287,6.99393],[10.53226,6.92365],[10.49518,6.91744],[10.489,6.89525],[10.46634,6.91941],[10.21638,6.88641],[10.17788,6.94035],[10.1751,7.00246],[10.15308,7.04003],[9.8654,6.77597],[9.78043,6.79245],[9.70773,6.51288],[9.5986,6.52589],[9.58285,6.47614],[9.52123,6.44219],[9.46785,6.45191],[9.43148,6.31767],[9.34453,6.35548],[9.33378,6.29464],[9.30655,6.25837],[9.26583,6.18036],[9.21322,6.17042],[9.16906,6.13541],[9.15237,6.09494],[9.05718,6.00718],[9.04781,5.99616],[8.94505,5.91412],[8.91531,5.90029],[8.90478,5.8625],[8.87812,5.8592],[8.84047,5.82311],[8.85226,5.79932],[8.88602,5.80012],[8.88099,5.77052],[8.851,5.7079],[8.8375,5.70267],[8.84277,5.67855],[8.90572,5.62163],[8.919,5.56791],[8.87141,5.48783],[8.8325,5.43275],[8.84579,5.38587],[8.83413,5.32886],[8.8132,5.28122],[8.81372,5.21911],[8.82085,5.18122],[8.78321,5.11578],[8.74654,5.10221],[8.72433,5.05778],[8.72009,5.03693],[8.68563,5.00514],[8.69775,4.98807],[8.6736,4.9727],[8.66839,4.94859],[8.65219,4.9409],[8.651,4.91401],[8.63332,4.90628],[8.62174,4.90446],[8.59916,4.87255],[8.61994,4.8525],[8.63454,4.82219],[8.59514,4.80429],[8.54751,4.80009],[8.52502,4.7643],[8.5282,4.7293],[8.54511,4.71346],[4,0],[-26,0],[-26,20.5]]]}},{"type":"Feature","properties":{"cq_zone_name":"Equatorial Zone of Africa","cq_zone_number":36,"cq_zone_name_loc":[-5,-6]},"geometry":{"type":"Polygon","coordinates":[[[-26,-17],[11.5,-17],[11.75845,-17.25328],[11.77552,-17.25938],[11.79396,-17.27467],[11.79881,-17.26772],[11.80846,-17.26864],[11.81243,-17.26451],[11.81674,-17.26464],[11.82,-17.26209],[11.82146,-17.25803],[11.82361,-17.25495],[11.831,-17.24248],[11.83436,-17.23853],[11.83755,-17.23605],[11.84612,-17.23567],[11.84954,-17.24218],[11.85489,-17.23962],[11.85818,-17.24133],[11.86116,-17.23409],[11.8697,-17.23289],[11.88437,-17.22491],[11.89174,-17.21026],[11.89768,-17.20707],[11.90053,-17.20651],[11.90184,-17.20414],[11.9052,-17.20439],[11.909,-17.20202],[11.91039,-17.19965],[11.91763,-17.19622],[11.92169,-17.19643],[11.92368,-17.19468],[11.93213,-17.19051],[11.93834,-17.18454],[11.94318,-17.18054],[11.94777,-17.18035],[11.95109,-17.18157],[11.95579,-17.18213],[11.95877,-17.17965],[11.96037,-17.17685],[11.96324,-17.17486],[11.97418,-17.17672],[11.9834,-17.17268],[11.98678,-17.17273],[11.99586,-17.17112],[11.99909,-17.16853],[12.00741,-17.16601],[12.01778,-17.16055],[12.02236,-17.16192],[12.02558,-17.1564],[12.03423,-17.15077],[12.05801,-17.15572],[12.08179,-17.14229],[12.10462,-17.16005],[12.1181,-17.15713],[12.13158,-17.16732],[12.14781,-17.16045],[12.16128,-17.16146],[12.17579,-17.17789],[12.1824,-17.19628],[12.19485,-17.19729],[12.19941,-17.20814],[12.21082,-17.21898],[12.21688,-17.21785],[12.2298,-17.22458],[12.23435,-17.2351],[12.25362,-17.24069],[12.26259,-17.23251],[12.27069,-17.23275],[12.28429,-17.24217],[12.29568,-17.23412],[12.30983,-17.23492],[12.31779,-17.22851],[12.32747,-17.22915],[12.33234,-17.22586],[12.34374,-17.22387],[12.3517,-17.21861],[12.35925,-17.22918],[12.37023,-17.23384],[12.37364,-17.22678],[12.38667,-17.21873],[12.3942,-17.22117],[12.39325,-17.21346],[12.39642,-17.20771],[12.40851,-17.20721],[12.41579,-17.2113],[12.42102,-17.2131],[12.4235,-17.20768],[12.43601,-17.22275],[12.43055,-17.24031],[12.43745,-17.24475],[12.44023,-17.25051],[12.43615,-17.26282],[12.44714,-17.26342],[12.45263,-17.25484],[12.46156,-17.25806],[12.46912,-17.25472],[12.47771,-17.25072],[12.4808,-17.24279],[12.4942,-17.24798],[12.51034,-17.2453],[12.52425,-17.24813],[12.53292,-17.24253],[12.53593,-17.2461],[12.54181,-17.24797],[12.5422,-17.24296],[12.54378,-17.23926],[12.5531,-17.24063],[12.55954,-17.2414],[12.56495,-17.2438],[12.56461,-17.23938],[12.56873,-17.23734],[12.57182,-17.23529],[12.57852,-17.2281],[12.5813,-17.23043],[12.59094,-17.23177],[12.59679,-17.23572],[12.59921,-17.23213],[12.60197,-17.22903],[12.6061,-17.23118],[12.60862,-17.2267],[12.60564,-17.21632],[12.61102,-17.20934],[12.61723,-17.20625],[12.62172,-17.20678],[12.62622,-17.20599],[12.63174,-17.20291],[12.6322,-17.199],[12.63746,-17.19871],[12.64421,-17.19746],[12.64665,-17.19442],[12.64685,-17.19055],[12.65597,-17.18538],[12.65841,-17.18594],[12.66297,-17.18258],[12.66542,-17.18139],[12.66616,-17.17954],[12.66901,-17.17502],[12.67357,-17.17215],[12.67738,-17.17345],[12.68015,-17.1764],[12.68464,-17.17299],[12.68879,-17.1722],[12.69466,-17.16993],[12.69984,-17.16865],[12.70573,-17.17315],[12.71334,-17.17174],[12.71435,-17.1594],[12.72359,-17.15624],[12.73421,-17.15112],[12.73659,-17.146],[12.76332,-17.1397],[12.77907,-17.12158],[12.80511,-17.11593],[12.81056,-17.1011],[12.82356,-17.08495],[12.83555,-17.08869],[12.84617,-17.07799],[12.87241,-17.06622],[12.87118,-17.05839],[12.8727,-17.04794],[12.8907,-17.04405],[12.90336,-17.03693],[12.90763,-17.02877],[12.91499,-17.0216],[12.92261,-17.02166],[12.92887,-17.01976],[12.93941,-17.01851],[12.9428,-17.02019],[12.94772,-17.01809],[12.94392,-17.01231],[12.94808,-17.00984],[12.95327,-17.01032],[12.96261,-17.01031],[12.96619,-17.00075],[12.96668,-16.9912],[12.97019,-16.98987],[12.97541,-16.99018],[12.98363,-16.98211],[13.01969,-16.98191],[13.02794,-16.97712],[13.03245,-16.97724],[13.03711,-16.98157],[13.04417,-16.97998],[13.0516,-16.98059],[13.06289,-16.97289],[13.07667,-16.97564],[13.08305,-16.97569],[13.0873,-16.97719],[13.09053,-16.98032],[13.09715,-16.97936],[13.09972,-16.97792],[13.1016,-16.97484],[13.10898,-16.97242],[13.12151,-16.96901],[13.14055,-16.9653],[13.146,-16.96552],[13.15145,-16.96705],[13.15514,-16.96452],[13.16102,-16.96523],[13.16518,-16.96528],[13.16938,-16.96341],[13.17646,-16.97255],[13.17982,-16.97384],[13.18113,-16.97152],[13.18638,-16.96928],[13.19953,-16.97393],[13.2008,-16.9776],[13.19898,-16.97996],[13.19751,-16.98198],[13.19809,-16.98467],[13.20097,-16.98904],[13.2042,-16.98916],[13.21943,-16.98632],[13.22375,-16.98462],[13.23219,-16.98621],[13.23686,-16.9878],[13.24118,-16.993],[13.23842,-16.99606],[13.24699,-17.00012],[13.25076,-16.99869],[13.25316,-16.99629],[13.25487,-16.99388],[13.25795,-16.99279],[13.27131,-16.99941],[13.28091,-16.99468],[13.2864,-16.9929],[13.2945,-16.99088],[13.30157,-16.98821],[13.30926,-16.98795],[13.31524,-16.98572],[13.32959,-16.98291],[13.34342,-16.9773],[13.3512,-16.97417],[13.35383,-16.97432],[13.36241,-16.97953],[13.3703,-16.98146],[13.37923,-16.98305],[13.38678,-16.98859],[13.39081,-16.99062],[13.39416,-16.99594],[13.39879,-16.99671],[13.40857,-16.9988],[13.41767,-16.99761],[13.42813,-17.00159],[13.44341,-17.00951],[13.46366,-17.0109],[13.46847,-17.02095],[13.4767,-17.02575],[13.47773,-17.0335],[13.48425,-17.03797],[13.49815,-17.06866],[13.52097,-17.09016],[13.52169,-17.10029],[13.52274,-17.10699],[13.52105,-17.11305],[13.51731,-17.12088],[13.50808,-17.12609],[13.51104,-17.1354],[13.53312,-17.14465],[13.54244,-17.14731],[13.55108,-17.1539],[13.5927,-17.17909],[13.61553,-17.20009],[13.63835,-17.20929],[13.66393,-17.23554],[13.68427,-17.24866],[13.69499,-17.24736],[13.71661,-17.26641],[13.73755,-17.26973],[13.76063,-17.2868],[13.77629,-17.29402],[13.78509,-17.30387],[13.82396,-17.32618],[13.83746,-17.32848],[13.84821,-17.33734],[13.85758,-17.34291],[13.87245,-17.34325],[13.8873,-17.35933],[13.89884,-17.36213],[13.9053,-17.37074],[13.91725,-17.37804],[13.9154,-17.38641],[13.92866,-17.39741],[13.93151,-17.40519],[13.92612,-17.41167],[13.95655,-17.43381],[13.98023,-17.42736],[13.98744,-17.43533],[14.00013,-17.43085],[14.00442,-17.42075],[14.01283,-17.41458],[14.03789,-17.42365],[14.04373,-17.42092],[14.05231,-17.42736],[14.07737,-17.43511],[14.10208,-17.43948],[14.11581,-17.42419],[14.1249,-17.43609],[14.14224,-17.42965],[14.15133,-17.42779],[14.1618,-17.41676],[14.18685,-17.41239],[14.19861,-17.41425],[14.21311,-17.41086],[14.21319,-17.40158],[14.21877,-17.3923],[18.42042,-17.38975],[18.47721,-17.45228],[18.48088,-17.47831],[18.51293,-17.49396],[18.54818,-17.55416],[18.56855,-17.58164],[18.60071,-17.5823],[18.62778,-17.6088],[18.61639,-17.63008],[18.7336,-17.71359],[18.87278,-17.81281],[19.09848,-17.8375],[19.13992,-17.81325],[19.31994,-17.84295],[19.62419,-17.86826],[19.75243,-17.90596],[19.85871,-17.86001],[20.13717,-17.91449],[20.31869,-17.86542],[20.38816,-17.89708],[20.45448,-17.91095],[20.47411,-17.94573],[20.50416,-17.95205],[20.54246,-17.98189],[20.6012,-17.97755],[20.65307,-17.98106],[20.70769,-18.01591],[20.75681,-18.0168],[20.83615,-18.03859],[20.96461,-17.96723],[21.21055,-17.92899],[21.3088,-17.98042],[21.42353,-18.02662],[23.4332,-17.63747],[23.43423,-17.63787],[24.24888,-17.47447],[24.26124,-17.48823],[24.27085,-17.48954],[24.27703,-17.48299],[24.31411,-17.48757],[24.32785,-17.49215],[24.38758,-17.46923],[24.43084,-17.47971],[24.46174,-17.48102],[24.50775,-17.51377],[24.52423,-17.51442],[24.53727,-17.50656],[24.54895,-17.51246],[24.55444,-17.53734],[24.56268,-17.53865],[24.58534,-17.5321],[24.60937,-17.53472],[24.6183,-17.52686],[24.62242,-17.51442],[24.63203,-17.5118],[24.64027,-17.51442],[24.63684,-17.50067],[24.65538,-17.49412],[24.67666,-17.50001],[24.69383,-17.50132],[24.70275,-17.49674],[24.72816,-17.50001],[24.76043,-17.51704],[24.77691,-17.50656],[24.78515,-17.51246],[24.79064,-17.53406],[24.79682,-17.53799],[24.82978,-17.52031],[24.85382,-17.53079],[24.87991,-17.52621],[24.90463,-17.55436],[24.94102,-17.54716],[24.94583,-17.55109],[24.94102,-17.55894],[24.94308,-17.56745],[24.96025,-17.56483],[24.97741,-17.5524],[24.98634,-17.56091],[24.99733,-17.59102],[25.00694,-17.59756],[25.02273,-17.59298],[25.0241,-17.58578],[25.04676,-17.58971],[25.05088,-17.59953],[25.04264,-17.62112],[25.04745,-17.63028],[25.05638,-17.62374],[25.05638,-17.61262],[25.06736,-17.61654],[25.06599,-17.62832],[25.07011,-17.63617],[25.0811,-17.64141],[25.08453,-17.65908],[25.1017,-17.66431],[25.10856,-17.68001],[25.09414,-17.7016],[25.09414,-17.70945],[25.1017,-17.70945],[25.12161,-17.6931],[25.13053,-17.69244],[25.13603,-17.7016],[25.13259,-17.71076],[25.13809,-17.71141],[25.14358,-17.70487],[25.15045,-17.70422],[25.16281,-17.72384],[25.15937,-17.73365],[25.15525,-17.74019],[25.16006,-17.74477],[25.16967,-17.74608],[25.19096,-17.76962],[25.22049,-17.76766],[25.26306,-17.79054],[25.30906,-17.8265],[25.3482,-17.84088],[25.36811,-17.83303],[25.40039,-17.85199],[25.41824,-17.84741],[25.43197,-17.85395],[25.45257,-17.84218],[25.49102,-17.8533],[25.50338,-17.86441],[25.52604,-17.86179],[25.55351,-17.8363],[25.58509,-17.8448],[25.60363,-17.83892],[25.64758,-17.83173],[25.6771,-17.80885],[25.70114,-17.81408],[25.69839,-17.83042],[25.70938,-17.84414],[25.76637,-17.84676],[25.79246,-17.86767],[25.79521,-17.88009],[25.8213,-17.89839],[25.84396,-17.89708],[25.85769,-17.92648],[25.84877,-17.9304],[25.85838,-17.93105],[25.84602,-17.93432],[25.84602,-17.94216],[25.86044,-17.95065],[25.85838,-17.97417],[25.88104,-17.97743],[25.9085,-17.98462],[25.914,-17.99441],[25.94146,-17.99245],[25.96275,-17.99572],[25.96756,-18.00225],[25.99021,-17.99441],[25.98884,-17.98527],[26.00395,-17.97678],[26.03553,-17.98004],[26.04171,-17.97221],[26.0527,-17.98135],[26.0733,-17.97874],[26.09115,-17.98135],[26.09527,-17.95914],[26.10763,-17.94804],[26.09252,-17.94804],[26.0884,-17.93432],[26.10282,-17.92517],[26.10694,-17.92844],[26.12548,-17.91864],[26.13441,-17.92256],[26.13922,-17.91603],[26.14952,-17.91799],[26.16188,-17.91015],[26.17904,-17.90753],[26.21955,-17.88401],[26.22573,-17.8912],[26.22573,-17.89839],[26.24496,-17.91733],[26.28616,-17.91929],[26.3095,-17.93759],[26.34727,-17.92975],[26.38984,-17.93824],[26.39877,-17.93563],[26.41456,-17.9402],[26.42623,-17.95261],[26.43997,-17.95457],[26.44615,-17.95326],[26.45645,-17.96502],[26.46675,-17.96306],[26.48254,-17.982],[26.51207,-17.99049],[26.53198,-17.98723],[26.56288,-17.98723],[26.57112,-17.99506],[26.57386,-18.01661],[26.60202,-18.0362],[26.59721,-18.04926],[26.62879,-18.0584],[26.64665,-18.05383],[26.68922,-18.07798],[26.69883,-18.07341],[26.69471,-18.06428],[26.72081,-18.0473],[26.74552,-18.02119],[26.77162,-18.01923],[26.79908,-18.02445],[26.80732,-18.0127],[26.82792,-18.0127],[26.82518,-17.99898],[26.83136,-17.99115],[26.86775,-17.99376],[26.87324,-17.98592],[26.89178,-17.98984],[26.93298,-17.97482],[26.95838,-17.96894],[26.96662,-17.96502],[26.98654,-17.97025],[26.99821,-17.96045],[27.01812,-17.95326],[27.04147,-17.96176],[27.08335,-17.90231],[27.15271,-17.83761],[27.14378,-17.80688],[27.3175,-17.59036],[27.5489,-17.41617],[27.62168,-17.33164],[27.62992,-17.24575],[27.82974,-16.9629],[28.13804,-16.82229],[28.25065,-16.72565],[28.63929,-16.56447],[28.74298,-16.54473],[28.75877,-16.52498],[28.77182,-16.51379],[28.78624,-16.50984],[28.81576,-16.48548],[28.824,-16.46836],[28.82194,-16.45848],[28.81645,-16.44663],[28.82263,-16.42621],[28.83911,-16.40909],[28.84391,-16.39196],[28.84391,-16.38274],[28.85009,-16.37549],[28.84872,-16.36166],[28.83979,-16.35111],[28.84323,-16.32871],[28.82469,-16.31948],[28.82469,-16.30235],[28.83979,-16.27006],[28.85421,-16.25621],[28.85696,-16.23907],[28.83979,-16.23182],[28.83499,-16.21072],[28.84048,-16.18962],[28.83705,-16.16127],[28.86177,-16.12763],[28.86245,-16.10652],[28.84666,-16.04714],[28.87001,-16.0247],[28.89198,-15.98312],[28.91395,-15.96595],[28.9373,-15.94351],[28.97506,-15.94351],[28.99017,-15.93823],[29.01145,-15.94681],[29.03617,-15.9237],[29.03755,-15.91049],[29.06707,-15.88012],[29.08355,-15.87747],[29.11239,-15.84643],[29.21745,-15.77111],[29.27307,-15.75724],[29.39941,-15.70436],[29.41864,-15.69114],[29.48387,-15.69114],[29.52438,-15.67726],[29.54429,-15.6528],[29.55734,-15.64486],[29.58137,-15.64685],[29.59854,-15.66007],[29.63836,-15.66205],[29.77706,-15.6204],[29.78599,-15.61246],[29.82582,-15.60915],[29.88555,-15.61511],[29.89105,-15.62238],[29.90959,-15.62238],[29.94667,-15.62767],[29.96109,-15.64288],[29.98718,-15.64354],[30.05516,-15.63362],[30.0682,-15.62701],[30.11077,-15.62767],[30.15953,-15.61841],[30.17669,-15.6237],[30.19111,-15.6528],[30.20416,-15.65809],[30.20896,-15.66999],[30.24124,-15.64883],[30.2584,-15.62767],[30.27351,-15.64222],[30.28862,-15.64751],[30.31265,-15.64685],[30.35385,-15.65544],[30.37445,-15.64552],[30.39779,-15.63825],[30.41908,-15.62106],[30.40535,-15.60452],[30.40466,-15.59328],[30.35934,-15.55227],[30.37925,-15.51853],[30.39917,-15.47155],[30.37582,-15.45633],[30.37719,-15.34777],[30.27763,-15.25504],[30.23231,-15.11787],[30.21171,-15.06417],[30.22888,-15.05688],[30.23437,-15.03831],[30.22819,-15.02505],[30.22682,-15.01643],[30.2172,-15.00847],[30.21926,-14.99786],[30.38337,-14.95872],[30.48088,-14.90763],[30.68069,-14.82999],[30.79948,-14.78883],[31.08032,-14.72376],[31.27464,-14.66265],[31.34536,-14.65003],[31.42845,-14.63342],[31.5026,-14.6095],[31.68388,-14.51048],[31.82052,-14.48256],[31.9551,-14.4134],[32.06222,-14.38747],[32.11715,-14.36552],[32.25448,-14.32161],[32.45018,-14.28435],[32.58476,-14.22379],[32.77359,-14.15655],[33.24119,-13.99804],[33.22128,-13.99671],[33.20617,-14.00137],[33.19107,-13.97939],[33.19038,-13.96606],[33.17871,-13.95473],[33.1636,-13.95206],[33.15467,-13.94007],[33.14575,-13.94007],[33.13407,-13.96139],[33.10592,-13.9574],[33.07983,-13.97539],[33.06129,-13.99804],[33.06404,-14.02136],[33.04275,-14.04268],[33.03932,-14.05067],[33.03108,-14.05467],[33.03245,-14.04334],[33.00293,-14.02336],[32.99331,-14.0067],[33.0043,-13.95406],[32.98164,-13.94207],[32.95898,-13.94007],[32.94937,-13.94607],[32.94525,-13.93141],[32.94662,-13.91808],[32.95349,-13.90541],[32.94593,-13.89475],[32.94319,-13.88075],[32.91023,-13.86342],[32.88894,-13.81341],[32.83126,-13.78607],[32.81547,-13.78607],[32.80792,-13.80075],[32.77221,-13.77941],[32.78114,-13.75073],[32.79487,-13.75073],[32.80723,-13.72938],[32.83607,-13.72938],[32.845,-13.72338],[32.82852,-13.69736],[32.81341,-13.68536],[32.79418,-13.67802],[32.80242,-13.66067],[32.78457,-13.64733],[32.75917,-13.63665],[32.74955,-13.64866],[32.71385,-13.64132],[32.67265,-13.6213],[32.68775,-13.59995],[32.68089,-13.58393],[32.69325,-13.57992],[32.68775,-13.57325],[32.69943,-13.56858],[32.7214,-13.58193],[32.74131,-13.58326],[32.7626,-13.56991],[32.76054,-13.56057],[32.76672,-13.55656],[32.78045,-13.55656],[32.8038,-13.54321],[32.8244,-13.54121],[32.83538,-13.52185],[32.84912,-13.5145],[32.84088,-13.49848],[32.84568,-13.48846],[32.84225,-13.47377],[32.84431,-13.46242],[32.85598,-13.45975],[32.85804,-13.46443],[32.8704,-13.46576],[32.88826,-13.45307],[32.90062,-13.43705],[32.90199,-13.42502],[32.91847,-13.41701],[32.91503,-13.40632],[32.92739,-13.37693],[32.92671,-13.35622],[32.93357,-13.3442],[32.93426,-13.31279],[32.94456,-13.30745],[32.93907,-13.29542],[32.94456,-13.28339],[32.9425,-13.27805],[32.95349,-13.26468],[32.96928,-13.26267],[32.98026,-13.24396],[32.98164,-13.23327],[33.01254,-13.21856],[33.01872,-13.20987],[33.00773,-13.20185],[33.00224,-13.17644],[32.97958,-13.1604],[32.98438,-13.14435],[32.97477,-13.11158],[32.98026,-13.1069],[32.97958,-13.08216],[32.99125,-13.07146],[32.99743,-13.05005],[32.98507,-13.03467],[32.98645,-13.0253],[32.99537,-13.02263],[32.99743,-13.00791],[33.01528,-12.98917],[33.01048,-12.97312],[33.0194,-12.93096],[33.02902,-12.90954],[33.02215,-12.90352],[33.02215,-12.89415],[32.97752,-12.8821],[32.94731,-12.84796],[32.95555,-12.83524],[32.95555,-12.82185],[32.94731,-12.80511],[32.94593,-12.78904],[32.93769,-12.77364],[32.97615,-12.73614],[32.99675,-12.72743],[33.00087,-12.71135],[33.0091,-12.70399],[33.01254,-12.67518],[33.02078,-12.65374],[33.02764,-12.65374],[33.04138,-12.63029],[33.07228,-12.60684],[33.0764,-12.59947],[33.08944,-12.59478],[33.09425,-12.60751],[33.11554,-12.61756],[33.12583,-12.60617],[33.14918,-12.5988],[33.17939,-12.6122],[33.17527,-12.64168],[33.18283,-12.64168],[33.19724,-12.62627],[33.1993,-12.61287],[33.22265,-12.59679],[33.23501,-12.59478],[33.23913,-12.58406],[33.26385,-12.55859],[33.26385,-12.54451],[33.3181,-12.52843],[33.33046,-12.53781],[33.33046,-12.54854],[33.35311,-12.55189],[33.35998,-12.55993],[33.36547,-12.56194],[33.40049,-12.52709],[33.41148,-12.5224],[33.41491,-12.51502],[33.40736,-12.50497],[33.43689,-12.47815],[33.46366,-12.48217],[33.46572,-12.46273],[33.48152,-12.45334],[33.46916,-12.42719],[33.50143,-12.40976],[33.5131,-12.39031],[33.54744,-12.3722],[33.54606,-12.3561],[33.53645,-12.34001],[33.51036,-12.34269],[33.48426,-12.33531],[33.47602,-12.32592],[33.45817,-12.3286],[33.42384,-12.34336],[33.39775,-12.34135],[33.37165,-12.34604],[33.36822,-12.32324],[33.35105,-12.29976],[33.33526,-12.285],[33.33046,-12.2595],[33.31192,-12.24742],[33.3126,-12.21387],[33.31672,-12.20649],[33.30986,-12.18031],[33.3126,-12.1689],[33.28308,-12.16756],[33.2563,-12.13802],[33.27346,-12.08431],[33.27484,-12.06551],[33.28308,-12.05477],[33.292,-12.02455],[33.30505,-12.01515],[33.30917,-11.98089],[33.31398,-11.96343],[33.31329,-11.95],[33.32084,-11.94059],[33.32702,-11.90901],[33.3181,-11.88415],[33.30368,-11.86803],[33.33252,-11.8183],[33.3332,-11.78805],[33.32359,-11.77864],[33.32565,-11.75511],[33.31947,-11.74637],[33.3126,-11.67376],[33.32016,-11.63408],[33.31054,-11.59373],[33.29612,-11.59171],[33.28926,-11.5796],[33.27964,-11.57557],[33.27484,-11.58095],[33.26591,-11.57489],[33.2357,-11.58835],[33.22608,-11.56817],[33.25561,-11.52915],[33.23432,-11.47465],[33.24806,-11.45378],[33.23501,-11.44234],[33.23226,-11.41879],[33.24119,-11.41071],[33.25424,-11.42013],[33.26522,-11.42821],[33.28033,-11.44032],[33.29818,-11.43561],[33.29269,-11.42821],[33.292,-11.39725],[33.2872,-11.38513],[33.292,-11.36696],[33.30368,-11.3683],[33.31672,-11.36359],[33.30986,-11.33262],[33.32153,-11.32656],[33.35586,-11.25586],[33.38127,-11.23566],[33.38264,-11.21613],[33.39225,-11.20737],[33.38951,-11.18918],[33.39912,-11.18043],[33.40599,-11.1582],[33.395,-11.14607],[33.38607,-11.1454],[33.37509,-11.13192],[33.37371,-11.11373],[33.35861,-11.0915],[33.32771,-11.06859],[33.33046,-11.05106],[33.32016,-11.04567],[33.31604,-11.0268],[33.30505,-10.99984],[33.29818,-11.00186],[33.30024,-10.99041],[33.28994,-10.98434],[33.29063,-10.9803],[33.30642,-10.98501],[33.31123,-10.96749],[33.30986,-10.9412],[33.28514,-10.91693],[33.28239,-10.90277],[33.25286,-10.90681],[33.24462,-10.89333],[33.2666,-10.86501],[33.28788,-10.86635],[33.28514,-10.87512],[33.292,-10.8758],[33.3126,-10.86838],[33.32016,-10.85219],[33.33732,-10.82252],[33.35517,-10.82859],[33.37097,-10.82522],[33.395,-10.80701],[33.43551,-10.82185],[33.46641,-10.81375],[33.46572,-10.80498],[33.47534,-10.79352],[33.498,-10.78947],[33.50486,-10.77665],[33.51516,-10.77598],[33.52409,-10.76586],[33.53096,-10.76451],[33.53645,-10.75237],[33.53164,-10.74428],[33.53714,-10.73416],[33.5495,-10.73551],[33.59756,-10.65994],[33.6058,-10.65454],[33.6161,-10.66399],[33.65043,-10.62215],[33.68202,-10.60865],[33.68682,-10.59515],[33.70468,-10.57895],[33.7088,-10.56545],[33.67721,-10.5749],[33.68133,-10.55263],[33.67034,-10.54588],[33.67584,-10.52832],[33.66348,-10.53102],[33.63258,-10.49524],[33.62022,-10.49457],[33.63189,-10.48714],[33.63807,-10.46891],[33.62228,-10.45135],[33.60511,-10.45338],[33.58932,-10.43515],[33.5749,-10.43988],[33.57215,-10.41894],[33.56391,-10.40678],[33.56117,-10.37842],[33.54881,-10.37031],[33.55773,-10.34802],[33.55361,-10.33924],[33.54126,-10.33789],[33.54469,-10.32506],[33.5392,-10.30344],[33.54538,-10.29804],[33.55361,-10.25615],[33.56391,-10.24669],[33.56323,-10.23317],[33.54263,-10.23385],[33.53782,-10.21222],[33.52134,-10.20952],[33.5131,-10.18519],[33.43963,-10.16086],[33.43483,-10.13856],[33.38539,-10.10205],[33.36135,-10.10408],[33.34968,-10.10814],[33.35037,-10.08921],[33.31398,-10.06014],[33.32771,-10.03918],[33.33252,-10.00672],[33.3538,-9.96277],[33.35517,-9.93707],[33.36135,-9.92422],[33.37921,-9.91542],[33.37097,-9.86875],[33.34968,-9.8329],[33.30574,-9.81801],[33.29544,-9.79636],[33.29063,-9.77538],[33.23089,-9.74899],[33.22952,-9.73884],[33.23501,-9.73207],[33.22608,-9.69688],[33.21579,-9.68402],[33.21716,-9.67251],[33.23295,-9.66507],[33.22608,-9.64544],[33.21579,-9.63664],[33.22334,-9.6231],[33.19175,-9.60008],[33.17115,-9.60143],[33.15536,-9.61565],[33.1224,-9.59737],[33.11004,-9.62783],[33.11965,-9.64002],[33.11142,-9.64408],[33.1121,-9.65356],[33.11073,-9.66777],[33.10112,-9.67116],[33.10249,-9.6786],[33.1018,-9.68199],[33.08464,-9.67522],[33.08738,-9.66507],[33.06541,-9.64002],[33.06678,-9.63122],[33.05648,-9.62648],[33.04618,-9.62987],[33.04206,-9.64137],[33.0249,-9.63934],[33.00018,-9.57232],[33.00705,-9.55404],[33.01597,-9.54726],[33.03176,-9.52695],[33.03176,-9.51273],[33.02833,-9.49919],[32.99194,-9.49648],[32.98301,-9.48293],[32.95005,-9.49174],[32.94731,-9.48158],[32.9528,-9.46668],[32.94456,-9.4572],[32.94799,-9.43349],[32.9425,-9.41791],[32.96035,-9.4003],[32.92945,-9.40097],[32.91297,-9.37929],[32.90542,-9.3881],[32.89718,-9.38878],[32.89306,-9.36642],[32.86491,-9.37929],[32.81341,-9.34813],[32.81272,-9.33864],[32.80105,-9.32238],[32.76535,-9.32171],[32.75642,-9.28511],[32.71659,-9.27631],[32.64793,-9.27495],[32.61634,-9.25801],[32.57583,-9.2492],[32.54562,-9.25801],[32.48588,-9.17532],[32.49343,-9.15091],[32.46116,-9.13193],[32.45018,-9.13058],[32.43782,-9.11837],[32.35817,-9.12854],[32.25448,-9.13125],[32.192,-9.09668],[32.17208,-9.06617],[32.15835,-9.05735],[32.13775,-9.06345],[32.07115,-9.04854],[32.01553,-9.06278],[32.01278,-9.07227],[31.98806,-9.0743],[31.96334,-9.05803],[31.95304,-9.03362],[31.93725,-9.02005],[31.93588,-8.99632],[31.92832,-8.97936],[31.94961,-8.93663],[31.85829,-8.90136],[31.78894,-8.88915],[31.75804,-8.90068],[31.73606,-8.92374],[31.72233,-8.92103],[31.70585,-8.92442],[31.69212,-8.91696],[31.67976,-8.91628],[31.65573,-8.88304],[31.6008,-8.85523],[31.59324,-8.84301],[31.58088,-8.84166],[31.56852,-8.81112],[31.5747,-8.79891],[31.56852,-8.76566],[31.58157,-8.7358],[31.57127,-8.72087],[31.56921,-8.70254],[31.56372,-8.70458],[31.55204,-8.68829],[31.5438,-8.68829],[31.53762,-8.68014],[31.50535,-8.68082],[31.49986,-8.68557],[31.48819,-8.68218],[31.45797,-8.63941],[31.41128,-8.64009],[31.39549,-8.62991],[31.38588,-8.60886],[31.37764,-8.60207],[31.37626,-8.58917],[31.35978,-8.59189],[31.36184,-8.60818],[31.35017,-8.61701],[31.31103,-8.60818],[31.29386,-8.62923],[31.27258,-8.63059],[31.25679,-8.61226],[31.25335,-8.598],[31.24099,-8.59257],[31.23756,-8.598],[31.21284,-8.5851],[31.19705,-8.59257],[31.184,-8.59325],[31.18331,-8.60615],[31.15448,-8.62448],[31.10435,-8.63262],[31.06109,-8.61769],[30.99723,-8.56066],[30.83519,-8.35283],[30.77203,-8.20381],[30.70298,-7.9784],[30.59841,-7.80178],[30.52695,-7.69707],[30.45549,-7.58419],[30.43891,-7.51632],[30.39477,-7.31785],[30.30394,-7.12756],[30.17996,-6.94863],[30.04189,-6.82511],[29.89683,-6.7615],[29.71056,-6.60242],[29.65664,-6.45339],[29.55414,-6.31485],[29.53268,-6.1804],[29.49747,-6.04868],[29.49523,-5.99616],[29.51272,-5.92255],[29.6126,-5.80249],[29.63524,-5.74597],[29.60019,-5.58013],[29.53285,-5.45344],[29.46135,-5.19188],[29.38271,-5.0543],[29.34251,-4.89484],[29.34489,-4.7737],[29.43242,-4.54033],[29.41996,-4.44996],[29.66354,-4.44765],[29.75605,-4.46725],[29.76964,-4.45367],[29.76133,-4.42497],[29.82309,-4.36133],[29.86837,-4.37984],[29.95475,-4.33135],[29.98146,-4.29615],[30.00031,-4.29361],[30.01385,-4.27454],[30.04113,-4.2719],[30.07601,-4.1741],[30.19054,-4.08177],[30.18552,-4.05801],[30.20523,-4.04795],[30.22219,-4.03925],[30.22816,-4.01412],[30.21559,-3.99377],[30.25796,-3.89123],[30.30424,-3.84782],[30.32992,-3.79017],[30.35076,-3.77164],[30.38533,-3.78327],[30.40479,-3.799],[30.41041,-3.76028],[30.38855,-3.71881],[30.43023,-3.63174],[30.45818,-3.59675],[30.44541,-3.56514],[30.49127,-3.52249],[30.51283,-3.52858],[30.5347,-3.50268],[30.58678,-3.48227],[30.63474,-3.45638],[30.66897,-3.42501],[30.67432,-3.39812],[30.6358,-3.36412],[30.6632,-3.32463],[30.71737,-3.30502],[30.73897,-3.26368],[30.76331,-3.29089],[30.8387,-3.25715],[30.81135,-3.22355],[30.84168,-3.2064],[30.84191,-3.1008],[30.7982,-3.06376],[30.85062,-2.97736],[30.7498,-2.99452],[30.69939,-2.97155],[30.67095,-2.99248],[30.65004,-2.97328],[30.64561,-2.95683],[30.57357,-2.89375],[30.50365,-2.95411],[30.45036,-2.91347],[30.43773,-2.89713],[30.43333,-2.87257],[30.41081,-2.86185],[30.44542,-2.78075],[30.43883,-2.75176],[30.46111,-2.73658],[30.46951,-2.72077],[30.48614,-2.72141],[30.5307,-2.67185],[30.5237,-2.65229],[30.46548,-2.69203],[30.43143,-2.68097],[30.42102,-2.65886],[30.48339,-2.55856],[30.54027,-2.41436],[30.57878,-2.41648],[30.62278,-2.39939],[30.65861,-2.41186],[30.71365,-2.35572],[30.77419,-2.39015],[30.80016,-2.36669],[30.82613,-2.35696],[30.84111,-2.32527],[30.85609,-2.31279],[30.84279,-2.24186],[30.84872,-2.20387],[30.89716,-2.07387],[30.86457,-2.02895],[30.80727,-1.93737],[30.82998,-1.8146],[30.82074,-1.69831],[30.83897,-1.65066],[30.74358,-1.51759],[30.73883,-1.45043],[30.68464,-1.39699],[30.63008,-1.38262],[30.61398,-1.35179],[30.57264,-1.34033],[30.55793,-1.30795],[30.56244,-1.29478],[30.55225,-1.25472],[30.50714,-1.17184],[30.49723,-1.16039],[30.4736,-1.15718],[30.47301,-1.1233],[30.4587,-1.12099],[30.45262,-1.08299],[30.47386,-1.05762],[30.4485,-1.04832],[30.42534,-1.06328],[30.35429,-1.06574],[30.33887,-1.09881],[30.34543,-1.12638],[30.30408,-1.14635],[30.28195,-1.19927],[30.20748,-1.27765],[30.17196,-1.27244],[30.16527,-1.34687],[30.13799,-1.35676],[30.11894,-1.38588],[30.08396,-1.37055],[30.05479,-1.40064],[30.05669,-1.43491],[30.02013,-1.41426],[29.98822,-1.45259],[29.91511,-1.48268],[29.89297,-1.45069],[29.88731,-1.42556],[29.88148,-1.35883],[29.86192,-1.36075],[29.82313,-1.30775],[29.81731,-1.32752],[29.80049,-1.34728],[29.79708,-1.37308],[29.77837,-1.36787],[29.76516,-1.35166],[29.73324,-1.33573],[29.69994,-1.35687],[29.67489,-1.3835],[29.63989,-1.38733],[29.59115,-1.38568],[29.60573,-1.31867],[29.59104,-1.27418],[29.60705,-1.24644],[29.60657,-1.22694],[29.57815,-1.19344],[29.58866,-1.06135],[29.58442,-0.98988],[29.59941,-0.98707],[29.58281,-0.90736],[29.58818,-0.89906],[29.63572,-0.90071],[29.62767,-0.87525],[29.63061,-0.8498],[29.64178,-0.82846],[29.63099,-0.80713],[29.62626,-0.70805],[29.63878,-0.68018],[29.66182,-0.6279],[29.64999,-0.60038],[29.66742,-0.59074],[29.68211,-0.56737],[29.67357,-0.55217],[29.67326,-0.47379],[29.65282,-0.45965],[29.7276,-0.08725],[29.72241,-0.07272],[29.74454,-0.02974],[29.72398,0.01396],[29.71715,0.06865],[29.74189,0.12071],[29.77762,0.16728],[29.82435,0.16704],[29.87365,0.38518],[29.97789,0.50582],[29.98235,0.54967],[29.96947,0.5716],[29.97307,0.59352],[29.95418,0.64424],[29.96825,0.67573],[29.97304,0.74009],[29.96444,0.77501],[29.97783,0.82916],[29.99773,0.84521],[30.06158,0.87499],[30.10758,0.89103],[30.14259,0.88511],[30.17108,0.90457],[30.17297,0.93215],[30.19133,0.95698],[30.22635,0.9904],[30.22566,1.04854],[30.23029,1.07887],[30.24317,1.1037],[30.2387,1.13415],[30.28745,1.17169],[30.33654,1.14653],[30.34718,1.17628],[30.36212,1.1994],[30.40177,1.19231],[30.45635,1.19735],[30.48038,1.21567],[30.71646,1.50123],[31.03205,1.75111],[31.23005,1.99715],[31.31543,2.11692],[31.31592,2.14783],[31.24887,2.19828],[31.2038,2.21991],[31.20291,2.29198],[31.16933,2.27868],[31.144,2.2791],[31.12903,2.26347],[31.06888,2.30083],[31.08591,2.30693],[31.0741,2.32537],[31.07328,2.34382],[31.03153,2.37645],[30.98917,2.40862],[30.95425,2.39452],[30.94406,2.36669],[30.93877,2.33026],[30.88405,2.34047],[30.83502,2.42127],[30.7803,2.43149],[30.75156,2.41602],[30.74205,2.44719],[30.74733,2.48686],[30.76358,2.49772],[30.75215,2.58254],[30.77599,2.60128],[30.83189,2.75124],[30.87681,2.7901],[30.89151,2.86188],[30.85226,2.93959],[30.85343,2.95834],[30.83813,2.96885],[30.82125,3.00908],[30.80711,3.0092],[30.78199,3.01754],[30.77295,3.05342],[30.79377,3.06397],[30.80361,3.12388],[30.82877,3.20531],[30.84064,3.26397],[30.86713,3.27708],[30.87602,3.30485],[30.89041,3.31891],[30.88896,3.33607],[30.93826,3.40604],[30.94072,3.49114],[30.94276,3.50754],[30.8988,3.50269],[30.88162,3.48893],[30.87921,3.48137],[30.86582,3.47791],[30.84791,3.48868],[30.85054,3.49925],[30.85151,3.52354],[30.86621,3.54508],[30.85991,3.57722],[30.80885,3.59488],[30.79705,3.61057],[30.79624,3.65366],[30.7754,3.6823],[30.73048,3.62139],[30.6833,3.64301],[30.6526,3.62078],[30.6219,3.60266],[30.55824,3.62292],[30.58198,3.72921],[30.55079,3.84098],[30.52627,3.8537],[30.47428,3.83354],[30.44515,3.87954],[30.41601,3.86525],[30.38688,3.89412],[30.34951,3.91751],[30.30223,3.91428],[30.2882,3.95651],[30.2165,3.93845],[30.18501,4.03182],[30.1679,4.03878],[30.15903,4.11422],[30.12232,4.11086],[30.06364,4.12941],[30.02967,4.17535],[30.02318,4.20759],[29.97685,4.21382],[29.94564,4.24195],[29.96592,4.28926],[29.89916,4.34715],[29.84655,4.33639],[29.80218,4.36944],[29.79711,4.42654],[29.80852,4.49459],[29.79838,4.51021],[29.82617,4.5565],[29.7664,4.58611],[29.74847,4.56866],[29.69887,4.61865],[29.553,4.6721],[29.5359,4.65852],[29.49347,4.69435],[29.46676,4.66502],[29.47575,4.59326],[29.4463,4.56463],[29.44805,4.52157],[29.40729,4.47726],[29.37476,4.47129],[29.35713,4.4505],[29.34499,4.3996],[29.30676,4.38429],[29.26567,4.39717],[29.25402,4.38328],[29.25062,4.35569],[29.22183,4.33886],[29.1338,4.42963],[29.08433,4.43726],[29.0788,4.45584],[29.04718,4.47169],[29.02655,4.49301],[28.92623,4.47815],[28.87607,4.49125],[28.8369,4.47972],[28.81204,4.49928],[28.80078,4.5658],[28.72635,4.54469],[28.67499,4.4395],[28.64773,4.42347],[28.60674,4.42113],[28.58246,4.38402],[28.51837,4.37566],[28.45564,4.28788],[28.38193,4.28227],[28.35874,4.35504],[28.27238,4.3566],[28.20661,4.35132],[28.1785,4.38287],[28.14215,4.40346],[28.1436,4.43094],[28.10145,4.44405],[28.08401,4.41608],[28.03542,4.47789],[28.04259,4.54401],[27.94869,4.57803],[27.93332,4.53686],[27.89873,4.5395],[27.79882,4.60753],[27.76927,4.69432],[27.77611,4.78303],[27.7359,4.80139],[27.7254,4.79141],[27.69843,4.79238],[27.7059,4.82363],[27.64942,4.89435],[27.56118,4.89346],[27.50555,4.93274],[27.5124,4.96205],[27.46018,4.99056],[27.44167,5.01922],[27.4514,5.01775],[27.45758,5.05879],[27.45689,5.08],[27.42599,5.10188],[27.41294,5.11488],[27.39852,5.15728],[27.36488,5.17916],[27.34428,5.20173],[27.31132,5.21335],[27.2969,5.23934],[27.29621,5.26464],[27.27493,5.28925],[27.24815,5.34189],[27.25364,5.37198],[27.23373,5.40137],[27.23785,5.44375],[27.2509,5.47383],[27.26326,5.51894],[27.27973,5.54559],[27.27424,5.56746],[27.28385,5.58728],[27.27562,5.59958],[27.2557,5.60368],[27.24128,5.59685],[27.23167,5.61188],[27.23785,5.65151],[27.21656,5.66996],[27.21656,5.69114],[27.19047,5.73077],[27.15065,5.7458],[27.14447,5.75332],[27.16781,5.76425],[27.16507,5.77313],[27.11494,5.78884],[27.10464,5.80387],[27.09571,5.80524],[27.07168,5.79158],[27.04902,5.79772],[27.04353,5.81548],[27.02636,5.81412],[27.02636,5.83461],[27.014,5.85305],[26.98997,5.86125],[26.96044,5.85032],[26.9268,5.87423],[26.91719,5.8954],[26.90071,5.89814],[26.88148,5.88994],[26.85676,5.89199],[26.83685,5.9077],[26.83548,5.94185],[26.82792,5.97326],[26.8135,5.99102],[26.79977,5.98214],[26.79359,5.98965],[26.7723,5.99853],[26.75033,6.01492],[26.72424,6.00741],[26.69403,6.02106],[26.67137,6.00877],[26.65351,6.00741],[26.59584,6.03267],[26.58966,6.02789],[26.5615,6.03745],[26.5512,6.0593],[26.53816,6.07159],[26.5409,6.07842],[26.53198,6.10163],[26.51344,6.11597],[26.48941,6.10573],[26.46194,6.08183],[26.44958,6.09344],[26.44821,6.10914],[26.46675,6.13236],[26.50314,6.15352],[26.5258,6.17605],[26.54022,6.20472],[26.53129,6.22315],[26.51619,6.23339],[26.50177,6.22247],[26.48735,6.22315],[26.47293,6.23612],[26.47361,6.28322],[26.42486,6.30574],[26.39534,6.30847],[26.38572,6.31529],[26.35963,6.35215],[26.32667,6.37398],[26.29646,6.39923],[26.29509,6.41288],[26.31568,6.42926],[26.31637,6.44085],[26.29921,6.44972],[26.31019,6.46815],[26.30264,6.47088],[26.2841,6.46951],[26.29097,6.49134],[26.30744,6.50226],[26.32324,6.50226],[26.32942,6.5084],[26.32324,6.52],[26.32804,6.53705],[26.3507,6.55752],[26.35414,6.58344],[26.35826,6.58821],[26.37817,6.58412],[26.38298,6.58821],[26.38092,6.60595],[26.40632,6.61891],[26.41593,6.62914],[26.41731,6.64619],[26.40426,6.6571],[26.3871,6.66392],[26.35757,6.69325],[26.26213,6.7137],[26.25045,6.74098],[26.20857,6.75326],[26.2017,6.77371],[26.17767,6.79008],[26.17424,6.8153],[26.11312,6.82144],[26.09664,6.83439],[26.08978,6.86166],[26.09184,6.90938],[26.08291,6.91074],[26.06575,6.90256],[26.06506,6.92097],[26.06163,6.92438],[26.04995,6.92097],[26.04034,6.92642],[26.05682,6.94414],[26.04858,6.97004],[26.05545,6.98436],[26.04995,7.00071],[26.03347,7.01094],[25.98403,7.01434],[25.98472,7.03615],[25.93185,7.04297],[25.9188,7.06273],[25.89202,7.07159],[25.90713,7.0859],[25.90026,7.09748],[25.87554,7.10157],[25.85769,7.11043],[25.81306,7.11656],[25.80825,7.12474],[25.81787,7.13359],[25.81443,7.15267],[25.74508,7.16153],[25.73684,7.1806],[25.71762,7.17583],[25.69702,7.19831],[25.6723,7.19423],[25.6414,7.2133],[25.59333,7.21739],[25.59608,7.23919],[25.58509,7.246],[25.57823,7.22693],[25.56724,7.23306],[25.56999,7.25553],[25.55625,7.26371],[25.5439,7.25622],[25.53566,7.28006],[25.5178,7.28346],[25.5075,7.27461],[25.4821,7.27393],[25.47248,7.28346],[25.456,7.28619],[25.45188,7.31139],[25.43609,7.30798],[25.40313,7.33522],[25.39009,7.32841],[25.38322,7.34135],[25.36605,7.34544],[25.35781,7.35293],[25.35026,7.37404],[25.33927,7.42783],[25.30769,7.43124],[25.27885,7.47277],[25.23971,7.47753],[25.22254,7.49387],[25.20263,7.49455],[25.19645,7.51089],[25.20057,7.53608],[25.19371,7.55786],[25.18066,7.56467],[25.17517,7.57828],[25.25001,7.63137],[25.26306,7.62865],[25.28984,7.6443],[25.29533,7.65587],[25.28503,7.6688],[25.30563,7.67084],[25.307,7.68105],[25.2816,7.70146],[25.28366,7.728],[25.29533,7.75113],[25.29121,7.79943],[25.28434,7.80284],[25.26786,7.79739],[25.25894,7.82733],[25.2404,7.84501],[25.22323,7.87154],[25.20538,7.87426],[25.17929,7.90215],[25.16143,7.89534],[25.13671,7.89603],[25.10994,7.8865],[25.08934,7.88854],[25.05638,7.92731],[24.9781,7.98103],[24.95613,8.01503],[24.94171,8.02455],[24.90119,8.06466],[24.89502,8.11633],[24.86068,8.1775],[24.83253,8.18362],[24.79751,8.19382],[24.77897,8.18362],[24.75219,8.18838],[24.7261,8.20877],[24.69039,8.21285],[24.63546,8.23119],[24.57847,8.20877],[24.54002,8.20741],[24.51049,8.21964],[24.47273,8.27129],[24.44595,8.28012],[24.4178,8.28623],[24.402,8.28012],[24.3869,8.26517],[24.3608,8.2577],[24.32098,8.27061],[24.29214,8.27333],[24.22622,8.29031],[24.19532,8.31409],[24.16099,8.36165],[24.15275,8.38067],[24.16099,8.44452],[24.17404,8.48731],[24.19876,8.51379],[24.2173,8.54435],[24.24888,8.57219],[24.2633,8.59527],[24.23446,8.61768],[24.23034,8.63397],[24.24545,8.66248],[24.24614,8.67334],[24.25506,8.68556],[24.25575,8.69167],[24.26193,8.69982],[24.25506,8.70525],[24.22966,8.70525],[24.20219,8.6876],[24.16305,8.70457],[24.14314,8.68488],[24.09164,8.69167],[24.03533,8.70932],[24.00032,8.70049],[23.96392,8.72764],[23.91449,8.729],[23.91174,8.72357],[23.87603,8.71814],[23.8726,8.72153],[23.81012,8.72018],[23.78265,8.7066],[23.77029,8.72289],[23.75656,8.72357],[23.7387,8.71543],[23.72154,8.72289],[23.65013,8.73715],[23.62747,8.75343],[23.6103,8.74733],[23.58009,8.74868],[23.57185,8.72764],[23.5691,8.73036],[23.55674,8.71475],[23.54095,8.72629],[23.51966,8.72425],[23.52241,8.75683],[23.5025,8.77583],[23.51348,8.79618],[23.5073,8.81247],[23.51692,8.82129],[23.51829,8.83622],[23.52928,8.83283],[23.56842,8.8715],[23.57254,8.90203],[23.58902,8.91695],[23.56979,8.94544],[23.5849,8.97257],[23.58558,8.98885],[23.58764,9.00106],[23.58146,9.00173],[23.57734,9.00919],[23.57528,9.01733],[23.55606,9.00987],[23.54919,8.99292],[23.54988,8.98546],[23.54576,8.98342],[23.53477,8.96715],[23.51074,8.96715],[23.48808,8.97189],[23.48739,8.98003],[23.47503,8.98478],[23.45855,8.98546],[23.45924,9.00648],[23.44001,9.02004],[23.44757,9.03632],[23.45443,9.03632],[23.45924,9.05056],[23.45375,9.05666],[23.46885,9.0926],[23.46885,9.14141],[23.48602,9.15633],[23.48602,9.1726],[23.49975,9.18073],[23.49975,9.18751],[23.51554,9.18683],[23.52241,9.1787],[23.53752,9.17666],[23.55194,9.18344],[23.59245,9.22004],[23.60961,9.22614],[23.61236,9.2519],[23.62472,9.27291],[23.63502,9.27358],[23.64738,9.26816],[23.65562,9.28714],[23.63914,9.31831],[23.63433,9.33118],[23.6412,9.33796],[23.63777,9.35557],[23.63845,9.37725],[23.64669,9.38132],[23.64669,9.39961],[23.65974,9.40638],[23.67691,9.43754],[23.6721,9.45719],[23.65837,9.45922],[23.6412,9.44431],[23.62884,9.48157],[23.63914,9.50527],[23.63914,9.53574],[23.64395,9.54184],[23.62815,9.54861],[23.62953,9.55877],[23.69613,9.67183],[23.67073,9.89174],[23.30243,10.47076],[23.29376,10.48713],[23.27247,10.49523],[23.26423,10.50266],[23.24363,10.53507],[23.20175,10.55802],[23.18733,10.57692],[23.16673,10.58637],[23.15506,10.60392],[23.14888,10.62349],[23.0754,10.66803],[23.04931,10.69164],[23.01361,10.70649],[23.00193,10.70716],[22.97721,10.78069],[22.91748,10.85286],[22.90374,10.87781],[22.87422,10.90748],[22.87284,10.93647],[22.92984,11.09149],[22.92915,11.10159],[22.9882,11.22083],[22.97859,11.30568],[22.93602,11.32386],[22.94288,11.42686],[22.83027,11.41878],[22.78564,11.40801],[22.78701,11.45176],[22.75955,11.47867],[22.74169,11.48675],[22.65792,11.51434],[22.60849,11.56681],[22.56042,11.63206],[22.55493,11.70401],[22.58239,11.85323],[22.63183,12.0514],[22.64144,12.06886],[22.6332,12.07423],[22.62908,12.06953],[22.61741,12.0561],[22.60093,12.06148],[22.59201,12.06685],[22.57965,12.05812],[22.56454,12.05745],[22.55836,12.05275],[22.54463,12.06416],[22.51373,12.03864],[22.50137,12.03663],[22.49725,12.03193],[22.47802,12.03327],[22.47528,12.04737],[22.47528,12.05543],[22.48077,12.06483],[22.47802,12.06819],[22.48008,12.07356],[22.48558,12.06953],[22.48489,12.07692],[22.47802,12.07826],[22.48695,12.08229],[22.48489,12.08968],[22.48352,12.09572],[22.48626,12.09975],[22.48489,12.10512],[22.49176,12.11116],[22.4897,12.11788],[22.49244,12.1219],[22.49588,12.15748],[22.49519,12.16621],[22.48901,12.17359],[22.49382,12.18366],[22.48558,12.19507],[22.4842,12.20782],[22.47871,12.20916],[22.48008,12.2152],[22.4739,12.21856],[22.47596,12.22594],[22.47322,12.24003],[22.46635,12.23466],[22.46154,12.23668],[22.46017,12.24137],[22.46704,12.24339],[22.45742,12.25479],[22.45605,12.26285],[22.45193,12.26218],[22.44781,12.26553],[22.45193,12.27895],[22.443,12.28096],[22.44026,12.28633],[22.44918,12.29908],[22.43957,12.31316],[22.44026,12.32256],[22.43133,12.3239],[22.43614,12.33061],[22.43064,12.33866],[22.4327,12.34402],[22.42652,12.35341],[22.43133,12.35542],[22.43064,12.35945],[22.41897,12.36079],[22.42103,12.3675],[22.42927,12.36683],[22.42446,12.37622],[22.43476,12.37756],[22.42996,12.39097],[22.41897,12.39768],[22.41142,12.40975],[22.40455,12.4131],[22.40318,12.42249],[22.39151,12.43188],[22.38258,12.42718],[22.37022,12.43389],[22.36473,12.44864],[22.38739,12.46205],[22.39151,12.48082],[22.40249,12.49021],[22.41348,12.50295],[22.41416,12.51099],[22.4382,12.51501],[22.43888,12.53646],[22.43545,12.54316],[22.4382,12.55255],[22.443,12.55054],[22.47596,12.63296],[22.32971,12.68254],[22.2013,12.75756],[22.20062,12.71268],[22.15255,12.67048],[21.94587,12.63095],[21.93969,12.63363],[21.93832,12.64636],[21.92871,12.65172],[21.92596,12.66378],[21.91154,12.67517],[21.88888,12.68522],[21.88613,12.69661],[21.88545,12.71067],[21.85318,12.73278],[21.86004,12.75622],[21.85661,12.77497],[21.8367,12.78233],[21.82983,12.79774],[21.81541,12.80309],[21.8161,12.81581],[21.8264,12.82586],[21.84219,12.83054],[21.85043,12.85464],[21.85661,12.88945],[21.87034,12.90686],[21.88064,12.92493],[21.8827,12.94701],[21.90193,12.99452],[21.93351,13.01927],[21.93283,13.02462],[21.92871,13.02596],[21.92665,13.05004],[21.9445,13.07212],[21.96991,13.07145],[21.9802,13.07747],[21.98089,13.08683],[21.98913,13.09954],[22.01179,13.12495],[22.00836,13.141],[22.02209,13.14501],[22.02758,13.14167],[22.0784,13.14635],[22.07771,13.15705],[22.09281,13.16774],[22.11067,13.16239],[22.13401,13.16975],[22.13882,13.17911],[22.14637,13.18312],[22.14981,13.20117],[22.16491,13.21053],[22.16835,13.22189],[22.17933,13.22657],[22.18071,13.2513],[22.20199,13.26066],[22.20748,13.27403],[22.22122,13.27603],[22.2219,13.28405],[22.23701,13.30276],[22.24937,13.30276],[22.25349,13.31078],[22.248,13.31679],[22.26173,13.32348],[22.26516,13.3335],[22.28302,13.34218],[22.27958,13.3482],[22.28988,13.35555],[22.28576,13.37225],[22.2892,13.37626],[22.27478,13.39629],[22.26104,13.40965],[22.24594,13.41233],[22.23907,13.42168],[22.24388,13.43236],[22.23701,13.43971],[22.23358,13.44973],[22.22671,13.45039],[22.2171,13.46842],[22.22053,13.48044],[22.21847,13.50448],[22.21298,13.50915],[22.21778,13.52518],[22.21641,13.55789],[22.18757,13.58993],[22.17109,13.59393],[22.17041,13.59994],[22.15667,13.61996],[22.14981,13.62129],[22.14225,13.63531],[22.14363,13.64798],[22.13539,13.65199],[22.12715,13.65933],[22.11616,13.68735],[22.12234,13.69269],[22.13127,13.70736],[22.13195,13.71603],[22.12715,13.72004],[22.12371,13.73671],[22.10723,13.75205],[22.09556,13.75672],[22.08663,13.77006],[22.07222,13.77673],[22.20474,13.92007],[22.20886,13.92073],[22.21092,13.93473],[22.22053,13.93606],[22.21435,13.95006],[22.22671,13.96272],[22.2583,13.96139],[22.26242,13.96871],[22.29606,13.97538],[22.31597,14.01469],[22.36198,14.02468],[22.39357,14.05665],[22.43957,14.05599],[22.48764,14.10727],[22.53913,14.11726],[22.5769,14.1905],[22.55081,14.2098],[22.54806,14.22045],[22.55149,14.22578],[22.55149,14.22911],[22.55699,14.23576],[22.50549,14.24641],[22.48901,14.25107],[22.47665,14.24574],[22.42515,14.29499],[22.43339,14.32094],[22.44506,14.32293],[22.45742,14.33424],[22.46086,14.34489],[22.43888,14.37482],[22.43614,14.4114],[22.44369,14.4872],[22.4279,14.50183],[22.39563,14.51911],[22.38807,14.51047],[22.38258,14.51446],[22.41004,14.60617],[22.443,14.60816],[22.46429,14.62943],[22.51304,14.64537],[22.57896,14.65135],[22.71698,14.69785],[22.71354,14.72707],[22.66891,14.85188],[22.67921,14.87577],[22.70805,14.89568],[22.73826,14.89767],[22.75817,14.90763],[22.7465,14.93881],[22.75131,14.96999],[22.76779,14.97795],[22.77122,14.98922],[22.78083,14.9932],[22.79869,15.01973],[22.80899,15.02438],[22.81311,15.03698],[22.8543,15.05422],[22.86117,15.07543],[22.88932,15.09201],[22.92778,15.09466],[22.94151,15.11455],[22.92846,15.15034],[22.93396,15.15829],[22.93533,15.16956],[22.95593,15.17818],[22.98065,15.19806],[22.98408,15.21661],[22.98751,15.2239],[23.00056,15.22787],[23.00468,15.23847],[22.98545,15.26033],[22.98683,15.28484],[23.00056,15.3014],[23.00262,15.32392],[22.99163,15.33451],[22.99644,15.35107],[22.98614,15.37821],[22.99026,15.38483],[22.98751,15.40867],[22.97241,15.43382],[22.93533,15.46029],[22.91954,15.47221],[22.91816,15.49404],[22.92778,15.51786],[22.92434,15.54697],[22.93808,15.56549],[22.99369,15.586],[23.01361,15.61113],[23.04107,15.62766],[23.04451,15.6475],[23.08021,15.66866],[23.08364,15.67725],[23.09394,15.6832],[23.09806,15.69642],[23.11248,15.70237],[23.11523,15.71757],[23.15231,15.72154],[23.16398,15.71493],[23.18183,15.71361],[23.21342,15.71559],[23.24638,15.70171],[23.2711,15.70501],[23.29513,15.69973],[23.31642,15.68915],[23.39332,15.69907],[23.42285,15.6984],[23.42971,15.71361],[23.48877,15.74335],[23.59108,15.7645],[23.67828,15.76251],[23.73458,15.74798],[23.75518,15.75062],[23.77235,15.75062],[23.7854,15.74335],[23.80737,15.74401],[23.83483,15.73872],[23.85887,15.74203],[23.87809,15.73079],[23.89869,15.72881],[23.91929,15.7189],[23.93783,15.7222],[23.96186,15.72022],[23.98178,15.70634],[24,15.6988],[24,19.5],[19.75841,21.70326],[18.5992,22.2463],[18.03325,22.50956],[18.01083,22.51362],[17.99974,22.51499],[16.93737,23.01308],[15.99997,23.44922],[14.99767,23.00427],[15.19752,21.99847],[15.19994,21.49606],[15.28202,21.45203],[15.48187,20.99663],[15.50754,20.97375],[15.50252,20.9636],[15.49475,20.95088],[15.4806,20.90365],[15.42213,20.87259],[15.40937,20.84038],[15.42565,20.79667],[15.52296,20.73115],[15.52894,20.70027],[15.54316,20.68737],[15.59632,20.60505],[15.60005,20.58699],[15.59553,20.56892],[15.62289,20.53851],[15.67914,20.53102],[15.71067,20.50809],[15.72161,20.48066],[15.74078,20.45838],[15.7599,20.46013],[15.99843,20.36163],[15.75588,19.94567],[15.66698,19.31669],[15.59181,18.79144],[15.53348,16.74936],[14.99431,16.27434],[14.64876,15.99965],[14.39523,15.74564],[14.23537,15.536],[14.08101,15.3171],[14.00001,15.20149],[13.9705,15.16357],[13.87233,15.05209],[13.78997,14.87381],[13.79616,14.79729],[13.8106,14.73139],[13.77336,14.70155],[13.7471,14.70359],[13.67415,14.64187],[13.69459,14.62],[13.69289,14.55899],[13.63436,14.51253],[13.57308,14.51393],[13.50102,14.48495],[13.47015,14.46395],[13.4712,14.41127],[13.63293,13.71035],[14.0835,13.08413],[14.20167,12.53671],[14.19995,12.50047],[14.18176,12.47765],[14.19104,12.43739],[14.17645,12.41592],[14.21404,12.36763],[14.33971,12.36625],[14.46537,12.35682],[14.54229,12.28164],[14.55534,12.23466],[14.59311,12.22526],[14.61371,12.18902],[14.66453,12.19573],[14.68177,12.15968],[14.65505,12.13974],[14.65269,12.11701],[14.63658,12.09429],[14.65656,12.0663],[14.62786,12.05731],[14.62113,12.03354],[14.65739,11.96],[14.6408,11.93451],[14.6407,11.9144],[14.60479,11.8688],[14.61262,11.78299],[14.55137,11.71889],[14.59735,11.6969],[14.64334,11.65608],[14.64538,11.5776],[14.62306,11.54778],[14.61996,11.51526],[14.51556,11.474],[14.4661,11.42914],[14.43038,11.41658],[14.33696,11.33695],[14.23805,11.29233],[14.22565,11.27061],[14.18442,11.2381],[14.14799,11.24836],[14.10575,11.26695],[14.08822,11.26938],[13.97554,11.31682],[13.94049,11.21963],[13.87659,11.1359],[13.7955,11.00888],[13.73408,11.00349],[13.71573,10.9536],[13.72852,10.92327],[13.71432,10.85821],[13.65068,10.80933],[13.62684,10.7129],[13.57921,10.68088],[13.57829,10.62024],[13.56547,10.61826],[13.57462,10.55689],[13.59201,10.5247],[13.57678,10.51106],[13.53957,10.50823],[13.53608,10.47981],[13.51336,10.43518],[13.54207,10.37023],[13.51916,10.27002],[13.49947,10.2483],[13.50175,10.20765],[13.47755,10.1936],[13.45609,10.17145],[13.42417,10.15147],[13.43404,10.14411],[13.43018,10.11783],[13.39774,10.13285],[13.39826,10.12083],[13.36857,10.11422],[13.35227,10.10491],[13.33871,10.11723],[13.30867,10.10251],[13.29512,10.07427],[13.29547,10.05158],[13.24913,10.03431],[13.25222,9.99779],[13.27987,9.98629],[13.28678,9.97462],[13.27995,9.93861],[13.26356,9.92881],[13.23481,9.91764],[13.24726,9.86049],[13.26666,9.8517],[13.30529,9.82803],[13.26701,9.78813],[13.21074,9.55277],[13.02469,9.50186],[12.97424,9.46016],[12.93477,9.41303],[12.85382,9.36812],[12.87425,9.3452],[12.89469,9.35208],[12.91238,9.35626],[12.92732,9.33604],[12.91149,9.30997],[12.91213,9.24053],[12.88733,9.14637],[12.89343,9.11525],[12.88579,9.07058],[12.86786,9.01915],[12.82181,8.97173],[12.81147,8.92432],[12.80648,8.84953],[12.81523,8.83174],[12.78328,8.7473],[12.71938,8.76028],[12.70787,8.73536],[12.6991,8.67243],[12.67883,8.64704],[12.65221,8.64927],[12.61186,8.63793],[12.59982,8.59353],[12.50474,8.64222],[12.43437,8.6203],[12.46223,8.5376],[12.33627,8.44946],[12.34196,8.43052],[12.31194,8.42244],[12.2986,8.44432],[12.26307,8.44764],[12.24558,8.38363],[12.25,8.16731],[12.19316,8.11354],[12.20773,7.9673],[12.07345,7.79448],[12.05575,7.74345],[11.9996,7.67337],[12.01976,7.52255],[11.91632,7.46432],[11.92926,7.43682],[11.92572,7.38754],[11.88412,7.36358],[11.88097,7.32328],[11.84447,7.26446],[11.88133,7.24356],[11.85856,7.21267],[11.86228,7.14818],[11.88248,7.10549],[11.86787,7.08182],[11.82714,7.08272],[11.78916,7.06454],[11.77726,7.04499],[11.726,7.04885],[11.65962,6.99598],[11.62621,6.98399],[11.60515,6.91749],[11.56853,6.89787],[11.55663,6.85643],[11.57623,6.84423],[11.58191,6.81631],[11.59583,6.7993],[11.57199,6.78775],[11.58385,6.73801],[11.55538,6.71218],[11.55201,6.67142],[11.52286,6.64285],[11.51843,6.61429],[11.49171,6.60184],[11.4595,6.60575],[11.4198,6.59721],[11.4324,6.54876],[11.42304,6.53169],[11.36311,6.52619],[11.35853,6.50265],[11.32375,6.50367],[11.28027,6.53572],[11.2416,6.52343],[11.22089,6.53912],[11.20018,6.5357],[11.20112,6.5123],[11.13751,6.50391],[11.13939,6.53078],[11.11655,6.51399],[11.09371,6.52176],[11.09573,6.67836],[11.06342,6.71627],[11.03215,6.71204],[11.00638,6.69689],[10.97718,6.68584],[10.94816,6.68986],[10.91639,6.70753],[10.91429,6.76453],[10.89297,6.76699],[10.87665,6.79624],[10.84926,6.80814],[10.82462,6.82549],[10.81945,6.85399],[10.84203,6.93183],[10.79839,6.96258],[10.7546,6.96432],[10.66404,7.04425],[10.64414,7.04584],[10.60502,7.0665],[10.59886,7.13759],[10.57622,7.16234],[10.56729,7.14355],[10.55287,6.99393],[10.53226,6.92365],[10.49518,6.91744],[10.489,6.89525],[10.46634,6.91941],[10.21638,6.88641],[10.17788,6.94035],[10.1751,7.00246],[10.15308,7.04003],[9.8654,6.77597],[9.78043,6.79245],[9.70773,6.51288],[9.5986,6.52589],[9.58285,6.47614],[9.52123,6.44219],[9.46785,6.45191],[9.43148,6.31767],[9.34453,6.35548],[9.33378,6.29464],[9.30655,6.25837],[9.26583,6.18036],[9.21322,6.17042],[9.16906,6.13541],[9.15237,6.09494],[9.05718,6.00718],[9.04781,5.99616],[8.94505,5.91412],[8.91531,5.90029],[8.90478,5.8625],[8.87812,5.8592],[8.84047,5.82311],[8.85226,5.79932],[8.88602,5.80012],[8.88099,5.77052],[8.851,5.7079],[8.8375,5.70267],[8.84277,5.67855],[8.90572,5.62163],[8.919,5.56791],[8.87141,5.48783],[8.8325,5.43275],[8.84579,5.38587],[8.83413,5.32886],[8.8132,5.28122],[8.81372,5.21911],[8.82085,5.18122],[8.78321,5.11578],[8.74654,5.10221],[8.72433,5.05778],[8.72009,5.03693],[8.68563,5.00514],[8.69775,4.98807],[8.6736,4.9727],[8.66839,4.94859],[8.65219,4.9409],[8.651,4.91401],[8.63332,4.90628],[8.62174,4.90446],[8.59916,4.87255],[8.61994,4.8525],[8.63454,4.82219],[8.59514,4.80429],[8.54751,4.80009],[8.52502,4.7643],[8.5282,4.7293],[8.54511,4.71346],[4,0],[-26,0],[-26,-17]]]}},{"type":"Feature","properties":{"cq_zone_name":"Eastern Zone of Africa","cq_zone_number":37,"cq_zone_name_loc":[6,51]},"geometry":{"type":"Polygon","coordinates":[[[30.85054,3.49925],[30.85136,3.49054],[30.85433,3.48904],[30.86608,3.49423],[30.88806,3.55591],[30.90385,3.57441],[30.90728,3.59154],[30.91896,3.59908],[30.9272,3.61553],[30.93956,3.62033],[30.94917,3.6354],[30.94848,3.65185],[30.95878,3.67103],[30.96839,3.67446],[30.97251,3.69091],[30.98693,3.70324],[31.00616,3.70735],[31.01989,3.69433],[31.06041,3.72037],[31.06246,3.72859],[31.05903,3.73407],[31.07414,3.74435],[31.08787,3.7423],[31.0913,3.73407],[31.09405,3.73819],[31.10023,3.73613],[31.10641,3.74093],[31.10092,3.74435],[31.11465,3.75531],[31.15448,3.77793],[31.16203,3.79026],[31.17851,3.79437],[31.29043,3.79368],[31.54518,3.65116],[31.57745,3.67515],[31.63238,3.69022],[31.69212,3.71009],[31.69487,3.71283],[31.70242,3.71489],[31.70311,3.71146],[31.71066,3.71626],[31.72233,3.73407],[31.72576,3.73476],[31.73126,3.75257],[31.7395,3.74778],[31.74224,3.75394],[31.77177,3.77861],[31.80336,3.79916],[31.80404,3.80876],[31.79649,3.81355],[31.79786,3.81903],[31.79237,3.82725],[31.79855,3.83137],[31.80336,3.83548],[31.82052,3.82451],[31.84455,3.80191],[31.86103,3.79368],[31.87751,3.77655],[31.87751,3.76422],[31.88232,3.75874],[31.88919,3.75943],[31.89949,3.7512],[31.90086,3.73819],[31.90704,3.73819],[31.91322,3.72517],[31.91322,3.71831],[31.91803,3.7142],[31.92352,3.71009],[31.94137,3.67378],[31.9448,3.64774],[31.95442,3.60936],[31.95304,3.5936],[31.95442,3.58606],[32.03956,3.58606],[32.04505,3.59291],[32.0581,3.58606],[32.06016,3.57989],[32.07115,3.5751],[32.08488,3.5607],[32.08351,3.54631],[32.08831,3.54768],[32.08763,3.53466],[32.08419,3.53466],[32.08625,3.52918],[32.10067,3.52986],[32.20298,3.50519],[32.20436,3.51273],[32.20298,3.5237],[32.21122,3.5374],[32.20848,3.54631],[32.21191,3.55591],[32.22015,3.56139],[32.21534,3.56824],[32.21672,3.57578],[32.2071,3.59291],[32.20161,3.59086],[32.19543,3.5936],[32.19543,3.59771],[32.41516,3.74367],[32.72003,3.76491],[32.90199,3.81287],[33.02764,3.8896],[33.1945,3.77724],[33.51242,3.75052],[33.99169,4.21973],[34.08645,4.32655],[34.3769,4.6168],[34.65843,4.76051],[35.07316,4.9172],[35.24345,4.98629],[35.26336,4.94524],[35.40824,5.03212],[35.42816,5.00681],[35.3897,4.91993],[35.46936,4.92951],[35.54008,4.91514],[35.55999,4.9172],[35.56617,4.89872],[35.51879,4.79404],[35.52154,4.76051],[35.59707,4.62502],[35.70144,4.58942],[35.70556,4.60243],[35.7035,4.60927],[35.70419,4.62433],[35.7035,4.63665],[35.70694,4.64007],[35.70556,4.64897],[35.7138,4.65581],[35.71517,4.66813],[35.72959,4.67292],[35.7344,4.67977],[35.74127,4.67977],[35.74607,4.68182],[35.75225,4.67977],[35.76942,4.68729],[35.77285,4.67977],[35.78041,4.67908],[35.78109,4.62638],[35.86143,4.6257],[35.94863,4.63117],[35.80925,4.79131],[35.81886,5.10325],[35.8319,5.12103],[35.8374,5.12445],[35.8525,5.15112],[35.85662,5.1477],[35.86006,5.16617],[35.86349,5.17027],[35.86555,5.18532],[35.85594,5.19352],[35.85456,5.2113],[35.8422,5.22293],[35.84014,5.23387],[35.8271,5.24754],[35.82778,5.26053],[35.84289,5.27831],[35.85044,5.29267],[35.85662,5.28993],[35.8628,5.30771],[35.85937,5.32275],[35.83946,5.32685],[35.83946,5.33506],[35.82023,5.33711],[35.81886,5.34258],[35.80444,5.34805],[35.79414,5.34395],[35.77766,5.35899],[35.76942,5.35488],[35.77423,5.34873],[35.755,5.35762],[35.75225,5.37061],[35.72547,5.37813],[35.71723,5.38975],[35.65887,5.38701],[35.65544,5.39522],[35.61836,5.38223],[35.61767,5.40342],[35.60051,5.4],[35.58471,5.41778],[35.56686,5.41162],[35.54008,5.42325],[35.50712,5.42325],[35.47348,5.41231],[35.45082,5.3918],[35.42266,5.37198],[35.33546,5.34463],[35.31761,5.33506],[35.31761,5.34326],[35.31074,5.35147],[35.30319,5.34941],[35.29014,5.37813],[35.29426,5.42871],[35.3025,5.44033],[35.31005,5.46357],[35.30662,5.47041],[35.31486,5.49775],[35.12535,5.62418],[35.13015,5.68773],[35.04089,5.83939],[35.00656,5.88994],[34.99763,5.89677],[35.00381,5.89609],[35.00999,5.9077],[35.01068,5.91794],[34.999,5.93365],[34.99282,5.95141],[34.99832,5.97941],[35.00724,5.99238],[35.00862,6.00809],[34.99626,6.03677],[35.00381,6.07569],[34.99626,6.08252],[34.99008,6.07842],[34.98802,6.08934],[34.97428,6.09003],[34.97291,6.10778],[34.96398,6.12075],[34.97016,6.17605],[34.97772,6.17468],[34.9736,6.20677],[34.96467,6.21359],[34.96604,6.22315],[34.96055,6.22998],[34.9633,6.2368],[34.94957,6.24841],[34.96192,6.25591],[34.96398,6.27707],[34.95918,6.2839],[34.9681,6.28868],[34.9736,6.30847],[34.98802,6.31598],[34.99076,6.34123],[35.00244,6.35215],[34.98939,6.37808],[34.99214,6.39446],[35.00656,6.4006],[35.01342,6.40742],[35.01274,6.42653],[35.01892,6.43608],[35.01823,6.45859],[35.00862,6.47429],[34.98115,6.48589],[34.97978,6.49612],[34.97222,6.5084],[34.9578,6.50499],[34.95849,6.51931],[34.93583,6.56025],[34.91043,6.57116],[34.91317,6.57866],[34.8912,6.57866],[34.88433,6.58753],[34.89051,6.60049],[34.85481,6.61004],[34.84108,6.60117],[34.81086,6.60527],[34.79095,6.58958],[34.77653,6.60117],[34.76898,6.59367],[34.76554,6.60936],[34.73945,6.63937],[34.72778,6.63937],[34.70718,6.67279],[34.71267,6.68438],[34.67971,6.69938],[34.66941,6.7137],[34.66049,6.71234],[34.65362,6.73212],[34.62616,6.74303],[34.61998,6.72189],[34.61311,6.72462],[34.61242,6.73075],[34.58633,6.72871],[34.55543,6.73689],[34.53277,6.74712],[34.52934,6.7553],[34.53689,6.7553],[34.53346,6.79076],[34.54376,6.79826],[34.53483,6.80712],[34.54101,6.8153],[34.52728,6.84121],[34.52728,6.85621],[34.51423,6.85621],[34.50943,6.86439],[34.51835,6.86712],[34.50737,6.88075],[34.49775,6.88211],[34.46891,6.91347],[34.43595,6.91347],[34.39476,6.92574],[34.38171,6.91415],[34.34326,6.92642],[34.33502,6.92097],[34.31304,6.94687],[34.29519,6.95028],[34.29451,6.96187],[34.30206,6.97618],[34.28146,6.99117],[34.26292,7.01162],[34.23408,7.0048],[34.22309,7.01912],[34.21966,7.03479],[34.19426,7.04433],[34.1922,7.07023],[34.18876,7.0859],[34.20043,7.09544],[34.18876,7.1152],[34.19563,7.12405],[34.1613,7.1479],[34.14276,7.14722],[34.12902,7.1663],[34.10293,7.17106],[34.0995,7.1806],[34.10293,7.1881],[34.06585,7.2208],[34.06517,7.2133],[34.05006,7.22488],[34.04045,7.22488],[34.02122,7.24396],[34.01092,7.26984],[34.03083,7.26575],[34.04182,7.27393],[34.03083,7.33045],[34.03633,7.35565],[34.00405,7.38698],[34.00817,7.40128],[34.00062,7.42307],[33.97934,7.44349],[33.95942,7.45098],[33.95668,7.46732],[33.92852,7.47277],[33.92784,7.48162],[33.89968,7.51566],[33.90449,7.52655],[33.89762,7.53744],[33.87908,7.54901],[33.87359,7.54493],[33.86466,7.5599],[33.82278,7.56331],[33.7857,7.58781],[33.78021,7.60142],[33.76236,7.60619],[33.75274,7.62184],[33.73832,7.62252],[33.73558,7.63954],[33.71704,7.66131],[33.70193,7.66063],[33.66622,7.68581],[33.64219,7.69466],[33.63533,7.68921],[33.62709,7.69806],[33.57971,7.68853],[33.56597,7.69874],[33.54675,7.69261],[33.53714,7.69942],[33.54263,7.70418],[33.53096,7.71439],[33.52409,7.71439],[33.52409,7.72528],[33.50418,7.73616],[33.48564,7.73956],[33.4719,7.75045],[33.45474,7.74365],[33.43139,7.75249],[33.41972,7.74093],[33.40255,7.7382],[33.40118,7.7314],[33.38401,7.74024],[33.36685,7.72936],[33.36479,7.72119],[33.35037,7.7314],[33.34281,7.71303],[33.31947,7.71235],[33.3181,7.72664],[33.24119,7.77766],[33.22334,7.77154],[33.16429,7.8008],[33.15399,7.79127],[33.10661,7.78243],[33.09288,7.80148],[33.04893,7.79195],[33.04756,7.81032],[33.02764,7.83073],[33.01666,7.84841],[33.00499,7.85862],[33.00361,7.86882],[32.99949,7.87426],[33.00567,7.89126],[33.01803,7.89262],[33.00018,7.91643],[33.00499,7.92663],[33.00636,7.93819],[32.99537,7.94431],[33.0091,7.95111],[33.01597,7.95927],[33.03108,7.95995],[33.04,7.96743],[33.04,7.97763],[33.0352,7.99327],[33.04138,8.00143],[33.03863,8.01027],[33.04962,8.01503],[33.06129,8.01503],[33.0661,8.02183],[33.07571,8.01979],[33.08258,8.04699],[33.08052,8.05583],[33.0867,8.06058],[33.08464,8.07486],[33.10043,8.0769],[33.11622,8.06126],[33.12309,8.06398],[33.11897,8.10953],[33.14781,8.11565],[33.16291,8.11225],[33.16703,8.12992],[33.17596,8.12857],[33.19175,8.12517],[33.1945,8.13604],[33.18214,8.16051],[33.18969,8.17003],[33.17596,8.1775],[33.17527,8.19178],[33.16703,8.19653],[33.19862,8.21692],[33.20617,8.23459],[33.19999,8.2475],[33.17733,8.2543],[33.17115,8.27876],[33.17459,8.28691],[33.17047,8.29575],[33.17184,8.30118],[33.19518,8.29711],[33.20068,8.31409],[33.19175,8.33312],[33.2048,8.3304],[33.21579,8.33855],[33.21785,8.36029],[33.19656,8.35282],[33.18695,8.38814],[33.1945,8.39494],[33.18901,8.40377],[33.19862,8.40988],[33.2151,8.40377],[33.2151,8.42822],[33.22059,8.43569],[33.23501,8.42211],[33.24943,8.43841],[33.24188,8.44656],[33.25904,8.44928],[33.2714,8.46082],[33.28239,8.45539],[33.28651,8.4418],[33.29612,8.4418],[33.30917,8.46761],[33.33663,8.44724],[33.36685,8.44724],[33.39706,8.42618],[33.4053,8.44316],[33.42384,8.45267],[33.44787,8.4452],[33.46572,8.45811],[33.47602,8.45607],[33.48701,8.46286],[33.48838,8.47848],[33.49937,8.48052],[33.52134,8.46829],[33.56117,8.47237],[33.56735,8.45131],[33.59825,8.44452],[33.6161,8.46965],[33.65661,8.45607],[33.6621,8.44792],[33.67515,8.44656],[33.67996,8.4126],[33.68888,8.38882],[33.71292,8.37456],[33.7342,8.36641],[33.74862,8.37863],[33.76785,8.3698],[33.79257,8.38339],[33.78982,8.38679],[33.80218,8.39833],[33.81729,8.40445],[33.82553,8.39901],[33.83651,8.40988],[33.87496,8.41396],[33.87634,8.42347],[33.88526,8.42822],[33.87565,8.43909],[33.87771,8.4615],[33.899,8.48323],[33.92303,8.48867],[33.9299,8.4975],[33.9505,8.49885],[33.95736,8.49546],[33.97316,8.50225],[33.97522,8.4941],[33.99375,8.4907],[34.00199,8.4975],[34.01229,8.48799],[34.02465,8.4907],[34.03427,8.50293],[34.03633,8.51787],[34.04388,8.53009],[34.06173,8.5362],[34.08645,8.55725],[34.09812,8.55386],[34.1304,8.59867],[34.1407,8.59799],[34.14413,8.60682],[34.1455,9.03022],[34.10568,9.50121],[34.10224,9.55809],[34.16198,9.76522],[34.22309,9.88633],[34.21623,9.92489],[34.23339,10.04864],[34.33296,10.11895],[34.32472,10.13517],[34.33364,10.15815],[34.33708,10.18856],[34.34806,10.22843],[34.34463,10.25951],[34.29794,10.39867],[34.30824,10.45337],[34.29657,10.47768],[34.28077,10.53777],[34.29245,10.55667],[34.29725,10.57219],[34.29451,10.58502],[34.39132,10.67747],[34.46548,10.81307],[34.60281,10.90478],[34.70443,10.82049],[34.76348,10.75708],[34.7937,10.75573],[34.78958,10.72403],[34.77859,10.71863],[34.78065,10.71053],[34.78614,10.70514],[34.804,10.72605],[34.83352,10.71256],[34.85481,10.72268],[34.86854,10.7328],[34.87815,10.75776],[34.86717,10.76383],[34.86923,10.8043],[34.94407,10.86904],[34.98596,10.89129],[34.98596,10.90815],[34.95986,10.93512],[34.96398,10.9486],[34.95231,10.9486],[35.00038,11.18715],[34.96398,11.2343],[34.94133,11.23834],[34.92965,11.23767],[34.92897,11.24642],[34.94751,11.2572],[34.94545,11.26797],[34.96604,11.28077],[34.98802,11.34002],[35.04501,11.4208],[35.04638,11.47935],[35.07659,11.53519],[35.08277,11.64416],[35.07041,11.66904],[35.06012,11.68384],[35.06286,11.69056],[35.04364,11.73426],[35.08827,11.80821],[35.26954,11.94394],[35.31074,12.04536],[35.45906,12.29572],[35.66162,12.63698],[35.6987,12.67249],[35.71174,12.66914],[35.71861,12.67249],[35.74058,12.65775],[35.76461,12.66445],[35.76393,12.67182],[35.77354,12.67316],[35.77354,12.66311],[36.00906,12.72474],[36.03035,12.71804],[36.09352,12.71335],[36.10244,12.69862],[36.09901,12.68991],[36.11755,12.68656],[36.16012,12.69795],[36.17523,12.90351],[36.15119,12.91756],[36.14364,12.93496],[36.14776,12.95504],[36.16355,12.9798],[36.16218,13.01793],[36.17042,13.02061],[36.28234,13.37291],[36.37916,13.52851],[36.38946,13.5452],[36.39427,13.55922],[36.40937,13.65999],[36.44989,13.77606],[36.46774,13.78206],[36.46911,13.79207],[36.47598,13.7974],[36.47804,13.81674],[36.49589,13.83474],[36.46705,13.97804],[36.55975,14.25706],[36.54808,14.26504],[36.52336,14.33823],[36.45675,15.03698],[36.43341,15.16691],[36.50207,15.2239],[36.53434,15.2292],[36.6188,15.45235],[36.63734,15.48213],[36.63665,15.49537],[36.62979,15.50926],[36.65588,15.58137],[36.70394,15.73872],[36.76712,15.83717],[36.89209,16.20874],[36.89552,16.23313],[36.90788,16.2384],[36.92436,16.2595],[36.92504,16.26477],[36.95594,16.28389],[36.94633,16.29377],[36.95114,16.31091],[36.93534,16.33068],[36.93328,16.37285],[36.95045,16.36889],[36.9532,16.38932],[36.96075,16.39722],[36.96281,16.42225],[36.96693,16.4341],[36.9374,16.43608],[36.92573,16.45715],[36.90582,16.43806],[36.89071,16.45584],[36.89277,16.4802],[36.88934,16.50193],[36.87561,16.50719],[36.85981,16.53616],[36.86737,16.54274],[36.8708,16.55459],[36.8811,16.5513],[36.88728,16.5921],[36.88247,16.6204],[36.88797,16.625],[36.89689,16.6454],[36.8914,16.65855],[36.90238,16.68552],[36.91131,16.6921],[36.9223,16.68289],[36.93534,16.70591],[36.97242,16.71117],[36.98616,16.73419],[37.00401,16.74931],[37.00607,16.7789],[37.01362,16.80585],[37.00607,16.80585],[37.01705,16.83017],[36.99989,16.84331],[36.99508,16.8696],[36.98959,16.87354],[36.99096,16.88406],[37.0047,16.888],[36.9992,16.90968],[36.99852,16.92676],[37.01293,16.93267],[37.01568,16.94252],[37.00332,16.94778],[37.00264,16.96814],[36.99234,16.9885],[37.01911,17.0233],[37.02667,17.02461],[37.03079,17.03052],[37.01362,17.04562],[37.01088,17.064],[36.99989,17.07713],[37.00676,17.08501],[37.01225,17.08501],[37.01637,17.09288],[37.01362,17.09879],[37.02598,17.10666],[37.04658,17.1001],[37.04864,17.09485],[37.08572,17.07844],[37.1125,17.09354],[37.12486,17.09222],[37.14614,17.08566],[37.16331,17.06925],[37.19901,17.0686],[37.21,17.07844],[37.26287,17.08632],[37.29721,17.0896],[37.31987,17.09748],[37.3487,17.0745],[37.36106,17.06203],[37.3954,17.05481],[37.40501,17.06006],[37.40638,17.07319],[37.41531,17.07844],[37.41256,17.08763],[37.42767,17.10207],[37.44003,17.09944],[37.462,17.12044],[37.46131,17.13685],[37.46955,17.14932],[37.47299,17.16375],[37.48191,17.17425],[37.48672,17.19327],[37.50732,17.20245],[37.4929,17.22475],[37.49839,17.25754],[37.52174,17.26541],[37.52037,17.27656],[37.50389,17.28836],[37.49839,17.30803],[37.51213,17.3408],[37.611,17.37357],[37.74147,17.38275],[37.74627,17.38668],[37.76207,17.3834],[37.76962,17.4142],[37.7758,17.4463],[37.78198,17.47774],[37.77442,17.48494],[37.78747,17.50131],[37.80189,17.49804],[37.81219,17.50459],[37.8218,17.50131],[37.83416,17.50524],[37.84172,17.50131],[37.85339,17.49346],[37.86506,17.46464],[37.87055,17.44761],[37.90077,17.45416],[37.9248,17.46529],[37.9557,17.46791],[37.97699,17.48625],[37.97149,17.50459],[38.00445,17.56221],[38.02848,17.54388],[38.03054,17.54977],[38.03741,17.54977],[38.04084,17.56548],[38.05252,17.56286],[38.05732,17.56875],[38.07449,17.54584],[38.08204,17.5203],[38.09715,17.51572],[38.09783,17.54453],[38.10607,17.56417],[38.13285,17.57661],[38.13697,17.57137],[38.17543,17.58643],[38.19534,17.5537],[38.20701,17.55828],[38.20632,17.56548],[38.2228,17.55893],[38.23516,17.55042],[38.26194,17.5681],[38.26194,17.57595],[38.26606,17.58774],[38.26469,17.60279],[38.27499,17.60868],[38.28048,17.63878],[38.34503,17.65252],[38.38897,17.73822],[38.38966,17.75457],[38.45077,17.89903],[38.58123,18.02118],[39.6967,18.538],[42.52807,13.5926],[42.90161,13.36289],[44.20898,11.26461],[53.17382,13.9234],[67,22],[67,-3],[55,-3],[42,-8],[42,-15],[40,-17.5],[36,-30],[32.8965,-26.86022],[32.8862,-26.85777],[32.85804,-26.8639],[32.77359,-26.86267],[32.72415,-26.86819],[32.54425,-26.8639],[32.33001,-26.86451],[32.32246,-26.85287],[32.30941,-26.85532],[32.25517,-26.84675],[32.25036,-26.84001],[32.22084,-26.83204],[32.20779,-26.84123],[32.20367,-26.85471],[32.1865,-26.86329],[32.16041,-26.85838],[32.14393,-26.84981],[32.1405,-26.84184],[32.13501,-26.83939],[32.13432,-26.52588],[32.07801,-26.40602],[32.07389,-26.30573],[32.10479,-26.16037],[32.08557,-26.03026],[32.08625,-26.00743],[32.03064,-25.99941],[32.01003,-25.99447],[32.00248,-25.99694],[31.97502,-25.95249],[31.9297,-25.83884],[31.97776,-25.69352],[31.99562,-25.67681],[32.0066,-25.64524],[32.00523,-25.60438],[32.00111,-25.58643],[31.99424,-25.5251],[31.97982,-25.52324],[31.97708,-25.50899],[31.97845,-25.45816],[31.98669,-25.44328],[31.99012,-25.4284],[32.01484,-25.38684],[32.02789,-25.25712],[32.03407,-25.13286],[32.02926,-25.05886],[32.01484,-24.92443],[31.99699,-24.68945],[32.00935,-24.45903],[31.98532,-24.30393],[31.90704,-24.18059],[31.88163,-23.953],[31.76834,-23.88459],[31.69761,-23.72187],[31.68937,-23.62692],[31.65847,-23.58161],[31.56028,-23.48152],[31.54792,-23.41285],[31.55342,-23.28362],[31.56303,-23.18708],[31.3076,-22.42246],[31.37626,-22.38119],[31.80198,-21.94751],[32.41378,-21.31817],[32.43301,-21.31945],[32.43507,-21.31561],[32.45086,-21.31177],[32.46665,-21.31625],[32.47627,-21.33224],[32.49755,-21.34055],[32.4337,-21.25227],[32.42477,-21.24267],[32.4282,-21.23243],[32.41584,-21.22667],[32.4076,-21.21194],[32.40005,-21.20874],[32.39387,-21.19082],[32.40074,-21.17993],[32.41516,-21.17545],[32.3925,-21.16201],[32.38975,-21.16649],[32.38288,-21.16201],[32.38975,-21.1588],[32.37808,-21.14664],[32.36228,-21.14087],[32.37808,-21.12358],[32.3822,-21.1223],[32.37945,-21.11461],[32.48794,-20.99094],[32.52365,-20.9095],[32.50167,-20.81454],[32.49481,-20.71759],[32.50099,-20.71181],[32.49206,-20.69832],[32.49069,-20.67648],[32.48313,-20.66877],[32.49206,-20.66684],[32.48451,-20.65913],[32.49687,-20.63022],[32.50373,-20.62893],[32.49481,-20.61994],[32.50511,-20.62315],[32.49618,-20.61222],[32.50717,-20.6013],[32.52021,-20.59487],[32.56553,-20.55566],[32.66784,-20.55566],[32.75848,-20.41801],[32.8038,-20.36716],[32.80311,-20.34399],[32.85667,-20.29376],[32.87109,-20.27766],[32.86491,-20.27251],[32.86216,-20.26027],[32.8704,-20.25061],[32.87384,-20.2345],[32.86079,-20.22806],[32.85667,-20.22935],[32.84843,-20.22226],[32.84774,-20.19648],[32.87246,-20.18811],[32.8704,-20.16942],[32.86354,-20.15524],[32.86903,-20.14557],[32.8601,-20.13525],[32.86628,-20.1288],[32.86972,-20.10495],[32.88414,-20.09399],[32.89306,-20.09205],[32.89375,-20.10624],[32.91091,-20.1114],[32.92327,-20.09979],[32.93838,-20.09786],[32.91915,-20.05271],[32.92396,-20.04304],[32.9425,-20.04174],[32.9528,-20.03465],[32.96035,-20.03916],[32.98164,-20.03658],[32.98988,-20.02949],[33.0043,-20.0282],[33.02764,-20.034],[33.0249,-19.98884],[33.02558,-19.95464],[33.04824,-19.84423],[33.04893,-19.81],[33.06198,-19.77575],[33.01528,-19.74926],[33.00567,-19.75185],[33.00293,-19.74732],[32.98438,-19.7415],[32.9734,-19.73116],[32.96791,-19.73181],[32.95623,-19.715],[32.98645,-19.6885],[32.97546,-19.65035],[32.95692,-19.65811],[32.93563,-19.67363],[32.8862,-19.68333],[32.87727,-19.67945],[32.85186,-19.68333],[32.82989,-19.66975],[32.845,-19.65423],[32.84568,-19.63418],[32.8553,-19.62966],[32.85736,-19.61996],[32.84637,-19.60767],[32.85255,-19.58697],[32.85736,-19.54427],[32.84706,-19.53003],[32.84088,-19.51579],[32.85118,-19.48537],[32.83882,-19.47825],[32.7832,-19.47113],[32.77565,-19.45624],[32.78251,-19.42775],[32.77908,-19.41156],[32.78938,-19.38889],[32.77771,-19.3578],[32.81272,-19.33642],[32.82165,-19.31957],[32.83607,-19.31439],[32.85598,-19.27874],[32.8498,-19.24439],[32.85461,-19.23596],[32.85049,-19.22818],[32.86079,-19.22689],[32.86903,-19.13869],[32.87658,-19.12896],[32.87727,-19.11598],[32.88345,-19.103],[32.87658,-19.08678],[32.87658,-19.07575],[32.86422,-19.07705],[32.85049,-19.06147],[32.84225,-19.0076],[32.80311,-19.01799],[32.77839,-19.01604],[32.77633,-19.02448],[32.71728,-19.02448],[32.70973,-18.97708],[32.69737,-18.93812],[32.742,-18.92903],[32.7317,-18.91993],[32.72415,-18.90304],[32.72552,-18.87836],[32.70149,-18.84197],[32.72346,-18.82052],[32.73033,-18.82442],[32.74818,-18.81012],[32.75505,-18.81597],[32.77702,-18.79777],[32.79487,-18.79647],[32.81135,-18.78152],[32.84431,-18.77957],[32.87658,-18.79842],[32.91091,-18.79192],[32.93563,-18.76722],[32.94525,-18.73666],[32.9528,-18.70805],[32.95692,-18.70675],[32.96035,-18.68723],[32.91778,-18.62543],[32.90748,-18.60851],[32.91023,-18.58964],[32.89032,-18.57662],[32.89993,-18.54473],[32.8759,-18.51868],[32.89718,-18.51022],[32.90954,-18.49785],[32.92465,-18.50501],[32.94799,-18.49329],[32.97683,-18.47115],[32.98164,-18.49459],[33.02696,-18.46594],[33.02902,-18.43207],[33.01734,-18.42686],[33.02696,-18.40861],[33.03245,-18.38907],[33.04893,-18.37538],[33.05099,-18.38451],[33.05923,-18.3819],[33.06678,-18.34932],[33.05168,-18.33628],[33.05442,-18.31803],[33.03726,-18.31868],[33.01734,-18.29847],[33.01528,-18.26261],[33.02284,-18.25088],[33.01391,-18.2437],[33.02215,-18.23001],[33.00842,-18.1974],[33.01048,-18.17717],[32.98232,-18.15695],[32.97203,-18.13542],[32.98026,-18.11519],[32.96585,-18.08843],[32.95005,-18.05448],[32.96035,-18.05187],[32.94799,-18.03882],[32.95074,-18.02967],[32.93701,-18.03229],[32.93907,-18.014],[32.95623,-18.00225],[32.95005,-17.99049],[32.93975,-17.98788],[32.94525,-17.97743],[32.95143,-17.96241],[32.96791,-17.96437],[32.97477,-17.91864],[32.98301,-17.91864],[32.97752,-17.90949],[32.95555,-17.91276],[32.95211,-17.8814],[32.96241,-17.8729],[32.96791,-17.84284],[32.95967,-17.81735],[32.97203,-17.801],[33.01528,-17.80623],[33.01391,-17.78596],[33.02284,-17.78008],[33.01803,-17.76569],[33.0297,-17.75916],[33.02764,-17.74411],[33.00773,-17.74411],[33.01322,-17.71991],[33.02833,-17.72384],[33.01597,-17.70879],[33.02421,-17.66758],[33.04687,-17.63748],[33.04962,-17.60214],[33.03314,-17.57793],[33.00842,-17.56483],[32.994,-17.56876],[32.98232,-17.55632],[32.98095,-17.54192],[32.96653,-17.51835],[32.96447,-17.47971],[32.97477,-17.47644],[32.99194,-17.4522],[33.00087,-17.45286],[32.99675,-17.44369],[33.01116,-17.42862],[33.00567,-17.39783],[33.01597,-17.39258],[33.03176,-17.36178],[33.05168,-17.34671],[32.99743,-17.30738],[32.98988,-17.18541],[32.93907,-17.06926],[32.83264,-16.92283],[32.91023,-16.89786],[32.9631,-16.78285],[32.98988,-16.69869],[32.98095,-16.70724],[32.93014,-16.69934],[32.92259,-16.69408],[32.89169,-16.72039],[32.87109,-16.70855],[32.85392,-16.70461],[32.83676,-16.69737],[32.81478,-16.70724],[32.80654,-16.70198],[32.7935,-16.71053],[32.77908,-16.70526],[32.77153,-16.70789],[32.70835,-16.68356],[32.70217,-16.67764],[32.71179,-16.59804],[32.5724,-16.53222],[32.40211,-16.46704],[32.27371,-16.4328],[32.0375,-16.44136],[31.91116,-16.40777],[31.90429,-16.39328],[31.91185,-16.38076],[31.91185,-16.36824],[31.90361,-16.36231],[31.90429,-16.34387],[31.88644,-16.32542],[31.82945,-16.30499],[31.8164,-16.28917],[31.82327,-16.28192],[31.78413,-16.25226],[31.76628,-16.23182],[31.7546,-16.23182],[31.73538,-16.21864],[31.73263,-16.20677],[31.71821,-16.20149],[31.66397,-16.19226],[31.64474,-16.19688],[31.62757,-16.17841],[31.61041,-16.18567],[31.57402,-16.17775],[31.56166,-16.18831],[31.55342,-16.17182],[31.51565,-16.16852],[31.50192,-16.17314],[31.49299,-16.15995],[31.42501,-16.16127],[31.43394,-16.15137],[31.43325,-16.1395],[31.41883,-16.13818],[31.41403,-16.14412],[31.40167,-16.13686],[31.40304,-16.11905],[31.35086,-16.07485],[31.34124,-16.07287],[31.33575,-16.0577],[31.34605,-16.0544],[31.32751,-16.03922],[31.32339,-16.02734],[31.30485,-16.01414],[31.29661,-16.02074],[31.2767,-16.00292],[31.26434,-16.01084],[31.23481,-16.00226],[31.22314,-16.0115],[31.20529,-16.00292],[31.18743,-16.00556],[31.18263,-15.9884],[31.14761,-15.98774],[31.10572,-15.99962],[31.08856,-16.00754],[31.08512,-16.02206],[31.0762,-16.01348],[31.05972,-16.0181],[31.0659,-16.00358],[31.06144,-16.00226],[31.05388,-16.01876],[31.02951,-16.02008],[31.02676,-16.04186],[31.00891,-16.05836],[30.98693,-16.06034],[30.95809,-16.0379],[30.95809,-16.02734],[30.94917,-16.0115],[30.91621,-15.99962],[30.44242,-16.00094],[30.43624,-16.0082],[30.43144,-16.00688],[30.4232,-16.00886],[30.42181,-16.00626],[30.42183,-15.62118],[30.41908,-15.62106],[30.40535,-15.60452],[30.40466,-15.59328],[30.35934,-15.55227],[30.37925,-15.51853],[30.39917,-15.47155],[30.37582,-15.45633],[30.37719,-15.34777],[30.27763,-15.25504],[30.23231,-15.11787],[30.21171,-15.06417],[30.22888,-15.05688],[30.23437,-15.03831],[30.22819,-15.02505],[30.22682,-15.01643],[30.2172,-15.00847],[30.21926,-14.99786],[30.38337,-14.95872],[30.48088,-14.90763],[30.68069,-14.82999],[30.79948,-14.78883],[31.08032,-14.72376],[31.27464,-14.66265],[31.34536,-14.65003],[31.42845,-14.63342],[31.5026,-14.6095],[31.68388,-14.51048],[31.82052,-14.48256],[31.9551,-14.4134],[32.06222,-14.38747],[32.11715,-14.36552],[32.25448,-14.32161],[32.45018,-14.28435],[32.58476,-14.22379],[32.77359,-14.15655],[33.24119,-13.99804],[33.22128,-13.99671],[33.20617,-14.00137],[33.19107,-13.97939],[33.19038,-13.96606],[33.17871,-13.95473],[33.1636,-13.95206],[33.15467,-13.94007],[33.14575,-13.94007],[33.13407,-13.96139],[33.10592,-13.9574],[33.07983,-13.97539],[33.06129,-13.99804],[33.06404,-14.02136],[33.04275,-14.04268],[33.03932,-14.05067],[33.03108,-14.05467],[33.03245,-14.04334],[33.00293,-14.02336],[32.99331,-14.0067],[33.0043,-13.95406],[32.98164,-13.94207],[32.95898,-13.94007],[32.94937,-13.94607],[32.94525,-13.93141],[32.94662,-13.91808],[32.95349,-13.90541],[32.94593,-13.89475],[32.94319,-13.88075],[32.91023,-13.86342],[32.88894,-13.81341],[32.83126,-13.78607],[32.81547,-13.78607],[32.80792,-13.80075],[32.77221,-13.77941],[32.78114,-13.75073],[32.79487,-13.75073],[32.80723,-13.72938],[32.83607,-13.72938],[32.845,-13.72338],[32.82852,-13.69736],[32.81341,-13.68536],[32.79418,-13.67802],[32.80242,-13.66067],[32.78457,-13.64733],[32.75917,-13.63665],[32.74955,-13.64866],[32.71385,-13.64132],[32.67265,-13.6213],[32.68775,-13.59995],[32.68089,-13.58393],[32.69325,-13.57992],[32.68775,-13.57325],[32.69943,-13.56858],[32.7214,-13.58193],[32.74131,-13.58326],[32.7626,-13.56991],[32.76054,-13.56057],[32.76672,-13.55656],[32.78045,-13.55656],[32.8038,-13.54321],[32.8244,-13.54121],[32.83538,-13.52185],[32.84912,-13.5145],[32.84088,-13.49848],[32.84568,-13.48846],[32.84225,-13.47377],[32.84431,-13.46242],[32.85598,-13.45975],[32.85804,-13.46443],[32.8704,-13.46576],[32.88826,-13.45307],[32.90062,-13.43705],[32.90199,-13.42502],[32.91847,-13.41701],[32.91503,-13.40632],[32.92739,-13.37693],[32.92671,-13.35622],[32.93357,-13.3442],[32.93426,-13.31279],[32.94456,-13.30745],[32.93907,-13.29542],[32.94456,-13.28339],[32.9425,-13.27805],[32.95349,-13.26468],[32.96928,-13.26267],[32.98026,-13.24396],[32.98164,-13.23327],[33.01254,-13.21856],[33.01872,-13.20987],[33.00773,-13.20185],[33.00224,-13.17644],[32.97958,-13.1604],[32.98438,-13.14435],[32.97477,-13.11158],[32.98026,-13.1069],[32.97958,-13.08216],[32.99125,-13.07146],[32.99743,-13.05005],[32.98507,-13.03467],[32.98645,-13.0253],[32.99537,-13.02263],[32.99743,-13.00791],[33.01528,-12.98917],[33.01048,-12.97312],[33.0194,-12.93096],[33.02902,-12.90954],[33.02215,-12.90352],[33.02215,-12.89415],[32.97752,-12.8821],[32.94731,-12.84796],[32.95555,-12.83524],[32.95555,-12.82185],[32.94731,-12.80511],[32.94593,-12.78904],[32.93769,-12.77364],[32.97615,-12.73614],[32.99675,-12.72743],[33.00087,-12.71135],[33.0091,-12.70399],[33.01254,-12.67518],[33.02078,-12.65374],[33.02764,-12.65374],[33.04138,-12.63029],[33.07228,-12.60684],[33.0764,-12.59947],[33.08944,-12.59478],[33.09425,-12.60751],[33.11554,-12.61756],[33.12583,-12.60617],[33.14918,-12.5988],[33.17939,-12.6122],[33.17527,-12.64168],[33.18283,-12.64168],[33.19724,-12.62627],[33.1993,-12.61287],[33.22265,-12.59679],[33.23501,-12.59478],[33.23913,-12.58406],[33.26385,-12.55859],[33.26385,-12.54451],[33.3181,-12.52843],[33.33046,-12.53781],[33.33046,-12.54854],[33.35311,-12.55189],[33.35998,-12.55993],[33.36547,-12.56194],[33.40049,-12.52709],[33.41148,-12.5224],[33.41491,-12.51502],[33.40736,-12.50497],[33.43689,-12.47815],[33.46366,-12.48217],[33.46572,-12.46273],[33.48152,-12.45334],[33.46916,-12.42719],[33.50143,-12.40976],[33.5131,-12.39031],[33.54744,-12.3722],[33.54606,-12.3561],[33.53645,-12.34001],[33.51036,-12.34269],[33.48426,-12.33531],[33.47602,-12.32592],[33.45817,-12.3286],[33.42384,-12.34336],[33.39775,-12.34135],[33.37165,-12.34604],[33.36822,-12.32324],[33.35105,-12.29976],[33.33526,-12.285],[33.33046,-12.2595],[33.31192,-12.24742],[33.3126,-12.21387],[33.31672,-12.20649],[33.30986,-12.18031],[33.3126,-12.1689],[33.28308,-12.16756],[33.2563,-12.13802],[33.27346,-12.08431],[33.27484,-12.06551],[33.28308,-12.05477],[33.292,-12.02455],[33.30505,-12.01515],[33.30917,-11.98089],[33.31398,-11.96343],[33.31329,-11.95],[33.32084,-11.94059],[33.32702,-11.90901],[33.3181,-11.88415],[33.30368,-11.86803],[33.33252,-11.8183],[33.3332,-11.78805],[33.32359,-11.77864],[33.32565,-11.75511],[33.31947,-11.74637],[33.3126,-11.67376],[33.32016,-11.63408],[33.31054,-11.59373],[33.29612,-11.59171],[33.28926,-11.5796],[33.27964,-11.57557],[33.27484,-11.58095],[33.26591,-11.57489],[33.2357,-11.58835],[33.22608,-11.56817],[33.25561,-11.52915],[33.23432,-11.47465],[33.24806,-11.45378],[33.23501,-11.44234],[33.23226,-11.41879],[33.24119,-11.41071],[33.25424,-11.42013],[33.26522,-11.42821],[33.28033,-11.44032],[33.29818,-11.43561],[33.29269,-11.42821],[33.292,-11.39725],[33.2872,-11.38513],[33.292,-11.36696],[33.30368,-11.3683],[33.31672,-11.36359],[33.30986,-11.33262],[33.32153,-11.32656],[33.35586,-11.25586],[33.38127,-11.23566],[33.38264,-11.21613],[33.39225,-11.20737],[33.38951,-11.18918],[33.39912,-11.18043],[33.40599,-11.1582],[33.395,-11.14607],[33.38607,-11.1454],[33.37509,-11.13192],[33.37371,-11.11373],[33.35861,-11.0915],[33.32771,-11.06859],[33.33046,-11.05106],[33.32016,-11.04567],[33.31604,-11.0268],[33.30505,-10.99984],[33.29818,-11.00186],[33.30024,-10.99041],[33.28994,-10.98434],[33.29063,-10.9803],[33.30642,-10.98501],[33.31123,-10.96749],[33.30986,-10.9412],[33.28514,-10.91693],[33.28239,-10.90277],[33.25286,-10.90681],[33.24462,-10.89333],[33.2666,-10.86501],[33.28788,-10.86635],[33.28514,-10.87512],[33.292,-10.8758],[33.3126,-10.86838],[33.32016,-10.85219],[33.33732,-10.82252],[33.35517,-10.82859],[33.37097,-10.82522],[33.395,-10.80701],[33.43551,-10.82185],[33.46641,-10.81375],[33.46572,-10.80498],[33.47534,-10.79352],[33.498,-10.78947],[33.50486,-10.77665],[33.51516,-10.77598],[33.52409,-10.76586],[33.53096,-10.76451],[33.53645,-10.75237],[33.53164,-10.74428],[33.53714,-10.73416],[33.5495,-10.73551],[33.59756,-10.65994],[33.6058,-10.65454],[33.6161,-10.66399],[33.65043,-10.62215],[33.68202,-10.60865],[33.68682,-10.59515],[33.70468,-10.57895],[33.7088,-10.56545],[33.67721,-10.5749],[33.68133,-10.55263],[33.67034,-10.54588],[33.67584,-10.52832],[33.66348,-10.53102],[33.63258,-10.49524],[33.62022,-10.49457],[33.63189,-10.48714],[33.63807,-10.46891],[33.62228,-10.45135],[33.60511,-10.45338],[33.58932,-10.43515],[33.5749,-10.43988],[33.57215,-10.41894],[33.56391,-10.40678],[33.56117,-10.37842],[33.54881,-10.37031],[33.55773,-10.34802],[33.55361,-10.33924],[33.54126,-10.33789],[33.54469,-10.32506],[33.5392,-10.30344],[33.54538,-10.29804],[33.55361,-10.25615],[33.56391,-10.24669],[33.56323,-10.23317],[33.54263,-10.23385],[33.53782,-10.21222],[33.52134,-10.20952],[33.5131,-10.18519],[33.43963,-10.16086],[33.43483,-10.13856],[33.38539,-10.10205],[33.36135,-10.10408],[33.34968,-10.10814],[33.35037,-10.08921],[33.31398,-10.06014],[33.32771,-10.03918],[33.33252,-10.00672],[33.3538,-9.96277],[33.35517,-9.93707],[33.36135,-9.92422],[33.37921,-9.91542],[33.37097,-9.86875],[33.34968,-9.8329],[33.30574,-9.81801],[33.29544,-9.79636],[33.29063,-9.77538],[33.23089,-9.74899],[33.22952,-9.73884],[33.23501,-9.73207],[33.22608,-9.69688],[33.21579,-9.68402],[33.21716,-9.67251],[33.23295,-9.66507],[33.22608,-9.64544],[33.21579,-9.63664],[33.22334,-9.6231],[33.19175,-9.60008],[33.17115,-9.60143],[33.15536,-9.61565],[33.1224,-9.59737],[33.11004,-9.62783],[33.11965,-9.64002],[33.11142,-9.64408],[33.1121,-9.65356],[33.11073,-9.66777],[33.10112,-9.67116],[33.10249,-9.6786],[33.1018,-9.68199],[33.08464,-9.67522],[33.08738,-9.66507],[33.06541,-9.64002],[33.06678,-9.63122],[33.05648,-9.62648],[33.04618,-9.62987],[33.04206,-9.64137],[33.0249,-9.63934],[33.00018,-9.57232],[33.00705,-9.55404],[33.01597,-9.54726],[33.03176,-9.52695],[33.03176,-9.51273],[33.02833,-9.49919],[32.99194,-9.49648],[32.98301,-9.48293],[32.95005,-9.49174],[32.94731,-9.48158],[32.9528,-9.46668],[32.94456,-9.4572],[32.94799,-9.43349],[32.9425,-9.41791],[32.96035,-9.4003],[32.92945,-9.40097],[32.91297,-9.37929],[32.90542,-9.3881],[32.89718,-9.38878],[32.89306,-9.36642],[32.86491,-9.37929],[32.81341,-9.34813],[32.81272,-9.33864],[32.80105,-9.32238],[32.76535,-9.32171],[32.75642,-9.28511],[32.71659,-9.27631],[32.64793,-9.27495],[32.61634,-9.25801],[32.57583,-9.2492],[32.54562,-9.25801],[32.48588,-9.17532],[32.49343,-9.15091],[32.46116,-9.13193],[32.45018,-9.13058],[32.43782,-9.11837],[32.35817,-9.12854],[32.25448,-9.13125],[32.192,-9.09668],[32.17208,-9.06617],[32.15835,-9.05735],[32.13775,-9.06345],[32.07115,-9.04854],[32.01553,-9.06278],[32.01278,-9.07227],[31.98806,-9.0743],[31.96334,-9.05803],[31.95304,-9.03362],[31.93725,-9.02005],[31.93588,-8.99632],[31.92832,-8.97936],[31.94961,-8.93663],[31.85829,-8.90136],[31.78894,-8.88915],[31.75804,-8.90068],[31.73606,-8.92374],[31.72233,-8.92103],[31.70585,-8.92442],[31.69212,-8.91696],[31.67976,-8.91628],[31.65573,-8.88304],[31.6008,-8.85523],[31.59324,-8.84301],[31.58088,-8.84166],[31.56852,-8.81112],[31.5747,-8.79891],[31.56852,-8.76566],[31.58157,-8.7358],[31.57127,-8.72087],[31.56921,-8.70254],[31.56372,-8.70458],[31.55204,-8.68829],[31.5438,-8.68829],[31.53762,-8.68014],[31.50535,-8.68082],[31.49986,-8.68557],[31.48819,-8.68218],[31.45797,-8.63941],[31.41128,-8.64009],[31.39549,-8.62991],[31.38588,-8.60886],[31.37764,-8.60207],[31.37626,-8.58917],[31.35978,-8.59189],[31.36184,-8.60818],[31.35017,-8.61701],[31.31103,-8.60818],[31.29386,-8.62923],[31.27258,-8.63059],[31.25679,-8.61226],[31.25335,-8.598],[31.24099,-8.59257],[31.23756,-8.598],[31.21284,-8.5851],[31.19705,-8.59257],[31.184,-8.59325],[31.18331,-8.60615],[31.15448,-8.62448],[31.10435,-8.63262],[31.06109,-8.61769],[30.99723,-8.56066],[30.83519,-8.35283],[30.77203,-8.20381],[30.70298,-7.9784],[30.59841,-7.80178],[30.52695,-7.69707],[30.45549,-7.58419],[30.43891,-7.51632],[30.39477,-7.31785],[30.30394,-7.12756],[30.17996,-6.94863],[30.04189,-6.82511],[29.89683,-6.7615],[29.71056,-6.60242],[29.65664,-6.45339],[29.55414,-6.31485],[29.53268,-6.1804],[29.49747,-6.04868],[29.49523,-5.99616],[29.51272,-5.92255],[29.6126,-5.80249],[29.63524,-5.74597],[29.60019,-5.58013],[29.53285,-5.45344],[29.46135,-5.19188],[29.38271,-5.0543],[29.34251,-4.89484],[29.34489,-4.7737],[29.43242,-4.54033],[29.41996,-4.44996],[29.66354,-4.44765],[29.75605,-4.46725],[29.76964,-4.45367],[29.76133,-4.42497],[29.82309,-4.36133],[29.86837,-4.37984],[29.95475,-4.33135],[29.98146,-4.29615],[30.00031,-4.29361],[30.01385,-4.27454],[30.04113,-4.2719],[30.07601,-4.1741],[30.19054,-4.08177],[30.18552,-4.05801],[30.20523,-4.04795],[30.22219,-4.03925],[30.22816,-4.01412],[30.21559,-3.99377],[30.25796,-3.89123],[30.30424,-3.84782],[30.32992,-3.79017],[30.35076,-3.77164],[30.38533,-3.78327],[30.40479,-3.799],[30.41041,-3.76028],[30.38855,-3.71881],[30.43023,-3.63174],[30.45818,-3.59675],[30.44541,-3.56514],[30.49127,-3.52249],[30.51283,-3.52858],[30.5347,-3.50268],[30.58678,-3.48227],[30.63474,-3.45638],[30.66897,-3.42501],[30.67432,-3.39812],[30.6358,-3.36412],[30.6632,-3.32463],[30.71737,-3.30502],[30.73897,-3.26368],[30.76331,-3.29089],[30.8387,-3.25715],[30.81135,-3.22355],[30.84168,-3.2064],[30.84191,-3.1008],[30.7982,-3.06376],[30.85062,-2.97736],[30.7498,-2.99452],[30.69939,-2.97155],[30.67095,-2.99248],[30.65004,-2.97328],[30.64561,-2.95683],[30.57357,-2.89375],[30.50365,-2.95411],[30.45036,-2.91347],[30.43773,-2.89713],[30.43333,-2.87257],[30.41081,-2.86185],[30.44542,-2.78075],[30.43883,-2.75176],[30.46111,-2.73658],[30.46951,-2.72077],[30.48614,-2.72141],[30.5307,-2.67185],[30.5237,-2.65229],[30.46548,-2.69203],[30.43143,-2.68097],[30.42102,-2.65886],[30.48339,-2.55856],[30.54027,-2.41436],[30.57878,-2.41648],[30.62278,-2.39939],[30.65861,-2.41186],[30.71365,-2.35572],[30.77419,-2.39015],[30.80016,-2.36669],[30.82613,-2.35696],[30.84111,-2.32527],[30.85609,-2.31279],[30.84279,-2.24186],[30.84872,-2.20387],[30.89716,-2.07387],[30.86457,-2.02895],[30.80727,-1.93737],[30.82998,-1.8146],[30.82074,-1.69831],[30.83897,-1.65066],[30.74358,-1.51759],[30.73883,-1.45043],[30.68464,-1.39699],[30.63008,-1.38262],[30.61398,-1.35179],[30.57264,-1.34033],[30.55793,-1.30795],[30.56244,-1.29478],[30.55225,-1.25472],[30.50714,-1.17184],[30.49723,-1.16039],[30.4736,-1.15718],[30.47301,-1.1233],[30.4587,-1.12099],[30.45262,-1.08299],[30.47386,-1.05762],[30.4485,-1.04832],[30.42534,-1.06328],[30.35429,-1.06574],[30.33887,-1.09881],[30.34543,-1.12638],[30.30408,-1.14635],[30.28195,-1.19927],[30.20748,-1.27765],[30.17196,-1.27244],[30.16527,-1.34687],[30.13799,-1.35676],[30.11894,-1.38588],[30.08396,-1.37055],[30.05479,-1.40064],[30.05669,-1.43491],[30.02013,-1.41426],[29.98822,-1.45259],[29.91511,-1.48268],[29.89297,-1.45069],[29.88731,-1.42556],[29.88148,-1.35883],[29.86192,-1.36075],[29.82313,-1.30775],[29.81731,-1.32752],[29.80049,-1.34728],[29.79708,-1.37308],[29.77837,-1.36787],[29.76516,-1.35166],[29.73324,-1.33573],[29.69994,-1.35687],[29.67489,-1.3835],[29.63989,-1.38733],[29.59115,-1.38568],[29.60573,-1.31867],[29.59104,-1.27418],[29.60705,-1.24644],[29.60657,-1.22694],[29.57815,-1.19344],[29.58866,-1.06135],[29.58442,-0.98988],[29.59941,-0.98707],[29.58281,-0.90736],[29.58818,-0.89906],[29.63572,-0.90071],[29.62767,-0.87525],[29.63061,-0.8498],[29.64178,-0.82846],[29.63099,-0.80713],[29.62626,-0.70805],[29.63878,-0.68018],[29.66182,-0.6279],[29.64999,-0.60038],[29.66742,-0.59074],[29.68211,-0.56737],[29.67357,-0.55217],[29.67326,-0.47379],[29.65282,-0.45965],[29.7276,-0.08725],[29.72241,-0.07272],[29.74454,-0.02974],[29.72398,0.01396],[29.71715,0.06865],[29.74189,0.12071],[29.77762,0.16728],[29.82435,0.16704],[29.87365,0.38518],[29.97789,0.50582],[29.98235,0.54967],[29.96947,0.5716],[29.97307,0.59352],[29.95418,0.64424],[29.96825,0.67573],[29.97304,0.74009],[29.96444,0.77501],[29.97783,0.82916],[29.99773,0.84521],[30.06158,0.87499],[30.10758,0.89103],[30.14259,0.88511],[30.17108,0.90457],[30.17297,0.93215],[30.19133,0.95698],[30.22635,0.9904],[30.22566,1.04854],[30.23029,1.07887],[30.24317,1.1037],[30.2387,1.13415],[30.28745,1.17169],[30.33654,1.14653],[30.34718,1.17628],[30.36212,1.1994],[30.40177,1.19231],[30.45635,1.19735],[30.48038,1.21567],[30.71646,1.50123],[31.03205,1.75111],[31.23005,1.99715],[31.31543,2.11692],[31.31592,2.14783],[31.24887,2.19828],[31.2038,2.21991],[31.20291,2.29198],[31.16933,2.27868],[31.144,2.2791],[31.12903,2.26347],[31.06888,2.30083],[31.08591,2.30693],[31.0741,2.32537],[31.07328,2.34382],[31.03153,2.37645],[30.98917,2.40862],[30.95425,2.39452],[30.94406,2.36669],[30.93877,2.33026],[30.88405,2.34047],[30.83502,2.42127],[30.7803,2.43149],[30.75156,2.41602],[30.74205,2.44719],[30.74733,2.48686],[30.76358,2.49772],[30.75215,2.58254],[30.77599,2.60128],[30.83189,2.75124],[30.87681,2.7901],[30.89151,2.86188],[30.85226,2.93959],[30.85343,2.95834],[30.83813,2.96885],[30.82125,3.00908],[30.80711,3.0092],[30.78199,3.01754],[30.77295,3.05342],[30.79377,3.06397],[30.80361,3.12388],[30.82877,3.20531],[30.84064,3.26397],[30.86713,3.27708],[30.87602,3.30485],[30.89041,3.31891],[30.88896,3.33607],[30.93826,3.40604],[30.94072,3.49114],[30.94276,3.50754],[30.8988,3.50269],[30.88162,3.48893],[30.87921,3.48137],[30.86582,3.47791],[30.84791,3.48868],[30.85054,3.49925]]]}},{"type":"Feature","properties":{"cq_zone_name":"South African Zone","cq_zone_number":38,"cq_zone_name_loc":[-45,8]},"geometry":{"type":"Polygon","coordinates":[[[-26,-17],[11.5,-17],[11.75845,-17.25328],[11.77552,-17.25938],[11.79396,-17.27467],[11.79881,-17.26772],[11.80846,-17.26864],[11.81243,-17.26451],[11.81674,-17.26464],[11.82,-17.26209],[11.82146,-17.25803],[11.82361,-17.25495],[11.831,-17.24248],[11.83436,-17.23853],[11.83755,-17.23605],[11.84612,-17.23567],[11.84954,-17.24218],[11.85489,-17.23962],[11.85818,-17.24133],[11.86116,-17.23409],[11.8697,-17.23289],[11.88437,-17.22491],[11.89174,-17.21026],[11.89768,-17.20707],[11.90053,-17.20651],[11.90184,-17.20414],[11.9052,-17.20439],[11.909,-17.20202],[11.91039,-17.19965],[11.91763,-17.19622],[11.92169,-17.19643],[11.92368,-17.19468],[11.93213,-17.19051],[11.93834,-17.18454],[11.94318,-17.18054],[11.94777,-17.18035],[11.95109,-17.18157],[11.95579,-17.18213],[11.95877,-17.17965],[11.96037,-17.17685],[11.96324,-17.17486],[11.97418,-17.17672],[11.9834,-17.17268],[11.98678,-17.17273],[11.99586,-17.17112],[11.99909,-17.16853],[12.00741,-17.16601],[12.01778,-17.16055],[12.02236,-17.16192],[12.02558,-17.1564],[12.03423,-17.15077],[12.05801,-17.15572],[12.08179,-17.14229],[12.10462,-17.16005],[12.1181,-17.15713],[12.13158,-17.16732],[12.14781,-17.16045],[12.16128,-17.16146],[12.17579,-17.17789],[12.1824,-17.19628],[12.19485,-17.19729],[12.19941,-17.20814],[12.21082,-17.21898],[12.21688,-17.21785],[12.2298,-17.22458],[12.23435,-17.2351],[12.25362,-17.24069],[12.26259,-17.23251],[12.27069,-17.23275],[12.28429,-17.24217],[12.29568,-17.23412],[12.30983,-17.23492],[12.31779,-17.22851],[12.32747,-17.22915],[12.33234,-17.22586],[12.34374,-17.22387],[12.3517,-17.21861],[12.35925,-17.22918],[12.37023,-17.23384],[12.37364,-17.22678],[12.38667,-17.21873],[12.3942,-17.22117],[12.39325,-17.21346],[12.39642,-17.20771],[12.40851,-17.20721],[12.41579,-17.2113],[12.42102,-17.2131],[12.4235,-17.20768],[12.43601,-17.22275],[12.43055,-17.24031],[12.43745,-17.24475],[12.44023,-17.25051],[12.43615,-17.26282],[12.44714,-17.26342],[12.45263,-17.25484],[12.46156,-17.25806],[12.46912,-17.25472],[12.47771,-17.25072],[12.4808,-17.24279],[12.4942,-17.24798],[12.51034,-17.2453],[12.52425,-17.24813],[12.53292,-17.24253],[12.53593,-17.2461],[12.54181,-17.24797],[12.5422,-17.24296],[12.54378,-17.23926],[12.5531,-17.24063],[12.55954,-17.2414],[12.56495,-17.2438],[12.56461,-17.23938],[12.56873,-17.23734],[12.57182,-17.23529],[12.57852,-17.2281],[12.5813,-17.23043],[12.59094,-17.23177],[12.59679,-17.23572],[12.59921,-17.23213],[12.60197,-17.22903],[12.6061,-17.23118],[12.60862,-17.2267],[12.60564,-17.21632],[12.61102,-17.20934],[12.61723,-17.20625],[12.62172,-17.20678],[12.62622,-17.20599],[12.63174,-17.20291],[12.6322,-17.199],[12.63746,-17.19871],[12.64421,-17.19746],[12.64665,-17.19442],[12.64685,-17.19055],[12.65597,-17.18538],[12.65841,-17.18594],[12.66297,-17.18258],[12.66542,-17.18139],[12.66616,-17.17954],[12.66901,-17.17502],[12.67357,-17.17215],[12.67738,-17.17345],[12.68015,-17.1764],[12.68464,-17.17299],[12.68879,-17.1722],[12.69466,-17.16993],[12.69984,-17.16865],[12.70573,-17.17315],[12.71334,-17.17174],[12.71435,-17.1594],[12.72359,-17.15624],[12.73421,-17.15112],[12.73659,-17.146],[12.76332,-17.1397],[12.77907,-17.12158],[12.80511,-17.11593],[12.81056,-17.1011],[12.82356,-17.08495],[12.83555,-17.08869],[12.84617,-17.07799],[12.87241,-17.06622],[12.87118,-17.05839],[12.8727,-17.04794],[12.8907,-17.04405],[12.90336,-17.03693],[12.90763,-17.02877],[12.91499,-17.0216],[12.92261,-17.02166],[12.92887,-17.01976],[12.93941,-17.01851],[12.9428,-17.02019],[12.94772,-17.01809],[12.94392,-17.01231],[12.94808,-17.00984],[12.95327,-17.01032],[12.96261,-17.01031],[12.96619,-17.00075],[12.96668,-16.9912],[12.97019,-16.98987],[12.97541,-16.99018],[12.98363,-16.98211],[13.01969,-16.98191],[13.02794,-16.97712],[13.03245,-16.97724],[13.03711,-16.98157],[13.04417,-16.97998],[13.0516,-16.98059],[13.06289,-16.97289],[13.07667,-16.97564],[13.08305,-16.97569],[13.0873,-16.97719],[13.09053,-16.98032],[13.09715,-16.97936],[13.09972,-16.97792],[13.1016,-16.97484],[13.10898,-16.97242],[13.12151,-16.96901],[13.14055,-16.9653],[13.146,-16.96552],[13.15145,-16.96705],[13.15514,-16.96452],[13.16102,-16.96523],[13.16518,-16.96528],[13.16938,-16.96341],[13.17646,-16.97255],[13.17982,-16.97384],[13.18113,-16.97152],[13.18638,-16.96928],[13.19953,-16.97393],[13.2008,-16.9776],[13.19898,-16.97996],[13.19751,-16.98198],[13.19809,-16.98467],[13.20097,-16.98904],[13.2042,-16.98916],[13.21943,-16.98632],[13.22375,-16.98462],[13.23219,-16.98621],[13.23686,-16.9878],[13.24118,-16.993],[13.23842,-16.99606],[13.24699,-17.00012],[13.25076,-16.99869],[13.25316,-16.99629],[13.25487,-16.99388],[13.25795,-16.99279],[13.27131,-16.99941],[13.28091,-16.99468],[13.2864,-16.9929],[13.2945,-16.99088],[13.30157,-16.98821],[13.30926,-16.98795],[13.31524,-16.98572],[13.32959,-16.98291],[13.34342,-16.9773],[13.3512,-16.97417],[13.35383,-16.97432],[13.36241,-16.97953],[13.3703,-16.98146],[13.37923,-16.98305],[13.38678,-16.98859],[13.39081,-16.99062],[13.39416,-16.99594],[13.39879,-16.99671],[13.40857,-16.9988],[13.41767,-16.99761],[13.42813,-17.00159],[13.44341,-17.00951],[13.46366,-17.0109],[13.46847,-17.02095],[13.4767,-17.02575],[13.47773,-17.0335],[13.48425,-17.03797],[13.49815,-17.06866],[13.52097,-17.09016],[13.52169,-17.10029],[13.52274,-17.10699],[13.52105,-17.11305],[13.51731,-17.12088],[13.50808,-17.12609],[13.51104,-17.1354],[13.53312,-17.14465],[13.54244,-17.14731],[13.55108,-17.1539],[13.5927,-17.17909],[13.61553,-17.20009],[13.63835,-17.20929],[13.66393,-17.23554],[13.68427,-17.24866],[13.69499,-17.24736],[13.71661,-17.26641],[13.73755,-17.26973],[13.76063,-17.2868],[13.77629,-17.29402],[13.78509,-17.30387],[13.82396,-17.32618],[13.83746,-17.32848],[13.84821,-17.33734],[13.85758,-17.34291],[13.87245,-17.34325],[13.8873,-17.35933],[13.89884,-17.36213],[13.9053,-17.37074],[13.91725,-17.37804],[13.9154,-17.38641],[13.92866,-17.39741],[13.93151,-17.40519],[13.92612,-17.41167],[13.95655,-17.43381],[13.98023,-17.42736],[13.98744,-17.43533],[14.00013,-17.43085],[14.00442,-17.42075],[14.01283,-17.41458],[14.03789,-17.42365],[14.04373,-17.42092],[14.05231,-17.42736],[14.07737,-17.43511],[14.10208,-17.43948],[14.11581,-17.42419],[14.1249,-17.43609],[14.14224,-17.42965],[14.15133,-17.42779],[14.1618,-17.41676],[14.18685,-17.41239],[14.19861,-17.41425],[14.21311,-17.41086],[14.21319,-17.40158],[14.21877,-17.3923],[18.42042,-17.38975],[18.47721,-17.45228],[18.48088,-17.47831],[18.51293,-17.49396],[18.54818,-17.55416],[18.56855,-17.58164],[18.60071,-17.5823],[18.62778,-17.6088],[18.61639,-17.63008],[18.7336,-17.71359],[18.87278,-17.81281],[19.09848,-17.8375],[19.13992,-17.81325],[19.31994,-17.84295],[19.62419,-17.86826],[19.75243,-17.90596],[19.85871,-17.86001],[20.13717,-17.91449],[20.31869,-17.86542],[20.38816,-17.89708],[20.45448,-17.91095],[20.47411,-17.94573],[20.50416,-17.95205],[20.54246,-17.98189],[20.6012,-17.97755],[20.65307,-17.98106],[20.70769,-18.01591],[20.75681,-18.0168],[20.83615,-18.03859],[20.96461,-17.96723],[21.21055,-17.92899],[21.3088,-17.98042],[21.42353,-18.02662],[23.4332,-17.63747],[23.43423,-17.63787],[24.24888,-17.47447],[24.26124,-17.48823],[24.27085,-17.48954],[24.27703,-17.48299],[24.31411,-17.48757],[24.32785,-17.49215],[24.38758,-17.46923],[24.43084,-17.47971],[24.46174,-17.48102],[24.50775,-17.51377],[24.52423,-17.51442],[24.53727,-17.50656],[24.54895,-17.51246],[24.55444,-17.53734],[24.56268,-17.53865],[24.58534,-17.5321],[24.60937,-17.53472],[24.6183,-17.52686],[24.62242,-17.51442],[24.63203,-17.5118],[24.64027,-17.51442],[24.63684,-17.50067],[24.65538,-17.49412],[24.67666,-17.50001],[24.69383,-17.50132],[24.70275,-17.49674],[24.72816,-17.50001],[24.76043,-17.51704],[24.77691,-17.50656],[24.78515,-17.51246],[24.79064,-17.53406],[24.79682,-17.53799],[24.82978,-17.52031],[24.85382,-17.53079],[24.87991,-17.52621],[24.90463,-17.55436],[24.94102,-17.54716],[24.94583,-17.55109],[24.94102,-17.55894],[24.94308,-17.56745],[24.96025,-17.56483],[24.97741,-17.5524],[24.98634,-17.56091],[24.99733,-17.59102],[25.00694,-17.59756],[25.02273,-17.59298],[25.0241,-17.58578],[25.04676,-17.58971],[25.05088,-17.59953],[25.04264,-17.62112],[25.04745,-17.63028],[25.05638,-17.62374],[25.05638,-17.61262],[25.06736,-17.61654],[25.06599,-17.62832],[25.07011,-17.63617],[25.0811,-17.64141],[25.08453,-17.65908],[25.1017,-17.66431],[25.10856,-17.68001],[25.09414,-17.7016],[25.09414,-17.70945],[25.1017,-17.70945],[25.12161,-17.6931],[25.13053,-17.69244],[25.13603,-17.7016],[25.13259,-17.71076],[25.13809,-17.71141],[25.14358,-17.70487],[25.15045,-17.70422],[25.16281,-17.72384],[25.15937,-17.73365],[25.15525,-17.74019],[25.16006,-17.74477],[25.16967,-17.74608],[25.19096,-17.76962],[25.22049,-17.76766],[25.26306,-17.79054],[25.30906,-17.8265],[25.3482,-17.84088],[25.36811,-17.83303],[25.40039,-17.85199],[25.41824,-17.84741],[25.43197,-17.85395],[25.45257,-17.84218],[25.49102,-17.8533],[25.50338,-17.86441],[25.52604,-17.86179],[25.55351,-17.8363],[25.58509,-17.8448],[25.60363,-17.83892],[25.64758,-17.83173],[25.6771,-17.80885],[25.70114,-17.81408],[25.69839,-17.83042],[25.70938,-17.84414],[25.76637,-17.84676],[25.79246,-17.86767],[25.79521,-17.88009],[25.8213,-17.89839],[25.84396,-17.89708],[25.85769,-17.92648],[25.84877,-17.9304],[25.85838,-17.93105],[25.84602,-17.93432],[25.84602,-17.94216],[25.86044,-17.95065],[25.85838,-17.97417],[25.88104,-17.97743],[25.9085,-17.98462],[25.914,-17.99441],[25.94146,-17.99245],[25.96275,-17.99572],[25.96756,-18.00225],[25.99021,-17.99441],[25.98884,-17.98527],[26.00395,-17.97678],[26.03553,-17.98004],[26.04171,-17.97221],[26.0527,-17.98135],[26.0733,-17.97874],[26.09115,-17.98135],[26.09527,-17.95914],[26.10763,-17.94804],[26.09252,-17.94804],[26.0884,-17.93432],[26.10282,-17.92517],[26.10694,-17.92844],[26.12548,-17.91864],[26.13441,-17.92256],[26.13922,-17.91603],[26.14952,-17.91799],[26.16188,-17.91015],[26.17904,-17.90753],[26.21955,-17.88401],[26.22573,-17.8912],[26.22573,-17.89839],[26.24496,-17.91733],[26.28616,-17.91929],[26.3095,-17.93759],[26.34727,-17.92975],[26.38984,-17.93824],[26.39877,-17.93563],[26.41456,-17.9402],[26.42623,-17.95261],[26.43997,-17.95457],[26.44615,-17.95326],[26.45645,-17.96502],[26.46675,-17.96306],[26.48254,-17.982],[26.51207,-17.99049],[26.53198,-17.98723],[26.56288,-17.98723],[26.57112,-17.99506],[26.57386,-18.01661],[26.60202,-18.0362],[26.59721,-18.04926],[26.62879,-18.0584],[26.64665,-18.05383],[26.68922,-18.07798],[26.69883,-18.07341],[26.69471,-18.06428],[26.72081,-18.0473],[26.74552,-18.02119],[26.77162,-18.01923],[26.79908,-18.02445],[26.80732,-18.0127],[26.82792,-18.0127],[26.82518,-17.99898],[26.83136,-17.99115],[26.86775,-17.99376],[26.87324,-17.98592],[26.89178,-17.98984],[26.93298,-17.97482],[26.95838,-17.96894],[26.96662,-17.96502],[26.98654,-17.97025],[26.99821,-17.96045],[27.01812,-17.95326],[27.04147,-17.96176],[27.08335,-17.90231],[27.15271,-17.83761],[27.14378,-17.80688],[27.3175,-17.59036],[27.5489,-17.41617],[27.62168,-17.33164],[27.62992,-17.24575],[27.82974,-16.9629],[28.13804,-16.82229],[28.25065,-16.72565],[28.63929,-16.56447],[28.74298,-16.54473],[28.75877,-16.52498],[28.77182,-16.51379],[28.78624,-16.50984],[28.81576,-16.48548],[28.824,-16.46836],[28.82194,-16.45848],[28.81645,-16.44663],[28.82263,-16.42621],[28.83911,-16.40909],[28.84391,-16.39196],[28.84391,-16.38274],[28.85009,-16.37549],[28.84872,-16.36166],[28.83979,-16.35111],[28.84323,-16.32871],[28.82469,-16.31948],[28.82469,-16.30235],[28.83979,-16.27006],[28.85421,-16.25621],[28.85696,-16.23907],[28.83979,-16.23182],[28.83499,-16.21072],[28.84048,-16.18962],[28.83705,-16.16127],[28.86177,-16.12763],[28.86245,-16.10652],[28.84666,-16.04714],[28.87001,-16.0247],[28.89198,-15.98312],[28.91395,-15.96595],[28.9373,-15.94351],[28.97506,-15.94351],[28.99017,-15.93823],[29.01145,-15.94681],[29.03617,-15.9237],[29.03755,-15.91049],[29.06707,-15.88012],[29.08355,-15.87747],[29.11239,-15.84643],[29.21745,-15.77111],[29.27307,-15.75724],[29.39941,-15.70436],[29.41864,-15.69114],[29.48387,-15.69114],[29.52438,-15.67726],[29.54429,-15.6528],[29.55734,-15.64486],[29.58137,-15.64685],[29.59854,-15.66007],[29.63836,-15.66205],[29.77706,-15.6204],[29.78599,-15.61246],[29.82582,-15.60915],[29.88555,-15.61511],[29.89105,-15.62238],[29.90959,-15.62238],[29.94667,-15.62767],[29.96109,-15.64288],[29.98718,-15.64354],[30.05516,-15.63362],[30.0682,-15.62701],[30.11077,-15.62767],[30.15953,-15.61841],[30.17669,-15.6237],[30.19111,-15.6528],[30.20416,-15.65809],[30.20896,-15.66999],[30.24124,-15.64883],[30.2584,-15.62767],[30.27351,-15.64222],[30.28862,-15.64751],[30.31265,-15.64685],[30.35385,-15.65544],[30.37445,-15.64552],[30.39779,-15.63825],[30.41908,-15.62106],[30.42183,-15.62118],[30.42181,-16.00626],[30.4232,-16.00886],[30.43144,-16.00688],[30.43624,-16.0082],[30.44242,-16.00094],[30.91621,-15.99962],[30.94917,-16.0115],[30.95809,-16.02734],[30.95809,-16.0379],[30.98693,-16.06034],[31.00891,-16.05836],[31.02676,-16.04186],[31.02951,-16.02008],[31.05388,-16.01876],[31.06144,-16.00226],[31.0659,-16.00358],[31.05972,-16.0181],[31.0762,-16.01348],[31.08512,-16.02206],[31.08856,-16.00754],[31.10572,-15.99962],[31.14761,-15.98774],[31.18263,-15.9884],[31.18743,-16.00556],[31.20529,-16.00292],[31.22314,-16.0115],[31.23481,-16.00226],[31.26434,-16.01084],[31.2767,-16.00292],[31.29661,-16.02074],[31.30485,-16.01414],[31.32339,-16.02734],[31.32751,-16.03922],[31.34605,-16.0544],[31.33575,-16.0577],[31.34124,-16.07287],[31.35086,-16.07485],[31.40304,-16.11905],[31.40167,-16.13686],[31.41403,-16.14412],[31.41883,-16.13818],[31.43325,-16.1395],[31.43394,-16.15137],[31.42501,-16.16127],[31.49299,-16.15995],[31.50192,-16.17314],[31.51565,-16.16852],[31.55342,-16.17182],[31.56166,-16.18831],[31.57402,-16.17775],[31.61041,-16.18567],[31.62757,-16.17841],[31.64474,-16.19688],[31.66397,-16.19226],[31.71821,-16.20149],[31.73263,-16.20677],[31.73538,-16.21864],[31.7546,-16.23182],[31.76628,-16.23182],[31.78413,-16.25226],[31.82327,-16.28192],[31.8164,-16.28917],[31.82945,-16.30499],[31.88644,-16.32542],[31.90429,-16.34387],[31.90361,-16.36231],[31.91185,-16.36824],[31.91185,-16.38076],[31.90429,-16.39328],[31.91116,-16.40777],[32.0375,-16.44136],[32.27371,-16.4328],[32.40211,-16.46704],[32.5724,-16.53222],[32.71179,-16.59804],[32.70217,-16.67764],[32.70835,-16.68356],[32.77153,-16.70789],[32.77908,-16.70526],[32.7935,-16.71053],[32.80654,-16.70198],[32.81478,-16.70724],[32.83676,-16.69737],[32.85392,-16.70461],[32.87109,-16.70855],[32.89169,-16.72039],[32.92259,-16.69408],[32.93014,-16.69934],[32.98095,-16.70724],[32.98988,-16.69869],[32.9631,-16.78285],[32.91023,-16.89786],[32.83264,-16.92283],[32.93907,-17.06926],[32.98988,-17.18541],[32.99743,-17.30738],[33.05168,-17.34671],[33.03176,-17.36178],[33.01597,-17.39258],[33.00567,-17.39783],[33.01116,-17.42862],[32.99675,-17.44369],[33.00087,-17.45286],[32.99194,-17.4522],[32.97477,-17.47644],[32.96447,-17.47971],[32.96653,-17.51835],[32.98095,-17.54192],[32.98232,-17.55632],[32.994,-17.56876],[33.00842,-17.56483],[33.03314,-17.57793],[33.04962,-17.60214],[33.04687,-17.63748],[33.02421,-17.66758],[33.01597,-17.70879],[33.02833,-17.72384],[33.01322,-17.71991],[33.00773,-17.74411],[33.02764,-17.74411],[33.0297,-17.75916],[33.01803,-17.76569],[33.02284,-17.78008],[33.01391,-17.78596],[33.01528,-17.80623],[32.97203,-17.801],[32.95967,-17.81735],[32.96791,-17.84284],[32.96241,-17.8729],[32.95211,-17.8814],[32.95555,-17.91276],[32.97752,-17.90949],[32.98301,-17.91864],[32.97477,-17.91864],[32.96791,-17.96437],[32.95143,-17.96241],[32.94525,-17.97743],[32.93975,-17.98788],[32.95005,-17.99049],[32.95623,-18.00225],[32.93907,-18.014],[32.93701,-18.03229],[32.95074,-18.02967],[32.94799,-18.03882],[32.96035,-18.05187],[32.95005,-18.05448],[32.96585,-18.08843],[32.98026,-18.11519],[32.97203,-18.13542],[32.98232,-18.15695],[33.01048,-18.17717],[33.00842,-18.1974],[33.02215,-18.23001],[33.01391,-18.2437],[33.02284,-18.25088],[33.01528,-18.26261],[33.01734,-18.29847],[33.03726,-18.31868],[33.05442,-18.31803],[33.05168,-18.33628],[33.06678,-18.34932],[33.05923,-18.3819],[33.05099,-18.38451],[33.04893,-18.37538],[33.03245,-18.38907],[33.02696,-18.40861],[33.01734,-18.42686],[33.02902,-18.43207],[33.02696,-18.46594],[32.98164,-18.49459],[32.97683,-18.47115],[32.94799,-18.49329],[32.92465,-18.50501],[32.90954,-18.49785],[32.89718,-18.51022],[32.8759,-18.51868],[32.89993,-18.54473],[32.89032,-18.57662],[32.91023,-18.58964],[32.90748,-18.60851],[32.91778,-18.62543],[32.96035,-18.68723],[32.95692,-18.70675],[32.9528,-18.70805],[32.94525,-18.73666],[32.93563,-18.76722],[32.91091,-18.79192],[32.87658,-18.79842],[32.84431,-18.77957],[32.81135,-18.78152],[32.79487,-18.79647],[32.77702,-18.79777],[32.75505,-18.81597],[32.74818,-18.81012],[32.73033,-18.82442],[32.72346,-18.82052],[32.70149,-18.84197],[32.72552,-18.87836],[32.72415,-18.90304],[32.7317,-18.91993],[32.742,-18.92903],[32.69737,-18.93812],[32.70973,-18.97708],[32.71728,-19.02448],[32.77633,-19.02448],[32.77839,-19.01604],[32.80311,-19.01799],[32.84225,-19.0076],[32.85049,-19.06147],[32.86422,-19.07705],[32.87658,-19.07575],[32.87658,-19.08678],[32.88345,-19.103],[32.87727,-19.11598],[32.87658,-19.12896],[32.86903,-19.13869],[32.86079,-19.22689],[32.85049,-19.22818],[32.85461,-19.23596],[32.8498,-19.24439],[32.85598,-19.27874],[32.83607,-19.31439],[32.82165,-19.31957],[32.81272,-19.33642],[32.77771,-19.3578],[32.78938,-19.38889],[32.77908,-19.41156],[32.78251,-19.42775],[32.77565,-19.45624],[32.7832,-19.47113],[32.83882,-19.47825],[32.85118,-19.48537],[32.84088,-19.51579],[32.84706,-19.53003],[32.85736,-19.54427],[32.85255,-19.58697],[32.84637,-19.60767],[32.85736,-19.61996],[32.8553,-19.62966],[32.84568,-19.63418],[32.845,-19.65423],[32.82989,-19.66975],[32.85186,-19.68333],[32.87727,-19.67945],[32.8862,-19.68333],[32.93563,-19.67363],[32.95692,-19.65811],[32.97546,-19.65035],[32.98645,-19.6885],[32.95623,-19.715],[32.96791,-19.73181],[32.9734,-19.73116],[32.98438,-19.7415],[33.00293,-19.74732],[33.00567,-19.75185],[33.01528,-19.74926],[33.06198,-19.77575],[33.04893,-19.81],[33.04824,-19.84423],[33.02558,-19.95464],[33.0249,-19.98884],[33.02764,-20.034],[33.0043,-20.0282],[32.98988,-20.02949],[32.98164,-20.03658],[32.96035,-20.03916],[32.9528,-20.03465],[32.9425,-20.04174],[32.92396,-20.04304],[32.91915,-20.05271],[32.93838,-20.09786],[32.92327,-20.09979],[32.91091,-20.1114],[32.89375,-20.10624],[32.89306,-20.09205],[32.88414,-20.09399],[32.86972,-20.10495],[32.86628,-20.1288],[32.8601,-20.13525],[32.86903,-20.14557],[32.86354,-20.15524],[32.8704,-20.16942],[32.87246,-20.18811],[32.84774,-20.19648],[32.84843,-20.22226],[32.85667,-20.22935],[32.86079,-20.22806],[32.87384,-20.2345],[32.8704,-20.25061],[32.86216,-20.26027],[32.86491,-20.27251],[32.87109,-20.27766],[32.85667,-20.29376],[32.80311,-20.34399],[32.8038,-20.36716],[32.75848,-20.41801],[32.66784,-20.55566],[32.56553,-20.55566],[32.52021,-20.59487],[32.50717,-20.6013],[32.49618,-20.61222],[32.50511,-20.62315],[32.49481,-20.61994],[32.50373,-20.62893],[32.49687,-20.63022],[32.48451,-20.65913],[32.49206,-20.66684],[32.48313,-20.66877],[32.49069,-20.67648],[32.49206,-20.69832],[32.50099,-20.71181],[32.49481,-20.71759],[32.50167,-20.81454],[32.52365,-20.9095],[32.48794,-20.99094],[32.37945,-21.11461],[32.3822,-21.1223],[32.37808,-21.12358],[32.36228,-21.14087],[32.37808,-21.14664],[32.38975,-21.1588],[32.38288,-21.16201],[32.38975,-21.16649],[32.3925,-21.16201],[32.41516,-21.17545],[32.40074,-21.17993],[32.39387,-21.19082],[32.40005,-21.20874],[32.4076,-21.21194],[32.41584,-21.22667],[32.4282,-21.23243],[32.42477,-21.24267],[32.4337,-21.25227],[32.49755,-21.34055],[32.47627,-21.33224],[32.46665,-21.31625],[32.45086,-21.31177],[32.43507,-21.31561],[32.43301,-21.31945],[32.41378,-21.31817],[31.80198,-21.94751],[31.37626,-22.38119],[31.3076,-22.42246],[31.56303,-23.18708],[31.55342,-23.28362],[31.54792,-23.41285],[31.56028,-23.48152],[31.65847,-23.58161],[31.68937,-23.62692],[31.69761,-23.72187],[31.76834,-23.88459],[31.88163,-23.953],[31.90704,-24.18059],[31.98532,-24.30393],[32.00935,-24.45903],[31.99699,-24.68945],[32.01484,-24.92443],[32.02926,-25.05886],[32.03407,-25.13286],[32.02789,-25.25712],[32.01484,-25.38684],[31.99012,-25.4284],[31.98669,-25.44328],[31.97845,-25.45816],[31.97708,-25.50899],[31.97982,-25.52324],[31.99424,-25.5251],[32.00111,-25.58643],[32.00523,-25.60438],[32.0066,-25.64524],[31.99562,-25.67681],[31.97776,-25.69352],[31.9297,-25.83884],[31.97502,-25.95249],[32.00248,-25.99694],[32.01003,-25.99447],[32.03064,-25.99941],[32.08625,-26.00743],[32.08557,-26.03026],[32.10479,-26.16037],[32.07389,-26.30573],[32.07801,-26.40602],[32.13432,-26.52588],[32.13501,-26.83939],[32.1405,-26.84184],[32.14393,-26.84981],[32.16041,-26.85838],[32.1865,-26.86329],[32.20367,-26.85471],[32.20779,-26.84123],[32.22084,-26.83204],[32.25036,-26.84001],[32.25517,-26.84675],[32.30941,-26.85532],[32.32246,-26.85287],[32.33001,-26.86451],[32.54425,-26.8639],[32.72415,-26.86819],[32.77359,-26.86267],[32.85804,-26.8639],[32.8862,-26.85777],[32.8965,-26.86022],[36,-30],[36,-44],[40,-44],[40,-49],[36,-49],[36,-85],[-26,-85],[-26,-17]]]}},{"type":"Feature","properties":{"cq_zone_name":"Madagascar Zone","cq_zone_number":39,"cq_zone_name_loc":[-25,55]},"geometry":{"type":"Polygon","coordinates":[[[36,-85],[36,-49],[40,-49],[40,-44],[36,-44],[36,-30],[40,-17.5],[42,-15],[42,-8],[55,-3],[89.99999,-3],[89.99999,-89.99999],[36,-89.99999]]]}},{"type":"Feature","properties":{"cq_zone_name":"North Atlantic Zone","cq_zone_number":40,"cq_zone_name_loc":[78,-10]},"geometry":{"type":"Polygon","coordinates":[[[70,85],[70,80],[44.98144,76.40912],[18.20507,71.11578],[-14.95704,61.77376],[-35,56.86499],[-49,53],[-52.24366,59.58379],[-57.80762,67.13942],[-67.85401,74.22686],[-74.03321,75.49723],[-74.86176,77.41913],[-73.58094,78.5637],[-69.88312,79.50134],[-68.29468,80.43897],[-60.00733,82.26684],[-60,85],[70,85]]]}}]} \ No newline at end of file diff --git a/assets/json/geojson/ituzones.geojson b/assets/json/geojson/ituzones.geojson new file mode 100644 index 000000000..7baab44bb --- /dev/null +++ b/assets/json/geojson/ituzones.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"itu_zone_name":"!:KL:**Alaska, west of 141º W","itu_zone_number":1,"itu_zone_name_loc":[60,-160]},"geometry":{"type":"Polygon","coordinates":[[[-141,80],[-141,58],[-170,50],[-200,50],[-180,60],[-168.96149,65.74529],[-170,80],[-141,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:KL:**Alaska, east of 141º W#!!!!!!VE:**Canada#VE8:Northwest Territories west of 110º W#VY1:Yukon#VE7:British Columbia#VE6:Alberta#VY0:Nunavut west of 110º W and south of 80º N","itu_zone_number":2,"itu_zone_name_loc":[55,-125]},"geometry":{"type":"Polygon","coordinates":[[[-141.00403,80.00002],[-140.99854,58.00809],[-130.78125,48.57479],[-124.80469,48.50204],[-123.57422,48.22467],[-123.26661,48.26856],[-123.11829,48.41097],[-123.22129,48.54989],[-123.25837,48.68881],[-123.00293,48.77067],[-123.00843,48.83023],[-123.32154,49.00544],[-122.96448,49.00184],[-110.00062,48.99824],[-110.01709,80.00098],[-141.00403,79.99907]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!:!!!!!!VE:**Canada#VE8:Northwest Territories east of 110º W#VY0:Nunavut between 110º W and 90º W, and south of 80º N#VE5:Saskatchewan#VE4:Manitoba west of 90º W#VE3:Ontario west of 90º W","itu_zone_number":3,"itu_zone_name_loc":[55,-100]},"geometry":{"type":"Polygon","coordinates":[[[-110.00611,79.99907],[-110.00611,49.00184],[-95.15259,48.99824],[-95.15259,49.38326],[-95.13199,49.37343],[-95.05921,49.35286],[-95.01664,49.35643],[-94.99192,49.36985],[-94.97681,49.36717],[-94.95759,49.37074],[-94.90677,49.35107],[-94.87931,49.33317],[-94.85596,49.32512],[-94.83811,49.32512],[-94.81888,49.32154],[-94.82438,49.3099],[-94.82712,49.29468],[-94.79828,49.21311],[-94.79828,49.19965],[-94.77494,49.12062],[-94.75022,49.10084],[-94.68293,48.88548],[-94.68567,48.87194],[-94.69391,48.86923],[-94.69254,48.85658],[-94.6843,48.84122],[-94.70078,48.83489],[-94.7049,48.82494],[-94.69529,48.80867],[-94.69254,48.777],[-94.66233,48.76162],[-94.64859,48.75075],[-94.64447,48.74351],[-94.62113,48.73898],[-94.60328,48.72811],[-94.59092,48.71996],[-94.55178,48.71543],[-94.53942,48.70365],[-94.50097,48.69911],[-94.47281,48.6973],[-94.45153,48.69232],[-94.43848,48.69458],[-94.41925,48.71044],[-94.40758,48.71044],[-94.38424,48.71271],[-94.36638,48.70591],[-94.34441,48.7041],[-94.32656,48.70501],[-94.30871,48.7109],[-94.2833,48.70636],[-94.27712,48.70138],[-94.26545,48.69911],[-94.2524,48.6837],[-94.25652,48.6633],[-94.24828,48.6565],[-94.24485,48.65287],[-94.22493,48.65015],[-94.19816,48.65151],[-94.16039,48.64652],[-94.13773,48.64515],[-94.11988,48.64425],[-94.10202,48.64652],[-94.09241,48.64334],[-94.07799,48.64379],[-94.06769,48.64606],[-94.06426,48.64334],[-94.05945,48.64379],[-94.04366,48.64515],[-94.03748,48.64198],[-94.00521,48.64334],[-93.96058,48.63699],[-93.95371,48.63381],[-93.9338,48.6329],[-93.91869,48.6329],[-93.9132,48.63563],[-93.8926,48.632],[-93.87063,48.63064],[-93.84934,48.63109],[-93.83973,48.62791],[-93.83011,48.61883],[-93.82119,48.6093],[-93.81295,48.5875],[-93.80539,48.57842],[-93.80402,48.56524],[-93.81295,48.55161],[-93.8102,48.54388],[-93.81707,48.53524],[-93.81707,48.52933],[-93.80883,48.52388],[-93.79303,48.51751],[-93.7587,48.51887],[-93.75321,48.51478],[-93.73879,48.51796],[-93.71956,48.51705],[-93.70995,48.51933],[-93.69072,48.51569],[-93.67562,48.5166],[-93.64403,48.51887],[-93.63648,48.5257],[-93.63099,48.53343],[-93.62343,48.52842],[-93.61313,48.52251],[-93.60489,48.52342],[-93.59665,48.52842],[-93.58979,48.53024],[-93.5788,48.52706],[-93.56026,48.5307],[-93.54584,48.52979],[-93.517,48.53524],[-93.49778,48.54252],[-93.46688,48.54661],[-93.45795,48.55479],[-93.45795,48.56842],[-93.46344,48.59341],[-93.43667,48.59477],[-93.42774,48.60158],[-93.40508,48.60976],[-93.39821,48.60522],[-93.38242,48.60522],[-93.37281,48.60567],[-93.36319,48.61339],[-93.35633,48.61203],[-93.35221,48.61293],[-93.3474,48.62564],[-93.25539,48.64334],[-93.20801,48.64289],[-93.18329,48.62791],[-93.17917,48.62337],[-93.08922,48.62746],[-92.98485,48.62428],[-92.95533,48.632],[-92.95121,48.63018],[-92.94983,48.61021],[-92.92992,48.60703],[-92.91001,48.59659],[-92.89422,48.59477],[-92.72805,48.53934],[-92.65801,48.54661],[-92.63466,48.54252],[-92.629,48.52228],[-92.62591,48.51819],[-92.62677,48.51433],[-92.62625,48.51342],[-92.62522,48.51296],[-92.63123,48.50909],[-92.63192,48.50693],[-92.62728,48.50329],[-92.63072,48.50068],[-92.63724,48.4992],[-92.64016,48.49988],[-92.64719,48.49988],[-92.65406,48.50182],[-92.66144,48.49636],[-92.68565,48.49727],[-92.69886,48.49476],[-92.7011,48.48475],[-92.70916,48.47303],[-92.70865,48.47041],[-92.71277,48.46324],[-92.68805,48.44366],[-92.6635,48.4399],[-92.65612,48.4366],[-92.57647,48.44081],[-92.53716,48.44765],[-92.51502,48.44833],[-92.50763,48.44799],[-92.48927,48.43034],[-92.48429,48.4292],[-92.48188,48.42828],[-92.48206,48.42749],[-92.48085,48.42658],[-92.48103,48.42544],[-92.47862,48.42282],[-92.47536,48.4186],[-92.45665,48.41404],[-92.45631,48.40117],[-92.47639,48.3721],[-92.4697,48.35168],[-92.44154,48.31585],[-92.44051,48.31539],[-92.43897,48.3114],[-92.43674,48.30911],[-92.43176,48.30512],[-92.42918,48.3058],[-92.42575,48.30477],[-92.4206,48.29884],[-92.41528,48.29484],[-92.40155,48.27119],[-92.39314,48.26022],[-92.39296,48.25874],[-92.39331,48.25759],[-92.39211,48.25668],[-92.38953,48.25382],[-92.39005,48.25302],[-92.39228,48.25302],[-92.39296,48.25188],[-92.39193,48.25096],[-92.39022,48.25074],[-92.38678,48.25176],[-92.38593,48.25142],[-92.38472,48.24925],[-92.38678,48.24925],[-92.38644,48.24754],[-92.38833,48.24662],[-92.38713,48.24433],[-92.38472,48.24468],[-92.38387,48.24433],[-92.38438,48.24251],[-92.38318,48.23942],[-92.38095,48.23645],[-92.37906,48.23599],[-92.37854,48.23542],[-92.37923,48.23427],[-92.37854,48.23347],[-92.37854,48.23153],[-92.37545,48.22833],[-92.37528,48.22638],[-92.37254,48.22375],[-92.37065,48.22387],[-92.37013,48.22021],[-92.36721,48.22215],[-92.36721,48.22387],[-92.36378,48.22284],[-92.36172,48.2233],[-92.36069,48.22535],[-92.35383,48.22924],[-92.35348,48.23039],[-92.34181,48.23199],[-92.34078,48.2337],[-92.33752,48.2353],[-92.33649,48.23576],[-92.3346,48.23462],[-92.33374,48.23382],[-92.33117,48.23473],[-92.32911,48.23507],[-92.32739,48.23702],[-92.32241,48.23725],[-92.31503,48.24033],[-92.28053,48.24456],[-92.26988,48.24845],[-92.29392,48.32783],[-92.28877,48.34301],[-92.26267,48.3551],[-92.22147,48.34894],[-92.21993,48.34803],[-92.21718,48.34518],[-92.20688,48.34586],[-92.20654,48.34746],[-92.20637,48.34951],[-92.20414,48.35191],[-92.19538,48.35065],[-92.1947,48.34883],[-92.19264,48.34883],[-92.17839,48.35191],[-92.17907,48.35533],[-92.17753,48.35704],[-92.16208,48.36332],[-92.14526,48.36571],[-92.14371,48.35624],[-92.09067,48.35465],[-92.0838,48.35373],[-92.07797,48.35818],[-92.06732,48.35955],[-92.05531,48.35944],[-92.04878,48.34883],[-92.04586,48.3478],[-92.04518,48.34586],[-92.04792,48.34392],[-92.04689,48.3348],[-92.0378,48.33308],[-92.03076,48.32589],[-92.0002,48.3211],[-92.01308,48.29747],[-92.01205,48.28696],[-92.00707,48.28056],[-92.00621,48.26548],[-91.98922,48.26045],[-91.98029,48.24776],[-91.97789,48.24742],[-91.9772,48.24685],[-91.97806,48.24605],[-91.97566,48.24479],[-91.97342,48.24685],[-91.97051,48.24822],[-91.97136,48.25314],[-91.97068,48.25325],[-91.97033,48.25359],[-91.95918,48.25371],[-91.95694,48.25234],[-91.95403,48.25234],[-91.9542,48.24959],[-91.94802,48.24594],[-91.94973,48.24479],[-91.95815,48.24388],[-91.95712,48.23896],[-91.95986,48.23679],[-91.95832,48.23313],[-91.95282,48.23313],[-91.95111,48.23347],[-91.94493,48.23039],[-91.94201,48.23039],[-91.93789,48.23416],[-91.92931,48.23587],[-91.92124,48.2369],[-91.91678,48.23873],[-91.91334,48.23862],[-91.90733,48.23816],[-91.90613,48.23748],[-91.90236,48.23736],[-91.89343,48.23782],[-91.88467,48.22753],[-91.86768,48.21906],[-91.86442,48.20728],[-91.84536,48.20865],[-91.83609,48.21037],[-91.83283,48.20934],[-91.8155,48.21163],[-91.81429,48.20843],[-91.80932,48.20614],[-91.79747,48.20259],[-91.79129,48.20248],[-91.78872,48.19641],[-91.78614,48.1963],[-91.78082,48.20076],[-91.76434,48.20065],[-91.7628,48.20156],[-91.76091,48.20454],[-91.7561,48.20579],[-91.75353,48.2011],[-91.74855,48.19882],[-91.74426,48.1987],[-91.74151,48.19973],[-91.7422,48.20499],[-91.73859,48.20419],[-91.73722,48.20431],[-91.72486,48.2011],[-91.71507,48.19939],[-91.71301,48.19801],[-91.7101,48.19424],[-91.71027,48.19241],[-91.71181,48.18772],[-91.72108,48.18062],[-91.72194,48.17867],[-91.72297,48.17329],[-91.724,48.17077],[-91.72297,48.16906],[-91.71696,48.17181],[-91.70941,48.17284],[-91.7046,48.17055],[-91.70512,48.16402],[-91.70443,48.16013],[-91.70666,48.15371],[-91.70821,48.15326],[-91.70701,48.15062],[-91.70289,48.1449],[-91.69894,48.1449],[-91.69791,48.14444],[-91.69774,48.14112],[-91.69962,48.13791],[-91.69928,48.13184],[-91.7034,48.12519],[-91.70735,48.12336],[-91.70941,48.11992],[-91.71164,48.11751],[-91.71267,48.11545],[-91.71181,48.11465],[-91.71061,48.11488],[-91.70323,48.11396],[-91.69653,48.11602],[-91.69207,48.11705],[-91.69156,48.11797],[-91.6919,48.1198],[-91.68211,48.12255],[-91.68349,48.11774],[-91.68744,48.11178],[-91.68177,48.10972],[-91.6816,48.10892],[-91.68091,48.10846],[-91.67731,48.10766],[-91.67113,48.10857],[-91.66752,48.10846],[-91.66512,48.10743],[-91.66237,48.10926],[-91.6622,48.11201],[-91.65328,48.11465],[-91.65156,48.11419],[-91.65104,48.11293],[-91.65293,48.10972],[-91.64795,48.10628],[-91.64692,48.10364],[-91.63971,48.09699],[-91.61517,48.10215],[-91.58873,48.1025],[-91.57586,48.10685],[-91.55903,48.10834],[-91.55302,48.10341],[-91.56933,48.0939],[-91.57568,48.06695],[-91.57294,48.05777],[-91.57551,48.04905],[-91.56744,48.04366],[-91.5417,48.05375],[-91.48814,48.06844],[-91.46479,48.06649],[-91.44986,48.0689],[-91.44591,48.06706],[-91.44694,48.06397],[-91.43853,48.05249],[-91.4387,48.05077],[-91.43664,48.04939],[-91.42977,48.04882],[-91.41398,48.05375],[-91.3908,48.05731],[-91.37776,48.06615],[-91.37072,48.06959],[-91.36471,48.06741],[-91.34858,48.072],[-91.33982,48.0736],[-91.3369,48.07131],[-91.33604,48.07016],[-91.3345,48.06959],[-91.33244,48.07016],[-91.33107,48.06947],[-91.32935,48.07005],[-91.32884,48.07119],[-91.32437,48.07291],[-91.31819,48.07326],[-91.3151,48.07372],[-91.31167,48.07314],[-91.31081,48.0728],[-91.30686,48.07303],[-91.28987,48.0744],[-91.27596,48.07865],[-91.26669,48.07911],[-91.24953,48.08404],[-91.23459,48.09619],[-91.22807,48.09929],[-91.21502,48.10284],[-91.19013,48.12519],[-91.18309,48.12187],[-91.18052,48.1237],[-91.17691,48.1253],[-91.15597,48.13986],[-91.13743,48.14925],[-91.13932,48.15578],[-91.11924,48.16127],[-91.11477,48.16677],[-91.09246,48.17329],[-91.08233,48.18096],[-91.07615,48.17925],[-91.06568,48.18142],[-91.06259,48.18531],[-91.05967,48.18554],[-91.05589,48.18817],[-91.03753,48.19],[-91.03169,48.18897],[-91.02431,48.19046],[-91.02036,48.19321],[-91.01195,48.19824],[-91.00285,48.20053],[-91.00337,48.20351],[-90.97762,48.21941],[-90.92612,48.22993],[-90.91547,48.23073],[-90.90741,48.23736],[-90.88561,48.24582],[-90.88131,48.24045],[-90.87531,48.2377],[-90.86672,48.2385],[-90.84801,48.24456],[-90.84372,48.24365],[-90.84303,48.24136],[-90.8396,48.23976],[-90.83754,48.23507],[-90.83994,48.22798],[-90.83754,48.2265],[-90.83651,48.21849],[-90.83411,48.18749],[-90.83651,48.17684],[-90.83256,48.17375],[-90.82364,48.1781],[-90.82535,48.18348],[-90.8214,48.18485],[-90.8178,48.17936],[-90.8099,48.17982],[-90.80424,48.17764],[-90.80098,48.16287],[-90.7972,48.16001],[-90.7936,48.16081],[-90.78647,48.16101],[-90.78141,48.16431],[-90.77652,48.16328],[-90.77797,48.14782],[-90.78278,48.14547],[-90.79686,48.13934],[-90.79789,48.13699],[-90.79437,48.13562],[-90.78883,48.13619],[-90.78572,48.1355],[-90.78227,48.13619],[-90.78192,48.13527],[-90.78364,48.13275],[-90.78501,48.13315],[-90.7881,48.1331],[-90.78999,48.13],[-90.78707,48.12777],[-90.78413,48.12829],[-90.78291,48.12778],[-90.78321,48.12664],[-90.78175,48.12585],[-90.77677,48.12404],[-90.7742,48.11843],[-90.76888,48.11637],[-90.76664,48.11407],[-90.76716,48.11064],[-90.76132,48.10009],[-90.76149,48.09831],[-90.75154,48.09103],[-90.74158,48.09453],[-90.70261,48.09608],[-90.68613,48.10026],[-90.64159,48.10347],[-90.62691,48.11178],[-90.62022,48.11184],[-90.6178,48.11235],[-90.61589,48.11223],[-90.61517,48.11291],[-90.61271,48.11347],[-90.60606,48.11608],[-90.59129,48.11763],[-90.59039,48.11958],[-90.58683,48.12107],[-90.58561,48.12227],[-90.58232,48.12347],[-90.5797,48.12404],[-90.57679,48.12072],[-90.57155,48.12135],[-90.56529,48.12244],[-90.55919,48.12175],[-90.55541,48.11705],[-90.56966,48.10685],[-90.56769,48.10187],[-90.5646,48.09889],[-90.55636,48.09585],[-90.51722,48.0994],[-90.50992,48.09722],[-90.50761,48.09929],[-90.50555,48.09989],[-90.49611,48.09866],[-90.49529,48.09969],[-90.49362,48.10152],[-90.49001,48.0994],[-90.48632,48.09929],[-90.4834,48.10021],[-90.4801,48.10212],[-90.47748,48.10542],[-90.47122,48.10599],[-90.4671,48.10915],[-90.46514,48.10854],[-90.46199,48.10657],[-90.45231,48.10545],[-90.44744,48.10341],[-90.44311,48.10055],[-90.43808,48.09871],[-90.41058,48.10508],[-90.40315,48.10525],[-90.39828,48.10231],[-90.3973,48.10245],[-90.39613,48.10171],[-90.39554,48.10117],[-90.39341,48.10041],[-90.39038,48.1001],[-90.38844,48.09875],[-90.38616,48.09797],[-90.38579,48.09606],[-90.38491,48.09473],[-90.37991,48.09248],[-90.3781,48.0925],[-90.37474,48.09092],[-90.37277,48.09135],[-90.37337,48.09235],[-90.37363,48.09358],[-90.37285,48.09413],[-90.37175,48.09342],[-90.37,48.0941],[-90.36877,48.09386],[-90.36777,48.09486],[-90.35873,48.0949],[-90.35718,48.09444],[-90.35373,48.095],[-90.34564,48.09396],[-90.3436,48.09447],[-90.34292,48.09555],[-90.33805,48.09605],[-90.33706,48.09969],[-90.33028,48.10238],[-90.32324,48.10319],[-90.31732,48.10364],[-90.31436,48.10502],[-90.3102,48.10571],[-90.30582,48.10513],[-90.30367,48.10387],[-90.29835,48.10261],[-90.29269,48.099],[-90.28917,48.09912],[-90.27441,48.10313],[-90.26428,48.1033],[-90.2608,48.10278],[-90.25389,48.10215],[-90.23402,48.10723],[-90.22428,48.10829],[-90.21325,48.10657],[-90.1949,48.10826],[-90.18857,48.10811],[-90.17682,48.11247],[-90.16416,48.10975],[-90.14738,48.11092],[-90.1445,48.11184],[-90.14403,48.11287],[-90.13253,48.11167],[-90.12738,48.1082],[-90.12566,48.10806],[-90.12497,48.10754],[-90.12369,48.10743],[-90.12206,48.10559],[-90.1163,48.10416],[-90.11399,48.10433],[-90.09176,48.10479],[-90.07412,48.10144],[-90.06652,48.09854],[-90.05745,48.09626],[-90.04871,48.09192],[-90.04137,48.08954],[-90.03931,48.09012],[-90.02936,48.08754],[-90.02318,48.08484],[-90.01889,48.07205],[-90.0146,48.06752],[-90.0109,48.06838],[-90.00992,48.06898],[-90.00859,48.06878],[-90.00636,48.0658],[-90.00464,48.06511],[-89.99863,48.05889],[-89.99434,79.99918],[-110.00611,79.99907]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!:!!!!!VE:**Canada#VY0:Nunavut between 90º W and 70º W, and south of 80º N+including Baffin Island#VE4:Manitoba east of 90º W#VE3:Ontario east of 90º W#VE2:Quebec west of 70º W","itu_zone_number":4,"itu_zone_name_loc":[55,-78]},"geometry":{"type":"Polygon","coordinates":[[[-89.999999,48.05992],[-89.999999,80],[-69,80],[-72.64049,79.00866],[-75.22116,77.47455],[-67.02313,74.40973],[-54.14269,61.24388],[-69.9939,61.24646],[-69.99802,46.6945],[-70.05982,46.41892],[-70.20401,46.33163],[-70.28504,46.18743],[-70.24109,46.13797],[-70.31113,46.05792],[-70.27096,46.0584],[-70.31319,46.02075],[-70.2895,45.99073],[-70.31336,45.96664],[-70.26856,45.95974],[-70.24109,45.94589],[-70.26375,45.92272],[-70.25448,45.89967],[-70.27817,45.87662],[-70.34615,45.84696],[-70.41138,45.79817],[-70.37842,45.72535],[-70.56931,45.65811],[-70.72998,45.51789],[-70.62561,45.41002],[-70.64209,45.39845],[-70.65308,45.3753],[-70.67746,45.39603],[-70.71557,45.38783],[-70.75093,45.42206],[-70.78629,45.43122],[-70.82612,45.39845],[-70.80861,45.38082],[-70.81032,45.3632],[-70.81616,45.33689],[-70.80552,45.32216],[-70.8474,45.26759],[-70.83985,45.22848],[-70.88585,45.2345],[-70.91538,45.27341],[-70.91057,45.30167],[-70.94696,45.33573],[-70.97606,45.32987],[-71.0134,45.34332],[-71.00979,45.31616],[-71.09047,45.30433],[-71.13099,45.25168],[-71.21888,45.25555],[-71.29029,45.30193],[-71.43448,45.23331],[-71.39569,45.20494],[-71.4338,45.12818],[-71.50212,45.06786],[-71.49903,45.0153],[-72.31751,45.00365],[-73.22113,45.01336],[-74.12476,44.99199],[-74.71253,45.00753],[-74.83338,45.01918],[-75.3772,44.78573],[-75.81665,44.49258],[-75.81665,44.4377],[-75.96497,44.35135],[-76.16272,44.27667],[-76.15723,44.25306],[-76.19019,44.22945],[-76.23414,44.20189],[-76.31104,44.19795],[-76.35498,44.13491],[-76.43189,44.09942],[-76.79993,43.63209],[-78.68409,43.64402],[-79.20044,43.4569],[-79.0741,43.2572],[-79.04114,43.13707],[-79.0741,43.09697],[-78.9972,43.05283],[-79.01368,42.99259],[-78.97522,42.96044],[-78.96424,42.96848],[-78.93677,42.95642],[-78.9148,42.90413],[-78.94227,42.82763],[-80.08484,42.391],[-81.2494,42.21224],[-82.39197,41.68522],[-82.67212,41.6688],[-83.06214,41.86137],[-83.14904,42.01642],[-83.12607,42.28569],[-82.81647,42.37632],[-82.67383,42.54463],[-82.55317,42.56716],[-82.48214,42.73738],[-82.406,43.00485],[-82.12339,43.58463],[-82.51644,45.33729],[-83.59064,45.82049],[-83.42787,45.99956],[-83.60568,46.12135],[-83.73405,46.09829],[-83.82946,46.10571],[-83.95292,46.04385],[-84.00209,46.14128],[-84.08944,46.22198],[-84.14328,46.39895],[-84.10816,46.5332],[-84.20649,46.53983],[-84.2499,46.49354],[-84.3367,46.51436],[-84.4268,46.50114],[-84.47295,46.46523],[-84.55426,46.46151],[-84.75867,46.63186],[-84.8512,46.88257],[-88.37008,48.30565],[-88.67727,48.24498],[-89.33877,47.97374],[-89.48988,48.01393],[-89.56545,48.00221],[-89.57619,47.9954],[-89.59379,48.0033],[-89.60796,48.00751],[-89.61113,48.01725],[-89.61672,48.01205],[-89.63878,48.00869],[-89.64643,48.00257],[-89.65956,48.01115],[-89.68275,48.01224],[-89.70319,48.0069],[-89.71539,48.01075],[-89.71934,48.01735],[-89.73859,48.02279],[-89.76333,48.02365],[-89.79151,48.0167],[-89.80732,48.01709],[-89.81901,48.01488],[-89.8252,48.00715],[-89.83276,47.99896],[-89.84307,48.00364],[-89.84721,47.99278],[-89.86439,47.99195],[-89.87195,47.9856],[-89.89122,47.98743],[-89.90051,47.99064],[-89.90774,47.99109],[-89.92427,48.00073],[-89.93392,48.01497],[-89.94905,48.01623],[-89.95594,48.01106],[-89.97521,48.02276],[-89.99242,48.02712],[-89.99741,48.03763],[-89.99415,48.04996],[-90.00001,48.05995]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:OX:**Greenland, south of 80º N","itu_zone_number":5,"itu_zone_name_loc":[73,-40]},"geometry":{"type":"Polygon","coordinates":[[[-10,73],[-10,80],[-69,80],[-72.64049,79.00866],[-75.22116,77.47455],[-67.02313,74.40973],[-54.14269,61.24388],[-50,54],[-10,73]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:!!!W:**USA#W6:California#W7:Arizona west of 110º W+Idaho+Montana west of 110º W+Nevada+Oregon+Utah west of 110º W+Washington","itu_zone_number":6,"itu_zone_name_loc":[40,-119]},"geometry":{"type":"Polygon","coordinates":[[[-110.00473,49.00004],[-110.00061,45.00365],[-110.11048,45.00462],[-110.19288,44.99782],[-110.36316,45.00073],[-110.40436,44.99394],[-110.6955,44.99199],[-110.78476,45.00365],[-111.0553,45.00073],[-111.04706,40.99855],[-110.00061,40.99752],[-110.00061,31.33369],[-111.07453,31.33252],[-114.81366,32.49441],[-114.81297,32.5002],[-114.814,32.50426],[-114.81675,32.50744],[-114.81396,32.50925],[-114.80636,32.50845],[-114.80113,32.51323],[-114.80314,32.51555],[-114.80962,32.51786],[-114.81009,32.52134],[-114.81366,32.52481],[-114.80585,32.5306],[-114.80216,32.53812],[-114.80683,32.54652],[-114.79572,32.55086],[-114.79239,32.55607],[-114.7925,32.5688],[-114.80576,32.55954],[-114.80988,32.55838],[-114.81434,32.56272],[-114.814,32.56851],[-114.80147,32.57401],[-114.80404,32.5824],[-114.79941,32.59455],[-114.80713,32.60207],[-114.80919,32.61768],[-114.80695,32.62208],[-114.7999,32.62532],[-114.79251,32.62163],[-114.78306,32.62429],[-114.78219,32.63216],[-114.77102,32.63771],[-114.76363,32.64298],[-114.76448,32.6494],[-114.75717,32.65618],[-114.74918,32.66065],[-114.74692,32.66844],[-114.74398,32.6794],[-114.73015,32.69962],[-114.72937,32.70597],[-114.71933,32.7189],[-114.78619,32.71451],[-117.12525,32.53523],[-124.62891,32.47269],[-130.784,48.57479],[-124.8016,48.50373],[-123.57354,48.22467],[-123.26712,48.26823],[-123.11863,48.41093],[-123.22129,48.54965],[-123.25974,48.68824],[-123.00225,48.77112],[-123.0098,48.83127],[-123.32154,49.00544],[-121.38005,49.00679],[-117.04354,49.00094],[-110.00473,49.00004]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:!!!!!!!W:**USA#W7:Arizona east of 110º W+Montana east of 110º W+Utah east of 110º W+Wyoming#W0:Colorado+Iowa+Kansas+Minnesota+Missouri west of 90º W+Nebraska+North Dakota+South Dakota#W9:Illinois west of 90º W+Wisconsin west of 90º W#W8:Michigan west of 90º W#W5:Arkansas west of 90º W+Louisiana west of 90º W+Mississippi west of 90º W+New Mexico+Oklahoma+Texas#W4:Tennessee west of 90º W","itu_zone_number":7,"itu_zone_name_loc":[40,-100]},"geometry":{"type":"Polygon","coordinates":[[[-110.00473,49.00004],[-110.00061,45.00365],[-110.11048,45.00462],[-110.19288,44.99782],[-110.36316,45.00073],[-110.40436,44.99394],[-110.6955,44.99199],[-110.78476,45.00365],[-111.0553,45.00073],[-111.04706,40.99855],[-110.00061,40.99752],[-110.00061,31.33369],[-108.20847,31.33252],[-108.2071,31.78421],[-106.531,31.7845],[-106.51417,31.7702],[-106.50988,31.75998],[-106.50568,31.76042],[-106.50216,31.75677],[-106.48705,31.74699],[-106.4716,31.75028],[-106.46782,31.75882],[-106.45306,31.76437],[-106.43624,31.75532],[-106.42079,31.7521],[-106.39435,31.73926],[-106.38062,31.73196],[-106.37341,31.71414],[-106.34938,31.69604],[-106.33461,31.66331],[-106.30269,31.62122],[-106.29342,31.59462],[-106.2838,31.5718],[-106.28071,31.56215],[-106.24878,31.54401],[-106.24638,31.54167],[-106.23711,31.51328],[-106.22441,31.49982],[-106.21926,31.4805],[-106.2045,31.46469],[-106.17531,31.45444],[-106.1578,31.43774],[-106.13137,31.42514],[-106.11145,31.42368],[-106.0809,31.39877],[-106.00434,31.39233],[-105.96966,31.36565],[-105.95456,31.36565],[-105.94597,31.35393],[-105.94838,31.34073],[-105.93842,31.31844],[-105.93361,31.31375],[-105.92469,31.31228],[-105.90889,31.31375],[-105.89619,31.29116],[-105.87594,31.29204],[-105.86976,31.28911],[-105.85465,31.27268],[-105.83628,31.24714],[-105.81268,31.2238],[-105.79388,31.20164],[-105.78358,31.1987],[-105.7798,31.18989],[-105.78015,31.18225],[-105.77603,31.17638],[-105.77328,31.16727],[-105.76401,31.16404],[-105.74341,31.16581],[-105.71938,31.14935],[-105.71698,31.14259],[-105.71183,31.13789],[-105.64797,31.11556],[-105.64179,31.09851],[-105.62806,31.09851],[-105.6078,31.08645],[-105.60162,31.07822],[-105.59681,31.06558],[-105.58583,31.05793],[-105.5793,31.0344],[-105.58136,31.02763],[-105.57896,31.02028],[-105.57141,31.0191],[-105.56969,31.01675],[-105.57038,31.00851],[-105.55665,30.98835],[-105.54223,30.98526],[-105.5333,30.98585],[-105.52643,30.9776],[-105.523,30.97643],[-105.51545,30.96524],[-105.50309,30.96818],[-105.49416,30.957],[-105.49622,30.95582],[-105.49897,30.95111],[-105.49485,30.94993],[-105.48867,30.94404],[-105.4921,30.94345],[-105.48935,30.94169],[-105.48729,30.94286],[-105.48111,30.94051],[-105.47768,30.93756],[-105.47631,30.93462],[-105.47081,30.93403],[-105.4715,30.93226],[-105.46807,30.92991],[-105.46669,30.92461],[-105.46463,30.92637],[-105.45296,30.92578],[-105.45228,30.92107],[-105.45502,30.9193],[-105.45296,30.91636],[-105.44747,30.92048],[-105.44472,30.91813],[-105.44541,30.91577],[-105.44198,30.90988],[-105.42893,30.90517],[-105.4255,30.90163],[-105.41314,30.90045],[-105.41176,30.89161],[-105.41245,30.88867],[-105.40421,30.8922],[-105.3994,30.88867],[-105.3994,30.8869],[-105.39803,30.88572],[-105.40421,30.88042],[-105.3994,30.87688],[-105.39254,30.87688],[-105.39185,30.87394],[-105.3946,30.87158],[-105.39528,30.8592],[-105.40215,30.85566],[-105.39528,30.84977],[-105.38842,30.85331],[-105.3685,30.84918],[-105.36301,30.84977],[-105.36026,30.84741],[-105.3534,30.84387],[-105.35408,30.83857],[-105.35271,30.83621],[-105.3479,30.83975],[-105.33967,30.84034],[-105.33761,30.83385],[-105.32799,30.83149],[-105.33211,30.82678],[-105.32937,30.82619],[-105.31838,30.82913],[-105.31838,30.82383],[-105.31563,30.81852],[-105.31838,30.81262],[-105.31701,30.81085],[-105.31014,30.81557],[-105.30808,30.8138],[-105.30877,30.81262],[-105.30877,30.81027],[-105.30602,30.81027],[-105.30053,30.82029],[-105.30121,30.82383],[-105.29091,30.82619],[-105.28748,30.81852],[-105.28199,30.81734],[-105.27581,30.8085],[-105.26894,30.8085],[-105.26619,30.80555],[-105.26207,30.79788],[-105.25658,30.79493],[-105.2298,30.80437],[-105.2298,30.80024],[-105.22706,30.79847],[-105.21744,30.80555],[-105.2147,30.80496],[-105.21332,30.80083],[-105.20989,30.79729],[-105.21264,30.79316],[-105.21813,30.79375],[-105.22088,30.78785],[-105.21264,30.78254],[-105.20714,30.78726],[-105.20165,30.78844],[-105.19547,30.79198],[-105.19066,30.78667],[-105.18586,30.78372],[-105.17624,30.76897],[-105.16938,30.77546],[-105.17006,30.78018],[-105.16663,30.77959],[-105.16526,30.77546],[-105.16526,30.77192],[-105.15564,30.77015],[-105.16182,30.75245],[-105.15633,30.75304],[-105.15427,30.75186],[-105.14466,30.7554],[-105.12681,30.74832],[-105.11788,30.7495],[-105.12063,30.74478],[-105.11582,30.74301],[-105.11376,30.74773],[-105.11033,30.7436],[-105.10758,30.73003],[-105.10209,30.72944],[-105.10209,30.7259],[-105.10483,30.72412],[-105.09934,30.72294],[-105.09797,30.71645],[-105.0911,30.71704],[-105.08767,30.71291],[-105.08698,30.70996],[-105.08149,30.70937],[-105.07874,30.70582],[-105.08355,30.70228],[-105.07943,30.69992],[-105.07599,30.70287],[-105.06981,30.70405],[-105.06432,30.69815],[-105.06226,30.69284],[-105.06363,30.68811],[-105.0602,30.68575],[-105.05745,30.68811],[-105.05402,30.68457],[-105.05402,30.68162],[-105.04853,30.6828],[-105.04647,30.68044],[-105.04509,30.68634],[-105.04578,30.68752],[-105.04372,30.6887],[-105.04097,30.68811],[-105.03548,30.68634],[-105.02861,30.68044],[-105.00733,30.68575],[-105.00252,30.68103],[-104.99978,30.67335],[-104.99978,30.67217],[-104.9936,30.66921],[-104.9936,30.66508],[-104.98604,30.66272],[-104.9833,30.63141],[-104.98055,30.62845],[-104.97918,30.62136],[-104.97437,30.61664],[-104.973,30.61132],[-104.96819,30.60955],[-104.96064,30.61014],[-104.95446,30.60659],[-104.94965,30.60423],[-104.94072,30.60541],[-104.93798,30.60659],[-104.93454,30.60068],[-104.92905,30.60068],[-104.9263,30.60541],[-104.92081,30.59595],[-104.92081,30.59063],[-104.91875,30.58531],[-104.9112,30.58472],[-104.90708,30.57822],[-104.89815,30.56699],[-104.89472,30.56048],[-104.89884,30.55575],[-104.88785,30.54747],[-104.8906,30.54156],[-104.88923,30.53505],[-104.88167,30.53269],[-104.88167,30.52618],[-104.88373,30.52618],[-104.88717,30.52441],[-104.88236,30.52263],[-104.88511,30.52027],[-104.88511,30.51849],[-104.87961,30.5179],[-104.87687,30.51199],[-104.87343,30.51258],[-104.87275,30.50903],[-104.87275,30.4966],[-104.86863,30.49483],[-104.86725,30.48418],[-104.87069,30.48122],[-104.86931,30.47945],[-104.86931,30.47353],[-104.86519,30.46465],[-104.87,30.45844],[-104.86828,30.4537],[-104.86519,30.45163],[-104.8676,30.44157],[-104.85833,30.43742],[-104.86245,30.42795],[-104.85009,30.41966],[-104.84803,30.41966],[-104.8494,30.41611],[-104.84871,30.41315],[-104.85695,30.40959],[-104.85489,30.40071],[-104.85901,30.39123],[-104.85283,30.3859],[-104.83841,30.37465],[-104.8185,30.37643],[-104.81644,30.37465],[-104.81987,30.3705],[-104.81713,30.36576],[-104.81163,30.36754],[-104.81163,30.3628],[-104.81438,30.35924],[-104.81575,30.3551],[-104.82262,30.35213],[-104.8185,30.3468],[-104.81163,30.34088],[-104.81163,30.33258],[-104.79653,30.3308],[-104.79172,30.32547],[-104.79104,30.32132],[-104.77662,30.30828],[-104.77936,30.30413],[-104.77318,30.30413],[-104.76563,30.30828],[-104.76563,30.30294],[-104.75808,30.28397],[-104.76151,30.27626],[-104.76151,30.27507],[-104.74846,30.2733],[-104.75121,30.26321],[-104.73816,30.2561],[-104.73816,30.26144],[-104.73336,30.26084],[-104.70589,30.23474],[-104.71001,30.22406],[-104.68735,30.17956],[-104.68804,30.14037],[-104.69628,30.13325],[-104.69422,30.11721],[-104.68598,30.10711],[-104.69491,30.10296],[-104.6901,30.09523],[-104.68735,30.0988],[-104.6901,30.07265],[-104.70246,30.06374],[-104.70726,30.05007],[-104.69559,30.03581],[-104.70314,30.02392],[-104.6901,30.01381],[-104.69216,30.0037],[-104.68941,30.00192],[-104.68873,29.99478],[-104.69491,29.9924],[-104.68529,29.98883],[-104.69353,29.97634],[-104.67843,29.98051],[-104.68461,29.97099],[-104.68323,29.9585],[-104.67499,29.95731],[-104.67362,29.95077],[-104.68117,29.92935],[-104.67362,29.91209],[-104.66469,29.90316],[-104.65714,29.90375],[-104.6592,29.88887],[-104.65027,29.88887],[-104.63585,29.87101],[-104.6283,29.85255],[-104.62143,29.84957],[-104.62487,29.84481],[-104.62006,29.84064],[-104.61663,29.846],[-104.61045,29.83766],[-104.61937,29.8323],[-104.60907,29.82575],[-104.60907,29.82098],[-104.59534,29.80668],[-104.59259,29.81145],[-104.58436,29.80073],[-104.59122,29.79894],[-104.58916,29.79655],[-104.58367,29.79655],[-104.57955,29.78464],[-104.56582,29.77272],[-104.56856,29.75782],[-104.56994,29.75364],[-104.5514,29.73874],[-104.56101,29.73755],[-104.55483,29.7298],[-104.55071,29.73039],[-104.55002,29.72503],[-104.54934,29.72025],[-104.54659,29.7125],[-104.54453,29.697],[-104.5308,29.69342],[-104.54316,29.68208],[-104.53492,29.66896],[-104.52462,29.66478],[-104.51088,29.64569],[-104.515,29.64032],[-104.50539,29.63315],[-104.49578,29.63912],[-104.46488,29.61167],[-104.45664,29.60808],[-104.40102,29.57345],[-104.39415,29.55494],[-104.38111,29.54359],[-104.37081,29.54419],[-104.33716,29.51969],[-104.32206,29.52387],[-104.32,29.53224],[-104.30901,29.53403],[-104.31244,29.52686],[-104.31176,29.52328],[-104.29184,29.52148],[-104.263,29.51372],[-104.26232,29.50595],[-104.25477,29.50714],[-104.24103,29.49818],[-104.23691,29.49818],[-104.23142,29.48204],[-104.23005,29.47845],[-104.21494,29.48622],[-104.20945,29.48264],[-104.21288,29.46231],[-104.21837,29.45932],[-104.19434,29.44318],[-104.19434,29.43601],[-104.18267,29.42703],[-104.18061,29.41328],[-104.17374,29.40909],[-104.16687,29.40012],[-104.16962,29.39653],[-104.16275,29.39114],[-104.15314,29.39473],[-104.1504,29.38935],[-104.14559,29.38815],[-104.14147,29.38097],[-104.13598,29.38516],[-104.1243,29.38038],[-104.12087,29.37439],[-104.11469,29.3708],[-104.11263,29.37499],[-104.09821,29.36721],[-104.0886,29.35764],[-104.08928,29.35584],[-104.08036,29.34507],[-104.07418,29.34686],[-104.0577,29.33669],[-104.0577,29.3331],[-103.97324,29.29657],[-103.96775,29.30017],[-103.92655,29.29418],[-103.91831,29.28879],[-103.91762,29.2858],[-103.89977,29.28819],[-103.88947,29.27921],[-103.88398,29.284],[-103.86269,29.27981],[-103.83797,29.27741],[-103.82767,29.27022],[-103.81463,29.27442],[-103.80913,29.27082],[-103.80845,29.26304],[-103.79952,29.25824],[-103.78647,29.26663],[-103.7748,29.24506],[-103.78098,29.24327],[-103.78167,29.22829],[-103.7748,29.2199],[-103.76999,29.22169],[-103.76793,29.22769],[-103.76038,29.23368],[-103.75557,29.22709],[-103.75695,29.22349],[-103.75351,29.2211],[-103.74321,29.22229],[-103.74047,29.20491],[-103.72811,29.19652],[-103.71781,29.18154],[-103.713,29.18333],[-103.70339,29.18453],[-103.69927,29.17854],[-103.68966,29.17854],[-103.6567,29.17015],[-103.65189,29.16115],[-103.6512,29.15815],[-103.64846,29.15635],[-103.64571,29.15875],[-103.64159,29.16355],[-103.63541,29.16115],[-103.63129,29.16175],[-103.62786,29.16355],[-103.61893,29.16295],[-103.61344,29.16415],[-103.60589,29.16175],[-103.5949,29.15156],[-103.58117,29.15156],[-103.57293,29.15516],[-103.55301,29.15575],[-103.55027,29.15336],[-103.5537,29.14856],[-103.54958,29.14436],[-103.54134,29.14616],[-103.52349,29.13297],[-103.5228,29.12157],[-103.51319,29.11977],[-103.50563,29.11617],[-103.49946,29.11617],[-103.49946,29.11077],[-103.49465,29.10957],[-103.48229,29.09217],[-103.47336,29.09097],[-103.47611,29.08797],[-103.46993,29.08317],[-103.47062,29.06637],[-103.46032,29.06877],[-103.46238,29.07297],[-103.4507,29.07357],[-103.4507,29.06397],[-103.44109,29.05797],[-103.43422,29.05797],[-103.43422,29.05376],[-103.42804,29.04776],[-103.43216,29.04416],[-103.4253,29.04356],[-103.41431,29.03816],[-103.40401,29.03936],[-103.40058,29.03215],[-103.39097,29.03395],[-103.38753,29.02255],[-103.37655,29.02255],[-103.36144,29.01774],[-103.35114,29.03095],[-103.34359,29.04596],[-103.32779,29.04356],[-103.32917,29.02975],[-103.34153,29.02975],[-103.33809,29.02015],[-103.32573,29.01654],[-103.31818,29.02255],[-103.31612,29.02555],[-103.30788,29.02195],[-103.31063,29.01654],[-103.31749,29.01174],[-103.30925,29.00513],[-103.30239,29.01054],[-103.28797,29.00453],[-103.2811,28.98892],[-103.28797,28.98111],[-103.27904,28.97751],[-103.26806,28.99673],[-103.25158,28.98411],[-103.25089,28.98171],[-103.2399,28.98171],[-103.22892,28.99252],[-103.21999,28.98471],[-103.21312,28.98832],[-103.16712,28.97871],[-103.16369,28.9745],[-103.15339,28.9727],[-103.14927,28.9757],[-103.13553,28.98471],[-103.11356,28.98652],[-103.11631,29.00093],[-103.10738,29.01594],[-103.1012,29.01894],[-103.09845,29.02855],[-103.10738,29.03816],[-103.09708,29.05196],[-103.10051,29.06157],[-103.09021,29.06397],[-103.09159,29.05556],[-103.08266,29.05436],[-103.08678,29.06877],[-103.07717,29.07717],[-103.0806,29.08797],[-103.06893,29.09337],[-103.0655,29.09097],[-103.05588,29.10117],[-103.0449,29.09517],[-103.03254,29.10537],[-103.03666,29.11257],[-103.02842,29.11677],[-103.02155,29.12697],[-103.01331,29.12697],[-103.01606,29.13417],[-103.01125,29.13776],[-103.0085,29.14976],[-103.00507,29.15276],[-103.00232,29.14976],[-102.99271,29.15995],[-102.99889,29.17554],[-102.99065,29.18453],[-102.97898,29.18633],[-102.96319,29.18034],[-102.95151,29.17494],[-102.95289,29.18094],[-102.94877,29.18154],[-102.94465,29.18813],[-102.94259,29.19353],[-102.93709,29.18693],[-102.93297,29.19353],[-102.91924,29.19173],[-102.91855,29.19772],[-102.91512,29.20012],[-102.91375,29.20791],[-102.91718,29.2151],[-102.91169,29.2205],[-102.90207,29.21091],[-102.87598,29.2133],[-102.86499,29.22709],[-102.87186,29.24267],[-102.88765,29.24446],[-102.90551,29.25704],[-102.90207,29.26543],[-102.89933,29.26903],[-102.90276,29.27801],[-102.88834,29.29059],[-102.89246,29.30915],[-102.88628,29.31274],[-102.88559,29.32292],[-102.87941,29.34028],[-102.88285,29.34746],[-102.87804,29.35524],[-102.86293,29.35105],[-102.84028,29.35943],[-102.84508,29.36542],[-102.84508,29.37499],[-102.83478,29.37978],[-102.83341,29.38995],[-102.82723,29.39593],[-102.81899,29.39773],[-102.81556,29.39773],[-102.8135,29.40132],[-102.83272,29.40969],[-102.83135,29.44378],[-102.82174,29.44796],[-102.82036,29.45095],[-102.82517,29.45693],[-102.81418,29.47307],[-102.81418,29.48383],[-102.80045,29.48682],[-102.80594,29.49519],[-102.8032,29.50356],[-102.80663,29.50356],[-102.80869,29.52507],[-102.7929,29.53761],[-102.78809,29.54478],[-102.7723,29.54777],[-102.77848,29.56091],[-102.7723,29.57286],[-102.76818,29.57166],[-102.76268,29.57942],[-102.76955,29.59555],[-102.76131,29.59913],[-102.74621,29.59435],[-102.73865,29.6248],[-102.74277,29.63196],[-102.72561,29.64628],[-102.72561,29.65046],[-102.70707,29.66597],[-102.69677,29.67134],[-102.69539,29.67731],[-102.70089,29.68507],[-102.69883,29.69759],[-102.69059,29.70594],[-102.69059,29.72264],[-102.68166,29.7286],[-102.67548,29.7447],[-102.66861,29.7453],[-102.66655,29.73934],[-102.65969,29.73516],[-102.62398,29.73635],[-102.61437,29.74768],[-102.60819,29.74828],[-102.60064,29.75126],[-102.59652,29.75066],[-102.5869,29.74887],[-102.58072,29.75484],[-102.57386,29.75543],[-102.57317,29.76914],[-102.56836,29.77212],[-102.56012,29.76437],[-102.55394,29.75543],[-102.55463,29.75007],[-102.54914,29.7447],[-102.51069,29.77272],[-102.5203,29.78166],[-102.51549,29.78642],[-102.49833,29.78166],[-102.48734,29.78821],[-102.48185,29.77868],[-102.47155,29.77629],[-102.46537,29.78404],[-102.45919,29.77689],[-102.44751,29.77689],[-102.43721,29.77331],[-102.43241,29.77808],[-102.42142,29.77033],[-102.40563,29.76318],[-102.39876,29.76795],[-102.38778,29.76199],[-102.38846,29.78047],[-102.37885,29.79],[-102.37542,29.80371],[-102.36306,29.83528],[-102.3658,29.8454],[-102.35207,29.85493],[-102.34795,29.86267],[-102.34108,29.86982],[-102.33284,29.86684],[-102.3301,29.86327],[-102.32392,29.86565],[-102.3246,29.87339],[-102.32186,29.88054],[-102.28203,29.86565],[-102.27242,29.86863],[-102.26281,29.86684],[-102.26418,29.85672],[-102.25045,29.85493],[-102.24839,29.86565],[-102.24427,29.85791],[-102.24152,29.846],[-102.22985,29.84957],[-102.22504,29.84183],[-102.21611,29.84362],[-102.20376,29.84302],[-102.19895,29.83766],[-102.19346,29.83885],[-102.19002,29.84898],[-102.18178,29.84481],[-102.17972,29.83707],[-102.18178,29.83111],[-102.17904,29.82754],[-102.16874,29.82694],[-102.15569,29.81205],[-102.1502,29.81026],[-102.14196,29.80371],[-102.12822,29.79834],[-102.11792,29.8043],[-102.11792,29.79477],[-102.09046,29.79477],[-102.07535,29.79238],[-102.07398,29.78881],[-102.05132,29.78642],[-102.04308,29.79],[-102.03896,29.79119],[-102.04171,29.80132],[-102.01905,29.80132],[-102.01561,29.79655],[-102.00943,29.80013],[-101.99501,29.80609],[-101.9854,29.79477],[-101.98197,29.81562],[-101.96618,29.81205],[-101.96412,29.80192],[-101.95862,29.79715],[-101.94764,29.80192],[-101.93734,29.79834],[-101.93322,29.79119],[-101.93253,29.78344],[-101.92566,29.78523],[-101.91811,29.79477],[-101.91056,29.80073],[-101.87554,29.79477],[-101.85425,29.80788],[-101.84739,29.80728],[-101.8261,29.7894],[-101.81992,29.79536],[-101.82679,29.80728],[-101.8158,29.81443],[-101.80344,29.80371],[-101.81237,29.79477],[-101.80962,29.78344],[-101.79177,29.77927],[-101.78559,29.78702],[-101.75332,29.77868],[-101.74439,29.77749],[-101.73615,29.77212],[-101.72928,29.77093],[-101.72585,29.77331],[-101.71898,29.7751],[-101.70937,29.76258],[-101.68808,29.77153],[-101.68053,29.7602],[-101.67229,29.76139],[-101.67366,29.76556],[-101.66062,29.77153],[-101.64551,29.75484],[-101.63315,29.76258],[-101.62697,29.77212],[-101.57685,29.77093],[-101.5741,29.79119],[-101.56929,29.80013],[-101.55213,29.8043],[-101.54664,29.81383],[-101.53634,29.80251],[-101.53771,29.78762],[-101.53702,29.76258],[-101.51436,29.76318],[-101.50063,29.76497],[-101.48621,29.7757],[-101.47866,29.78344],[-101.456,29.78762],[-101.45531,29.76855],[-101.45119,29.75126],[-101.43883,29.74828],[-101.42922,29.75782],[-101.40725,29.77212],[-101.39626,29.76676],[-101.40107,29.76139],[-101.41549,29.75305],[-101.4148,29.74351],[-101.40244,29.73934],[-101.39626,29.73337],[-101.40038,29.72264],[-101.3942,29.71131],[-101.37978,29.70356],[-101.3736,29.69401],[-101.37291,29.68805],[-101.37085,29.67612],[-101.35918,29.64867],[-101.35712,29.64986],[-101.35437,29.65822],[-101.34888,29.6618],[-101.3118,29.65822],[-101.30219,29.64867],[-101.30082,29.63614],[-101.30768,29.6236],[-101.31318,29.60808],[-101.31112,29.5848],[-101.29189,29.57226],[-101.28296,29.5854],[-101.27747,29.60749],[-101.28159,29.61465],[-101.26854,29.63256],[-101.25481,29.62778],[-101.24794,29.61704],[-101.25206,29.60211],[-101.24176,29.56569],[-101.26168,29.53881],[-101.25687,29.52029],[-101.23833,29.52507],[-101.17379,29.51491],[-101.14975,29.47666],[-101.13945,29.47248],[-101.12778,29.47965],[-101.11542,29.46949],[-101.08727,29.46829],[-101.06049,29.45813],[-101.05774,29.44318],[-101.04195,29.43002],[-101.03852,29.40969],[-101.02341,29.39234],[-101.02272,29.39773],[-101.0138,29.38217],[-101.0138,29.37559],[-101.00899,29.36781],[-100.99801,29.36482],[-100.97329,29.35464],[-100.96848,29.34986],[-100.96299,29.34627],[-100.95063,29.34746],[-100.94239,29.34507],[-100.94101,29.33549],[-100.92728,29.32891],[-100.88883,29.30735],[-100.87853,29.28041],[-100.83802,29.26304],[-100.8181,29.26543],[-100.81467,29.26004],[-100.81879,29.25585],[-100.81398,29.25345],[-100.80849,29.25225],[-100.79613,29.24626],[-100.79682,29.23668],[-100.79545,29.22709],[-100.79201,29.22709],[-100.78446,29.22769],[-100.77485,29.21271],[-100.77553,29.20611],[-100.77485,29.20192],[-100.77004,29.19952],[-100.76592,29.19233],[-100.76867,29.17734],[-100.77485,29.17614],[-100.77004,29.16715],[-100.76455,29.16775],[-100.76111,29.16295],[-100.7618,29.15875],[-100.75562,29.15695],[-100.73708,29.14736],[-100.73983,29.14256],[-100.71854,29.12277],[-100.69588,29.11437],[-100.68558,29.11077],[-100.67391,29.10057],[-100.66636,29.07717],[-100.66086,29.04176],[-100.65674,29.01474],[-100.64988,29.00333],[-100.64438,28.98652],[-100.6437,28.9757],[-100.65056,28.94266],[-100.64438,28.93605],[-100.64026,28.93004],[-100.63202,28.92463],[-100.63134,28.92163],[-100.62928,28.91862],[-100.63477,28.91562],[-100.64026,28.91622],[-100.63202,28.90239],[-100.62378,28.909],[-100.61417,28.90239],[-100.60181,28.90239],[-100.60387,28.88616],[-100.59357,28.88857],[-100.58808,28.88616],[-100.59288,28.87895],[-100.59632,28.88015],[-100.59632,28.87353],[-100.58945,28.87353],[-100.58808,28.87053],[-100.59014,28.86452],[-100.57091,28.84707],[-100.57641,28.84046],[-100.57435,28.82903],[-100.56885,28.82542],[-100.56061,28.82723],[-100.55237,28.82723],[-100.54551,28.82181],[-100.54551,28.81279],[-100.53933,28.80617],[-100.53315,28.80376],[-100.53315,28.79293],[-100.53658,28.78511],[-100.53658,28.77849],[-100.53246,28.77307],[-100.53109,28.76645],[-100.53383,28.76224],[-100.52903,28.75983],[-100.52353,28.75501],[-100.51941,28.75562],[-100.51667,28.75321],[-100.51461,28.74177],[-100.51117,28.74117],[-100.5098,28.73996],[-100.50774,28.73695],[-100.50705,28.72672],[-100.50774,28.71588],[-100.51461,28.70504],[-100.51255,28.69359],[-100.50019,28.66287],[-100.49401,28.65745],[-100.47959,28.65504],[-100.47272,28.64721],[-100.46448,28.64118],[-100.44732,28.64299],[-100.44663,28.60924],[-100.43496,28.60803],[-100.43221,28.6014],[-100.39856,28.58391],[-100.3965,28.57849],[-100.41024,28.55014],[-100.39994,28.53024],[-100.39582,28.52963],[-100.38895,28.51455],[-100.33265,28.50188],[-100.33608,28.49343],[-100.34775,28.48438],[-100.36767,28.48317],[-100.36835,28.47714],[-100.33883,28.44575],[-100.33814,28.42341],[-100.3505,28.40408],[-100.31685,28.35817],[-100.31479,28.34608],[-100.28595,28.30861],[-100.29419,28.28382],[-100.2887,28.27052],[-100.28389,28.27173],[-100.27703,28.26326],[-100.24682,28.23302],[-100.22965,28.23423],[-100.22004,28.2312],[-100.2166,28.22031],[-100.21523,28.207],[-100.20905,28.19429],[-100.20562,28.19066],[-100.1912,28.19005],[-100.17403,28.18037],[-100.16648,28.16948],[-100.15343,28.16584],[-100.14313,28.16887],[-100.12116,28.15555],[-100.08683,28.14526],[-100.06623,28.11619],[-100.05867,28.10711],[-100.05799,28.09924],[-100.05661,28.09015],[-100.05181,28.08349],[-100.04082,28.07743],[-100.02434,28.07076],[-100.0161,28.05683],[-100.00924,28.02834],[-100.00031,28.00773],[-99.99276,27.99561],[-99.96804,27.9847],[-99.93096,27.98045],[-99.93233,27.96832],[-99.93988,27.9568],[-99.93782,27.94891],[-99.93371,27.93618],[-99.92753,27.93557],[-99.92409,27.9289],[-99.92615,27.92617],[-99.89869,27.9113],[-99.89388,27.90038],[-99.90143,27.88521],[-99.90418,27.87003],[-99.89663,27.85789],[-99.88358,27.85304],[-99.87809,27.8415],[-99.87809,27.82936],[-99.87603,27.81478],[-99.87671,27.80567],[-99.87877,27.80203],[-99.8671,27.79413],[-99.85131,27.79352],[-99.84238,27.76619],[-99.82522,27.76436],[-99.81904,27.7753],[-99.81217,27.77348],[-99.80118,27.7437],[-99.78951,27.73155],[-99.77372,27.73398],[-99.75792,27.71878],[-99.7593,27.71149],[-99.7229,27.67683],[-99.72428,27.66832],[-99.70025,27.65737],[-99.69407,27.66406],[-99.69132,27.66954],[-99.68857,27.66285],[-99.67965,27.65859],[-99.67141,27.65981],[-99.65973,27.65251],[-99.65836,27.64825],[-99.66317,27.64339],[-99.6666,27.63913],[-99.65355,27.63061],[-99.64875,27.63122],[-99.63845,27.62879],[-99.62746,27.63365],[-99.62746,27.64095],[-99.62403,27.64521],[-99.61853,27.63974],[-99.61441,27.63791],[-99.59725,27.64095],[-99.59107,27.62939],[-99.58008,27.61966],[-99.57665,27.61358],[-99.58352,27.60749],[-99.58832,27.60567],[-99.58214,27.60141],[-99.55948,27.6081],[-99.55742,27.6154],[-99.55605,27.61418],[-99.54232,27.60749],[-99.53339,27.58741],[-99.51966,27.57585],[-99.51279,27.56854],[-99.51279,27.55819],[-99.51966,27.55028],[-99.5279,27.50035],[-99.52034,27.49609],[-99.50181,27.49974],[-99.49494,27.49974],[-99.47983,27.48817],[-99.48395,27.47416],[-99.48601,27.46136],[-99.49357,27.45161],[-99.48739,27.40956],[-99.49151,27.39432],[-99.49288,27.38091],[-99.50455,27.35896],[-99.50455,27.33822],[-99.52996,27.3248],[-99.53614,27.31565],[-99.52858,27.30528],[-99.50318,27.30772],[-99.49563,27.30223],[-99.4867,27.29063],[-99.49151,27.2766],[-99.49769,27.27172],[-99.48739,27.26256],[-99.47159,27.26256],[-99.46061,27.26866],[-99.44893,27.26012],[-99.43932,27.24669],[-99.44207,27.23387],[-99.44069,27.2186],[-99.43314,27.20761],[-99.42971,27.1954],[-99.42559,27.17769],[-99.42971,27.15875],[-99.43863,27.15508],[-99.43932,27.14958],[-99.43383,27.13981],[-99.43177,27.13186],[-99.43108,27.12331],[-99.44344,27.10864],[-99.44001,27.10314],[-99.43039,27.09275],[-99.43177,27.08541],[-99.44275,27.07318],[-99.45374,27.0634],[-99.44619,27.04506],[-99.44619,27.02977],[-99.44756,27.02487],[-99.43177,27.0108],[-99.41666,27.01814],[-99.40567,26.99857],[-99.38576,26.98266],[-99.37752,26.97838],[-99.37821,26.97287],[-99.39332,26.96308],[-99.38782,26.94227],[-99.37272,26.93064],[-99.32671,26.91839],[-99.32259,26.91227],[-99.3274,26.88655],[-99.32465,26.87675],[-99.31641,26.86634],[-99.29581,26.8645],[-99.28139,26.8596],[-99.26835,26.84245],[-99.26423,26.81671],[-99.24363,26.78791],[-99.24019,26.74683],[-99.20861,26.72598],[-99.21067,26.6947],[-99.20105,26.65973],[-99.17771,26.61922],[-99.16741,26.55905],[-99.17222,26.54983],[-99.17016,26.54062],[-99.16054,26.53386],[-99.12896,26.52465],[-99.09256,26.47733],[-99.09394,26.46995],[-99.10012,26.46012],[-99.10218,26.44475],[-99.11248,26.43553],[-99.08432,26.39802],[-99.06373,26.39802],[-99.04725,26.40601],[-99.03901,26.41401],[-99.02184,26.4097],[-99.00948,26.3931],[-98.98888,26.39187],[-98.97789,26.40109],[-98.97103,26.40109],[-98.95249,26.39248],[-98.95592,26.38079],[-98.94356,26.3691],[-98.93807,26.37157],[-98.93395,26.3771],[-98.93601,26.38264],[-98.92708,26.39494],[-98.92365,26.39002],[-98.92228,26.37956],[-98.91198,26.37218],[-98.90305,26.37157],[-98.89962,26.36726],[-98.9003,26.36049],[-98.89756,26.35372],[-98.87078,26.36295],[-98.85773,26.36664],[-98.84949,26.36111],[-98.84469,26.35988],[-98.83164,26.3648],[-98.82409,26.37034],[-98.81379,26.36787],[-98.80692,26.3691],[-98.80005,26.36295],[-98.79662,26.3488],[-98.78838,26.33773],[-98.78975,26.33342],[-98.77259,26.32603],[-98.76572,26.32726],[-98.75473,26.33157],[-98.74924,26.33034],[-98.74787,26.32234],[-98.74444,26.31557],[-98.73826,26.31372],[-98.73688,26.3088],[-98.741,26.30264],[-98.74581,26.30634],[-98.75199,26.30757],[-98.75542,26.30572],[-98.75336,26.29957],[-98.74924,26.29587],[-98.74169,26.29403],[-98.73482,26.29957],[-98.72933,26.30018],[-98.71972,26.29218],[-98.71697,26.28787],[-98.70804,26.2891],[-98.70186,26.28479],[-98.70186,26.27987],[-98.70804,26.27864],[-98.71903,26.27864],[-98.7204,26.27494],[-98.69706,26.26447],[-98.68744,26.26632],[-98.6792,26.26016],[-98.68058,26.246],[-98.67234,26.23861],[-98.65929,26.23615],[-98.64624,26.23984],[-98.6332,26.24292],[-98.63251,26.25216],[-98.62359,26.26078],[-98.61878,26.24723],[-98.61466,26.24662],[-98.61191,26.25339],[-98.60848,26.25339],[-98.59749,26.2577],[-98.58239,26.2577],[-98.57964,26.25031],[-98.58445,26.24538],[-98.57964,26.23553],[-98.57415,26.23984],[-98.56797,26.24169],[-98.56522,26.23615],[-98.56385,26.22629],[-98.55973,26.22444],[-98.55767,26.23183],[-98.54805,26.23491],[-98.54805,26.24107],[-98.55767,26.24415],[-98.55629,26.24908],[-98.54462,26.24477],[-98.53569,26.22567],[-98.52883,26.22999],[-98.52334,26.23676],[-98.52059,26.2343],[-98.52608,26.22444],[-98.52196,26.22075],[-98.5151,26.22752],[-98.50274,26.22198],[-98.50686,26.21089],[-98.50205,26.21089],[-98.49106,26.21335],[-98.48351,26.20781],[-98.4842,26.20411],[-98.48008,26.20165],[-98.47733,26.20411],[-98.4842,26.21643],[-98.47939,26.22013],[-98.47252,26.22013],[-98.46634,26.22321],[-98.46085,26.22691],[-98.45673,26.22013],[-98.45398,26.21705],[-98.45261,26.22075],[-98.44506,26.22444],[-98.43888,26.2189],[-98.44025,26.21027],[-98.44574,26.20411],[-98.44025,26.19734],[-98.42995,26.19487],[-98.41897,26.18501],[-98.40729,26.18378],[-98.40317,26.1807],[-98.40317,26.17454],[-98.39837,26.16961],[-98.3915,26.16529],[-98.38601,26.1579],[-98.37777,26.1579],[-98.36541,26.15975],[-98.36815,26.16653],[-98.36403,26.17146],[-98.3606,26.17269],[-98.35785,26.16899],[-98.35785,26.16468],[-98.35991,26.15975],[-98.35442,26.1542],[-98.35167,26.15235],[-98.34755,26.1542],[-98.34824,26.16098],[-98.34549,26.16714],[-98.34069,26.16714],[-98.33451,26.16653],[-98.33451,26.15667],[-98.33863,26.15235],[-98.33794,26.14989],[-98.33451,26.14619],[-98.32901,26.14496],[-98.32764,26.14311],[-98.33588,26.14187],[-98.33588,26.13694],[-98.33451,26.13386],[-98.32077,26.11906],[-98.31185,26.1166],[-98.30842,26.10673],[-98.30498,26.10303],[-98.29812,26.10365],[-98.29812,26.10673],[-98.30361,26.1092],[-98.30224,26.11352],[-98.29674,26.12153],[-98.27271,26.11783],[-98.26516,26.12153],[-98.2655,26.11706],[-98.27134,26.11413],[-98.27134,26.10673],[-98.28713,26.10735],[-98.28799,26.10488],[-98.28507,26.10242],[-98.27906,26.09933],[-98.27271,26.09625],[-98.26653,26.09132],[-98.26567,26.087],[-98.26378,26.08515],[-98.25211,26.07898],[-98.24936,26.07343],[-98.24387,26.07282],[-98.22945,26.07652],[-98.2164,26.07528],[-98.20885,26.06911],[-98.20199,26.06233],[-98.19855,26.05616],[-98.19306,26.05616],[-98.18894,26.06356],[-98.18413,26.06233],[-98.1807,26.06048],[-98.17864,26.06233],[-98.17933,26.06665],[-98.1807,26.07405],[-98.17521,26.07467],[-98.16971,26.07035],[-98.17109,26.06726],[-98.16765,26.06356],[-98.16353,26.0648],[-98.15873,26.0648],[-98.15735,26.06171],[-98.1601,26.06048],[-98.16353,26.0574],[-98.16216,26.05431],[-98.15735,26.05369],[-98.15186,26.05925],[-98.14843,26.05554],[-98.14911,26.05431],[-98.14843,26.05123],[-98.14499,26.04999],[-98.13675,26.06295],[-98.13675,26.06973],[-98.13195,26.07405],[-98.12783,26.0722],[-98.12989,26.0685],[-98.13057,26.06418],[-98.12508,26.06356],[-98.11959,26.06418],[-98.11135,26.06665],[-98.10654,26.06788],[-98.10036,26.06356],[-98.09281,26.05925],[-98.08526,26.0611],[-98.08114,26.0648],[-98.08526,26.06973],[-98.0832,26.07282],[-98.07702,26.06973],[-98.07496,26.06295],[-98.07015,26.04938],[-98.07152,26.04382],[-98.07839,26.04197],[-98.07702,26.03642],[-98.0729,26.03642],[-98.06328,26.04629],[-98.04543,26.04506],[-98.03994,26.04136],[-98.03307,26.06171],[-98.02758,26.06665],[-98.02414,26.06295],[-98.02208,26.05863],[-98.01659,26.06233],[-98.01453,26.06541],[-98.01178,26.06541],[-98.01178,26.05801],[-98.00629,26.06233],[-98.0008,26.06418],[-97.99668,26.06356],[-97.99393,26.05986],[-97.9905,26.05863],[-97.98707,26.06557],[-97.98295,26.06726],[-97.97951,26.06603],[-97.97883,26.06233],[-97.97677,26.05925],[-97.96647,26.05123],[-97.95205,26.06171],[-97.94449,26.06048],[-97.93557,26.05431],[-97.93213,26.05616],[-97.93625,26.06233],[-97.93351,26.0648],[-97.92733,26.0574],[-97.92664,26.05616],[-97.91909,26.05925],[-97.91359,26.05616],[-97.90261,26.0611],[-97.89093,26.06171],[-97.88819,26.06788],[-97.87514,26.06418],[-97.8724,26.05986],[-97.87102,26.05801],[-97.86347,26.06973],[-97.85935,26.06665],[-97.86141,26.06048],[-97.86072,26.05369],[-97.84012,26.05431],[-97.83463,26.04691],[-97.8257,26.05678],[-97.81609,26.05493],[-97.81609,26.04567],[-97.81197,26.04629],[-97.81266,26.05493],[-97.8003,26.06048],[-97.79961,26.05369],[-97.79343,26.05308],[-97.79,26.04814],[-97.79618,26.04691],[-97.79549,26.04259],[-97.79686,26.03889],[-97.79137,26.03395],[-97.78244,26.03457],[-97.77901,26.02963],[-97.7742,26.03457],[-97.76871,26.0358],[-97.77695,26.04074],[-97.77695,26.04506],[-97.77009,26.04753],[-97.76391,26.04321],[-97.76391,26.02778],[-97.76047,26.02655],[-97.75498,26.03087],[-97.74949,26.02963],[-97.74949,26.02655],[-97.74605,26.02778],[-97.74331,26.03087],[-97.73713,26.02902],[-97.73781,26.02285],[-97.73301,26.02285],[-97.72751,26.02346],[-97.72683,26.02902],[-97.73301,26.02963],[-97.73575,26.0321],[-97.71927,26.0321],[-97.72202,26.02408],[-97.70897,26.02655],[-97.7076,26.03704],[-97.70279,26.0321],[-97.6973,26.03087],[-97.69661,26.0247],[-97.69249,26.01853],[-97.69043,26.02408],[-97.69318,26.03148],[-97.68769,26.02778],[-97.67601,26.02655],[-97.67464,26.02902],[-97.67601,26.03334],[-97.67121,26.03519],[-97.66846,26.0284],[-97.66434,26.03334],[-97.66297,26.03951],[-97.66091,26.02963],[-97.66777,26.02408],[-97.66709,26.01914],[-97.65954,26.02038],[-97.65061,26.01729],[-97.64512,26.0284],[-97.63619,26.01668],[-97.63962,26.01297],[-97.64718,26.01297],[-97.65061,26.01112],[-97.64649,26.00804],[-97.6355,26.00125],[-97.63138,26.00619],[-97.62658,26.00433],[-97.62726,26.00001],[-97.62383,25.99755],[-97.61971,26.00248],[-97.61696,25.99508],[-97.62314,25.99384],[-97.63001,25.99631],[-97.63276,25.99446],[-97.63276,25.98952],[-97.62932,25.98829],[-97.62246,25.9889],[-97.61765,25.97903],[-97.60804,25.97656],[-97.61147,25.96607],[-97.59911,25.95742],[-97.59362,25.96298],[-97.58332,25.9636],[-97.58332,25.95742],[-97.5792,25.9426],[-97.57439,25.94631],[-97.57439,25.9531],[-97.56684,25.95248],[-97.56684,25.94507],[-97.58126,25.9389],[-97.58263,25.93705],[-97.584,25.93334],[-97.5804,25.93218],[-97.57439,25.93473],[-97.56546,25.93149],[-97.5689,25.92779],[-97.56134,25.92593],[-97.5586,25.93581],[-97.55173,25.93705],[-97.54555,25.93273],[-97.54555,25.92531],[-97.53869,25.93334],[-97.53525,25.92779],[-97.54281,25.92037],[-97.53113,25.92099],[-97.53182,25.9179],[-97.53251,25.91173],[-97.53113,25.90802],[-97.52427,25.89752],[-97.52015,25.88579],[-97.51122,25.88887],[-97.49817,25.89938],[-97.49749,25.88146],[-97.48925,25.8864],[-97.48787,25.88084],[-97.47139,25.89011],[-97.46796,25.88702],[-97.4762,25.88331],[-97.47483,25.87899],[-97.47071,25.8759],[-97.4659,25.88208],[-97.45491,25.88455],[-97.45697,25.86849],[-97.45217,25.86787],[-97.44805,25.87405],[-97.4453,25.86725],[-97.44736,25.86169],[-97.45354,25.85675],[-97.45285,25.85366],[-97.44736,25.85737],[-97.44462,25.85428],[-97.44736,25.85057],[-97.44393,25.84871],[-97.43569,25.8518],[-97.42539,25.84068],[-97.41303,25.84253],[-97.41372,25.8586],[-97.40891,25.86293],[-97.40822,25.85428],[-97.41097,25.84995],[-97.40685,25.84439],[-97.40273,25.85304],[-97.40136,25.84624],[-97.40754,25.84068],[-97.40342,25.83759],[-97.39037,25.84068],[-97.38625,25.84439],[-97.38213,25.84192],[-97.37183,25.84253],[-97.37046,25.84995],[-97.36565,25.85057],[-97.37664,25.85613],[-97.37114,25.85922],[-97.3629,25.86972],[-97.35947,25.86725],[-97.35672,25.86849],[-97.35878,25.87961],[-97.37389,25.87899],[-97.36771,25.88579],[-97.35741,25.88702],[-97.35878,25.89134],[-97.36908,25.89196],[-97.36771,25.90493],[-97.37458,25.90802],[-97.36977,25.91111],[-97.36771,25.91605],[-97.36222,25.91543],[-97.34848,25.93149],[-97.3423,25.92902],[-97.33681,25.92964],[-97.33887,25.92099],[-97.33544,25.92037],[-97.33475,25.92655],[-97.32926,25.91667],[-97.3272,25.91852],[-97.32239,25.9284],[-97.31278,25.93273],[-97.31072,25.92779],[-97.30248,25.93087],[-97.30385,25.93705],[-97.29767,25.93705],[-97.2963,25.93334],[-97.29081,25.93767],[-97.27639,25.9352],[-97.28119,25.94384],[-97.27982,25.94754],[-97.29012,25.95372],[-97.28394,25.95927],[-97.27707,25.9531],[-97.26059,25.95125],[-97.2448,25.95001],[-97.22695,25.95866],[-97.22489,25.95866],[-97.22214,25.95619],[-97.21116,25.96174],[-97.2091,25.96421],[-97.20566,25.96236],[-97.20498,25.95866],[-97.1885,25.95495],[-97.18644,25.95866],[-97.1782,25.96174],[-97.17751,25.96607],[-97.17408,25.96483],[-97.16927,25.96113],[-97.16103,25.9636],[-97.15691,25.96236],[-97.16103,25.95063],[-97.15142,25.95248],[-97.1473,25.95681],[-89.999999,25.04828],[-89.99863,48.05903],[-90.00464,48.06465],[-90.00447,48.06546],[-90.00653,48.06569],[-90.00859,48.06878],[-90.01013,48.06901],[-90.01099,48.06821],[-90.01494,48.06741],[-90.01889,48.07234],[-90.02335,48.08496],[-90.02936,48.08771],[-90.03794,48.08954],[-90.03914,48.09],[-90.04155,48.08954],[-90.04996,48.09247],[-90.05751,48.09648],[-90.06661,48.09854],[-90.07408,48.10129],[-90.09167,48.10468],[-90.11613,48.10422],[-90.12248,48.10576],[-90.12369,48.10731],[-90.12515,48.10754],[-90.12575,48.10817],[-90.12738,48.10823],[-90.13253,48.11178],[-90.1442,48.11339],[-90.14969,48.11132],[-90.16308,48.11018],[-90.17613,48.11247],[-90.18849,48.10811],[-90.1957,48.10834],[-90.21321,48.10651],[-90.22419,48.10834],[-90.25406,48.10261],[-90.26436,48.10376],[-90.27501,48.10353],[-90.28908,48.0994],[-90.29286,48.0994],[-90.2987,48.10284],[-90.30556,48.10536],[-90.3102,48.10571],[-90.31449,48.10502],[-90.31758,48.10364],[-90.32221,48.10296],[-90.32616,48.10284],[-90.33011,48.10227],[-90.33698,48.09963],[-90.33818,48.09642],[-90.34316,48.09573],[-90.34367,48.0947],[-90.34573,48.09401],[-90.35397,48.09482],[-90.35758,48.09447],[-90.35895,48.09482],[-90.36787,48.09482],[-90.36873,48.09401],[-90.37148,48.09367],[-90.37337,48.0939],[-90.37354,48.09287],[-90.37268,48.09126],[-90.37491,48.09115],[-90.378,48.09252],[-90.37989,48.09241],[-90.38109,48.09275],[-90.38384,48.09436],[-90.38487,48.09482],[-90.3859,48.09608],[-90.38624,48.09791],[-90.38916,48.09929],[-90.39036,48.09998],[-90.39242,48.10032],[-90.39345,48.1002],[-90.39483,48.10089],[-90.39603,48.10135],[-90.39654,48.10192],[-90.39723,48.10227],[-90.39843,48.10238],[-90.40307,48.10502],[-90.41062,48.10502],[-90.43791,48.09871],[-90.44323,48.10055],[-90.4477,48.10353],[-90.45216,48.10536],[-90.46212,48.10651],[-90.46555,48.10857],[-90.46761,48.10892],[-90.47139,48.10605],[-90.47757,48.10536],[-90.48031,48.10215],[-90.48375,48.10009],[-90.48684,48.09929],[-90.4901,48.09929],[-90.49353,48.10147],[-90.49559,48.09963],[-90.49628,48.09871],[-90.5028,48.09952],[-90.50538,48.09986],[-90.50795,48.09917],[-90.51018,48.09722],[-90.51722,48.0994],[-90.55687,48.09596],[-90.5646,48.09906],[-90.56752,48.10181],[-90.56975,48.10685],[-90.5555,48.11694],[-90.55945,48.12187],[-90.56546,48.12244],[-90.57095,48.12141],[-90.57576,48.12072],[-90.5773,48.12129],[-90.5797,48.12404],[-90.58228,48.12359],[-90.58571,48.12221],[-90.58691,48.12107],[-90.59035,48.11946],[-90.59138,48.11763],[-90.60614,48.11602],[-90.61301,48.11327],[-90.61524,48.11281],[-90.61584,48.11218],[-90.61781,48.11241],[-90.61927,48.11178],[-90.62013,48.11155],[-90.62056,48.11195],[-90.627,48.11184],[-90.6415,48.10353],[-90.68639,48.10032],[-90.70287,48.09608],[-90.74141,48.09464],[-90.75162,48.09098],[-90.76149,48.09843],[-90.76141,48.10003],[-90.76716,48.11064],[-90.76682,48.11453],[-90.76879,48.1166],[-90.76999,48.11665],[-90.77265,48.11763],[-90.77411,48.11872],[-90.77428,48.12009],[-90.776,48.1225],[-90.77643,48.12399],[-90.78184,48.12571],[-90.78364,48.12679],[-90.78295,48.12783],[-90.78407,48.12817],[-90.78716,48.12788],[-90.78999,48.13029],[-90.78819,48.13275],[-90.7851,48.13327],[-90.78364,48.13275],[-90.78166,48.13527],[-90.78218,48.13596],[-90.78269,48.13619],[-90.78596,48.13527],[-90.7887,48.13648],[-90.79248,48.13567],[-90.79437,48.13544],[-90.79823,48.13699],[-90.79677,48.1394],[-90.79222,48.14129],[-90.77797,48.14776],[-90.7766,48.16333],[-90.78141,48.16425],[-90.78621,48.16104],[-90.79308,48.16104],[-90.7972,48.16013],[-90.80132,48.16333],[-90.80407,48.17799],[-90.81025,48.18073],[-90.81711,48.17982],[-90.82055,48.18485],[-90.82604,48.1844],[-90.82329,48.17799],[-90.83359,48.17341],[-90.83634,48.17753],[-90.83497,48.1876],[-90.83703,48.22696],[-90.84046,48.22787],[-90.83771,48.2361],[-90.84046,48.24022],[-90.84389,48.24159],[-90.84389,48.24388],[-90.84938,48.24571],[-90.86792,48.23839],[-90.87616,48.23885],[-90.88303,48.24068],[-90.88715,48.24616],[-90.90775,48.23702],[-90.91599,48.23153],[-90.9771,48.21964],[-91.00525,48.20316],[-91.00388,48.20179],[-91.02379,48.19081],[-91.03684,48.18943],[-91.06156,48.18623],[-91.06499,48.18165],[-91.07804,48.17936],[-91.08216,48.18119],[-91.08971,48.17753],[-91.09246,48.17295],[-91.11512,48.16654],[-91.11855,48.1615],[-91.14258,48.15463],[-91.13778,48.14959],[-91.15563,48.14134],[-91.1776,48.1253],[-91.18515,48.12255],[-91.18996,48.12485],[-91.21399,48.1033],[-91.23597,48.0955],[-91.2497,48.08496],[-91.26687,48.07899],[-91.27717,48.07899],[-91.28952,48.07486],[-91.30841,48.07291],[-91.32437,48.07291],[-91.32832,48.07119],[-91.32935,48.07005],[-91.33673,48.07005],[-91.33965,48.07349],[-91.34943,48.07211],[-91.35012,48.072],[-91.36506,48.06718],[-91.37072,48.0697],[-91.3781,48.06603],[-91.39098,48.05731],[-91.41398,48.05352],[-91.42256,48.05089],[-91.42977,48.04871],[-91.43733,48.04951],[-91.43801,48.05066],[-91.43801,48.05261],[-91.44711,48.06293],[-91.44642,48.06798],[-91.45037,48.06924],[-91.46513,48.06706],[-91.48831,48.06844],[-91.54152,48.05387],[-91.5671,48.04389],[-91.57568,48.04905],[-91.57277,48.05754],[-91.57534,48.06649],[-91.56933,48.09367],[-91.55285,48.1033],[-91.55938,48.1088],[-91.57586,48.10685],[-91.58873,48.10238],[-91.61499,48.10215],[-91.64006,48.09722],[-91.64692,48.10364],[-91.64813,48.10628],[-91.6531,48.10983],[-91.65139,48.11293],[-91.65173,48.11419],[-91.65345,48.11442],[-91.66203,48.1119],[-91.66289,48.10926],[-91.6646,48.10731],[-91.66752,48.10857],[-91.6713,48.10869],[-91.67645,48.10766],[-91.68091,48.10846],[-91.68177,48.10983],[-91.68744,48.1119],[-91.68349,48.11763],[-91.68229,48.12255],[-91.69224,48.1198],[-91.69121,48.11809],[-91.69224,48.11677],[-91.70323,48.11379],[-91.71164,48.11465],[-91.71258,48.11562],[-91.71181,48.1174],[-91.70949,48.11946],[-91.70795,48.12347],[-91.70374,48.1249],[-91.69962,48.13189],[-91.69945,48.13762],[-91.69782,48.14157],[-91.69816,48.14409],[-91.69937,48.14507],[-91.70057,48.14472],[-91.70246,48.14478],[-91.70331,48.1453],[-91.70701,48.15062],[-91.70812,48.15308],[-91.70709,48.15377],[-91.70503,48.15812],[-91.70469,48.16024],[-91.70503,48.16139],[-91.70477,48.17072],[-91.70932,48.17295],[-91.71705,48.17186],[-91.72297,48.16911],[-91.72434,48.17055],[-91.72288,48.17347],[-91.72254,48.17856],[-91.72125,48.18039],[-91.71224,48.18754],[-91.71044,48.19229],[-91.71044,48.19401],[-91.7131,48.19807],[-91.7155,48.19956],[-91.7252,48.20139],[-91.73722,48.20419],[-91.73911,48.20431],[-91.74211,48.20465],[-91.74159,48.19939],[-91.74391,48.19882],[-91.74846,48.19882],[-91.75361,48.20093],[-91.75601,48.20602],[-91.76082,48.20482],[-91.7628,48.2019],[-91.76434,48.20065],[-91.78073,48.20082],[-91.78606,48.19624],[-91.78863,48.19647],[-91.79121,48.20242],[-91.7973,48.20276],[-91.80957,48.20625],[-91.81412,48.20831],[-91.81558,48.21186],[-91.83266,48.2094],[-91.83592,48.21031],[-91.84545,48.20871],[-91.8645,48.207],[-91.86751,48.21918],[-91.88433,48.22741],[-91.89309,48.23793],[-91.90236,48.23713],[-91.90605,48.2373],[-91.90725,48.23833],[-91.91334,48.23856],[-91.91343,48.23885],[-91.91497,48.23902],[-91.91695,48.23868],[-91.92098,48.23685],[-91.92879,48.23593],[-91.93755,48.23416],[-91.9421,48.23044],[-91.94519,48.23039],[-91.95137,48.23342],[-91.95257,48.23313],[-91.95832,48.23313],[-91.95978,48.23679],[-91.9572,48.2389],[-91.95823,48.24393],[-91.94948,48.24462],[-91.9481,48.24611],[-91.95411,48.24976],[-91.95411,48.25234],[-91.95712,48.25251],[-91.959,48.25359],[-91.96999,48.25377],[-91.97102,48.25297],[-91.97171,48.25297],[-91.97248,48.25045],[-91.97016,48.24874],[-91.97042,48.24794],[-91.97342,48.24662],[-91.97548,48.24439],[-91.97754,48.24571],[-91.97694,48.24662],[-91.9778,48.24748],[-91.97892,48.24742],[-91.98055,48.24794],[-91.98922,48.26017],[-92.00655,48.26537],[-92.00741,48.28056],[-92.01205,48.28702],[-92.01291,48.29747],[-92.0002,48.3211],[-92.03076,48.32567],[-92.03771,48.33314],[-92.04698,48.33485],[-92.04792,48.34364],[-92.04518,48.34569],[-92.04595,48.34797],[-92.04895,48.34854],[-92.05531,48.35938],[-92.06715,48.3595],[-92.07822,48.35813],[-92.08354,48.35373],[-92.09084,48.35448],[-92.14363,48.35602],[-92.145,48.36571],[-92.16208,48.3632],[-92.17744,48.3571],[-92.17907,48.35499],[-92.17873,48.35197],[-92.19272,48.34883],[-92.19461,48.34889],[-92.19487,48.35048],[-92.20414,48.35214],[-92.20688,48.34575],[-92.21787,48.34575],[-92.22199,48.3494],[-92.2625,48.35488],[-92.28928,48.34301],[-92.29546,48.32567],[-92.3037,48.32384],[-92.30576,48.31699],[-92.29477,48.30649],[-92.30233,48.28684],[-92.28997,48.26537],[-92.27349,48.25668],[-92.27005,48.24845],[-92.36824,48.22284],[-92.41562,48.29415],[-92.4273,48.30649],[-92.43279,48.30603],[-92.46918,48.35168],[-92.47673,48.37221],[-92.45751,48.40185],[-92.45682,48.41507],[-92.47536,48.41872],[-92.48429,48.42965],[-92.48909,48.42965],[-92.50901,48.44833],[-92.53579,48.44742],[-92.57561,48.44104],[-92.65664,48.43649],[-92.66488,48.44059],[-92.68891,48.44377],[-92.71225,48.46336],[-92.69921,48.49522],[-92.66144,48.49658],[-92.65389,48.50159],[-92.63672,48.49977],[-92.62711,48.50386],[-92.63192,48.50978],[-92.62711,48.51342],[-92.62642,48.52024],[-92.63466,48.54252],[-92.6587,48.54661],[-92.72942,48.53934],[-92.89559,48.59432],[-92.91138,48.59704],[-92.92992,48.60749],[-92.95052,48.60885],[-92.94983,48.63064],[-92.95464,48.6329],[-92.98485,48.62474],[-93.0906,48.62791],[-93.17849,48.62428],[-93.20664,48.64289],[-93.25676,48.64334],[-93.34809,48.62655],[-93.35221,48.61384],[-93.35633,48.61112],[-93.36113,48.61339],[-93.37143,48.60658],[-93.39959,48.60385],[-93.40508,48.60976],[-93.4298,48.60022],[-93.43667,48.59477],[-93.4655,48.59295],[-93.4607,48.57024],[-93.45795,48.55797],[-93.4655,48.54843],[-93.49778,48.54161],[-93.51494,48.53524],[-93.5479,48.52979],[-93.5582,48.52979],[-93.5788,48.52615],[-93.59047,48.53024],[-93.60009,48.52751],[-93.60558,48.52342],[-93.61863,48.52342],[-93.62549,48.5307],[-93.63373,48.5307],[-93.63785,48.52797],[-93.6406,48.52069],[-93.64335,48.51978],[-93.69004,48.51615],[-93.71064,48.51887],[-93.72025,48.51796],[-93.73742,48.51796],[-93.75252,48.51615],[-93.79372,48.5166],[-93.81707,48.52979],[-93.81844,48.53661],[-93.8102,48.54343],[-93.81157,48.55161],[-93.80402,48.57115],[-93.80814,48.58342],[-93.83492,48.627],[-93.84728,48.63109],[-93.9132,48.63653],[-93.91869,48.63245],[-93.9544,48.63427],[-94.00727,48.64379],[-94.03405,48.64153],[-94.10202,48.64561],[-94.15696,48.64606],[-94.19953,48.6506],[-94.22356,48.64924],[-94.25309,48.65695],[-94.25171,48.68325],[-94.2627,48.69866],[-94.27437,48.69957],[-94.28811,48.70682],[-94.31008,48.70954],[-94.3293,48.7041],[-94.35265,48.7041],[-94.38218,48.71361],[-94.41788,48.71135],[-94.44191,48.69413],[-94.53736,48.70183],[-94.54972,48.71588],[-94.5916,48.71905],[-94.6177,48.73672],[-94.6431,48.7426],[-94.64447,48.74894],[-94.68705,48.7761],[-94.69666,48.80822],[-94.7049,48.82585],[-94.70078,48.83534],[-94.68567,48.83941],[-94.69323,48.85387],[-94.69048,48.86245],[-94.69254,48.86923],[-94.68567,48.87329],[-94.68293,48.88323],[-94.7509,49.09949],[-94.77219,49.12107],[-94.80103,49.1992],[-94.79828,49.214],[-94.82644,49.29468],[-94.82369,49.31124],[-94.81682,49.32198],[-94.83674,49.32377],[-94.8539,49.32467],[-94.87999,49.33407],[-94.90883,49.34973],[-94.9569,49.3703],[-94.97544,49.36851],[-94.98917,49.36896],[-95.01458,49.35643],[-95.05921,49.3533],[-95.10315,49.36359],[-95.10315,49.36538],[-95.1162,49.36717],[-95.13062,49.37074],[-95.15397,49.38371],[-95.15328,48.99914],[-110.00473,49.00004]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!:!!!!!!!!!W:**USA#W0:Missouri east of 90º W#W9:Illinois east of 90º W+Indiana#W8:Michigan east of 90º W+Ohio+West Virginia+Wisconsin east of 90º W#W5:Arkansas east of 90º W+Louisiana east of 90º W+Mississippi east of 90º W#W4:Alabama+Georgia+Florida+Kentucky+North Carolina+South Carolina+Tennessee east of 90º W+Virginia#W3:Delaware+Maryland+Pennsylvania#W2:New Jersey+New York#W1:Connecticut+Maine+Massachusetts+New Hampshire+Rhode Island+Vermont#4U1UN:**United Nations HQ","itu_zone_number":8,"itu_zone_name_loc":[40,-80]},"geometry":{"type":"Polygon","coordinates":[[[-89.99863,48.03401],[-89.99726,25.04828],[-85.93506,24.55327],[-82.55359,24.47636],[-80.97272,24.43788],[-80.00708,24.3994],[-79.41498,25.25532],[-79.30627,30.20248],[-78.12207,31.46898],[-67,43],[-67,44.6955],[-66.91018,44.75063],[-66.90194,44.77842],[-66.88614,44.79499],[-66.93215,44.82568],[-66.96579,44.82909],[-66.97403,44.84126],[-66.98227,44.8656],[-66.97129,44.9123],[-66.99601,44.92786],[-67.00974,44.94633],[-67.0221,44.95313],[-67.11274,45.11036],[-67.15943,45.1617],[-67.22809,45.16848],[-67.2432,45.17622],[-67.28302,45.18978],[-67.29676,45.14911],[-67.31736,45.14233],[-67.34345,45.12296],[-67.4025,45.1617],[-67.40799,45.18397],[-67.48764,45.28165],[-67.41898,45.37337],[-67.47391,45.42544],[-67.50412,45.48902],[-67.4231,45.49864],[-67.40113,45.53713],[-67.45606,45.5756],[-67.80762,45.6985],[-67.78977,47.06731],[-67.81861,47.08321],[-67.8859,47.10845],[-67.89277,47.12714],[-67.91199,47.14583],[-67.92984,47.1589],[-67.95044,47.18317],[-67.95594,47.19997],[-67.99164,47.20837],[-68.01911,47.23821],[-68.07541,47.26059],[-68.15644,47.32579],[-68.23334,47.35371],[-68.2663,47.35278],[-68.35007,47.35743],[-68.38578,47.33323],[-68.37754,47.28761],[-68.41599,47.28854],[-68.42972,47.28016],[-68.45993,47.28481],[-68.47367,47.29879],[-68.52311,47.29413],[-68.55332,47.28388],[-68.58353,47.28854],[-68.60001,47.27084],[-68.59315,47.25593],[-68.61649,47.24567],[-68.90076,47.17944],[-69.05182,47.26059],[-69.03397,47.40764],[-69.06418,47.43273],[-69.08616,47.42437],[-69.18091,47.4578],[-69.22623,47.45873],[-69.99802,46.6945],[-70.05982,46.41892],[-70.20401,46.33163],[-70.28504,46.18743],[-70.24109,46.13797],[-70.31113,46.05792],[-70.27096,46.0584],[-70.31319,46.02075],[-70.2895,45.99073],[-70.31336,45.96664],[-70.26856,45.95974],[-70.24109,45.94589],[-70.26375,45.92272],[-70.25448,45.89967],[-70.27817,45.87662],[-70.34615,45.84696],[-70.41138,45.79817],[-70.37842,45.72535],[-70.56931,45.65811],[-70.72998,45.51789],[-70.62561,45.41002],[-70.64209,45.39845],[-70.65308,45.3753],[-70.67746,45.39603],[-70.71557,45.38783],[-70.75093,45.42206],[-70.78629,45.43122],[-70.82612,45.39845],[-70.80861,45.38082],[-70.81032,45.3632],[-70.81616,45.33689],[-70.80552,45.32216],[-70.8474,45.26759],[-70.83985,45.22848],[-70.88585,45.2345],[-70.91538,45.27341],[-70.91057,45.30167],[-70.94696,45.33573],[-70.97606,45.32987],[-71.0134,45.34332],[-71.00979,45.31616],[-71.09047,45.30433],[-71.13099,45.25168],[-71.21888,45.25555],[-71.29029,45.30193],[-71.43448,45.23331],[-71.39569,45.20494],[-71.4338,45.12818],[-71.50212,45.06786],[-71.49903,45.0153],[-72.31751,45.00365],[-73.22113,45.01336],[-74.12476,44.99199],[-74.71253,45.00753],[-74.83338,45.01918],[-75.3772,44.78573],[-75.81665,44.49258],[-75.81665,44.4377],[-75.96497,44.35135],[-76.16272,44.27667],[-76.15723,44.25306],[-76.19019,44.22945],[-76.23414,44.20189],[-76.31104,44.19795],[-76.35498,44.13491],[-76.43189,44.09942],[-76.79993,43.63209],[-78.68409,43.64402],[-79.20044,43.4569],[-79.0741,43.2572],[-79.04114,43.13707],[-79.0741,43.09697],[-78.9972,43.05283],[-79.01368,42.99259],[-78.97522,42.96044],[-78.96424,42.96848],[-78.93677,42.95642],[-78.9148,42.90413],[-78.94227,42.82763],[-80.08484,42.391],[-81.2494,42.21224],[-82.39197,41.68522],[-82.67212,41.6688],[-83.06214,41.86137],[-83.14904,42.01642],[-83.12607,42.28569],[-82.81647,42.37632],[-82.67383,42.54463],[-82.55317,42.56716],[-82.48214,42.73738],[-82.406,43.00485],[-82.12339,43.58463],[-82.51644,45.33729],[-83.57965,45.83198],[-83.42787,45.99956],[-83.60568,46.12135],[-83.73405,46.09829],[-83.82946,46.10571],[-83.95292,46.04385],[-84.00209,46.14128],[-84.08944,46.22198],[-84.14328,46.39895],[-84.10816,46.5332],[-84.20649,46.53983],[-84.2499,46.49354],[-84.3367,46.51436],[-84.55426,46.46151],[-84.71472,46.56769],[-84.78528,46.86755],[-88.37145,48.29788],[-89.36486,47.95903],[-89.99863,48.03401]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!:CY9:**St. Paul Island#CY0:**Sable Island#FP:**St Pierre & Miquelon#!!!!!!!!VE:**Canada#VY0:Nunavut east of 70º W and south of 80º N – excluding Baffin Island#VE2:Quebec east of 70º W#VO2:Newfoundland#VO1:Labrador#VE1:Nova Scotia#VY2:Prince Edward Island#VE9:New Brunswick","itu_zone_number":9,"itu_zone_name_loc":[55,-60]},"geometry":{"type":"Polygon","coordinates":[[[-69.99802,46.69655],[-69.22623,47.45873],[-69.18091,47.4578],[-69.08616,47.42437],[-69.06418,47.43273],[-69.03397,47.40764],[-69.05182,47.26059],[-68.90076,47.17944],[-68.61649,47.24567],[-68.59315,47.25593],[-68.60001,47.27084],[-68.58353,47.28854],[-68.55332,47.28388],[-68.52311,47.29413],[-68.47367,47.29879],[-68.45993,47.28481],[-68.42972,47.28016],[-68.41599,47.28854],[-68.37754,47.28761],[-68.38578,47.33323],[-68.35007,47.35743],[-68.2663,47.35278],[-68.23334,47.35371],[-68.15644,47.32579],[-68.07541,47.26059],[-68.01911,47.23821],[-67.99164,47.20837],[-67.95594,47.19997],[-67.95044,47.18317],[-67.92984,47.1589],[-67.91199,47.14583],[-67.89277,47.12714],[-67.8859,47.10845],[-67.81861,47.08321],[-67.78977,47.06731],[-67.80762,45.6985],[-67.45606,45.5756],[-67.40113,45.53713],[-67.4231,45.49864],[-67.50412,45.48902],[-67.47391,45.42544],[-67.41898,45.37337],[-67.48764,45.28165],[-67.40799,45.18397],[-67.4025,45.1617],[-67.34345,45.12296],[-67.31736,45.14233],[-67.29676,45.14911],[-67.28302,45.18978],[-67.2432,45.17622],[-67.22809,45.16848],[-67.15943,45.1617],[-67.11274,45.11036],[-67.0221,44.95313],[-67.00974,44.94633],[-66.99601,44.92786],[-66.97129,44.9123],[-66.98227,44.8656],[-66.97403,44.84126],[-66.96579,44.82909],[-66.93215,44.82568],[-66.88614,44.79499],[-66.90194,44.77842],[-66.91018,44.75063],[-67,44.6955],[-67,43],[-50,43],[-50,54],[-54.14269,61.24388],[-69.9939,61.24646],[-69.99802,46.69655]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:FO:**Clipperton Island#XE:**Mexico#XF4:**Revilla Gigedo","itu_zone_number":10,"itu_zone_name_loc":[20,-102]},"geometry":{"type":"Polygon","coordinates":[[[-92.2371,14.53839],[-92.18997,6.011],[-109.89813,6.32386],[-124.63097,32.46386],[-117.12525,32.53382],[-115.92568,32.6333],[-114.71959,32.71861],[-114.73049,32.70399],[-114.72971,32.69977],[-114.74396,32.67863],[-114.7498,32.66118],[-114.76027,32.65342],[-114.76516,32.64939],[-114.76315,32.64434],[-114.77143,32.63756],[-114.7819,32.63211],[-114.78207,32.62435],[-114.79211,32.62191],[-114.8001,32.62526],[-114.80636,32.62167],[-114.80988,32.61866],[-114.8086,32.61169],[-114.80904,32.60819],[-114.80786,32.60523],[-114.80822,32.603],[-114.806,32.60059],[-114.80231,32.60025],[-114.80137,32.59817],[-114.80147,32.59575],[-114.79916,32.59276],[-114.80038,32.58793],[-114.80332,32.58497],[-114.80385,32.58144],[-114.80097,32.57749],[-114.80324,32.57383],[-114.81293,32.56939],[-114.81429,32.56532],[-114.81428,32.56096],[-114.80842,32.55803],[-114.80437,32.56009],[-114.80134,32.56272],[-114.79763,32.56435],[-114.79457,32.56776],[-114.79424,32.56904],[-114.7922,32.56915],[-114.79314,32.56205],[-114.79065,32.55697],[-114.79443,32.55157],[-114.80121,32.54916],[-114.80662,32.54603],[-114.80507,32.54237],[-114.8019,32.54011],[-114.80147,32.53785],[-114.80271,32.53511],[-114.80505,32.5336],[-114.80636,32.53122],[-114.81194,32.52604],[-114.8134,32.52401],[-114.81039,32.52139],[-114.81031,32.51834],[-114.80799,32.51689],[-114.8031,32.51652],[-114.80147,32.51281],[-114.80683,32.50872],[-114.80972,32.50849],[-114.81432,32.50913],[-114.81666,32.50752],[-114.81385,32.50453],[-114.81276,32.50155],[-114.81235,32.49957],[-114.8142,32.49786],[-114.814,32.49499],[-112.94014,31.91798],[-111.07453,31.33369],[-110.00061,31.33369],[-108.20847,31.33252],[-108.2071,31.78421],[-106.531,31.7845],[-106.51417,31.7702],[-106.50988,31.75998],[-106.50568,31.76042],[-106.50216,31.75677],[-106.48705,31.74699],[-106.4716,31.75028],[-106.46782,31.75882],[-106.45306,31.76437],[-106.43624,31.75532],[-106.42079,31.7521],[-106.39435,31.73926],[-106.38062,31.73196],[-106.37341,31.71414],[-106.34938,31.69604],[-106.33461,31.66331],[-106.30269,31.62122],[-106.29342,31.59462],[-106.2838,31.5718],[-106.28071,31.56215],[-106.24878,31.54401],[-106.24638,31.54167],[-106.23711,31.51328],[-106.22441,31.49982],[-106.21926,31.4805],[-106.2045,31.46469],[-106.17531,31.45444],[-106.1578,31.43774],[-106.13137,31.42514],[-106.11145,31.42368],[-106.0809,31.39877],[-106.00434,31.39233],[-105.96966,31.36565],[-105.95456,31.36565],[-105.94597,31.35393],[-105.94838,31.34073],[-105.93842,31.31844],[-105.93361,31.31375],[-105.92469,31.31228],[-105.90889,31.31375],[-105.89619,31.29116],[-105.87594,31.29204],[-105.86976,31.28911],[-105.85465,31.27268],[-105.83628,31.24714],[-105.81268,31.2238],[-105.79388,31.20164],[-105.78358,31.1987],[-105.7798,31.18989],[-105.78015,31.18225],[-105.77603,31.17638],[-105.77328,31.16727],[-105.76401,31.16404],[-105.74341,31.16581],[-105.71938,31.14935],[-105.71698,31.14259],[-105.71183,31.13789],[-105.64797,31.11556],[-105.64179,31.09851],[-105.62806,31.09851],[-105.6078,31.08645],[-105.60162,31.07822],[-105.59681,31.06558],[-105.58583,31.05793],[-105.5793,31.0344],[-105.58136,31.02763],[-105.57896,31.02028],[-105.57141,31.0191],[-105.56969,31.01675],[-105.57038,31.00851],[-105.55665,30.98835],[-105.54223,30.98526],[-105.5333,30.98585],[-105.52643,30.9776],[-105.523,30.97643],[-105.51545,30.96524],[-105.50309,30.96818],[-105.49416,30.957],[-105.49622,30.95582],[-105.49897,30.95111],[-105.49485,30.94993],[-105.48867,30.94404],[-105.4921,30.94345],[-105.48935,30.94169],[-105.48729,30.94286],[-105.48111,30.94051],[-105.47768,30.93756],[-105.47631,30.93462],[-105.47081,30.93403],[-105.4715,30.93226],[-105.46807,30.92991],[-105.46669,30.92461],[-105.46463,30.92637],[-105.45296,30.92578],[-105.45228,30.92107],[-105.45502,30.9193],[-105.45296,30.91636],[-105.44747,30.92048],[-105.44472,30.91813],[-105.44541,30.91577],[-105.44198,30.90988],[-105.42893,30.90517],[-105.4255,30.90163],[-105.41314,30.90045],[-105.41176,30.89161],[-105.41245,30.88867],[-105.40421,30.8922],[-105.3994,30.88867],[-105.3994,30.8869],[-105.39803,30.88572],[-105.40421,30.88042],[-105.3994,30.87688],[-105.39254,30.87688],[-105.39185,30.87394],[-105.3946,30.87158],[-105.39528,30.8592],[-105.40215,30.85566],[-105.39528,30.84977],[-105.38842,30.85331],[-105.3685,30.84918],[-105.36301,30.84977],[-105.36026,30.84741],[-105.3534,30.84387],[-105.35408,30.83857],[-105.35271,30.83621],[-105.3479,30.83975],[-105.33967,30.84034],[-105.33761,30.83385],[-105.32799,30.83149],[-105.33211,30.82678],[-105.32937,30.82619],[-105.31838,30.82913],[-105.31838,30.82383],[-105.31563,30.81852],[-105.31838,30.81262],[-105.31701,30.81085],[-105.31014,30.81557],[-105.30808,30.8138],[-105.30877,30.81262],[-105.30877,30.81027],[-105.30602,30.81027],[-105.30053,30.82029],[-105.30121,30.82383],[-105.29091,30.82619],[-105.28748,30.81852],[-105.28199,30.81734],[-105.27581,30.8085],[-105.26894,30.8085],[-105.26619,30.80555],[-105.26207,30.79788],[-105.25658,30.79493],[-105.2298,30.80437],[-105.2298,30.80024],[-105.22706,30.79847],[-105.21744,30.80555],[-105.2147,30.80496],[-105.21332,30.80083],[-105.20989,30.79729],[-105.21264,30.79316],[-105.21813,30.79375],[-105.22088,30.78785],[-105.21264,30.78254],[-105.20714,30.78726],[-105.20165,30.78844],[-105.19547,30.79198],[-105.19066,30.78667],[-105.18586,30.78372],[-105.17624,30.76897],[-105.16938,30.77546],[-105.17006,30.78018],[-105.16663,30.77959],[-105.16526,30.77546],[-105.16526,30.77192],[-105.15564,30.77015],[-105.16182,30.75245],[-105.15633,30.75304],[-105.15427,30.75186],[-105.14466,30.7554],[-105.12681,30.74832],[-105.11788,30.7495],[-105.12063,30.74478],[-105.11582,30.74301],[-105.11376,30.74773],[-105.11033,30.7436],[-105.10758,30.73003],[-105.10209,30.72944],[-105.10209,30.7259],[-105.10483,30.72412],[-105.09934,30.72294],[-105.09797,30.71645],[-105.0911,30.71704],[-105.08767,30.71291],[-105.08698,30.70996],[-105.08149,30.70937],[-105.07874,30.70582],[-105.08355,30.70228],[-105.07943,30.69992],[-105.07599,30.70287],[-105.06981,30.70405],[-105.06432,30.69815],[-105.06226,30.69284],[-105.06363,30.68811],[-105.0602,30.68575],[-105.05745,30.68811],[-105.05402,30.68457],[-105.05402,30.68162],[-105.04853,30.6828],[-105.04647,30.68044],[-105.04509,30.68634],[-105.04578,30.68752],[-105.04372,30.6887],[-105.04097,30.68811],[-105.03548,30.68634],[-105.02861,30.68044],[-105.00733,30.68575],[-105.00252,30.68103],[-104.99978,30.67335],[-104.99978,30.67217],[-104.9936,30.66921],[-104.9936,30.66508],[-104.98604,30.66272],[-104.9833,30.63141],[-104.98055,30.62845],[-104.97918,30.62136],[-104.97437,30.61664],[-104.973,30.61132],[-104.96819,30.60955],[-104.96064,30.61014],[-104.95446,30.60659],[-104.94965,30.60423],[-104.94072,30.60541],[-104.93798,30.60659],[-104.93454,30.60068],[-104.92905,30.60068],[-104.9263,30.60541],[-104.92081,30.59595],[-104.92081,30.59063],[-104.91875,30.58531],[-104.9112,30.58472],[-104.90708,30.57822],[-104.89815,30.56699],[-104.89472,30.56048],[-104.89884,30.55575],[-104.88785,30.54747],[-104.8906,30.54156],[-104.88923,30.53505],[-104.88167,30.53269],[-104.88167,30.52618],[-104.88373,30.52618],[-104.88717,30.52441],[-104.88236,30.52263],[-104.88511,30.52027],[-104.88511,30.51849],[-104.87961,30.5179],[-104.87687,30.51199],[-104.87343,30.51258],[-104.87275,30.50903],[-104.87275,30.4966],[-104.86863,30.49483],[-104.86725,30.48418],[-104.87069,30.48122],[-104.86931,30.47945],[-104.86931,30.47353],[-104.86519,30.46465],[-104.87,30.45844],[-104.86828,30.4537],[-104.86519,30.45163],[-104.8676,30.44157],[-104.85833,30.43742],[-104.86245,30.42795],[-104.85009,30.41966],[-104.84803,30.41966],[-104.8494,30.41611],[-104.84871,30.41315],[-104.85695,30.40959],[-104.85489,30.40071],[-104.85901,30.39123],[-104.85283,30.3859],[-104.83841,30.37465],[-104.8185,30.37643],[-104.81644,30.37465],[-104.81987,30.3705],[-104.81713,30.36576],[-104.81163,30.36754],[-104.81163,30.3628],[-104.81438,30.35924],[-104.81575,30.3551],[-104.82262,30.35213],[-104.8185,30.3468],[-104.81163,30.34088],[-104.81163,30.33258],[-104.79653,30.3308],[-104.79172,30.32547],[-104.79104,30.32132],[-104.77662,30.30828],[-104.77936,30.30413],[-104.77318,30.30413],[-104.76563,30.30828],[-104.76563,30.30294],[-104.75808,30.28397],[-104.76151,30.27626],[-104.76151,30.27507],[-104.74846,30.2733],[-104.75121,30.26321],[-104.73816,30.2561],[-104.73816,30.26144],[-104.73336,30.26084],[-104.70589,30.23474],[-104.71001,30.22406],[-104.68735,30.17956],[-104.68804,30.14037],[-104.69628,30.13325],[-104.69422,30.11721],[-104.68598,30.10711],[-104.69491,30.10296],[-104.6901,30.09523],[-104.68735,30.0988],[-104.6901,30.07265],[-104.70246,30.06374],[-104.70726,30.05007],[-104.69559,30.03581],[-104.70314,30.02392],[-104.6901,30.01381],[-104.69216,30.0037],[-104.68941,30.00192],[-104.68873,29.99478],[-104.69491,29.9924],[-104.68529,29.98883],[-104.69353,29.97634],[-104.67843,29.98051],[-104.68461,29.97099],[-104.68323,29.9585],[-104.67499,29.95731],[-104.67362,29.95077],[-104.68117,29.92935],[-104.67362,29.91209],[-104.66469,29.90316],[-104.65714,29.90375],[-104.6592,29.88887],[-104.65027,29.88887],[-104.63585,29.87101],[-104.6283,29.85255],[-104.62143,29.84957],[-104.62487,29.84481],[-104.62006,29.84064],[-104.61663,29.846],[-104.61045,29.83766],[-104.61937,29.8323],[-104.60907,29.82575],[-104.60907,29.82098],[-104.59534,29.80668],[-104.59259,29.81145],[-104.58436,29.80073],[-104.59122,29.79894],[-104.58916,29.79655],[-104.58367,29.79655],[-104.57955,29.78464],[-104.56582,29.77272],[-104.56856,29.75782],[-104.56994,29.75364],[-104.5514,29.73874],[-104.56101,29.73755],[-104.55483,29.7298],[-104.55071,29.73039],[-104.55002,29.72503],[-104.54934,29.72025],[-104.54659,29.7125],[-104.54453,29.697],[-104.5308,29.69342],[-104.54316,29.68208],[-104.53492,29.66896],[-104.52462,29.66478],[-104.51088,29.64569],[-104.515,29.64032],[-104.50539,29.63315],[-104.49578,29.63912],[-104.46488,29.61167],[-104.45664,29.60808],[-104.40102,29.57345],[-104.39415,29.55494],[-104.38111,29.54359],[-104.37081,29.54419],[-104.33716,29.51969],[-104.32206,29.52387],[-104.32,29.53224],[-104.30901,29.53403],[-104.31244,29.52686],[-104.31176,29.52328],[-104.29184,29.52148],[-104.263,29.51372],[-104.26232,29.50595],[-104.25477,29.50714],[-104.24103,29.49818],[-104.23691,29.49818],[-104.23142,29.48204],[-104.23005,29.47845],[-104.21494,29.48622],[-104.20945,29.48264],[-104.21288,29.46231],[-104.21837,29.45932],[-104.19434,29.44318],[-104.19434,29.43601],[-104.18267,29.42703],[-104.18061,29.41328],[-104.17374,29.40909],[-104.16687,29.40012],[-104.16962,29.39653],[-104.16275,29.39114],[-104.15314,29.39473],[-104.1504,29.38935],[-104.14559,29.38815],[-104.14147,29.38097],[-104.13598,29.38516],[-104.1243,29.38038],[-104.12087,29.37439],[-104.11469,29.3708],[-104.11263,29.37499],[-104.09821,29.36721],[-104.0886,29.35764],[-104.08928,29.35584],[-104.08036,29.34507],[-104.07418,29.34686],[-104.0577,29.33669],[-104.0577,29.3331],[-103.97324,29.29657],[-103.96775,29.30017],[-103.92655,29.29418],[-103.91831,29.28879],[-103.91762,29.2858],[-103.89977,29.28819],[-103.88947,29.27921],[-103.88398,29.284],[-103.86269,29.27981],[-103.83797,29.27741],[-103.82767,29.27022],[-103.81463,29.27442],[-103.80913,29.27082],[-103.80845,29.26304],[-103.79952,29.25824],[-103.78647,29.26663],[-103.7748,29.24506],[-103.78098,29.24327],[-103.78167,29.22829],[-103.7748,29.2199],[-103.76999,29.22169],[-103.76793,29.22769],[-103.76038,29.23368],[-103.75557,29.22709],[-103.75695,29.22349],[-103.75351,29.2211],[-103.74321,29.22229],[-103.74047,29.20491],[-103.72811,29.19652],[-103.71781,29.18154],[-103.713,29.18333],[-103.70339,29.18453],[-103.69927,29.17854],[-103.68966,29.17854],[-103.6567,29.17015],[-103.65189,29.16115],[-103.6512,29.15815],[-103.64846,29.15635],[-103.64571,29.15875],[-103.64159,29.16355],[-103.63541,29.16115],[-103.63129,29.16175],[-103.62786,29.16355],[-103.61893,29.16295],[-103.61344,29.16415],[-103.60589,29.16175],[-103.5949,29.15156],[-103.58117,29.15156],[-103.57293,29.15516],[-103.55301,29.15575],[-103.55027,29.15336],[-103.5537,29.14856],[-103.54958,29.14436],[-103.54134,29.14616],[-103.52349,29.13297],[-103.5228,29.12157],[-103.51319,29.11977],[-103.50563,29.11617],[-103.49946,29.11617],[-103.49946,29.11077],[-103.49465,29.10957],[-103.48229,29.09217],[-103.47336,29.09097],[-103.47611,29.08797],[-103.46993,29.08317],[-103.47062,29.06637],[-103.46032,29.06877],[-103.46238,29.07297],[-103.4507,29.07357],[-103.4507,29.06397],[-103.44109,29.05797],[-103.43422,29.05797],[-103.43422,29.05376],[-103.42804,29.04776],[-103.43216,29.04416],[-103.4253,29.04356],[-103.41431,29.03816],[-103.40401,29.03936],[-103.40058,29.03215],[-103.39097,29.03395],[-103.38753,29.02255],[-103.37655,29.02255],[-103.36144,29.01774],[-103.35114,29.03095],[-103.34359,29.04596],[-103.32779,29.04356],[-103.32917,29.02975],[-103.34153,29.02975],[-103.33809,29.02015],[-103.32573,29.01654],[-103.31818,29.02255],[-103.31612,29.02555],[-103.30788,29.02195],[-103.31063,29.01654],[-103.31749,29.01174],[-103.30925,29.00513],[-103.30239,29.01054],[-103.28797,29.00453],[-103.2811,28.98892],[-103.28797,28.98111],[-103.27904,28.97751],[-103.26806,28.99673],[-103.25158,28.98411],[-103.25089,28.98171],[-103.2399,28.98171],[-103.22892,28.99252],[-103.21999,28.98471],[-103.21312,28.98832],[-103.16712,28.97871],[-103.16369,28.9745],[-103.15339,28.9727],[-103.14927,28.9757],[-103.13553,28.98471],[-103.11356,28.98652],[-103.11631,29.00093],[-103.10738,29.01594],[-103.1012,29.01894],[-103.09845,29.02855],[-103.10738,29.03816],[-103.09708,29.05196],[-103.10051,29.06157],[-103.09021,29.06397],[-103.09159,29.05556],[-103.08266,29.05436],[-103.08678,29.06877],[-103.07717,29.07717],[-103.0806,29.08797],[-103.06893,29.09337],[-103.0655,29.09097],[-103.05588,29.10117],[-103.0449,29.09517],[-103.03254,29.10537],[-103.03666,29.11257],[-103.02842,29.11677],[-103.02155,29.12697],[-103.01331,29.12697],[-103.01606,29.13417],[-103.01125,29.13776],[-103.0085,29.14976],[-103.00507,29.15276],[-103.00232,29.14976],[-102.99271,29.15995],[-102.99889,29.17554],[-102.99065,29.18453],[-102.97898,29.18633],[-102.96319,29.18034],[-102.95151,29.17494],[-102.95289,29.18094],[-102.94877,29.18154],[-102.94465,29.18813],[-102.94259,29.19353],[-102.93709,29.18693],[-102.93297,29.19353],[-102.91924,29.19173],[-102.91855,29.19772],[-102.91512,29.20012],[-102.91375,29.20791],[-102.91718,29.2151],[-102.91169,29.2205],[-102.90207,29.21091],[-102.87598,29.2133],[-102.86499,29.22709],[-102.87186,29.24267],[-102.88765,29.24446],[-102.90551,29.25704],[-102.90207,29.26543],[-102.89933,29.26903],[-102.90276,29.27801],[-102.88834,29.29059],[-102.89246,29.30915],[-102.88628,29.31274],[-102.88559,29.32292],[-102.87941,29.34028],[-102.88285,29.34746],[-102.87804,29.35524],[-102.86293,29.35105],[-102.84028,29.35943],[-102.84508,29.36542],[-102.84508,29.37499],[-102.83478,29.37978],[-102.83341,29.38995],[-102.82723,29.39593],[-102.81899,29.39773],[-102.81556,29.39773],[-102.8135,29.40132],[-102.83272,29.40969],[-102.83135,29.44378],[-102.82174,29.44796],[-102.82036,29.45095],[-102.82517,29.45693],[-102.81418,29.47307],[-102.81418,29.48383],[-102.80045,29.48682],[-102.80594,29.49519],[-102.8032,29.50356],[-102.80663,29.50356],[-102.80869,29.52507],[-102.7929,29.53761],[-102.78809,29.54478],[-102.7723,29.54777],[-102.77848,29.56091],[-102.7723,29.57286],[-102.76818,29.57166],[-102.76268,29.57942],[-102.76955,29.59555],[-102.76131,29.59913],[-102.74621,29.59435],[-102.73865,29.6248],[-102.74277,29.63196],[-102.72561,29.64628],[-102.72561,29.65046],[-102.70707,29.66597],[-102.69677,29.67134],[-102.69539,29.67731],[-102.70089,29.68507],[-102.69883,29.69759],[-102.69059,29.70594],[-102.69059,29.72264],[-102.68166,29.7286],[-102.67548,29.7447],[-102.66861,29.7453],[-102.66655,29.73934],[-102.65969,29.73516],[-102.62398,29.73635],[-102.61437,29.74768],[-102.60819,29.74828],[-102.60064,29.75126],[-102.59652,29.75066],[-102.5869,29.74887],[-102.58072,29.75484],[-102.57386,29.75543],[-102.57317,29.76914],[-102.56836,29.77212],[-102.56012,29.76437],[-102.55394,29.75543],[-102.55463,29.75007],[-102.54914,29.7447],[-102.51069,29.77272],[-102.5203,29.78166],[-102.51549,29.78642],[-102.49833,29.78166],[-102.48734,29.78821],[-102.48185,29.77868],[-102.47155,29.77629],[-102.46537,29.78404],[-102.45919,29.77689],[-102.44751,29.77689],[-102.43721,29.77331],[-102.43241,29.77808],[-102.42142,29.77033],[-102.40563,29.76318],[-102.39876,29.76795],[-102.38778,29.76199],[-102.38846,29.78047],[-102.37885,29.79],[-102.37542,29.80371],[-102.36306,29.83528],[-102.3658,29.8454],[-102.35207,29.85493],[-102.34795,29.86267],[-102.34108,29.86982],[-102.33284,29.86684],[-102.3301,29.86327],[-102.32392,29.86565],[-102.3246,29.87339],[-102.32186,29.88054],[-102.28203,29.86565],[-102.27242,29.86863],[-102.26281,29.86684],[-102.26418,29.85672],[-102.25045,29.85493],[-102.24839,29.86565],[-102.24427,29.85791],[-102.24152,29.846],[-102.22985,29.84957],[-102.22504,29.84183],[-102.21611,29.84362],[-102.20376,29.84302],[-102.19895,29.83766],[-102.19346,29.83885],[-102.19002,29.84898],[-102.18178,29.84481],[-102.17972,29.83707],[-102.18178,29.83111],[-102.17904,29.82754],[-102.16874,29.82694],[-102.15569,29.81205],[-102.1502,29.81026],[-102.14196,29.80371],[-102.12822,29.79834],[-102.11792,29.8043],[-102.11792,29.79477],[-102.09046,29.79477],[-102.07535,29.79238],[-102.07398,29.78881],[-102.05132,29.78642],[-102.04308,29.79],[-102.03896,29.79119],[-102.04171,29.80132],[-102.01905,29.80132],[-102.01561,29.79655],[-102.00943,29.80013],[-101.99501,29.80609],[-101.9854,29.79477],[-101.98197,29.81562],[-101.96618,29.81205],[-101.96412,29.80192],[-101.95862,29.79715],[-101.94764,29.80192],[-101.93734,29.79834],[-101.93322,29.79119],[-101.93253,29.78344],[-101.92566,29.78523],[-101.91811,29.79477],[-101.91056,29.80073],[-101.87554,29.79477],[-101.85425,29.80788],[-101.84739,29.80728],[-101.8261,29.7894],[-101.81992,29.79536],[-101.82679,29.80728],[-101.8158,29.81443],[-101.80344,29.80371],[-101.81237,29.79477],[-101.80962,29.78344],[-101.79177,29.77927],[-101.78559,29.78702],[-101.75332,29.77868],[-101.74439,29.77749],[-101.73615,29.77212],[-101.72928,29.77093],[-101.72585,29.77331],[-101.71898,29.7751],[-101.70937,29.76258],[-101.68808,29.77153],[-101.68053,29.7602],[-101.67229,29.76139],[-101.67366,29.76556],[-101.66062,29.77153],[-101.64551,29.75484],[-101.63315,29.76258],[-101.62697,29.77212],[-101.57685,29.77093],[-101.5741,29.79119],[-101.56929,29.80013],[-101.55213,29.8043],[-101.54664,29.81383],[-101.53634,29.80251],[-101.53771,29.78762],[-101.53702,29.76258],[-101.51436,29.76318],[-101.50063,29.76497],[-101.48621,29.7757],[-101.47866,29.78344],[-101.456,29.78762],[-101.45531,29.76855],[-101.45119,29.75126],[-101.43883,29.74828],[-101.42922,29.75782],[-101.40725,29.77212],[-101.39626,29.76676],[-101.40107,29.76139],[-101.41549,29.75305],[-101.4148,29.74351],[-101.40244,29.73934],[-101.39626,29.73337],[-101.40038,29.72264],[-101.3942,29.71131],[-101.37978,29.70356],[-101.3736,29.69401],[-101.37291,29.68805],[-101.37085,29.67612],[-101.35918,29.64867],[-101.35712,29.64986],[-101.35437,29.65822],[-101.34888,29.6618],[-101.3118,29.65822],[-101.30219,29.64867],[-101.30082,29.63614],[-101.30768,29.6236],[-101.31318,29.60808],[-101.31112,29.5848],[-101.29189,29.57226],[-101.28296,29.5854],[-101.27747,29.60749],[-101.28159,29.61465],[-101.26854,29.63256],[-101.25481,29.62778],[-101.24794,29.61704],[-101.25206,29.60211],[-101.24176,29.56569],[-101.26168,29.53881],[-101.25687,29.52029],[-101.23833,29.52507],[-101.17379,29.51491],[-101.14975,29.47666],[-101.13945,29.47248],[-101.12778,29.47965],[-101.11542,29.46949],[-101.08727,29.46829],[-101.06049,29.45813],[-101.05774,29.44318],[-101.04195,29.43002],[-101.03852,29.40969],[-101.02341,29.39234],[-101.02272,29.39773],[-101.0138,29.38217],[-101.0138,29.37559],[-101.00899,29.36781],[-100.99801,29.36482],[-100.97329,29.35464],[-100.96848,29.34986],[-100.96299,29.34627],[-100.95063,29.34746],[-100.94239,29.34507],[-100.94101,29.33549],[-100.92728,29.32891],[-100.88883,29.30735],[-100.87853,29.28041],[-100.83802,29.26304],[-100.8181,29.26543],[-100.81467,29.26004],[-100.81879,29.25585],[-100.81398,29.25345],[-100.80849,29.25225],[-100.79613,29.24626],[-100.79682,29.23668],[-100.79545,29.22709],[-100.79201,29.22709],[-100.78446,29.22769],[-100.77485,29.21271],[-100.77553,29.20611],[-100.77485,29.20192],[-100.77004,29.19952],[-100.76592,29.19233],[-100.76867,29.17734],[-100.77485,29.17614],[-100.77004,29.16715],[-100.76455,29.16775],[-100.76111,29.16295],[-100.7618,29.15875],[-100.75562,29.15695],[-100.73708,29.14736],[-100.73983,29.14256],[-100.71854,29.12277],[-100.69588,29.11437],[-100.68558,29.11077],[-100.67391,29.10057],[-100.66636,29.07717],[-100.66086,29.04176],[-100.65674,29.01474],[-100.64988,29.00333],[-100.64438,28.98652],[-100.6437,28.9757],[-100.65056,28.94266],[-100.64438,28.93605],[-100.64026,28.93004],[-100.63202,28.92463],[-100.63134,28.92163],[-100.62928,28.91862],[-100.63477,28.91562],[-100.64026,28.91622],[-100.63202,28.90239],[-100.62378,28.909],[-100.61417,28.90239],[-100.60181,28.90239],[-100.60387,28.88616],[-100.59357,28.88857],[-100.58808,28.88616],[-100.59288,28.87895],[-100.59632,28.88015],[-100.59632,28.87353],[-100.58945,28.87353],[-100.58808,28.87053],[-100.59014,28.86452],[-100.57091,28.84707],[-100.57641,28.84046],[-100.57435,28.82903],[-100.56885,28.82542],[-100.56061,28.82723],[-100.55237,28.82723],[-100.54551,28.82181],[-100.54551,28.81279],[-100.53933,28.80617],[-100.53315,28.80376],[-100.53315,28.79293],[-100.53658,28.78511],[-100.53658,28.77849],[-100.53246,28.77307],[-100.53109,28.76645],[-100.53383,28.76224],[-100.52903,28.75983],[-100.52353,28.75501],[-100.51941,28.75562],[-100.51667,28.75321],[-100.51461,28.74177],[-100.51117,28.74117],[-100.5098,28.73996],[-100.50774,28.73695],[-100.50705,28.72672],[-100.50774,28.71588],[-100.51461,28.70504],[-100.51255,28.69359],[-100.50019,28.66287],[-100.49401,28.65745],[-100.47959,28.65504],[-100.47272,28.64721],[-100.46448,28.64118],[-100.44732,28.64299],[-100.44663,28.60924],[-100.43496,28.60803],[-100.43221,28.6014],[-100.39856,28.58391],[-100.3965,28.57849],[-100.41024,28.55014],[-100.39994,28.53024],[-100.39582,28.52963],[-100.38895,28.51455],[-100.33265,28.50188],[-100.33608,28.49343],[-100.34775,28.48438],[-100.36767,28.48317],[-100.36835,28.47714],[-100.33883,28.44575],[-100.33814,28.42341],[-100.3505,28.40408],[-100.31685,28.35817],[-100.31479,28.34608],[-100.28595,28.30861],[-100.29419,28.28382],[-100.2887,28.27052],[-100.28389,28.27173],[-100.27703,28.26326],[-100.24682,28.23302],[-100.22965,28.23423],[-100.22004,28.2312],[-100.2166,28.22031],[-100.21523,28.207],[-100.20905,28.19429],[-100.20562,28.19066],[-100.1912,28.19005],[-100.17403,28.18037],[-100.16648,28.16948],[-100.15343,28.16584],[-100.14313,28.16887],[-100.12116,28.15555],[-100.08683,28.14526],[-100.06623,28.11619],[-100.05867,28.10711],[-100.05799,28.09924],[-100.05661,28.09015],[-100.05181,28.08349],[-100.04082,28.07743],[-100.02434,28.07076],[-100.0161,28.05683],[-100.00924,28.02834],[-100.00031,28.00773],[-99.99276,27.99561],[-99.96804,27.9847],[-99.93096,27.98045],[-99.93233,27.96832],[-99.93988,27.9568],[-99.93782,27.94891],[-99.93371,27.93618],[-99.92753,27.93557],[-99.92409,27.9289],[-99.92615,27.92617],[-99.89869,27.9113],[-99.89388,27.90038],[-99.90143,27.88521],[-99.90418,27.87003],[-99.89663,27.85789],[-99.88358,27.85304],[-99.87809,27.8415],[-99.87809,27.82936],[-99.87603,27.81478],[-99.87671,27.80567],[-99.87877,27.80203],[-99.8671,27.79413],[-99.85131,27.79352],[-99.84238,27.76619],[-99.82522,27.76436],[-99.81904,27.7753],[-99.81217,27.77348],[-99.80118,27.7437],[-99.78951,27.73155],[-99.77372,27.73398],[-99.75792,27.71878],[-99.7593,27.71149],[-99.7229,27.67683],[-99.72428,27.66832],[-99.70025,27.65737],[-99.69407,27.66406],[-99.69132,27.66954],[-99.68857,27.66285],[-99.67965,27.65859],[-99.67141,27.65981],[-99.65973,27.65251],[-99.65836,27.64825],[-99.66317,27.64339],[-99.6666,27.63913],[-99.65355,27.63061],[-99.64875,27.63122],[-99.63845,27.62879],[-99.62746,27.63365],[-99.62746,27.64095],[-99.62403,27.64521],[-99.61853,27.63974],[-99.61441,27.63791],[-99.59725,27.64095],[-99.59107,27.62939],[-99.58008,27.61966],[-99.57665,27.61358],[-99.58352,27.60749],[-99.58832,27.60567],[-99.58214,27.60141],[-99.55948,27.6081],[-99.55742,27.6154],[-99.55605,27.61418],[-99.54232,27.60749],[-99.53339,27.58741],[-99.51966,27.57585],[-99.51279,27.56854],[-99.51279,27.55819],[-99.51966,27.55028],[-99.5279,27.50035],[-99.52034,27.49609],[-99.50181,27.49974],[-99.49494,27.49974],[-99.47983,27.48817],[-99.48395,27.47416],[-99.48601,27.46136],[-99.49357,27.45161],[-99.48739,27.40956],[-99.49151,27.39432],[-99.49288,27.38091],[-99.50455,27.35896],[-99.50455,27.33822],[-99.52996,27.3248],[-99.53614,27.31565],[-99.52858,27.30528],[-99.50318,27.30772],[-99.49563,27.30223],[-99.4867,27.29063],[-99.49151,27.2766],[-99.49769,27.27172],[-99.48739,27.26256],[-99.47159,27.26256],[-99.46061,27.26866],[-99.44893,27.26012],[-99.43932,27.24669],[-99.44207,27.23387],[-99.44069,27.2186],[-99.43314,27.20761],[-99.42971,27.1954],[-99.42559,27.17769],[-99.42971,27.15875],[-99.43863,27.15508],[-99.43932,27.14958],[-99.43383,27.13981],[-99.43177,27.13186],[-99.43108,27.12331],[-99.44344,27.10864],[-99.44001,27.10314],[-99.43039,27.09275],[-99.43177,27.08541],[-99.44275,27.07318],[-99.45374,27.0634],[-99.44619,27.04506],[-99.44619,27.02977],[-99.44756,27.02487],[-99.43177,27.0108],[-99.41666,27.01814],[-99.40567,26.99857],[-99.38576,26.98266],[-99.37752,26.97838],[-99.37821,26.97287],[-99.39332,26.96308],[-99.38782,26.94227],[-99.37272,26.93064],[-99.32671,26.91839],[-99.32259,26.91227],[-99.3274,26.88655],[-99.32465,26.87675],[-99.31641,26.86634],[-99.29581,26.8645],[-99.28139,26.8596],[-99.26835,26.84245],[-99.26423,26.81671],[-99.24363,26.78791],[-99.24019,26.74683],[-99.20861,26.72598],[-99.21067,26.6947],[-99.20105,26.65973],[-99.17771,26.61922],[-99.16741,26.55905],[-99.17222,26.54983],[-99.17016,26.54062],[-99.16054,26.53386],[-99.12896,26.52465],[-99.09256,26.47733],[-99.09394,26.46995],[-99.10012,26.46012],[-99.10218,26.44475],[-99.11248,26.43553],[-99.08432,26.39802],[-99.06373,26.39802],[-99.04725,26.40601],[-99.03901,26.41401],[-99.02184,26.4097],[-99.00948,26.3931],[-98.98888,26.39187],[-98.97789,26.40109],[-98.97103,26.40109],[-98.95249,26.39248],[-98.95592,26.38079],[-98.94356,26.3691],[-98.93807,26.37157],[-98.93395,26.3771],[-98.93601,26.38264],[-98.92708,26.39494],[-98.92365,26.39002],[-98.92228,26.37956],[-98.91198,26.37218],[-98.90305,26.37157],[-98.89962,26.36726],[-98.9003,26.36049],[-98.89756,26.35372],[-98.87078,26.36295],[-98.85773,26.36664],[-98.84949,26.36111],[-98.84469,26.35988],[-98.83164,26.3648],[-98.82409,26.37034],[-98.81379,26.36787],[-98.80692,26.3691],[-98.80005,26.36295],[-98.79662,26.3488],[-98.78838,26.33773],[-98.78975,26.33342],[-98.77259,26.32603],[-98.76572,26.32726],[-98.75473,26.33157],[-98.74924,26.33034],[-98.74787,26.32234],[-98.74444,26.31557],[-98.73826,26.31372],[-98.73688,26.3088],[-98.741,26.30264],[-98.74581,26.30634],[-98.75199,26.30757],[-98.75542,26.30572],[-98.75336,26.29957],[-98.74924,26.29587],[-98.74169,26.29403],[-98.73482,26.29957],[-98.72933,26.30018],[-98.71972,26.29218],[-98.71697,26.28787],[-98.70804,26.2891],[-98.70186,26.28479],[-98.70186,26.27987],[-98.70804,26.27864],[-98.71903,26.27864],[-98.7204,26.27494],[-98.69706,26.26447],[-98.68744,26.26632],[-98.6792,26.26016],[-98.68058,26.246],[-98.67234,26.23861],[-98.65929,26.23615],[-98.64624,26.23984],[-98.6332,26.24292],[-98.63251,26.25216],[-98.62359,26.26078],[-98.61878,26.24723],[-98.61466,26.24662],[-98.61191,26.25339],[-98.60848,26.25339],[-98.59749,26.2577],[-98.58239,26.2577],[-98.57964,26.25031],[-98.58445,26.24538],[-98.57964,26.23553],[-98.57415,26.23984],[-98.56797,26.24169],[-98.56522,26.23615],[-98.56385,26.22629],[-98.55973,26.22444],[-98.55767,26.23183],[-98.54805,26.23491],[-98.54805,26.24107],[-98.55767,26.24415],[-98.55629,26.24908],[-98.54462,26.24477],[-98.53569,26.22567],[-98.52883,26.22999],[-98.52334,26.23676],[-98.52059,26.2343],[-98.52608,26.22444],[-98.52196,26.22075],[-98.5151,26.22752],[-98.50274,26.22198],[-98.50686,26.21089],[-98.50205,26.21089],[-98.49106,26.21335],[-98.48351,26.20781],[-98.4842,26.20411],[-98.48008,26.20165],[-98.47733,26.20411],[-98.4842,26.21643],[-98.47939,26.22013],[-98.47252,26.22013],[-98.46634,26.22321],[-98.46085,26.22691],[-98.45673,26.22013],[-98.45398,26.21705],[-98.45261,26.22075],[-98.44506,26.22444],[-98.43888,26.2189],[-98.44025,26.21027],[-98.44574,26.20411],[-98.44025,26.19734],[-98.42995,26.19487],[-98.41897,26.18501],[-98.40729,26.18378],[-98.40317,26.1807],[-98.40317,26.17454],[-98.39837,26.16961],[-98.3915,26.16529],[-98.38601,26.1579],[-98.37777,26.1579],[-98.36541,26.15975],[-98.36815,26.16653],[-98.36403,26.17146],[-98.3606,26.17269],[-98.35785,26.16899],[-98.35785,26.16468],[-98.35991,26.15975],[-98.35442,26.1542],[-98.35167,26.15235],[-98.34755,26.1542],[-98.34824,26.16098],[-98.34549,26.16714],[-98.34069,26.16714],[-98.33451,26.16653],[-98.33451,26.15667],[-98.33863,26.15235],[-98.33794,26.14989],[-98.33451,26.14619],[-98.32901,26.14496],[-98.32764,26.14311],[-98.33588,26.14187],[-98.33588,26.13694],[-98.33451,26.13386],[-98.32077,26.11906],[-98.31185,26.1166],[-98.30842,26.10673],[-98.30498,26.10303],[-98.29812,26.10365],[-98.29812,26.10673],[-98.30361,26.1092],[-98.30224,26.11352],[-98.29674,26.12153],[-98.27271,26.11783],[-98.26516,26.12153],[-98.2655,26.11706],[-98.27134,26.11413],[-98.27134,26.10673],[-98.28713,26.10735],[-98.28799,26.10488],[-98.28507,26.10242],[-98.27906,26.09933],[-98.27271,26.09625],[-98.26653,26.09132],[-98.26567,26.087],[-98.26378,26.08515],[-98.25211,26.07898],[-98.24936,26.07343],[-98.24387,26.07282],[-98.22945,26.07652],[-98.2164,26.07528],[-98.20885,26.06911],[-98.20199,26.06233],[-98.19855,26.05616],[-98.19306,26.05616],[-98.18894,26.06356],[-98.18413,26.06233],[-98.1807,26.06048],[-98.17864,26.06233],[-98.17933,26.06665],[-98.1807,26.07405],[-98.17521,26.07467],[-98.16971,26.07035],[-98.17109,26.06726],[-98.16765,26.06356],[-98.16353,26.0648],[-98.15873,26.0648],[-98.15735,26.06171],[-98.1601,26.06048],[-98.16353,26.0574],[-98.16216,26.05431],[-98.15735,26.05369],[-98.15186,26.05925],[-98.14843,26.05554],[-98.14911,26.05431],[-98.14843,26.05123],[-98.14499,26.04999],[-98.13675,26.06295],[-98.13675,26.06973],[-98.13195,26.07405],[-98.12783,26.0722],[-98.12989,26.0685],[-98.13057,26.06418],[-98.12508,26.06356],[-98.11959,26.06418],[-98.11135,26.06665],[-98.10654,26.06788],[-98.10036,26.06356],[-98.09281,26.05925],[-98.08526,26.0611],[-98.08114,26.0648],[-98.08526,26.06973],[-98.0832,26.07282],[-98.07702,26.06973],[-98.07496,26.06295],[-98.07015,26.04938],[-98.07152,26.04382],[-98.07839,26.04197],[-98.07702,26.03642],[-98.0729,26.03642],[-98.06328,26.04629],[-98.04543,26.04506],[-98.03994,26.04136],[-98.03307,26.06171],[-98.02758,26.06665],[-98.02414,26.06295],[-98.02208,26.05863],[-98.01659,26.06233],[-98.01453,26.06541],[-98.01178,26.06541],[-98.01178,26.05801],[-98.00629,26.06233],[-98.0008,26.06418],[-97.99668,26.06356],[-97.99393,26.05986],[-97.9905,26.05863],[-97.98707,26.06557],[-97.98295,26.06726],[-97.97951,26.06603],[-97.97883,26.06233],[-97.97677,26.05925],[-97.96647,26.05123],[-97.95205,26.06171],[-97.94449,26.06048],[-97.93557,26.05431],[-97.93213,26.05616],[-97.93625,26.06233],[-97.93351,26.0648],[-97.92733,26.0574],[-97.92664,26.05616],[-97.91909,26.05925],[-97.91359,26.05616],[-97.90261,26.0611],[-97.89093,26.06171],[-97.88819,26.06788],[-97.87514,26.06418],[-97.8724,26.05986],[-97.87102,26.05801],[-97.86347,26.06973],[-97.85935,26.06665],[-97.86141,26.06048],[-97.86072,26.05369],[-97.84012,26.05431],[-97.83463,26.04691],[-97.8257,26.05678],[-97.81609,26.05493],[-97.81609,26.04567],[-97.81197,26.04629],[-97.81266,26.05493],[-97.8003,26.06048],[-97.79961,26.05369],[-97.79343,26.05308],[-97.79,26.04814],[-97.79618,26.04691],[-97.79549,26.04259],[-97.79686,26.03889],[-97.79137,26.03395],[-97.78244,26.03457],[-97.77901,26.02963],[-97.7742,26.03457],[-97.76871,26.0358],[-97.77695,26.04074],[-97.77695,26.04506],[-97.77009,26.04753],[-97.76391,26.04321],[-97.76391,26.02778],[-97.76047,26.02655],[-97.75498,26.03087],[-97.74949,26.02963],[-97.74949,26.02655],[-97.74605,26.02778],[-97.74331,26.03087],[-97.73713,26.02902],[-97.73781,26.02285],[-97.73301,26.02285],[-97.72751,26.02346],[-97.72683,26.02902],[-97.73301,26.02963],[-97.73575,26.0321],[-97.71927,26.0321],[-97.72202,26.02408],[-97.70897,26.02655],[-97.7076,26.03704],[-97.70279,26.0321],[-97.6973,26.03087],[-97.69661,26.0247],[-97.69249,26.01853],[-97.69043,26.02408],[-97.69318,26.03148],[-97.68769,26.02778],[-97.67601,26.02655],[-97.67464,26.02902],[-97.67601,26.03334],[-97.67121,26.03519],[-97.66846,26.0284],[-97.66434,26.03334],[-97.66297,26.03951],[-97.66091,26.02963],[-97.66777,26.02408],[-97.66709,26.01914],[-97.65954,26.02038],[-97.65061,26.01729],[-97.64512,26.0284],[-97.63619,26.01668],[-97.63962,26.01297],[-97.64718,26.01297],[-97.65061,26.01112],[-97.64649,26.00804],[-97.6355,26.00125],[-97.63138,26.00619],[-97.62658,26.00433],[-97.62726,26.00001],[-97.62383,25.99755],[-97.61971,26.00248],[-97.61696,25.99508],[-97.62314,25.99384],[-97.63001,25.99631],[-97.63276,25.99446],[-97.63276,25.98952],[-97.62932,25.98829],[-97.62246,25.9889],[-97.61765,25.97903],[-97.60804,25.97656],[-97.61147,25.96607],[-97.59911,25.95742],[-97.59362,25.96298],[-97.58332,25.9636],[-97.58332,25.95742],[-97.5792,25.9426],[-97.57439,25.94631],[-97.57439,25.9531],[-97.56684,25.95248],[-97.56684,25.94507],[-97.58126,25.9389],[-97.58263,25.93705],[-97.584,25.93334],[-97.5804,25.93218],[-97.57439,25.93473],[-97.56546,25.93149],[-97.5689,25.92779],[-97.56134,25.92593],[-97.5586,25.93581],[-97.55173,25.93705],[-97.54555,25.93273],[-97.54555,25.92531],[-97.53869,25.93334],[-97.53525,25.92779],[-97.54281,25.92037],[-97.53113,25.92099],[-97.53182,25.9179],[-97.53251,25.91173],[-97.53113,25.90802],[-97.52427,25.89752],[-97.52015,25.88579],[-97.51122,25.88887],[-97.49817,25.89938],[-97.49749,25.88146],[-97.48925,25.8864],[-97.48787,25.88084],[-97.47139,25.89011],[-97.46796,25.88702],[-97.4762,25.88331],[-97.47483,25.87899],[-97.47071,25.8759],[-97.4659,25.88208],[-97.45491,25.88455],[-97.45697,25.86849],[-97.45217,25.86787],[-97.44805,25.87405],[-97.4453,25.86725],[-97.44736,25.86169],[-97.45354,25.85675],[-97.45285,25.85366],[-97.44736,25.85737],[-97.44462,25.85428],[-97.44736,25.85057],[-97.44393,25.84871],[-97.43569,25.8518],[-97.42539,25.84068],[-97.41303,25.84253],[-97.41372,25.8586],[-97.40891,25.86293],[-97.40822,25.85428],[-97.41097,25.84995],[-97.40685,25.84439],[-97.40273,25.85304],[-97.40136,25.84624],[-97.40754,25.84068],[-97.40342,25.83759],[-97.39037,25.84068],[-97.38625,25.84439],[-97.38213,25.84192],[-97.37183,25.84253],[-97.37046,25.84995],[-97.36565,25.85057],[-97.37664,25.85613],[-97.37114,25.85922],[-97.3629,25.86972],[-97.35947,25.86725],[-97.35672,25.86849],[-97.35878,25.87961],[-97.37389,25.87899],[-97.36771,25.88579],[-97.35741,25.88702],[-97.35878,25.89134],[-97.36908,25.89196],[-97.36771,25.90493],[-97.37458,25.90802],[-97.36977,25.91111],[-97.36771,25.91605],[-97.36222,25.91543],[-97.34848,25.93149],[-97.3423,25.92902],[-97.33681,25.92964],[-97.33887,25.92099],[-97.33544,25.92037],[-97.33475,25.92655],[-97.32926,25.91667],[-97.3272,25.91852],[-97.32239,25.9284],[-97.31278,25.93273],[-97.31072,25.92779],[-97.30248,25.93087],[-97.30385,25.93705],[-97.29767,25.93705],[-97.2963,25.93334],[-97.29081,25.93767],[-97.27639,25.9352],[-97.28119,25.94384],[-97.27982,25.94754],[-97.29012,25.95372],[-97.28394,25.95927],[-97.27707,25.9531],[-97.26059,25.95125],[-97.2448,25.95001],[-97.22695,25.95866],[-97.22489,25.95866],[-97.22214,25.95619],[-97.21116,25.96174],[-97.2091,25.96421],[-97.20566,25.96236],[-97.20498,25.95866],[-97.1885,25.95495],[-97.18644,25.95866],[-97.1782,25.96174],[-97.17751,25.96607],[-97.17408,25.96483],[-97.16927,25.96113],[-97.16103,25.9636],[-97.15691,25.96236],[-97.16103,25.95063],[-97.15142,25.95248],[-97.1473,25.95681],[-89.91211,25.04081],[-85.93506,24.55327],[-86.04493,18.39623],[-87.84119,18.1876],[-87.85492,18.18499],[-87.86591,18.19543],[-87.89612,18.16673],[-87.98127,18.16933],[-88.00049,18.37016],[-88.05268,18.41447],[-88.31498,18.49133],[-88.33283,18.49133],[-88.35206,18.48481],[-88.36579,18.48742],[-88.37815,18.48091],[-88.40287,18.49393],[-88.44956,18.47439],[-88.45917,18.49002],[-88.4784,18.49654],[-88.52097,18.46007],[-88.53058,18.40926],[-88.54432,18.38971],[-88.55256,18.37537],[-88.54294,18.36234],[-88.60611,18.29195],[-88.59787,18.29064],[-88.60886,18.26717],[-88.60199,18.2463],[-88.6171,18.22674],[-88.63358,18.21761],[-88.64045,18.215],[-88.6583,18.20456],[-88.66654,18.20587],[-88.67066,18.19673],[-88.68439,18.19673],[-88.69675,18.18369],[-88.68439,18.17716],[-88.68165,18.1589],[-88.71872,18.108],[-88.71186,18.09495],[-88.71598,18.06231],[-88.76954,18.03358],[-88.77091,18.00877],[-88.78739,17.9944],[-88.7819,17.98265],[-88.81897,17.9513],[-88.85468,17.93039],[-88.85331,17.89642],[-88.88077,17.90034],[-88.88764,17.90818],[-88.91922,17.92124],[-88.94532,17.95913],[-88.98926,17.9526],[-89.00162,17.98526],[-89.03733,18.00355],[-89.05518,17.99963],[-89.06067,17.98787],[-89.0799,17.99179],[-89.09775,17.98265],[-89.10737,17.98526],[-89.11286,17.97481],[-89.12247,17.9735],[-89.12522,17.97742],[-89.13208,17.9722],[-89.1362,17.95391],[-89.14444,17.94868],[-89.15268,17.93954],[-89.15268,17.81537],[-90.98809,17.81603],[-90.98809,17.2523],[-91.4399,17.25099],[-91.4296,17.2241],[-91.41861,17.20967],[-91.40419,17.20376],[-91.38566,17.20573],[-91.3733,17.20573],[-91.35407,17.19065],[-91.3472,17.17621],[-91.35132,17.16178],[-91.33896,17.16047],[-91.33004,17.18015],[-91.3218,17.18474],[-91.31218,17.18146],[-91.28197,17.17884],[-91.2806,17.18146],[-91.27579,17.17818],[-91.27099,17.17359],[-91.26275,17.16637],[-91.26206,17.1585],[-91.27236,17.14603],[-91.26755,17.10863],[-91.25519,17.10273],[-91.24283,17.10076],[-91.23391,17.1001],[-91.22635,17.09419],[-91.21743,17.07713],[-91.21605,17.06663],[-91.21537,17.0535],[-91.21056,17.05218],[-91.20163,17.04234],[-91.19408,17.03971],[-91.17829,17.01804],[-91.15494,17.00491],[-91.14808,17.00491],[-91.13572,17.00688],[-91.12748,17.00623],[-91.12198,17.00097],[-91.1213,16.99178],[-91.12336,16.98259],[-91.11924,16.97668],[-91.11718,16.97536],[-91.1055,16.97077],[-91.09932,16.96289],[-91.09658,16.95369],[-91.07872,16.94252],[-91.06911,16.92873],[-91.06431,16.92545],[-91.06636,16.92216],[-91.07529,16.91231],[-91.05744,16.89917],[-91.01075,16.88734],[-90.99564,16.87814],[-90.99015,16.86369],[-90.98328,16.86763],[-90.98465,16.88208],[-90.98603,16.8926],[-90.98053,16.89917],[-90.97435,16.90245],[-90.95787,16.89917],[-90.95376,16.88668],[-90.95993,16.87749],[-90.97023,16.87223],[-90.97641,16.86566],[-90.97023,16.86106],[-90.95925,16.86369],[-90.95307,16.86566],[-90.93453,16.85974],[-90.93247,16.85186],[-90.93453,16.84331],[-90.92629,16.83411],[-90.92354,16.82426],[-90.91805,16.82031],[-90.90088,16.82426],[-90.8844,16.82557],[-90.8638,16.8144],[-90.85831,16.80585],[-90.85694,16.79796],[-90.83222,16.79599],[-90.80544,16.79862],[-90.80132,16.79402],[-90.80407,16.78547],[-90.80407,16.7789],[-90.80063,16.7743],[-90.79239,16.77101],[-90.76149,16.76181],[-90.75737,16.75655],[-90.75806,16.75129],[-90.72167,16.72959],[-90.71686,16.72893],[-90.71068,16.72367],[-90.70725,16.71512],[-90.71,16.7092],[-90.70725,16.70262],[-90.70244,16.70065],[-90.69077,16.69407],[-90.68253,16.68881],[-90.67978,16.67632],[-90.67635,16.66053],[-90.66674,16.65066],[-90.65781,16.63816],[-90.66193,16.63158],[-90.66193,16.62105],[-90.65575,16.60921],[-90.65644,16.60461],[-90.65369,16.59539],[-90.66742,16.58947],[-90.66811,16.58157],[-90.66124,16.57763],[-90.64957,16.57763],[-90.6427,16.58157],[-90.64133,16.58881],[-90.64339,16.59605],[-90.6379,16.59408],[-90.63241,16.5875],[-90.62623,16.57697],[-90.64202,16.56775],[-90.6482,16.55854],[-90.64682,16.5513],[-90.64957,16.54472],[-90.64408,16.5355],[-90.64614,16.52036],[-90.64408,16.51641],[-90.63996,16.51444],[-90.63309,16.51444],[-90.62005,16.52234],[-90.61181,16.51839],[-90.60769,16.50851],[-90.60837,16.49798],[-90.61661,16.49074],[-90.62279,16.48876],[-90.63172,16.49008],[-90.63584,16.48679],[-90.63584,16.48218],[-90.62897,16.47888],[-90.61867,16.47954],[-90.61593,16.48613],[-90.61318,16.49008],[-90.60494,16.48744],[-90.59807,16.49139],[-90.59327,16.48876],[-90.59533,16.47954],[-90.59258,16.47098],[-90.58777,16.46967],[-90.56992,16.47493],[-90.55893,16.47954],[-90.54451,16.48086],[-90.54795,16.47427],[-90.54657,16.46703],[-90.52872,16.45913],[-90.52392,16.46045],[-90.5246,16.46835],[-90.51568,16.47098],[-90.50332,16.46769],[-90.4992,16.46374],[-90.49851,16.45584],[-90.4937,16.45386],[-90.48958,16.45979],[-90.48134,16.46176],[-90.4786,16.45649],[-90.48066,16.45189],[-90.47928,16.44398],[-90.48134,16.43674],[-90.4889,16.42884],[-90.48546,16.42357],[-90.47791,16.42554],[-90.46967,16.42423],[-90.46074,16.42159],[-90.42504,16.42554],[-90.41886,16.42488],[-90.41199,16.4071],[-90.40787,16.40447],[-90.40169,16.40908],[-90.39963,16.41566],[-90.38933,16.41303],[-90.38865,16.4071],[-90.39139,16.40381],[-90.40169,16.39986],[-90.40444,16.39524],[-90.40238,16.39063],[-90.38521,16.3768],[-90.37354,16.37482],[-90.37148,16.36758],[-90.37491,16.36099],[-90.38453,16.36165],[-90.3859,16.36889],[-90.39277,16.37416],[-90.39895,16.37285],[-90.41337,16.36099],[-90.41405,16.3511],[-90.41062,16.34649],[-90.40787,16.34649],[-90.40719,16.34979],[-90.40925,16.35506],[-90.40787,16.35967],[-90.40581,16.36165],[-90.40238,16.35901],[-90.40307,16.35242],[-90.39963,16.34979],[-90.38659,16.34649],[-90.38315,16.3432],[-90.38384,16.33793],[-90.38659,16.33529],[-90.39071,16.33661],[-90.39551,16.33859],[-90.40169,16.33859],[-90.40444,16.33134],[-90.41199,16.32936],[-90.41337,16.32409],[-90.41062,16.31355],[-90.4168,16.30498],[-90.42641,16.3063],[-90.4374,16.303],[-90.44014,16.29575],[-90.43396,16.2918],[-90.43877,16.2885],[-90.4422,16.28191],[-90.43877,16.27598],[-90.43259,16.27466],[-90.42435,16.26148],[-90.4271,16.25489],[-90.43465,16.25554],[-90.44152,16.26214],[-90.44907,16.2595],[-90.45594,16.24895],[-90.45456,16.24302],[-90.44838,16.24236],[-90.44358,16.24632],[-90.44014,16.24632],[-90.43877,16.23972],[-90.43122,16.23577],[-90.42984,16.23181],[-90.44014,16.23181],[-90.45182,16.22588],[-90.458,16.21533],[-90.458,16.20742],[-90.45525,16.19489],[-90.45525,16.1883],[-90.4477,16.1817],[-90.43671,16.18038],[-90.4271,16.17181],[-90.42641,16.16455],[-90.43808,16.1573],[-90.44701,16.15598],[-90.4525,16.15004],[-90.44838,16.14411],[-90.43877,16.14279],[-90.43396,16.14147],[-90.42984,16.13949],[-90.4319,16.1296],[-90.42984,16.11904],[-90.43877,16.11838],[-90.45044,16.12564],[-90.45662,16.12168],[-90.45662,16.1164],[-90.45937,16.10717],[-90.45662,16.10255],[-90.45868,16.09463],[-90.45319,16.09331],[-90.44564,16.09529],[-90.44426,16.10189],[-90.4319,16.10717],[-90.42641,16.10321],[-90.42778,16.09727],[-90.43534,16.09859],[-90.43671,16.09661],[-90.44014,16.09265],[-90.44014,16.09134],[-90.44632,16.08408],[-90.44632,16.08012],[-90.44358,16.07748],[-90.4422,16.07484],[-91.73172,16.07418],[-92.211,15.26166],[-92.05925,15.07079],[-92.06543,15.06947],[-92.07367,15.05886],[-92.06955,15.05753],[-92.0723,15.0509],[-92.0723,15.04825],[-92.07917,15.0456],[-92.07779,15.03499],[-92.07917,15.03101],[-92.08741,15.02305],[-92.09427,15.02172],[-92.09839,15.00979],[-92.12311,15.01642],[-92.1341,15.01376],[-92.13685,15.00581],[-92.15058,14.98856],[-92.14783,14.97928],[-92.14646,14.96866],[-92.1492,14.95009],[-92.14234,14.9408],[-92.1492,14.93151],[-92.14234,14.91559],[-92.14234,14.91426],[-92.14509,14.91028],[-92.13685,14.89568],[-92.13685,14.88639],[-92.14097,14.88241],[-92.1492,14.87046],[-92.16706,14.85985],[-92.17392,14.86117],[-92.17392,14.85454],[-92.18354,14.84923],[-92.18079,14.83728],[-92.18491,14.82931],[-92.17804,14.81737],[-92.17667,14.80409],[-92.1698,14.78683],[-92.17118,14.78152],[-92.16156,14.77488],[-92.16156,14.76293],[-92.17255,14.75496],[-92.17118,14.74832],[-92.16294,14.73637],[-92.15882,14.73902],[-92.14646,14.71644],[-92.14783,14.69785],[-92.14783,14.66065],[-92.15882,14.65135],[-92.16019,14.63939],[-92.16843,14.63939],[-92.17942,14.61547],[-92.17392,14.61016],[-92.18491,14.57959],[-92.19452,14.57029],[-92.20551,14.56231],[-92.2165,14.55567],[-92.22336,14.53706],[-92.23435,14.53706],[-92.2371,14.53839]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!:C6:**Bahamas#CO:**Cuba#FG:**Guadeloupe#FJ:**Saint Barthelemy#FM:**Martinique#FS:**Saint Martin#HH:**Haiti#HI:**Dominican Republic#HK0:**San Andres and Providencia islands#HP:**Panama#HR:**Honduras#J3:**Grenada#J6:**St. Lucia#J7:**Dominica#J8:**St. Vincent#KG4:**Guantanamo US Naval Base#KP1:**Navassa Island#KP2:**Virgin Islands#KP4:**Puerto Rico#KP5:**Desecheo Island#P4:**Aruba#PJ2:**Curacao#PJ4:**Bonaire#PJ5:**Saba & St. Eustatius#PJ7:**St. Maarten#TG:**Guatemala#TI:**Costa Rica#V2:**Antigua & Barbuda#V3:**Belize#V4:**St. Kitts & Nevis#VP2E:**Anguilla#VP2M:**Montserrat#VP2V:**British Virgin Islands#VP5:**Turks and Caicos#VP9:**Bermuda#YN:**Nicaragua#YS:**El Salvador#YV0:**Aves Island#ZF:**Cayman Islands#6Y:**Jamaica#8P:**Barbados#9Y:**Trinidad & Tobago","itu_zone_number":11,"itu_zone_name_loc":[21,-75]},"geometry":{"type":"Polygon","coordinates":[[[-92.2371,14.53839],[-92.18997,6.011],[-78.74091,6.0945],[-77.89316,7.22534],[-77.81809,7.45672],[-77.81383,7.45566],[-77.80958,7.4529],[-77.8069,7.45351],[-77.80526,7.46041],[-77.80361,7.46289],[-77.7926,7.47385],[-77.78332,7.46978],[-77.77953,7.46163],[-77.76098,7.45894],[-77.74208,7.45114],[-77.74705,7.44316],[-77.73692,7.4379],[-77.72246,7.43321],[-77.71145,7.44077],[-77.71142,7.44969],[-77.70177,7.45452],[-77.70037,7.46616],[-77.70602,7.46884],[-77.70403,7.49604],[-77.71029,7.5001],[-77.70237,7.50817],[-77.7057,7.51971],[-77.71591,7.53671],[-77.7268,7.56391],[-77.73083,7.56661],[-77.73888,7.58562],[-77.7387,7.60054],[-77.74598,7.60656],[-77.7519,7.6153],[-77.74038,7.63005],[-77.7426,7.64005],[-77.74893,7.65276],[-77.74188,7.65867],[-77.74522,7.66911],[-77.74169,7.67682],[-77.73445,7.68864],[-77.7277,7.68783],[-77.72781,7.6979],[-77.70898,7.69035],[-77.70114,7.69504],[-77.68684,7.68538],[-77.68163,7.67684],[-77.67642,7.67647],[-77.6715,7.66756],[-77.65754,7.66198],[-77.64609,7.6481],[-77.63676,7.61444],[-77.62194,7.57535],[-77.61124,7.56007],[-77.61153,7.54479],[-77.59258,7.5353],[-77.58463,7.51084],[-77.57599,7.5136],[-77.5646,7.50547],[-77.53255,7.54706],[-77.5266,7.55814],[-77.52477,7.57602],[-77.50097,7.56668],[-77.48815,7.56959],[-77.49444,7.58834],[-77.48151,7.60846],[-77.46445,7.6347],[-77.46937,7.65413],[-77.44099,7.65723],[-77.43733,7.68075],[-77.43206,7.69148],[-77.41719,7.70222],[-77.41627,7.71961],[-77.41278,7.72421],[-77.40654,7.72065],[-77.39681,7.73394],[-77.39384,7.76052],[-77.37793,7.75816],[-77.37713,7.77076],[-77.35985,7.76568],[-77.34668,7.76196],[-77.33728,7.76974],[-77.34847,7.77751],[-77.34318,7.78189],[-77.34202,7.78762],[-77.35754,7.8127],[-77.35569,7.82184],[-77.36344,7.8337],[-77.34161,7.84984],[-77.33928,7.8671],[-77.32438,7.88388],[-77.32321,7.89523],[-77.30677,7.89859],[-77.29444,7.90738],[-77.27525,7.90666],[-77.26156,7.9175],[-77.23773,7.91983],[-77.21528,7.91673],[-77.20886,7.923],[-77.1887,7.92246],[-77.17611,7.91785],[-77.16007,7.92956],[-77.18322,7.95523],[-77.16801,7.96602],[-77.16653,7.97273],[-77.1821,7.98633],[-77.19081,7.98769],[-77.19998,7.99993],[-77.21486,8.01149],[-77.21406,8.01931],[-77.2215,8.02713],[-77.23342,8.02305],[-77.22547,8.03528],[-77.22851,8.05704],[-77.22743,8.06724],[-77.21811,8.08152],[-77.22184,8.10158],[-77.2338,8.11619],[-77.23272,8.13013],[-77.22615,8.13591],[-77.2565,8.15564],[-77.24795,8.16091],[-77.24627,8.17434],[-77.25161,8.18886],[-77.2597,8.19388],[-77.25939,8.20799],[-77.26735,8.21377],[-77.28081,8.21684],[-77.27989,8.22423],[-77.28995,8.2425],[-77.28397,8.25321],[-77.28614,8.26162],[-77.29654,8.26324],[-77.30248,8.27063],[-77.29743,8.28618],[-77.30499,8.28893],[-77.31118,8.27129],[-77.3208,8.2754],[-77.33179,8.27271],[-77.33643,8.28683],[-77.35342,8.30366],[-77.35463,8.32185],[-77.34897,8.3346],[-77.34983,8.34668],[-77.3452,8.34857],[-77.34872,8.35936],[-77.35769,8.36442],[-77.36185,8.37763],[-77.35541,8.38774],[-77.35928,8.40193],[-77.37388,8.41202],[-77.37942,8.42541],[-77.38597,8.43109],[-77.38496,8.43744],[-77.3929,8.44811],[-77.39878,8.46218],[-77.40415,8.46657],[-77.40059,8.47708],[-77.41729,8.47841],[-77.43731,8.47093],[-77.44703,8.47228],[-77.44794,8.47667],[-77.44541,8.4797],[-77.44861,8.48716],[-77.44769,8.49462],[-77.45054,8.5014],[-77.45408,8.50546],[-77.45787,8.5097],[-77.44518,8.51461],[-77.43849,8.5298],[-77.43768,8.53937],[-77.43961,8.54215],[-77.43663,8.54761],[-77.44051,8.55647],[-77.43729,8.56061],[-77.43468,8.56364],[-77.42725,8.55785],[-77.42406,8.56378],[-77.41812,8.56767],[-77.40966,8.56731],[-77.41185,8.57154],[-77.4113,8.57644],[-77.41325,8.58143],[-77.41795,8.58371],[-77.41842,8.58692],[-77.41409,8.58931],[-77.40495,8.58424],[-77.39993,8.5863],[-77.39536,8.58393],[-77.3901,8.58496],[-77.39315,8.58974],[-77.39208,8.59383],[-77.39959,8.6003],[-77.40367,8.61152],[-77.40325,8.61513],[-77.40007,8.6167],[-77.40329,8.62597],[-77.40857,8.63524],[-77.41076,8.64078],[-77.40883,8.64496],[-77.39545,8.65149],[-77.3897,8.6499],[-77.38395,8.64356],[-77.3785,8.64225],[-77.37168,8.63755],[-77.3649,8.64105],[-77.36937,8.65332],[-77.3704,8.66286],[-77.36354,8.66664],[-77.36388,8.6709],[-77.35667,8.67584],[-74.55974,12.54661],[-70.4916,12.52683],[-68.76514,11.57026],[-67.47384,12.50658],[-61.76056,11.46168],[-61.79586,10.38444],[-62.08817,10.09876],[-62,10],[-57,10],[-57,43],[-67,43],[-78.12207,31.46898],[-79.30627,30.20248],[-79.41498,25.25532],[-80.00708,24.3994],[-80.97272,24.43788],[-82.55359,24.47636],[-85.93506,24.55327],[-86.04493,18.39623],[-87.84119,18.1876],[-87.85492,18.18499],[-87.86591,18.19543],[-87.89612,18.16673],[-87.98127,18.16933],[-88.00049,18.37016],[-88.05268,18.41447],[-88.31498,18.49133],[-88.33283,18.49133],[-88.35206,18.48481],[-88.36579,18.48742],[-88.37815,18.48091],[-88.40287,18.49393],[-88.44956,18.47439],[-88.45917,18.49002],[-88.4784,18.49654],[-88.52097,18.46007],[-88.53058,18.40926],[-88.54432,18.38971],[-88.55256,18.37537],[-88.54294,18.36234],[-88.60611,18.29195],[-88.59787,18.29064],[-88.60886,18.26717],[-88.60199,18.2463],[-88.6171,18.22674],[-88.63358,18.21761],[-88.64045,18.215],[-88.6583,18.20456],[-88.66654,18.20587],[-88.67066,18.19673],[-88.68439,18.19673],[-88.69675,18.18369],[-88.68439,18.17716],[-88.68165,18.1589],[-88.71872,18.108],[-88.71186,18.09495],[-88.71598,18.06231],[-88.76954,18.03358],[-88.77091,18.00877],[-88.78739,17.9944],[-88.7819,17.98265],[-88.81897,17.9513],[-88.85468,17.93039],[-88.85331,17.89642],[-88.88077,17.90034],[-88.88764,17.90818],[-88.91922,17.92124],[-88.94532,17.95913],[-88.98926,17.9526],[-89.00162,17.98526],[-89.03733,18.00355],[-89.05518,17.99963],[-89.06067,17.98787],[-89.0799,17.99179],[-89.09775,17.98265],[-89.10737,17.98526],[-89.11286,17.97481],[-89.12247,17.9735],[-89.12522,17.97742],[-89.13208,17.9722],[-89.1362,17.95391],[-89.14444,17.94868],[-89.15268,17.93954],[-89.15268,17.81537],[-90.98809,17.81603],[-90.98809,17.2523],[-91.4399,17.25099],[-91.4296,17.2241],[-91.41861,17.20967],[-91.40419,17.20376],[-91.38566,17.20573],[-91.3733,17.20573],[-91.35407,17.19065],[-91.3472,17.17621],[-91.35132,17.16178],[-91.33896,17.16047],[-91.33004,17.18015],[-91.3218,17.18474],[-91.31218,17.18146],[-91.28197,17.17884],[-91.2806,17.18146],[-91.27579,17.17818],[-91.27099,17.17359],[-91.26275,17.16637],[-91.26206,17.1585],[-91.27236,17.14603],[-91.26755,17.10863],[-91.25519,17.10273],[-91.24283,17.10076],[-91.23391,17.1001],[-91.22635,17.09419],[-91.21743,17.07713],[-91.21605,17.06663],[-91.21537,17.0535],[-91.21056,17.05218],[-91.20163,17.04234],[-91.19408,17.03971],[-91.17829,17.01804],[-91.15494,17.00491],[-91.14808,17.00491],[-91.13572,17.00688],[-91.12748,17.00623],[-91.12198,17.00097],[-91.1213,16.99178],[-91.12336,16.98259],[-91.11924,16.97668],[-91.11718,16.97536],[-91.1055,16.97077],[-91.09932,16.96289],[-91.09658,16.95369],[-91.07872,16.94252],[-91.06911,16.92873],[-91.06431,16.92545],[-91.06636,16.92216],[-91.07529,16.91231],[-91.05744,16.89917],[-91.01075,16.88734],[-90.99564,16.87814],[-90.99015,16.86369],[-90.98328,16.86763],[-90.98465,16.88208],[-90.98603,16.8926],[-90.98053,16.89917],[-90.97435,16.90245],[-90.95787,16.89917],[-90.95376,16.88668],[-90.95993,16.87749],[-90.97023,16.87223],[-90.97641,16.86566],[-90.97023,16.86106],[-90.95925,16.86369],[-90.95307,16.86566],[-90.93453,16.85974],[-90.93247,16.85186],[-90.93453,16.84331],[-90.92629,16.83411],[-90.92354,16.82426],[-90.91805,16.82031],[-90.90088,16.82426],[-90.8844,16.82557],[-90.8638,16.8144],[-90.85831,16.80585],[-90.85694,16.79796],[-90.83222,16.79599],[-90.80544,16.79862],[-90.80132,16.79402],[-90.80407,16.78547],[-90.80407,16.7789],[-90.80063,16.7743],[-90.79239,16.77101],[-90.76149,16.76181],[-90.75737,16.75655],[-90.75806,16.75129],[-90.72167,16.72959],[-90.71686,16.72893],[-90.71068,16.72367],[-90.70725,16.71512],[-90.71,16.7092],[-90.70725,16.70262],[-90.70244,16.70065],[-90.69077,16.69407],[-90.68253,16.68881],[-90.67978,16.67632],[-90.67635,16.66053],[-90.66674,16.65066],[-90.65781,16.63816],[-90.66193,16.63158],[-90.66193,16.62105],[-90.65575,16.60921],[-90.65644,16.60461],[-90.65369,16.59539],[-90.66742,16.58947],[-90.66811,16.58157],[-90.66124,16.57763],[-90.64957,16.57763],[-90.6427,16.58157],[-90.64133,16.58881],[-90.64339,16.59605],[-90.6379,16.59408],[-90.63241,16.5875],[-90.62623,16.57697],[-90.64202,16.56775],[-90.6482,16.55854],[-90.64682,16.5513],[-90.64957,16.54472],[-90.64408,16.5355],[-90.64614,16.52036],[-90.64408,16.51641],[-90.63996,16.51444],[-90.63309,16.51444],[-90.62005,16.52234],[-90.61181,16.51839],[-90.60769,16.50851],[-90.60837,16.49798],[-90.61661,16.49074],[-90.62279,16.48876],[-90.63172,16.49008],[-90.63584,16.48679],[-90.63584,16.48218],[-90.62897,16.47888],[-90.61867,16.47954],[-90.61593,16.48613],[-90.61318,16.49008],[-90.60494,16.48744],[-90.59807,16.49139],[-90.59327,16.48876],[-90.59533,16.47954],[-90.59258,16.47098],[-90.58777,16.46967],[-90.56992,16.47493],[-90.55893,16.47954],[-90.54451,16.48086],[-90.54795,16.47427],[-90.54657,16.46703],[-90.52872,16.45913],[-90.52392,16.46045],[-90.5246,16.46835],[-90.51568,16.47098],[-90.50332,16.46769],[-90.4992,16.46374],[-90.49851,16.45584],[-90.4937,16.45386],[-90.48958,16.45979],[-90.48134,16.46176],[-90.4786,16.45649],[-90.48066,16.45189],[-90.47928,16.44398],[-90.48134,16.43674],[-90.4889,16.42884],[-90.48546,16.42357],[-90.47791,16.42554],[-90.46967,16.42423],[-90.46074,16.42159],[-90.42504,16.42554],[-90.41886,16.42488],[-90.41199,16.4071],[-90.40787,16.40447],[-90.40169,16.40908],[-90.39963,16.41566],[-90.38933,16.41303],[-90.38865,16.4071],[-90.39139,16.40381],[-90.40169,16.39986],[-90.40444,16.39524],[-90.40238,16.39063],[-90.38521,16.3768],[-90.37354,16.37482],[-90.37148,16.36758],[-90.37491,16.36099],[-90.38453,16.36165],[-90.3859,16.36889],[-90.39277,16.37416],[-90.39895,16.37285],[-90.41337,16.36099],[-90.41405,16.3511],[-90.41062,16.34649],[-90.40787,16.34649],[-90.40719,16.34979],[-90.40925,16.35506],[-90.40787,16.35967],[-90.40581,16.36165],[-90.40238,16.35901],[-90.40307,16.35242],[-90.39963,16.34979],[-90.38659,16.34649],[-90.38315,16.3432],[-90.38384,16.33793],[-90.38659,16.33529],[-90.39071,16.33661],[-90.39551,16.33859],[-90.40169,16.33859],[-90.40444,16.33134],[-90.41199,16.32936],[-90.41337,16.32409],[-90.41062,16.31355],[-90.4168,16.30498],[-90.42641,16.3063],[-90.4374,16.303],[-90.44014,16.29575],[-90.43396,16.2918],[-90.43877,16.2885],[-90.4422,16.28191],[-90.43877,16.27598],[-90.43259,16.27466],[-90.42435,16.26148],[-90.4271,16.25489],[-90.43465,16.25554],[-90.44152,16.26214],[-90.44907,16.2595],[-90.45594,16.24895],[-90.45456,16.24302],[-90.44838,16.24236],[-90.44358,16.24632],[-90.44014,16.24632],[-90.43877,16.23972],[-90.43122,16.23577],[-90.42984,16.23181],[-90.44014,16.23181],[-90.45182,16.22588],[-90.458,16.21533],[-90.458,16.20742],[-90.45525,16.19489],[-90.45525,16.1883],[-90.4477,16.1817],[-90.43671,16.18038],[-90.4271,16.17181],[-90.42641,16.16455],[-90.43808,16.1573],[-90.44701,16.15598],[-90.4525,16.15004],[-90.44838,16.14411],[-90.43877,16.14279],[-90.43396,16.14147],[-90.42984,16.13949],[-90.4319,16.1296],[-90.42984,16.11904],[-90.43877,16.11838],[-90.45044,16.12564],[-90.45662,16.12168],[-90.45662,16.1164],[-90.45937,16.10717],[-90.45662,16.10255],[-90.45868,16.09463],[-90.45319,16.09331],[-90.44564,16.09529],[-90.44426,16.10189],[-90.4319,16.10717],[-90.42641,16.10321],[-90.42778,16.09727],[-90.43534,16.09859],[-90.43671,16.09661],[-90.44014,16.09265],[-90.44014,16.09134],[-90.44632,16.08408],[-90.44632,16.08012],[-90.44358,16.07748],[-90.4422,16.07484],[-91.73172,16.07418],[-92.211,15.26166],[-92.05925,15.07079],[-92.06543,15.06947],[-92.07367,15.05886],[-92.06955,15.05753],[-92.0723,15.0509],[-92.0723,15.04825],[-92.07917,15.0456],[-92.07779,15.03499],[-92.07917,15.03101],[-92.08741,15.02305],[-92.09427,15.02172],[-92.09839,15.00979],[-92.12311,15.01642],[-92.1341,15.01376],[-92.13685,15.00581],[-92.15058,14.98856],[-92.14783,14.97928],[-92.14646,14.96866],[-92.1492,14.95009],[-92.14234,14.9408],[-92.1492,14.93151],[-92.14234,14.91559],[-92.14234,14.91426],[-92.14509,14.91028],[-92.13685,14.89568],[-92.13685,14.88639],[-92.14097,14.88241],[-92.1492,14.87046],[-92.16706,14.85985],[-92.17392,14.86117],[-92.17392,14.85454],[-92.18354,14.84923],[-92.18079,14.83728],[-92.18491,14.82931],[-92.17804,14.81737],[-92.17667,14.80409],[-92.1698,14.78683],[-92.17118,14.78152],[-92.16156,14.77488],[-92.16156,14.76293],[-92.17255,14.75496],[-92.17118,14.74832],[-92.16294,14.73637],[-92.15882,14.73902],[-92.14646,14.71644],[-92.14783,14.69785],[-92.14783,14.66065],[-92.15882,14.65135],[-92.16019,14.63939],[-92.16843,14.63939],[-92.17942,14.61547],[-92.17392,14.61016],[-92.18491,14.57959],[-92.19452,14.57029],[-92.20551,14.56231],[-92.2165,14.55567],[-92.22336,14.53706],[-92.2371,14.53839]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!:CP:**Bolivia, north of 16.5º S#FY:**French Guyana#HC:**Ecuador#HC8:**Galapagos Islands#HK:**Colombia#HK0:**Malpelo Island#OA:**Peru#PY:**Brazil, west of 60º W#PZ:**Surinam#TI9:**Cocos Island#YV:**Venezuela#8R:**Guyana","itu_zone_number":12,"itu_zone_name_loc":[-3,-72]},"geometry":{"type":"Polygon","coordinates":[[[-92.18997,6.011],[-78.74091,6.0945],[-77.89316,7.22534],[-77.81809,7.45672],[-77.81383,7.45566],[-77.80958,7.4529],[-77.8069,7.45351],[-77.80526,7.46041],[-77.80361,7.46289],[-77.7926,7.47385],[-77.78332,7.46978],[-77.77953,7.46163],[-77.76098,7.45894],[-77.74208,7.45114],[-77.74705,7.44316],[-77.73692,7.4379],[-77.72246,7.43321],[-77.71145,7.44077],[-77.71142,7.44969],[-77.70177,7.45452],[-77.70037,7.46616],[-77.70602,7.46884],[-77.70403,7.49604],[-77.71029,7.5001],[-77.70237,7.50817],[-77.7057,7.51971],[-77.71591,7.53671],[-77.7268,7.56391],[-77.73083,7.56661],[-77.73888,7.58562],[-77.7387,7.60054],[-77.74598,7.60656],[-77.7519,7.6153],[-77.74038,7.63005],[-77.7426,7.64005],[-77.74893,7.65276],[-77.74188,7.65867],[-77.74522,7.66911],[-77.74169,7.67682],[-77.73445,7.68864],[-77.7277,7.68783],[-77.72781,7.6979],[-77.70898,7.69035],[-77.70114,7.69504],[-77.68684,7.68538],[-77.68163,7.67684],[-77.67642,7.67647],[-77.6715,7.66756],[-77.65754,7.66198],[-77.64609,7.6481],[-77.63676,7.61444],[-77.62194,7.57535],[-77.61124,7.56007],[-77.61153,7.54479],[-77.59258,7.5353],[-77.58463,7.51084],[-77.57599,7.5136],[-77.5646,7.50547],[-77.53255,7.54706],[-77.5266,7.55814],[-77.52477,7.57602],[-77.50097,7.56668],[-77.48815,7.56959],[-77.49444,7.58834],[-77.48151,7.60846],[-77.46445,7.6347],[-77.46937,7.65413],[-77.44099,7.65723],[-77.43733,7.68075],[-77.43206,7.69148],[-77.41719,7.70222],[-77.41627,7.71961],[-77.41278,7.72421],[-77.40654,7.72065],[-77.39681,7.73394],[-77.39384,7.76052],[-77.37793,7.75816],[-77.37713,7.77076],[-77.35985,7.76568],[-77.34668,7.76196],[-77.33728,7.76974],[-77.34847,7.77751],[-77.34318,7.78189],[-77.34202,7.78762],[-77.35754,7.8127],[-77.35569,7.82184],[-77.36344,7.8337],[-77.34161,7.84984],[-77.33928,7.8671],[-77.32438,7.88388],[-77.32321,7.89523],[-77.30677,7.89859],[-77.29444,7.90738],[-77.27525,7.90666],[-77.26156,7.9175],[-77.23773,7.91983],[-77.21528,7.91673],[-77.20886,7.923],[-77.1887,7.92246],[-77.17611,7.91785],[-77.16007,7.92956],[-77.18322,7.95523],[-77.16801,7.96602],[-77.16653,7.97273],[-77.1821,7.98633],[-77.19081,7.98769],[-77.19998,7.99993],[-77.21486,8.01149],[-77.21406,8.01931],[-77.2215,8.02713],[-77.23342,8.02305],[-77.22547,8.03528],[-77.22851,8.05704],[-77.22743,8.06724],[-77.21811,8.08152],[-77.22184,8.10158],[-77.2338,8.11619],[-77.23272,8.13013],[-77.22615,8.13591],[-77.2565,8.15564],[-77.24795,8.16091],[-77.24627,8.17434],[-77.25161,8.18886],[-77.2597,8.19388],[-77.25939,8.20799],[-77.26735,8.21377],[-77.28081,8.21684],[-77.27989,8.22423],[-77.28995,8.2425],[-77.28397,8.25321],[-77.28614,8.26162],[-77.29654,8.26324],[-77.30248,8.27063],[-77.29743,8.28618],[-77.30499,8.28893],[-77.31118,8.27129],[-77.3208,8.2754],[-77.33179,8.27271],[-77.33643,8.28683],[-77.35342,8.30366],[-77.35463,8.32185],[-77.34897,8.3346],[-77.34983,8.34668],[-77.3452,8.34857],[-77.34872,8.35936],[-77.35769,8.36442],[-77.36185,8.37763],[-77.35541,8.38774],[-77.35928,8.40193],[-77.37388,8.41202],[-77.37942,8.42541],[-77.38597,8.43109],[-77.38496,8.43744],[-77.3929,8.44811],[-77.39878,8.46218],[-77.40415,8.46657],[-77.40059,8.47708],[-77.41729,8.47841],[-77.43731,8.47093],[-77.44703,8.47228],[-77.44794,8.47667],[-77.44541,8.4797],[-77.44861,8.48716],[-77.44769,8.49462],[-77.45054,8.5014],[-77.45408,8.50546],[-77.45787,8.5097],[-77.44518,8.51461],[-77.43849,8.5298],[-77.43768,8.53937],[-77.43961,8.54215],[-77.43663,8.54761],[-77.44051,8.55647],[-77.43729,8.56061],[-77.43468,8.56364],[-77.42725,8.55785],[-77.42406,8.56378],[-77.41812,8.56767],[-77.40966,8.56731],[-77.41185,8.57154],[-77.4113,8.57644],[-77.41325,8.58143],[-77.41795,8.58371],[-77.41842,8.58692],[-77.41409,8.58931],[-77.40495,8.58424],[-77.39993,8.5863],[-77.39536,8.58393],[-77.3901,8.58496],[-77.39315,8.58974],[-77.39208,8.59383],[-77.39959,8.6003],[-77.40367,8.61152],[-77.40325,8.61513],[-77.40007,8.6167],[-77.40329,8.62597],[-77.40857,8.63524],[-77.41076,8.64078],[-77.40883,8.64496],[-77.39545,8.65149],[-77.3897,8.6499],[-77.38395,8.64356],[-77.3785,8.64225],[-77.37168,8.63755],[-77.3649,8.64105],[-77.36937,8.65332],[-77.3704,8.66286],[-77.36354,8.66664],[-77.36388,8.6709],[-77.35667,8.67584],[-74.55974,12.54661],[-70.4916,12.52683],[-68.76514,11.57026],[-67.47384,12.50658],[-61.76056,11.46168],[-61.79586,10.38444],[-62.08817,10.09876],[-62,10],[-60,10],[-51.62045,7],[-51.62045,4.22076],[-51.61955,4.15839],[-51.66261,4.05219],[-51.74961,3.98434],[-51.80366,3.87266],[-51.91174,3.79726],[-51.9649,3.69994],[-52.22146,3.25586],[-52.31121,3.20415],[-52.34603,3.0592],[-52.55849,2.54973],[-52.63184,2.40864],[-52.82604,2.28675],[-52.94334,2.16486],[-53.09059,2.20387],[-53.25982,2.1825],[-53.31264,2.35933],[-53.51376,2.25622],[-53.75884,2.37267],[-54.11715,2.10607],[-54.6073,2.31152],[-54.69001,2.34092],[-54.69582,2.43618],[-54.75639,2.47558],[-54.86092,2.41619],[-54.95446,2.55985],[-54.93814,2.62669],[-55.09691,2.53095],[-55.14582,2.55594],[-55.24142,2.50136],[-55.31506,2.5236],[-55.35794,2.42541],[-55.49971,2.44795],[-55.71182,2.39424],[-55.94591,2.53261],[-56.18,2.2868],[-55.89055,1.99647],[-55.93259,1.87326],[-55.99661,1.83789],[-56.05642,1.85807],[-56.08221,1.84894],[-56.11349,1.85628],[-56.13103,1.86156],[-56.15682,1.89429],[-56.17544,1.90486],[-56.1865,1.89003],[-56.23602,1.9054],[-56.24441,1.8785],[-56.32849,1.93311],[-56.36186,1.9351],[-56.40074,1.92062],[-56.42862,1.94457],[-56.45377,1.95204],[-56.48104,1.94847],[-56.50282,1.93117],[-56.57954,1.90152],[-56.60141,1.92787],[-56.62329,1.94049],[-56.66361,1.90466],[-56.72591,1.92374],[-56.79557,1.84933],[-56.80005,1.8669],[-56.82376,1.88447],[-56.85744,1.88941],[-56.90211,1.89984],[-56.90797,1.91878],[-56.92206,1.92674],[-56.97295,1.91877],[-56.97715,1.90257],[-57.00606,1.90834],[-57.04871,1.93606],[-57.07004,1.9561],[-57.07763,2.00084],[-57.09831,2.01346],[-57.1376,2.0044],[-57.1696,1.97516],[-57.19886,1.96789],[-57.21988,1.95718],[-57.24914,1.93],[-57.28664,1.97419],[-57.32964,1.97995],[-57.3576,1.95305],[-57.38281,1.9179],[-57.40803,1.90884],[-57.43325,1.89154],[-57.46121,1.82483],[-57.49192,1.78282],[-57.53087,1.70375],[-57.55883,1.68508],[-57.59676,1.68831],[-57.63882,1.67918],[-57.74421,1.70827],[-57.78814,1.70409],[-57.79964,1.69703],[-57.80565,1.68037],[-57.83277,1.66489],[-57.87463,1.65926],[-57.93573,1.62892],[-57.96625,1.64442],[-57.98509,1.651],[-57.99065,1.64056],[-57.98523,1.58482],[-58.00116,1.54473],[-58.0028,1.51259],[-58.01687,1.50428],[-58.03643,1.50009],[-58.07624,1.50407],[-58.1325,1.4983],[-58.14571,1.50547],[-58.14657,1.52362],[-58.15102,1.55169],[-58.1875,1.55425],[-58.2226,1.54994],[-58.24672,1.5573],[-58.26534,1.56741],[-58.29572,1.56223],[-58.31228,1.59052],[-58.32061,1.59548],[-58.33176,1.58996],[-58.33742,1.56109],[-58.3575,1.54664],[-58.37964,1.54317],[-58.38846,1.52105],[-58.37742,1.49283],[-58.38973,1.46667],[-58.42813,1.4556],[-58.47889,1.46033],[-58.49051,1.45819],[-58.49801,1.45056],[-58.50399,1.43971],[-58.5086,1.42886],[-58.50451,1.40753],[-58.49425,1.39237],[-58.47098,1.35657],[-58.46563,1.32341],[-58.47676,1.2978],[-58.49476,1.27219],[-58.5032,1.26338],[-58.51234,1.27037],[-58.52168,1.26717],[-58.5184,1.25392],[-58.52499,1.25047],[-58.53021,1.26487],[-58.53997,1.26345],[-58.54149,1.28229],[-58.55056,1.2874],[-58.55779,1.2821],[-58.56777,1.28985],[-58.57259,1.28283],[-58.57948,1.27856],[-58.57814,1.26967],[-58.58711,1.25804],[-58.59281,1.26717],[-58.60607,1.27013],[-58.62036,1.27995],[-58.6319,1.28084],[-58.64121,1.27848],[-58.65464,1.28023],[-58.67292,1.27379],[-58.68077,1.28129],[-58.6845,1.29291],[-58.7002,1.29145],[-58.71225,1.28453],[-58.71882,1.26389],[-58.72401,1.24256],[-58.71958,1.23085],[-58.74034,1.19633],[-58.75274,1.20521],[-58.76377,1.19349],[-58.77479,1.17902],[-58.78445,1.18378],[-58.79822,1.18168],[-58.80101,1.1727],[-58.80791,1.17609],[-58.82444,1.16437],[-58.8294,1.16895],[-58.82708,1.17605],[-58.82888,1.18315],[-58.85668,1.17447],[-58.85615,1.18523],[-58.86001,1.18649],[-58.86112,1.19874],[-58.87107,1.19967],[-58.87226,1.20974],[-58.87757,1.21982],[-58.88847,1.22417],[-58.90074,1.22303],[-58.91155,1.23173],[-58.90484,1.23769],[-58.90364,1.24639],[-58.89213,1.25029],[-58.89161,1.25556],[-58.89897,1.27193],[-58.91501,1.27532],[-58.92557,1.28419],[-58.91439,1.30262],[-58.92108,1.31007],[-58.95797,1.30963],[-58.97023,1.30735],[-58.9825,1.29409],[-58.98987,1.31492],[-58.99586,1.31929],[-59.0125,1.31661],[-59.02639,1.32355],[-59.04783,1.31744],[-59.0661,1.33086],[-59.07614,1.32506],[-59.09568,1.33825],[-59.10619,1.34196],[-59.11807,1.33743],[-59.13223,1.34484],[-59.15093,1.3432],[-59.16053,1.35185],[-59.17699,1.35364],[-59.18247,1.36298],[-59.1907,1.3682],[-59.19893,1.37149],[-59.21265,1.36655],[-59.22775,1.36903],[-59.23391,1.37768],[-59.24661,1.38063],[-59.27991,1.40418],[-59.27566,1.41285],[-59.28927,1.438],[-59.28572,1.4453],[-59.30688,1.46221],[-59.31363,1.46172],[-59.31626,1.45574],[-59.32701,1.45338],[-59.32964,1.46799],[-59.32129,1.47711],[-59.32941,1.49241],[-59.32867,1.5028],[-59.33342,1.51045],[-59.35424,1.51329],[-59.36081,1.51022],[-59.3619,1.50167],[-59.3833,1.50103],[-59.37807,1.50851],[-59.38507,1.515],[-59.38384,1.52424],[-59.39372,1.52898],[-59.39811,1.53784],[-59.3937,1.54995],[-59.40385,1.55257],[-59.41538,1.54695],[-59.42882,1.55769],[-59.43058,1.56842],[-59.42823,1.57778],[-59.44236,1.59675],[-59.44825,1.61572],[-59.46465,1.61248],[-59.48518,1.62296],[-59.49441,1.63816],[-59.49353,1.66017],[-59.49953,1.67257],[-59.50441,1.67139],[-59.51066,1.66472],[-59.51417,1.67727],[-59.52593,1.6857],[-59.53363,1.70394],[-59.5331,1.71668],[-59.54321,1.71502],[-59.55195,1.72158],[-59.57629,1.73335],[-59.60475,1.7204],[-59.61536,1.71295],[-59.62735,1.72174],[-59.63523,1.73878],[-59.65135,1.73934],[-59.66198,1.73441],[-59.66881,1.75063],[-59.69075,1.7545],[-59.69217,1.75872],[-59.68466,1.76843],[-59.6854,1.78397],[-59.67858,1.79265],[-59.67829,1.80184],[-59.67388,1.80623],[-59.665,1.80924],[-59.65715,1.80814],[-59.6566,1.81218],[-59.65948,1.81829],[-59.65015,1.83736],[-59.65093,1.84785],[-59.6575,1.85378],[-59.66158,1.86235],[-59.66565,1.86475],[-59.66839,1.85904],[-59.66701,1.84373],[-59.67044,1.83643],[-59.67678,1.83416],[-59.69137,1.84561],[-59.70115,1.84917],[-59.70887,1.85032],[-59.71663,1.84807],[-59.72302,1.84856],[-59.73512,1.84509],[-59.74489,1.84775],[-59.75226,1.85898],[-59.75003,1.87022],[-59.74523,1.87535],[-59.7528,1.88734],[-59.75693,1.89728],[-59.75351,1.90652],[-59.75232,1.91749],[-59.74427,1.92639],[-59.7448,1.9353],[-59.73778,1.94969],[-59.73982,1.95679],[-59.73568,1.96319],[-59.7377,1.96915],[-59.73595,1.97716],[-59.73077,1.98174],[-59.73344,1.98644],[-59.73337,2.00281],[-59.73107,2.00768],[-59.73472,2.01424],[-59.73289,2.0201],[-59.72372,2.02258],[-59.72142,2.02711],[-59.73153,2.03333],[-59.73273,2.04642],[-59.73701,2.05058],[-59.73709,2.0561],[-59.74057,2.06675],[-59.74404,2.0719],[-59.73407,2.09053],[-59.72273,2.09886],[-59.72323,2.12147],[-59.72923,2.12177],[-59.72407,2.13302],[-59.72801,2.13453],[-59.73032,2.1418],[-59.73813,2.14907],[-59.73796,2.15847],[-59.7419,2.16512],[-59.7382,2.17561],[-59.73863,2.18198],[-59.73467,2.18237],[-59.73638,2.18933],[-59.72605,2.20325],[-59.72832,2.21649],[-59.73196,2.22286],[-59.73101,2.23217],[-59.7195,2.23639],[-59.72185,2.24644],[-59.72009,2.25033],[-59.72519,2.25421],[-59.72824,2.26427],[-59.72188,2.27501],[-59.73807,2.29047],[-59.75303,2.28723],[-59.76937,2.29359],[-59.77978,2.28404],[-59.79666,2.29453],[-59.80259,2.29921],[-59.80304,2.30527],[-59.8139,2.3155],[-59.82476,2.32024],[-59.83002,2.32835],[-59.84227,2.31962],[-59.84565,2.33034],[-59.85453,2.33146],[-59.85295,2.33869],[-59.86764,2.34766],[-59.87368,2.36148],[-59.88109,2.35198],[-59.89674,2.36031],[-59.91016,2.3912],[-59.89764,2.40184],[-59.89748,2.41248],[-59.89757,2.4226],[-59.88943,2.42861],[-59.89923,2.44062],[-59.89273,2.46328],[-59.89853,2.47305],[-59.89608,2.47871],[-59.91081,2.49398],[-59.91867,2.50924],[-59.91714,2.52503],[-59.93742,2.55249],[-59.92856,2.56624],[-59.93822,2.58308],[-59.9685,2.59306],[-59.97163,2.60008],[-59.96377,2.60985],[-59.95631,2.60743],[-59.96258,2.6153],[-59.95924,2.62179],[-59.96903,2.62999],[-59.97607,2.64229],[-59.96855,2.66135],[-59.97577,2.67224],[-59.98437,2.67628],[-59.9905,2.68633],[-60,-16.5],[-69.01446,-16.5],[-69.04358,-16.58356],[-68.99964,-16.6362],[-68.99689,-16.65988],[-69.04084,-16.68619],[-69.05457,-16.69145],[-69.12049,-16.71513],[-69.13697,-16.7125],[-69.17267,-16.72565],[-69.18366,-16.74932],[-69.17542,-16.77036],[-69.18915,-16.79666],[-69.21662,-16.82821],[-69.32648,-16.94648],[-69.32099,-16.96487],[-69.34021,-16.98851],[-69.36768,-16.99113],[-69.3924,-17.02265],[-69.37043,-17.05154],[-69.37592,-17.07254],[-69.40888,-17.0988],[-69.4336,-17.1093],[-69.45557,-17.09617],[-69.51874,-17.14867],[-69.55994,-17.16704],[-69.57367,-17.18541],[-69.57367,-17.19853],[-69.58466,-17.2064],[-69.60389,-17.21427],[-69.61487,-17.25624],[-69.62311,-17.27198],[-69.63685,-17.26936],[-69.64509,-17.27985],[-69.63959,-17.28771],[-69.57642,-17.29296],[-69.51874,-17.32967],[-69.47205,-17.36899],[-69.4693,-17.49739],[-69.54896,-17.57334],[-69.6698,-17.66235],[-69.79615,-17.64403],[-69.82361,-17.7016],[-69.82911,-17.74084],[-69.80439,-17.75654],[-69.79889,-17.86637],[-69.77967,-17.91341],[-69.7522,-17.94739],[-69.75769,-17.98919],[-69.82087,-18.11714],[-69.85932,-18.17195],[-69.90601,-18.20327],[-69.96918,-18.26327],[-69.98017,-18.26587],[-70.05158,-18.27109],[-70.15046,-18.31803],[-70.20264,-18.32064],[-70.30152,-18.3076],[-70.34821,-18.32064],[-70.37842,-18.34932],[-77.10206,-18.33367],[-92.02149,-5.96576],[-92.18997,6.011]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:PY:**Brazil, north of 16.5º S and east of 60º W#PY0:**Fernando de Noronha#PY0:**St. Peter & St. Paul Rocks","itu_zone_number":13,"itu_zone_name_loc":[-5,-45]},"geometry":{"type":"Polygon","coordinates":[[[-28,7],[-51.62045,7],[-51.62045,4.22076],[-51.61955,4.15839],[-51.66261,4.05219],[-51.74961,3.98434],[-51.80366,3.87266],[-51.91174,3.79726],[-51.9649,3.69994],[-52.22146,3.25586],[-52.31121,3.20415],[-52.34603,3.0592],[-52.55849,2.54973],[-52.63184,2.40864],[-52.82604,2.28675],[-52.94334,2.16486],[-53.09059,2.20387],[-53.25982,2.1825],[-53.31264,2.35933],[-53.51376,2.25622],[-53.75884,2.37267],[-54.11715,2.10607],[-54.6073,2.31152],[-54.69001,2.34092],[-54.69582,2.43618],[-54.75639,2.47558],[-54.86092,2.41619],[-54.95446,2.55985],[-54.93814,2.62669],[-55.09691,2.53095],[-55.14582,2.55594],[-55.24142,2.50136],[-55.31506,2.5236],[-55.35794,2.42541],[-55.49971,2.44795],[-55.71182,2.39424],[-55.94591,2.53261],[-56.18,2.2868],[-55.89055,1.99647],[-55.93259,1.87326],[-55.99661,1.83789],[-56.05642,1.85807],[-56.08221,1.84894],[-56.11349,1.85628],[-56.13103,1.86156],[-56.15682,1.89429],[-56.17544,1.90486],[-56.1865,1.89003],[-56.23602,1.9054],[-56.24441,1.8785],[-56.32849,1.93311],[-56.36186,1.9351],[-56.40074,1.92062],[-56.42862,1.94457],[-56.45377,1.95204],[-56.48104,1.94847],[-56.50282,1.93117],[-56.57954,1.90152],[-56.60141,1.92787],[-56.62329,1.94049],[-56.66361,1.90466],[-56.72591,1.92374],[-56.79557,1.84933],[-56.80005,1.8669],[-56.82376,1.88447],[-56.85744,1.88941],[-56.90211,1.89984],[-56.90797,1.91878],[-56.92206,1.92674],[-56.97295,1.91877],[-56.97715,1.90257],[-57.00606,1.90834],[-57.04871,1.93606],[-57.07004,1.9561],[-57.07763,2.00084],[-57.09831,2.01346],[-57.1376,2.0044],[-57.1696,1.97516],[-57.19886,1.96789],[-57.21988,1.95718],[-57.24914,1.93],[-57.28664,1.97419],[-57.32964,1.97995],[-57.3576,1.95305],[-57.38281,1.9179],[-57.40803,1.90884],[-57.43325,1.89154],[-57.46121,1.82483],[-57.49192,1.78282],[-57.53087,1.70375],[-57.55883,1.68508],[-57.59676,1.68831],[-57.63882,1.67918],[-57.74421,1.70827],[-57.78814,1.70409],[-57.79964,1.69703],[-57.80565,1.68037],[-57.83277,1.66489],[-57.87463,1.65926],[-57.93573,1.62892],[-57.96625,1.64442],[-57.98509,1.651],[-57.99065,1.64056],[-57.98523,1.58482],[-58.00116,1.54473],[-58.0028,1.51259],[-58.01687,1.50428],[-58.03643,1.50009],[-58.07624,1.50407],[-58.1325,1.4983],[-58.14571,1.50547],[-58.14657,1.52362],[-58.15102,1.55169],[-58.1875,1.55425],[-58.2226,1.54994],[-58.24672,1.5573],[-58.26534,1.56741],[-58.29572,1.56223],[-58.31228,1.59052],[-58.32061,1.59548],[-58.33176,1.58996],[-58.33742,1.56109],[-58.3575,1.54664],[-58.37964,1.54317],[-58.38846,1.52105],[-58.37742,1.49283],[-58.38973,1.46667],[-58.42813,1.4556],[-58.47889,1.46033],[-58.49051,1.45819],[-58.49801,1.45056],[-58.50399,1.43971],[-58.5086,1.42886],[-58.50451,1.40753],[-58.49425,1.39237],[-58.47098,1.35657],[-58.46563,1.32341],[-58.47676,1.2978],[-58.49476,1.27219],[-58.5032,1.26338],[-58.51234,1.27037],[-58.52168,1.26717],[-58.5184,1.25392],[-58.52499,1.25047],[-58.53021,1.26487],[-58.53997,1.26345],[-58.54149,1.28229],[-58.55056,1.2874],[-58.55779,1.2821],[-58.56777,1.28985],[-58.57259,1.28283],[-58.57948,1.27856],[-58.57814,1.26967],[-58.58711,1.25804],[-58.59281,1.26717],[-58.60607,1.27013],[-58.62036,1.27995],[-58.6319,1.28084],[-58.64121,1.27848],[-58.65464,1.28023],[-58.67292,1.27379],[-58.68077,1.28129],[-58.6845,1.29291],[-58.7002,1.29145],[-58.71225,1.28453],[-58.71882,1.26389],[-58.72401,1.24256],[-58.71958,1.23085],[-58.74034,1.19633],[-58.75274,1.20521],[-58.76377,1.19349],[-58.77479,1.17902],[-58.78445,1.18378],[-58.79822,1.18168],[-58.80101,1.1727],[-58.80791,1.17609],[-58.82444,1.16437],[-58.8294,1.16895],[-58.82708,1.17605],[-58.82888,1.18315],[-58.85668,1.17447],[-58.85615,1.18523],[-58.86001,1.18649],[-58.86112,1.19874],[-58.87107,1.19967],[-58.87226,1.20974],[-58.87757,1.21982],[-58.88847,1.22417],[-58.90074,1.22303],[-58.91155,1.23173],[-58.90484,1.23769],[-58.90364,1.24639],[-58.89213,1.25029],[-58.89161,1.25556],[-58.89897,1.27193],[-58.91501,1.27532],[-58.92557,1.28419],[-58.91439,1.30262],[-58.92108,1.31007],[-58.95797,1.30963],[-58.97023,1.30735],[-58.9825,1.29409],[-58.98987,1.31492],[-58.99586,1.31929],[-59.0125,1.31661],[-59.02639,1.32355],[-59.04783,1.31744],[-59.0661,1.33086],[-59.07614,1.32506],[-59.09568,1.33825],[-59.10619,1.34196],[-59.11807,1.33743],[-59.13223,1.34484],[-59.15093,1.3432],[-59.16053,1.35185],[-59.17699,1.35364],[-59.18247,1.36298],[-59.1907,1.3682],[-59.19893,1.37149],[-59.21265,1.36655],[-59.22775,1.36903],[-59.23391,1.37768],[-59.24661,1.38063],[-59.27991,1.40418],[-59.27566,1.41285],[-59.28927,1.438],[-59.28572,1.4453],[-59.30688,1.46221],[-59.31363,1.46172],[-59.31626,1.45574],[-59.32701,1.45338],[-59.32964,1.46799],[-59.32129,1.47711],[-59.32941,1.49241],[-59.32867,1.5028],[-59.33342,1.51045],[-59.35424,1.51329],[-59.36081,1.51022],[-59.3619,1.50167],[-59.3833,1.50103],[-59.37807,1.50851],[-59.38507,1.515],[-59.38384,1.52424],[-59.39372,1.52898],[-59.39811,1.53784],[-59.3937,1.54995],[-59.40385,1.55257],[-59.41538,1.54695],[-59.42882,1.55769],[-59.43058,1.56842],[-59.42823,1.57778],[-59.44236,1.59675],[-59.44825,1.61572],[-59.46465,1.61248],[-59.48518,1.62296],[-59.49441,1.63816],[-59.49353,1.66017],[-59.49953,1.67257],[-59.50441,1.67139],[-59.51066,1.66472],[-59.51417,1.67727],[-59.52593,1.6857],[-59.53363,1.70394],[-59.5331,1.71668],[-59.54321,1.71502],[-59.55195,1.72158],[-59.57629,1.73335],[-59.60475,1.7204],[-59.61536,1.71295],[-59.62735,1.72174],[-59.63523,1.73878],[-59.65135,1.73934],[-59.66198,1.73441],[-59.66881,1.75063],[-59.69075,1.7545],[-59.69217,1.75872],[-59.68466,1.76843],[-59.6854,1.78397],[-59.67858,1.79265],[-59.67829,1.80184],[-59.67388,1.80623],[-59.665,1.80924],[-59.65715,1.80814],[-59.6566,1.81218],[-59.65948,1.81829],[-59.65015,1.83736],[-59.65093,1.84785],[-59.6575,1.85378],[-59.66158,1.86235],[-59.66565,1.86475],[-59.66839,1.85904],[-59.66701,1.84373],[-59.67044,1.83643],[-59.67678,1.83416],[-59.69137,1.84561],[-59.70115,1.84917],[-59.70887,1.85032],[-59.71663,1.84807],[-59.72302,1.84856],[-59.73512,1.84509],[-59.74489,1.84775],[-59.75226,1.85898],[-59.75003,1.87022],[-59.74523,1.87535],[-59.7528,1.88734],[-59.75693,1.89728],[-59.75351,1.90652],[-59.75232,1.91749],[-59.74427,1.92639],[-59.7448,1.9353],[-59.73778,1.94969],[-59.73982,1.95679],[-59.73568,1.96319],[-59.7377,1.96915],[-59.73595,1.97716],[-59.73077,1.98174],[-59.73344,1.98644],[-59.73337,2.00281],[-59.73107,2.00768],[-59.73472,2.01424],[-59.73289,2.0201],[-59.72372,2.02258],[-59.72142,2.02711],[-59.73153,2.03333],[-59.73273,2.04642],[-59.73701,2.05058],[-59.73709,2.0561],[-59.74057,2.06675],[-59.74404,2.0719],[-59.73407,2.09053],[-59.72273,2.09886],[-59.72323,2.12147],[-59.72923,2.12177],[-59.72407,2.13302],[-59.72801,2.13453],[-59.73032,2.1418],[-59.73813,2.14907],[-59.73796,2.15847],[-59.7419,2.16512],[-59.7382,2.17561],[-59.73863,2.18198],[-59.73467,2.18237],[-59.73638,2.18933],[-59.72605,2.20325],[-59.72832,2.21649],[-59.73196,2.22286],[-59.73101,2.23217],[-59.7195,2.23639],[-59.72185,2.24644],[-59.72009,2.25033],[-59.72519,2.25421],[-59.72824,2.26427],[-59.72188,2.27501],[-59.73807,2.29047],[-59.75303,2.28723],[-59.76937,2.29359],[-59.77978,2.28404],[-59.79666,2.29453],[-59.80259,2.29921],[-59.80304,2.30527],[-59.8139,2.3155],[-59.82476,2.32024],[-59.83002,2.32835],[-59.84227,2.31962],[-59.84565,2.33034],[-59.85453,2.33146],[-59.85295,2.33869],[-59.86764,2.34766],[-59.87368,2.36148],[-59.88109,2.35198],[-59.89674,2.36031],[-59.91016,2.3912],[-59.89764,2.40184],[-59.89748,2.41248],[-59.89757,2.4226],[-59.88943,2.42861],[-59.89923,2.44062],[-59.89273,2.46328],[-59.89853,2.47305],[-59.89608,2.47871],[-59.91081,2.49398],[-59.91867,2.50924],[-59.91714,2.52503],[-59.93742,2.55249],[-59.92856,2.56624],[-59.93822,2.58308],[-59.9685,2.59306],[-59.97163,2.60008],[-59.96377,2.60985],[-59.95631,2.60743],[-59.96258,2.6153],[-59.95924,2.62179],[-59.96903,2.62999],[-59.97607,2.64229],[-59.96855,2.66135],[-59.97577,2.67224],[-59.98437,2.67628],[-59.99471,2.7022],[-60,-16.5],[-28,-16.5],[-28,7]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:CE:**Chile, north of 40º S#CE0X:**San Felix & San Ambrosio Islands#CE0Z:**Juan Fernandez Islands#CP:**Bolivia, south of 16.5º S#CX:**Uruguay#LU:**Argentina, north of 40º S#ZP:**Paraguay","itu_zone_number":14,"itu_zone_name_loc":[-30,-65]},"geometry":{"type":"Polygon","coordinates":[[[-58.33739,-16.5],[-69.01447,-16.5],[-69.04358,-16.58356],[-68.99964,-16.6362],[-68.99689,-16.65988],[-69.04084,-16.68619],[-69.05457,-16.69145],[-69.12049,-16.71513],[-69.13697,-16.7125],[-69.17267,-16.72565],[-69.18366,-16.74932],[-69.17542,-16.77036],[-69.18915,-16.79666],[-69.21662,-16.82821],[-69.32648,-16.94648],[-69.32099,-16.96487],[-69.34021,-16.98851],[-69.36768,-16.99113],[-69.3924,-17.02265],[-69.37043,-17.05154],[-69.37592,-17.07254],[-69.40888,-17.0988],[-69.4336,-17.1093],[-69.45557,-17.09617],[-69.51874,-17.14867],[-69.55994,-17.16704],[-69.57367,-17.18541],[-69.57367,-17.19853],[-69.58466,-17.2064],[-69.60389,-17.21427],[-69.61487,-17.25624],[-69.62311,-17.27198],[-69.63685,-17.26936],[-69.64509,-17.27985],[-69.63959,-17.28771],[-69.57642,-17.29296],[-69.51874,-17.32967],[-69.47205,-17.36899],[-69.4693,-17.49739],[-69.54896,-17.57334],[-69.6698,-17.66235],[-69.79615,-17.64403],[-69.82361,-17.7016],[-69.82911,-17.74084],[-69.80439,-17.75654],[-69.79889,-17.86637],[-69.77967,-17.91341],[-69.7522,-17.94739],[-69.75769,-17.98919],[-69.82087,-18.11714],[-69.85932,-18.17195],[-69.90601,-18.20327],[-69.96918,-18.26327],[-69.98017,-18.26587],[-70.05158,-18.27109],[-70.15046,-18.31803],[-70.20264,-18.32064],[-70.30152,-18.3076],[-70.34821,-18.32064],[-70.37842,-18.34932],[-77.10206,-18.33367],[-82.24915,-28.94332],[-79.31855,-40],[-52,-40],[-52,-33.7399],[-53.3721,-33.74812],[-53.36876,-33.74348],[-53.36903,-33.74348],[-53.36903,-33.74376],[-53.36959,-33.74376],[-53.36959,-33.74403],[-53.36987,-33.74403],[-53.36987,-33.74431],[-53.37014,-33.74431],[-53.37014,-33.74459],[-53.37042,-33.74459],[-53.37042,-33.74487],[-53.37125,-33.74487],[-53.37125,-33.74514],[-53.37153,-33.74514],[-53.37153,-33.74542],[-53.37209,-33.74542],[-53.37209,-33.7457],[-53.37236,-33.7457],[-53.37236,-33.74598],[-53.37264,-33.74598],[-53.37264,-33.74626],[-53.37292,-33.74626],[-53.37292,-33.74653],[-53.37348,-33.74653],[-53.37348,-33.74681],[-53.37375,-33.74681],[-53.37375,-33.74709],[-53.37403,-33.74709],[-53.40452,-33.73994],[-53.41635,-33.74002],[-53.42035,-33.73831],[-53.4244,-33.73375],[-53.42605,-33.72124],[-53.42668,-33.70914],[-53.42977,-33.70123],[-53.43481,-33.69793],[-53.44936,-33.69304],[-53.46538,-33.69066],[-53.47039,-33.68902],[-53.4864,-33.68748],[-53.49238,-33.68919],[-53.52366,-33.68611],[-53.52013,-33.66737],[-53.52062,-33.66547],[-53.52569,-33.66502],[-53.52789,-33.66462],[-53.52944,-33.66364],[-53.53018,-33.66239],[-53.53037,-33.65781],[-53.52996,-33.65757],[-53.52849,-33.65684],[-53.52734,-33.65598],[-53.52596,-33.65471],[-53.52549,-33.65297],[-53.52551,-33.65228],[-53.52595,-33.6516],[-53.52766,-33.64993],[-53.52842,-33.64812],[-53.52873,-33.64732],[-53.53001,-33.6461],[-53.53143,-33.64499],[-53.53243,-33.6441],[-53.53288,-33.64309],[-53.53289,-33.64274],[-53.53269,-33.64113],[-53.53262,-33.63918],[-53.53296,-33.63758],[-53.5331,-33.63414],[-53.5333,-33.63277],[-53.53376,-33.63129],[-53.5338,-33.63038],[-53.53379,-33.63006],[-53.53346,-33.62865],[-53.53362,-33.62485],[-53.5336,-33.62445],[-53.53338,-33.62383],[-53.53299,-33.62248],[-53.53307,-33.6213],[-53.53297,-33.62037],[-53.5314,-33.61873],[-53.52993,-33.61765],[-53.52945,-33.61603],[-53.52977,-33.61466],[-53.52997,-33.61341],[-53.53001,-33.61226],[-53.52999,-33.61204],[-53.52865,-33.61304],[-53.51692,-33.54097],[-53.50825,-33.48809],[-53.50012,-33.3998],[-53.51059,-33.30984],[-53.52499,-33.25091],[-53.53154,-33.2077],[-53.52892,-33.17235],[-53.51714,-33.13045],[-53.50012,-33.09771],[-53.4844,-33.07807],[-53.415,-33.02569],[-53.29846,-32.94844],[-53.24783,-32.86353],[-53.16748,-32.79946],[-53.09425,-32.73335],[-53.09425,-32.72419],[-53.17015,-32.65213],[-53.1752,-32.65728],[-53.18208,-32.65642],[-53.1866,-32.64536],[-53.18848,-32.64496],[-53.1882,-32.64226],[-53.18757,-32.64042],[-53.18726,-32.63996],[-53.1927,-32.63949],[-53.20961,-32.63599],[-53.22613,-32.62858],[-53.23705,-32.60868],[-53.243,-32.6024],[-53.25675,-32.60249],[-53.26502,-32.60635],[-53.26762,-32.60962],[-53.27398,-32.61366],[-53.28154,-32.6143],[-53.30487,-32.59604],[-53.31479,-32.59054],[-53.32633,-32.58553],[-53.33961,-32.58491],[-53.35784,-32.57318],[-53.36678,-32.57292],[-53.37549,-32.57999],[-53.38519,-32.58135],[-53.38908,-32.57955],[-53.40241,-32.56706],[-53.41069,-32.56175],[-53.41829,-32.56122],[-53.43489,-32.53133],[-53.44739,-32.51167],[-53.44934,-32.50992],[-53.45468,-32.49392],[-53.45279,-32.48931],[-53.453,-32.48882],[-53.452,-32.48638],[-53.45382,-32.48198],[-53.45888,-32.47698],[-53.47178,-32.47862],[-53.48422,-32.47835],[-53.49212,-32.48181],[-53.50005,-32.48317],[-53.50532,-32.48007],[-53.5142,-32.48418],[-53.51967,-32.48425],[-53.52572,-32.47947],[-53.53171,-32.47806],[-53.53878,-32.47098],[-53.54676,-32.46981],[-53.55028,-32.46732],[-53.55637,-32.45938],[-53.57219,-32.44944],[-53.57683,-32.43917],[-53.58215,-32.43269],[-53.59089,-32.43005],[-53.59414,-32.42861],[-53.59851,-32.41981],[-53.60579,-32.41462],[-53.60496,-32.40428],[-53.60529,-32.39923],[-53.60986,-32.39232],[-53.62357,-32.38931],[-53.62883,-32.38621],[-53.63164,-32.3816],[-53.63185,-32.3677],[-53.62599,-32.36152],[-53.62682,-32.35728],[-53.62325,-32.35135],[-53.6238,-32.35064],[-53.62246,-32.34842],[-53.62803,-32.34131],[-53.63268,-32.32956],[-53.64379,-32.31725],[-53.64363,-32.31114],[-53.63818,-32.31066],[-53.63475,-32.3083],[-53.63263,-32.30027],[-53.6345,-32.29165],[-53.64347,-32.2888],[-53.64716,-32.27472],[-53.65513,-32.27248],[-53.66068,-32.2658],[-53.66743,-32.26208],[-53.66947,-32.25852],[-53.66765,-32.24712],[-53.66902,-32.2385],[-53.667,-32.23321],[-53.68173,-32.21735],[-53.68386,-32.20704],[-53.69227,-32.20797],[-53.69671,-32.20572],[-53.69867,-32.2012],[-53.69768,-32.19957],[-53.69202,-32.1972],[-53.69188,-32.19454],[-53.69123,-32.19427],[-53.69104,-32.19047],[-53.70121,-32.18931],[-53.70297,-32.18786],[-53.70475,-32.18408],[-53.70382,-32.17986],[-53.71436,-32.1709],[-53.71053,-32.16117],[-53.71854,-32.15515],[-53.72676,-32.15423],[-53.72168,-32.14967],[-53.72048,-32.14692],[-53.7208,-32.14653],[-53.71969,-32.14399],[-53.73203,-32.12911],[-53.73461,-32.12222],[-53.7303,-32.11186],[-53.73063,-32.10575],[-53.72595,-32.10444],[-53.72243,-32.1082],[-53.71947,-32.10733],[-53.71337,-32.10116],[-53.72779,-32.09688],[-53.73789,-32.08223],[-53.7414,-32.0791],[-53.76099,-32.07571],[-53.76498,-32.07301],[-53.77242,-32.07203],[-53.78016,-32.06705],[-53.79746,-32.06764],[-53.80467,-32.06517],[-53.81293,-32.05788],[-53.82061,-32.05732],[-53.82608,-32.05484],[-53.82885,-32.05128],[-53.83047,-32.04055],[-53.83594,-32.03786],[-53.83806,-32.02735],[-53.84818,-32.02786],[-53.84945,-32.02513],[-53.84759,-32.01606],[-53.8482,-32.00679],[-53.85078,-31.99797],[-53.8569,-31.99264],[-53.86194,-31.99212],[-53.87068,-31.99455],[-53.87335,-31.99532],[-53.87895,-31.99385],[-53.8837,-31.99033],[-53.89559,-31.97156],[-53.91596,-31.95929],[-53.92641,-31.95841],[-53.93385,-31.95552],[-53.93904,-31.9481],[-53.94725,-31.95436],[-53.95261,-31.95426],[-53.95998,-31.94816],[-53.96457,-31.93846],[-53.95896,-31.926],[-53.95951,-31.92295],[-53.96479,-31.91942],[-53.97172,-31.91745],[-54.00227,-31.91596],[-54.0076,-31.91449],[-54.01181,-31.9112],[-54.01615,-31.90174],[-54.02247,-31.8928],[-54.02752,-31.8897],[-54.03561,-31.88724],[-54.04392,-31.88707],[-54.05152,-31.88829],[-54.05671,-31.89026],[-54.06198,-31.89499],[-54.06648,-31.90112],[-54.06983,-31.90519],[-54.07771,-31.90642],[-54.08907,-31.9071],[-54.09551,-31.90559],[-54.10025,-31.90111],[-54.10521,-31.89525],[-54.11127,-31.89005],[-54.11765,-31.88623],[-54.12619,-31.88283],[-54.13501,-31.87942],[-54.14411,-31.87669],[-54.14919,-31.87497],[-54.15286,-31.87121],[-54.1573,-31.86581],[-54.16257,-31.86155],[-54.17129,-31.85492],[-54.1893,-31.84324],[-54.20178,-31.83606],[-54.21529,-31.82748],[-54.25974,-31.79747],[-54.29281,-31.77577],[-54.30257,-31.76864],[-54.32612,-31.75337],[-54.35758,-31.73284],[-54.36918,-31.72428],[-54.40435,-31.70227],[-54.42416,-31.68914],[-54.43422,-31.68338],[-54.44003,-31.67932],[-54.44853,-31.67544],[-54.45541,-31.67159],[-54.45936,-31.6685],[-54.4614,-31.665],[-54.4608,-31.66294],[-54.45939,-31.66113],[-54.45718,-31.65956],[-54.45163,-31.65462],[-54.4475,-31.65195],[-54.44509,-31.65045],[-54.44724,-31.64935],[-54.43573,-31.64214],[-54.4297,-31.63883],[-54.42557,-31.63615],[-54.42276,-31.63276],[-54.42052,-31.62947],[-54.42265,-31.6259],[-54.42814,-31.62142],[-54.43403,-31.62002],[-54.43921,-31.61591],[-54.44277,-31.60964],[-54.44716,-31.59511],[-54.45201,-31.58744],[-54.46008,-31.57993],[-54.46466,-31.57204],[-54.47705,-31.56604],[-54.48245,-31.55881],[-54.49036,-31.53709],[-54.50461,-31.51317],[-54.52527,-31.49804],[-54.53247,-31.49535],[-54.54041,-31.49495],[-54.54648,-31.49229],[-54.56963,-31.48167],[-54.58335,-31.47633],[-54.59239,-31.47329],[-54.60753,-31.46697],[-54.6198,-31.46228],[-54.63103,-31.45919],[-54.63755,-31.45746],[-54.64558,-31.45695],[-54.65909,-31.45661],[-54.67291,-31.4547],[-54.68232,-31.45196],[-54.69025,-31.44863],[-54.70075,-31.44555],[-54.71317,-31.44012],[-54.7118,-31.43963],[-54.71673,-31.43938],[-54.7246,-31.43774],[-54.73517,-31.43685],[-54.75307,-31.43671],[-54.76554,-31.43795],[-54.78346,-31.43843],[-54.79925,-31.44053],[-54.81175,-31.4424],[-54.82277,-31.44399],[-54.82793,-31.44511],[-54.83481,-31.44337],[-54.84527,-31.43933],[-54.85134,-31.43542],[-54.85657,-31.42839],[-54.86322,-31.42038],[-54.87021,-31.41143],[-54.89018,-31.39774],[-54.90028,-31.39434],[-54.91557,-31.39268],[-54.92831,-31.39172],[-54.93776,-31.39021],[-54.94393,-31.3891],[-54.94774,-31.38336],[-54.949,-31.378],[-54.94871,-31.37018],[-54.94961,-31.36483],[-54.95121,-31.35884],[-54.95472,-31.35498],[-54.95756,-31.35282],[-54.95905,-31.35166],[-54.96422,-31.34501],[-54.9666,-31.34025],[-54.96792,-31.33646],[-54.97136,-31.33072],[-54.97444,-31.32531],[-54.98287,-31.31632],[-54.99451,-31.30534],[-55.00253,-31.2951],[-55.00983,-31.2855],[-55.01371,-31.28195],[-55.01574,-31.28167],[-55.01881,-31.28181],[-55.0211,-31.28425],[-55.02273,-31.28891],[-55.02512,-31.29417],[-55.02939,-31.30094],[-55.03808,-31.30885],[-55.05079,-31.31665],[-55.06153,-31.32073],[-55.07623,-31.32314],[-55.09045,-31.32275],[-55.10351,-31.3205],[-55.11513,-31.31892],[-55.12877,-31.3129],[-55.14092,-31.30598],[-55.1509,-31.29974],[-55.16151,-31.29098],[-55.16715,-31.28581],[-55.17352,-31.28061],[-55.18458,-31.27403],[-55.19319,-31.27034],[-55.20293,-31.26755],[-55.21813,-31.2643],[-55.22611,-31.26281],[-55.2376,-31.25809],[-55.24436,-31.25382],[-55.24853,-31.24869],[-55.25264,-31.24199],[-55.25596,-31.23343],[-55.25857,-31.22584],[-55.26262,-31.21757],[-55.26704,-31.20961],[-55.27081,-31.20354],[-55.27605,-31.19775],[-55.2809,-31.19134],[-55.28364,-31.18688],[-55.28669,-31.18115],[-55.28645,-31.1752],[-55.28696,-31.16954],[-55.28894,-31.16447],[-55.29522,-31.15739],[-55.30125,-31.15314],[-55.31194,-31.14719],[-55.32936,-31.13602],[-55.33564,-31.12925],[-55.33941,-31.12318],[-55.34089,-31.11468],[-55.34088,-31.10559],[-55.34234,-31.09646],[-55.34549,-31.08445],[-55.34974,-31.07242],[-55.35411,-31.06351],[-55.3602,-31.05204],[-55.36743,-31.0418],[-55.37334,-31.03473],[-55.38179,-31.02789],[-55.38892,-31.02392],[-55.39858,-31.01986],[-55.40934,-31.01578],[-55.42118,-31.01166],[-55.42652,-31.00868],[-55.43078,-31.00604],[-55.43488,-30.99964],[-55.43687,-30.99488],[-55.43808,-30.98889],[-55.43964,-30.98258],[-55.44223,-30.97497],[-55.44527,-30.96924],[-55.45092,-30.96499],[-55.45876,-30.96099],[-55.47162,-30.95526],[-55.48344,-30.95083],[-55.49201,-30.9468],[-55.49658,-30.9429],[-55.50132,-30.9346],[-55.50873,-30.92058],[-55.5156,-30.91096],[-55.52053,-30.90705],[-55.54603,-30.89089],[-55.56181,-30.8857],[-55.56641,-30.88273],[-55.57203,-30.87785],[-55.575,-30.87086],[-55.57687,-30.86359],[-55.57983,-30.85629],[-55.58255,-30.85181],[-55.5864,-30.84824],[-55.5928,-30.8449],[-55.60038,-30.84372],[-55.61133,-30.84463],[-55.62308,-30.84739],[-55.63049,-30.85061],[-55.63466,-30.85455],[-55.63715,-30.86168],[-55.63968,-30.86975],[-55.64032,-30.87631],[-55.63961,-30.88511],[-55.63843,-30.89142],[-55.63483,-30.90063],[-55.63406,-30.90817],[-55.63592,-30.91752],[-55.63886,-30.92914],[-55.64284,-30.93716],[-55.64794,-30.94577],[-55.65109,-30.95132],[-55.65714,-30.95645],[-55.66238,-30.95973],[-55.67083,-30.96166],[-55.67807,-30.9608],[-55.68526,-30.95868],[-55.69178,-30.95816],[-55.69761,-30.95828],[-55.7021,-30.96096],[-55.71381,-30.97093],[-55.72066,-30.9776],[-55.72969,-30.9842],[-55.73681,-30.98899],[-55.74849,-30.99769],[-55.75939,-31.00549],[-55.76796,-31.00991],[-55.77361,-31.01411],[-55.78066,-31.01701],[-55.78847,-31.02083],[-55.79717,-31.02807],[-55.80513,-31.03501],[-55.81316,-31.04353],[-55.82027,-31.04768],[-55.82959,-31.05238],[-55.8378,-31.05681],[-55.84335,-31.05882],[-55.8486,-31.06209],[-55.86187,-31.07356],[-55.8698,-31.07957],[-55.87534,-31.08126],[-55.88631,-31.08215],[-55.89798,-31.08238],[-55.90673,-31.0824],[-55.91594,-31.0846],[-55.92775,-31.08796],[-55.93363,-31.08901],[-55.94381,-31.08866],[-55.95106,-31.08779],[-55.95751,-31.08538],[-55.96394,-31.08265],[-55.97314,-31.07669],[-55.98311,-31.07165],[-55.98955,-31.06923],[-55.99458,-31.06781],[-56.00174,-31.06505],[-56.00782,-31.06265],[-56.01063,-31.05639],[-56.01282,-31.04576],[-56.01267,-31.03636],[-56.00967,-31.02293],[-56.01158,-30.99397],[-56.00924,-30.98491],[-56.00529,-30.97977],[-56.006,-30.97768],[-56.01021,-30.97662],[-56.00225,-30.96519],[-56.00682,-30.96022],[-56.00769,-30.94391],[-56.01315,-30.9412],[-56.01483,-30.93701],[-56.00303,-30.92273],[-56.00177,-30.91841],[-56.00789,-30.90651],[-56.00777,-30.89893],[-55.98791,-30.86193],[-55.98701,-30.85966],[-55.9872,-30.85903],[-55.98628,-30.85675],[-55.99045,-30.84285],[-56.00322,-30.83119],[-56.00299,-30.81995],[-56.00701,-30.81477],[-56.01375,-30.81086],[-56.01444,-30.80899],[-56.01088,-30.8045],[-56.01117,-30.80288],[-56.01015,-30.80159],[-56.01058,-30.79928],[-56.02124,-30.79411],[-56.02316,-30.79101],[-56.02016,-30.78629],[-56.02073,-30.78543],[-56.01943,-30.78338],[-56.02068,-30.78151],[-56.03277,-30.7788],[-56.03686,-30.76926],[-56.04059,-30.76937],[-56.04742,-30.77372],[-56.05255,-30.76965],[-56.05915,-30.76874],[-56.06644,-30.75955],[-56.064,-30.74655],[-56.06508,-30.74101],[-56.06788,-30.73839],[-56.0743,-30.73955],[-56.08616,-30.74924],[-56.09013,-30.74911],[-56.09982,-30.73432],[-56.10498,-30.73116],[-56.11189,-30.73116],[-56.12059,-30.73568],[-56.12671,-30.73593],[-56.13027,-30.73259],[-56.12927,-30.71634],[-56.13105,-30.70845],[-56.13404,-30.70447],[-56.14491,-30.69836],[-56.14764,-30.69437],[-56.14791,-30.68862],[-56.14109,-30.67876],[-56.14205,-30.67643],[-56.15968,-30.66734],[-56.16758,-30.66018],[-56.16979,-30.65047],[-56.16671,-30.64116],[-56.16764,-30.63838],[-56.17766,-30.63138],[-56.18021,-30.62326],[-56.175,-30.6138],[-56.17621,-30.61123],[-56.18979,-30.60089],[-56.20253,-30.60114],[-56.21089,-30.59855],[-56.21882,-30.59805],[-56.23066,-30.58455],[-56.23069,-30.58445],[-56.22579,-30.58123],[-56.22529,-30.57847],[-56.22507,-30.57832],[-56.22436,-30.57444],[-56.23033,-30.57171],[-56.24828,-30.57016],[-56.25211,-30.57255],[-56.25599,-30.58183],[-56.2581,-30.58175],[-56.26211,-30.57679],[-56.2624,-30.5715],[-56.25854,-30.56269],[-56.26092,-30.55687],[-56.26527,-30.5535],[-56.27801,-30.54823],[-56.28206,-30.54418],[-56.28464,-30.53698],[-56.28946,-30.53237],[-56.28995,-30.52437],[-56.29026,-30.52117],[-56.29203,-30.51951],[-56.29814,-30.51975],[-56.30721,-30.52654],[-56.32026,-30.52814],[-56.33043,-30.52456],[-56.33426,-30.52144],[-56.33121,-30.51306],[-56.33305,-30.50703],[-56.3361,-30.50439],[-56.34367,-30.50206],[-56.34722,-30.49872],[-56.34966,-30.48853],[-56.35276,-30.48704],[-56.3586,-30.48729],[-56.36084,-30.48973],[-56.35919,-30.49415],[-56.36205,-30.49864],[-56.38321,-30.49237],[-56.38599,-30.48952],[-56.38793,-30.48026],[-56.39522,-30.47666],[-56.39321,-30.47313],[-56.39387,-30.47265],[-56.39249,-30.47023],[-56.39479,-30.46854],[-56.39954,-30.46814],[-56.40335,-30.46479],[-56.40519,-30.45898],[-56.40342,-30.45514],[-56.3983,-30.45349],[-56.39785,-30.44961],[-56.40165,-30.44602],[-56.40793,-30.44442],[-56.41145,-30.44062],[-56.41555,-30.4267],[-56.41979,-30.42654],[-56.4325,-30.43228],[-56.43585,-30.43032],[-56.43774,-30.42566],[-56.44104,-30.42278],[-56.44708,-30.42164],[-56.45054,-30.41647],[-56.44982,-30.41259],[-56.44476,-30.40635],[-56.44543,-30.4038],[-56.45279,-30.39733],[-56.45852,-30.3845],[-56.46164,-30.38323],[-56.46732,-30.38578],[-56.47415,-30.38484],[-56.4782,-30.38653],[-56.48245,-30.39211],[-56.48796,-30.39122],[-56.50061,-30.37928],[-56.50707,-30.37605],[-56.51275,-30.3623],[-56.51695,-30.35887],[-56.52327,-30.35571],[-56.53148,-30.35586],[-56.53939,-30.36062],[-56.54393,-30.3616],[-56.5453,-30.35718],[-56.5426,-30.35063],[-56.54495,-30.34457],[-56.54913,-30.3435],[-56.54981,-30.34253],[-56.54936,-30.34183],[-56.53904,-30.33647],[-56.53607,-30.32992],[-56.53627,-30.32904],[-56.53536,-30.32702],[-56.53925,-30.30943],[-56.54401,-30.30948],[-56.55116,-30.31495],[-56.55752,-30.31517],[-56.56611,-30.30705],[-56.57314,-30.30495],[-56.57641,-30.30138],[-56.57346,-30.29529],[-56.57456,-30.29066],[-56.58167,-30.29016],[-56.59066,-30.29556],[-56.60204,-30.29582],[-56.61075,-30.30055],[-56.61652,-30.29963],[-56.61897,-30.29564],[-56.6172,-30.29203],[-56.60536,-30.28261],[-56.60421,-30.27554],[-56.60723,-30.26716],[-56.61157,-30.26401],[-56.6191,-30.26648],[-56.6333,-30.26502],[-56.63637,-30.26307],[-56.63686,-30.2616],[-56.63573,-30.26005],[-56.62614,-30.25858],[-56.62346,-30.24794],[-56.62703,-30.24],[-56.63929,-30.2315],[-56.64565,-30.22139],[-56.65085,-30.21958],[-56.65777,-30.2207],[-56.66175,-30.21962],[-56.66028,-30.21733],[-56.64855,-30.21525],[-56.64217,-30.20907],[-56.64296,-30.20762],[-56.64145,-30.20616],[-56.64363,-30.20218],[-56.65239,-30.20299],[-56.65871,-30.19724],[-56.66598,-30.19995],[-56.67179,-30.19995],[-56.67743,-30.19652],[-56.68218,-30.19634],[-56.6915,-30.2031],[-56.6965,-30.20268],[-56.70002,-30.1991],[-56.70561,-30.18442],[-56.70288,-30.17741],[-56.70511,-30.17457],[-56.70881,-30.17442],[-56.71503,-30.1774],[-56.72266,-30.17687],[-56.75118,-30.16107],[-56.75682,-30.15983],[-56.77037,-30.16446],[-56.77488,-30.16369],[-56.78015,-30.15948],[-56.7814,-30.153],[-56.77824,-30.13774],[-56.78038,-30.12801],[-56.78588,-30.12477],[-56.79859,-30.12271],[-56.80213,-30.11958],[-56.80084,-30.10999],[-56.80291,-30.10394],[-56.80608,-30.10404],[-56.81179,-30.10726],[-56.81571,-30.10642],[-56.82919,-30.09142],[-56.83509,-30.0882],[-56.85221,-30.08753],[-56.86171,-30.09266],[-56.86594,-30.09272],[-56.87059,-30.08565],[-56.87691,-30.0854],[-56.89131,-30.09332],[-56.89862,-30.10681],[-56.90126,-30.10693],[-56.90591,-30.10491],[-56.9122,-30.10489],[-56.91299,-30.10257],[-56.91232,-30.10069],[-56.91254,-30.1004],[-56.91161,-30.09779],[-56.91655,-30.09139],[-56.92469,-30.09061],[-56.95917,-30.09504],[-56.97896,-30.09347],[-56.9896,-30.08018],[-56.99184,-30.07969],[-56.9993,-30.08054],[-57.00665,-30.08372],[-57.01494,-30.08531],[-57.02173,-30.08886],[-57.02609,-30.09392],[-57.03286,-30.09747],[-57.04072,-30.09863],[-57.05197,-30.09752],[-57.06197,-30.09391],[-57.06319,-30.0891],[-57.06311,-30.08874],[-57.06834,-30.08775],[-57.07468,-30.09087],[-57.08404,-30.09818],[-57.08791,-30.10362],[-57.08609,-30.11083],[-57.08384,-30.11363],[-57.08489,-30.11642],[-57.08847,-30.11901],[-57.09277,-30.11717],[-57.09408,-30.11075],[-57.09931,-30.10896],[-57.10387,-30.11078],[-57.1094,-30.11184],[-57.11141,-30.11511],[-57.11271,-30.11505],[-57.11195,-30.116],[-57.11123,-30.11657],[-57.11266,-30.1189],[-57.11021,-30.12082],[-57.1076,-30.13287],[-57.10913,-30.13941],[-57.11419,-30.14044],[-57.12122,-30.13994],[-57.1271,-30.14304],[-57.13133,-30.15052],[-57.15128,-30.18422],[-57.15849,-30.18859],[-57.16323,-30.19528],[-57.16522,-30.19984],[-57.16415,-30.20461],[-57.16059,-30.20972],[-57.15814,-30.21974],[-57.15713,-30.22901],[-57.15801,-30.23037],[-57.15784,-30.23191],[-57.15998,-30.23525],[-57.16721,-30.23921],[-57.17154,-30.24507],[-57.17522,-30.24605],[-57.18145,-30.25118],[-57.1886,-30.25676],[-57.19391,-30.26185],[-57.19931,-30.27344],[-57.20678,-30.28146],[-57.21737,-30.28395],[-57.22708,-30.28559],[-57.23954,-30.28432],[-57.25128,-30.28065],[-57.25428,-30.27543],[-57.25744,-30.26908],[-57.26135,-30.26601],[-57.26386,-30.26753],[-57.26405,-30.26893],[-57.26508,-30.27546],[-57.26864,-30.27845],[-57.27564,-30.28685],[-57.28504,-30.28564],[-57.29191,-30.27986],[-57.29989,-30.27089],[-57.30167,-30.26408],[-57.30665,-30.25862],[-57.31236,-30.25684],[-57.32009,-30.26041],[-57.32529,-30.26753],[-57.33307,-30.27029],[-57.33987,-30.27382],[-57.34439,-30.27644],[-57.34982,-30.27951],[-57.35317,-30.27803],[-57.35959,-30.27183],[-57.36398,-30.26837],[-57.3733,-30.26877],[-57.37771,-30.27341],[-57.38735,-30.29286],[-57.3922,-30.29792],[-57.39491,-30.29966],[-57.39966,-30.29919],[-57.40301,-30.29676],[-57.40785,-30.29401],[-57.41433,-30.29481],[-57.41798,-30.29329],[-57.41979,-30.28896],[-57.42028,-30.28008],[-57.42241,-30.27546],[-57.42493,-30.27217],[-57.4334,-30.27091],[-57.44493,-30.27342],[-57.4556,-30.26617],[-57.46328,-30.26244],[-57.47077,-30.26195],[-57.47678,-30.26301],[-57.48036,-30.26527],[-57.48512,-30.26842],[-57.49295,-30.27442],[-57.49923,-30.27914],[-57.50573,-30.27981],[-57.52128,-30.27722],[-57.53768,-30.27182],[-57.55003,-30.26362],[-57.55658,-30.25478],[-57.55868,-30.24616],[-57.55657,-30.23351],[-57.55418,-30.22167],[-57.55515,-30.2124],[-57.56109,-30.20616],[-57.56983,-30.19984],[-57.57904,-30.19778],[-57.60344,-30.18643],[-57.614,-30.18079],[-57.61522,-30.17911],[-57.60912,-30.179],[-57.59293,-30.17651],[-57.57793,-30.17361],[-57.55972,-30.16827],[-57.50484,-30.14307],[-57.46673,-30.11577],[-57.45773,-30.10667],[-57.44239,-30.07389],[-57.41204,-30.0407],[-57.40065,-30.03195],[-57.3815,-30.02058],[-57.35848,-30.01249],[-57.34671,-30.00602],[-57.34197,-30.00123],[-57.32856,-29.98183],[-57.32479,-29.96886],[-57.32498,-29.96903],[-57.32124,-29.95614],[-57.31926,-29.91655],[-57.32203,-29.88612],[-57.31834,-29.86758],[-57.30649,-29.84893],[-57.28285,-29.8199],[-57.25287,-29.7915],[-57.23599,-29.77837],[-57.21787,-29.77299],[-57.19019,-29.77363],[-57.17031,-29.77598],[-57.16403,-29.77524],[-57.13642,-29.76576],[-57.1045,-29.74897],[-57.05556,-29.70406],[-57.04323,-29.69019],[-57.01942,-29.65696],[-57.00893,-29.65189],[-56.9993,-29.64483],[-56.98893,-29.64015],[-56.97881,-29.6365],[-56.97265,-29.63594],[-56.97093,-29.63738],[-56.96937,-29.63524],[-56.96887,-29.63262],[-56.96867,-29.63235],[-56.96703,-29.62375],[-56.9699,-29.61243],[-56.97047,-29.60595],[-56.96689,-29.60092],[-56.96236,-29.59644],[-56.95943,-29.59189],[-56.95435,-29.58696],[-56.94481,-29.57894],[-56.92232,-29.55885],[-56.91159,-29.54854],[-56.90704,-29.54359],[-56.90031,-29.53779],[-56.89625,-29.53189],[-56.89533,-29.52986],[-56.89676,-29.53077],[-56.89554,-29.52899],[-56.89285,-29.5231],[-56.88911,-29.51851],[-56.88461,-29.51428],[-56.8817,-29.51197],[-56.87383,-29.50863],[-56.86641,-29.50758],[-56.86154,-29.50371],[-56.85561,-29.50032],[-56.85539,-29.50269],[-56.85505,-29.50249],[-56.8455,-29.49814],[-56.83671,-29.49341],[-56.82872,-29.48899],[-56.82264,-29.48415],[-56.81603,-29.47662],[-56.8139,-29.47298],[-56.81123,-29.46664],[-56.80864,-29.46166],[-56.80323,-29.45476],[-56.79981,-29.44879],[-56.7957,-29.44455],[-56.78969,-29.44073],[-56.7836,-29.43555],[-56.7822,-29.4312],[-56.78215,-29.43037],[-56.78149,-29.4283],[-56.78121,-29.42288],[-56.78076,-29.42025],[-56.77872,-29.41972],[-56.77967,-29.41373],[-56.77951,-29.41278],[-56.77955,-29.40633],[-56.77963,-29.40196],[-56.77812,-29.39813],[-56.77551,-29.3928],[-56.7701,-29.3859],[-56.76516,-29.38034],[-56.75837,-29.37654],[-56.75164,-29.37376],[-56.74151,-29.37281],[-56.73018,-29.3709],[-56.71995,-29.36792],[-56.71239,-29.36415],[-56.70841,-29.36194],[-56.70337,-29.35468],[-56.69882,-29.3491],[-56.6939,-29.34387],[-56.68815,-29.33765],[-56.68232,-29.32975],[-56.67568,-29.32119],[-56.67186,-29.3149],[-56.66954,-29.30753],[-56.66474,-29.29721],[-56.66304,-29.29422],[-56.65789,-29.28459],[-56.65614,-29.28059],[-56.65625,-29.27956],[-56.65543,-29.2777],[-56.65619,-29.27056],[-56.65379,-29.26115],[-56.65195,-29.24799],[-56.65131,-29.23581],[-56.64968,-29.21925],[-56.64561,-29.20788],[-56.63994,-29.19556],[-56.634,-29.18528],[-56.62766,-29.17502],[-56.61982,-29.16549],[-56.61325,-29.15795],[-56.60687,-29.14667],[-56.60415,-29.13897],[-56.60111,-29.13231],[-56.59728,-29.12669],[-56.59665,-29.12763],[-56.59596,-29.12662],[-56.59307,-29.123],[-56.58634,-29.11987],[-56.57614,-29.11688],[-56.56361,-29.11364],[-56.53946,-29.10984],[-56.53036,-29.10578],[-56.52162,-29.10104],[-56.51249,-29.0963],[-56.50421,-29.09289],[-56.49635,-29.09015],[-56.48658,-29.08815],[-56.47651,-29.08752],[-56.46331,-29.08633],[-56.45207,-29.08541],[-56.44228,-29.08273],[-56.4348,-29.07997],[-56.42844,-29.07648],[-56.42479,-29.07289],[-56.42023,-29.06661],[-56.41733,-29.06266],[-56.4155,-29.05559],[-56.41472,-29.05271],[-56.41176,-29.0474],[-56.40797,-29.0411],[-56.40539,-29.03577],[-56.40316,-29.02975],[-56.40155,-29.02066],[-56.40277,-29.01416],[-56.40667,-29.00723],[-56.41026,-29.00167],[-56.41242,-28.99853],[-56.4125,-28.99242],[-56.41171,-28.98342],[-56.41017,-28.97657],[-56.40563,-28.97064],[-56.39955,-28.96477],[-56.39066,-28.95662],[-56.3803,-28.9499],[-56.37044,-28.94552],[-56.35671,-28.94095],[-56.34533,-28.93697],[-56.33744,-28.93354],[-56.33202,-28.92994],[-56.3238,-28.92445],[-56.32254,-28.92524],[-56.3185,-28.92089],[-56.31402,-28.91597],[-56.31022,-28.90933],[-56.30583,-28.8983],[-56.30384,-28.88887],[-56.30177,-28.87981],[-56.30113,-28.8769],[-56.30029,-28.86744],[-56.30056,-28.85725],[-56.30168,-28.84839],[-56.30316,-28.83917],[-56.30387,-28.82999],[-56.3028,-28.82393],[-56.30013,-28.81656],[-56.29743,-28.80852],[-56.29244,-28.80091],[-56.28793,-28.79531],[-56.28426,-28.79104],[-56.27435,-28.7853],[-56.26686,-28.78185],[-56.25787,-28.77913],[-56.24812,-28.77644],[-56.23451,-28.77389],[-56.22677,-28.77316],[-56.21596,-28.77254],[-56.20559,-28.77326],[-56.19556,-28.77295],[-56.1917,-28.77275],[-56.18416,-28.76794],[-56.17895,-28.76372],[-56.17568,-28.75977],[-56.17201,-28.75549],[-56.1686,-28.7485],[-56.16639,-28.74247],[-56.16218,-28.73482],[-56.15723,-28.72788],[-56.15226,-28.72026],[-56.14646,-28.71165],[-56.14144,-28.70302],[-56.1394,-28.70071],[-56.1342,-28.69649],[-56.12895,-28.69126],[-56.12174,-28.68507],[-56.11491,-28.67888],[-56.10894,-28.67468],[-56.09977,-28.66789],[-56.08531,-28.65484],[-56.07893,-28.64998],[-56.0737,-28.64508],[-56.06688,-28.63888],[-56.05967,-28.6327],[-56.05173,-28.62757],[-56.05153,-28.6274],[-56.04538,-28.62303],[-56.0383,-28.61955],[-56.02853,-28.61617],[-56.0214,-28.61167],[-56.01545,-28.60781],[-56.01221,-28.6042],[-56.01048,-28.59985],[-56.00795,-28.59519],[-56.0066,-28.59083],[-56.00741,-28.58334],[-56.00795,-28.57823],[-56.01029,-28.57069],[-56.01276,-28.56585],[-56.01526,-28.56169],[-56.01693,-28.5562],[-56.0196,-28.54729],[-56.02204,-28.54178],[-56.02383,-28.539],[-56.02356,-28.5329],[-56.02203,-28.52482],[-56.02159,-28.52238],[-56.0184,-28.51667],[-56.01515,-28.51271],[-56.01075,-28.50914],[-56.00681,-28.5069],[-55.99896,-28.50311],[-55.9939,-28.50193],[-55.98579,-28.50086],[-55.97996,-28.49937],[-55.97416,-28.49855],[-55.9687,-28.49671],[-55.96405,-28.49586],[-55.95326,-28.49488],[-55.94514,-28.49381],[-55.93854,-28.49234],[-55.9331,-28.49083],[-55.92761,-28.48831],[-55.92054,-28.48483],[-55.91744,-28.48426],[-55.91354,-28.48303],[-55.90276,-28.48239],[-55.8935,-28.48135],[-55.88802,-28.47917],[-55.88599,-28.47653],[-55.88463,-28.47128],[-55.88389,-28.4686],[-55.88439,-28.46248],[-55.88562,-28.45565],[-55.88733,-28.44875],[-55.88991,-28.4399],[-55.89337,-28.4313],[-55.89779,-28.4186],[-55.9011,-28.40661],[-55.90044,-28.40052],[-55.8991,-28.39616],[-55.89576,-28.39018],[-55.89082,-28.38254],[-55.88501,-28.37291],[-55.87775,-28.36502],[-55.87405,-28.35938],[-55.86767,-28.35383],[-55.86341,-28.35296],[-55.8588,-28.35278],[-55.84772,-28.35384],[-55.83555,-28.35629],[-55.82454,-28.3587],[-55.81807,-28.35994],[-55.81125,-28.36187],[-55.8063,-28.36271],[-55.80058,-28.36359],[-55.79295,-28.36452],[-55.78567,-28.36477],[-55.77729,-28.36607],[-55.76965,-28.36701],[-55.76663,-28.36813],[-55.76134,-28.37],[-55.75604,-28.37154],[-55.74843,-28.37281],[-55.74465,-28.37429],[-55.73753,-28.37826],[-55.73267,-28.38114],[-55.72902,-28.38567],[-55.72657,-28.39118],[-55.72417,-28.3977],[-55.72286,-28.40283],[-55.72105,-28.40561],[-55.71672,-28.41186],[-55.71133,-28.42051],[-55.70723,-28.42337],[-55.70384,-28.42484],[-55.69883,-28.42432],[-55.69491,-28.42242],[-55.69285,-28.41909],[-55.69164,-28.41701],[-55.68982,-28.41537],[-55.68811,-28.40773],[-55.68585,-28.39898],[-55.68437,-28.39191],[-55.68286,-28.38604],[-55.67972,-28.37631],[-55.67669,-28.36828],[-55.67427,-28.3653],[-55.6713,-28.35861],[-55.67104,-28.35677],[-55.67058,-28.35573],[-55.66947,-28.34762],[-55.66826,-28.33715],[-55.66988,-28.33031],[-55.67309,-28.32444],[-55.67601,-28.32095],[-55.68159,-28.31704],[-55.68865,-28.31171],[-55.70179,-28.30518],[-55.71533,-28.29896],[-55.72657,-28.29282],[-55.73895,-28.28664],[-55.74609,-28.28334],[-55.75019,-28.28049],[-55.75388,-28.27732],[-55.75672,-28.2746],[-55.76515,-28.27185],[-55.77065,-28.26624],[-55.77313,-28.2614],[-55.77463,-28.25186],[-55.77483,-28.24778],[-55.77238,-28.24413],[-55.76842,-28.24121],[-55.76209,-28.23668],[-55.75619,-28.23314],[-55.75036,-28.2313],[-55.74301,-28.22952],[-55.72673,-28.22531],[-55.71823,-28.22356],[-55.7101,-28.22146],[-55.70155,-28.21869],[-55.69259,-28.21526],[-55.68705,-28.21103],[-55.6819,-28.20713],[-55.67752,-28.20321],[-55.6743,-28.19958],[-55.66717,-28.19405],[-55.6632,-28.19079],[-55.65734,-28.18793],[-55.65188,-28.18574],[-55.64406,-28.18192],[-55.63741,-28.17841],[-55.63504,-28.17679],[-55.62827,-28.17057],[-55.62185,-28.16366],[-55.61898,-28.159],[-55.61721,-28.1533],[-55.61702,-28.14889],[-55.61915,-28.14475],[-55.61938,-28.14135],[-55.61875,-28.13885],[-55.61738,-28.13416],[-55.61448,-28.12882],[-55.61012,-28.12523],[-55.60466,-28.12269],[-55.59844,-28.12053],[-55.58998,-28.11944],[-55.58501,-28.1196],[-55.58202,-28.1214],[-55.57906,-28.12387],[-55.57473,-28.13011],[-55.57266,-28.13561],[-55.57212,-28.14105],[-55.5709,-28.14855],[-55.57036,-28.154],[-55.56795,-28.16052],[-55.56344,-28.1627],[-55.55776,-28.16424],[-55.55431,-28.16401],[-55.54917,-28.16011],[-55.54481,-28.15652],[-55.54272,-28.15217],[-55.54013,-28.14513],[-55.53977,-28.14323],[-55.53941,-28.14225],[-55.53797,-28.13449],[-55.53711,-28.13087],[-55.53597,-28.12763],[-55.53153,-28.12201],[-55.52837,-28.11974],[-55.5237,-28.11785],[-55.51678,-28.11705],[-55.51172,-28.11518],[-55.50808,-28.11021],[-55.50427,-28.10117],[-55.50249,-28.09512],[-55.50073,-28.08839],[-55.49996,-28.08551],[-55.49749,-28.08118],[-55.49507,-28.0782],[-55.49004,-28.07667],[-55.4851,-28.0775],[-55.4806,-28.07968],[-55.47686,-28.08184],[-55.47351,-28.08432],[-55.4661,-28.09032],[-55.45863,-28.09462],[-55.45372,-28.09647],[-55.44798,-28.09631],[-55.44369,-28.09441],[-55.4406,-28.09129],[-55.43739,-28.08667],[-55.43684,-28.08701],[-55.43589,-28.08502],[-55.43258,-28.07902],[-55.42612,-28.0704],[-55.42017,-28.06516],[-55.41312,-28.06097],[-55.40061,-28.05424],[-55.39083,-28.04878],[-55.38415,-28.04424],[-55.37864,-28.04034],[-55.37429,-28.03483],[-55.3753,-28.03414],[-55.37325,-28.03155],[-55.37022,-28.0265],[-55.3681,-28.02114],[-55.37257,-28.00879],[-55.37618,-28.00325],[-55.38022,-27.99905],[-55.38276,-27.99558],[-55.38381,-27.99318],[-55.3856,-27.99007],[-55.38475,-27.98806],[-55.38269,-27.98439],[-55.37639,-27.9795],[-55.37019,-27.97732],[-55.36216,-27.97425],[-55.34389,-27.9726],[-55.33788,-27.96617],[-55.34115,-27.96508],[-55.33901,-27.962],[-55.33757,-27.95424],[-55.33505,-27.94394],[-55.3314,-27.93767],[-55.32697,-27.9317],[-55.323,-27.92809],[-55.3172,-27.92623],[-55.30719,-27.92416],[-55.29645,-27.92313],[-55.2834,-27.92149],[-55.27763,-27.9207],[-55.27762,-27.9179],[-55.26655,-27.91638],[-55.26,-27.91489],[-55.25334,-27.91068],[-55.24696,-27.90375],[-55.23818,-27.89383],[-55.23745,-27.8931],[-55.24075,-27.89881],[-55.2389,-27.89672],[-55.23136,-27.88915],[-55.22266,-27.88127],[-55.21206,-27.87378],[-55.20301,-27.86659],[-55.196,-27.86307],[-55.19023,-27.86188],[-55.18334,-27.86141],[-55.17458,-27.86201],[-55.16937,-27.86555],[-55.16193,-27.87086],[-55.15873,-27.87706],[-55.15444,-27.88498],[-55.14891,-27.89023],[-55.14062,-27.89319],[-55.13383,-27.89542],[-55.12881,-27.89388],[-55.12523,-27.88991],[-55.12473,-27.88728],[-55.1245,-27.88702],[-55.12355,-27.88196],[-55.12288,-27.87418],[-55.12409,-27.86567],[-55.12449,-27.8611],[-55.12211,-27.85744],[-55.11699,-27.85318],[-55.10847,-27.85004],[-55.09998,-27.84757],[-55.09078,-27.84648],[-55.08582,-27.84662],[-55.0767,-27.84757],[-55.07146,-27.85043],[-55.06204,-27.85375],[-55.05291,-27.85469],[-55.0434,-27.85564],[-55.03537,-27.85519],[-55.03189,-27.85394],[-55.02832,-27.85031],[-55.0262,-27.8446],[-55.02609,-27.84337],[-55.02548,-27.84171],[-55.02485,-27.83495],[-55.02546,-27.83086],[-55.03133,-27.82425],[-55.03646,-27.81834],[-55.04058,-27.81619],[-55.04694,-27.81295],[-55.0514,-27.80944],[-55.05357,-27.80819],[-55.06414,-27.80296],[-55.07128,-27.80005],[-55.07757,-27.79478],[-55.08005,-27.78962],[-55.0809,-27.78733],[-55.07978,-27.78609],[-55.07035,-27.77856],[-55.06295,-27.77437],[-55.05871,-27.77313],[-55.05332,-27.77193],[-55.04687,-27.77279],[-55.04097,-27.77839],[-55.03616,-27.78259],[-55.02736,-27.79234],[-55.02103,-27.79659],[-55.01381,-27.79747],[-55.00802,-27.7956],[-55.00293,-27.79202],[-55,-27.79012],[-54.99643,-27.78704],[-54.99442,-27.78306],[-54.9912,-27.78029],[-54.98686,-27.77634],[-54.9826,-27.77442],[-54.97762,-27.77389],[-54.97747,-27.77391],[-54.97802,-27.77683],[-54.97342,-27.77759],[-54.96354,-27.77854],[-54.95519,-27.77979],[-54.94719,-27.78002],[-54.94053,-27.77512],[-54.93723,-27.76809],[-54.93506,-27.76068],[-54.93226,-27.75703],[-54.92755,-27.75343],[-54.9221,-27.75019],[-54.91578,-27.74392],[-54.9102,-27.7373],[-54.90692,-27.7306],[-54.90393,-27.72153],[-54.90387,-27.72067],[-54.9032,-27.71864],[-54.90246,-27.70849],[-54.90252,-27.70635],[-54.90218,-27.69898],[-54.90277,-27.69859],[-54.90278,-27.68998],[-54.90274,-27.68373],[-54.90278,-27.66304],[-54.90319,-27.65319],[-54.90295,-27.6465],[-54.90034,-27.64091],[-54.8956,-27.6363],[-54.88442,-27.6322],[-54.87368,-27.63012],[-54.86569,-27.63034],[-54.85993,-27.62914],[-54.8526,-27.62662],[-54.84716,-27.62338],[-54.84597,-27.62154],[-54.8462,-27.62015],[-54.84361,-27.61616],[-54.83999,-27.6105],[-54.83655,-27.59906],[-54.82896,-27.5779],[-54.82513,-27.56614],[-54.8234,-27.56008],[-54.82284,-27.55467],[-54.81826,-27.54326],[-54.817,-27.5399],[-54.81189,-27.53529],[-54.80801,-27.53302],[-54.80383,-27.53314],[-54.8001,-27.53527],[-54.79638,-27.53775],[-54.79417,-27.54018],[-54.79317,-27.54427],[-54.79261,-27.55005],[-54.79237,-27.55413],[-54.78992,-27.56064],[-54.7882,-27.56611],[-54.78641,-27.56921],[-54.78725,-27.57123],[-54.78727,-27.57186],[-54.78714,-27.57209],[-54.78796,-27.57411],[-54.78809,-27.57783],[-54.78737,-27.57887],[-54.78592,-27.58128],[-54.78449,-27.58403],[-54.78115,-27.5865],[-54.77511,-27.58802],[-54.76897,-27.58648],[-54.76395,-27.58458],[-54.75923,-27.57996],[-54.75215,-27.57337],[-54.74747,-27.5701],[-54.74165,-27.56686],[-54.73702,-27.56495],[-54.73206,-27.56474],[-54.72601,-27.56592],[-54.72304,-27.56697],[-54.72333,-27.56373],[-54.72114,-27.5645],[-54.71634,-27.56597],[-54.70547,-27.56897],[-54.69851,-27.57086],[-54.6884,-27.57314],[-54.68258,-27.57263],[-54.67489,-27.57046],[-54.67025,-27.5682],[-54.66862,-27.56485],[-54.66827,-27.56169],[-54.66975,-27.55359],[-54.67346,-27.53862],[-54.67584,-27.52974],[-54.67738,-27.51885],[-54.6772,-27.51338],[-54.67472,-27.5113],[-54.67052,-27.51074],[-54.66524,-27.51223],[-54.66004,-27.51609],[-54.65637,-27.52026],[-54.6514,-27.53124],[-54.6479,-27.54082],[-54.64752,-27.54135],[-54.64354,-27.5467],[-54.63869,-27.54988],[-54.62959,-27.55079],[-54.62385,-27.54992],[-54.62036,-27.54798],[-54.61718,-27.54365],[-54.61396,-27.5383],[-54.61185,-27.53191],[-54.60929,-27.5235],[-54.60638,-27.51578],[-54.60442,-27.51195],[-54.60514,-27.51191],[-54.60118,-27.50419],[-54.5994,-27.50129],[-54.59584,-27.49666],[-54.59369,-27.49141],[-54.59098,-27.48597],[-54.58868,-27.47765],[-54.5865,-27.46848],[-54.58424,-27.46296],[-54.58119,-27.46039],[-54.57641,-27.4583],[-54.57317,-27.45772],[-54.56675,-27.4581],[-54.56356,-27.45929],[-54.55945,-27.46226],[-54.55758,-27.46584],[-54.55332,-27.47214],[-54.5507,-27.47552],[-54.5457,-27.48183],[-54.54211,-27.48612],[-54.53439,-27.50045],[-54.53106,-27.50495],[-54.52691,-27.50682],[-54.52468,-27.50687],[-54.52143,-27.50607],[-54.51767,-27.50484],[-54.5154,-27.50335],[-54.51383,-27.50096],[-54.51152,-27.49837],[-54.50897,-27.496],[-54.50669,-27.49451],[-54.50514,-27.49234],[-54.50332,-27.48973],[-54.50153,-27.48801],[-54.49872,-27.48521],[-54.49568,-27.48329],[-54.4927,-27.48292],[-54.48693,-27.48086],[-54.48194,-27.47965],[-54.47552,-27.48048],[-54.47229,-27.48011],[-54.46882,-27.47998],[-54.4646,-27.48008],[-54.45815,-27.47979],[-54.4544,-27.47856],[-54.44963,-27.47647],[-54.44703,-27.47255],[-54.44543,-27.46906],[-54.44519,-27.46727],[-54.4447,-27.46617],[-54.44437,-27.46375],[-54.44688,-27.45684],[-54.44781,-27.45461],[-54.45215,-27.45075],[-54.45553,-27.44802],[-54.46041,-27.44547],[-54.464,-27.4414],[-54.46685,-27.43736],[-54.46975,-27.43529],[-54.47091,-27.43262],[-54.47157,-27.43038],[-54.47046,-27.42912],[-54.46844,-27.42807],[-54.4637,-27.42686],[-54.45773,-27.42612],[-54.45104,-27.42584],[-54.44384,-27.42558],[-54.43736,-27.42397],[-54.43232,-27.42144],[-54.42753,-27.41846],[-54.42398,-27.41589],[-54.41995,-27.41378],[-54.41495,-27.41213],[-54.41073,-27.4118],[-54.40481,-27.4126],[-54.40188,-27.414],[-54.39531,-27.41769],[-54.39097,-27.42177],[-54.38555,-27.43074],[-54.38036,-27.43925],[-54.37236,-27.45336],[-54.36882,-27.45941],[-54.3645,-27.46371],[-54.35787,-27.46564],[-54.35321,-27.46751],[-54.34555,-27.46813],[-54.34027,-27.46561],[-54.33692,-27.46127],[-54.33682,-27.46029],[-54.33867,-27.46161],[-54.33619,-27.45839],[-54.33548,-27.45155],[-54.33622,-27.44292],[-54.34019,-27.43488],[-54.34367,-27.42706],[-54.34391,-27.41866],[-54.34389,-27.41068],[-54.3425,-27.40768],[-54.33897,-27.40555],[-54.33452,-27.40543],[-54.32962,-27.40732],[-54.32309,-27.41106],[-54.3179,-27.41418],[-54.31369,-27.41813],[-54.31001,-27.42336],[-54.30771,-27.42683],[-54.30492,-27.4299],[-54.30173,-27.43554],[-54.29852,-27.44075],[-54.28812,-27.44614],[-54.28238,-27.44712],[-54.27752,-27.44509],[-54.27305,-27.44005],[-54.26649,-27.42907],[-54.26644,-27.42735],[-54.26575,-27.42619],[-54.26564,-27.42234],[-54.26652,-27.41975],[-54.2678,-27.41415],[-54.26858,-27.40814],[-54.26823,-27.40523],[-54.26518,-27.40084],[-54.25934,-27.39798],[-54.25354,-27.3964],[-54.24724,-27.3944],[-54.23951,-27.39286],[-54.23227,-27.39132],[-54.22743,-27.3914],[-54.22221,-27.38837],[-54.21858,-27.38473],[-54.21625,-27.38164],[-54.21415,-27.37539],[-54.21412,-27.37456],[-54.21341,-27.37251],[-54.21283,-27.35222],[-54.21095,-27.34253],[-54.20974,-27.33522],[-54.20674,-27.32922],[-54.20138,-27.32105],[-54.19565,-27.31117],[-54.19189,-27.30296],[-54.19154,-27.30092],[-54.19115,-27.30008],[-54.19,-27.29352],[-54.18922,-27.28839],[-54.18796,-27.27784],[-54.18704,-27.27358],[-54.18453,-27.26937],[-54.18023,-27.26432],[-54.17596,-27.2607],[-54.17014,-27.25883],[-54.16661,-27.25833],[-54.16406,-27.25868],[-54.16155,-27.26073],[-54.1591,-27.26451],[-54.15731,-27.26912],[-54.15678,-27.27314],[-54.15826,-27.28026],[-54.15813,-27.28712],[-54.1583,-27.29313],[-54.15649,-27.29689],[-54.1549,-27.2981],[-54.15488,-27.29667],[-54.15755,-27.29327],[-54.15722,-27.29096],[-54.15575,-27.294],[-54.1523,-27.29665],[-54.14564,-27.29909],[-54.1424,-27.29934],[-54.12989,-27.3016],[-54.11129,-27.3028],[-54.11065,-27.3048],[-54.1093,-27.30479],[-54.09839,-27.30389],[-54.08906,-27.30265],[-54.08097,-27.29969],[-54.07573,-27.29522],[-54.07144,-27.29074],[-54.06473,-27.27973],[-54.06067,-27.27152],[-54.05669,-27.26646],[-54.05308,-27.26339],[-54.04756,-27.26065],[-54.03788,-27.25771],[-54.02981,-27.25531],[-54.02526,-27.25283],[-54.02163,-27.24862],[-54.0183,-27.24383],[-54.01769,-27.24113],[-54.01756,-27.24094],[-54.01537,-27.23127],[-54.01476,-27.22041],[-54.0136,-27.213],[-54.01263,-27.20798],[-54.00892,-27.20456],[-54.00115,-27.201],[-53.99278,-27.19946],[-53.98572,-27.19847],[-53.97868,-27.19861],[-53.97457,-27.20042],[-53.97046,-27.2025],[-53.96439,-27.20263],[-53.95956,-27.20159],[-53.95662,-27.19936],[-53.95481,-27.1925],[-53.95469,-27.18792],[-53.95555,-27.17189],[-53.95509,-27.16646],[-53.95369,-27.16191],[-53.95136,-27.15825],[-53.94872,-27.15544],[-53.94388,-27.15382],[-53.93747,-27.15339],[-53.93368,-27.15518],[-53.92804,-27.15987],[-53.92181,-27.166],[-53.91683,-27.17126],[-53.91114,-27.17423],[-53.90571,-27.17463],[-53.90122,-27.17415],[-53.89699,-27.17138],[-53.8927,-27.16632],[-53.88723,-27.15385],[-53.88594,-27.14903],[-53.88515,-27.14616],[-53.88236,-27.13707],[-53.87809,-27.13286],[-53.87453,-27.13122],[-53.86839,-27.1308],[-53.86301,-27.13088],[-53.8573,-27.13271],[-53.85482,-27.1359],[-53.85251,-27.14539],[-53.84827,-27.15491],[-53.84487,-27.15984],[-53.83575,-27.16603],[-53.83325,-27.16744],[-53.8338,-27.16952],[-53.83033,-27.17095],[-53.83053,-27.16898],[-53.83024,-27.16139],[-53.83072,-27.15637],[-53.8288,-27.15112],[-53.82149,-27.14574],[-53.79786,-27.14457],[-53.79599,-27.14139],[-53.79845,-27.13675],[-53.80544,-27.13915],[-53.81594,-27.1385],[-53.81895,-27.13545],[-53.82018,-27.13234],[-53.81979,-27.13144],[-53.8085,-27.13096],[-53.80419,-27.12208],[-53.80441,-27.1212],[-53.80344,-27.1192],[-53.80486,-27.11366],[-53.81292,-27.10708],[-53.81387,-27.10498],[-53.81301,-27.10378],[-53.80866,-27.10409],[-53.79833,-27.11231],[-53.79269,-27.11265],[-53.77951,-27.10853],[-53.77533,-27.10492],[-53.77692,-27.10406],[-53.77458,-27.10204],[-53.79435,-27.09135],[-53.79811,-27.08738],[-53.79953,-27.08117],[-53.79619,-27.07446],[-53.79363,-27.07473],[-53.78329,-27.0825],[-53.77661,-27.08193],[-53.774,-27.07991],[-53.77335,-27.0771],[-53.77326,-27.07703],[-53.77241,-27.07337],[-53.77982,-27.07232],[-53.79192,-27.06314],[-53.79622,-27.04905],[-53.79434,-27.04495],[-53.78975,-27.04641],[-53.76867,-27.06678],[-53.7646,-27.068],[-53.76201,-27.0669],[-53.76017,-27.06532],[-53.75983,-27.06099],[-53.76569,-27.05971],[-53.76821,-27.0576],[-53.77699,-27.03723],[-53.77694,-27.03509],[-53.76483,-27.04816],[-53.76254,-27.04889],[-53.75995,-27.04755],[-53.75801,-27.04093],[-53.74873,-27.03857],[-53.74689,-27.03677],[-53.74656,-27.03429],[-53.74615,-27.03388],[-53.74553,-27.0293],[-53.75311,-27.02388],[-53.75705,-27.01665],[-53.75562,-27.01433],[-53.75074,-27.0135],[-53.73932,-27.01876],[-53.73597,-27.01813],[-53.73284,-27.01543],[-53.7307,-27.01133],[-53.73108,-27.01061],[-53.72995,-27.00845],[-53.73179,-27.00499],[-53.7316,-27.00478],[-53.73196,-27.00467],[-53.73951,-27.00024],[-53.74091,-26.99811],[-53.74012,-26.99692],[-53.72737,-26.99968],[-53.7204,-26.99751],[-53.71827,-26.99364],[-53.71873,-26.99294],[-53.71752,-26.99076],[-53.71951,-26.98774],[-53.73065,-26.98157],[-53.73362,-26.97692],[-53.72866,-26.97265],[-53.72644,-26.96511],[-53.72258,-26.96426],[-53.71008,-26.96654],[-53.70517,-26.96457],[-53.70194,-26.95727],[-53.70496,-26.94298],[-53.70388,-26.94024],[-53.69902,-26.94079],[-53.68813,-26.94649],[-53.67717,-26.94898],[-53.67432,-26.94742],[-53.67405,-26.94581],[-53.67333,-26.94594],[-53.67255,-26.94483],[-53.67383,-26.94454],[-53.69,-26.93796],[-53.69252,-26.93539],[-53.69132,-26.9321],[-53.67757,-26.92408],[-53.67491,-26.91907],[-53.67523,-26.91819],[-53.67416,-26.91619],[-53.67661,-26.90938],[-53.67406,-26.90324],[-53.67429,-26.9027],[-53.67331,-26.90036],[-53.67429,-26.8981],[-53.67176,-26.89303],[-53.68418,-26.89523],[-53.68728,-26.89483],[-53.69054,-26.89179],[-53.69046,-26.88836],[-53.68452,-26.87779],[-53.68504,-26.87715],[-53.68378,-26.87491],[-53.69001,-26.86722],[-53.68843,-26.86496],[-53.66418,-26.86814],[-53.66157,-26.86566],[-53.67656,-26.84863],[-53.68212,-26.84693],[-53.66116,-26.84188],[-53.67674,-26.84341],[-53.69383,-26.84652],[-53.69274,-26.8432],[-53.69285,-26.84294],[-53.69199,-26.84032],[-53.70105,-26.81928],[-53.70091,-26.81894],[-53.69681,-26.81832],[-53.69728,-26.81563],[-53.69606,-26.81544],[-53.69675,-26.81153],[-53.70117,-26.80318],[-53.711,-26.79611],[-53.71133,-26.78784],[-53.70971,-26.7842],[-53.70298,-26.78041],[-53.70112,-26.777],[-53.70309,-26.77352],[-53.70691,-26.77299],[-53.71168,-26.77725],[-53.71541,-26.77905],[-53.7154,-26.78],[-53.72231,-26.78029],[-53.73105,-26.77739],[-53.73521,-26.7733],[-53.73417,-26.77195],[-53.72085,-26.77105],[-53.71694,-26.76767],[-53.71681,-26.76532],[-53.7162,-26.76479],[-53.71579,-26.75768],[-53.71677,-26.75651],[-53.71439,-26.74923],[-53.72072,-26.75183],[-53.72327,-26.74882],[-53.72485,-26.73961],[-53.72709,-26.73635],[-53.72987,-26.73538],[-53.73343,-26.74611],[-53.73831,-26.74694],[-53.7462,-26.74542],[-53.7489,-26.74374],[-53.74578,-26.74166],[-53.74419,-26.73558],[-53.75189,-26.72488],[-53.75363,-26.71757],[-53.75314,-26.71626],[-53.74984,-26.71701],[-53.74262,-26.7261],[-53.73828,-26.72618],[-53.73567,-26.7237],[-53.73397,-26.71592],[-53.73401,-26.7157],[-53.73322,-26.71304],[-53.73482,-26.70429],[-53.7395,-26.69346],[-53.73829,-26.6915],[-53.73341,-26.69067],[-53.72493,-26.70001],[-53.71981,-26.69987],[-53.7164,-26.69556],[-53.717,-26.69438],[-53.71566,-26.69269],[-53.71835,-26.68736],[-53.72369,-26.68634],[-53.72537,-26.68399],[-53.71827,-26.67601],[-53.71475,-26.66643],[-53.71481,-26.66576],[-53.714,-26.66355],[-53.71484,-26.65527],[-53.71777,-26.65275],[-53.7208,-26.65907],[-53.7259,-26.65852],[-53.73009,-26.65155],[-53.74084,-26.65228],[-53.74566,-26.65104],[-53.74945,-26.64891],[-53.75193,-26.64365],[-53.75213,-26.64335],[-53.75105,-26.64038],[-53.74112,-26.64171],[-53.73802,-26.64039],[-53.73583,-26.63376],[-53.72906,-26.62769],[-53.72769,-26.62335],[-53.7294,-26.61946],[-53.73298,-26.6112],[-53.73215,-26.60939],[-53.72723,-26.60603],[-53.72612,-26.60215],[-53.72618,-26.60189],[-53.72538,-26.59928],[-53.72744,-26.5905],[-53.72713,-26.58996],[-53.72073,-26.58916],[-53.72009,-26.58575],[-53.71797,-26.57552],[-53.7185,-26.5706],[-53.71774,-26.569],[-53.70821,-26.56504],[-53.70688,-26.56253],[-53.70726,-26.56176],[-53.70614,-26.55966],[-53.7076,-26.55665],[-53.7117,-26.55727],[-53.72034,-26.56241],[-53.72165,-26.56241],[-53.72172,-26.56324],[-53.72592,-26.56574],[-53.72976,-26.5659],[-53.73136,-26.56352],[-53.72574,-26.56128],[-53.72465,-26.55785],[-53.72476,-26.55766],[-53.7239,-26.55498],[-53.72612,-26.55127],[-53.73575,-26.54834],[-53.73717,-26.54547],[-53.73149,-26.54395],[-53.72051,-26.54346],[-53.71711,-26.53962],[-53.71751,-26.53849],[-53.71748,-26.538],[-53.71636,-26.53674],[-53.72213,-26.52057],[-53.72394,-26.50974],[-53.7234,-26.50184],[-53.72088,-26.50189],[-53.71535,-26.50566],[-53.71198,-26.50296],[-53.70672,-26.50742],[-53.70365,-26.50725],[-53.70231,-26.50451],[-53.70258,-26.5037],[-53.70157,-26.50164],[-53.70339,-26.49602],[-53.69457,-26.48858],[-53.69522,-26.48688],[-53.69383,-26.48571],[-53.69866,-26.47299],[-53.70094,-26.47249],[-53.7046,-26.47656],[-53.70689,-26.47606],[-53.70805,-26.47075],[-53.71127,-26.46633],[-53.70968,-26.46338],[-53.70559,-26.46299],[-53.69901,-26.4654],[-53.69763,-26.4606],[-53.70298,-26.44206],[-53.70274,-26.44136],[-53.69816,-26.44166],[-53.69016,-26.44893],[-53.68675,-26.44439],[-53.68678,-26.44255],[-53.686,-26.44152],[-53.6862,-26.43051],[-53.6844,-26.42868],[-53.68793,-26.42872],[-53.69274,-26.43018],[-53.69766,-26.4158],[-53.70505,-26.41497],[-53.70518,-26.40912],[-53.70055,-26.40899],[-53.69621,-26.40272],[-53.70638,-26.39591],[-53.70898,-26.38782],[-53.70055,-26.38791],[-53.69712,-26.37943],[-53.70096,-26.37333],[-53.69935,-26.36381],[-53.68963,-26.35969],[-53.69552,-26.35523],[-53.68901,-26.35435],[-53.68485,-26.33662],[-53.67618,-26.3353],[-53.62554,-26.33676],[-53.62479,-26.33815],[-53.62346,-26.3316],[-53.61646,-26.32552],[-53.6153,-26.31888],[-53.6163,-26.30554],[-53.61207,-26.28541],[-53.60941,-26.28017],[-53.60066,-26.27573],[-53.59184,-26.26489],[-53.59291,-26.26435],[-53.59874,-26.25781],[-53.60195,-26.25349],[-53.61026,-26.24481],[-53.62001,-26.23696],[-53.62875,-26.22614],[-53.63335,-26.22072],[-53.63821,-26.21637],[-53.64332,-26.21222],[-53.64676,-26.20768],[-53.64877,-26.20253],[-53.65032,-26.19803],[-53.65112,-26.1963],[-53.65103,-26.19466],[-53.652,-26.19439],[-53.65279,-26.19265],[-53.65575,-26.18791],[-53.65968,-26.184],[-53.66382,-26.1788],[-53.66657,-26.17513],[-53.67073,-26.17143],[-53.67583,-26.16728],[-53.6835,-26.16159],[-53.69185,-26.15525],[-53.70229,-26.14695],[-53.70386,-26.14568],[-53.70696,-26.13954],[-53.71636,-26.12669],[-53.72242,-26.12911],[-53.72378,-26.12672],[-53.7228,-26.12043],[-53.72067,-26.11588],[-53.71609,-26.09208],[-53.71658,-26.07945],[-53.71822,-26.07322],[-53.72915,-26.05925],[-53.72935,-26.05604],[-53.73383,-26.04266],[-53.7364,-26.04039],[-53.73925,-26.04286],[-53.74203,-26.04236],[-53.74573,-26.03724],[-53.75238,-26.03941],[-53.75323,-26.03182],[-53.75576,-26.03131],[-53.75834,-26.0331],[-53.76289,-26.0321],[-53.76657,-26.0263],[-53.77061,-26.02438],[-53.77301,-26.01837],[-53.77802,-26.0153],[-53.77916,-26.00954],[-53.78649,-26.00802],[-53.79218,-26.00103],[-53.79903,-26.00113],[-53.80576,-25.99504],[-53.80151,-25.98708],[-53.8027,-25.98338],[-53.80524,-25.98334],[-53.81067,-25.98783],[-53.81523,-25.98728],[-53.82095,-25.9819],[-53.81656,-25.9783],[-53.81674,-25.97532],[-53.82814,-25.97441],[-53.8339,-25.97063],[-53.83658,-25.96576],[-53.83524,-25.9628],[-53.83168,-25.96241],[-53.82985,-25.96015],[-53.83756,-25.95265],[-53.84278,-25.93614],[-53.83857,-25.93416],[-53.83837,-25.93155],[-53.83783,-25.9313],[-53.83731,-25.92424],[-53.83427,-25.92391],[-53.82858,-25.93021],[-53.82504,-25.93074],[-53.82453,-25.92784],[-53.8243,-25.92788],[-53.82153,-25.91205],[-53.8186,-25.91237],[-53.8215,-25.91187],[-53.8211,-25.90957],[-53.82385,-25.90791],[-53.82929,-25.91286],[-53.83207,-25.91235],[-53.83345,-25.90992],[-53.8219,-25.90394],[-53.81901,-25.89963],[-53.82506,-25.89791],[-53.83374,-25.89886],[-53.83466,-25.89589],[-53.83373,-25.89365],[-53.83392,-25.89303],[-53.83231,-25.88916],[-53.83354,-25.88752],[-53.84397,-25.88871],[-53.84774,-25.88703],[-53.85095,-25.88329],[-53.8486,-25.88035],[-53.84198,-25.8791],[-53.83759,-25.87597],[-53.8272,-25.87639],[-53.82383,-25.87301],[-53.82588,-25.87149],[-53.83015,-25.87005],[-53.83542,-25.86935],[-53.83222,-25.86252],[-53.83366,-25.85905],[-53.84127,-25.85937],[-53.84379,-25.85817],[-53.84525,-25.85585],[-53.84014,-25.85411],[-53.83848,-25.85175],[-53.84209,-25.84317],[-53.84869,-25.84374],[-53.84961,-25.83959],[-53.84865,-25.83774],[-53.84888,-25.83672],[-53.84437,-25.82809],[-53.83952,-25.82657],[-53.83791,-25.82293],[-53.83854,-25.81718],[-53.83698,-25.81537],[-53.82433,-25.81653],[-53.82397,-25.81148],[-53.82745,-25.80641],[-53.82233,-25.79522],[-53.82299,-25.79061],[-53.82577,-25.7901],[-53.83064,-25.79253],[-53.84026,-25.79212],[-53.84229,-25.79089],[-53.83574,-25.78681],[-53.83518,-25.7841],[-53.83501,-25.78396],[-53.83387,-25.77847],[-53.83634,-25.77589],[-53.83856,-25.77496],[-53.84297,-25.77076],[-53.84408,-25.77263],[-53.85116,-25.76965],[-53.85322,-25.76698],[-53.85014,-25.76244],[-53.84431,-25.76209],[-53.84357,-25.75923],[-53.84307,-25.75699],[-53.83625,-25.75306],[-53.8382,-25.75175],[-53.83551,-25.7502],[-53.84899,-25.74122],[-53.85867,-25.74356],[-53.86245,-25.7428],[-53.86314,-25.7398],[-53.85936,-25.72931],[-53.86065,-25.71919],[-53.86213,-25.71755],[-53.86672,-25.71884],[-53.87062,-25.71234],[-53.87717,-25.71061],[-53.88062,-25.70641],[-53.8788,-25.70438],[-53.86814,-25.70366],[-53.86556,-25.70142],[-53.87098,-25.69466],[-53.8704,-25.69122],[-53.86656,-25.69136],[-53.85645,-25.70182],[-53.85243,-25.70304],[-53.85007,-25.69965],[-53.85378,-25.69567],[-53.85409,-25.69444],[-53.84601,-25.69203],[-53.84392,-25.68932],[-53.84456,-25.68825],[-53.84319,-25.68646],[-53.84514,-25.68321],[-53.85373,-25.68259],[-53.85548,-25.67016],[-53.86285,-25.66015],[-53.86835,-25.65706],[-53.87569,-25.65715],[-53.88208,-25.65955],[-53.8848,-25.65674],[-53.88485,-25.65222],[-53.87924,-25.65031],[-53.87608,-25.64486],[-53.87655,-25.64407],[-53.87534,-25.642],[-53.88597,-25.6418],[-53.8892,-25.63921],[-53.88912,-25.63568],[-53.88714,-25.63065],[-53.88738,-25.63026],[-53.88641,-25.62779],[-53.88983,-25.62244],[-53.89388,-25.62282],[-53.90121,-25.63324],[-53.90352,-25.63434],[-53.90723,-25.63083],[-53.91184,-25.63327],[-53.91512,-25.63251],[-53.91254,-25.61948],[-53.91374,-25.6167],[-53.92218,-25.62044],[-53.92774,-25.6201],[-53.93463,-25.61193],[-53.93968,-25.61137],[-53.94674,-25.62133],[-53.94602,-25.62214],[-53.94748,-25.62419],[-53.94032,-25.63213],[-53.94056,-25.63523],[-53.94364,-25.63999],[-53.95075,-25.64077],[-53.955,-25.63862],[-53.95916,-25.63257],[-53.96351,-25.61342],[-53.96942,-25.60642],[-53.9687,-25.59749],[-53.97813,-25.58681],[-53.98744,-25.57858],[-53.99642,-25.57279],[-54.00476,-25.56848],[-54.00996,-25.56629],[-54.01544,-25.56617],[-54.02073,-25.56772],[-54.02586,-25.57134],[-54.03334,-25.5778],[-54.0378,-25.58247],[-54.04177,-25.58549],[-54.04591,-25.58664],[-54.05097,-25.58736],[-54.0546,-25.58645],[-54.05973,-25.58178],[-54.06531,-25.5769],[-54.06981,-25.57452],[-54.07253,-25.57363],[-54.07575,-25.57419],[-54.079,-25.57598],[-54.08097,-25.58152],[-54.08134,-25.58337],[-54.0817,-25.58438],[-54.08302,-25.59098],[-54.08225,-25.59638],[-54.08032,-25.60078],[-54.08003,-25.607],[-54.08066,-25.61361],[-54.08123,-25.61651],[-54.08362,-25.62041],[-54.08595,-25.62202],[-54.09056,-25.62316],[-54.09626,-25.62282],[-54.10037,-25.62253],[-54.10349,-25.61977],[-54.10611,-25.61536],[-54.10911,-25.60783],[-54.11739,-25.59294],[-54.12408,-25.57871],[-54.12878,-25.56659],[-54.12904,-25.56077],[-54.12854,-25.55911],[-54.12143,-25.54994],[-54.11762,-25.54423],[-54.11261,-25.53626],[-54.10547,-25.52586],[-54.10259,-25.52074],[-54.10206,-25.51825],[-54.10186,-25.51789],[-54.10082,-25.51294],[-54.10071,-25.50901],[-54.10177,-25.50629],[-54.10488,-25.50291],[-54.10987,-25.50155],[-54.11467,-25.50207],[-54.12022,-25.50443],[-54.12763,-25.5082],[-54.13393,-25.51324],[-54.13712,-25.5159],[-54.14407,-25.52087],[-54.14316,-25.52167],[-54.14708,-25.52604],[-54.15012,-25.53172],[-54.1597,-25.54369],[-54.16592,-25.54729],[-54.17227,-25.54887],[-54.17532,-25.54935],[-54.18128,-25.54963],[-54.18945,-25.548],[-54.1931,-25.5477],[-54.19813,-25.548],[-54.20617,-25.54968],[-54.20989,-25.55167],[-54.21271,-25.55451],[-54.21349,-25.55801],[-54.2127,-25.56217],[-54.21004,-25.56513],[-54.20624,-25.56832],[-54.19948,-25.57138],[-54.19336,-25.57318],[-54.1879,-25.57413],[-54.18428,-25.57546],[-54.18092,-25.57802],[-54.17914,-25.57951],[-54.17897,-25.58158],[-54.17864,-25.58487],[-54.18076,-25.58717],[-54.1833,-25.58835],[-54.18879,-25.58823],[-54.19332,-25.58688],[-54.19761,-25.58513],[-54.20599,-25.58245],[-54.21071,-25.57965],[-54.21631,-25.57538],[-54.22054,-25.57176],[-54.22187,-25.57007],[-54.22592,-25.56811],[-54.22888,-25.56763],[-54.23232,-25.56796],[-54.236,-25.56912],[-54.23811,-25.57073],[-54.23937,-25.57484],[-54.2395,-25.5794],[-54.23868,-25.58294],[-54.23819,-25.58978],[-54.23831,-25.59392],[-54.23908,-25.59701],[-54.24095,-25.59821],[-54.24509,-25.59936],[-54.25081,-25.59964],[-54.25613,-25.59749],[-54.25937,-25.59488],[-54.26289,-25.59045],[-54.26706,-25.58435],[-54.2705,-25.57681],[-54.27266,-25.57241],[-54.2762,-25.56818],[-54.28041,-25.56373],[-54.28466,-25.56073],[-54.28729,-25.55981],[-54.29082,-25.56038],[-54.2954,-25.56069],[-54.29979,-25.56245],[-54.30513,-25.56522],[-54.30906,-25.56699],[-54.31598,-25.56911],[-54.32151,-25.57084],[-54.32545,-25.57261],[-54.32755,-25.57401],[-54.3292,-25.57584],[-54.33233,-25.58135],[-54.33477,-25.58647],[-54.33674,-25.5914],[-54.33966,-25.59733],[-54.3416,-25.60123],[-54.34443,-25.60427],[-54.35051,-25.60889],[-54.35307,-25.61027],[-54.35603,-25.60979],[-54.35922,-25.60951],[-54.36416,-25.60649],[-54.36776,-25.60474],[-54.3709,-25.60332],[-54.37705,-25.60182],[-54.38163,-25.60213],[-54.38673,-25.6047],[-54.38864,-25.60734],[-54.38969,-25.61208],[-54.3894,-25.61748],[-54.39031,-25.62491],[-54.39221,-25.63522],[-54.39252,-25.63583],[-54.39294,-25.63808],[-54.39585,-25.64381],[-54.40161,-25.65278],[-54.40398,-25.65562],[-54.40789,-25.65636],[-54.41368,-25.6587],[-54.41645,-25.65967],[-54.41953,-25.66312],[-54.42308,-25.66717],[-54.42594,-25.67104],[-54.42658,-25.67311],[-54.42741,-25.68015],[-54.42709,-25.68471],[-54.42586,-25.68951],[-54.4251,-25.6947],[-54.42519,-25.69781],[-54.42761,-25.7021],[-54.42947,-25.70309],[-54.43313,-25.703],[-54.43608,-25.7021],[-54.44011,-25.69931],[-54.44344,-25.69612],[-54.44508,-25.69302],[-54.44658,-25.67393],[-54.4521,-25.66324],[-54.48114,-25.63385],[-54.4898,-25.62676],[-54.49856,-25.62334],[-54.50568,-25.62454],[-54.5214,-25.63404],[-54.52822,-25.63365],[-54.53342,-25.62962],[-54.53581,-25.62474],[-54.54062,-25.60807],[-54.54281,-25.60209],[-54.54534,-25.59772],[-54.55172,-25.59271],[-54.5582,-25.5912],[-54.56382,-25.59052],[-54.58166,-25.59114],[-54.59565,-25.59212],[-54.59611,-25.57865],[-54.59757,-25.56839],[-54.59766,-25.55278],[-54.59851,-25.54199],[-54.60038,-25.52606],[-54.60215,-25.50691],[-54.60567,-25.49581],[-54.615,-25.46324],[-54.61603,-25.45837],[-54.61596,-25.45622],[-54.61253,-25.45092],[-54.60853,-25.44618],[-54.60295,-25.43879],[-54.59852,-25.43002],[-54.59293,-25.42209],[-54.58972,-25.4141],[-54.58648,-25.40531],[-54.58204,-25.39627],[-54.57827,-25.38937],[-54.57455,-25.38435],[-54.56902,-25.37804],[-54.56285,-25.37039],[-54.55706,-25.36515],[-54.55032,-25.35806],[-54.54417,-25.35095],[-54.53152,-25.33486],[-54.52591,-25.32585],[-54.51755,-25.31422],[-54.51011,-25.30364],[-54.50478,-25.29409],[-54.5001,-25.28614],[-54.49598,-25.27736],[-54.49295,-25.2656],[-54.48681,-25.2488],[-54.48264,-25.23814],[-54.47786,-25.22696],[-54.47253,-25.21713],[-54.46534,-25.20466],[-54.45942,-25.19459],[-54.45288,-25.18399],[-54.44633,-25.17285],[-54.43919,-25.16172],[-54.43602,-25.15454],[-54.43587,-25.1497],[-54.43628,-25.14377],[-54.43909,-25.13886],[-54.44811,-25.1241],[-54.45347,-25.11563],[-54.45797,-25.10798],[-54.45956,-25.10202],[-54.4617,-25.0947],[-54.46405,-25.08442],[-54.46499,-25.07633],[-54.46446,-25.06854],[-54.46185,-25.05084],[-54.45704,-25.02863],[-54.45334,-25.01366],[-54.44308,-24.97706],[-54.43409,-24.94338],[-54.42891,-24.92817],[-54.42494,-24.91374],[-54.4205,-24.89368],[-54.41648,-24.87764],[-54.41153,-24.86],[-54.40454,-24.83327],[-54.39745,-24.813],[-54.39135,-24.79648],[-54.38855,-24.79143],[-54.38601,-24.78504],[-54.38163,-24.77654],[-54.37784,-24.76802],[-54.37466,-24.7603],[-54.37119,-24.75258],[-54.36674,-24.74139],[-54.36318,-24.73072],[-54.36058,-24.72218],[-54.35786,-24.70987],[-54.3493,-24.6891],[-54.33801,-24.65548],[-54.3351,-24.64641],[-54.33404,-24.64052],[-54.33259,-24.63114],[-54.33061,-24.62365],[-54.33061,-24.61343],[-54.33154,-24.60507],[-54.33255,-24.58918],[-54.33347,-24.58028],[-54.33441,-24.57219],[-54.33532,-24.5633],[-54.33716,-24.55545],[-54.33782,-24.54791],[-54.33812,-24.53795],[-54.3377,-24.52371],[-54.33664,-24.51055],[-54.33666,-24.5101],[-54.33528,-24.50091],[-54.33231,-24.48995],[-54.32852,-24.4809],[-54.32504,-24.47238],[-54.32069,-24.46442],[-54.31546,-24.4562],[-54.30908,-24.4491],[-54.30415,-24.44115],[-54.29801,-24.43188],[-54.28951,-24.4224],[-54.28523,-24.41659],[-54.2763,-24.40228],[-54.26666,-24.38342],[-54.26245,-24.37446],[-54.25925,-24.36047],[-54.25864,-24.34919],[-54.25944,-24.336],[-54.26069,-24.32817],[-54.265,-24.31462],[-54.27414,-24.29559],[-54.27828,-24.28608],[-54.28506,-24.27704],[-54.29219,-24.26988],[-54.29961,-24.26272],[-54.30989,-24.25356],[-54.31142,-24.25226],[-54.31823,-24.24695],[-54.32338,-24.24252],[-54.32563,-24.23924],[-54.32752,-24.23355],[-54.32822,-24.22735],[-54.32924,-24.22195],[-54.32936,-24.21603],[-54.32738,-24.20805],[-54.32594,-24.19891],[-54.32469,-24.1863],[-54.32441,-24.17663],[-54.32651,-24.16824],[-54.32807,-24.16122],[-54.33062,-24.14825],[-54.33045,-24.14207],[-54.32935,-24.13457],[-54.32799,-24.12815],[-54.3258,-24.12337],[-54.32246,-24.11942],[-54.31704,-24.11417],[-54.3098,-24.10682],[-54.30048,-24.09871],[-54.29025,-24.08928],[-54.28363,-24.08298],[-54.28054,-24.07768],[-54.28047,-24.07499],[-54.28125,-24.07175],[-54.28386,-24.06748],[-54.29144,-24.05914],[-54.29884,-24.05171],[-54.30399,-24.04728],[-54.3094,-24.04204],[-54.31502,-24.03384],[-54.3172,-24.02815],[-54.31741,-24.02519],[-54.31517,-24.01879],[-54.31475,-24.01423],[-54.31584,-24.01151],[-54.31899,-24.00902],[-54.32391,-24.00702],[-54.33089,-24.00576],[-54.33618,-24.00618],[-54.34349,-24.00601],[-54.35567,-24.00195],[-54.36667,-23.99719],[-54.37576,-23.98361],[-54.38887,-23.96175],[-54.39909,-23.93743],[-54.41091,-23.92426],[-54.43173,-23.91212],[-54.45992,-23.9022],[-54.48266,-23.8819],[-54.49531,-23.87949],[-54.51344,-23.88488],[-54.52625,-23.87217],[-54.5361,-23.86973],[-54.54588,-23.87115],[-54.56121,-23.8765],[-54.56828,-23.87273],[-54.56571,-23.85724],[-54.57287,-23.84703],[-54.59826,-23.83576],[-54.62074,-23.8309],[-54.62911,-23.83357],[-54.64029,-23.835],[-54.65454,-23.81844],[-54.66713,-23.81257],[-54.67534,-23.81357],[-54.67978,-23.81728],[-54.68311,-23.82284],[-54.68486,-23.82497],[-54.69428,-23.83278],[-54.69746,-23.83739],[-54.69885,-23.84611],[-54.69801,-23.85435],[-54.70045,-23.85827],[-54.72033,-23.8626],[-54.74024,-23.86348],[-54.75928,-23.85427],[-54.76325,-23.85568],[-54.76616,-23.86235],[-54.77435,-23.86564],[-54.78707,-23.86438],[-54.79773,-23.86884],[-54.80335,-23.87874],[-54.81525,-23.88344],[-54.82321,-23.88489],[-54.83157,-23.88365],[-54.83915,-23.88526],[-54.84237,-23.88735],[-54.84897,-23.89887],[-54.85439,-23.90442],[-54.86086,-23.90494],[-54.87112,-23.90067],[-54.8794,-23.89525],[-54.88686,-23.89646],[-54.89372,-23.90752],[-54.90421,-23.90578],[-54.91183,-23.91501],[-54.91902,-23.91874],[-54.92246,-23.92336],[-54.91738,-23.93179],[-54.92129,-23.93916],[-54.92437,-23.95407],[-54.92682,-23.95799],[-54.93177,-23.96147],[-54.93924,-23.96245],[-54.95197,-23.96049],[-54.97222,-23.95471],[-55.00537,-23.95545],[-55.0212,-23.96726],[-55.03089,-23.97032],[-55.0383,-23.97794],[-55.04749,-23.98145],[-55.05267,-23.98653],[-55.06014,-23.98842],[-55.07711,-23.98558],[-55.08889,-23.97972],[-55.09893,-23.97269],[-55.11151,-23.96019],[-55.11473,-23.96227],[-55.11961,-23.97308],[-55.13752,-23.97825],[-55.14443,-23.98495],[-55.15291,-23.98479],[-55.15917,-23.98185],[-55.17283,-23.98768],[-55.18557,-23.9848],[-55.1928,-23.98462],[-55.19777,-23.98718],[-55.19973,-23.98994],[-55.20175,-23.99719],[-55.20751,-24.00376],[-55.21217,-24.00749],[-55.21704,-24.009],[-55.22551,-24.00985],[-55.23028,-24.0086],[-55.23351,-24.00628],[-55.24582,-23.99719],[-55.25332,-23.99192],[-55.25584,-23.98873],[-55.29291,-23.9679],[-55.29969,-23.96268],[-55.3142,-23.95613],[-55.32041,-23.95869],[-55.32437,-23.96216],[-55.33001,-23.97364],[-55.3329,-23.98604],[-55.33513,-23.98834],[-55.34084,-23.99044],[-55.34857,-23.99049],[-55.35357,-23.98892],[-55.36512,-23.97822],[-55.37137,-23.97666],[-55.37463,-23.97416],[-55.37769,-23.96547],[-55.38118,-23.96503],[-55.39684,-23.97109],[-55.40564,-23.96083],[-55.41188,-23.95858],[-55.41848,-23.94258],[-55.42804,-23.93118],[-55.42811,-23.92247],[-55.43189,-23.91585],[-55.43663,-23.91473],[-55.44091,-23.90949],[-55.43787,-23.88244],[-55.43308,-23.86386],[-55.43332,-23.85744],[-55.43612,-23.8492],[-55.43321,-23.83796],[-55.43603,-23.82789],[-55.44455,-23.82084],[-55.44633,-23.81535],[-55.44513,-23.80961],[-55.43945,-23.80248],[-55.4326,-23.78617],[-55.43094,-23.77493],[-55.43677,-23.76075],[-55.44196,-23.73122],[-55.44077,-23.72365],[-55.43337,-23.71467],[-55.4334,-23.71123],[-55.43666,-23.70736],[-55.44213,-23.70762],[-55.45203,-23.71501],[-55.45701,-23.71527],[-55.46051,-23.71208],[-55.46106,-23.70475],[-55.45793,-23.69052],[-55.45873,-23.68365],[-55.46127,-23.6761],[-55.46565,-23.67279],[-55.46978,-23.66633],[-55.47181,-23.6631],[-55.47342,-23.64661],[-55.4767,-23.64089],[-55.50439,-23.62867],[-55.50818,-23.61999],[-55.51168,-23.61725],[-55.51791,-23.61591],[-55.52459,-23.62076],[-55.53033,-23.61804],[-55.5346,-23.61096],[-55.53254,-23.58528],[-55.52447,-23.56506],[-55.53573,-23.53498],[-55.54257,-23.49754],[-55.5405,-23.47995],[-55.53667,-23.47943],[-55.54026,-23.47791],[-55.53857,-23.46359],[-55.53937,-23.45511],[-55.53696,-23.44455],[-55.53008,-23.43236],[-55.5259,-23.42965],[-55.51875,-23.41855],[-55.51164,-23.40498],[-55.50851,-23.39006],[-55.50113,-23.37925],[-55.50295,-23.36825],[-55.50546,-23.36437],[-55.51418,-23.35914],[-55.52174,-23.34313],[-55.52826,-23.33377],[-55.534,-23.32807],[-55.54298,-23.32284],[-55.5485,-23.31416],[-55.5482,-23.28274],[-55.54133,-23.27216],[-55.53491,-23.26616],[-55.52972,-23.26338],[-55.52277,-23.26312],[-55.51933,-23.25897],[-55.52834,-23.24802],[-55.53237,-23.23841],[-55.53366,-23.23062],[-55.53248,-23.22144],[-55.52954,-23.21615],[-55.52189,-23.21014],[-55.51897,-23.20187],[-55.521,-23.19431],[-55.53749,-23.17675],[-55.53882,-23.163],[-55.54407,-23.15683],[-55.56348,-23.1457],[-55.57615,-23.14278],[-55.58928,-23.14399],[-55.59301,-23.14241],[-55.59576,-23.13829],[-55.5971,-23.12225],[-55.60162,-23.11333],[-55.61211,-23.10054],[-55.61763,-23.08864],[-55.61052,-23.07761],[-55.61149,-23.05923],[-55.61478,-23.0549],[-55.61111,-23.04905],[-55.61361,-23.04202],[-55.62305,-23.03343],[-55.639,-23.0266],[-55.6423,-23.01661],[-55.63642,-23.00147],[-55.63894,-22.99474],[-55.64483,-22.98969],[-55.65492,-22.99137],[-55.66249,-22.9939],[-55.6709,-22.9981],[-55.67679,-22.99642],[-55.681,-22.99221],[-55.6852,-22.99053],[-55.68268,-22.98044],[-55.6709,-22.96782],[-55.6566,-22.95184],[-55.64988,-22.9325],[-55.64988,-22.91315],[-55.66586,-22.86857],[-55.6588,-22.84243],[-55.65831,-22.8253],[-55.65399,-22.81867],[-55.656,-22.80856],[-55.64978,-22.80256],[-55.65302,-22.7928],[-55.63903,-22.78316],[-55.63491,-22.77061],[-55.62736,-22.76674],[-55.61735,-22.76815],[-55.61931,-22.76536],[-55.6255,-22.75897],[-55.62609,-22.7537],[-55.62539,-22.75034],[-55.61781,-22.73607],[-55.61396,-22.7177],[-55.61596,-22.6989],[-55.6138,-22.69977],[-55.60961,-22.69047],[-55.6159,-22.67767],[-55.6144,-22.66411],[-55.61234,-22.65964],[-55.61211,-22.65575],[-55.61387,-22.65162],[-55.62132,-22.64523],[-55.62608,-22.63608],[-55.62668,-22.61865],[-55.63115,-22.61385],[-55.65096,-22.60637],[-55.66139,-22.59862],[-55.70113,-22.56002],[-55.72369,-22.54521],[-55.73489,-22.52942],[-55.74116,-22.51155],[-55.74527,-22.48105],[-55.74482,-22.47301],[-55.74287,-22.46773],[-55.73625,-22.45898],[-55.73728,-22.45141],[-55.7334,-22.439],[-55.7332,-22.43051],[-55.73907,-22.39336],[-55.74503,-22.3865],[-55.76606,-22.38659],[-55.76555,-22.38351],[-55.77453,-22.38641],[-55.78477,-22.38299],[-55.78898,-22.37934],[-55.79769,-22.36468],[-55.80045,-22.35597],[-55.82424,-22.33219],[-55.83194,-22.32098],[-55.84244,-22.29026],[-55.85335,-22.2786],[-55.861,-22.27633],[-55.88661,-22.2833],[-55.89795,-22.28357],[-55.92214,-22.27792],[-55.93545,-22.27865],[-55.95416,-22.28835],[-55.9613,-22.2902],[-55.96599,-22.2893],[-55.98451,-22.27995],[-55.99117,-22.27974],[-55.9988,-22.28389],[-56.00593,-22.28965],[-56.01136,-22.28851],[-56.02198,-22.28304],[-56.03037,-22.28191],[-56.05095,-22.28837],[-56.06005,-22.29048],[-56.07322,-22.28779],[-56.08043,-22.28703],[-56.0868,-22.28627],[-56.09403,-22.28236],[-56.10169,-22.27844],[-56.10891,-22.27729],[-56.1195,-22.27932],[-56.12584,-22.28408],[-56.136,-22.28768],[-56.14235,-22.2873],[-56.14486,-22.28727],[-56.14831,-22.28694],[-56.15807,-22.2854],[-56.16842,-22.28385],[-56.18014,-22.28392],[-56.18609,-22.28276],[-56.19109,-22.28079],[-56.19755,-22.28083],[-56.20774,-22.27811],[-56.21243,-22.27339],[-56.2235,-22.26436],[-56.23624,-22.25849],[-56.2422,-22.25378],[-56.24435,-22.24747],[-56.24736,-22.23723],[-56.25926,-22.23253],[-56.26859,-22.23217],[-56.28641,-22.23105],[-56.29277,-22.22949],[-56.30937,-22.21416],[-56.31665,-22.21119],[-56.32932,-22.21068],[-56.34079,-22.20322],[-56.34634,-22.191],[-56.34956,-22.18251],[-56.3519,-22.178],[-56.35573,-22.17446],[-56.36053,-22.17195],[-56.3681,-22.16511],[-56.37699,-22.15439],[-56.37999,-22.14651],[-56.38001,-22.1398],[-56.37877,-22.13032],[-56.38176,-22.12323],[-56.38644,-22.11575],[-56.392,-22.10195],[-56.39625,-22.09841],[-56.39923,-22.09289],[-56.40009,-22.08895],[-56.39926,-22.0846],[-56.40011,-22.07806],[-56.40268,-22.07474],[-56.40776,-22.07516],[-56.42089,-22.07756],[-56.42724,-22.07758],[-56.43869,-22.07603],[-56.4475,-22.07988],[-56.45309,-22.07805],[-56.46055,-22.07896],[-56.47131,-22.07651],[-56.47596,-22.0781],[-56.48019,-22.08324],[-56.48399,-22.08878],[-56.49033,-22.09195],[-56.50304,-22.09356],[-56.51066,-22.09555],[-56.51828,-22.10031],[-56.52629,-22.11532],[-56.52797,-22.12203],[-56.52583,-22.13071],[-56.53343,-22.14415],[-56.5402,-22.14693],[-56.54315,-22.15522],[-56.54399,-22.15996],[-56.54652,-22.16233],[-56.55,-22.16221],[-56.55627,-22.16353],[-56.55965,-22.17065],[-56.55964,-22.17577],[-56.56005,-22.18051],[-56.56259,-22.18288],[-56.56343,-22.18525],[-56.56554,-22.19],[-56.57426,-22.19679],[-56.58332,-22.20187],[-56.59513,-22.2076],[-56.60366,-22.21059],[-56.60916,-22.21533],[-56.61255,-22.22008],[-56.61422,-22.22994],[-56.63202,-22.24063],[-56.64093,-22.23788],[-56.64462,-22.23921],[-56.64558,-22.24499],[-56.64259,-22.25367],[-56.64216,-22.2584],[-56.65065,-22.25605],[-56.68375,-22.24189],[-56.68758,-22.23795],[-56.688,-22.234],[-56.68929,-22.22335],[-56.68974,-22.21718],[-56.69779,-22.2135],[-56.70499,-22.21508],[-56.70606,-22.22097],[-56.7071,-22.22732],[-56.70964,-22.23206],[-56.71091,-22.2364],[-56.71472,-22.23917],[-56.71557,-22.24233],[-56.71556,-22.24706],[-56.71767,-22.25219],[-56.727,-22.25773],[-56.73166,-22.25813],[-56.73506,-22.25537],[-56.73803,-22.25103],[-56.73974,-22.24472],[-56.74313,-22.23959],[-56.74799,-22.23603],[-56.75289,-22.23408],[-56.75713,-22.23487],[-56.7584,-22.23842],[-56.75967,-22.24237],[-56.76942,-22.24593],[-56.77281,-22.24791],[-56.77747,-22.25383],[-56.78087,-22.25699],[-56.78468,-22.25936],[-56.78935,-22.25739],[-56.79274,-22.25463],[-56.79487,-22.25227],[-56.79613,-22.24483],[-56.79784,-22.2428],[-56.80717,-22.24715],[-56.81014,-22.2507],[-56.8114,-22.26017],[-56.81012,-22.26925],[-56.80927,-22.27634],[-56.80884,-22.28227],[-56.80969,-22.28621],[-56.81223,-22.28858],[-56.81902,-22.28977],[-56.82284,-22.28977],[-56.8275,-22.29609],[-56.83047,-22.29767],[-56.83599,-22.29767],[-56.84108,-22.29649],[-56.84772,-22.29156],[-56.85363,-22.29086],[-56.86692,-22.28302],[-56.8712,-22.2823],[-56.87757,-22.27559],[-56.88181,-22.27125],[-56.88308,-22.26494],[-56.88139,-22.25902],[-56.88223,-22.25428],[-56.88733,-22.24836],[-56.89319,-22.24369],[-56.90047,-22.24363],[-56.90302,-22.24481],[-56.90514,-22.24916],[-56.9098,-22.25508],[-56.91532,-22.25429],[-56.91956,-22.25074],[-56.92677,-22.24876],[-56.93483,-22.24876],[-56.94713,-22.24837],[-56.96095,-22.23591],[-56.96579,-22.23495],[-56.97088,-22.23613],[-56.97936,-22.24007],[-56.98487,-22.23968],[-56.99004,-22.23696],[-56.99985,-22.22269],[-57.00395,-22.22231],[-57.01115,-22.22585],[-57.02091,-22.22703],[-57.02939,-22.23097],[-57.03784,-22.23173],[-57.04376,-22.23355],[-57.04872,-22.23792],[-57.04912,-22.23522],[-57.04933,-22.23846],[-57.05314,-22.23535],[-57.05711,-22.23494],[-57.06375,-22.23411],[-57.07605,-22.23726],[-57.08114,-22.2412],[-57.08538,-22.23961],[-57.09047,-22.23764],[-57.09877,-22.24504],[-57.10235,-22.24197],[-57.10446,-22.23723],[-57.10835,-22.23536],[-57.11082,-22.23407],[-57.11166,-22.23012],[-57.10996,-22.22657],[-57.10699,-22.22341],[-57.1091,-22.22026],[-57.1248,-22.2234],[-57.13583,-22.22457],[-57.1581,-22.22596],[-57.16796,-22.22638],[-57.17807,-22.22817],[-57.1835,-22.22883],[-57.19138,-22.22212],[-57.19264,-22.21897],[-57.19518,-22.21344],[-57.19814,-22.2087],[-57.20237,-22.20711],[-57.20704,-22.20908],[-57.21029,-22.21448],[-57.21553,-22.21459],[-57.21723,-22.21696],[-57.21937,-22.22603],[-57.22278,-22.2351],[-57.22788,-22.23864],[-57.23425,-22.24139],[-57.24231,-22.24138],[-57.24951,-22.24018],[-57.25576,-22.23767],[-57.26392,-22.23385],[-57.26899,-22.22949],[-57.2745,-22.22514],[-57.28212,-22.22079],[-57.28975,-22.21722],[-57.29632,-22.21841],[-57.30035,-22.21996],[-57.30631,-22.22626],[-57.31055,-22.22822],[-57.31819,-22.22979],[-57.32793,-22.22949],[-57.33217,-22.2266],[-57.34432,-22.22423],[-57.35083,-22.22523],[-57.36313,-22.22495],[-57.37076,-22.22374],[-57.37866,-22.22049],[-57.38091,-22.21661],[-57.38048,-22.21188],[-57.38131,-22.20714],[-57.38619,-22.20369],[-57.39064,-22.2055],[-57.39507,-22.20479],[-57.40248,-22.19841],[-57.4118,-22.19601],[-57.42156,-22.19717],[-57.43257,-22.19517],[-57.44598,-22.18865],[-57.46148,-22.18603],[-57.46858,-22.18717],[-57.47366,-22.18478],[-57.4851,-22.18396],[-57.49527,-22.18037],[-57.49908,-22.18076],[-57.50531,-22.18025],[-57.51004,-22.17677],[-57.51297,-22.17473],[-57.51939,-22.17083],[-57.52533,-22.1712],[-57.53255,-22.17552],[-57.54231,-22.17864],[-57.55249,-22.17821],[-57.56053,-22.17542],[-57.57196,-22.17065],[-57.58338,-22.16429],[-57.58759,-22.15756],[-57.58841,-22.15204],[-57.58711,-22.14494],[-57.58656,-22.13885],[-57.59258,-22.13702],[-57.59427,-22.13583],[-57.59638,-22.13306],[-57.60061,-22.13265],[-57.60229,-22.1287],[-57.60396,-22.12277],[-57.60906,-22.11897],[-57.61241,-22.11721],[-57.61279,-22.10774],[-57.61318,-22.09866],[-57.61577,-22.09343],[-57.6212,-22.0939],[-57.63181,-22.09741],[-57.64171,-22.10358],[-57.65747,-22.10369],[-57.67249,-22.09803],[-57.68728,-22.09008],[-57.69321,-22.08887],[-57.70084,-22.08962],[-57.70763,-22.09354],[-57.71063,-22.09787],[-57.7153,-22.10061],[-57.71915,-22.10691],[-57.72911,-22.09972],[-57.73649,-22.1021],[-57.74075,-22.10602],[-57.73869,-22.11669],[-57.73915,-22.12339],[-57.74469,-22.12889],[-57.75572,-22.13082],[-57.76207,-22.12842],[-57.76601,-22.12354],[-57.7692,-22.12259],[-57.7739,-22.12205],[-57.78026,-22.1236],[-57.7845,-22.12397],[-57.79305,-22.13538],[-57.79775,-22.14207],[-57.80285,-22.1452],[-57.80538,-22.14282],[-57.80706,-22.14005],[-57.81299,-22.13883],[-57.81763,-22.13644],[-57.821,-22.13248],[-57.82307,-22.12458],[-57.82347,-22.11984],[-57.82754,-22.11823],[-57.83702,-22.11819],[-57.8489,-22.1205],[-57.85696,-22.12322],[-57.86209,-22.12911],[-57.86634,-22.13106],[-57.87345,-22.12841],[-57.88617,-22.12396],[-57.89285,-22.12045],[-57.90787,-22.11988],[-57.91106,-22.11824],[-57.92067,-22.11932],[-57.92706,-22.11743],[-57.92827,-22.1149],[-57.92624,-22.10777],[-57.92719,-22.1032],[-57.93403,-22.09671],[-57.93836,-22.08589],[-57.94227,-22.08242],[-57.95286,-22.08233],[-57.95702,-22.07954],[-57.96048,-22.07975],[-57.97333,-22.08492],[-57.98023,-22.08555],[-57.98832,-22.08182],[-57.98972,-22.07828],[-57.98798,-22.07158],[-57.98624,-22.06448],[-57.9879,-22.05934],[-57.99294,-22.05379],[-57.99935,-22.04754],[-58.00515,-22.04345],[-58.0068,-22.03713],[-58.00463,-22.02924],[-57.99951,-22.02375],[-57.98887,-22.01671],[-57.97824,-22.01045],[-57.9693,-22.0038],[-57.9663,-21.99789],[-57.96152,-21.97977],[-57.95977,-21.97227],[-57.95334,-21.95929],[-57.94732,-21.94669],[-57.94086,-21.92975],[-57.93993,-21.91792],[-57.94243,-21.91119],[-57.94493,-21.90565],[-57.94446,-21.89776],[-57.93934,-21.89147],[-57.93117,-21.88692],[-57.92699,-21.88478],[-57.92321,-21.88525],[-57.91982,-21.88329],[-57.91852,-21.87856],[-57.92017,-21.87263],[-57.9286,-21.86745],[-57.94598,-21.86085],[-57.95517,-21.85546],[-57.96218,-21.84762],[-57.96694,-21.84434],[-57.96819,-21.84117],[-57.96606,-21.83882],[-57.96026,-21.83769],[-57.9491,-21.83299],[-57.93977,-21.82949],[-57.92146,-21.81144],[-57.91528,-21.79938],[-57.91202,-21.78978],[-57.91005,-21.77334],[-57.91164,-21.76945],[-57.91566,-21.7641],[-57.92368,-21.76168],[-57.92917,-21.76165],[-57.93564,-21.75699],[-57.94221,-21.75131],[-57.94639,-21.74379],[-57.94379,-21.73472],[-57.93656,-21.72766],[-57.9217,-21.71787],[-57.9111,-21.71201],[-57.90388,-21.70692],[-57.89623,-21.69985],[-57.89363,-21.69039],[-57.89317,-21.68447],[-57.89649,-21.68069],[-57.90281,-21.67179],[-57.91375,-21.66541],[-57.92867,-21.65388],[-57.93302,-21.64558],[-57.93659,-21.632],[-57.93452,-21.6112],[-57.93109,-21.60372],[-57.92429,-21.59705],[-57.91708,-21.59235],[-57.91536,-21.58723],[-57.91828,-21.58208],[-57.92358,-21.57653],[-57.93026,-21.57242],[-57.95612,-21.5562],[-57.96282,-21.54906],[-57.96474,-21.54304],[-57.96689,-21.52534],[-57.96558,-21.51903],[-57.96384,-21.51154],[-57.95787,-21.50407],[-57.94639,-21.49111],[-57.93237,-21.47618],[-57.92724,-21.46753],[-57.9221,-21.45492],[-57.91992,-21.44466],[-57.91776,-21.43599],[-57.9156,-21.4289],[-57.91007,-21.42261],[-57.90752,-21.41907],[-57.90488,-21.4021],[-57.90231,-21.39541],[-57.8989,-21.3895],[-57.89081,-21.37888],[-57.88527,-21.36983],[-57.87811,-21.36668],[-57.8679,-21.3561],[-57.8594,-21.34628],[-57.85428,-21.33604],[-57.85296,-21.32775],[-57.85447,-21.31513],[-57.85877,-21.31074],[-57.87351,-21.30829],[-57.88866,-21.30545],[-57.90353,-21.29926],[-57.91111,-21.29191],[-57.91567,-21.28345],[-57.91756,-21.27567],[-57.91457,-21.27056],[-57.90398,-21.26232],[-57.89087,-21.2541],[-57.87606,-21.2451],[-57.86676,-21.24081],[-57.85787,-21.23256],[-57.85317,-21.22311],[-57.85017,-21.21404],[-57.84884,-21.20299],[-57.84962,-21.1919],[-57.86239,-21.14484],[-57.86232,-21.13499],[-57.85931,-21.12474],[-57.85421,-21.11568],[-57.84624,-21.09895],[-57.84673,-21.09436],[-57.86445,-21.07021],[-57.86734,-21.06072],[-57.86599,-21.0469],[-57.8651,-21.03861],[-57.86086,-21.03271],[-57.83159,-20.99416],[-57.82832,-20.99136],[-57.81812,-20.98124],[-57.81717,-20.9737],[-57.82191,-20.9596],[-57.82122,-20.94801],[-57.82087,-20.9395],[-57.82407,-20.93559],[-57.82829,-20.93296],[-57.83251,-20.93322],[-57.84094,-20.93843],[-57.85021,-20.94233],[-57.85904,-20.94228],[-57.86697,-20.93893],[-57.87536,-20.92877],[-57.88905,-20.90433],[-57.89263,-20.90218],[-57.89954,-20.89882],[-57.91429,-20.89933],[-57.92332,-20.89808],[-57.92603,-20.89452],[-57.92643,-20.89097],[-57.92429,-20.88545],[-57.92006,-20.88113],[-57.90528,-20.87094],[-57.87491,-20.85452],[-57.85974,-20.84828],[-57.85592,-20.84395],[-57.85463,-20.83843],[-57.85459,-20.83251],[-57.86249,-20.81706],[-57.87166,-20.80398],[-57.8821,-20.79484],[-57.89341,-20.78964],[-57.90097,-20.78802],[-57.91442,-20.78835],[-57.92284,-20.79067],[-57.93162,-20.79467],[-57.94152,-20.7959],[-57.94977,-20.79644],[-57.95521,-20.79364],[-57.95813,-20.79086],[-57.95979,-20.7869],[-57.96017,-20.78137],[-57.95378,-20.76837],[-57.94871,-20.76445],[-57.94287,-20.75676],[-57.93561,-20.75228],[-57.91498,-20.7449],[-57.9076,-20.74441],[-57.87841,-20.74233],[-57.87211,-20.74078],[-57.86872,-20.73685],[-57.86828,-20.7329],[-57.86993,-20.72815],[-57.87782,-20.71429],[-57.88364,-20.70438],[-57.88948,-20.69803],[-57.89742,-20.69285],[-57.90117,-20.6877],[-57.90825,-20.67778],[-57.91483,-20.66771],[-57.92229,-20.66375],[-57.92847,-20.66493],[-57.93462,-20.66539],[-57.94094,-20.6693],[-57.94436,-20.67719],[-57.95031,-20.689],[-57.95794,-20.69962],[-57.96596,-20.70191],[-57.9763,-20.70034],[-57.98093,-20.69822],[-57.98687,-20.69313],[-57.98894,-20.68799],[-57.98718,-20.67575],[-57.98504,-20.66984],[-57.97613,-20.65686],[-57.97188,-20.64938],[-57.97434,-20.64067],[-57.98137,-20.63543],[-57.99692,-20.6279],[-58.00318,-20.62273],[-58.01025,-20.6132],[-58.01481,-20.60527],[-58.01307,-20.5966],[-58.00543,-20.584],[-57.99823,-20.57575],[-57.99651,-20.56984],[-57.99981,-20.56113],[-58.00552,-20.53951],[-58.01825,-20.51041],[-58.01394,-20.49541],[-58.01383,-20.4799],[-57.99353,-20.44561],[-57.999,-20.4304],[-58.00366,-20.4232],[-58.01775,-20.4098],[-58.03095,-20.40186],[-58.04481,-20.39703],[-58.05385,-20.39351],[-58.06458,-20.38695],[-58.07679,-20.37681],[-58.08151,-20.36972],[-58.09244,-20.34182],[-58.09621,-20.32132],[-58.09567,-20.30964],[-58.08966,-20.2831],[-58.08671,-20.27057],[-58.08665,-20.2625],[-58.09134,-20.2544],[-58.10082,-20.24985],[-58.11469,-20.24755],[-58.12458,-20.25059],[-58.13413,-20.2559],[-58.14085,-20.26393],[-58.1456,-20.2639],[-58.15319,-20.26115],[-58.15603,-20.2556],[-58.16252,-20.23957],[-58.16152,-20.2333],[-58.16143,-20.22254],[-58.1547,-20.21273],[-58.14802,-20.20919],[-58.13562,-20.20389],[-58.12607,-20.19768],[-58.12414,-20.19321],[-58.12441,-20.18541],[-58.13449,-20.17969],[-58.14418,-20.17629],[-58.15992,-20.1744],[-58.16162,-20.16677],[-58.16283,-20.15976],[-58.15611,-20.15085],[-58.1485,-20.14911],[-58.13709,-20.14828],[-58.11802,-20.13945],[-58.09792,-20.11806],[-58.0912,-20.11003],[-58.08167,-20.10472],[-58.07597,-20.10387],[-58.0655,-20.10124],[-58.05031,-20.10045],[-58.04265,-20.09242],[-58.03888,-20.08806],[-58.03867,-20.08731],[-58.03783,-20.08349],[-58.03687,-20.07991],[-58.02633,-20.06831],[-58.01392,-20.05852],[-57.99775,-20.05324],[-57.98446,-20.05422],[-57.97801,-20.05349],[-57.96829,-20.04714],[-57.96444,-20.03999],[-57.96151,-20.02836],[-57.95863,-20.02478],[-57.94722,-20.02127],[-57.93393,-20.02134],[-57.92447,-20.02497],[-57.9188,-20.02949],[-57.91219,-20.03401],[-57.90934,-20.03403],[-57.9081,-20.03044],[-57.90899,-20.0194],[-57.90502,-20.0114],[-57.89595,-20.00205],[-57.88324,-19.99341],[-57.87295,-19.98269],[-57.87095,-19.9765],[-57.87261,-19.97098],[-57.87669,-19.96589],[-57.89528,-19.95057],[-57.91605,-19.9371],[-57.95347,-19.90922],[-57.98727,-19.88803],[-58.02091,-19.85979],[-58.0487,-19.83327],[-58.07354,-19.81698],[-58.10293,-19.79236],[-58.12677,-19.77468],[-58.13345,-19.76245],[-58.1334,-19.75785],[-58.12198,-19.7318],[-58.09205,-19.67329],[-58.05811,-19.60326],[-58.00255,-19.48847],[-57.94706,-19.37365],[-57.89306,-19.26184],[-57.88621,-19.24753],[-57.7842,-19.03351],[-57.71014,-19.0326],[-57.70841,-19.03025],[-57.70789,-19.01557],[-57.70519,-19.00146],[-57.70699,-18.99031],[-57.71106,-18.98292],[-57.71222,-18.97902],[-57.71925,-18.97705],[-57.71978,-18.89907],[-57.76661,-18.89929],[-57.55777,-18.24036],[-57.4604,-18.23178],[-57.45802,-18.23159],[-57.45385,-18.2312],[-57.45744,-18.22492],[-57.46745,-18.22278],[-57.47421,-18.21697],[-57.47371,-18.21252],[-57.47979,-18.20862],[-57.47963,-18.20756],[-57.48222,-18.2021],[-57.48616,-18.19923],[-57.49073,-18.20223],[-57.50031,-18.19688],[-57.50507,-18.20034],[-57.5748,-18.13189],[-57.58178,-18.10828],[-57.60004,-18.04637],[-57.7206,-17.82786],[-57.69265,-17.82807],[-57.68874,-17.82703],[-57.68705,-17.82474],[-57.68812,-17.8066],[-57.6904,-17.80089],[-57.70401,-17.78753],[-57.71405,-17.77955],[-57.71513,-17.77661],[-57.71748,-17.7743],[-57.72009,-17.77171],[-57.71378,-17.74662],[-57.71481,-17.73372],[-57.72315,-17.72562],[-57.73507,-17.72003],[-57.74307,-17.69861],[-57.75425,-17.68866],[-57.76487,-17.66838],[-57.77963,-17.65655],[-57.78505,-17.6455],[-57.78454,-17.64021],[-57.77771,-17.62489],[-57.77923,-17.62327],[-57.78605,-17.61587],[-57.78243,-17.61428],[-57.7812,-17.61256],[-57.78396,-17.60743],[-57.78212,-17.60568],[-57.79048,-17.60321],[-57.78782,-17.60044],[-57.78919,-17.5999],[-57.78606,-17.59665],[-57.78658,-17.59473],[-57.79374,-17.59239],[-57.79244,-17.59],[-57.79312,-17.58977],[-57.79018,-17.5844],[-57.78972,-17.5825],[-57.78082,-17.5763],[-57.78534,-17.57524],[-57.78518,-17.56997],[-57.79438,-17.56429],[-57.79561,-17.56002],[-57.79281,-17.55574],[-57.7856,-17.55555],[-57.75224,-17.56446],[-57.85996,-17.47007],[-57.8779,-17.46292],[-57.89557,-17.45888],[-57.8992,-17.4595],[-57.9786,-17.50941],[-57.98264,-17.51328],[-57.98961,-17.51804],[-58.00256,-17.51955],[-58.018,-17.50839],[-58.02663,-17.50004],[-58.03943,-17.49378],[-58.04334,-17.49267],[-58.04947,-17.46302],[-58.06008,-17.45073],[-58.07235,-17.45207],[-58.08922,-17.46113],[-58.11832,-17.45038],[-58.1228,-17.41468],[-58.12983,-17.41156],[-58.13921,-17.41563],[-58.14541,-17.41366],[-58.15244,-17.40202],[-58.15185,-17.39113],[-58.17019,-17.39539],[-58.1844,-17.39665],[-58.19148,-17.3925],[-58.19174,-17.38788],[-58.20033,-17.38302],[-58.19507,-17.36896],[-58.20213,-17.35705],[-58.22023,-17.36004],[-58.22767,-17.35671],[-58.22773,-17.35607],[-58.23021,-17.35605],[-58.24199,-17.36288],[-58.24485,-17.36215],[-58.25029,-17.35705],[-58.25575,-17.35424],[-58.25863,-17.34564],[-58.26352,-17.34469],[-58.26363,-17.3304],[-58.27649,-17.32375],[-58.27643,-17.30058],[-58.29197,-17.30187],[-58.29817,-17.29883],[-58.29686,-17.29133],[-58.29546,-17.29056],[-58.29564,-17.29042],[-58.29688,-17.28462],[-58.30322,-17.27987],[-58.30341,-17.27028],[-58.319,-17.26677],[-58.32206,-17.26023],[-58.32142,-17.25884],[-58.33268,-17.25074],[-58.33429,-17.24475],[-58.33902,-17.2408],[-58.34279,-17.23352],[-58.34594,-17.23274],[-58.35653,-17.21228],[-58.36427,-17.21429],[-58.36435,-17.21005],[-58.36458,-17.1998],[-58.36958,-17.20038],[-58.39547,-17.18447],[-58.3975,-17.13676],[-58.38899,-17.11769],[-58.41848,-17.12063],[-58.42268,-17.11512],[-58.42257,-17.1128],[-58.42534,-17.11204],[-58.42902,-17.1053],[-58.42558,-17.09263],[-58.42491,-17.09025],[-58.43408,-17.08661],[-58.43578,-17.07881],[-58.43052,-17.07228],[-58.43216,-17.05877],[-58.42542,-17.05325],[-58.42199,-17.05047],[-58.43417,-17.04571],[-58.4343,-17.03984],[-58.4306,-17.03679],[-58.41906,-17.03809],[-58.41893,-17.03792],[-58.4269,-17.0353],[-58.42967,-17.02915],[-58.42957,-17.02803],[-58.43491,-17.02725],[-58.43552,-17.00761],[-58.42722,-16.99949],[-58.42297,-16.98929],[-58.43144,-16.99083],[-58.4446,-16.98072],[-58.447,-16.97884],[-58.44743,-16.97212],[-58.44981,-16.97183],[-58.45337,-16.96887],[-58.4561,-16.9694],[-58.45953,-16.96699],[-58.46172,-16.9545],[-58.45765,-16.94276],[-58.46565,-16.94249],[-58.46854,-16.94116],[-58.47435,-16.93496],[-58.4688,-16.92405],[-58.47361,-16.91594],[-58.47445,-16.9145],[-58.46685,-16.91107],[-58.46059,-16.9007],[-58.46316,-16.89963],[-58.46811,-16.89895],[-58.46319,-16.87345],[-58.46624,-16.86886],[-58.46103,-16.86427],[-58.46415,-16.86218],[-58.46381,-16.86041],[-58.46608,-16.85844],[-58.46145,-16.84951],[-58.46798,-16.84821],[-58.46183,-16.84109],[-58.47596,-16.82744],[-58.47741,-16.8155],[-58.47191,-16.79146],[-58.46333,-16.79245],[-58.46011,-16.78804],[-58.46405,-16.77932],[-58.46397,-16.7763],[-58.46661,-16.7569],[-58.47339,-16.74518],[-58.46669,-16.72084],[-58.47052,-16.70303],[-58.46084,-16.6667],[-58.46304,-16.65223],[-58.43602,-16.59236],[-58.42801,-16.58567],[-58.42127,-16.57356],[-58.39377,-16.56287],[-58.38601,-16.5436],[-58.3577,-16.52938],[-58.35383,-16.52347],[-58.34377,-16.51773],[-58.3374,-16.5]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:PY:**Brazil, south of 16.5º S#PY0:**Trindade & Martin Vaz Islands","itu_zone_number":15,"itu_zone_name_loc":[-25,-45]},"geometry":{"type":"Polygon","coordinates":[[[-58.35476,-16.52467],[-28,-16.5],[-28,-40],[-52,-40],[-52,-33.7399],[-53.3721,-33.74812],[-53.36876,-33.74348],[-53.36903,-33.74348],[-53.36903,-33.74376],[-53.36959,-33.74376],[-53.36959,-33.74403],[-53.36987,-33.74403],[-53.36987,-33.74431],[-53.37014,-33.74431],[-53.37014,-33.74459],[-53.37042,-33.74459],[-53.37042,-33.74487],[-53.37125,-33.74487],[-53.37125,-33.74514],[-53.37153,-33.74514],[-53.37153,-33.74542],[-53.37209,-33.74542],[-53.37209,-33.7457],[-53.37236,-33.7457],[-53.37236,-33.74598],[-53.37264,-33.74598],[-53.37264,-33.74626],[-53.37292,-33.74626],[-53.37292,-33.74653],[-53.37348,-33.74653],[-53.37348,-33.74681],[-53.37375,-33.74681],[-53.37375,-33.74709],[-53.37403,-33.74709],[-53.40452,-33.73994],[-53.41635,-33.74002],[-53.42035,-33.73831],[-53.4244,-33.73375],[-53.42605,-33.72124],[-53.42668,-33.70914],[-53.42977,-33.70123],[-53.43481,-33.69793],[-53.44936,-33.69304],[-53.46538,-33.69066],[-53.47039,-33.68902],[-53.4864,-33.68748],[-53.49238,-33.68919],[-53.52366,-33.68611],[-53.52013,-33.66737],[-53.52062,-33.66547],[-53.52569,-33.66502],[-53.52789,-33.66462],[-53.52944,-33.66364],[-53.53018,-33.66239],[-53.53037,-33.65781],[-53.52996,-33.65757],[-53.52849,-33.65684],[-53.52734,-33.65598],[-53.52596,-33.65471],[-53.52549,-33.65297],[-53.52551,-33.65228],[-53.52595,-33.6516],[-53.52766,-33.64993],[-53.52842,-33.64812],[-53.52873,-33.64732],[-53.53001,-33.6461],[-53.53143,-33.64499],[-53.53243,-33.6441],[-53.53288,-33.64309],[-53.53289,-33.64274],[-53.53269,-33.64113],[-53.53262,-33.63918],[-53.53296,-33.63758],[-53.5331,-33.63414],[-53.5333,-33.63277],[-53.53376,-33.63129],[-53.5338,-33.63038],[-53.53379,-33.63006],[-53.53346,-33.62865],[-53.53362,-33.62485],[-53.5336,-33.62445],[-53.53338,-33.62383],[-53.53299,-33.62248],[-53.53307,-33.6213],[-53.53297,-33.62037],[-53.5314,-33.61873],[-53.52993,-33.61765],[-53.52945,-33.61603],[-53.52977,-33.61466],[-53.52997,-33.61341],[-53.53001,-33.61226],[-53.52999,-33.61204],[-53.52865,-33.61304],[-53.51692,-33.54097],[-53.50825,-33.48809],[-53.50012,-33.3998],[-53.51059,-33.30984],[-53.52499,-33.25091],[-53.53154,-33.2077],[-53.52892,-33.17235],[-53.51714,-33.13045],[-53.50012,-33.09771],[-53.4844,-33.07807],[-53.415,-33.02569],[-53.29846,-32.94844],[-53.24783,-32.86353],[-53.16748,-32.79946],[-53.09425,-32.73335],[-53.09425,-32.72419],[-53.17015,-32.65213],[-53.1752,-32.65728],[-53.18208,-32.65642],[-53.1866,-32.64536],[-53.18848,-32.64496],[-53.1882,-32.64226],[-53.18757,-32.64042],[-53.18726,-32.63996],[-53.1927,-32.63949],[-53.20961,-32.63599],[-53.22613,-32.62858],[-53.23705,-32.60868],[-53.243,-32.6024],[-53.25675,-32.60249],[-53.26502,-32.60635],[-53.26762,-32.60962],[-53.27398,-32.61366],[-53.28154,-32.6143],[-53.30487,-32.59604],[-53.31479,-32.59054],[-53.32633,-32.58553],[-53.33961,-32.58491],[-53.35784,-32.57318],[-53.36678,-32.57292],[-53.37549,-32.57999],[-53.38519,-32.58135],[-53.38908,-32.57955],[-53.40241,-32.56706],[-53.41069,-32.56175],[-53.41829,-32.56122],[-53.43489,-32.53133],[-53.44739,-32.51167],[-53.44934,-32.50992],[-53.45468,-32.49392],[-53.45279,-32.48931],[-53.453,-32.48882],[-53.452,-32.48638],[-53.45382,-32.48198],[-53.45888,-32.47698],[-53.47178,-32.47862],[-53.48422,-32.47835],[-53.49212,-32.48181],[-53.50005,-32.48317],[-53.50532,-32.48007],[-53.5142,-32.48418],[-53.51967,-32.48425],[-53.52572,-32.47947],[-53.53171,-32.47806],[-53.53878,-32.47098],[-53.54676,-32.46981],[-53.55028,-32.46732],[-53.55637,-32.45938],[-53.57219,-32.44944],[-53.57683,-32.43917],[-53.58215,-32.43269],[-53.59089,-32.43005],[-53.59414,-32.42861],[-53.59851,-32.41981],[-53.60579,-32.41462],[-53.60496,-32.40428],[-53.60529,-32.39923],[-53.60986,-32.39232],[-53.62357,-32.38931],[-53.62883,-32.38621],[-53.63164,-32.3816],[-53.63185,-32.3677],[-53.62599,-32.36152],[-53.62682,-32.35728],[-53.62325,-32.35135],[-53.6238,-32.35064],[-53.62246,-32.34842],[-53.62803,-32.34131],[-53.63268,-32.32956],[-53.64379,-32.31725],[-53.64363,-32.31114],[-53.63818,-32.31066],[-53.63475,-32.3083],[-53.63263,-32.30027],[-53.6345,-32.29165],[-53.64347,-32.2888],[-53.64716,-32.27472],[-53.65513,-32.27248],[-53.66068,-32.2658],[-53.66743,-32.26208],[-53.66947,-32.25852],[-53.66765,-32.24712],[-53.66902,-32.2385],[-53.667,-32.23321],[-53.68173,-32.21735],[-53.68386,-32.20704],[-53.69227,-32.20797],[-53.69671,-32.20572],[-53.69867,-32.2012],[-53.69768,-32.19957],[-53.69202,-32.1972],[-53.69188,-32.19454],[-53.69123,-32.19427],[-53.69104,-32.19047],[-53.70121,-32.18931],[-53.70297,-32.18786],[-53.70475,-32.18408],[-53.70382,-32.17986],[-53.71436,-32.1709],[-53.71053,-32.16117],[-53.71854,-32.15515],[-53.72676,-32.15423],[-53.72168,-32.14967],[-53.72048,-32.14692],[-53.7208,-32.14653],[-53.71969,-32.14399],[-53.73203,-32.12911],[-53.73461,-32.12222],[-53.7303,-32.11186],[-53.73063,-32.10575],[-53.72595,-32.10444],[-53.72243,-32.1082],[-53.71947,-32.10733],[-53.71337,-32.10116],[-53.72779,-32.09688],[-53.73789,-32.08223],[-53.7414,-32.0791],[-53.76099,-32.07571],[-53.76498,-32.07301],[-53.77242,-32.07203],[-53.78016,-32.06705],[-53.79746,-32.06764],[-53.80467,-32.06517],[-53.81293,-32.05788],[-53.82061,-32.05732],[-53.82608,-32.05484],[-53.82885,-32.05128],[-53.83047,-32.04055],[-53.83594,-32.03786],[-53.83806,-32.02735],[-53.84818,-32.02786],[-53.84945,-32.02513],[-53.84759,-32.01606],[-53.8482,-32.00679],[-53.85078,-31.99797],[-53.8569,-31.99264],[-53.86194,-31.99212],[-53.87068,-31.99455],[-53.87335,-31.99532],[-53.87895,-31.99385],[-53.8837,-31.99033],[-53.89559,-31.97156],[-53.91596,-31.95929],[-53.92641,-31.95841],[-53.93385,-31.95552],[-53.93904,-31.9481],[-53.94725,-31.95436],[-53.95261,-31.95426],[-53.95998,-31.94816],[-53.96457,-31.93846],[-53.95896,-31.926],[-53.95951,-31.92295],[-53.96479,-31.91942],[-53.97172,-31.91745],[-54.00227,-31.91596],[-54.0076,-31.91449],[-54.01181,-31.9112],[-54.01615,-31.90174],[-54.02247,-31.8928],[-54.02752,-31.8897],[-54.03561,-31.88724],[-54.04392,-31.88707],[-54.05152,-31.88829],[-54.05671,-31.89026],[-54.06198,-31.89499],[-54.06648,-31.90112],[-54.06983,-31.90519],[-54.07771,-31.90642],[-54.08907,-31.9071],[-54.09551,-31.90559],[-54.10025,-31.90111],[-54.10521,-31.89525],[-54.11127,-31.89005],[-54.11765,-31.88623],[-54.12619,-31.88283],[-54.13501,-31.87942],[-54.14411,-31.87669],[-54.14919,-31.87497],[-54.15286,-31.87121],[-54.1573,-31.86581],[-54.16257,-31.86155],[-54.17129,-31.85492],[-54.1893,-31.84324],[-54.20178,-31.83606],[-54.21529,-31.82748],[-54.25974,-31.79747],[-54.29281,-31.77577],[-54.30257,-31.76864],[-54.32612,-31.75337],[-54.35758,-31.73284],[-54.36918,-31.72428],[-54.40435,-31.70227],[-54.42416,-31.68914],[-54.43422,-31.68338],[-54.44003,-31.67932],[-54.44853,-31.67544],[-54.45541,-31.67159],[-54.45936,-31.6685],[-54.4614,-31.665],[-54.4608,-31.66294],[-54.45939,-31.66113],[-54.45718,-31.65956],[-54.45163,-31.65462],[-54.4475,-31.65195],[-54.44509,-31.65045],[-54.44724,-31.64935],[-54.43573,-31.64214],[-54.4297,-31.63883],[-54.42557,-31.63615],[-54.42276,-31.63276],[-54.42052,-31.62947],[-54.42265,-31.6259],[-54.42814,-31.62142],[-54.43403,-31.62002],[-54.43921,-31.61591],[-54.44277,-31.60964],[-54.44716,-31.59511],[-54.45201,-31.58744],[-54.46008,-31.57993],[-54.46466,-31.57204],[-54.47705,-31.56604],[-54.48245,-31.55881],[-54.49036,-31.53709],[-54.50461,-31.51317],[-54.52527,-31.49804],[-54.53247,-31.49535],[-54.54041,-31.49495],[-54.54648,-31.49229],[-54.56963,-31.48167],[-54.58335,-31.47633],[-54.59239,-31.47329],[-54.60753,-31.46697],[-54.6198,-31.46228],[-54.63103,-31.45919],[-54.63755,-31.45746],[-54.64558,-31.45695],[-54.65909,-31.45661],[-54.67291,-31.4547],[-54.68232,-31.45196],[-54.69025,-31.44863],[-54.70075,-31.44555],[-54.71317,-31.44012],[-54.7118,-31.43963],[-54.71673,-31.43938],[-54.7246,-31.43774],[-54.73517,-31.43685],[-54.75307,-31.43671],[-54.76554,-31.43795],[-54.78346,-31.43843],[-54.79925,-31.44053],[-54.81175,-31.4424],[-54.82277,-31.44399],[-54.82793,-31.44511],[-54.83481,-31.44337],[-54.84527,-31.43933],[-54.85134,-31.43542],[-54.85657,-31.42839],[-54.86322,-31.42038],[-54.87021,-31.41143],[-54.89018,-31.39774],[-54.90028,-31.39434],[-54.91557,-31.39268],[-54.92831,-31.39172],[-54.93776,-31.39021],[-54.94393,-31.3891],[-54.94774,-31.38336],[-54.949,-31.378],[-54.94871,-31.37018],[-54.94961,-31.36483],[-54.95121,-31.35884],[-54.95472,-31.35498],[-54.95756,-31.35282],[-54.95905,-31.35166],[-54.96422,-31.34501],[-54.9666,-31.34025],[-54.96792,-31.33646],[-54.97136,-31.33072],[-54.97444,-31.32531],[-54.98287,-31.31632],[-54.99451,-31.30534],[-55.00253,-31.2951],[-55.00983,-31.2855],[-55.01371,-31.28195],[-55.01574,-31.28167],[-55.01881,-31.28181],[-55.0211,-31.28425],[-55.02273,-31.28891],[-55.02512,-31.29417],[-55.02939,-31.30094],[-55.03808,-31.30885],[-55.05079,-31.31665],[-55.06153,-31.32073],[-55.07623,-31.32314],[-55.09045,-31.32275],[-55.10351,-31.3205],[-55.11513,-31.31892],[-55.12877,-31.3129],[-55.14092,-31.30598],[-55.1509,-31.29974],[-55.16151,-31.29098],[-55.16715,-31.28581],[-55.17352,-31.28061],[-55.18458,-31.27403],[-55.19319,-31.27034],[-55.20293,-31.26755],[-55.21813,-31.2643],[-55.22611,-31.26281],[-55.2376,-31.25809],[-55.24436,-31.25382],[-55.24853,-31.24869],[-55.25264,-31.24199],[-55.25596,-31.23343],[-55.25857,-31.22584],[-55.26262,-31.21757],[-55.26704,-31.20961],[-55.27081,-31.20354],[-55.27605,-31.19775],[-55.2809,-31.19134],[-55.28364,-31.18688],[-55.28669,-31.18115],[-55.28645,-31.1752],[-55.28696,-31.16954],[-55.28894,-31.16447],[-55.29522,-31.15739],[-55.30125,-31.15314],[-55.31194,-31.14719],[-55.32936,-31.13602],[-55.33564,-31.12925],[-55.33941,-31.12318],[-55.34089,-31.11468],[-55.34088,-31.10559],[-55.34234,-31.09646],[-55.34549,-31.08445],[-55.34974,-31.07242],[-55.35411,-31.06351],[-55.3602,-31.05204],[-55.36743,-31.0418],[-55.37334,-31.03473],[-55.38179,-31.02789],[-55.38892,-31.02392],[-55.39858,-31.01986],[-55.40934,-31.01578],[-55.42118,-31.01166],[-55.42652,-31.00868],[-55.43078,-31.00604],[-55.43488,-30.99964],[-55.43687,-30.99488],[-55.43808,-30.98889],[-55.43964,-30.98258],[-55.44223,-30.97497],[-55.44527,-30.96924],[-55.45092,-30.96499],[-55.45876,-30.96099],[-55.47162,-30.95526],[-55.48344,-30.95083],[-55.49201,-30.9468],[-55.49658,-30.9429],[-55.50132,-30.9346],[-55.50873,-30.92058],[-55.5156,-30.91096],[-55.52053,-30.90705],[-55.54603,-30.89089],[-55.56181,-30.8857],[-55.56641,-30.88273],[-55.57203,-30.87785],[-55.575,-30.87086],[-55.57687,-30.86359],[-55.57983,-30.85629],[-55.58255,-30.85181],[-55.5864,-30.84824],[-55.5928,-30.8449],[-55.60038,-30.84372],[-55.61133,-30.84463],[-55.62308,-30.84739],[-55.63049,-30.85061],[-55.63466,-30.85455],[-55.63715,-30.86168],[-55.63968,-30.86975],[-55.64032,-30.87631],[-55.63961,-30.88511],[-55.63843,-30.89142],[-55.63483,-30.90063],[-55.63406,-30.90817],[-55.63592,-30.91752],[-55.63886,-30.92914],[-55.64284,-30.93716],[-55.64794,-30.94577],[-55.65109,-30.95132],[-55.65714,-30.95645],[-55.66238,-30.95973],[-55.67083,-30.96166],[-55.67807,-30.9608],[-55.68526,-30.95868],[-55.69178,-30.95816],[-55.69761,-30.95828],[-55.7021,-30.96096],[-55.71381,-30.97093],[-55.72066,-30.9776],[-55.72969,-30.9842],[-55.73681,-30.98899],[-55.74849,-30.99769],[-55.75939,-31.00549],[-55.76796,-31.00991],[-55.77361,-31.01411],[-55.78066,-31.01701],[-55.78847,-31.02083],[-55.79717,-31.02807],[-55.80513,-31.03501],[-55.81316,-31.04353],[-55.82027,-31.04768],[-55.82959,-31.05238],[-55.8378,-31.05681],[-55.84335,-31.05882],[-55.8486,-31.06209],[-55.86187,-31.07356],[-55.8698,-31.07957],[-55.87534,-31.08126],[-55.88631,-31.08215],[-55.89798,-31.08238],[-55.90673,-31.0824],[-55.91594,-31.0846],[-55.92775,-31.08796],[-55.93363,-31.08901],[-55.94381,-31.08866],[-55.95106,-31.08779],[-55.95751,-31.08538],[-55.96394,-31.08265],[-55.97314,-31.07669],[-55.98311,-31.07165],[-55.98955,-31.06923],[-55.99458,-31.06781],[-56.00174,-31.06505],[-56.00782,-31.06265],[-56.01063,-31.05639],[-56.01282,-31.04576],[-56.01267,-31.03636],[-56.00967,-31.02293],[-56.01158,-30.99397],[-56.00924,-30.98491],[-56.00529,-30.97977],[-56.006,-30.97768],[-56.01021,-30.97662],[-56.00225,-30.96519],[-56.00682,-30.96022],[-56.00769,-30.94391],[-56.01315,-30.9412],[-56.01483,-30.93701],[-56.00303,-30.92273],[-56.00177,-30.91841],[-56.00789,-30.90651],[-56.00777,-30.89893],[-55.98791,-30.86193],[-55.98701,-30.85966],[-55.9872,-30.85903],[-55.98628,-30.85675],[-55.99045,-30.84285],[-56.00322,-30.83119],[-56.00299,-30.81995],[-56.00701,-30.81477],[-56.01375,-30.81086],[-56.01444,-30.80899],[-56.01088,-30.8045],[-56.01117,-30.80288],[-56.01015,-30.80159],[-56.01058,-30.79928],[-56.02124,-30.79411],[-56.02316,-30.79101],[-56.02016,-30.78629],[-56.02073,-30.78543],[-56.01943,-30.78338],[-56.02068,-30.78151],[-56.03277,-30.7788],[-56.03686,-30.76926],[-56.04059,-30.76937],[-56.04742,-30.77372],[-56.05255,-30.76965],[-56.05915,-30.76874],[-56.06644,-30.75955],[-56.064,-30.74655],[-56.06508,-30.74101],[-56.06788,-30.73839],[-56.0743,-30.73955],[-56.08616,-30.74924],[-56.09013,-30.74911],[-56.09982,-30.73432],[-56.10498,-30.73116],[-56.11189,-30.73116],[-56.12059,-30.73568],[-56.12671,-30.73593],[-56.13027,-30.73259],[-56.12927,-30.71634],[-56.13105,-30.70845],[-56.13404,-30.70447],[-56.14491,-30.69836],[-56.14764,-30.69437],[-56.14791,-30.68862],[-56.14109,-30.67876],[-56.14205,-30.67643],[-56.15968,-30.66734],[-56.16758,-30.66018],[-56.16979,-30.65047],[-56.16671,-30.64116],[-56.16764,-30.63838],[-56.17766,-30.63138],[-56.18021,-30.62326],[-56.175,-30.6138],[-56.17621,-30.61123],[-56.18979,-30.60089],[-56.20253,-30.60114],[-56.21089,-30.59855],[-56.21882,-30.59805],[-56.23066,-30.58455],[-56.23069,-30.58445],[-56.22579,-30.58123],[-56.22529,-30.57847],[-56.22507,-30.57832],[-56.22436,-30.57444],[-56.23033,-30.57171],[-56.24828,-30.57016],[-56.25211,-30.57255],[-56.25599,-30.58183],[-56.2581,-30.58175],[-56.26211,-30.57679],[-56.2624,-30.5715],[-56.25854,-30.56269],[-56.26092,-30.55687],[-56.26527,-30.5535],[-56.27801,-30.54823],[-56.28206,-30.54418],[-56.28464,-30.53698],[-56.28946,-30.53237],[-56.28995,-30.52437],[-56.29026,-30.52117],[-56.29203,-30.51951],[-56.29814,-30.51975],[-56.30721,-30.52654],[-56.32026,-30.52814],[-56.33043,-30.52456],[-56.33426,-30.52144],[-56.33121,-30.51306],[-56.33305,-30.50703],[-56.3361,-30.50439],[-56.34367,-30.50206],[-56.34722,-30.49872],[-56.34966,-30.48853],[-56.35276,-30.48704],[-56.3586,-30.48729],[-56.36084,-30.48973],[-56.35919,-30.49415],[-56.36205,-30.49864],[-56.38321,-30.49237],[-56.38599,-30.48952],[-56.38793,-30.48026],[-56.39522,-30.47666],[-56.39321,-30.47313],[-56.39387,-30.47265],[-56.39249,-30.47023],[-56.39479,-30.46854],[-56.39954,-30.46814],[-56.40335,-30.46479],[-56.40519,-30.45898],[-56.40342,-30.45514],[-56.3983,-30.45349],[-56.39785,-30.44961],[-56.40165,-30.44602],[-56.40793,-30.44442],[-56.41145,-30.44062],[-56.41555,-30.4267],[-56.41979,-30.42654],[-56.4325,-30.43228],[-56.43585,-30.43032],[-56.43774,-30.42566],[-56.44104,-30.42278],[-56.44708,-30.42164],[-56.45054,-30.41647],[-56.44982,-30.41259],[-56.44476,-30.40635],[-56.44543,-30.4038],[-56.45279,-30.39733],[-56.45852,-30.3845],[-56.46164,-30.38323],[-56.46732,-30.38578],[-56.47415,-30.38484],[-56.4782,-30.38653],[-56.48245,-30.39211],[-56.48796,-30.39122],[-56.50061,-30.37928],[-56.50707,-30.37605],[-56.51275,-30.3623],[-56.51695,-30.35887],[-56.52327,-30.35571],[-56.53148,-30.35586],[-56.53939,-30.36062],[-56.54393,-30.3616],[-56.5453,-30.35718],[-56.5426,-30.35063],[-56.54495,-30.34457],[-56.54913,-30.3435],[-56.54981,-30.34253],[-56.54936,-30.34183],[-56.53904,-30.33647],[-56.53607,-30.32992],[-56.53627,-30.32904],[-56.53536,-30.32702],[-56.53925,-30.30943],[-56.54401,-30.30948],[-56.55116,-30.31495],[-56.55752,-30.31517],[-56.56611,-30.30705],[-56.57314,-30.30495],[-56.57641,-30.30138],[-56.57346,-30.29529],[-56.57456,-30.29066],[-56.58167,-30.29016],[-56.59066,-30.29556],[-56.60204,-30.29582],[-56.61075,-30.30055],[-56.61652,-30.29963],[-56.61897,-30.29564],[-56.6172,-30.29203],[-56.60536,-30.28261],[-56.60421,-30.27554],[-56.60723,-30.26716],[-56.61157,-30.26401],[-56.6191,-30.26648],[-56.6333,-30.26502],[-56.63637,-30.26307],[-56.63686,-30.2616],[-56.63573,-30.26005],[-56.62614,-30.25858],[-56.62346,-30.24794],[-56.62703,-30.24],[-56.63929,-30.2315],[-56.64565,-30.22139],[-56.65085,-30.21958],[-56.65777,-30.2207],[-56.66175,-30.21962],[-56.66028,-30.21733],[-56.64855,-30.21525],[-56.64217,-30.20907],[-56.64296,-30.20762],[-56.64145,-30.20616],[-56.64363,-30.20218],[-56.65239,-30.20299],[-56.65871,-30.19724],[-56.66598,-30.19995],[-56.67179,-30.19995],[-56.67743,-30.19652],[-56.68218,-30.19634],[-56.6915,-30.2031],[-56.6965,-30.20268],[-56.70002,-30.1991],[-56.70561,-30.18442],[-56.70288,-30.17741],[-56.70511,-30.17457],[-56.70881,-30.17442],[-56.71503,-30.1774],[-56.72266,-30.17687],[-56.75118,-30.16107],[-56.75682,-30.15983],[-56.77037,-30.16446],[-56.77488,-30.16369],[-56.78015,-30.15948],[-56.7814,-30.153],[-56.77824,-30.13774],[-56.78038,-30.12801],[-56.78588,-30.12477],[-56.79859,-30.12271],[-56.80213,-30.11958],[-56.80084,-30.10999],[-56.80291,-30.10394],[-56.80608,-30.10404],[-56.81179,-30.10726],[-56.81571,-30.10642],[-56.82919,-30.09142],[-56.83509,-30.0882],[-56.85221,-30.08753],[-56.86171,-30.09266],[-56.86594,-30.09272],[-56.87059,-30.08565],[-56.87691,-30.0854],[-56.89131,-30.09332],[-56.89862,-30.10681],[-56.90126,-30.10693],[-56.90591,-30.10491],[-56.9122,-30.10489],[-56.91299,-30.10257],[-56.91232,-30.10069],[-56.91254,-30.1004],[-56.91161,-30.09779],[-56.91655,-30.09139],[-56.92469,-30.09061],[-56.95917,-30.09504],[-56.97896,-30.09347],[-56.9896,-30.08018],[-56.99184,-30.07969],[-56.9993,-30.08054],[-57.00665,-30.08372],[-57.01494,-30.08531],[-57.02173,-30.08886],[-57.02609,-30.09392],[-57.03286,-30.09747],[-57.04072,-30.09863],[-57.05197,-30.09752],[-57.06197,-30.09391],[-57.06319,-30.0891],[-57.06311,-30.08874],[-57.06834,-30.08775],[-57.07468,-30.09087],[-57.08404,-30.09818],[-57.08791,-30.10362],[-57.08609,-30.11083],[-57.08384,-30.11363],[-57.08489,-30.11642],[-57.08847,-30.11901],[-57.09277,-30.11717],[-57.09408,-30.11075],[-57.09931,-30.10896],[-57.10387,-30.11078],[-57.1094,-30.11184],[-57.11141,-30.11511],[-57.11271,-30.11505],[-57.11195,-30.116],[-57.11123,-30.11657],[-57.11266,-30.1189],[-57.11021,-30.12082],[-57.1076,-30.13287],[-57.10913,-30.13941],[-57.11419,-30.14044],[-57.12122,-30.13994],[-57.1271,-30.14304],[-57.13133,-30.15052],[-57.15128,-30.18422],[-57.15849,-30.18859],[-57.16323,-30.19528],[-57.16522,-30.19984],[-57.16415,-30.20461],[-57.16059,-30.20972],[-57.15814,-30.21974],[-57.15713,-30.22901],[-57.15801,-30.23037],[-57.15784,-30.23191],[-57.15998,-30.23525],[-57.16721,-30.23921],[-57.17154,-30.24507],[-57.17522,-30.24605],[-57.18145,-30.25118],[-57.1886,-30.25676],[-57.19391,-30.26185],[-57.19931,-30.27344],[-57.20678,-30.28146],[-57.21737,-30.28395],[-57.22708,-30.28559],[-57.23954,-30.28432],[-57.25128,-30.28065],[-57.25428,-30.27543],[-57.25744,-30.26908],[-57.26135,-30.26601],[-57.26386,-30.26753],[-57.26405,-30.26893],[-57.26508,-30.27546],[-57.26864,-30.27845],[-57.27564,-30.28685],[-57.28504,-30.28564],[-57.29191,-30.27986],[-57.29989,-30.27089],[-57.30167,-30.26408],[-57.30665,-30.25862],[-57.31236,-30.25684],[-57.32009,-30.26041],[-57.32529,-30.26753],[-57.33307,-30.27029],[-57.33987,-30.27382],[-57.34439,-30.27644],[-57.34982,-30.27951],[-57.35317,-30.27803],[-57.35959,-30.27183],[-57.36398,-30.26837],[-57.3733,-30.26877],[-57.37771,-30.27341],[-57.38735,-30.29286],[-57.3922,-30.29792],[-57.39491,-30.29966],[-57.39966,-30.29919],[-57.40301,-30.29676],[-57.40785,-30.29401],[-57.41433,-30.29481],[-57.41798,-30.29329],[-57.41979,-30.28896],[-57.42028,-30.28008],[-57.42241,-30.27546],[-57.42493,-30.27217],[-57.4334,-30.27091],[-57.44493,-30.27342],[-57.4556,-30.26617],[-57.46328,-30.26244],[-57.47077,-30.26195],[-57.47678,-30.26301],[-57.48036,-30.26527],[-57.48512,-30.26842],[-57.49295,-30.27442],[-57.49923,-30.27914],[-57.50573,-30.27981],[-57.52128,-30.27722],[-57.53768,-30.27182],[-57.55003,-30.26362],[-57.55658,-30.25478],[-57.55868,-30.24616],[-57.55657,-30.23351],[-57.55418,-30.22167],[-57.55515,-30.2124],[-57.56109,-30.20616],[-57.56983,-30.19984],[-57.57904,-30.19778],[-57.60344,-30.18643],[-57.614,-30.18079],[-57.61522,-30.17911],[-57.60912,-30.179],[-57.59293,-30.17651],[-57.57793,-30.17361],[-57.55972,-30.16827],[-57.50484,-30.14307],[-57.46673,-30.11577],[-57.45773,-30.10667],[-57.44239,-30.07389],[-57.41204,-30.0407],[-57.40065,-30.03195],[-57.3815,-30.02058],[-57.35848,-30.01249],[-57.34671,-30.00602],[-57.34197,-30.00123],[-57.32856,-29.98183],[-57.32479,-29.96886],[-57.32498,-29.96903],[-57.32124,-29.95614],[-57.31926,-29.91655],[-57.32203,-29.88612],[-57.31834,-29.86758],[-57.30649,-29.84893],[-57.28285,-29.8199],[-57.25287,-29.7915],[-57.23599,-29.77837],[-57.21787,-29.77299],[-57.19019,-29.77363],[-57.17031,-29.77598],[-57.16403,-29.77524],[-57.13642,-29.76576],[-57.1045,-29.74897],[-57.05556,-29.70406],[-57.04323,-29.69019],[-57.01942,-29.65696],[-57.00893,-29.65189],[-56.9993,-29.64483],[-56.98893,-29.64015],[-56.97881,-29.6365],[-56.97265,-29.63594],[-56.97093,-29.63738],[-56.96937,-29.63524],[-56.96887,-29.63262],[-56.96867,-29.63235],[-56.96703,-29.62375],[-56.9699,-29.61243],[-56.97047,-29.60595],[-56.96689,-29.60092],[-56.96236,-29.59644],[-56.95943,-29.59189],[-56.95435,-29.58696],[-56.94481,-29.57894],[-56.92232,-29.55885],[-56.91159,-29.54854],[-56.90704,-29.54359],[-56.90031,-29.53779],[-56.89625,-29.53189],[-56.89533,-29.52986],[-56.89676,-29.53077],[-56.89554,-29.52899],[-56.89285,-29.5231],[-56.88911,-29.51851],[-56.88461,-29.51428],[-56.8817,-29.51197],[-56.87383,-29.50863],[-56.86641,-29.50758],[-56.86154,-29.50371],[-56.85561,-29.50032],[-56.85539,-29.50269],[-56.85505,-29.50249],[-56.8455,-29.49814],[-56.83671,-29.49341],[-56.82872,-29.48899],[-56.82264,-29.48415],[-56.81603,-29.47662],[-56.8139,-29.47298],[-56.81123,-29.46664],[-56.80864,-29.46166],[-56.80323,-29.45476],[-56.79981,-29.44879],[-56.7957,-29.44455],[-56.78969,-29.44073],[-56.7836,-29.43555],[-56.7822,-29.4312],[-56.78215,-29.43037],[-56.78149,-29.4283],[-56.78121,-29.42288],[-56.78076,-29.42025],[-56.77872,-29.41972],[-56.77967,-29.41373],[-56.77951,-29.41278],[-56.77955,-29.40633],[-56.77963,-29.40196],[-56.77812,-29.39813],[-56.77551,-29.3928],[-56.7701,-29.3859],[-56.76516,-29.38034],[-56.75837,-29.37654],[-56.75164,-29.37376],[-56.74151,-29.37281],[-56.73018,-29.3709],[-56.71995,-29.36792],[-56.71239,-29.36415],[-56.70841,-29.36194],[-56.70337,-29.35468],[-56.69882,-29.3491],[-56.6939,-29.34387],[-56.68815,-29.33765],[-56.68232,-29.32975],[-56.67568,-29.32119],[-56.67186,-29.3149],[-56.66954,-29.30753],[-56.66474,-29.29721],[-56.66304,-29.29422],[-56.65789,-29.28459],[-56.65614,-29.28059],[-56.65625,-29.27956],[-56.65543,-29.2777],[-56.65619,-29.27056],[-56.65379,-29.26115],[-56.65195,-29.24799],[-56.65131,-29.23581],[-56.64968,-29.21925],[-56.64561,-29.20788],[-56.63994,-29.19556],[-56.634,-29.18528],[-56.62766,-29.17502],[-56.61982,-29.16549],[-56.61325,-29.15795],[-56.60687,-29.14667],[-56.60415,-29.13897],[-56.60111,-29.13231],[-56.59728,-29.12669],[-56.59665,-29.12763],[-56.59596,-29.12662],[-56.59307,-29.123],[-56.58634,-29.11987],[-56.57614,-29.11688],[-56.56361,-29.11364],[-56.53946,-29.10984],[-56.53036,-29.10578],[-56.52162,-29.10104],[-56.51249,-29.0963],[-56.50421,-29.09289],[-56.49635,-29.09015],[-56.48658,-29.08815],[-56.47651,-29.08752],[-56.46331,-29.08633],[-56.45207,-29.08541],[-56.44228,-29.08273],[-56.4348,-29.07997],[-56.42844,-29.07648],[-56.42479,-29.07289],[-56.42023,-29.06661],[-56.41733,-29.06266],[-56.4155,-29.05559],[-56.41472,-29.05271],[-56.41176,-29.0474],[-56.40797,-29.0411],[-56.40539,-29.03577],[-56.40316,-29.02975],[-56.40155,-29.02066],[-56.40277,-29.01416],[-56.40667,-29.00723],[-56.41026,-29.00167],[-56.41242,-28.99853],[-56.4125,-28.99242],[-56.41171,-28.98342],[-56.41017,-28.97657],[-56.40563,-28.97064],[-56.39955,-28.96477],[-56.39066,-28.95662],[-56.3803,-28.9499],[-56.37044,-28.94552],[-56.35671,-28.94095],[-56.34533,-28.93697],[-56.33744,-28.93354],[-56.33202,-28.92994],[-56.3238,-28.92445],[-56.32254,-28.92524],[-56.3185,-28.92089],[-56.31402,-28.91597],[-56.31022,-28.90933],[-56.30583,-28.8983],[-56.30384,-28.88887],[-56.30177,-28.87981],[-56.30113,-28.8769],[-56.30029,-28.86744],[-56.30056,-28.85725],[-56.30168,-28.84839],[-56.30316,-28.83917],[-56.30387,-28.82999],[-56.3028,-28.82393],[-56.30013,-28.81656],[-56.29743,-28.80852],[-56.29244,-28.80091],[-56.28793,-28.79531],[-56.28426,-28.79104],[-56.27435,-28.7853],[-56.26686,-28.78185],[-56.25787,-28.77913],[-56.24812,-28.77644],[-56.23451,-28.77389],[-56.22677,-28.77316],[-56.21596,-28.77254],[-56.20559,-28.77326],[-56.19556,-28.77295],[-56.1917,-28.77275],[-56.18416,-28.76794],[-56.17895,-28.76372],[-56.17568,-28.75977],[-56.17201,-28.75549],[-56.1686,-28.7485],[-56.16639,-28.74247],[-56.16218,-28.73482],[-56.15723,-28.72788],[-56.15226,-28.72026],[-56.14646,-28.71165],[-56.14144,-28.70302],[-56.1394,-28.70071],[-56.1342,-28.69649],[-56.12895,-28.69126],[-56.12174,-28.68507],[-56.11491,-28.67888],[-56.10894,-28.67468],[-56.09977,-28.66789],[-56.08531,-28.65484],[-56.07893,-28.64998],[-56.0737,-28.64508],[-56.06688,-28.63888],[-56.05967,-28.6327],[-56.05173,-28.62757],[-56.05153,-28.6274],[-56.04538,-28.62303],[-56.0383,-28.61955],[-56.02853,-28.61617],[-56.0214,-28.61167],[-56.01545,-28.60781],[-56.01221,-28.6042],[-56.01048,-28.59985],[-56.00795,-28.59519],[-56.0066,-28.59083],[-56.00741,-28.58334],[-56.00795,-28.57823],[-56.01029,-28.57069],[-56.01276,-28.56585],[-56.01526,-28.56169],[-56.01693,-28.5562],[-56.0196,-28.54729],[-56.02204,-28.54178],[-56.02383,-28.539],[-56.02356,-28.5329],[-56.02203,-28.52482],[-56.02159,-28.52238],[-56.0184,-28.51667],[-56.01515,-28.51271],[-56.01075,-28.50914],[-56.00681,-28.5069],[-55.99896,-28.50311],[-55.9939,-28.50193],[-55.98579,-28.50086],[-55.97996,-28.49937],[-55.97416,-28.49855],[-55.9687,-28.49671],[-55.96405,-28.49586],[-55.95326,-28.49488],[-55.94514,-28.49381],[-55.93854,-28.49234],[-55.9331,-28.49083],[-55.92761,-28.48831],[-55.92054,-28.48483],[-55.91744,-28.48426],[-55.91354,-28.48303],[-55.90276,-28.48239],[-55.8935,-28.48135],[-55.88802,-28.47917],[-55.88599,-28.47653],[-55.88463,-28.47128],[-55.88389,-28.4686],[-55.88439,-28.46248],[-55.88562,-28.45565],[-55.88733,-28.44875],[-55.88991,-28.4399],[-55.89337,-28.4313],[-55.89779,-28.4186],[-55.9011,-28.40661],[-55.90044,-28.40052],[-55.8991,-28.39616],[-55.89576,-28.39018],[-55.89082,-28.38254],[-55.88501,-28.37291],[-55.87775,-28.36502],[-55.87405,-28.35938],[-55.86767,-28.35383],[-55.86341,-28.35296],[-55.8588,-28.35278],[-55.84772,-28.35384],[-55.83555,-28.35629],[-55.82454,-28.3587],[-55.81807,-28.35994],[-55.81125,-28.36187],[-55.8063,-28.36271],[-55.80058,-28.36359],[-55.79295,-28.36452],[-55.78567,-28.36477],[-55.77729,-28.36607],[-55.76965,-28.36701],[-55.76663,-28.36813],[-55.76134,-28.37],[-55.75604,-28.37154],[-55.74843,-28.37281],[-55.74465,-28.37429],[-55.73753,-28.37826],[-55.73267,-28.38114],[-55.72902,-28.38567],[-55.72657,-28.39118],[-55.72417,-28.3977],[-55.72286,-28.40283],[-55.72105,-28.40561],[-55.71672,-28.41186],[-55.71133,-28.42051],[-55.70723,-28.42337],[-55.70384,-28.42484],[-55.69883,-28.42432],[-55.69491,-28.42242],[-55.69285,-28.41909],[-55.69164,-28.41701],[-55.68982,-28.41537],[-55.68811,-28.40773],[-55.68585,-28.39898],[-55.68437,-28.39191],[-55.68286,-28.38604],[-55.67972,-28.37631],[-55.67669,-28.36828],[-55.67427,-28.3653],[-55.6713,-28.35861],[-55.67104,-28.35677],[-55.67058,-28.35573],[-55.66947,-28.34762],[-55.66826,-28.33715],[-55.66988,-28.33031],[-55.67309,-28.32444],[-55.67601,-28.32095],[-55.68159,-28.31704],[-55.68865,-28.31171],[-55.70179,-28.30518],[-55.71533,-28.29896],[-55.72657,-28.29282],[-55.73895,-28.28664],[-55.74609,-28.28334],[-55.75019,-28.28049],[-55.75388,-28.27732],[-55.75672,-28.2746],[-55.76515,-28.27185],[-55.77065,-28.26624],[-55.77313,-28.2614],[-55.77463,-28.25186],[-55.77483,-28.24778],[-55.77238,-28.24413],[-55.76842,-28.24121],[-55.76209,-28.23668],[-55.75619,-28.23314],[-55.75036,-28.2313],[-55.74301,-28.22952],[-55.72673,-28.22531],[-55.71823,-28.22356],[-55.7101,-28.22146],[-55.70155,-28.21869],[-55.69259,-28.21526],[-55.68705,-28.21103],[-55.6819,-28.20713],[-55.67752,-28.20321],[-55.6743,-28.19958],[-55.66717,-28.19405],[-55.6632,-28.19079],[-55.65734,-28.18793],[-55.65188,-28.18574],[-55.64406,-28.18192],[-55.63741,-28.17841],[-55.63504,-28.17679],[-55.62827,-28.17057],[-55.62185,-28.16366],[-55.61898,-28.159],[-55.61721,-28.1533],[-55.61702,-28.14889],[-55.61915,-28.14475],[-55.61938,-28.14135],[-55.61875,-28.13885],[-55.61738,-28.13416],[-55.61448,-28.12882],[-55.61012,-28.12523],[-55.60466,-28.12269],[-55.59844,-28.12053],[-55.58998,-28.11944],[-55.58501,-28.1196],[-55.58202,-28.1214],[-55.57906,-28.12387],[-55.57473,-28.13011],[-55.57266,-28.13561],[-55.57212,-28.14105],[-55.5709,-28.14855],[-55.57036,-28.154],[-55.56795,-28.16052],[-55.56344,-28.1627],[-55.55776,-28.16424],[-55.55431,-28.16401],[-55.54917,-28.16011],[-55.54481,-28.15652],[-55.54272,-28.15217],[-55.54013,-28.14513],[-55.53977,-28.14323],[-55.53941,-28.14225],[-55.53797,-28.13449],[-55.53711,-28.13087],[-55.53597,-28.12763],[-55.53153,-28.12201],[-55.52837,-28.11974],[-55.5237,-28.11785],[-55.51678,-28.11705],[-55.51172,-28.11518],[-55.50808,-28.11021],[-55.50427,-28.10117],[-55.50249,-28.09512],[-55.50073,-28.08839],[-55.49996,-28.08551],[-55.49749,-28.08118],[-55.49507,-28.0782],[-55.49004,-28.07667],[-55.4851,-28.0775],[-55.4806,-28.07968],[-55.47686,-28.08184],[-55.47351,-28.08432],[-55.4661,-28.09032],[-55.45863,-28.09462],[-55.45372,-28.09647],[-55.44798,-28.09631],[-55.44369,-28.09441],[-55.4406,-28.09129],[-55.43739,-28.08667],[-55.43684,-28.08701],[-55.43589,-28.08502],[-55.43258,-28.07902],[-55.42612,-28.0704],[-55.42017,-28.06516],[-55.41312,-28.06097],[-55.40061,-28.05424],[-55.39083,-28.04878],[-55.38415,-28.04424],[-55.37864,-28.04034],[-55.37429,-28.03483],[-55.3753,-28.03414],[-55.37325,-28.03155],[-55.37022,-28.0265],[-55.3681,-28.02114],[-55.37257,-28.00879],[-55.37618,-28.00325],[-55.38022,-27.99905],[-55.38276,-27.99558],[-55.38381,-27.99318],[-55.3856,-27.99007],[-55.38475,-27.98806],[-55.38269,-27.98439],[-55.37639,-27.9795],[-55.37019,-27.97732],[-55.36216,-27.97425],[-55.34389,-27.9726],[-55.33788,-27.96617],[-55.34115,-27.96508],[-55.33901,-27.962],[-55.33757,-27.95424],[-55.33505,-27.94394],[-55.3314,-27.93767],[-55.32697,-27.9317],[-55.323,-27.92809],[-55.3172,-27.92623],[-55.30719,-27.92416],[-55.29645,-27.92313],[-55.2834,-27.92149],[-55.27763,-27.9207],[-55.27762,-27.9179],[-55.26655,-27.91638],[-55.26,-27.91489],[-55.25334,-27.91068],[-55.24696,-27.90375],[-55.23818,-27.89383],[-55.23745,-27.8931],[-55.24075,-27.89881],[-55.2389,-27.89672],[-55.23136,-27.88915],[-55.22266,-27.88127],[-55.21206,-27.87378],[-55.20301,-27.86659],[-55.196,-27.86307],[-55.19023,-27.86188],[-55.18334,-27.86141],[-55.17458,-27.86201],[-55.16937,-27.86555],[-55.16193,-27.87086],[-55.15873,-27.87706],[-55.15444,-27.88498],[-55.14891,-27.89023],[-55.14062,-27.89319],[-55.13383,-27.89542],[-55.12881,-27.89388],[-55.12523,-27.88991],[-55.12473,-27.88728],[-55.1245,-27.88702],[-55.12355,-27.88196],[-55.12288,-27.87418],[-55.12409,-27.86567],[-55.12449,-27.8611],[-55.12211,-27.85744],[-55.11699,-27.85318],[-55.10847,-27.85004],[-55.09998,-27.84757],[-55.09078,-27.84648],[-55.08582,-27.84662],[-55.0767,-27.84757],[-55.07146,-27.85043],[-55.06204,-27.85375],[-55.05291,-27.85469],[-55.0434,-27.85564],[-55.03537,-27.85519],[-55.03189,-27.85394],[-55.02832,-27.85031],[-55.0262,-27.8446],[-55.02609,-27.84337],[-55.02548,-27.84171],[-55.02485,-27.83495],[-55.02546,-27.83086],[-55.03133,-27.82425],[-55.03646,-27.81834],[-55.04058,-27.81619],[-55.04694,-27.81295],[-55.0514,-27.80944],[-55.05357,-27.80819],[-55.06414,-27.80296],[-55.07128,-27.80005],[-55.07757,-27.79478],[-55.08005,-27.78962],[-55.0809,-27.78733],[-55.07978,-27.78609],[-55.07035,-27.77856],[-55.06295,-27.77437],[-55.05871,-27.77313],[-55.05332,-27.77193],[-55.04687,-27.77279],[-55.04097,-27.77839],[-55.03616,-27.78259],[-55.02736,-27.79234],[-55.02103,-27.79659],[-55.01381,-27.79747],[-55.00802,-27.7956],[-55.00293,-27.79202],[-55,-27.79012],[-54.99643,-27.78704],[-54.99442,-27.78306],[-54.9912,-27.78029],[-54.98686,-27.77634],[-54.9826,-27.77442],[-54.97762,-27.77389],[-54.97747,-27.77391],[-54.97802,-27.77683],[-54.97342,-27.77759],[-54.96354,-27.77854],[-54.95519,-27.77979],[-54.94719,-27.78002],[-54.94053,-27.77512],[-54.93723,-27.76809],[-54.93506,-27.76068],[-54.93226,-27.75703],[-54.92755,-27.75343],[-54.9221,-27.75019],[-54.91578,-27.74392],[-54.9102,-27.7373],[-54.90692,-27.7306],[-54.90393,-27.72153],[-54.90387,-27.72067],[-54.9032,-27.71864],[-54.90246,-27.70849],[-54.90252,-27.70635],[-54.90218,-27.69898],[-54.90277,-27.69859],[-54.90278,-27.68998],[-54.90274,-27.68373],[-54.90278,-27.66304],[-54.90319,-27.65319],[-54.90295,-27.6465],[-54.90034,-27.64091],[-54.8956,-27.6363],[-54.88442,-27.6322],[-54.87368,-27.63012],[-54.86569,-27.63034],[-54.85993,-27.62914],[-54.8526,-27.62662],[-54.84716,-27.62338],[-54.84597,-27.62154],[-54.8462,-27.62015],[-54.84361,-27.61616],[-54.83999,-27.6105],[-54.83655,-27.59906],[-54.82896,-27.5779],[-54.82513,-27.56614],[-54.8234,-27.56008],[-54.82284,-27.55467],[-54.81826,-27.54326],[-54.817,-27.5399],[-54.81189,-27.53529],[-54.80801,-27.53302],[-54.80383,-27.53314],[-54.8001,-27.53527],[-54.79638,-27.53775],[-54.79417,-27.54018],[-54.79317,-27.54427],[-54.79261,-27.55005],[-54.79237,-27.55413],[-54.78992,-27.56064],[-54.7882,-27.56611],[-54.78641,-27.56921],[-54.78725,-27.57123],[-54.78727,-27.57186],[-54.78714,-27.57209],[-54.78796,-27.57411],[-54.78809,-27.57783],[-54.78737,-27.57887],[-54.78592,-27.58128],[-54.78449,-27.58403],[-54.78115,-27.5865],[-54.77511,-27.58802],[-54.76897,-27.58648],[-54.76395,-27.58458],[-54.75923,-27.57996],[-54.75215,-27.57337],[-54.74747,-27.5701],[-54.74165,-27.56686],[-54.73702,-27.56495],[-54.73206,-27.56474],[-54.72601,-27.56592],[-54.72304,-27.56697],[-54.72333,-27.56373],[-54.72114,-27.5645],[-54.71634,-27.56597],[-54.70547,-27.56897],[-54.69851,-27.57086],[-54.6884,-27.57314],[-54.68258,-27.57263],[-54.67489,-27.57046],[-54.67025,-27.5682],[-54.66862,-27.56485],[-54.66827,-27.56169],[-54.66975,-27.55359],[-54.67346,-27.53862],[-54.67584,-27.52974],[-54.67738,-27.51885],[-54.6772,-27.51338],[-54.67472,-27.5113],[-54.67052,-27.51074],[-54.66524,-27.51223],[-54.66004,-27.51609],[-54.65637,-27.52026],[-54.6514,-27.53124],[-54.6479,-27.54082],[-54.64752,-27.54135],[-54.64354,-27.5467],[-54.63869,-27.54988],[-54.62959,-27.55079],[-54.62385,-27.54992],[-54.62036,-27.54798],[-54.61718,-27.54365],[-54.61396,-27.5383],[-54.61185,-27.53191],[-54.60929,-27.5235],[-54.60638,-27.51578],[-54.60442,-27.51195],[-54.60514,-27.51191],[-54.60118,-27.50419],[-54.5994,-27.50129],[-54.59584,-27.49666],[-54.59369,-27.49141],[-54.59098,-27.48597],[-54.58868,-27.47765],[-54.5865,-27.46848],[-54.58424,-27.46296],[-54.58119,-27.46039],[-54.57641,-27.4583],[-54.57317,-27.45772],[-54.56675,-27.4581],[-54.56356,-27.45929],[-54.55945,-27.46226],[-54.55758,-27.46584],[-54.55332,-27.47214],[-54.5507,-27.47552],[-54.5457,-27.48183],[-54.54211,-27.48612],[-54.53439,-27.50045],[-54.53106,-27.50495],[-54.52691,-27.50682],[-54.52468,-27.50687],[-54.52143,-27.50607],[-54.51767,-27.50484],[-54.5154,-27.50335],[-54.51383,-27.50096],[-54.51152,-27.49837],[-54.50897,-27.496],[-54.50669,-27.49451],[-54.50514,-27.49234],[-54.50332,-27.48973],[-54.50153,-27.48801],[-54.49872,-27.48521],[-54.49568,-27.48329],[-54.4927,-27.48292],[-54.48693,-27.48086],[-54.48194,-27.47965],[-54.47552,-27.48048],[-54.47229,-27.48011],[-54.46882,-27.47998],[-54.4646,-27.48008],[-54.45815,-27.47979],[-54.4544,-27.47856],[-54.44963,-27.47647],[-54.44703,-27.47255],[-54.44543,-27.46906],[-54.44519,-27.46727],[-54.4447,-27.46617],[-54.44437,-27.46375],[-54.44688,-27.45684],[-54.44781,-27.45461],[-54.45215,-27.45075],[-54.45553,-27.44802],[-54.46041,-27.44547],[-54.464,-27.4414],[-54.46685,-27.43736],[-54.46975,-27.43529],[-54.47091,-27.43262],[-54.47157,-27.43038],[-54.47046,-27.42912],[-54.46844,-27.42807],[-54.4637,-27.42686],[-54.45773,-27.42612],[-54.45104,-27.42584],[-54.44384,-27.42558],[-54.43736,-27.42397],[-54.43232,-27.42144],[-54.42753,-27.41846],[-54.42398,-27.41589],[-54.41995,-27.41378],[-54.41495,-27.41213],[-54.41073,-27.4118],[-54.40481,-27.4126],[-54.40188,-27.414],[-54.39531,-27.41769],[-54.39097,-27.42177],[-54.38555,-27.43074],[-54.38036,-27.43925],[-54.37236,-27.45336],[-54.36882,-27.45941],[-54.3645,-27.46371],[-54.35787,-27.46564],[-54.35321,-27.46751],[-54.34555,-27.46813],[-54.34027,-27.46561],[-54.33692,-27.46127],[-54.33682,-27.46029],[-54.33867,-27.46161],[-54.33619,-27.45839],[-54.33548,-27.45155],[-54.33622,-27.44292],[-54.34019,-27.43488],[-54.34367,-27.42706],[-54.34391,-27.41866],[-54.34389,-27.41068],[-54.3425,-27.40768],[-54.33897,-27.40555],[-54.33452,-27.40543],[-54.32962,-27.40732],[-54.32309,-27.41106],[-54.3179,-27.41418],[-54.31369,-27.41813],[-54.31001,-27.42336],[-54.30771,-27.42683],[-54.30492,-27.4299],[-54.30173,-27.43554],[-54.29852,-27.44075],[-54.28812,-27.44614],[-54.28238,-27.44712],[-54.27752,-27.44509],[-54.27305,-27.44005],[-54.26649,-27.42907],[-54.26644,-27.42735],[-54.26575,-27.42619],[-54.26564,-27.42234],[-54.26652,-27.41975],[-54.2678,-27.41415],[-54.26858,-27.40814],[-54.26823,-27.40523],[-54.26518,-27.40084],[-54.25934,-27.39798],[-54.25354,-27.3964],[-54.24724,-27.3944],[-54.23951,-27.39286],[-54.23227,-27.39132],[-54.22743,-27.3914],[-54.22221,-27.38837],[-54.21858,-27.38473],[-54.21625,-27.38164],[-54.21415,-27.37539],[-54.21412,-27.37456],[-54.21341,-27.37251],[-54.21283,-27.35222],[-54.21095,-27.34253],[-54.20974,-27.33522],[-54.20674,-27.32922],[-54.20138,-27.32105],[-54.19565,-27.31117],[-54.19189,-27.30296],[-54.19154,-27.30092],[-54.19115,-27.30008],[-54.19,-27.29352],[-54.18922,-27.28839],[-54.18796,-27.27784],[-54.18704,-27.27358],[-54.18453,-27.26937],[-54.18023,-27.26432],[-54.17596,-27.2607],[-54.17014,-27.25883],[-54.16661,-27.25833],[-54.16406,-27.25868],[-54.16155,-27.26073],[-54.1591,-27.26451],[-54.15731,-27.26912],[-54.15678,-27.27314],[-54.15826,-27.28026],[-54.15813,-27.28712],[-54.1583,-27.29313],[-54.15649,-27.29689],[-54.1549,-27.2981],[-54.15488,-27.29667],[-54.15755,-27.29327],[-54.15722,-27.29096],[-54.15575,-27.294],[-54.1523,-27.29665],[-54.14564,-27.29909],[-54.1424,-27.29934],[-54.12989,-27.3016],[-54.11129,-27.3028],[-54.11065,-27.3048],[-54.1093,-27.30479],[-54.09839,-27.30389],[-54.08906,-27.30265],[-54.08097,-27.29969],[-54.07573,-27.29522],[-54.07144,-27.29074],[-54.06473,-27.27973],[-54.06067,-27.27152],[-54.05669,-27.26646],[-54.05308,-27.26339],[-54.04756,-27.26065],[-54.03788,-27.25771],[-54.02981,-27.25531],[-54.02526,-27.25283],[-54.02163,-27.24862],[-54.0183,-27.24383],[-54.01769,-27.24113],[-54.01756,-27.24094],[-54.01537,-27.23127],[-54.01476,-27.22041],[-54.0136,-27.213],[-54.01263,-27.20798],[-54.00892,-27.20456],[-54.00115,-27.201],[-53.99278,-27.19946],[-53.98572,-27.19847],[-53.97868,-27.19861],[-53.97457,-27.20042],[-53.97046,-27.2025],[-53.96439,-27.20263],[-53.95956,-27.20159],[-53.95662,-27.19936],[-53.95481,-27.1925],[-53.95469,-27.18792],[-53.95555,-27.17189],[-53.95509,-27.16646],[-53.95369,-27.16191],[-53.95136,-27.15825],[-53.94872,-27.15544],[-53.94388,-27.15382],[-53.93747,-27.15339],[-53.93368,-27.15518],[-53.92804,-27.15987],[-53.92181,-27.166],[-53.91683,-27.17126],[-53.91114,-27.17423],[-53.90571,-27.17463],[-53.90122,-27.17415],[-53.89699,-27.17138],[-53.8927,-27.16632],[-53.88723,-27.15385],[-53.88594,-27.14903],[-53.88515,-27.14616],[-53.88236,-27.13707],[-53.87809,-27.13286],[-53.87453,-27.13122],[-53.86839,-27.1308],[-53.86301,-27.13088],[-53.8573,-27.13271],[-53.85482,-27.1359],[-53.85251,-27.14539],[-53.84827,-27.15491],[-53.84487,-27.15984],[-53.83575,-27.16603],[-53.83325,-27.16744],[-53.8338,-27.16952],[-53.83033,-27.17095],[-53.83053,-27.16898],[-53.83024,-27.16139],[-53.83072,-27.15637],[-53.8288,-27.15112],[-53.82149,-27.14574],[-53.79786,-27.14457],[-53.79599,-27.14139],[-53.79845,-27.13675],[-53.80544,-27.13915],[-53.81594,-27.1385],[-53.81895,-27.13545],[-53.82018,-27.13234],[-53.81979,-27.13144],[-53.8085,-27.13096],[-53.80419,-27.12208],[-53.80441,-27.1212],[-53.80344,-27.1192],[-53.80486,-27.11366],[-53.81292,-27.10708],[-53.81387,-27.10498],[-53.81301,-27.10378],[-53.80866,-27.10409],[-53.79833,-27.11231],[-53.79269,-27.11265],[-53.77951,-27.10853],[-53.77533,-27.10492],[-53.77692,-27.10406],[-53.77458,-27.10204],[-53.79435,-27.09135],[-53.79811,-27.08738],[-53.79953,-27.08117],[-53.79619,-27.07446],[-53.79363,-27.07473],[-53.78329,-27.0825],[-53.77661,-27.08193],[-53.774,-27.07991],[-53.77335,-27.0771],[-53.77326,-27.07703],[-53.77241,-27.07337],[-53.77982,-27.07232],[-53.79192,-27.06314],[-53.79622,-27.04905],[-53.79434,-27.04495],[-53.78975,-27.04641],[-53.76867,-27.06678],[-53.7646,-27.068],[-53.76201,-27.0669],[-53.76017,-27.06532],[-53.75983,-27.06099],[-53.76569,-27.05971],[-53.76821,-27.0576],[-53.77699,-27.03723],[-53.77694,-27.03509],[-53.76483,-27.04816],[-53.76254,-27.04889],[-53.75995,-27.04755],[-53.75801,-27.04093],[-53.74873,-27.03857],[-53.74689,-27.03677],[-53.74656,-27.03429],[-53.74615,-27.03388],[-53.74553,-27.0293],[-53.75311,-27.02388],[-53.75705,-27.01665],[-53.75562,-27.01433],[-53.75074,-27.0135],[-53.73932,-27.01876],[-53.73597,-27.01813],[-53.73284,-27.01543],[-53.7307,-27.01133],[-53.73108,-27.01061],[-53.72995,-27.00845],[-53.73179,-27.00499],[-53.7316,-27.00478],[-53.73196,-27.00467],[-53.73951,-27.00024],[-53.74091,-26.99811],[-53.74012,-26.99692],[-53.72737,-26.99968],[-53.7204,-26.99751],[-53.71827,-26.99364],[-53.71873,-26.99294],[-53.71752,-26.99076],[-53.71951,-26.98774],[-53.73065,-26.98157],[-53.73362,-26.97692],[-53.72866,-26.97265],[-53.72644,-26.96511],[-53.72258,-26.96426],[-53.71008,-26.96654],[-53.70517,-26.96457],[-53.70194,-26.95727],[-53.70496,-26.94298],[-53.70388,-26.94024],[-53.69902,-26.94079],[-53.68813,-26.94649],[-53.67717,-26.94898],[-53.67432,-26.94742],[-53.67405,-26.94581],[-53.67333,-26.94594],[-53.67255,-26.94483],[-53.67383,-26.94454],[-53.69,-26.93796],[-53.69252,-26.93539],[-53.69132,-26.9321],[-53.67757,-26.92408],[-53.67491,-26.91907],[-53.67523,-26.91819],[-53.67416,-26.91619],[-53.67661,-26.90938],[-53.67406,-26.90324],[-53.67429,-26.9027],[-53.67331,-26.90036],[-53.67429,-26.8981],[-53.67176,-26.89303],[-53.68418,-26.89523],[-53.68728,-26.89483],[-53.69054,-26.89179],[-53.69046,-26.88836],[-53.68452,-26.87779],[-53.68504,-26.87715],[-53.68378,-26.87491],[-53.69001,-26.86722],[-53.68843,-26.86496],[-53.66418,-26.86814],[-53.66157,-26.86566],[-53.67656,-26.84863],[-53.68212,-26.84693],[-53.66116,-26.84188],[-53.67674,-26.84341],[-53.69383,-26.84652],[-53.69274,-26.8432],[-53.69285,-26.84294],[-53.69199,-26.84032],[-53.70105,-26.81928],[-53.70091,-26.81894],[-53.69681,-26.81832],[-53.69728,-26.81563],[-53.69606,-26.81544],[-53.69675,-26.81153],[-53.70117,-26.80318],[-53.711,-26.79611],[-53.71133,-26.78784],[-53.70971,-26.7842],[-53.70298,-26.78041],[-53.70112,-26.777],[-53.70309,-26.77352],[-53.70691,-26.77299],[-53.71168,-26.77725],[-53.71541,-26.77905],[-53.7154,-26.78],[-53.72231,-26.78029],[-53.73105,-26.77739],[-53.73521,-26.7733],[-53.73417,-26.77195],[-53.72085,-26.77105],[-53.71694,-26.76767],[-53.71681,-26.76532],[-53.7162,-26.76479],[-53.71579,-26.75768],[-53.71677,-26.75651],[-53.71439,-26.74923],[-53.72072,-26.75183],[-53.72327,-26.74882],[-53.72485,-26.73961],[-53.72709,-26.73635],[-53.72987,-26.73538],[-53.73343,-26.74611],[-53.73831,-26.74694],[-53.7462,-26.74542],[-53.7489,-26.74374],[-53.74578,-26.74166],[-53.74419,-26.73558],[-53.75189,-26.72488],[-53.75363,-26.71757],[-53.75314,-26.71626],[-53.74984,-26.71701],[-53.74262,-26.7261],[-53.73828,-26.72618],[-53.73567,-26.7237],[-53.73397,-26.71592],[-53.73401,-26.7157],[-53.73322,-26.71304],[-53.73482,-26.70429],[-53.7395,-26.69346],[-53.73829,-26.6915],[-53.73341,-26.69067],[-53.72493,-26.70001],[-53.71981,-26.69987],[-53.7164,-26.69556],[-53.717,-26.69438],[-53.71566,-26.69269],[-53.71835,-26.68736],[-53.72369,-26.68634],[-53.72537,-26.68399],[-53.71827,-26.67601],[-53.71475,-26.66643],[-53.71481,-26.66576],[-53.714,-26.66355],[-53.71484,-26.65527],[-53.71777,-26.65275],[-53.7208,-26.65907],[-53.7259,-26.65852],[-53.73009,-26.65155],[-53.74084,-26.65228],[-53.74566,-26.65104],[-53.74945,-26.64891],[-53.75193,-26.64365],[-53.75213,-26.64335],[-53.75105,-26.64038],[-53.74112,-26.64171],[-53.73802,-26.64039],[-53.73583,-26.63376],[-53.72906,-26.62769],[-53.72769,-26.62335],[-53.7294,-26.61946],[-53.73298,-26.6112],[-53.73215,-26.60939],[-53.72723,-26.60603],[-53.72612,-26.60215],[-53.72618,-26.60189],[-53.72538,-26.59928],[-53.72744,-26.5905],[-53.72713,-26.58996],[-53.72073,-26.58916],[-53.72009,-26.58575],[-53.71797,-26.57552],[-53.7185,-26.5706],[-53.71774,-26.569],[-53.70821,-26.56504],[-53.70688,-26.56253],[-53.70726,-26.56176],[-53.70614,-26.55966],[-53.7076,-26.55665],[-53.7117,-26.55727],[-53.72034,-26.56241],[-53.72165,-26.56241],[-53.72172,-26.56324],[-53.72592,-26.56574],[-53.72976,-26.5659],[-53.73136,-26.56352],[-53.72574,-26.56128],[-53.72465,-26.55785],[-53.72476,-26.55766],[-53.7239,-26.55498],[-53.72612,-26.55127],[-53.73575,-26.54834],[-53.73717,-26.54547],[-53.73149,-26.54395],[-53.72051,-26.54346],[-53.71711,-26.53962],[-53.71751,-26.53849],[-53.71748,-26.538],[-53.71636,-26.53674],[-53.72213,-26.52057],[-53.72394,-26.50974],[-53.7234,-26.50184],[-53.72088,-26.50189],[-53.71535,-26.50566],[-53.71198,-26.50296],[-53.70672,-26.50742],[-53.70365,-26.50725],[-53.70231,-26.50451],[-53.70258,-26.5037],[-53.70157,-26.50164],[-53.70339,-26.49602],[-53.69457,-26.48858],[-53.69522,-26.48688],[-53.69383,-26.48571],[-53.69866,-26.47299],[-53.70094,-26.47249],[-53.7046,-26.47656],[-53.70689,-26.47606],[-53.70805,-26.47075],[-53.71127,-26.46633],[-53.70968,-26.46338],[-53.70559,-26.46299],[-53.69901,-26.4654],[-53.69763,-26.4606],[-53.70298,-26.44206],[-53.70274,-26.44136],[-53.69816,-26.44166],[-53.69016,-26.44893],[-53.68675,-26.44439],[-53.68678,-26.44255],[-53.686,-26.44152],[-53.6862,-26.43051],[-53.6844,-26.42868],[-53.68793,-26.42872],[-53.69274,-26.43018],[-53.69766,-26.4158],[-53.70505,-26.41497],[-53.70518,-26.40912],[-53.70055,-26.40899],[-53.69621,-26.40272],[-53.70638,-26.39591],[-53.70898,-26.38782],[-53.70055,-26.38791],[-53.69712,-26.37943],[-53.70096,-26.37333],[-53.69935,-26.36381],[-53.68963,-26.35969],[-53.69552,-26.35523],[-53.68901,-26.35435],[-53.68485,-26.33662],[-53.67618,-26.3353],[-53.62554,-26.33676],[-53.62479,-26.33815],[-53.62346,-26.3316],[-53.61646,-26.32552],[-53.6153,-26.31888],[-53.6163,-26.30554],[-53.61207,-26.28541],[-53.60941,-26.28017],[-53.60066,-26.27573],[-53.59184,-26.26489],[-53.59291,-26.26435],[-53.59874,-26.25781],[-53.60195,-26.25349],[-53.61026,-26.24481],[-53.62001,-26.23696],[-53.62875,-26.22614],[-53.63335,-26.22072],[-53.63821,-26.21637],[-53.64332,-26.21222],[-53.64676,-26.20768],[-53.64877,-26.20253],[-53.65032,-26.19803],[-53.65112,-26.1963],[-53.65103,-26.19466],[-53.652,-26.19439],[-53.65279,-26.19265],[-53.65575,-26.18791],[-53.65968,-26.184],[-53.66382,-26.1788],[-53.66657,-26.17513],[-53.67073,-26.17143],[-53.67583,-26.16728],[-53.6835,-26.16159],[-53.69185,-26.15525],[-53.70229,-26.14695],[-53.70386,-26.14568],[-53.70696,-26.13954],[-53.71636,-26.12669],[-53.72242,-26.12911],[-53.72378,-26.12672],[-53.7228,-26.12043],[-53.72067,-26.11588],[-53.71609,-26.09208],[-53.71658,-26.07945],[-53.71822,-26.07322],[-53.72915,-26.05925],[-53.72935,-26.05604],[-53.73383,-26.04266],[-53.7364,-26.04039],[-53.73925,-26.04286],[-53.74203,-26.04236],[-53.74573,-26.03724],[-53.75238,-26.03941],[-53.75323,-26.03182],[-53.75576,-26.03131],[-53.75834,-26.0331],[-53.76289,-26.0321],[-53.76657,-26.0263],[-53.77061,-26.02438],[-53.77301,-26.01837],[-53.77802,-26.0153],[-53.77916,-26.00954],[-53.78649,-26.00802],[-53.79218,-26.00103],[-53.79903,-26.00113],[-53.80576,-25.99504],[-53.80151,-25.98708],[-53.8027,-25.98338],[-53.80524,-25.98334],[-53.81067,-25.98783],[-53.81523,-25.98728],[-53.82095,-25.9819],[-53.81656,-25.9783],[-53.81674,-25.97532],[-53.82814,-25.97441],[-53.8339,-25.97063],[-53.83658,-25.96576],[-53.83524,-25.9628],[-53.83168,-25.96241],[-53.82985,-25.96015],[-53.83756,-25.95265],[-53.84278,-25.93614],[-53.83857,-25.93416],[-53.83837,-25.93155],[-53.83783,-25.9313],[-53.83731,-25.92424],[-53.83427,-25.92391],[-53.82858,-25.93021],[-53.82504,-25.93074],[-53.82453,-25.92784],[-53.8243,-25.92788],[-53.82153,-25.91205],[-53.8186,-25.91237],[-53.8215,-25.91187],[-53.8211,-25.90957],[-53.82385,-25.90791],[-53.82929,-25.91286],[-53.83207,-25.91235],[-53.83345,-25.90992],[-53.8219,-25.90394],[-53.81901,-25.89963],[-53.82506,-25.89791],[-53.83374,-25.89886],[-53.83466,-25.89589],[-53.83373,-25.89365],[-53.83392,-25.89303],[-53.83231,-25.88916],[-53.83354,-25.88752],[-53.84397,-25.88871],[-53.84774,-25.88703],[-53.85095,-25.88329],[-53.8486,-25.88035],[-53.84198,-25.8791],[-53.83759,-25.87597],[-53.8272,-25.87639],[-53.82383,-25.87301],[-53.82588,-25.87149],[-53.83015,-25.87005],[-53.83542,-25.86935],[-53.83222,-25.86252],[-53.83366,-25.85905],[-53.84127,-25.85937],[-53.84379,-25.85817],[-53.84525,-25.85585],[-53.84014,-25.85411],[-53.83848,-25.85175],[-53.84209,-25.84317],[-53.84869,-25.84374],[-53.84961,-25.83959],[-53.84865,-25.83774],[-53.84888,-25.83672],[-53.84437,-25.82809],[-53.83952,-25.82657],[-53.83791,-25.82293],[-53.83854,-25.81718],[-53.83698,-25.81537],[-53.82433,-25.81653],[-53.82397,-25.81148],[-53.82745,-25.80641],[-53.82233,-25.79522],[-53.82299,-25.79061],[-53.82577,-25.7901],[-53.83064,-25.79253],[-53.84026,-25.79212],[-53.84229,-25.79089],[-53.83574,-25.78681],[-53.83518,-25.7841],[-53.83501,-25.78396],[-53.83387,-25.77847],[-53.83634,-25.77589],[-53.83856,-25.77496],[-53.84297,-25.77076],[-53.84408,-25.77263],[-53.85116,-25.76965],[-53.85322,-25.76698],[-53.85014,-25.76244],[-53.84431,-25.76209],[-53.84357,-25.75923],[-53.84307,-25.75699],[-53.83625,-25.75306],[-53.8382,-25.75175],[-53.83551,-25.7502],[-53.84899,-25.74122],[-53.85867,-25.74356],[-53.86245,-25.7428],[-53.86314,-25.7398],[-53.85936,-25.72931],[-53.86065,-25.71919],[-53.86213,-25.71755],[-53.86672,-25.71884],[-53.87062,-25.71234],[-53.87717,-25.71061],[-53.88062,-25.70641],[-53.8788,-25.70438],[-53.86814,-25.70366],[-53.86556,-25.70142],[-53.87098,-25.69466],[-53.8704,-25.69122],[-53.86656,-25.69136],[-53.85645,-25.70182],[-53.85243,-25.70304],[-53.85007,-25.69965],[-53.85378,-25.69567],[-53.85409,-25.69444],[-53.84601,-25.69203],[-53.84392,-25.68932],[-53.84456,-25.68825],[-53.84319,-25.68646],[-53.84514,-25.68321],[-53.85373,-25.68259],[-53.85548,-25.67016],[-53.86285,-25.66015],[-53.86835,-25.65706],[-53.87569,-25.65715],[-53.88208,-25.65955],[-53.8848,-25.65674],[-53.88485,-25.65222],[-53.87924,-25.65031],[-53.87608,-25.64486],[-53.87655,-25.64407],[-53.87534,-25.642],[-53.88597,-25.6418],[-53.8892,-25.63921],[-53.88912,-25.63568],[-53.88714,-25.63065],[-53.88738,-25.63026],[-53.88641,-25.62779],[-53.88983,-25.62244],[-53.89388,-25.62282],[-53.90121,-25.63324],[-53.90352,-25.63434],[-53.90723,-25.63083],[-53.91184,-25.63327],[-53.91512,-25.63251],[-53.91254,-25.61948],[-53.91374,-25.6167],[-53.92218,-25.62044],[-53.92774,-25.6201],[-53.93463,-25.61193],[-53.93968,-25.61137],[-53.94674,-25.62133],[-53.94602,-25.62214],[-53.94748,-25.62419],[-53.94032,-25.63213],[-53.94056,-25.63523],[-53.94364,-25.63999],[-53.95075,-25.64077],[-53.955,-25.63862],[-53.95916,-25.63257],[-53.96351,-25.61342],[-53.96942,-25.60642],[-53.9687,-25.59749],[-53.97813,-25.58681],[-53.98744,-25.57858],[-53.99642,-25.57279],[-54.00476,-25.56848],[-54.00996,-25.56629],[-54.01544,-25.56617],[-54.02073,-25.56772],[-54.02586,-25.57134],[-54.03334,-25.5778],[-54.0378,-25.58247],[-54.04177,-25.58549],[-54.04591,-25.58664],[-54.05097,-25.58736],[-54.0546,-25.58645],[-54.05973,-25.58178],[-54.06531,-25.5769],[-54.06981,-25.57452],[-54.07253,-25.57363],[-54.07575,-25.57419],[-54.079,-25.57598],[-54.08097,-25.58152],[-54.08134,-25.58337],[-54.0817,-25.58438],[-54.08302,-25.59098],[-54.08225,-25.59638],[-54.08032,-25.60078],[-54.08003,-25.607],[-54.08066,-25.61361],[-54.08123,-25.61651],[-54.08362,-25.62041],[-54.08595,-25.62202],[-54.09056,-25.62316],[-54.09626,-25.62282],[-54.10037,-25.62253],[-54.10349,-25.61977],[-54.10611,-25.61536],[-54.10911,-25.60783],[-54.11739,-25.59294],[-54.12408,-25.57871],[-54.12878,-25.56659],[-54.12904,-25.56077],[-54.12854,-25.55911],[-54.12143,-25.54994],[-54.11762,-25.54423],[-54.11261,-25.53626],[-54.10547,-25.52586],[-54.10259,-25.52074],[-54.10206,-25.51825],[-54.10186,-25.51789],[-54.10082,-25.51294],[-54.10071,-25.50901],[-54.10177,-25.50629],[-54.10488,-25.50291],[-54.10987,-25.50155],[-54.11467,-25.50207],[-54.12022,-25.50443],[-54.12763,-25.5082],[-54.13393,-25.51324],[-54.13712,-25.5159],[-54.14407,-25.52087],[-54.14316,-25.52167],[-54.14708,-25.52604],[-54.15012,-25.53172],[-54.1597,-25.54369],[-54.16592,-25.54729],[-54.17227,-25.54887],[-54.17532,-25.54935],[-54.18128,-25.54963],[-54.18945,-25.548],[-54.1931,-25.5477],[-54.19813,-25.548],[-54.20617,-25.54968],[-54.20989,-25.55167],[-54.21271,-25.55451],[-54.21349,-25.55801],[-54.2127,-25.56217],[-54.21004,-25.56513],[-54.20624,-25.56832],[-54.19948,-25.57138],[-54.19336,-25.57318],[-54.1879,-25.57413],[-54.18428,-25.57546],[-54.18092,-25.57802],[-54.17914,-25.57951],[-54.17897,-25.58158],[-54.17864,-25.58487],[-54.18076,-25.58717],[-54.1833,-25.58835],[-54.18879,-25.58823],[-54.19332,-25.58688],[-54.19761,-25.58513],[-54.20599,-25.58245],[-54.21071,-25.57965],[-54.21631,-25.57538],[-54.22054,-25.57176],[-54.22187,-25.57007],[-54.22592,-25.56811],[-54.22888,-25.56763],[-54.23232,-25.56796],[-54.236,-25.56912],[-54.23811,-25.57073],[-54.23937,-25.57484],[-54.2395,-25.5794],[-54.23868,-25.58294],[-54.23819,-25.58978],[-54.23831,-25.59392],[-54.23908,-25.59701],[-54.24095,-25.59821],[-54.24509,-25.59936],[-54.25081,-25.59964],[-54.25613,-25.59749],[-54.25937,-25.59488],[-54.26289,-25.59045],[-54.26706,-25.58435],[-54.2705,-25.57681],[-54.27266,-25.57241],[-54.2762,-25.56818],[-54.28041,-25.56373],[-54.28466,-25.56073],[-54.28729,-25.55981],[-54.29082,-25.56038],[-54.2954,-25.56069],[-54.29979,-25.56245],[-54.30513,-25.56522],[-54.30906,-25.56699],[-54.31598,-25.56911],[-54.32151,-25.57084],[-54.32545,-25.57261],[-54.32755,-25.57401],[-54.3292,-25.57584],[-54.33233,-25.58135],[-54.33477,-25.58647],[-54.33674,-25.5914],[-54.33966,-25.59733],[-54.3416,-25.60123],[-54.34443,-25.60427],[-54.35051,-25.60889],[-54.35307,-25.61027],[-54.35603,-25.60979],[-54.35922,-25.60951],[-54.36416,-25.60649],[-54.36776,-25.60474],[-54.3709,-25.60332],[-54.37705,-25.60182],[-54.38163,-25.60213],[-54.38673,-25.6047],[-54.38864,-25.60734],[-54.38969,-25.61208],[-54.3894,-25.61748],[-54.39031,-25.62491],[-54.39221,-25.63522],[-54.39252,-25.63583],[-54.39294,-25.63808],[-54.39585,-25.64381],[-54.40161,-25.65278],[-54.40398,-25.65562],[-54.40789,-25.65636],[-54.41368,-25.6587],[-54.41645,-25.65967],[-54.41953,-25.66312],[-54.42308,-25.66717],[-54.42594,-25.67104],[-54.42658,-25.67311],[-54.42741,-25.68015],[-54.42709,-25.68471],[-54.42586,-25.68951],[-54.4251,-25.6947],[-54.42519,-25.69781],[-54.42761,-25.7021],[-54.42947,-25.70309],[-54.43313,-25.703],[-54.43608,-25.7021],[-54.44011,-25.69931],[-54.44344,-25.69612],[-54.44508,-25.69302],[-54.44658,-25.67393],[-54.4521,-25.66324],[-54.48114,-25.63385],[-54.4898,-25.62676],[-54.49856,-25.62334],[-54.50568,-25.62454],[-54.5214,-25.63404],[-54.52822,-25.63365],[-54.53342,-25.62962],[-54.53581,-25.62474],[-54.54062,-25.60807],[-54.54281,-25.60209],[-54.54534,-25.59772],[-54.55172,-25.59271],[-54.5582,-25.5912],[-54.56382,-25.59052],[-54.58166,-25.59114],[-54.59565,-25.59212],[-54.59611,-25.57865],[-54.59757,-25.56839],[-54.59766,-25.55278],[-54.59851,-25.54199],[-54.60038,-25.52606],[-54.60215,-25.50691],[-54.60567,-25.49581],[-54.615,-25.46324],[-54.61603,-25.45837],[-54.61596,-25.45622],[-54.61253,-25.45092],[-54.60853,-25.44618],[-54.60295,-25.43879],[-54.59852,-25.43002],[-54.59293,-25.42209],[-54.58972,-25.4141],[-54.58648,-25.40531],[-54.58204,-25.39627],[-54.57827,-25.38937],[-54.57455,-25.38435],[-54.56902,-25.37804],[-54.56285,-25.37039],[-54.55706,-25.36515],[-54.55032,-25.35806],[-54.54417,-25.35095],[-54.53152,-25.33486],[-54.52591,-25.32585],[-54.51755,-25.31422],[-54.51011,-25.30364],[-54.50478,-25.29409],[-54.5001,-25.28614],[-54.49598,-25.27736],[-54.49295,-25.2656],[-54.48681,-25.2488],[-54.48264,-25.23814],[-54.47786,-25.22696],[-54.47253,-25.21713],[-54.46534,-25.20466],[-54.45942,-25.19459],[-54.45288,-25.18399],[-54.44633,-25.17285],[-54.43919,-25.16172],[-54.43602,-25.15454],[-54.43587,-25.1497],[-54.43628,-25.14377],[-54.43909,-25.13886],[-54.44811,-25.1241],[-54.45347,-25.11563],[-54.45797,-25.10798],[-54.45956,-25.10202],[-54.4617,-25.0947],[-54.46405,-25.08442],[-54.46499,-25.07633],[-54.46446,-25.06854],[-54.46185,-25.05084],[-54.45704,-25.02863],[-54.45334,-25.01366],[-54.44308,-24.97706],[-54.43409,-24.94338],[-54.42891,-24.92817],[-54.42494,-24.91374],[-54.4205,-24.89368],[-54.41648,-24.87764],[-54.41153,-24.86],[-54.40454,-24.83327],[-54.39745,-24.813],[-54.39135,-24.79648],[-54.38855,-24.79143],[-54.38601,-24.78504],[-54.38163,-24.77654],[-54.37784,-24.76802],[-54.37466,-24.7603],[-54.37119,-24.75258],[-54.36674,-24.74139],[-54.36318,-24.73072],[-54.36058,-24.72218],[-54.35786,-24.70987],[-54.3493,-24.6891],[-54.33801,-24.65548],[-54.3351,-24.64641],[-54.33404,-24.64052],[-54.33259,-24.63114],[-54.33061,-24.62365],[-54.33061,-24.61343],[-54.33154,-24.60507],[-54.33255,-24.58918],[-54.33347,-24.58028],[-54.33441,-24.57219],[-54.33532,-24.5633],[-54.33716,-24.55545],[-54.33782,-24.54791],[-54.33812,-24.53795],[-54.3377,-24.52371],[-54.33664,-24.51055],[-54.33666,-24.5101],[-54.33528,-24.50091],[-54.33231,-24.48995],[-54.32852,-24.4809],[-54.32504,-24.47238],[-54.32069,-24.46442],[-54.31546,-24.4562],[-54.30908,-24.4491],[-54.30415,-24.44115],[-54.29801,-24.43188],[-54.28951,-24.4224],[-54.28523,-24.41659],[-54.2763,-24.40228],[-54.26666,-24.38342],[-54.26245,-24.37446],[-54.25925,-24.36047],[-54.25864,-24.34919],[-54.25944,-24.336],[-54.26069,-24.32817],[-54.265,-24.31462],[-54.27414,-24.29559],[-54.27828,-24.28608],[-54.28506,-24.27704],[-54.29219,-24.26988],[-54.29961,-24.26272],[-54.30989,-24.25356],[-54.31142,-24.25226],[-54.31823,-24.24695],[-54.32338,-24.24252],[-54.32563,-24.23924],[-54.32752,-24.23355],[-54.32822,-24.22735],[-54.32924,-24.22195],[-54.32936,-24.21603],[-54.32738,-24.20805],[-54.32594,-24.19891],[-54.32469,-24.1863],[-54.32441,-24.17663],[-54.32651,-24.16824],[-54.32807,-24.16122],[-54.33062,-24.14825],[-54.33045,-24.14207],[-54.32935,-24.13457],[-54.32799,-24.12815],[-54.3258,-24.12337],[-54.32246,-24.11942],[-54.31704,-24.11417],[-54.3098,-24.10682],[-54.30048,-24.09871],[-54.29025,-24.08928],[-54.28363,-24.08298],[-54.28054,-24.07768],[-54.28047,-24.07499],[-54.28125,-24.07175],[-54.28386,-24.06748],[-54.29144,-24.05914],[-54.29884,-24.05171],[-54.30399,-24.04728],[-54.3094,-24.04204],[-54.31502,-24.03384],[-54.3172,-24.02815],[-54.31741,-24.02519],[-54.31517,-24.01879],[-54.31475,-24.01423],[-54.31584,-24.01151],[-54.31899,-24.00902],[-54.32391,-24.00702],[-54.33089,-24.00576],[-54.33618,-24.00618],[-54.34349,-24.00601],[-54.35567,-24.00195],[-54.36667,-23.99719],[-54.37576,-23.98361],[-54.38887,-23.96175],[-54.39909,-23.93743],[-54.41091,-23.92426],[-54.43173,-23.91212],[-54.45992,-23.9022],[-54.48266,-23.8819],[-54.49531,-23.87949],[-54.51344,-23.88488],[-54.52625,-23.87217],[-54.5361,-23.86973],[-54.54588,-23.87115],[-54.56121,-23.8765],[-54.56828,-23.87273],[-54.56571,-23.85724],[-54.57287,-23.84703],[-54.59826,-23.83576],[-54.62074,-23.8309],[-54.62911,-23.83357],[-54.64029,-23.835],[-54.65454,-23.81844],[-54.66713,-23.81257],[-54.67534,-23.81357],[-54.67978,-23.81728],[-54.68311,-23.82284],[-54.68486,-23.82497],[-54.69428,-23.83278],[-54.69746,-23.83739],[-54.69885,-23.84611],[-54.69801,-23.85435],[-54.70045,-23.85827],[-54.72033,-23.8626],[-54.74024,-23.86348],[-54.75928,-23.85427],[-54.76325,-23.85568],[-54.76616,-23.86235],[-54.77435,-23.86564],[-54.78707,-23.86438],[-54.79773,-23.86884],[-54.80335,-23.87874],[-54.81525,-23.88344],[-54.82321,-23.88489],[-54.83157,-23.88365],[-54.83915,-23.88526],[-54.84237,-23.88735],[-54.84897,-23.89887],[-54.85439,-23.90442],[-54.86086,-23.90494],[-54.87112,-23.90067],[-54.8794,-23.89525],[-54.88686,-23.89646],[-54.89372,-23.90752],[-54.90421,-23.90578],[-54.91183,-23.91501],[-54.91902,-23.91874],[-54.92246,-23.92336],[-54.91738,-23.93179],[-54.92129,-23.93916],[-54.92437,-23.95407],[-54.92682,-23.95799],[-54.93177,-23.96147],[-54.93924,-23.96245],[-54.95197,-23.96049],[-54.97222,-23.95471],[-55.00537,-23.95545],[-55.0212,-23.96726],[-55.03089,-23.97032],[-55.0383,-23.97794],[-55.04749,-23.98145],[-55.05267,-23.98653],[-55.06014,-23.98842],[-55.07711,-23.98558],[-55.08889,-23.97972],[-55.09893,-23.97269],[-55.11151,-23.96019],[-55.11473,-23.96227],[-55.11961,-23.97308],[-55.13752,-23.97825],[-55.14443,-23.98495],[-55.15291,-23.98479],[-55.15917,-23.98185],[-55.17283,-23.98768],[-55.18557,-23.9848],[-55.1928,-23.98462],[-55.19777,-23.98718],[-55.19973,-23.98994],[-55.20175,-23.99719],[-55.20751,-24.00376],[-55.21217,-24.00749],[-55.21704,-24.009],[-55.22551,-24.00985],[-55.23028,-24.0086],[-55.23351,-24.00628],[-55.24582,-23.99719],[-55.25332,-23.99192],[-55.25584,-23.98873],[-55.29291,-23.9679],[-55.29969,-23.96268],[-55.3142,-23.95613],[-55.32041,-23.95869],[-55.32437,-23.96216],[-55.33001,-23.97364],[-55.3329,-23.98604],[-55.33513,-23.98834],[-55.34084,-23.99044],[-55.34857,-23.99049],[-55.35357,-23.98892],[-55.36512,-23.97822],[-55.37137,-23.97666],[-55.37463,-23.97416],[-55.37769,-23.96547],[-55.38118,-23.96503],[-55.39684,-23.97109],[-55.40564,-23.96083],[-55.41188,-23.95858],[-55.41848,-23.94258],[-55.42804,-23.93118],[-55.42811,-23.92247],[-55.43189,-23.91585],[-55.43663,-23.91473],[-55.44091,-23.90949],[-55.43787,-23.88244],[-55.43308,-23.86386],[-55.43332,-23.85744],[-55.43612,-23.8492],[-55.43321,-23.83796],[-55.43603,-23.82789],[-55.44455,-23.82084],[-55.44633,-23.81535],[-55.44513,-23.80961],[-55.43945,-23.80248],[-55.4326,-23.78617],[-55.43094,-23.77493],[-55.43677,-23.76075],[-55.44196,-23.73122],[-55.44077,-23.72365],[-55.43337,-23.71467],[-55.4334,-23.71123],[-55.43666,-23.70736],[-55.44213,-23.70762],[-55.45203,-23.71501],[-55.45701,-23.71527],[-55.46051,-23.71208],[-55.46106,-23.70475],[-55.45793,-23.69052],[-55.45873,-23.68365],[-55.46127,-23.6761],[-55.46565,-23.67279],[-55.46978,-23.66633],[-55.47181,-23.6631],[-55.47342,-23.64661],[-55.4767,-23.64089],[-55.50439,-23.62867],[-55.50818,-23.61999],[-55.51168,-23.61725],[-55.51791,-23.61591],[-55.52459,-23.62076],[-55.53033,-23.61804],[-55.5346,-23.61096],[-55.53254,-23.58528],[-55.52447,-23.56506],[-55.53573,-23.53498],[-55.54257,-23.49754],[-55.5405,-23.47995],[-55.53667,-23.47943],[-55.54026,-23.47791],[-55.53857,-23.46359],[-55.53937,-23.45511],[-55.53696,-23.44455],[-55.53008,-23.43236],[-55.5259,-23.42965],[-55.51875,-23.41855],[-55.51164,-23.40498],[-55.50851,-23.39006],[-55.50113,-23.37925],[-55.50295,-23.36825],[-55.50546,-23.36437],[-55.51418,-23.35914],[-55.52174,-23.34313],[-55.52826,-23.33377],[-55.534,-23.32807],[-55.54298,-23.32284],[-55.5485,-23.31416],[-55.5482,-23.28274],[-55.54133,-23.27216],[-55.53491,-23.26616],[-55.52972,-23.26338],[-55.52277,-23.26312],[-55.51933,-23.25897],[-55.52834,-23.24802],[-55.53237,-23.23841],[-55.53366,-23.23062],[-55.53248,-23.22144],[-55.52954,-23.21615],[-55.52189,-23.21014],[-55.51897,-23.20187],[-55.521,-23.19431],[-55.53749,-23.17675],[-55.53882,-23.163],[-55.54407,-23.15683],[-55.56348,-23.1457],[-55.57615,-23.14278],[-55.58928,-23.14399],[-55.59301,-23.14241],[-55.59576,-23.13829],[-55.5971,-23.12225],[-55.60162,-23.11333],[-55.61211,-23.10054],[-55.61763,-23.08864],[-55.61052,-23.07761],[-55.61149,-23.05923],[-55.61478,-23.0549],[-55.61111,-23.04905],[-55.61361,-23.04202],[-55.62305,-23.03343],[-55.639,-23.0266],[-55.6423,-23.01661],[-55.63642,-23.00147],[-55.63894,-22.99474],[-55.64483,-22.98969],[-55.65492,-22.99137],[-55.66249,-22.9939],[-55.6709,-22.9981],[-55.67679,-22.99642],[-55.681,-22.99221],[-55.6852,-22.99053],[-55.68268,-22.98044],[-55.6709,-22.96782],[-55.6566,-22.95184],[-55.64988,-22.9325],[-55.64988,-22.91315],[-55.66586,-22.86857],[-55.6588,-22.84243],[-55.65831,-22.8253],[-55.65399,-22.81867],[-55.656,-22.80856],[-55.64978,-22.80256],[-55.65302,-22.7928],[-55.63903,-22.78316],[-55.63491,-22.77061],[-55.62736,-22.76674],[-55.61735,-22.76815],[-55.61931,-22.76536],[-55.6255,-22.75897],[-55.62609,-22.7537],[-55.62539,-22.75034],[-55.61781,-22.73607],[-55.61396,-22.7177],[-55.61596,-22.6989],[-55.6138,-22.69977],[-55.60961,-22.69047],[-55.6159,-22.67767],[-55.6144,-22.66411],[-55.61234,-22.65964],[-55.61211,-22.65575],[-55.61387,-22.65162],[-55.62132,-22.64523],[-55.62608,-22.63608],[-55.62668,-22.61865],[-55.63115,-22.61385],[-55.65096,-22.60637],[-55.66139,-22.59862],[-55.70113,-22.56002],[-55.72369,-22.54521],[-55.73489,-22.52942],[-55.74116,-22.51155],[-55.74527,-22.48105],[-55.74482,-22.47301],[-55.74287,-22.46773],[-55.73625,-22.45898],[-55.73728,-22.45141],[-55.7334,-22.439],[-55.7332,-22.43051],[-55.73907,-22.39336],[-55.74503,-22.3865],[-55.76606,-22.38659],[-55.76555,-22.38351],[-55.77453,-22.38641],[-55.78477,-22.38299],[-55.78898,-22.37934],[-55.79769,-22.36468],[-55.80045,-22.35597],[-55.82424,-22.33219],[-55.83194,-22.32098],[-55.84244,-22.29026],[-55.85335,-22.2786],[-55.861,-22.27633],[-55.88661,-22.2833],[-55.89795,-22.28357],[-55.92214,-22.27792],[-55.93545,-22.27865],[-55.95416,-22.28835],[-55.9613,-22.2902],[-55.96599,-22.2893],[-55.98451,-22.27995],[-55.99117,-22.27974],[-55.9988,-22.28389],[-56.00593,-22.28965],[-56.01136,-22.28851],[-56.02198,-22.28304],[-56.03037,-22.28191],[-56.05095,-22.28837],[-56.06005,-22.29048],[-56.07322,-22.28779],[-56.08043,-22.28703],[-56.0868,-22.28627],[-56.09403,-22.28236],[-56.10169,-22.27844],[-56.10891,-22.27729],[-56.1195,-22.27932],[-56.12584,-22.28408],[-56.136,-22.28768],[-56.14235,-22.2873],[-56.14486,-22.28727],[-56.14831,-22.28694],[-56.15807,-22.2854],[-56.16842,-22.28385],[-56.18014,-22.28392],[-56.18609,-22.28276],[-56.19109,-22.28079],[-56.19755,-22.28083],[-56.20774,-22.27811],[-56.21243,-22.27339],[-56.2235,-22.26436],[-56.23624,-22.25849],[-56.2422,-22.25378],[-56.24435,-22.24747],[-56.24736,-22.23723],[-56.25926,-22.23253],[-56.26859,-22.23217],[-56.28641,-22.23105],[-56.29277,-22.22949],[-56.30937,-22.21416],[-56.31665,-22.21119],[-56.32932,-22.21068],[-56.34079,-22.20322],[-56.34634,-22.191],[-56.34956,-22.18251],[-56.3519,-22.178],[-56.35573,-22.17446],[-56.36053,-22.17195],[-56.3681,-22.16511],[-56.37699,-22.15439],[-56.37999,-22.14651],[-56.38001,-22.1398],[-56.37877,-22.13032],[-56.38176,-22.12323],[-56.38644,-22.11575],[-56.392,-22.10195],[-56.39625,-22.09841],[-56.39923,-22.09289],[-56.40009,-22.08895],[-56.39926,-22.0846],[-56.40011,-22.07806],[-56.40268,-22.07474],[-56.40776,-22.07516],[-56.42089,-22.07756],[-56.42724,-22.07758],[-56.43869,-22.07603],[-56.4475,-22.07988],[-56.45309,-22.07805],[-56.46055,-22.07896],[-56.47131,-22.07651],[-56.47596,-22.0781],[-56.48019,-22.08324],[-56.48399,-22.08878],[-56.49033,-22.09195],[-56.50304,-22.09356],[-56.51066,-22.09555],[-56.51828,-22.10031],[-56.52629,-22.11532],[-56.52797,-22.12203],[-56.52583,-22.13071],[-56.53343,-22.14415],[-56.5402,-22.14693],[-56.54315,-22.15522],[-56.54399,-22.15996],[-56.54652,-22.16233],[-56.55,-22.16221],[-56.55627,-22.16353],[-56.55965,-22.17065],[-56.55964,-22.17577],[-56.56005,-22.18051],[-56.56259,-22.18288],[-56.56343,-22.18525],[-56.56554,-22.19],[-56.57426,-22.19679],[-56.58332,-22.20187],[-56.59513,-22.2076],[-56.60366,-22.21059],[-56.60916,-22.21533],[-56.61255,-22.22008],[-56.61422,-22.22994],[-56.63202,-22.24063],[-56.64093,-22.23788],[-56.64462,-22.23921],[-56.64558,-22.24499],[-56.64259,-22.25367],[-56.64216,-22.2584],[-56.65065,-22.25605],[-56.68375,-22.24189],[-56.68758,-22.23795],[-56.688,-22.234],[-56.68929,-22.22335],[-56.68974,-22.21718],[-56.69779,-22.2135],[-56.70499,-22.21508],[-56.70606,-22.22097],[-56.7071,-22.22732],[-56.70964,-22.23206],[-56.71091,-22.2364],[-56.71472,-22.23917],[-56.71557,-22.24233],[-56.71556,-22.24706],[-56.71767,-22.25219],[-56.727,-22.25773],[-56.73166,-22.25813],[-56.73506,-22.25537],[-56.73803,-22.25103],[-56.73974,-22.24472],[-56.74313,-22.23959],[-56.74799,-22.23603],[-56.75289,-22.23408],[-56.75713,-22.23487],[-56.7584,-22.23842],[-56.75967,-22.24237],[-56.76942,-22.24593],[-56.77281,-22.24791],[-56.77747,-22.25383],[-56.78087,-22.25699],[-56.78468,-22.25936],[-56.78935,-22.25739],[-56.79274,-22.25463],[-56.79487,-22.25227],[-56.79613,-22.24483],[-56.79784,-22.2428],[-56.80717,-22.24715],[-56.81014,-22.2507],[-56.8114,-22.26017],[-56.81012,-22.26925],[-56.80927,-22.27634],[-56.80884,-22.28227],[-56.80969,-22.28621],[-56.81223,-22.28858],[-56.81902,-22.28977],[-56.82284,-22.28977],[-56.8275,-22.29609],[-56.83047,-22.29767],[-56.83599,-22.29767],[-56.84108,-22.29649],[-56.84772,-22.29156],[-56.85363,-22.29086],[-56.86692,-22.28302],[-56.8712,-22.2823],[-56.87757,-22.27559],[-56.88181,-22.27125],[-56.88308,-22.26494],[-56.88139,-22.25902],[-56.88223,-22.25428],[-56.88733,-22.24836],[-56.89319,-22.24369],[-56.90047,-22.24363],[-56.90302,-22.24481],[-56.90514,-22.24916],[-56.9098,-22.25508],[-56.91532,-22.25429],[-56.91956,-22.25074],[-56.92677,-22.24876],[-56.93483,-22.24876],[-56.94713,-22.24837],[-56.96095,-22.23591],[-56.96579,-22.23495],[-56.97088,-22.23613],[-56.97936,-22.24007],[-56.98487,-22.23968],[-56.99004,-22.23696],[-56.99985,-22.22269],[-57.00395,-22.22231],[-57.01115,-22.22585],[-57.02091,-22.22703],[-57.02939,-22.23097],[-57.03784,-22.23173],[-57.04376,-22.23355],[-57.04872,-22.23792],[-57.04912,-22.23522],[-57.04933,-22.23846],[-57.05314,-22.23535],[-57.05711,-22.23494],[-57.06375,-22.23411],[-57.07605,-22.23726],[-57.08114,-22.2412],[-57.08538,-22.23961],[-57.09047,-22.23764],[-57.09877,-22.24504],[-57.10235,-22.24197],[-57.10446,-22.23723],[-57.10835,-22.23536],[-57.11082,-22.23407],[-57.11166,-22.23012],[-57.10996,-22.22657],[-57.10699,-22.22341],[-57.1091,-22.22026],[-57.1248,-22.2234],[-57.13583,-22.22457],[-57.1581,-22.22596],[-57.16796,-22.22638],[-57.17807,-22.22817],[-57.1835,-22.22883],[-57.19138,-22.22212],[-57.19264,-22.21897],[-57.19518,-22.21344],[-57.19814,-22.2087],[-57.20237,-22.20711],[-57.20704,-22.20908],[-57.21029,-22.21448],[-57.21553,-22.21459],[-57.21723,-22.21696],[-57.21937,-22.22603],[-57.22278,-22.2351],[-57.22788,-22.23864],[-57.23425,-22.24139],[-57.24231,-22.24138],[-57.24951,-22.24018],[-57.25576,-22.23767],[-57.26392,-22.23385],[-57.26899,-22.22949],[-57.2745,-22.22514],[-57.28212,-22.22079],[-57.28975,-22.21722],[-57.29632,-22.21841],[-57.30035,-22.21996],[-57.30631,-22.22626],[-57.31055,-22.22822],[-57.31819,-22.22979],[-57.32793,-22.22949],[-57.33217,-22.2266],[-57.34432,-22.22423],[-57.35083,-22.22523],[-57.36313,-22.22495],[-57.37076,-22.22374],[-57.37866,-22.22049],[-57.38091,-22.21661],[-57.38048,-22.21188],[-57.38131,-22.20714],[-57.38619,-22.20369],[-57.39064,-22.2055],[-57.39507,-22.20479],[-57.40248,-22.19841],[-57.4118,-22.19601],[-57.42156,-22.19717],[-57.43257,-22.19517],[-57.44598,-22.18865],[-57.46148,-22.18603],[-57.46858,-22.18717],[-57.47366,-22.18478],[-57.4851,-22.18396],[-57.49527,-22.18037],[-57.49908,-22.18076],[-57.50531,-22.18025],[-57.51004,-22.17677],[-57.51297,-22.17473],[-57.51939,-22.17083],[-57.52533,-22.1712],[-57.53255,-22.17552],[-57.54231,-22.17864],[-57.55249,-22.17821],[-57.56053,-22.17542],[-57.57196,-22.17065],[-57.58338,-22.16429],[-57.58759,-22.15756],[-57.58841,-22.15204],[-57.58711,-22.14494],[-57.58656,-22.13885],[-57.59258,-22.13702],[-57.59427,-22.13583],[-57.59638,-22.13306],[-57.60061,-22.13265],[-57.60229,-22.1287],[-57.60396,-22.12277],[-57.60906,-22.11897],[-57.61241,-22.11721],[-57.61279,-22.10774],[-57.61318,-22.09866],[-57.61577,-22.09343],[-57.6212,-22.0939],[-57.63181,-22.09741],[-57.64171,-22.10358],[-57.65747,-22.10369],[-57.67249,-22.09803],[-57.68728,-22.09008],[-57.69321,-22.08887],[-57.70084,-22.08962],[-57.70763,-22.09354],[-57.71063,-22.09787],[-57.7153,-22.10061],[-57.71915,-22.10691],[-57.72911,-22.09972],[-57.73649,-22.1021],[-57.74075,-22.10602],[-57.73869,-22.11669],[-57.73915,-22.12339],[-57.74469,-22.12889],[-57.75572,-22.13082],[-57.76207,-22.12842],[-57.76601,-22.12354],[-57.7692,-22.12259],[-57.7739,-22.12205],[-57.78026,-22.1236],[-57.7845,-22.12397],[-57.79305,-22.13538],[-57.79775,-22.14207],[-57.80285,-22.1452],[-57.80538,-22.14282],[-57.80706,-22.14005],[-57.81299,-22.13883],[-57.81763,-22.13644],[-57.821,-22.13248],[-57.82307,-22.12458],[-57.82347,-22.11984],[-57.82754,-22.11823],[-57.83702,-22.11819],[-57.8489,-22.1205],[-57.85696,-22.12322],[-57.86209,-22.12911],[-57.86634,-22.13106],[-57.87345,-22.12841],[-57.88617,-22.12396],[-57.89285,-22.12045],[-57.90787,-22.11988],[-57.91106,-22.11824],[-57.92067,-22.11932],[-57.92706,-22.11743],[-57.92827,-22.1149],[-57.92624,-22.10777],[-57.92719,-22.1032],[-57.93403,-22.09671],[-57.93836,-22.08589],[-57.94227,-22.08242],[-57.95286,-22.08233],[-57.95702,-22.07954],[-57.96048,-22.07975],[-57.97333,-22.08492],[-57.98023,-22.08555],[-57.98832,-22.08182],[-57.98972,-22.07828],[-57.98798,-22.07158],[-57.98624,-22.06448],[-57.9879,-22.05934],[-57.99294,-22.05379],[-57.99935,-22.04754],[-58.00515,-22.04345],[-58.0068,-22.03713],[-58.00463,-22.02924],[-57.99951,-22.02375],[-57.98887,-22.01671],[-57.97824,-22.01045],[-57.9693,-22.0038],[-57.9663,-21.99789],[-57.96152,-21.97977],[-57.95977,-21.97227],[-57.95334,-21.95929],[-57.94732,-21.94669],[-57.94086,-21.92975],[-57.93993,-21.91792],[-57.94243,-21.91119],[-57.94493,-21.90565],[-57.94446,-21.89776],[-57.93934,-21.89147],[-57.93117,-21.88692],[-57.92699,-21.88478],[-57.92321,-21.88525],[-57.91982,-21.88329],[-57.91852,-21.87856],[-57.92017,-21.87263],[-57.9286,-21.86745],[-57.94598,-21.86085],[-57.95517,-21.85546],[-57.96218,-21.84762],[-57.96694,-21.84434],[-57.96819,-21.84117],[-57.96606,-21.83882],[-57.96026,-21.83769],[-57.9491,-21.83299],[-57.93977,-21.82949],[-57.92146,-21.81144],[-57.91528,-21.79938],[-57.91202,-21.78978],[-57.91005,-21.77334],[-57.91164,-21.76945],[-57.91566,-21.7641],[-57.92368,-21.76168],[-57.92917,-21.76165],[-57.93564,-21.75699],[-57.94221,-21.75131],[-57.94639,-21.74379],[-57.94379,-21.73472],[-57.93656,-21.72766],[-57.9217,-21.71787],[-57.9111,-21.71201],[-57.90388,-21.70692],[-57.89623,-21.69985],[-57.89363,-21.69039],[-57.89317,-21.68447],[-57.89649,-21.68069],[-57.90281,-21.67179],[-57.91375,-21.66541],[-57.92867,-21.65388],[-57.93302,-21.64558],[-57.93659,-21.632],[-57.93452,-21.6112],[-57.93109,-21.60372],[-57.92429,-21.59705],[-57.91708,-21.59235],[-57.91536,-21.58723],[-57.91828,-21.58208],[-57.92358,-21.57653],[-57.93026,-21.57242],[-57.95612,-21.5562],[-57.96282,-21.54906],[-57.96474,-21.54304],[-57.96689,-21.52534],[-57.96558,-21.51903],[-57.96384,-21.51154],[-57.95787,-21.50407],[-57.94639,-21.49111],[-57.93237,-21.47618],[-57.92724,-21.46753],[-57.9221,-21.45492],[-57.91992,-21.44466],[-57.91776,-21.43599],[-57.9156,-21.4289],[-57.91007,-21.42261],[-57.90752,-21.41907],[-57.90488,-21.4021],[-57.90231,-21.39541],[-57.8989,-21.3895],[-57.89081,-21.37888],[-57.88527,-21.36983],[-57.87811,-21.36668],[-57.8679,-21.3561],[-57.8594,-21.34628],[-57.85428,-21.33604],[-57.85296,-21.32775],[-57.85447,-21.31513],[-57.85877,-21.31074],[-57.87351,-21.30829],[-57.88866,-21.30545],[-57.90353,-21.29926],[-57.91111,-21.29191],[-57.91567,-21.28345],[-57.91756,-21.27567],[-57.91457,-21.27056],[-57.90398,-21.26232],[-57.89087,-21.2541],[-57.87606,-21.2451],[-57.86676,-21.24081],[-57.85787,-21.23256],[-57.85317,-21.22311],[-57.85017,-21.21404],[-57.84884,-21.20299],[-57.84962,-21.1919],[-57.86239,-21.14484],[-57.86232,-21.13499],[-57.85931,-21.12474],[-57.85421,-21.11568],[-57.84624,-21.09895],[-57.84673,-21.09436],[-57.86445,-21.07021],[-57.86734,-21.06072],[-57.86599,-21.0469],[-57.8651,-21.03861],[-57.86086,-21.03271],[-57.83159,-20.99416],[-57.82832,-20.99136],[-57.81812,-20.98124],[-57.81717,-20.9737],[-57.82191,-20.9596],[-57.82122,-20.94801],[-57.82087,-20.9395],[-57.82407,-20.93559],[-57.82829,-20.93296],[-57.83251,-20.93322],[-57.84094,-20.93843],[-57.85021,-20.94233],[-57.85904,-20.94228],[-57.86697,-20.93893],[-57.87536,-20.92877],[-57.88905,-20.90433],[-57.89263,-20.90218],[-57.89954,-20.89882],[-57.91429,-20.89933],[-57.92332,-20.89808],[-57.92603,-20.89452],[-57.92643,-20.89097],[-57.92429,-20.88545],[-57.92006,-20.88113],[-57.90528,-20.87094],[-57.87491,-20.85452],[-57.85974,-20.84828],[-57.85592,-20.84395],[-57.85463,-20.83843],[-57.85459,-20.83251],[-57.86249,-20.81706],[-57.87166,-20.80398],[-57.8821,-20.79484],[-57.89341,-20.78964],[-57.90097,-20.78802],[-57.91442,-20.78835],[-57.92284,-20.79067],[-57.93162,-20.79467],[-57.94152,-20.7959],[-57.94977,-20.79644],[-57.95521,-20.79364],[-57.95813,-20.79086],[-57.95979,-20.7869],[-57.96017,-20.78137],[-57.95378,-20.76837],[-57.94871,-20.76445],[-57.94287,-20.75676],[-57.93561,-20.75228],[-57.91498,-20.7449],[-57.9076,-20.74441],[-57.87841,-20.74233],[-57.87211,-20.74078],[-57.86872,-20.73685],[-57.86828,-20.7329],[-57.86993,-20.72815],[-57.87782,-20.71429],[-57.88364,-20.70438],[-57.88948,-20.69803],[-57.89742,-20.69285],[-57.90117,-20.6877],[-57.90825,-20.67778],[-57.91483,-20.66771],[-57.92229,-20.66375],[-57.92847,-20.66493],[-57.93462,-20.66539],[-57.94094,-20.6693],[-57.94436,-20.67719],[-57.95031,-20.689],[-57.95794,-20.69962],[-57.96596,-20.70191],[-57.9763,-20.70034],[-57.98093,-20.69822],[-57.98687,-20.69313],[-57.98894,-20.68799],[-57.98718,-20.67575],[-57.98504,-20.66984],[-57.97613,-20.65686],[-57.97188,-20.64938],[-57.97434,-20.64067],[-57.98137,-20.63543],[-57.99692,-20.6279],[-58.00318,-20.62273],[-58.01025,-20.6132],[-58.01481,-20.60527],[-58.01307,-20.5966],[-58.00543,-20.584],[-57.99823,-20.57575],[-57.99651,-20.56984],[-57.99981,-20.56113],[-58.00552,-20.53951],[-58.01825,-20.51041],[-58.01394,-20.49541],[-58.01383,-20.4799],[-57.99353,-20.44561],[-57.999,-20.4304],[-58.00366,-20.4232],[-58.01775,-20.4098],[-58.03095,-20.40186],[-58.04481,-20.39703],[-58.05385,-20.39351],[-58.06458,-20.38695],[-58.07679,-20.37681],[-58.08151,-20.36972],[-58.09244,-20.34182],[-58.09621,-20.32132],[-58.09567,-20.30964],[-58.08966,-20.2831],[-58.08671,-20.27057],[-58.08665,-20.2625],[-58.09134,-20.2544],[-58.10082,-20.24985],[-58.11469,-20.24755],[-58.12458,-20.25059],[-58.13413,-20.2559],[-58.14085,-20.26393],[-58.1456,-20.2639],[-58.15319,-20.26115],[-58.15603,-20.2556],[-58.16252,-20.23957],[-58.16152,-20.2333],[-58.16143,-20.22254],[-58.1547,-20.21273],[-58.14802,-20.20919],[-58.13562,-20.20389],[-58.12607,-20.19768],[-58.12414,-20.19321],[-58.12441,-20.18541],[-58.13449,-20.17969],[-58.14418,-20.17629],[-58.15992,-20.1744],[-58.16162,-20.16677],[-58.16283,-20.15976],[-58.15611,-20.15085],[-58.1485,-20.14911],[-58.13709,-20.14828],[-58.11802,-20.13945],[-58.09792,-20.11806],[-58.0912,-20.11003],[-58.08167,-20.10472],[-58.07597,-20.10387],[-58.0655,-20.10124],[-58.05031,-20.10045],[-58.04265,-20.09242],[-58.03888,-20.08806],[-58.03867,-20.08731],[-58.03783,-20.08349],[-58.03687,-20.07991],[-58.02633,-20.06831],[-58.01392,-20.05852],[-57.99775,-20.05324],[-57.98446,-20.05422],[-57.97801,-20.05349],[-57.96829,-20.04714],[-57.96444,-20.03999],[-57.96151,-20.02836],[-57.95863,-20.02478],[-57.94722,-20.02127],[-57.93393,-20.02134],[-57.92447,-20.02497],[-57.9188,-20.02949],[-57.91219,-20.03401],[-57.90934,-20.03403],[-57.9081,-20.03044],[-57.90899,-20.0194],[-57.90502,-20.0114],[-57.89595,-20.00205],[-57.88324,-19.99341],[-57.87295,-19.98269],[-57.87095,-19.9765],[-57.87261,-19.97098],[-57.87669,-19.96589],[-57.89528,-19.95057],[-57.91605,-19.9371],[-57.95347,-19.90922],[-57.98727,-19.88803],[-58.02091,-19.85979],[-58.0487,-19.83327],[-58.07354,-19.81698],[-58.10293,-19.79236],[-58.12677,-19.77468],[-58.13345,-19.76245],[-58.1334,-19.75785],[-58.12198,-19.7318],[-58.09205,-19.67329],[-58.05811,-19.60326],[-58.00255,-19.48847],[-57.94706,-19.37365],[-57.89306,-19.26184],[-57.88621,-19.24753],[-57.7842,-19.03351],[-57.71014,-19.0326],[-57.70841,-19.03025],[-57.70789,-19.01557],[-57.70519,-19.00146],[-57.70699,-18.99031],[-57.71106,-18.98292],[-57.71222,-18.97902],[-57.71925,-18.97705],[-57.71978,-18.89907],[-57.76661,-18.89929],[-57.55777,-18.24036],[-57.4604,-18.23178],[-57.45802,-18.23159],[-57.45385,-18.2312],[-57.45744,-18.22492],[-57.46745,-18.22278],[-57.47421,-18.21697],[-57.47371,-18.21252],[-57.47979,-18.20862],[-57.47963,-18.20756],[-57.48222,-18.2021],[-57.48616,-18.19923],[-57.49073,-18.20223],[-57.50031,-18.19688],[-57.50507,-18.20034],[-57.5748,-18.13189],[-57.58178,-18.10828],[-57.60004,-18.04637],[-57.7206,-17.82786],[-57.69265,-17.82807],[-57.68874,-17.82703],[-57.68705,-17.82474],[-57.68812,-17.8066],[-57.6904,-17.80089],[-57.70401,-17.78753],[-57.71405,-17.77955],[-57.71513,-17.77661],[-57.71748,-17.7743],[-57.72009,-17.77171],[-57.71378,-17.74662],[-57.71481,-17.73372],[-57.72315,-17.72562],[-57.73507,-17.72003],[-57.74307,-17.69861],[-57.75425,-17.68866],[-57.76487,-17.66838],[-57.77963,-17.65655],[-57.78505,-17.6455],[-57.78454,-17.64021],[-57.77771,-17.62489],[-57.77923,-17.62327],[-57.78605,-17.61587],[-57.78243,-17.61428],[-57.7812,-17.61256],[-57.78396,-17.60743],[-57.78212,-17.60568],[-57.79048,-17.60321],[-57.78782,-17.60044],[-57.78919,-17.5999],[-57.78606,-17.59665],[-57.78658,-17.59473],[-57.79374,-17.59239],[-57.79244,-17.59],[-57.79312,-17.58977],[-57.79018,-17.5844],[-57.78972,-17.5825],[-57.78082,-17.5763],[-57.78534,-17.57524],[-57.78518,-17.56997],[-57.79438,-17.56429],[-57.79561,-17.56002],[-57.79281,-17.55574],[-57.7856,-17.55555],[-57.75224,-17.56446],[-57.85996,-17.47007],[-57.8779,-17.46292],[-57.89557,-17.45888],[-57.8992,-17.4595],[-57.9786,-17.50941],[-57.98264,-17.51328],[-57.98961,-17.51804],[-58.00256,-17.51955],[-58.018,-17.50839],[-58.02663,-17.50004],[-58.03943,-17.49378],[-58.04334,-17.49267],[-58.04947,-17.46302],[-58.06008,-17.45073],[-58.07235,-17.45207],[-58.08922,-17.46113],[-58.11832,-17.45038],[-58.1228,-17.41468],[-58.12983,-17.41156],[-58.13921,-17.41563],[-58.14541,-17.41366],[-58.15244,-17.40202],[-58.15185,-17.39113],[-58.17019,-17.39539],[-58.1844,-17.39665],[-58.19148,-17.3925],[-58.19174,-17.38788],[-58.20033,-17.38302],[-58.19507,-17.36896],[-58.20213,-17.35705],[-58.22023,-17.36004],[-58.22767,-17.35671],[-58.22773,-17.35607],[-58.23021,-17.35605],[-58.24199,-17.36288],[-58.24485,-17.36215],[-58.25029,-17.35705],[-58.25575,-17.35424],[-58.25863,-17.34564],[-58.26352,-17.34469],[-58.26363,-17.3304],[-58.27649,-17.32375],[-58.27643,-17.30058],[-58.29197,-17.30187],[-58.29817,-17.29883],[-58.29686,-17.29133],[-58.29546,-17.29056],[-58.29564,-17.29042],[-58.29688,-17.28462],[-58.30322,-17.27987],[-58.30341,-17.27028],[-58.319,-17.26677],[-58.32206,-17.26023],[-58.32142,-17.25884],[-58.33268,-17.25074],[-58.33429,-17.24475],[-58.33902,-17.2408],[-58.34279,-17.23352],[-58.34594,-17.23274],[-58.35653,-17.21228],[-58.36427,-17.21429],[-58.36435,-17.21005],[-58.36458,-17.1998],[-58.36958,-17.20038],[-58.39547,-17.18447],[-58.3975,-17.13676],[-58.38899,-17.11769],[-58.41848,-17.12063],[-58.42268,-17.11512],[-58.42257,-17.1128],[-58.42534,-17.11204],[-58.42902,-17.1053],[-58.42558,-17.09263],[-58.42491,-17.09025],[-58.43408,-17.08661],[-58.43578,-17.07881],[-58.43052,-17.07228],[-58.43216,-17.05877],[-58.42542,-17.05325],[-58.42199,-17.05047],[-58.43417,-17.04571],[-58.4343,-17.03984],[-58.4306,-17.03679],[-58.41906,-17.03809],[-58.41893,-17.03792],[-58.4269,-17.0353],[-58.42967,-17.02915],[-58.42957,-17.02803],[-58.43491,-17.02725],[-58.43552,-17.00761],[-58.42722,-16.99949],[-58.42297,-16.98929],[-58.43144,-16.99083],[-58.4446,-16.98072],[-58.447,-16.97884],[-58.44743,-16.97212],[-58.44981,-16.97183],[-58.45337,-16.96887],[-58.4561,-16.9694],[-58.45953,-16.96699],[-58.46172,-16.9545],[-58.45765,-16.94276],[-58.46565,-16.94249],[-58.46854,-16.94116],[-58.47435,-16.93496],[-58.4688,-16.92405],[-58.47361,-16.91594],[-58.47445,-16.9145],[-58.46685,-16.91107],[-58.46059,-16.9007],[-58.46316,-16.89963],[-58.46811,-16.89895],[-58.46319,-16.87345],[-58.46624,-16.86886],[-58.46103,-16.86427],[-58.46415,-16.86218],[-58.46381,-16.86041],[-58.46608,-16.85844],[-58.46145,-16.84951],[-58.46798,-16.84821],[-58.46183,-16.84109],[-58.47596,-16.82744],[-58.47741,-16.8155],[-58.47191,-16.79146],[-58.46333,-16.79245],[-58.46011,-16.78804],[-58.46405,-16.77932],[-58.46397,-16.7763],[-58.46661,-16.7569],[-58.47339,-16.74518],[-58.46669,-16.72084],[-58.47052,-16.70303],[-58.46084,-16.6667],[-58.46304,-16.65223],[-58.43602,-16.59236],[-58.42801,-16.58567],[-58.42127,-16.57356],[-58.39377,-16.56287],[-58.38601,-16.5436],[-58.3577,-16.52938],[-58.3438,-16.51773]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:CE:**Chile, south of 40º S#LU:**Argentina, south of 40º S#VP8:**Falkland Islands","itu_zone_number":16,"itu_zone_name_loc":[-50,-65]},"geometry":{"type":"Polygon","coordinates":[[[-78,-40],[-55,-40],[-55,-60],[-78,-60],[-78,-40]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:TF:**Iceland","itu_zone_number":17,"itu_zone_name_loc":[61,-26]},"geometry":{"type":"Polygon","coordinates":[[[-10,73],[-50,54],[-10,61],[-10,73]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!:JW:**Svalbard, south of 80º N#JX:**Jan Mayen#LA:**Norway#OH:**Finland#OH0:**Aland Islands#OJ0:**Market Reef#OY:**Faroe Islands#OZ:**Denmark#SM:**Sweden","itu_zone_number":18,"itu_zone_name_loc":[70,10]},"geometry":{"type":"Polygon","coordinates":[[[2,61],[-10,61],[-10,80],[32,80],[32,70],[30.83395,69.80903],[30.8235,69.79009],[30.87046,69.75119],[30.87739,69.74028],[30.88772,69.73625],[30.89256,69.72937],[30.88851,69.71988],[30.8755,69.71751],[30.87896,69.71229],[30.94652,69.68099],[30.92344,69.67067],[30.95118,69.63556],[30.95131,69.59888],[30.93771,69.5622],[30.88751,69.54531],[30.81534,69.52842],[30.66076,69.54129],[30.52267,69.54073],[30.41403,69.58992],[30.32336,69.62242],[30.23268,69.65111],[30.17355,69.66305],[30.15328,69.6702],[30.11652,69.66494],[30.08801,69.65825],[30.08971,69.64297],[30.13878,69.64344],[30.15096,69.62648],[30.15215,69.60951],[30.17651,69.58514],[30.18947,69.56538],[30.18045,69.55618],[30.18104,69.54697],[30.17065,69.53393],[30.12389,69.52074],[30.11282,69.47199],[30.1128,69.46647],[30.06884,69.4494],[30.05097,69.43232],[30.01662,69.41813],[29.95341,69.40518],[29.93829,69.40798],[29.93142,69.41465],[29.9163,69.41938],[29.90118,69.41735],[29.86853,69.42553],[29.8329,69.4184],[29.80002,69.40548],[29.76988,69.39449],[29.72327,69.39026],[29.69611,69.36463],[29.65247,69.34867],[29.56914,69.3175],[29.53251,69.31722],[29.5261,69.32955],[29.49771,69.32393],[29.46383,69.32123],[29.4304,69.32237],[29.41644,69.31761],[29.39423,69.32254],[29.34845,69.30816],[29.28618,69.29669],[29.27426,69.25766],[29.28845,69.24646],[29.31362,69.23818],[29.2921,69.1992],[29.28821,69.17532],[29.25135,69.16218],[29.25593,69.15173],[29.23853,69.1364],[29.24356,69.12873],[29.23486,69.124],[29.23943,69.1116],[29.15657,69.06623],[29.10003,69.04356],[29.06283,69.01846],[29.04212,69.01007],[29.02224,69.02491],[28.92959,69.05153],[28.50354,68.93155],[28.41807,68.91512],[28.46719,68.88589],[28.66203,68.88661],[28.80195,68.86853],[28.70864,68.7334],[28.43406,68.54045],[28.64708,68.19796],[29.33251,68.07123],[29.68346,67.79256],[30.01244,67.66727],[29.92944,67.5234],[29.05847,66.98847],[29.04443,66.94918],[29.03704,66.86997],[29.10656,66.79938],[29.29144,66.69851],[29.39941,66.59762],[29.4945,66.53361],[29.71044,66.25916],[29.92089,66.11988],[30.01599,65.98286],[30.08361,65.87291],[30.13476,65.67077],[29.99782,65.69433],[29.71805,65.63643],[29.86164,65.56583],[29.73607,65.47474],[29.74234,65.34715],[29.6026,65.26128],[29.63358,65.23096],[29.78091,65.23191],[29.89527,65.20524],[29.81639,65.14263],[29.88034,65.11233],[29.82618,65.0949],[29.7112,65.08618],[29.61821,65.06358],[29.60211,64.91404],[29.73983,64.78778],[30.03723,64.78739],[30.07988,64.77012],[30.04563,64.71539],[30.13095,64.64807],[30.10833,64.63005],[29.96486,64.57907],[30.05146,64.45816],[30.06455,64.40354],[30.12159,64.3584],[30.24454,64.34419],[30.36749,64.29667],[30.3948,64.27054],[30.49902,64.25873],[30.51535,64.22305],[30.46576,64.19693],[30.55305,64.12588],[30.53597,64.04284],[30.45297,63.98385],[30.30954,63.91156],[30.26499,63.81994],[30.14354,63.79369],[29.97814,63.75289],[30.50411,63.46099],[30.76194,63.41026],[31.01977,63.31033],[31.22268,63.22025],[31.31572,63.08066],[31.62057,62.92342],[31.18934,62.4652],[30.03302,61.78308],[29.30239,61.32151],[29.23128,61.25782],[28.99537,61.17299],[28.75426,61.07212],[28.65657,60.95013],[28.5351,60.96115],[28.19391,60.77455],[27.85211,60.58287],[27.78558,60.53412],[27.77398,60.50158],[27.7514,60.46094],[27.68487,60.42571],[27.72636,60.39067],[27.58109,60.29591],[20.51806,58.95105],[19.39575,56.23785],[15.07727,54.74072],[13.40142,54.83253],[12.14602,54.47168],[11.28613,54.5692],[10.00537,54.80993],[9.81125,54.81183],[9.63911,54.84221],[9.60245,54.88714],[9.43574,54.82838],[9.42017,54.8338],[9.4101,54.84238],[9.3817,54.83424],[9.37014,54.81974],[9.3421,54.80049],[9.31543,54.80894],[9.29151,54.80632],[9.27446,54.81199],[9.24917,54.81134],[9.23348,54.83284],[9.24527,54.84643],[9.14454,54.87285],[9.05205,54.87239],[8.9575,54.90195],[8.90061,54.9041],[8.84922,54.89835],[8.83843,54.90421],[8.80292,54.90534],[8.7786,54.89496],[8.72995,54.89316],[8.67953,54.91318],[8.65658,54.90794],[8.61343,54.9164],[8.53985,55.03551],[8.42565,55.07829],[5.97802,55.07554],[2,61]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:UA1,4:**European Russia, between 60º and 80º N and west of 50º E#UA8,9:**Asiatic Russia, between 60º and 80º N and west of 50º E","itu_zone_number":19,"itu_zone_name_loc":[70,40]},"geometry":{"type":"Polygon","coordinates":[[[50,60],[50,80],[32,80],[32,70],[30.83395,69.80903],[30.8235,69.79009],[30.87046,69.75119],[30.87739,69.74028],[30.88772,69.73625],[30.89256,69.72937],[30.88851,69.71988],[30.8755,69.71751],[30.87896,69.71229],[30.94652,69.68099],[30.92344,69.67067],[30.95118,69.63556],[30.95131,69.59888],[30.93771,69.5622],[30.88751,69.54531],[30.81534,69.52842],[30.66076,69.54129],[30.52267,69.54073],[30.41403,69.58992],[30.32336,69.62242],[30.23268,69.65111],[30.17355,69.66305],[30.15328,69.6702],[30.11652,69.66494],[30.08801,69.65825],[30.08971,69.64297],[30.13878,69.64344],[30.15096,69.62648],[30.15215,69.60951],[30.17651,69.58514],[30.18947,69.56538],[30.18045,69.55618],[30.18104,69.54697],[30.17065,69.53393],[30.12389,69.52074],[30.11282,69.47199],[30.1128,69.46647],[30.06884,69.4494],[30.05097,69.43232],[30.01662,69.41813],[29.95341,69.40518],[29.93829,69.40798],[29.93142,69.41465],[29.9163,69.41938],[29.90118,69.41735],[29.86853,69.42553],[29.8329,69.4184],[29.80002,69.40548],[29.76988,69.39449],[29.72327,69.39026],[29.69611,69.36463],[29.65247,69.34867],[29.56914,69.3175],[29.53251,69.31722],[29.5261,69.32955],[29.49771,69.32393],[29.46383,69.32123],[29.4304,69.32237],[29.41644,69.31761],[29.39423,69.32254],[29.34845,69.30816],[29.28618,69.29669],[29.27426,69.25766],[29.28845,69.24646],[29.31362,69.23818],[29.2921,69.1992],[29.28821,69.17532],[29.25135,69.16218],[29.25593,69.15173],[29.23853,69.1364],[29.24356,69.12873],[29.23486,69.124],[29.23943,69.1116],[29.15657,69.06623],[29.10003,69.04356],[29.06283,69.01846],[29.04212,69.01007],[29.02224,69.02491],[28.92959,69.05153],[28.50354,68.93155],[28.41807,68.91512],[28.46719,68.88589],[28.66203,68.88661],[28.80195,68.86853],[28.70864,68.7334],[28.43406,68.54045],[28.64708,68.19796],[29.33251,68.07123],[29.68346,67.79256],[30.01244,67.66727],[29.92944,67.5234],[29.05847,66.98847],[29.04443,66.94918],[29.03704,66.86997],[29.10656,66.79938],[29.29144,66.69851],[29.39941,66.59762],[29.4945,66.53361],[29.71044,66.25916],[29.92089,66.11988],[30.01599,65.98286],[30.08361,65.87291],[30.13476,65.67077],[29.99782,65.69433],[29.71805,65.63643],[29.86164,65.56583],[29.73607,65.47474],[29.74234,65.34715],[29.6026,65.26128],[29.63358,65.23096],[29.78091,65.23191],[29.89527,65.20524],[29.81639,65.14263],[29.88034,65.11233],[29.82618,65.0949],[29.7112,65.08618],[29.61821,65.06358],[29.60211,64.91404],[29.73983,64.78778],[30.03723,64.78739],[30.07988,64.77012],[30.04563,64.71539],[30.13095,64.64807],[30.10833,64.63005],[29.96486,64.57907],[30.05146,64.45816],[30.06455,64.40354],[30.12159,64.3584],[30.24454,64.34419],[30.36749,64.29667],[30.3948,64.27054],[30.49902,64.25873],[30.51535,64.22305],[30.46576,64.19693],[30.55305,64.12588],[30.53597,64.04284],[30.45297,63.98385],[30.30954,63.91156],[30.26499,63.81994],[30.14354,63.79369],[29.97814,63.75289],[30.50411,63.46099],[30.76194,63.41026],[31.01977,63.31033],[31.22268,63.22025],[31.31572,63.08066],[31.62057,62.92342],[31.18934,62.4652],[30.03302,61.78308],[29.30239,61.32151],[29.41552,61.26117],[29.4968,61.25873],[29.55061,61.24308],[29.57362,61.18578],[30.46556,61.11219],[31.37316,60],[50,60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:RI1FJ:**Franz Josef Land, south of 80º N#UA1,4:**European Russia, between 60º and 80º N and east of 50º E#UA8,9:**Asiatic Russia, between 60º and 80º N and between 50º and 75° E","itu_zone_number":20,"itu_zone_name_loc":[70,62.5]},"geometry":{"type":"Polygon","coordinates":[[[50,80],[75,80],[75,60],[50,60],[50,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA8,9,0:**Asiatic Russia, between 60º and 80º N and between 75º and 90º E","itu_zone_number":21,"itu_zone_name_loc":[70,82.5]},"geometry":{"type":"Polygon","coordinates":[[[75,80],[89.999999,80],[89.999999,60],[75,60],[75,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA0:**Asiatic Russia, between 60º and 80º N and between 90º and 110º E","itu_zone_number":22,"itu_zone_name_loc":[70,100]},"geometry":{"type":"Polygon","coordinates":[[[89.999999,80],[110,80],[110,60],[89.999999,60],[89.999999,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA0:**Asiatic Russia, between 60º and 80º N and between 110º and 135º E","itu_zone_number":23,"itu_zone_name_loc":[70,122.5]},"geometry":{"type":"Polygon","coordinates":[[[110,80],[135,80],[135,60],[110,60],[110,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA0:**Asiatic Russia, between 60º and 80º N and between 135º and 155º E","itu_zone_number":24,"itu_zone_name_loc":[70,142.5]},"geometry":{"type":"Polygon","coordinates":[[[135,80],[155,80],[155,60],[135,60],[135,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA0:**Asiatic Russia, between 60º and 80º N and between 155º and 170º E","itu_zone_number":25,"itu_zone_name_loc":[70,162.5]},"geometry":{"type":"Polygon","coordinates":[[[155,80],[170,80],[170,60],[155,60],[155,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA0:**Asiatic Russia, between 60º and 80º N and east of 170º E","itu_zone_number":26,"itu_zone_name_loc":[70,180]},"geometry":{"type":"Polygon","coordinates":[[[170,80],[189.999999,80],[191.03851,65.74529],[180,60],[170,60],[170,80]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!!!:C3:**Andorra#EI:**Ireland#F:**France#G:**England#GD:**Isle of Man#GI:**Northern Ireland#GJ:**Jersey#GM:**Scotland#GU:**Guernsey#GW:**Wales#LX:**Luxemburg#ON:**Belgium#PA:**Netherlands#3A:**Monaco","itu_zone_number":27,"itu_zone_name_loc":[52,2]},"geometry":{"type":"Polygon","coordinates":[[[7.5,42.43575],[3.17622,42.43575],[3.11997,42.43681],[3.10283,42.42417],[3.0802,42.42369],[3.07679,42.43842],[3.04867,42.45314],[3.03911,42.4765],[3.01543,42.46866],[2.99176,42.47298],[2.9722,42.46717],[2.94441,42.47959],[2.91903,42.45683],[2.86893,42.46648],[2.85727,42.45256],[2.83737,42.45891],[2.82709,42.44499],[2.80307,42.43107],[2.80447,42.41944],[2.77496,42.41363],[2.75333,42.4239],[2.71935,42.41796],[2.66968,42.40032],[2.67031,42.38424],[2.65171,42.38643],[2.66744,42.36528],[2.67494,42.34413],[2.63197,42.34124],[2.59263,42.354],[2.56977,42.35865],[2.55446,42.35466],[2.5419,42.33241],[2.50531,42.34162],[2.48794,42.34069],[2.43913,42.37432],[2.43152,42.39375],[2.39923,42.38961],[2.38342,42.39966],[2.35937,42.4016],[2.34357,42.41571],[2.32708,42.41643],[2.31059,42.42729],[2.28861,42.42264],[2.27211,42.4332],[2.25562,42.43565],[2.19851,42.41605],[2.16063,42.42484],[2.12246,42.40642],[2.11451,42.37989],[2.0887,42.36553],[2.04833,42.36038],[2.0162,42.35117],[1.97214,42.37211],[1.95975,42.3956],[1.95834,42.4191],[1.94184,42.43144],[1.93906,42.45392],[1.89712,42.44515],[1.82771,42.48501],[1.79815,42.48899],[1.76585,42.48486],[1.72597,42.50091],[1.70848,42.49005],[1.67228,42.49678],[1.6553,42.46907],[1.58838,42.46429],[1.57639,42.44736],[1.56103,42.45908],[1.54842,42.43229],[1.49573,42.43243],[1.47626,42.43655],[1.45129,42.43763],[1.44018,42.45235],[1.44005,42.47924],[1.41233,42.48438],[1.41684,42.49277],[1.44607,42.49508],[1.46882,42.50983],[1.44351,42.54482],[1.4127,42.53326],[1.42584,42.55459],[1.44173,42.56783],[1.4274,42.58005],[1.44496,42.59425],[1.44054,42.60643],[1.39405,42.67273],[1.35305,42.71883],[1.25564,42.71868],[1.22068,42.72365],[1.17197,42.71045],[1.13529,42.72652],[1.13156,42.75065],[1.08016,42.78882],[1.05337,42.78389],[1.03482,42.78703],[0.98125,42.78926],[0.95649,42.80582],[0.92346,42.79057],[0.86015,42.82657],[0.83368,42.826],[0.80171,42.83953],[0.78173,42.83436],[0.70742,42.86028],[0.65985,42.84769],[0.67474,42.81029],[0.64373,42.78353],[0.66766,42.77289],[0.64214,42.75722],[0.66057,42.74558],[0.68312,42.72083],[0.67546,42.69204],[0.62608,42.69262],[0.60142,42.70329],[0.58638,42.69377],[0.53491,42.70315],[0.51915,42.69435],[0.49583,42.69111],[0.47252,42.70199],[0.4204,42.68743],[0.39708,42.6968],[0.39025,42.71627],[0.37792,42.71454],[0.3601,42.7229],[0.32994,42.70885],[0.32451,42.69681],[0.31771,42.68275],[0.29717,42.67273],[0.26839,42.69602],[0.26159,42.71728],[0.23144,42.71837],[0.18618,42.73661],[0.11252,42.71118],[0.08106,42.71744],[0.05784,42.69746],[0.01676,42.70069],[-0.01058,42.68374],[-0.05783,42.69502],[-0.0691,42.7158],[-0.10783,42.72448],[-0.16114,42.79346],[-0.17875,42.78281],[-0.23424,42.80771],[-0.23919,42.82099],[-0.25814,42.82158],[-0.2771,42.83427],[-0.31995,42.84269],[-0.34326,42.84056],[-0.37755,42.80821],[-0.38783,42.79657],[-0.41459,42.80911],[-0.44065,42.79791],[-0.50649,42.8269],[-0.52295,42.81249],[-0.52293,42.79606],[-0.54076,42.79071],[-0.55585,42.77731],[-0.56983,42.78552],[-0.57008,42.80583],[-0.59804,42.80614],[-0.60178,42.82893],[-0.64534,42.85373],[-0.67792,42.88256],[-0.70157,42.8802],[-0.7285,42.89512],[-0.73346,42.91205],[-0.73102,42.93685],[-0.75055,42.96568],[-0.78075,42.96669],[-0.81094,42.95163],[-0.89332,42.95667],[-0.90703,42.96171],[-0.93517,42.95218],[-0.98357,42.9665],[-1.01548,42.9949],[-1.07038,42.99795],[-1.11425,43.02263],[-1.13895,43.00521],[-1.14717,43.02594],[-1.17049,43.03864],[-1.18045,43.03278],[-1.20877,43.05294],[-1.22885,43.05503],[-1.25443,43.03856],[-1.27176,43.0562],[-1.30558,43.06883],[-1.29776,43.09571],[-1.27073,43.11858],[-1.33073,43.11144],[-1.34578,43.09249],[-1.34161,43.07554],[-1.35249,43.0256],[-1.44445,43.04926],[-1.47324,43.08696],[-1.41688,43.1257],[-1.41499,43.15208],[-1.40168,43.15525],[-1.40211,43.17846],[-1.38184,43.18915],[-1.37975,43.25661],[-1.4102,43.27348],[-1.43504,43.26691],[-1.47361,43.27635],[-1.51505,43.29421],[-1.56198,43.28808],[-1.5621,43.27677],[-1.57046,43.24946],[-1.61452,43.25615],[-1.62969,43.27849],[-1.62288,43.30683],[-1.67999,43.31601],[-1.72886,43.29722],[-1.74211,43.3125],[-1.74162,43.32779],[-1.76263,43.34437],[-1.79187,43.35196],[-1.79001,43.37423],[-1.77717,43.41047],[-3,44],[-13,44],[-14,60.35968],[-10,61],[2,61],[5.97802,55.07554],[6.6318,53.55729],[6.91479,53.44177],[6.97869,53.33729],[7.18917,53.3018],[7.2079,53.24393],[7.21807,53.17974],[7.20001,53.17356],[7.17647,53.12787],[7.20352,53.11554],[7.21087,53.00362],[7.18252,52.94126],[7.08461,52.84969],[7.04946,52.63586],[6.8919,52.65033],[6.75082,52.65146],[6.71497,52.63057],[6.72031,52.588],[6.76396,52.56291],[6.68401,52.55371],[6.69622,52.51988],[6.6947,52.48604],[6.76853,52.46085],[6.85061,52.45825],[6.93512,52.43883],[6.95814,52.44001],[6.98391,52.46964],[7.03303,52.40718],[7.06567,52.39665],[7.07285,52.35915],[7.02235,52.27803],[7.06417,52.23668],[7.03446,52.22467],[6.98552,52.22443],[6.97004,52.20377],[6.95318,52.18225],[6.90886,52.1759],[6.88463,52.1557],[6.86588,52.12202],[6.75973,52.11704],[6.75105,52.0888],[6.72863,52.07574],[6.6966,52.07029],[6.68929,52.03951],[6.73372,52.03707],[6.83033,51.99238],[6.82807,51.96715],[6.80484,51.9583],[6.79323,51.93441],[6.77887,51.92237],[6.72417,51.89284],[6.68668,51.91864],[6.5558,51.88515],[6.47436,51.85505],[6.38756,51.87197],[6.4074,51.8497],[6.40802,51.82743],[6.37109,51.83543],[6.35339,51.84682],[6.30685,51.85228],[6.2768,51.87301],[6.21256,51.86527],[6.18319,51.89447],[6.15656,51.90332],[6.10835,51.89526],[6.1365,51.88293],[6.14645,51.86999],[6.16464,51.86213],[6.17149,51.84088],[6.10281,51.84846],[6.06708,51.86283],[6.03271,51.84661],[6.00042,51.82748],[5.95989,51.8338],[5.94738,51.82394],[5.98094,51.79099],[5.99361,51.76688],[5.95462,51.74887],[5.95134,51.73766],[5.99902,51.73776],[6.03847,51.71745],[6.02847,51.70564],[6.02671,51.67851],[6.11582,51.65513],[6.0882,51.60833],[6.14992,51.56702],[6.21164,51.51546],[6.22246,51.46913],[6.20857,51.39883],[6.23012,51.35891],[6.16927,51.33271],[6.13314,51.28248],[6.07778,51.24085],[6.08635,51.223],[6.07019,51.21892],[6.07326,51.17612],[6.09281,51.16774],[6.16551,51.19276],[6.18182,51.18769],[6.13943,51.17371],[6.1712,51.15972],[6.05876,51.113],[5.97508,51.0672],[5.95659,51.03393],[5.93498,51.0337],[5.91337,51.06455],[5.86773,51.04802],[5.87966,51.01711],[5.9076,51.00165],[5.89983,50.97583],[5.9502,50.98842],[5.9676,50.98026],[6.02438,50.9847],[6.01226,50.95794],[6.01661,50.93464],[6.083,50.91918],[6.0746,50.84661],[6.05529,50.85455],[6.01682,50.84613],[6.02504,50.81515],[6.00577,50.80178],[5.9844,50.81062],[5.97234,50.80028],[6.02262,50.77253],[6.02346,50.75348],[6.04115,50.72689],[6.11262,50.72022],[6.1834,50.64788],[6.16905,50.64337],[6.1808,50.62319],[6.19332,50.63334],[6.2719,50.62404],[6.24116,50.58713],[6.22826,50.58946],[6.17501,50.55488],[6.22706,50.49416],[6.28432,50.50336],[6.34433,50.48636],[6.33726,50.46081],[6.36863,50.45449],[6.3754,50.41983],[6.34371,50.37817],[6.41354,50.32808],[6.36078,50.30718],[6.31929,50.32832],[6.29694,50.30397],[6.28283,50.2726],[6.21791,50.25616],[6.17221,50.2239],[6.19068,50.17963],[6.14761,50.17658],[6.13887,50.15681],[6.15711,50.14544],[6.13315,50.12621],[6.1182,50.05432],[6.15269,49.99122],[6.21738,49.94401],[6.24182,49.89587],[6.29372,49.87427],[6.32885,49.83993],[6.35892,49.8546],[6.39997,49.82676],[6.43691,49.81043],[6.47186,49.8191],[6.52878,49.80827],[6.50858,49.76052],[6.49937,49.70922],[6.43917,49.67452],[6.42567,49.6345],[6.36844,49.56511],[6.36799,49.47001],[6.39823,49.46661],[6.42572,49.4757],[6.55621,49.4214],[6.53769,49.40677],[6.5861,49.38247],[6.58447,49.37014],[6.60207,49.36317],[6.59083,49.35352],[6.57285,49.35943],[6.5686,49.34923],[6.66616,49.27365],[6.73829,49.16588],[6.78122,49.16583],[6.83788,49.15501],[6.85782,49.17831],[6.83491,49.21308],[6.85915,49.22328],[6.89164,49.21015],[6.93371,49.22225],[6.95792,49.20024],[6.97152,49.20865],[7.00717,49.18862],[7.03182,49.19014],[7.0297,49.1728],[7.04131,49.15007],[7.04667,49.11539],[7.08539,49.13165],[7.0814,49.15505],[7.10824,49.15597],[7.10381,49.13846],[7.1241,49.14431],[7.15045,49.12282],[7.18779,49.1283],[7.20204,49.11947],[7.23663,49.13123],[7.29319,49.11783],[7.32582,49.14691],[7.35998,49.14438],[7.36668,49.17059],[7.44224,49.18268],[7.4328,49.16596],[7.45906,49.16539],[7.49357,49.17201],[7.49984,49.15108],[7.48962,49.13553],[7.56448,49.07939],[7.60087,49.0844],[7.63281,49.06982],[7.63453,49.05343],[7.67574,49.04637],[7.71351,49.05721],[7.75952,49.04645],[7.79866,49.06358],[7.86802,49.03212],[7.88347,49.04908],[7.90442,49.04804],[7.91713,49.0425],[7.93808,49.05856],[7.97998,49.03127],[8.06685,49.00501],[8.1096,48.98648],[8.23199,48.96976],[8.19846,48.9561],[8.13171,48.8827],[8.09243,48.80568],[8.06956,48.78823],[8.03022,48.78888],[8.0252,48.76961],[8.01195,48.76121],[7.96622,48.7598],[7.96443,48.72398],[7.88832,48.6602],[7.84526,48.64694],[7.82923,48.61581],[7.8061,48.58846],[7.80553,48.5075],[7.76925,48.49204],[7.76523,48.45313],[7.73099,48.38871],[7.74218,48.3255],[7.69486,48.30436],[7.67394,48.22889],[7.64479,48.20646],[7.62631,48.17903],[7.60059,48.158],[7.59759,48.13487],[7.57811,48.11908],[7.56937,48.03432],[7.61612,47.99416],[7.62231,47.96713],[7.58456,47.92905],[7.57942,47.89529],[7.5578,47.87995],[7.56227,47.84619],[7.53103,47.77925],[7.55032,47.73114],[7.51052,47.69787],[7.52083,47.65998],[7.56719,47.63456],[7.57054,47.61363],[7.59311,47.6001],[7.58608,47.57675],[7.56285,47.57659],[7.55884,47.56531],[7.49715,47.53828],[7.50064,47.53033],[7.52436,47.53377],[7.52798,47.51509],[7.50507,47.51503],[7.50736,47.49623],[7.47943,47.47929],[7.43456,47.49737],[7.42128,47.48205],[7.45721,47.47252],[7.39553,47.4334],[7.31488,47.44126],[7.24246,47.42126],[7.23185,47.44119],[7.20242,47.43735],[7.17298,47.44466],[7.182,47.48168],[7.20476,47.4927],[7.17011,47.49127],[7.12997,47.50098],[7.07441,47.48884],[7.02434,47.50547],[6.988,47.49427],[7.00042,47.4538],[6.94417,47.43377],[6.93733,47.40796],[6.91676,47.40446],[6.90853,47.38876],[6.88383,47.37307],[6.87836,47.35284],[6.97358,47.36368],[7.0221,47.37266],[7.04773,47.36177],[7.05963,47.33601],[7.01258,47.32182],[7.00399,47.30019],[6.9401,47.28487],[6.9524,47.24305],[6.84523,47.17323],[6.85616,47.15941],[6.74332,47.10786],[6.74154,47.09386],[6.72329,47.09107],[6.69502,47.06679],[6.71894,47.05003],[6.66499,47.02814],[6.63026,46.99501],[6.59103,46.9887],[6.51029,46.96493],[6.49548,46.97302],[6.43152,46.92549],[6.46546,46.8872],[6.45882,46.84745],[6.42941,46.80691],[6.46042,46.78705],[6.43369,46.75768],[6.39323,46.74712],[6.37547,46.72977],[6.2713,46.68003],[6.1124,46.57677],[6.1544,46.5457],[6.07498,46.46496],[6.08299,46.44337],[6.06628,46.41611],[6.17592,46.36804],[6.11675,46.31179],[6.10608,46.27828],[6.12287,46.24857],[6.10449,46.23799],[6.05864,46.24451],[6.04713,46.23108],[6.0345,46.23387],[5.99427,46.22221],[5.96502,46.19535],[5.99345,46.18275],[5.95321,46.12828],[6.04534,46.1463],[6.09277,46.15056],[6.14296,46.1453],[6.18662,46.16671],[6.18909,46.17862],[6.23523,46.20624],[6.28549,46.2177],[6.31103,46.24247],[6.29782,46.26173],[6.2768,46.25332],[6.26402,46.24302],[6.23476,46.27545],[6.25446,46.28976],[6.24944,46.30217],[6.21912,46.31143],[6.25198,46.36241],[6.33691,46.40369],[6.42459,46.41562],[6.51776,46.45595],[6.68351,46.45519],[6.82179,46.42604],[6.80637,46.39266],[6.80693,46.37757],[6.76904,46.3587],[6.80393,46.32086],[6.86629,46.27923],[6.84632,46.25126],[6.80712,46.21],[6.80774,46.18109],[6.78883,46.15902],[6.79463,46.13506],[6.89875,46.12404],[6.87172,46.04784],[6.89117,46.04404],[6.92846,46.06788],[7.02297,45.97974],[7.00938,45.96729],[7.03698,45.95485],[7.0455,45.92231],[7.01406,45.91463],[7.00459,45.89358],[6.99388,45.86868],[6.95977,45.8615],[6.93664,45.84667],[6.87643,45.83949],[6.87237,45.82525],[6.84358,45.83972],[6.82304,45.83841],[6.80524,45.81987],[6.81462,45.72032],[6.85639,45.68396],[6.90639,45.67637],[6.90765,45.65967],[6.93088,45.6468],[6.97184,45.65851],[6.99782,45.63783],[6.97922,45.58619],[6.99052,45.56999],[7.00457,45.50379],[7.05377,45.49142],[7.04667,45.47633],[7.1008,45.46783],[7.11159,45.43295],[7.18554,45.40385],[7.16163,45.3588],[7.113,45.32147],[7.13659,45.27578],[7.12884,45.24432],[7.11443,45.24978],[7.0674,45.20512],[7.05333,45.22623],[6.96065,45.20461],[6.95688,45.18026],[6.89268,45.16171],[6.89823,45.13911],[6.8489,45.1288],[6.82012,45.14738],[6.77211,45.16015],[6.74191,45.13695],[6.71171,45.14474],[6.68152,45.13708],[6.66233,45.11973],[6.62115,45.10626],[6.65743,45.07074],[6.67282,45.02096],[6.74314,45.01776],[6.7535,44.99901],[6.7364,44.98804],[6.76261,44.96414],[6.74912,44.90859],[6.8249,44.86761],[6.91166,44.84415],[6.9346,44.85929],[6.996,44.84135],[7.02443,44.82147],[7.00106,44.78781],[7.02131,44.76916],[7.03057,44.72515],[7.06557,44.71127],[7.0765,44.68107],[7.01624,44.68951],[6.97521,44.68232],[6.95065,44.65267],[6.97004,44.62302],[6.94849,44.61502],[6.92969,44.57378],[6.87836,44.54998],[6.8471,44.52782],[6.8766,44.48644],[6.9418,44.42939],[6.93406,44.42201],[6.89886,44.42248],[6.88887,44.36455],[6.91684,44.35472],[6.95005,44.30756],[6.99149,44.28006],[7.00024,44.24371],[7.03644,44.2231],[7.0714,44.23306],[7.12047,44.20851],[7.16129,44.20562],[7.18839,44.19813],[7.21823,44.16898],[7.23671,44.1737],[7.26617,44.14591],[7.33959,44.14374],[7.36282,44.11873],[7.42767,44.11938],[7.50627,44.14369],[7.57662,44.15223],[7.62774,44.15288],[7.63575,44.17626],[7.68633,44.17304],[7.66904,44.13264],[7.72083,44.07895],[7.69812,44.04163],[7.66442,44.02602],[7.66368,43.99068],[7.62486,43.96213],[7.56682,43.94347],[7.56122,43.89848],[7.52341,43.88836],[7.49109,43.86835],[7.51128,43.83005],[7.53148,43.78183],[7.61033,43.69135],[7.5,42.43575]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!:DL:**Germany#E7:**Bosnia & Herzegovina#HA:**Hungary#HB:**Switzerland#HB0:**Liechtenstein#HV:**Vatican#I:**Italy - excluding IG9 (Pantelleria I.) and IH9 (Pelagic Is.) in African Italy#IS:**Sardinia#LZ:**Bulgaria#OE:**Austria#OK:**Czech#OM:**Slovakia#S5:**Slovenia#SP:**Poland#SV:**Greece#SV/A:**Mount Athos#SV5:**Dodecanese#SV9:**Crete#T7:**San Marino#TK:**Corsica#YO:**Romania#YU:**Serbia#Z3:**Macedonia#ZA:**Albania#1A0:**Sovereign Military Order of Malta#4O:**Montenegro#4U1ITU:**ITU HQ Geneva#9A:**Croatia#9H:**Malta","itu_zone_number":28,"itu_zone_name_loc":[45,18]},"geometry":{"type":"Polygon","coordinates":[[[19.39575,56.23785],[15.07727,54.74072],[13.40142,54.83253],[12.14602,54.47168],[11.28613,54.5692],[10.00537,54.80993],[9.81125,54.81183],[9.63911,54.84221],[9.60245,54.88714],[9.43574,54.82838],[9.42017,54.8338],[9.4101,54.84238],[9.3817,54.83424],[9.37014,54.81974],[9.3421,54.80049],[9.31543,54.80894],[9.29151,54.80632],[9.27446,54.81199],[9.24917,54.81134],[9.23348,54.83284],[9.24527,54.84643],[9.14454,54.87285],[9.05205,54.87239],[8.9575,54.90195],[8.90061,54.9041],[8.84922,54.89835],[8.83843,54.90421],[8.80292,54.90534],[8.7786,54.89496],[8.72995,54.89316],[8.67953,54.91318],[8.65658,54.90794],[8.61343,54.9164],[8.53985,55.03551],[8.42565,55.07829],[5.97802,55.07554],[6.6318,53.55729],[6.91479,53.44177],[6.97869,53.33729],[7.18917,53.3018],[7.2079,53.24393],[7.21807,53.17974],[7.20001,53.17356],[7.17647,53.12787],[7.20352,53.11554],[7.21087,53.00362],[7.18252,52.94126],[7.08461,52.84969],[7.04946,52.63586],[6.8919,52.65033],[6.75082,52.65146],[6.71497,52.63057],[6.72031,52.588],[6.76396,52.56291],[6.68401,52.55371],[6.69622,52.51988],[6.6947,52.48604],[6.76853,52.46085],[6.85061,52.45825],[6.93512,52.43883],[6.95814,52.44001],[6.98391,52.46964],[7.03303,52.40718],[7.06567,52.39665],[7.07285,52.35915],[7.02235,52.27803],[7.06417,52.23668],[7.03446,52.22467],[6.98552,52.22443],[6.97004,52.20377],[6.95318,52.18225],[6.90886,52.1759],[6.88463,52.1557],[6.86588,52.12202],[6.75973,52.11704],[6.75105,52.0888],[6.72863,52.07574],[6.6966,52.07029],[6.68929,52.03951],[6.73372,52.03707],[6.83033,51.99238],[6.82807,51.96715],[6.80484,51.9583],[6.79323,51.93441],[6.77887,51.92237],[6.72417,51.89284],[6.68668,51.91864],[6.5558,51.88515],[6.47436,51.85505],[6.38756,51.87197],[6.4074,51.8497],[6.40802,51.82743],[6.37109,51.83543],[6.35339,51.84682],[6.30685,51.85228],[6.2768,51.87301],[6.21256,51.86527],[6.18319,51.89447],[6.15656,51.90332],[6.10835,51.89526],[6.1365,51.88293],[6.14645,51.86999],[6.16464,51.86213],[6.17149,51.84088],[6.10281,51.84846],[6.06708,51.86283],[6.03271,51.84661],[6.00042,51.82748],[5.95989,51.8338],[5.94738,51.82394],[5.98094,51.79099],[5.99361,51.76688],[5.95462,51.74887],[5.95134,51.73766],[5.99902,51.73776],[6.03847,51.71745],[6.02847,51.70564],[6.02671,51.67851],[6.11582,51.65513],[6.0882,51.60833],[6.14992,51.56702],[6.21164,51.51546],[6.22246,51.46913],[6.20857,51.39883],[6.23012,51.35891],[6.16927,51.33271],[6.13314,51.28248],[6.07778,51.24085],[6.08635,51.223],[6.07019,51.21892],[6.07326,51.17612],[6.09281,51.16774],[6.16551,51.19276],[6.18182,51.18769],[6.13943,51.17371],[6.1712,51.15972],[6.05876,51.113],[5.97508,51.0672],[5.95659,51.03393],[5.93498,51.0337],[5.91337,51.06455],[5.86773,51.04802],[5.87966,51.01711],[5.9076,51.00165],[5.89983,50.97583],[5.9502,50.98842],[5.9676,50.98026],[6.02438,50.9847],[6.01226,50.95794],[6.01661,50.93464],[6.083,50.91918],[6.0746,50.84661],[6.05529,50.85455],[6.01682,50.84613],[6.02504,50.81515],[6.00577,50.80178],[5.9844,50.81062],[5.97234,50.80028],[6.02262,50.77253],[6.02346,50.75348],[6.04115,50.72689],[6.11262,50.72022],[6.1834,50.64788],[6.16905,50.64337],[6.1808,50.62319],[6.19332,50.63334],[6.2719,50.62404],[6.24116,50.58713],[6.22826,50.58946],[6.17501,50.55488],[6.22706,50.49416],[6.28432,50.50336],[6.34433,50.48636],[6.33726,50.46081],[6.36863,50.45449],[6.3754,50.41983],[6.34371,50.37817],[6.41354,50.32808],[6.36078,50.30718],[6.31929,50.32832],[6.29694,50.30397],[6.28283,50.2726],[6.21791,50.25616],[6.17221,50.2239],[6.19068,50.17963],[6.14761,50.17658],[6.13887,50.15681],[6.15711,50.14544],[6.13315,50.12621],[6.1182,50.05432],[6.15269,49.99122],[6.21738,49.94401],[6.24182,49.89587],[6.29372,49.87427],[6.32885,49.83993],[6.35892,49.8546],[6.39997,49.82676],[6.43691,49.81043],[6.47186,49.8191],[6.52878,49.80827],[6.50858,49.76052],[6.49937,49.70922],[6.43917,49.67452],[6.42567,49.6345],[6.36844,49.56511],[6.36799,49.47001],[6.39823,49.46661],[6.42572,49.4757],[6.55621,49.4214],[6.53769,49.40677],[6.5861,49.38247],[6.58447,49.37014],[6.60207,49.36317],[6.59083,49.35352],[6.57285,49.35943],[6.5686,49.34923],[6.66616,49.27365],[6.73829,49.16588],[6.78122,49.16583],[6.83788,49.15501],[6.85782,49.17831],[6.83491,49.21308],[6.85915,49.22328],[6.89164,49.21015],[6.93371,49.22225],[6.95792,49.20024],[6.97152,49.20865],[7.00717,49.18862],[7.03182,49.19014],[7.0297,49.1728],[7.04131,49.15007],[7.04667,49.11539],[7.08539,49.13165],[7.0814,49.15505],[7.10824,49.15597],[7.10381,49.13846],[7.1241,49.14431],[7.15045,49.12282],[7.18779,49.1283],[7.20204,49.11947],[7.23663,49.13123],[7.29319,49.11783],[7.32582,49.14691],[7.35998,49.14438],[7.36668,49.17059],[7.44224,49.18268],[7.4328,49.16596],[7.45906,49.16539],[7.49357,49.17201],[7.49984,49.15108],[7.48962,49.13553],[7.56448,49.07939],[7.60087,49.0844],[7.63281,49.06982],[7.63453,49.05343],[7.67574,49.04637],[7.71351,49.05721],[7.75952,49.04645],[7.79866,49.06358],[7.86802,49.03212],[7.88347,49.04908],[7.90442,49.04804],[7.91713,49.0425],[7.93808,49.05856],[7.97998,49.03127],[8.06685,49.00501],[8.1096,48.98648],[8.23199,48.96976],[8.19846,48.9561],[8.13171,48.8827],[8.09243,48.80568],[8.06956,48.78823],[8.03022,48.78888],[8.0252,48.76961],[8.01195,48.76121],[7.96622,48.7598],[7.96443,48.72398],[7.88832,48.6602],[7.84526,48.64694],[7.82923,48.61581],[7.8061,48.58846],[7.80553,48.5075],[7.76925,48.49204],[7.76523,48.45313],[7.73099,48.38871],[7.74218,48.3255],[7.69486,48.30436],[7.67394,48.22889],[7.64479,48.20646],[7.62631,48.17903],[7.60059,48.158],[7.59759,48.13487],[7.57811,48.11908],[7.56937,48.03432],[7.61612,47.99416],[7.62231,47.96713],[7.58456,47.92905],[7.57942,47.89529],[7.5578,47.87995],[7.56227,47.84619],[7.53103,47.77925],[7.55032,47.73114],[7.51052,47.69787],[7.52083,47.65998],[7.56719,47.63456],[7.57054,47.61363],[7.59311,47.6001],[7.58608,47.57675],[7.56285,47.57659],[7.55884,47.56531],[7.49715,47.53828],[7.50064,47.53033],[7.52436,47.53377],[7.52798,47.51509],[7.50507,47.51503],[7.50736,47.49623],[7.47943,47.47929],[7.43456,47.49737],[7.42128,47.48205],[7.45721,47.47252],[7.39553,47.4334],[7.31488,47.44126],[7.24246,47.42126],[7.23185,47.44119],[7.20242,47.43735],[7.17298,47.44466],[7.182,47.48168],[7.20476,47.4927],[7.17011,47.49127],[7.12997,47.50098],[7.07441,47.48884],[7.02434,47.50547],[6.988,47.49427],[7.00042,47.4538],[6.94417,47.43377],[6.93733,47.40796],[6.91676,47.40446],[6.90853,47.38876],[6.88383,47.37307],[6.87836,47.35284],[6.97358,47.36368],[7.0221,47.37266],[7.04773,47.36177],[7.05963,47.33601],[7.01258,47.32182],[7.00399,47.30019],[6.9401,47.28487],[6.9524,47.24305],[6.84523,47.17323],[6.85616,47.15941],[6.74332,47.10786],[6.74154,47.09386],[6.72329,47.09107],[6.69502,47.06679],[6.71894,47.05003],[6.66499,47.02814],[6.63026,46.99501],[6.59103,46.9887],[6.51029,46.96493],[6.49548,46.97302],[6.43152,46.92549],[6.46546,46.8872],[6.45882,46.84745],[6.42941,46.80691],[6.46042,46.78705],[6.43369,46.75768],[6.39323,46.74712],[6.37547,46.72977],[6.2713,46.68003],[6.1124,46.57677],[6.1544,46.5457],[6.07498,46.46496],[6.08299,46.44337],[6.06628,46.41611],[6.17592,46.36804],[6.11675,46.31179],[6.10608,46.27828],[6.12287,46.24857],[6.10449,46.23799],[6.05864,46.24451],[6.04713,46.23108],[6.0345,46.23387],[5.99427,46.22221],[5.96502,46.19535],[5.99345,46.18275],[5.95321,46.12828],[6.04534,46.1463],[6.09277,46.15056],[6.14296,46.1453],[6.18662,46.16671],[6.18909,46.17862],[6.23523,46.20624],[6.28549,46.2177],[6.31103,46.24247],[6.29782,46.26173],[6.2768,46.25332],[6.26402,46.24302],[6.23476,46.27545],[6.25446,46.28976],[6.24944,46.30217],[6.21912,46.31143],[6.25198,46.36241],[6.33691,46.40369],[6.42459,46.41562],[6.51776,46.45595],[6.68351,46.45519],[6.82179,46.42604],[6.80637,46.39266],[6.80693,46.37757],[6.76904,46.3587],[6.80393,46.32086],[6.86629,46.27923],[6.84632,46.25126],[6.80712,46.21],[6.80774,46.18109],[6.78883,46.15902],[6.79463,46.13506],[6.89875,46.12404],[6.87172,46.04784],[6.89117,46.04404],[6.92846,46.06788],[7.02297,45.97974],[7.00938,45.96729],[7.03698,45.95485],[7.0455,45.92231],[7.01406,45.91463],[7.00459,45.89358],[6.99388,45.86868],[6.95977,45.8615],[6.93664,45.84667],[6.87643,45.83949],[6.87237,45.82525],[6.84358,45.83972],[6.82304,45.83841],[6.80524,45.81987],[6.81462,45.72032],[6.85639,45.68396],[6.90639,45.67637],[6.90765,45.65967],[6.93088,45.6468],[6.97184,45.65851],[6.99782,45.63783],[6.97922,45.58619],[6.99052,45.56999],[7.00457,45.50379],[7.05377,45.49142],[7.04667,45.47633],[7.1008,45.46783],[7.11159,45.43295],[7.18554,45.40385],[7.16163,45.3588],[7.113,45.32147],[7.13659,45.27578],[7.12884,45.24432],[7.11443,45.24978],[7.0674,45.20512],[7.05333,45.22623],[6.96065,45.20461],[6.95688,45.18026],[6.89268,45.16171],[6.89823,45.13911],[6.8489,45.1288],[6.82012,45.14738],[6.77211,45.16015],[6.74191,45.13695],[6.71171,45.14474],[6.68152,45.13708],[6.66233,45.11973],[6.62115,45.10626],[6.65743,45.07074],[6.67282,45.02096],[6.74314,45.01776],[6.7535,44.99901],[6.7364,44.98804],[6.76261,44.96414],[6.74912,44.90859],[6.8249,44.86761],[6.91166,44.84415],[6.9346,44.85929],[6.996,44.84135],[7.02443,44.82147],[7.00106,44.78781],[7.02131,44.76916],[7.03057,44.72515],[7.06557,44.71127],[7.0765,44.68107],[7.01624,44.68951],[6.97521,44.68232],[6.95065,44.65267],[6.97004,44.62302],[6.94849,44.61502],[6.92969,44.57378],[6.87836,44.54998],[6.8471,44.52782],[6.8766,44.48644],[6.9418,44.42939],[6.93406,44.42201],[6.89886,44.42248],[6.88887,44.36455],[6.91684,44.35472],[6.95005,44.30756],[6.99149,44.28006],[7.00024,44.24371],[7.03644,44.2231],[7.0714,44.23306],[7.12047,44.20851],[7.16129,44.20562],[7.18839,44.19813],[7.21823,44.16898],[7.23671,44.1737],[7.26617,44.14591],[7.33959,44.14374],[7.36282,44.11873],[7.42767,44.11938],[7.50627,44.14369],[7.57662,44.15223],[7.62774,44.15288],[7.63575,44.17626],[7.68633,44.17304],[7.66904,44.13264],[7.72083,44.07895],[7.69812,44.04163],[7.66442,44.02602],[7.66368,43.99068],[7.62486,43.96213],[7.56682,43.94347],[7.56122,43.89848],[7.52341,43.88836],[7.49109,43.86835],[7.51128,43.83005],[7.53148,43.78183],[7.61033,43.69135],[7.5,42.43575],[7.5,37.94803],[9.98889,37.93682],[12.36254,37.03947],[13.17828,35.88434],[30,33.03857],[30,36],[29.67334,36.12332],[29.58839,36.17786],[29.34707,36.21821],[28.51287,36.5339],[27.96671,36.53534],[27.84627,36.69365],[27.53398,36.61334],[27.3159,36.66434],[27.43454,36.86791],[27.22686,36.95396],[27.20893,37.14941],[26.95995,37.67625],[27.09334,37.70565],[27.13561,37.79187],[26.17643,38.2822],[26.32076,38.44329],[26.30455,38.66595],[26.73355,38.97176],[26.49005,39.40783],[26.08451,39.41639],[25.58284,40.11726],[26.03643,40.72824],[26.07509,40.729],[26.12188,40.74187],[26.1274,40.7716],[26.16586,40.81246],[26.20433,40.8263],[26.21312,40.84417],[26.21094,40.85997],[26.22304,40.86872],[26.22527,40.88622],[26.24896,40.88383],[26.26064,40.91645],[26.284,40.89033],[26.29912,40.90262],[26.27784,40.92641],[26.29055,40.93312],[26.30514,40.92817],[26.32205,40.94541],[26.36086,40.94146],[26.34868,40.96437],[26.32277,40.98003],[26.35175,40.99702],[26.367,41.02023],[26.33158,41.04385],[26.31264,41.07472],[26.33301,41.10811],[26.30783,41.11486],[26.33163,41.14701],[26.31331,41.17412],[26.32611,41.25532],[26.39841,41.25035],[26.47151,41.29348],[26.49792,41.32628],[26.54249,41.34029],[26.58769,41.32086],[26.62315,41.34183],[26.63771,41.37971],[26.6303,41.41965],[26.61273,41.42331],[26.61438,41.46407],[26.60285,41.48344],[26.59571,41.52501],[26.59214,41.56737],[26.59956,41.58097],[26.59245,41.61039],[26.56706,41.61312],[26.53068,41.62201],[26.48814,41.6521],[26.49366,41.66476],[26.43463,41.68545],[26.39275,41.68964],[26.35087,41.71434],[26.32515,41.74416],[26.37084,41.82314],[26.53944,41.82431],[26.55012,41.848],[26.56292,41.85717],[26.57572,41.87247],[26.57112,41.88673],[26.58113,41.90296],[26.5627,41.92727],[26.6253,41.97507],[26.75135,41.95914],[26.78677,41.9861],[26.82236,41.97377],[26.84499,41.97068],[26.86866,41.98649],[26.90058,41.98801],[26.93557,41.99922],[26.97056,42.00022],[26.9923,42.03372],[27.0264,42.05855],[27.01873,42.07913],[27.06433,42.09145],[27.10869,42.08383],[27.13932,42.06398],[27.20428,42.06247],[27.20929,42.09128],[27.23628,42.10582],[27.29849,42.09489],[27.34148,42.05951],[27.36977,42.05601],[27.39615,42.00824],[27.43886,41.97466],[27.49256,41.94924],[27.51056,41.95652],[27.5429,41.9152],[27.56975,41.9025],[27.57488,41.92177],[27.58551,41.93491],[27.73036,41.97957],[27.8333,41.94838],[27.81715,41.99087],[27.86142,42.00273],[27.91427,41.98153],[28.02544,41.97996],[30,42],[30,45],[29.6788,45.21198],[29.65648,45.25207],[29.66318,45.26244],[29.67811,45.27088],[29.66541,45.30613],[29.65546,45.33751],[29.59366,45.38676],[29.56621,45.40518],[29.43987,45.43278],[29.4289,45.444],[29.39389,45.43833],[29.34789,45.43844],[29.32901,45.45102],[29.28816,45.42699],[29.24869,45.43572],[29.21933,45.42177],[29.18681,45.41287],[29.17625,45.39819],[29.06502,45.36487],[28.96203,45.32961],[28.95328,45.30933],[28.95555,45.29363],[28.94959,45.27987],[28.92667,45.27939],[28.87071,45.3161],[28.84359,45.31611],[28.81415,45.33831],[28.77922,45.32383],[28.80746,45.31225],[28.79598,45.29244],[28.76415,45.29124],[28.74879,45.2823],[28.76203,45.2654],[28.78925,45.25791],[28.79175,45.24463],[28.78317,45.23787],[28.73889,45.23111],[28.71898,45.22146],[28.65101,45.24275],[28.56106,45.24664],[28.54596,45.25711],[28.33859,45.32557],[28.30632,45.37425],[28.28229,45.39399],[28.28744,45.43037],[28.26787,45.45711],[28.20814,45.46724],[28.18637,45.47152],[28.15911,45.51048],[28.16824,45.53835],[28.1554,45.56815],[28.12561,45.57293],[28.08757,45.60847],[28.11407,45.62095],[28.14058,45.6219],[28.16338,45.64109],[28.16668,45.70448],[28.14582,45.77375],[28.12334,45.78773],[28.10858,45.83689],[28.12128,45.87414],[28.11802,45.92339],[28.09167,46.01296],[28.11969,46.11302],[28.13398,46.18261],[28.11225,46.21598],[28.13996,46.27976],[28.20361,46.3114],[28.19085,46.34813],[28.2587,46.43492],[28.21587,46.51198],[28.24557,46.63226],[28.19561,46.73196],[28.16102,46.7865],[28.11545,46.82035],[28.08867,46.97678],[28.04172,47.02017],[27.9125,47.07183],[27.79976,47.14406],[27.79401,47.19691],[27.72784,47.29081],[27.60124,47.32002],[27.57077,47.45903],[27.53837,47.48161],[27.48399,47.48748],[27.41726,47.57404],[27.33405,47.6291],[27.25149,47.72029],[27.28506,47.72523],[27.28841,47.74679],[27.21668,47.8257],[27.24899,47.83589],[27.20925,47.84522],[27.19972,47.89902],[27.21845,47.91266],[27.25128,47.87877],[27.26214,47.89278],[27.2152,47.95022],[27.18947,47.94068],[27.14589,47.96338],[27.1653,47.99312],[27.10359,48.01167],[27.07823,48.05034],[27.02815,48.09268],[27.03229,48.12802],[26.99523,48.12852],[26.94584,48.17536],[26.8031,48.24522],[26.70156,48.25377],[26.63299,48.25866],[26.55606,48.22368],[26.47639,48.21432],[26.33627,48.1828],[26.32973,48.15812],[26.30945,48.14261],[26.28642,48.11519],[26.27439,48.07676],[26.21379,48.04987],[26.19686,47.99761],[26.10302,47.9766],[26.06366,47.98787],[25.95748,47.97181],[25.92304,47.97791],[25.88585,47.96194],[25.83894,47.97045],[25.81537,47.9523],[25.77532,47.94151],[25.6481,47.94893],[25.54055,47.93792],[25.30939,47.91219],[25.27325,47.89426],[25.23436,47.89106],[25.19134,47.82522],[25.11263,47.75384],[25.0422,47.73205],[24.88786,47.72477],[24.87169,47.75794],[24.84178,47.77633],[24.81769,47.81866],[24.76399,47.83689],[24.72345,47.84146],[24.66917,47.86446],[24.67047,47.89571],[24.6209,47.95085],[24.57923,47.96217],[24.50734,47.9551],[24.43545,47.96642],[24.39401,47.95185],[24.38004,47.92808],[24.23214,47.90058],[24.19802,47.91767],[24.11779,47.91424],[24.09964,47.93646],[24.06502,47.95131],[24.01347,47.96397],[23.96466,47.96191],[23.86705,47.93204],[23.81739,47.98267],[23.75994,47.99373],[23.66679,47.98641],[23.62171,48.00206],[23.52993,48.01772],[23.49609,47.96832],[23.42343,47.98856],[23.33429,48.01984],[23.33637,48.03706],[23.27527,48.05795],[23.29041,48.07586],[23.2685,48.10067],[23.24037,48.09474],[23.19303,48.09981],[23.16974,48.12279],[23.12317,48.08473],[23.1095,48.03909],[23.0821,48.00447],[23.02192,47.99268],[22.92546,48.01932],[22.91844,48.00507],[22.93964,47.99519],[22.94437,47.96509],[22.89702,47.95772],[22.83804,47.98713],[22.87932,48.0248],[22.87939,48.04961],[22.83024,48.1103],[22.74538,48.11591],[22.66877,48.09218],[22.59302,48.1055],[22.58674,48.14611],[22.56711,48.17192],[22.56672,48.19223],[22.48823,48.25331],[22.4583,48.23921],[22.43937,48.24705],[22.41219,48.25032],[22.37403,48.23895],[22.32654,48.30581],[22.32026,48.35073],[22.26786,48.36019],[22.24292,48.38425],[22.26339,48.41209],[22.22755,48.41167],[22.21081,48.42723],[22.18858,48.41454],[22.14986,48.40732],[22.13285,48.41294],[22.17902,48.6007],[22.22519,48.61915],[22.25213,48.64666],[22.30928,48.6778],[22.33897,48.68536],[22.3657,48.73323],[22.3408,48.75879],[22.38182,48.80065],[22.38035,48.86043],[22.42082,48.88671],[22.42833,48.9166],[22.42279,48.92934],[22.49415,48.99619],[22.51883,48.99543],[22.5435,49.00908],[22.55339,49.07729],[22.56191,49.087],[22.57894,49.09923],[22.61767,49.08374],[22.63717,49.06466],[22.65805,49.04738],[22.68716,49.0427],[22.71106,49.05042],[22.73221,49.05095],[22.75474,49.04247],[22.76628,49.0538],[22.823,49.02918],[22.84951,48.99916],[22.8888,49.00757],[22.86831,49.07108],[22.8945,49.09499],[22.79779,49.13553],[22.78623,49.15809],[22.7576,49.152],[22.73996,49.16208],[22.75728,49.18084],[22.74249,49.18607],[22.71841,49.16416],[22.70518,49.17531],[22.74414,49.21518],[22.71443,49.22365],[22.71743,49.24044],[22.73965,49.25006],[22.7489,49.31719],[22.74116,49.33286],[22.74716,49.35926],[22.71278,49.43563],[22.699,49.49146],[22.67491,49.49689],[22.65189,49.50674],[22.63985,49.52907],[22.67018,49.54311],[22.68678,49.57141],[22.78316,49.65826],[22.78615,49.67572],[22.8055,49.69422],[22.81936,49.69318],[22.84671,49.70989],[22.87681,49.74081],[22.89857,49.75471],[22.90189,49.76787],[22.93268,49.79345],[22.9558,49.80204],[22.97138,49.83769],[22.99519,49.84145],[23.03136,49.88152],[23.10438,49.93958],[23.11697,49.95521],[23.14748,49.97487],[23.2082,50.02985],[23.21796,50.04851],[23.23596,50.05306],[23.27593,50.08759],[23.28355,50.0978],[23.31041,50.11154],[23.37966,50.15975],[23.42665,50.18298],[23.46814,50.215],[23.57781,50.26489],[23.6093,50.29685],[23.6309,50.30484],[23.64427,50.3216],[23.68747,50.33233],[23.69725,50.37249],[23.72899,50.38987],[23.80072,50.40538],[23.84517,50.40613],[23.94043,50.41562],[23.995,50.41362],[24.00798,50.43541],[24.03469,50.44496],[24.07163,50.50077],[24.09197,50.56429],[24.09698,50.598],[24.09376,50.6352],[24.08185,50.64727],[24.08642,50.67152],[24.06534,50.67824],[24.07252,50.71795],[24.01821,50.72256],[24.01945,50.76842],[23.96713,50.77008],[23.96295,50.81605],[23.99996,50.83945],[24.10407,50.83504],[24.1505,50.8653],[24.05221,50.89611],[23.96766,50.95462],[23.95864,50.99149],[23.92215,51.0076],[23.90941,51.07711],[23.87469,51.07758],[23.84822,51.12634],[23.87178,51.13184],[23.85963,51.15975],[23.82709,51.16041],[23.8087,51.17898],[23.73897,51.21955],[23.72196,51.25831],[23.69396,51.28676],[23.6462,51.28867],[23.63506,51.32394],[23.69953,51.40504],[23.67958,51.43959],[23.65175,51.44575],[23.64745,51.45738],[23.67688,51.47347],[23.65727,51.48835],[23.6404,51.48613],[23.62606,51.50058],[23.62408,51.51683],[23.59837,51.53349],[23.58365,51.52965],[23.56268,51.54299],[23.57468,51.55551],[23.54548,51.60221],[23.54374,51.65231],[23.55537,51.66644],[23.55553,51.69636],[23.54471,51.72288],[23.5258,51.73677],[23.57241,51.76],[23.61494,51.77672],[23.63825,51.79853],[23.6255,51.81952],[23.60726,51.8371],[23.61472,51.85191],[23.60768,51.87304],[23.62947,51.87298],[23.63204,51.88988],[23.61486,51.91848],[23.6464,51.93334],[23.62984,51.94783],[23.65383,51.9644],[23.66683,51.96573],[23.6716,51.97891],[23.68735,51.9904],[23.6633,52.02059],[23.65128,52.05934],[23.642,52.0812],[23.60285,52.11477],[23.56954,52.11891],[23.55271,52.10955],[23.53758,52.12687],[23.50597,52.14419],[23.48938,52.15445],[23.48792,52.16678],[23.50568,52.17574],[23.45605,52.18691],[23.42822,52.1739],[23.40276,52.18157],[23.3979,52.19513],[23.28423,52.21958],[23.2667,52.21542],[23.2031,52.22791],[23.19327,52.2367],[23.19718,52.24884],[23.20795,52.26015],[23.20499,52.27482],[23.17857,52.28457],[23.21384,52.32886],[23.27934,52.39328],[23.3032,52.40474],[23.31535,52.42735],[23.36595,52.48178],[23.46714,52.55046],[23.54521,52.58228],[23.6425,52.60741],[23.71919,52.61586],[23.73271,52.60763],[23.76413,52.6151],[23.78181,52.62757],[23.87778,52.68004],[23.88941,52.67858],[23.90379,52.69211],[23.94078,52.71251],[23.93812,52.8124],[23.92235,52.82742],[23.92581,52.89884],[23.91828,52.90396],[23.91726,52.93798],[23.94645,52.9571],[23.93006,52.97633],[23.92873,53.019],[23.87522,53.07985],[23.8878,53.11507],[23.90312,53.1371],[23.91433,53.14512],[23.90906,53.17127],[23.86325,53.1968],[23.85677,53.22979],[23.81909,53.24479],[23.77729,53.31084],[23.7355,53.39659],[23.66246,53.51491],[23.62731,53.59612],[23.59216,53.68874],[23.58367,53.7086],[23.58616,53.73984],[23.54994,53.76532],[23.54501,53.79521],[23.54832,53.84781],[23.54379,53.85872],[23.52553,53.86477],[23.5107,53.91695],[23.51922,53.9578],[23.49245,53.97485],[23.48078,53.99675],[23.50344,54.01057],[23.51512,54.02117],[23.52337,54.0346],[23.52886,54.06416],[23.49866,54.11682],[23.48779,54.14798],[23.46043,54.17431],[23.42769,54.18035],[23.38259,54.22657],[23.36496,54.23104],[23.33563,54.25373],[23.25225,54.25737],[23.22498,54.26363],[23.2032,54.28754],[23.1567,54.2938],[23.15954,54.31136],[23.14316,54.3161],[23.09038,54.29791],[23.0379,54.31845],[23.06507,54.34381],[22.99402,54.36244],[23.01122,54.38375],[22.83892,54.40981],[22.81044,54.37167],[22.7902,54.36392],[22.68739,54.36149],[22.645,54.35426],[22.42545,54.34863],[22.31843,54.33941],[22.22513,54.343],[22.16214,54.33777],[21.9838,54.33414],[21.50076,54.32368],[21.44995,54.31781],[21.43279,54.32529],[21.36619,54.33117],[21.32568,54.3301],[21.29855,54.33278],[21.27693,54.32904],[20.99953,54.35362],[20.82239,54.36139],[20.7484,54.36697],[20.66892,54.37254],[20.63065,54.36611],[20.60061,54.37728],[20.4183,54.39002],[20.33763,54.40117],[19.64278,54.45307],[19.39575,56.23785]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!!!!:EK:**Armenia#ER:**Moldova#ES:**Estonia#EW:**Belarus#LY:**Lithuania#!!!UA...:**European Russia#UA1,2,3,5:south of 60º N – except for RA2 and UB2-UI2#UA4,6,7:south of 60º N and west of 50º E#UA2F,K:**Kaliningrad (also RA2 and UB2-UI2)#UA8,9:**Asiatic Russia, south of 60º N and west of 50º E#UN:**Kazakhstan, west of 50º E#UR:**Ukraine#YL:**Latvia#4J:**Azerbaijan#4L:**Georgia","itu_zone_number":29,"itu_zone_name_loc":[53,36]},"geometry":{"type":"Polygon","coordinates":[[[51.39511,37.88291],[48.88821,38.43925],[48.88278,38.43937],[48.88161,38.44212],[48.8807,38.44239],[48.87559,38.44089],[48.87143,38.44203],[48.86881,38.4437],[48.86631,38.44301],[48.86415,38.44353],[48.85624,38.44833],[48.85184,38.45018],[48.84744,38.44933],[48.84072,38.45073],[48.82783,38.45038],[48.82221,38.44894],[48.81947,38.45063],[48.81292,38.44841],[48.81052,38.44824],[48.80588,38.44941],[48.79969,38.45188],[48.79377,38.45172],[48.78921,38.44888],[48.78344,38.44828],[48.77681,38.44176],[48.7675,38.44109],[48.76044,38.43753],[48.75956,38.43343],[48.75203,38.4261],[48.74519,38.4177],[48.73836,38.41111],[48.72809,38.41118],[48.71918,38.40856],[48.71165,38.40809],[48.7053,38.4069],[48.69938,38.40496],[48.69415,38.40032],[48.68621,38.39989],[48.67896,38.39677],[48.67068,38.39499],[48.66171,38.3916],[48.65395,38.39762],[48.64618,38.40149],[48.64047,38.40052],[48.63751,38.39794],[48.62546,38.40288],[48.61614,38.40836],[48.60958,38.41411],[48.59958,38.41824],[48.60143,38.42372],[48.59709,38.42544],[48.59343,38.43077],[48.59046,38.43934],[48.59276,38.44302],[48.59025,38.44805],[48.59048,38.45522],[48.58053,38.45564],[48.58241,38.45896],[48.58154,38.46336],[48.57843,38.46247],[48.57358,38.47146],[48.56663,38.47977],[48.55753,38.48132],[48.55268,38.48713],[48.5492,38.49348],[48.54264,38.49714],[48.53539,38.50403],[48.5329,38.50464],[48.52629,38.51385],[48.52365,38.51565],[48.51895,38.51476],[48.51367,38.51836],[48.51354,38.52222],[48.50861,38.52662],[48.50801,38.53623],[48.50496,38.54104],[48.50535,38.54585],[48.50164,38.54924],[48.49586,38.55263],[48.49187,38.5519],[48.48527,38.55473],[48.47342,38.55234],[48.4687,38.55866],[48.46806,38.56102],[48.46261,38.56337],[48.46201,38.57184],[48.45518,38.58198],[48.45691,38.58653],[48.45383,38.58947],[48.45865,38.5967],[48.45763,38.60246],[48.45866,38.60661],[48.45505,38.60992],[48.44732,38.61002],[48.44234,38.61386],[48.43529,38.61181],[48.42703,38.61325],[48.4224,38.61148],[48.41776,38.60703],[48.40642,38.60243],[48.39062,38.60234],[48.38717,38.60593],[48.37888,38.60048],[48.37395,38.5989],[48.36832,38.5984],[48.36394,38.59577],[48.35612,38.5969],[48.35105,38.59588],[48.33963,38.6001],[48.33439,38.59949],[48.32743,38.60424],[48.32185,38.60256],[48.31756,38.60225],[48.31202,38.60627],[48.3058,38.61243],[48.30709,38.61939],[48.30458,38.62032],[48.3007,38.62931],[48.2975,38.63105],[48.2943,38.63654],[48.29581,38.64458],[48.29113,38.64833],[48.2883,38.64778],[48.28379,38.65152],[48.27929,38.65259],[48.27234,38.65606],[48.26607,38.65631],[48.25749,38.6584],[48.25328,38.6609],[48.25249,38.66501],[48.24999,38.67179],[48.2523,38.68073],[48.24936,38.69109],[48.25123,38.69448],[48.25737,38.69805],[48.26076,38.70109],[48.25986,38.71015],[48.24866,38.71975],[48.25167,38.72663],[48.24313,38.73114],[48.23871,38.73137],[48.23085,38.73186],[48.22369,38.73504],[48.22363,38.73923],[48.21738,38.737],[48.20695,38.74004],[48.2032,38.7428],[48.20083,38.74823],[48.19811,38.74885],[48.19196,38.75107],[48.19206,38.7562],[48.18839,38.75564],[48.17372,38.7615],[48.165,38.75984],[48.15166,38.76241],[48.14755,38.76626],[48.1407,38.76744],[48.13282,38.76942],[48.13043,38.76712],[48.12392,38.76803],[48.11741,38.77268],[48.11057,38.76915],[48.1049,38.77265],[48.10198,38.78096],[48.10988,38.78742],[48.09409,38.78907],[48.091,38.79216],[48.07898,38.79417],[48.07898,38.79833],[48.08173,38.80088],[48.07348,38.80123],[48.05941,38.80809],[48.05134,38.80992],[48.04765,38.81297],[48.0419,38.81495],[48.03503,38.83143],[48.0261,38.83379],[48.02129,38.83775],[48.01028,38.90261],[48.01402,38.9102],[48.01912,38.91085],[48.02391,38.9085],[48.02663,38.90028],[48.03126,38.89965],[48.03658,38.90115],[48.04379,38.90149],[48.05546,38.90752],[48.06231,38.91049],[48.06814,38.90983],[48.07243,38.91351],[48.07878,38.91612],[48.08032,38.92461],[48.07938,38.92859],[48.08118,38.93417],[48.08195,38.93828],[48.08615,38.94025],[48.08838,38.94687],[48.09979,38.94507],[48.10707,38.94272],[48.10722,38.94552],[48.11725,38.94692],[48.12728,38.94672],[48.13594,38.94785],[48.14391,38.94684],[48.14904,38.9479],[48.15623,38.9543],[48.1636,38.95443],[48.17029,38.9567],[48.17818,38.95483],[48.18881,38.95696],[48.20219,38.95375],[48.22411,38.95955],[48.2584,38.96695],[48.26999,38.9668],[48.27559,38.96844],[48.29011,38.97647],[48.29101,38.97974],[48.30091,38.98591],[48.30874,38.99101],[48.30799,38.99344],[48.31551,38.99786],[48.32852,39.01295],[48.33049,39.01855],[48.33388,39.02055],[48.33521,39.02628],[48.33915,39.03587],[48.337,39.03763],[48.33588,39.04353],[48.33307,39.04648],[48.33335,39.0493],[48.33219,39.05213],[48.32781,39.05263],[48.32704,39.05461],[48.32763,39.05833],[48.32385,39.06106],[48.31879,39.06949],[48.31956,39.07326],[48.31621,39.07859],[48.31766,39.08126],[48.31687,39.0852],[48.31187,39.09074],[48.30758,39.0905],[48.30491,39.09319],[48.30508,39.09895],[48.30748,39.10164],[48.30567,39.10282],[48.30712,39.10414],[48.30521,39.10665],[48.30536,39.10916],[48.30199,39.1125],[48.29724,39.11504],[48.28044,39.12171],[48.27715,39.12249],[48.27403,39.12273],[48.26951,39.12454],[48.26316,39.1237],[48.26007,39.12499],[48.25814,39.12415],[48.25673,39.1261],[48.25124,39.12594],[48.2473,39.1288],[48.24481,39.1286],[48.23614,39.1304],[48.23477,39.13333],[48.23169,39.13346],[48.2288,39.14038],[48.22177,39.14585],[48.21474,39.15878],[48.2199,39.16228],[48.21765,39.16449],[48.21446,39.16424],[48.21357,39.16772],[48.20422,39.17044],[48.20217,39.17403],[48.19875,39.17628],[48.19481,39.17581],[48.19255,39.17656],[48.19062,39.17945],[48.18609,39.18224],[48.17598,39.18635],[48.16984,39.18818],[48.16714,39.19067],[48.16329,39.19099],[48.162,39.19407],[48.15964,39.19521],[48.15883,39.19728],[48.15007,39.20064],[48.14289,39.20574],[48.14185,39.2085],[48.14322,39.21139],[48.14131,39.21479],[48.13481,39.21795],[48.13636,39.22039],[48.14015,39.2227],[48.1373,39.22407],[48.13753,39.22796],[48.13374,39.22953],[48.13544,39.23343],[48.13303,39.23521],[48.13479,39.23762],[48.13149,39.23936],[48.13278,39.24124],[48.12978,39.24419],[48.13141,39.24657],[48.13116,39.24961],[48.13434,39.25588],[48.1376,39.25863],[48.13693,39.26178],[48.13463,39.26327],[48.135,39.26621],[48.13375,39.26995],[48.13835,39.27199],[48.13863,39.27424],[48.14199,39.27742],[48.14625,39.27833],[48.14475,39.2817],[48.15081,39.28401],[48.15285,39.28782],[48.15421,39.29389],[48.16141,39.2958],[48.16604,39.30403],[48.17548,39.308],[48.18629,39.31304],[48.19607,39.32046],[48.21134,39.32788],[48.22609,39.32587],[48.23004,39.33495],[48.23329,39.33607],[48.2381,39.3356],[48.23981,39.33324],[48.24358,39.33088],[48.25422,39.33067],[48.26057,39.33534],[48.26765,39.33412],[48.26306,39.33927],[48.26842,39.34151],[48.2707,39.33896],[48.29481,39.35046],[48.31137,39.35825],[48.31085,39.36003],[48.32079,39.36305],[48.3261,39.36264],[48.34584,39.37072],[48.36093,39.36964],[48.36848,39.3813],[48.34146,39.41613],[48.03155,39.69159],[47.98583,39.70882],[47.97608,39.70769],[47.97999,39.70487],[47.97567,39.70153],[47.97458,39.68904],[47.96353,39.68923],[47.95798,39.68625],[47.95329,39.68512],[47.94928,39.68081],[47.94126,39.67961],[47.9417,39.67561],[47.91892,39.66277],[47.91743,39.65945],[47.90827,39.66183],[47.89292,39.66102],[47.88616,39.66683],[47.87871,39.67105],[47.8757,39.6668],[47.86487,39.66938],[47.84801,39.66028],[47.83901,39.66692],[47.83338,39.66592],[47.83427,39.66043],[47.82522,39.66025],[47.81755,39.65743],[47.81434,39.65275],[47.80861,39.65359],[47.80369,39.64819],[47.79988,39.64803],[47.79196,39.64998],[47.78937,39.64713],[47.78979,39.64068],[47.78815,39.63846],[47.77801,39.63745],[47.77534,39.63246],[47.76954,39.63022],[47.76424,39.62064],[47.76503,39.6185],[47.76443,39.61424],[47.75621,39.6099],[47.75176,39.61091],[47.74868,39.60557],[47.74252,39.60123],[47.73567,39.59584],[47.72338,39.59437],[47.70705,39.58455],[47.69758,39.58505],[47.68948,39.58766],[47.68664,39.58266],[47.6838,39.58242],[47.67881,39.57771],[47.67089,39.57887],[47.66797,39.57746],[47.66848,39.57341],[47.66332,39.57059],[47.65919,39.56856],[47.65713,39.56495],[47.6475,39.56116],[47.63307,39.5595],[47.62729,39.55406],[47.62082,39.55232],[47.61819,39.54408],[47.61293,39.54455],[47.60789,39.53967],[47.5992,39.53891],[47.59634,39.54079],[47.59349,39.54108],[47.58824,39.53909],[47.58608,39.53259],[47.5798,39.53191],[47.57239,39.52712],[47.56979,39.51968],[47.56522,39.51596],[47.55929,39.51171],[47.55085,39.51063],[47.54035,39.50558],[47.53687,39.50431],[47.53407,39.50093],[47.52779,39.49893],[47.51705,39.49868],[47.50287,39.4942],[47.49763,39.49474],[47.48894,39.49158],[47.48374,39.48581],[47.47446,39.4827],[47.46587,39.48172],[47.46037,39.47914],[47.44938,39.47922],[47.43804,39.47645],[47.42875,39.47262],[47.42667,39.46683],[47.41326,39.46843],[47.41105,39.46784],[47.40678,39.46406],[47.40099,39.46393],[47.39832,39.46844],[47.39025,39.46845],[47.38121,39.45613],[47.38206,39.44988],[47.37878,39.44364],[47.37086,39.44441],[47.37317,39.43658],[47.36655,39.42663],[47.35401,39.42635],[47.34915,39.41481],[47.34705,39.40751],[47.34185,39.40526],[47.33651,39.40731],[47.33391,39.40618],[47.33232,39.40419],[47.33347,39.39636],[47.32982,39.39252],[47.32805,39.39023],[47.32628,39.38423],[47.31767,39.38136],[47.31387,39.3753],[47.31312,39.3701],[47.30983,39.3689],[47.29829,39.37195],[47.29238,39.36478],[47.28119,39.36199],[47.2748,39.35761],[47.27027,39.3568],[47.26453,39.35136],[47.26086,39.34909],[47.25478,39.34524],[47.25007,39.34032],[47.24498,39.34084],[47.23439,39.33285],[47.23257,39.32885],[47.22662,39.32697],[47.22067,39.32297],[47.21472,39.31844],[47.21158,39.31822],[47.20638,39.31534],[47.19843,39.31831],[47.18911,39.31969],[47.18249,39.31579],[47.17746,39.31491],[47.17587,39.31084],[47.16289,39.31133],[47.15198,39.30545],[47.14856,39.30491],[47.14926,39.30118],[47.14652,39.29852],[47.13763,39.2969],[47.13152,39.2974],[47.12138,39.29211],[47.11193,39.28736],[47.11293,39.27997],[47.10502,39.27615],[47.09539,39.27658],[47.09693,39.27097],[47.09401,39.26696],[47.07787,39.26106],[47.07568,39.25367],[47.07349,39.25267],[47.06774,39.24375],[47.06104,39.24134],[47.05572,39.23334],[47.06138,39.22746],[47.05541,39.22015],[47.05494,39.21283],[47.06374,39.21243],[47.06429,39.20884],[47.06177,39.20641],[47.05993,39.20132],[47.05362,39.1965],[47.05281,39.19274],[47.04295,39.18629],[47.03653,39.18356],[47.03363,39.17917],[47.02318,39.17532],[47.02065,39.17254],[47.02155,39.16976],[47.01718,39.16687],[47.00089,39.16747],[46.99386,39.16407],[46.99172,39.16025],[46.9937,39.15429],[46.97655,39.14645],[46.97004,39.14518],[46.96215,39.14019],[46.958,39.14131],[46.94904,39.13923],[46.94692,39.14732],[46.93996,39.14983],[46.93574,39.15926],[46.92869,39.16055],[46.91992,39.15731],[46.90978,39.15727],[46.90353,39.16403],[46.88589,39.15478],[46.87982,39.15602],[46.87443,39.15406],[46.86499,39.15647],[46.86283,39.15142],[46.8593,39.14637],[46.86083,39.14],[46.84808,39.14004],[46.84182,39.13585],[46.83624,39.13592],[46.83398,39.12222],[46.8283,39.11332],[46.82036,39.11629],[46.81542,39.11053],[46.81295,39.10472],[46.80774,39.10477],[46.80624,39.09689],[46.79684,39.09246],[46.79332,39.08508],[46.77405,39.07979],[46.77401,39.07663],[46.76972,39.07279],[46.7668,39.06734],[46.76096,39.06337],[46.76096,39.05168],[46.75718,39.04902],[46.76302,39.0357],[46.75667,39.03317],[46.75486,39.0263],[46.751,39.0253],[46.74379,39.02558],[46.74122,39.02224],[46.7359,39.02051],[46.73418,39.01491],[46.72697,39.01598],[46.7153,39.01465],[46.71089,39.01806],[46.70682,39.01693],[46.69663,39.02001],[46.69339,39.01778],[46.69153,39.01182],[46.68575,39.00629],[46.68586,39.00003],[46.69178,38.99315],[46.68508,38.98791],[46.67306,38.98759],[46.668,38.98044],[46.66912,38.97595],[46.65547,38.96186],[46.65487,38.95524],[46.64027,38.95082],[46.6395,38.94407],[46.62568,38.9309],[46.60079,38.91372],[46.60268,38.90776],[46.58053,38.89699],[46.56388,38.88622],[46.55186,38.88285],[46.53435,38.86772],[46.52716,38.87178],[46.52272,38.88173],[46.52573,38.88782],[46.51569,38.88964],[46.50592,38.88579],[46.49932,38.88961],[46.49203,38.88916],[46.48851,38.88657],[46.48431,38.88558],[46.47489,38.88991],[46.46547,38.8889],[46.45468,38.89964],[46.4504,38.89701],[46.44337,38.89704],[46.44031,38.89445],[46.43415,38.89479],[46.42731,38.89192],[46.42564,38.88646],[46.42122,38.8826],[46.4165,38.88566],[46.41589,38.89246],[46.41147,38.89292],[46.40308,38.9001],[46.39331,38.90407],[46.37966,38.9066],[46.369,38.90976],[46.36451,38.91613],[46.35949,38.91486],[46.35515,38.91625],[46.33755,38.91691],[46.33668,38.91074],[46.32943,38.90879],[46.31668,38.90149],[46.30905,38.903],[46.3028,38.90665],[46.2999,38.90166],[46.29151,38.90095],[46.28323,38.90104],[46.27701,38.89632],[46.26942,38.89454],[46.26733,38.89169],[46.26683,38.88616],[46.26016,38.88385],[46.25039,38.87779],[46.2475,38.87334],[46.24134,38.87169],[46.23175,38.8679],[46.21874,38.86514],[46.21207,38.85334],[46.19372,38.85115],[46.18465,38.84042],[46.17427,38.8404],[46.16739,38.84306],[46.1605,38.84145],[46.15517,38.84373],[46.15053,38.84172],[46.14398,38.84251],[46.13675,38.84639],[46.12868,38.84645],[46.12952,38.85026],[46.11232,38.85908],[46.11298,38.86522],[46.10679,38.86642],[46.09442,38.86762],[46.07964,38.87163],[46.07217,38.87825],[46.06676,38.88753],[46.05894,38.88747],[46.054,38.88369],[46.05593,38.87885],[46.04066,38.87187],[46.03329,38.87506],[46.02661,38.8729],[46.01667,38.87365],[46.01017,38.87174],[45.98485,38.87744],[45.98155,38.8815],[45.97413,38.88236],[45.96479,38.88995],[45.9564,38.88911],[45.94442,38.89597],[45.93294,38.88871],[45.92755,38.87893],[45.91872,38.87236],[45.9135,38.87436],[45.90761,38.87369],[45.90405,38.87769],[45.89294,38.87634],[45.89007,38.88461],[45.88167,38.88631],[45.87602,38.89015],[45.87216,38.88927],[45.86556,38.88945],[45.8599,38.89516],[45.86339,38.90089],[45.85485,38.90689],[45.84563,38.91022],[45.83836,38.90925],[45.83541,38.90475],[45.82673,38.90437],[45.8153,38.90506],[45.81037,38.91112],[45.79503,38.92163],[45.78994,38.92194],[45.78072,38.91691],[45.77665,38.92577],[45.7719,38.92715],[45.76716,38.9257],[45.76035,38.92424],[45.75224,38.92935],[45.7367,38.92728],[45.73034,38.93061],[45.7293,38.92873],[45.72583,38.93566],[45.7189,38.93455],[45.70984,38.94461],[45.6855,38.94903],[45.67901,38.94624],[45.65947,38.95159],[45.64696,38.95127],[45.64371,38.94586],[45.63219,38.94469],[45.6162,38.94271],[45.61355,38.94952],[45.6146,38.9553],[45.61256,38.95787],[45.6078,38.95607],[45.59974,38.96134],[45.59271,38.96394],[45.58722,38.96568],[45.58413,38.96929],[45.58372,38.9763],[45.58022,38.97851],[45.5684,38.97572],[45.56602,38.96879],[45.55796,38.96852],[45.55127,38.96399],[45.53766,38.96618],[45.53425,38.96979],[45.52812,38.9706],[45.50762,38.97864],[45.49752,38.98296],[45.49222,38.98363],[45.48692,38.98591],[45.47922,38.98552],[45.47427,38.98832],[45.46554,38.98993],[45.45681,38.99047],[45.44896,38.99476],[45.43817,39.00495],[45.43862,39.01354],[45.44331,39.02131],[45.44937,39.02854],[45.45085,39.03953],[45.45674,39.04716],[45.45439,39.05266],[45.44921,39.05537],[45.44421,39.05192],[45.4399,39.05061],[45.43365,39.05284],[45.43186,39.05853],[45.42801,39.06102],[45.4236,39.06138],[45.40929,39.07117],[45.40253,39.07323],[45.39989,39.08009],[45.40308,39.09206],[45.39372,39.10416],[45.33699,39.16688],[45.32936,39.16783],[45.30868,39.19379],[45.28598,39.1796],[45.22242,39.19521],[45.22153,39.2079],[45.21101,39.20143],[45.18553,39.20312],[45.18755,39.21647],[45.18067,39.22287],[45.17242,39.22288],[45.17207,39.21876],[45.17447,39.21092],[45.16622,39.21398],[45.15009,39.20514],[45.14699,39.20535],[45.15098,39.21791],[45.14845,39.23101],[45.15094,39.24178],[45.14691,39.25095],[45.14494,39.26491],[45.13867,39.26691],[45.13378,39.27156],[45.14103,39.27894],[45.14142,39.28313],[45.13305,39.28785],[45.12125,39.28619],[45.11782,39.28783],[45.12838,39.29648],[45.12452,39.30407],[45.10787,39.30967],[45.10341,39.32302],[45.10322,39.32969],[45.10028,39.33476],[45.08959,39.33004],[45.08058,39.33336],[45.08702,39.34782],[45.08728,39.35166],[45.07501,39.35942],[45.05862,39.36346],[45.05781,39.36787],[45.05836,39.38236],[45.04438,39.38004],[45.04011,39.3915],[45.0355,39.39049],[45.02952,39.3932],[45.01805,39.40439],[45.00923,39.40567],[45.00464,39.41034],[44.99752,39.4096],[44.99006,39.41603],[44.975,39.41951],[44.96543,39.42246],[44.96635,39.43042],[44.96201,39.43812],[44.96316,39.44369],[44.97462,39.44529],[44.97693,39.45169],[44.9614,39.45067],[44.94861,39.45229],[44.94642,39.45396],[44.94629,39.45988],[44.94192,39.46323],[44.94758,39.47258],[44.93898,39.47805],[44.93724,39.48247],[44.94683,39.48184],[44.95024,39.48493],[44.93887,39.48661],[44.94005,39.4893],[44.94327,39.49117],[44.94923,39.48985],[44.95153,39.49464],[44.94312,39.50134],[44.93797,39.51315],[44.92725,39.51142],[44.92319,39.51708],[44.91364,39.52009],[44.90821,39.52733],[44.91046,39.531],[44.91408,39.53096],[44.9177,39.53303],[44.91652,39.53617],[44.90536,39.54118],[44.91163,39.54925],[44.91034,39.55308],[44.90802,39.55823],[44.91601,39.56762],[44.90571,39.57661],[44.88717,39.58242],[44.9009,39.60066],[44.89902,39.6043],[44.89438,39.60634],[44.89129,39.59721],[44.87877,39.59387],[44.87243,39.59528],[44.87228,39.59961],[44.88173,39.60976],[44.87935,39.61418],[44.86942,39.61649],[44.86619,39.61297],[44.8657,39.60787],[44.86658,39.60383],[44.86128,39.6019],[44.85394,39.60236],[44.8459,39.60864],[44.83718,39.6128],[44.82592,39.61134],[44.81744,39.61467],[44.8069,39.62859],[44.80906,39.63907],[44.81563,39.6414],[44.81858,39.64997],[44.8174,39.6543],[44.81353,39.65702],[44.80622,39.65498],[44.79848,39.65724],[44.79941,39.6618],[44.80309,39.66479],[44.80746,39.66988],[44.80633,39.67339],[44.79518,39.66822],[44.8031,39.68442],[44.78783,39.68368],[44.78586,39.68819],[44.78733,39.69165],[44.7834,39.69425],[44.7781,39.70267],[44.77674,39.70351],[44.77195,39.7017],[44.76304,39.70338],[44.76597,39.70765],[44.77028,39.71193],[44.76789,39.71625],[44.75597,39.71292],[44.75022,39.71541],[44.74887,39.72359],[44.74409,39.73124],[44.74482,39.74338],[44.738,39.74522],[44.73544,39.74502],[44.73081,39.7406],[44.72431,39.74125],[44.7156,39.75418],[44.71101,39.76974],[44.69921,39.77291],[44.69085,39.76973],[44.68598,39.77443],[44.68729,39.78229],[44.69477,39.78646],[44.69746,39.79062],[44.69321,39.79526],[44.68415,39.79726],[44.67952,39.78734],[44.66871,39.79191],[44.65721,39.79069],[44.64949,39.80068],[44.63421,39.80592],[44.62924,39.81248],[44.62236,39.81335],[44.61548,39.81264],[44.61134,39.81491],[44.62091,39.82103],[44.61877,39.82589],[44.61379,39.82833],[44.60195,39.82181],[44.59221,39.82795],[44.58865,39.8341],[44.59389,39.84165],[44.59617,39.84885],[44.59226,39.85815],[44.58239,39.86254],[44.57609,39.86255],[44.56498,39.86995],[44.55202,39.88526],[44.55314,39.9011],[44.55083,39.90587],[44.5445,39.907],[44.53541,39.92129],[44.52173,39.92157],[44.5154,39.92909],[44.50675,39.93259],[44.5029,39.93661],[44.50175,39.94448],[44.4951,39.94866],[44.49326,39.95732],[44.48044,39.9665],[44.46749,39.97197],[44.45758,39.9705],[44.45386,39.97165],[44.45191,39.97808],[44.44613,39.98274],[44.4376,39.98424],[44.42879,39.99093],[44.41655,40.00288],[44.40945,40.0047],[44.40235,40.00284],[44.39503,40.00596],[44.38427,40.00424],[44.37579,40.0089],[44.35926,40.01895],[44.35396,40.02679],[44.34101,40.02698],[44.33822,40.03105],[44.33559,40.03249],[44.32965,40.03134],[44.32405,40.03191],[44.31853,40.03856],[44.30965,40.0397],[44.30057,40.03698],[44.29854,40.03741],[44.29507,40.04329],[44.29195,40.04364],[44.28565,40.04351],[44.27969,40.04909],[44.27333,40.04957],[44.26594,40.04795],[44.25597,40.04774],[44.25193,40.04914],[44.24462,40.04726],[44.23942,40.04774],[44.23405,40.04731],[44.23171,40.04489],[44.22885,40.04287],[44.22595,40.04403],[44.2227,40.04441],[44.21832,40.04024],[44.21784,40.0373],[44.21548,40.03528],[44.21191,40.03547],[44.20634,40.03723],[44.20129,40.03978],[44.1977,40.04027],[44.19311,40.04007],[44.19091,40.03909],[44.1893,40.03572],[44.18872,40.03169],[44.18635,40.03008],[44.17976,40.03044],[44.17398,40.02819],[44.17058,40.02916],[44.167,40.03106],[44.15424,40.03149],[44.14233,40.0327],[44.13852,40.03228],[44.13557,40.03094],[44.13172,40.02971],[44.12949,40.03032],[44.12332,40.03423],[44.11973,40.03493],[44.11528,40.0336],[44.10808,40.02964],[44.08253,40.03361],[44.04945,40.02986],[44.01637,40.02295],[43.99497,40.0313],[43.97877,40.02916],[43.97342,40.0202],[43.96669,40.01861],[43.93298,40.02353],[43.89377,40.02318],[43.85526,40.04125],[43.83459,40.04774],[43.82482,40.04819],[43.82329,40.05915],[43.80939,40.06118],[43.79421,40.06902],[43.78589,40.06846],[43.76054,40.08288],[43.74965,40.07913],[43.74131,40.08283],[43.73022,40.07811],[43.71079,40.08129],[43.69252,40.09606],[43.67658,40.09722],[43.67217,40.10901],[43.65648,40.11158],[43.65123,40.12883],[43.65011,40.14503],[43.66958,40.15703],[43.71377,40.16273],[43.71351,40.17171],[43.70088,40.17859],[43.69623,40.19026],[43.66426,40.21202],[43.65427,40.22643],[43.66543,40.2294],[43.68072,40.22504],[43.67987,40.25972],[43.66391,40.27029],[43.65227,40.26856],[43.63311,40.28081],[43.63593,40.29202],[43.62841,40.29711],[43.62671,40.30436],[43.62089,40.30952],[43.59094,40.346],[43.5963,40.35532],[43.59754,40.36465],[43.60414,40.37388],[43.60662,40.38521],[43.61734,40.39026],[43.61955,40.39565],[43.61352,40.4136],[43.61963,40.4174],[43.60793,40.43522],[43.58663,40.44675],[43.57013,40.45934],[43.56119,40.45884],[43.54677,40.46879],[43.544,40.47719],[43.55635,40.48244],[43.55771,40.49395],[43.56869,40.49607],[43.57417,40.50445],[43.58789,40.50659],[43.59996,40.51146],[43.60447,40.5158],[43.61002,40.51519],[43.62,40.52506],[43.62739,40.52348],[43.6238,40.51928],[43.63366,40.51917],[43.63955,40.52383],[43.63742,40.52709],[43.63255,40.52878],[43.6276,40.53685],[43.63381,40.54023],[43.63623,40.53436],[43.64139,40.53683],[43.64364,40.53291],[43.64579,40.53094],[43.65001,40.53055],[43.65107,40.53784],[43.6453,40.54452],[43.64262,40.55406],[43.64174,40.55684],[43.64359,40.56171],[43.65789,40.56502],[43.66452,40.56433],[43.67397,40.56815],[43.66831,40.57249],[43.67142,40.57699],[43.67762,40.57714],[43.68455,40.58473],[43.68466,40.5926],[43.70411,40.61097],[43.70731,40.6182],[43.70777,40.62542],[43.7144,40.63187],[43.72104,40.63467],[43.71765,40.64255],[43.71908,40.6546],[43.73046,40.66366],[43.73478,40.66115],[43.73591,40.66708],[43.74196,40.66692],[43.74459,40.66989],[43.74067,40.67602],[43.74704,40.67434],[43.7493,40.67735],[43.7458,40.68276],[43.73922,40.68948],[43.74665,40.69927],[43.7459,40.70519],[43.74308,40.70382],[43.74157,40.70837],[43.73718,40.71278],[43.74008,40.71848],[43.74709,40.72523],[43.74687,40.73428],[43.74504,40.73672],[43.74458,40.74046],[43.74299,40.74157],[43.74276,40.74347],[43.74076,40.74545],[43.74048,40.74874],[43.73888,40.74933],[43.73637,40.7565],[43.73518,40.75752],[43.73537,40.75907],[43.73128,40.7619],[43.73202,40.76289],[43.73007,40.76537],[43.72995,40.77117],[43.728,40.77406],[43.72606,40.77566],[43.72354,40.78262],[43.72498,40.78402],[43.72437,40.78671],[43.72245,40.78715],[43.72225,40.78928],[43.72308,40.79037],[43.72185,40.79228],[43.72027,40.79289],[43.71885,40.79618],[43.71667,40.80329],[43.71364,40.80429],[43.7099,40.81051],[43.71061,40.81231],[43.70844,40.81436],[43.70627,40.8203],[43.69912,40.82767],[43.69574,40.82906],[43.69406,40.83107],[43.69238,40.83464],[43.68867,40.83528],[43.67885,40.84487],[43.67726,40.84719],[43.68079,40.85682],[43.68053,40.86593],[43.67766,40.86887],[43.67582,40.8718],[43.6756,40.87346],[43.6764,40.87539],[43.67527,40.87898],[43.67483,40.88244],[43.6737,40.88642],[43.67673,40.89404],[43.67696,40.89578],[43.67638,40.89796],[43.68112,40.90261],[43.68071,40.90388],[43.6793,40.90502],[43.67651,40.90876],[43.67231,40.91001],[43.66939,40.91173],[43.66958,40.91346],[43.67079,40.91624],[43.67166,40.91902],[43.67356,40.92024],[43.67358,40.92163],[43.67154,40.92304],[43.67425,40.9279],[43.67626,40.93018],[43.67181,40.9367],[43.6363,40.95978],[43.59873,40.9826],[43.59241,40.98572],[43.58598,40.98663],[43.58225,40.98968],[43.57953,40.9912],[43.57818,40.99324],[43.57413,40.99336],[43.5718,40.99296],[43.56827,40.9934],[43.56439,40.99267],[43.5616,40.99383],[43.55674,40.99448],[43.55562,40.99577],[43.55364,40.99602],[43.55166,40.99783],[43.54545,40.99935],[43.54215,41.00141],[43.53988,41.00372],[43.53672,41.00549],[43.52456,41.01267],[43.51672,41.01484],[43.50688,41.01194],[43.49894,41.01518],[43.4948,41.01577],[43.49221,41.01632],[43.48783,41.01647],[43.48448,41.01609],[43.4683,41.03112],[43.46922,41.04699],[43.47152,41.06725],[43.46886,41.07002],[43.46493,41.07181],[43.46066,41.07282],[43.45865,41.07459],[43.45835,41.07966],[43.457,41.08233],[43.45667,41.08473],[43.4526,41.08669],[43.44989,41.08711],[43.44749,41.09233],[43.44715,41.09467],[43.44766,41.09727],[43.44715,41.09936],[43.45281,41.10652],[43.45642,41.10929],[43.45754,41.11262],[43.459,41.11983],[43.46638,41.12183],[43.47411,41.12306],[43.46159,41.15197],[43.44872,41.17597],[43.4295,41.18207],[43.41164,41.18662],[43.40574,41.19014],[43.39984,41.19289],[43.38461,41.19993],[43.37577,41.20318],[43.3701,41.20217],[43.36691,41.20344],[43.35993,41.20174],[43.35526,41.20144],[43.35174,41.20265],[43.34217,41.20209],[43.33775,41.20076],[43.33028,41.20093],[43.32882,41.20015],[43.32702,41.19859],[43.32238,41.19573],[43.31749,41.19469],[43.315,41.19364],[43.31028,41.19157],[43.30775,41.19092],[43.30522,41.18949],[43.30235,41.19031],[43.29914,41.18931],[43.29374,41.18965],[43.28878,41.18696],[43.2823,41.18674],[43.27222,41.18356],[43.26351,41.1796],[43.25634,41.17894],[43.25344,41.17757],[43.24942,41.17715],[43.24677,41.17724],[43.24439,41.17639],[43.24201,41.17451],[43.23945,41.17521],[43.2356,41.17582],[43.23312,41.17566],[43.23076,41.17308],[43.22908,41.17465],[43.23273,41.17763],[43.23775,41.18371],[43.23138,41.191],[43.2142,41.21564],[43.20233,41.23163],[43.20091,41.23453],[43.1988,41.24621],[43.19459,41.25381],[43.19193,41.253],[43.18339,41.25428],[43.17554,41.25451],[43.17409,41.25248],[43.16748,41.24941],[43.1632,41.24972],[43.15609,41.24626],[43.15253,41.24544],[43.14989,41.24683],[43.14725,41.2459],[43.1449,41.24661],[43.14014,41.25041],[43.13508,41.25259],[43.13226,41.25207],[43.12772,41.25309],[43.13307,41.25703],[43.13814,41.25783],[43.14051,41.25682],[43.14135,41.25747],[43.14057,41.25857],[43.1415,41.25967],[43.14721,41.262],[43.14949,41.26149],[43.15211,41.26227],[43.15607,41.26771],[43.16028,41.26843],[43.16346,41.27018],[43.16879,41.27266],[43.17398,41.27145],[43.17611,41.27317],[43.17718,41.27312],[43.17893,41.2723],[43.18072,41.27324],[43.18,41.27573],[43.18472,41.27713],[43.18528,41.27925],[43.18687,41.2806],[43.19035,41.28227],[43.1928,41.28446],[43.1977,41.28574],[43.20019,41.2846],[43.20268,41.28528],[43.20355,41.28687],[43.20741,41.28768],[43.20956,41.28899],[43.21317,41.28956],[43.21147,41.29764],[43.21543,41.29884],[43.2157,41.30034],[43.21274,41.30419],[43.2139,41.30572],[43.2124,41.30639],[43.20512,41.30545],[43.20288,41.30605],[43.20097,41.30794],[43.19819,41.30862],[43.18897,41.3044],[43.18313,41.30452],[43.18074,41.30619],[43.16599,41.309],[43.16307,41.31092],[43.16119,41.31465],[43.1588,41.31566],[43.15603,41.31634],[43.15086,41.31613],[43.14292,41.31711],[43.13665,41.31857],[43.13269,41.32049],[43.12711,41.32712],[43.12565,41.32963],[43.11254,41.34297],[43.11249,41.3455],[43.10936,41.34958],[43.09526,41.35717],[43.09131,41.35859],[43.08598,41.35872],[43.07877,41.36206],[43.07705,41.36245],[43.07498,41.36464],[43.072,41.36469],[43.06741,41.36497],[43.06489,41.36602],[43.06063,41.36637],[43.05875,41.36965],[43.05515,41.37292],[43.04572,41.37594],[43.04075,41.3769],[43.0351,41.3725],[43.03151,41.37093],[43.01853,41.37557],[43.02168,41.37917],[43.02026,41.38127],[43.01781,41.38543],[43.01428,41.38937],[43.01099,41.39623],[43.0065,41.39755],[43.0039,41.40659],[42.99595,41.40884],[42.98954,41.41135],[42.98788,41.41232],[42.98794,41.41458],[42.99012,41.41601],[42.99,41.42402],[42.97716,41.42784],[42.97221,41.43062],[42.97042,41.43072],[42.96692,41.43391],[42.96805,41.43749],[42.97072,41.44171],[42.96792,41.45117],[42.96048,41.45183],[42.95333,41.45383],[42.9503,41.45532],[42.94332,41.45715],[42.936,41.46461],[42.93186,41.46384],[42.92901,41.46674],[42.93183,41.46899],[42.92957,41.47131],[42.92817,41.47094],[42.92368,41.47365],[42.92054,41.47369],[42.91287,41.47632],[42.91076,41.47616],[42.90695,41.4775],[42.90555,41.47677],[42.89892,41.47902],[42.89887,41.48113],[42.89746,41.48349],[42.89668,41.48693],[42.89891,41.4879],[42.89889,41.49008],[42.89921,41.49728],[42.90108,41.49973],[42.90054,41.50089],[42.89839,41.50097],[42.89179,41.50285],[42.88622,41.50242],[42.88373,41.50327],[42.87706,41.50333],[42.8666,41.49642],[42.86523,41.49425],[42.86283,41.49208],[42.86281,41.48926],[42.86073,41.48077],[42.85863,41.47898],[42.85752,41.47694],[42.85882,41.47555],[42.8574,41.47292],[42.85618,41.4716],[42.85118,41.47003],[42.84964,41.47342],[42.84638,41.47294],[42.84054,41.47556],[42.83848,41.47663],[42.83608,41.47782],[42.8323,41.47789],[42.82844,41.48063],[42.82389,41.48619],[42.82028,41.48883],[42.81295,41.49141],[42.80904,41.49348],[42.80575,41.49332],[42.80314,41.4947],[42.80102,41.4967],[42.80192,41.49966],[42.80163,41.50064],[42.80133,41.50265],[42.80349,41.50435],[42.80439,41.50673],[42.8044,41.5085],[42.8008,41.51208],[42.79652,41.51618],[42.80176,41.52381],[42.80439,41.52686],[42.80539,41.52865],[42.8057,41.53043],[42.80701,41.53221],[42.80937,41.53314],[42.81139,41.53509],[42.81326,41.53542],[42.81479,41.5373],[42.81715,41.53925],[42.81734,41.54196],[42.81924,41.54467],[42.81824,41.54881],[42.81899,41.55297],[42.82152,41.55641],[42.82387,41.55638],[42.82677,41.55765],[42.82829,41.55712],[42.83002,41.55881],[42.83003,41.56261],[42.83107,41.56461],[42.834,41.56718],[42.83247,41.56951],[42.83489,41.57132],[42.83507,41.57358],[42.83319,41.57481],[42.83407,41.57701],[42.83374,41.5805],[42.83599,41.58475],[42.83299,41.58554],[42.82964,41.58734],[42.82046,41.58761],[42.81574,41.58865],[42.79292,41.58856],[42.79292,41.58656],[42.78709,41.58555],[42.78245,41.58325],[42.78181,41.58004],[42.7822,41.57735],[42.78057,41.57684],[42.77825,41.57703],[42.77558,41.57824],[42.77356,41.58007],[42.77223,41.58266],[42.76888,41.58503],[42.76268,41.58629],[42.75219,41.58536],[42.74939,41.58815],[42.74782,41.58865],[42.74694,41.59017],[42.74032,41.596],[42.736,41.59654],[42.73099,41.59607],[42.72221,41.59533],[42.71239,41.59537],[42.70546,41.59839],[42.69854,41.60064],[42.69173,41.59984],[42.68768,41.59903],[42.68369,41.59972],[42.65924,41.59264],[42.62543,41.58798],[42.60107,41.58508],[42.59125,41.57354],[42.57593,41.56534],[42.57617,41.56369],[42.57366,41.55792],[42.57612,41.55472],[42.57959,41.54554],[42.58065,41.54304],[42.57638,41.53959],[42.57476,41.53555],[42.57069,41.53378],[42.56937,41.53305],[42.56819,41.52844],[42.56392,41.52588],[42.56729,41.52069],[42.56757,41.51755],[42.57002,41.51509],[42.57248,41.51133],[42.57259,41.50974],[42.57041,41.50797],[42.56572,41.50837],[42.56068,41.50722],[42.55719,41.50434],[42.55644,41.49992],[42.55358,41.49828],[42.54933,41.49876],[42.54508,41.49321],[42.54239,41.49291],[42.53729,41.49133],[42.53225,41.49125],[42.52836,41.48353],[42.52549,41.47864],[42.51805,41.47657],[42.51455,41.47411],[42.51208,41.47165],[42.51299,41.46543],[42.51561,41.4628],[42.5164,41.46013],[42.51831,41.45915],[42.51668,41.45801],[42.51677,41.4561],[42.52142,41.45303],[42.5204,41.44933],[42.52092,41.44667],[42.52453,41.44401],[42.52333,41.44212],[42.52136,41.43808],[42.52007,41.43636],[42.51182,41.44003],[42.50803,41.44023],[42.50663,41.44165],[42.5055,41.44081],[42.503,41.44049],[42.49484,41.44519],[42.49216,41.44552],[42.49111,41.44423],[42.48937,41.44038],[42.48661,41.44122],[42.48179,41.43768],[42.47903,41.43865],[42.47611,41.43862],[42.4719,41.43564],[42.46941,41.43575],[42.46545,41.43727],[42.46183,41.43646],[42.45959,41.43811],[42.457,41.43924],[42.45146,41.4386],[42.44853,41.4386],[42.44792,41.4404],[42.44594,41.44169],[42.4394,41.4417],[42.43766,41.44376],[42.4342,41.44402],[42.42905,41.44807],[42.4239,41.45316],[42.41566,41.4587],[42.41188,41.45831],[42.40587,41.46353],[42.39986,41.46617],[42.3923,41.46592],[42.38543,41.46361],[42.38302,41.46749],[42.37151,41.46454],[42.35992,41.46615],[42.355,41.46934],[42.35007,41.47047],[42.34125,41.47146],[42.32979,41.46828],[42.32609,41.47189],[42.32012,41.47705],[42.31484,41.48066],[42.30427,41.48247],[42.29315,41.48955],[42.29125,41.48819],[42.28385,41.49351],[42.27729,41.49284],[42.27245,41.49397],[42.26761,41.49149],[42.26203,41.49144],[42.25644,41.49498],[42.2494,41.49436],[42.24158,41.49392],[42.23596,41.49704],[42.22896,41.4981],[42.22595,41.49869],[42.21971,41.49562],[42.21384,41.49615],[42.21071,41.49461],[42.20852,41.49157],[42.20285,41.49128],[42.19933,41.49809],[42.19444,41.50746],[42.18654,41.50936],[42.17829,41.51461],[42.1666,41.51144],[42.15831,41.50663],[42.14762,41.50567],[42.13654,41.50787],[42.13051,41.50502],[42.12173,41.50628],[42.11859,41.50879],[42.11153,41.51185],[42.10653,41.50874],[42.10221,41.50665],[42.09731,41.50947],[42.0924,41.51023],[42.08506,41.51033],[42.06765,41.50421],[42.06239,41.50064],[42.05632,41.49834],[42.05162,41.49809],[42.04668,41.4946],[42.04078,41.4935],[42.03144,41.49471],[42.0286,41.49968],[42.01562,41.50201],[42.00607,41.50229],[42.00167,41.50488],[41.9952,41.50439],[41.99311,41.50637],[41.99033,41.51247],[41.99232,41.51439],[41.9915,41.51668],[41.98794,41.51871],[41.98506,41.52229],[41.98012,41.52291],[41.9738,41.52147],[41.96255,41.52477],[41.95484,41.52328],[41.95287,41.52101],[41.94942,41.51843],[41.94752,41.51727],[41.94587,41.51736],[41.94354,41.51642],[41.94024,41.51402],[41.94038,41.51297],[41.93859,41.51073],[41.93336,41.50872],[41.92847,41.50849],[41.92445,41.50697],[41.91754,41.50119],[41.91487,41.50102],[41.91357,41.49982],[41.91064,41.49896],[41.91009,41.4948],[41.90714,41.49212],[41.89973,41.48853],[41.89881,41.48613],[41.89754,41.48397],[41.89529,41.48179],[41.89235,41.47987],[41.89665,41.47608],[41.89515,41.47487],[41.89314,41.47442],[41.88992,41.47276],[41.88756,41.47187],[41.88696,41.4697],[41.88413,41.46753],[41.88345,41.46568],[41.88362,41.46358],[41.88156,41.46032],[41.87814,41.45886],[41.87661,41.45868],[41.87251,41.45705],[41.87033,41.45687],[41.86702,41.45501],[41.86406,41.45431],[41.85913,41.45251],[41.85677,41.45174],[41.85482,41.45081],[41.85287,41.44937],[41.84765,41.44873],[41.84656,41.44822],[41.84665,41.44418],[41.84563,41.44098],[41.83996,41.43799],[41.83362,41.43565],[41.83248,41.43519],[41.83014,41.43524],[41.82677,41.43362],[41.82349,41.43097],[41.82249,41.43245],[41.81821,41.4328],[41.81461,41.43392],[41.81223,41.43668],[41.81226,41.43996],[41.80782,41.44324],[41.80578,41.44652],[41.80117,41.44793],[41.79518,41.44728],[41.79057,41.44874],[41.78871,41.4502],[41.78936,41.45211],[41.78898,41.45427],[41.78718,41.45578],[41.78738,41.46032],[41.786,41.46101],[41.78393,41.46143],[41.78151,41.4625],[41.77567,41.46356],[41.77425,41.46063],[41.77008,41.46207],[41.769,41.46376],[41.76537,41.46461],[41.75693,41.46751],[41.75551,41.46972],[41.7534,41.47038],[41.7506,41.47002],[41.74671,41.47112],[41.74316,41.47068],[41.73951,41.47212],[41.73825,41.47137],[41.73219,41.47293],[41.72763,41.47194],[41.71825,41.47379],[41.71634,41.47335],[41.7134,41.47419],[41.71062,41.47349],[41.70751,41.47408],[41.70944,41.47697],[41.71344,41.47883],[41.71475,41.48169],[41.71468,41.48506],[41.71765,41.48949],[41.71457,41.49288],[41.70977,41.49628],[41.70512,41.496],[41.70048,41.49443],[41.69927,41.493],[41.69737,41.49156],[41.69461,41.49051],[41.69048,41.48792],[41.68566,41.48685],[41.68236,41.48805],[41.67882,41.48697],[41.67425,41.48384],[41.67142,41.48418],[41.66517,41.48247],[41.66136,41.4841],[41.65821,41.4845],[41.65498,41.48548],[41.65184,41.48505],[41.64972,41.48545],[41.6476,41.48517],[41.6436,41.48667],[41.64188,41.48632],[41.64027,41.4864],[41.63874,41.48674],[41.6367,41.48648],[41.63337,41.48685],[41.62845,41.49022],[41.62808,41.49231],[41.62592,41.49298],[41.6226,41.49657],[41.62198,41.49946],[41.61929,41.50081],[41.61528,41.50196],[41.61114,41.50189],[41.60631,41.50387],[41.60214,41.50397],[41.59618,41.50704],[41.59125,41.50813],[41.5869,41.50816],[41.58427,41.50896],[41.58252,41.5103],[41.58163,41.51165],[41.58177,41.51426],[41.57795,41.51727],[41.57204,41.5198],[41.56518,41.51918],[41.56134,41.51956],[41.55774,41.5183],[41.555,41.51809],[41.55225,41.51879],[41.54865,41.52018],[41.54676,41.52038],[41.49877,41.53332],[30,43.5],[30,45],[29.6788,45.21198],[29.65648,45.25207],[29.66318,45.26244],[29.67811,45.27088],[29.66541,45.30613],[29.65546,45.33751],[29.59366,45.38676],[29.56621,45.40518],[29.43987,45.43278],[29.4289,45.444],[29.39389,45.43833],[29.34789,45.43844],[29.32901,45.45102],[29.28816,45.42699],[29.24869,45.43572],[29.21933,45.42177],[29.18681,45.41287],[29.17625,45.39819],[29.06502,45.36487],[28.96203,45.32961],[28.95328,45.30933],[28.95555,45.29363],[28.94959,45.27987],[28.92667,45.27939],[28.87071,45.3161],[28.84359,45.31611],[28.81415,45.33831],[28.77922,45.32383],[28.80746,45.31225],[28.79598,45.29244],[28.76415,45.29124],[28.74879,45.2823],[28.76203,45.2654],[28.78925,45.25791],[28.79175,45.24463],[28.78317,45.23787],[28.73889,45.23111],[28.71898,45.22146],[28.65101,45.24275],[28.56106,45.24664],[28.54596,45.25711],[28.33859,45.32557],[28.30632,45.37425],[28.28229,45.39399],[28.28744,45.43037],[28.26787,45.45711],[28.20814,45.46724],[28.18637,45.47152],[28.15911,45.51048],[28.16824,45.53835],[28.1554,45.56815],[28.12561,45.57293],[28.08757,45.60847],[28.11407,45.62095],[28.14058,45.6219],[28.16338,45.64109],[28.16668,45.70448],[28.14582,45.77375],[28.12334,45.78773],[28.10858,45.83689],[28.12128,45.87414],[28.11802,45.92339],[28.09167,46.01296],[28.11969,46.11302],[28.13398,46.18261],[28.11225,46.21598],[28.13996,46.27976],[28.20361,46.3114],[28.19085,46.34813],[28.2587,46.43492],[28.21587,46.51198],[28.24557,46.63226],[28.19561,46.73196],[28.16102,46.7865],[28.11545,46.82035],[28.08867,46.97678],[28.04172,47.02017],[27.9125,47.07183],[27.79976,47.14406],[27.79401,47.19691],[27.72784,47.29081],[27.60124,47.32002],[27.57077,47.45903],[27.53837,47.48161],[27.48399,47.48748],[27.41726,47.57404],[27.33405,47.6291],[27.25149,47.72029],[27.28506,47.72523],[27.28841,47.74679],[27.21668,47.8257],[27.24899,47.83589],[27.20925,47.84522],[27.19972,47.89902],[27.21845,47.91266],[27.25128,47.87877],[27.26214,47.89278],[27.2152,47.95022],[27.18947,47.94068],[27.14589,47.96338],[27.1653,47.99312],[27.10359,48.01167],[27.07823,48.05034],[27.02815,48.09268],[27.03229,48.12802],[26.99523,48.12852],[26.94584,48.17536],[26.8031,48.24522],[26.70156,48.25377],[26.63299,48.25866],[26.55606,48.22368],[26.47639,48.21432],[26.33627,48.1828],[26.32973,48.15812],[26.30945,48.14261],[26.28642,48.11519],[26.27439,48.07676],[26.21379,48.04987],[26.19686,47.99761],[26.10302,47.9766],[26.06366,47.98787],[25.95748,47.97181],[25.92304,47.97791],[25.88585,47.96194],[25.83894,47.97045],[25.81537,47.9523],[25.77532,47.94151],[25.6481,47.94893],[25.54055,47.93792],[25.30939,47.91219],[25.27325,47.89426],[25.23436,47.89106],[25.19134,47.82522],[25.11263,47.75384],[25.0422,47.73205],[24.88786,47.72477],[24.87169,47.75794],[24.84178,47.77633],[24.81769,47.81866],[24.76399,47.83689],[24.72345,47.84146],[24.66917,47.86446],[24.67047,47.89571],[24.6209,47.95085],[24.57923,47.96217],[24.50734,47.9551],[24.43545,47.96642],[24.39401,47.95185],[24.38004,47.92808],[24.23214,47.90058],[24.19802,47.91767],[24.11779,47.91424],[24.09964,47.93646],[24.06502,47.95131],[24.01347,47.96397],[23.96466,47.96191],[23.86705,47.93204],[23.81739,47.98267],[23.75994,47.99373],[23.66679,47.98641],[23.62171,48.00206],[23.52993,48.01772],[23.49609,47.96832],[23.42343,47.98856],[23.33429,48.01984],[23.33637,48.03706],[23.27527,48.05795],[23.29041,48.07586],[23.2685,48.10067],[23.24037,48.09474],[23.19303,48.09981],[23.16974,48.12279],[23.12317,48.08473],[23.1095,48.03909],[23.0821,48.00447],[23.02192,47.99268],[22.92546,48.01932],[22.91844,48.00507],[22.93964,47.99519],[22.94437,47.96509],[22.89702,47.95772],[22.83804,47.98713],[22.87932,48.0248],[22.87939,48.04961],[22.83024,48.1103],[22.74538,48.11591],[22.66877,48.09218],[22.59302,48.1055],[22.58674,48.14611],[22.56711,48.17192],[22.56672,48.19223],[22.48823,48.25331],[22.4583,48.23921],[22.43937,48.24705],[22.41219,48.25032],[22.37403,48.23895],[22.32654,48.30581],[22.32026,48.35073],[22.26786,48.36019],[22.24292,48.38425],[22.26339,48.41209],[22.22755,48.41167],[22.21081,48.42723],[22.18858,48.41454],[22.14986,48.40732],[22.13285,48.41294],[22.17902,48.6007],[22.22519,48.61915],[22.25213,48.64666],[22.30928,48.6778],[22.33897,48.68536],[22.3657,48.73323],[22.3408,48.75879],[22.38182,48.80065],[22.38035,48.86043],[22.42082,48.88671],[22.42833,48.9166],[22.42279,48.92934],[22.49415,48.99619],[22.51883,48.99543],[22.5435,49.00908],[22.55339,49.07729],[22.56191,49.087],[22.57894,49.09923],[22.61767,49.08374],[22.63717,49.06466],[22.65805,49.04738],[22.68716,49.0427],[22.71106,49.05042],[22.73221,49.05095],[22.75474,49.04247],[22.76628,49.0538],[22.823,49.02918],[22.84951,48.99916],[22.8888,49.00757],[22.86831,49.07108],[22.8945,49.09499],[22.79779,49.13553],[22.78623,49.15809],[22.7576,49.152],[22.73996,49.16208],[22.75728,49.18084],[22.74249,49.18607],[22.71841,49.16416],[22.70518,49.17531],[22.74414,49.21518],[22.71443,49.22365],[22.71743,49.24044],[22.73965,49.25006],[22.7489,49.31719],[22.74116,49.33286],[22.74716,49.35926],[22.71278,49.43563],[22.699,49.49146],[22.67491,49.49689],[22.65189,49.50674],[22.63985,49.52907],[22.67018,49.54311],[22.68678,49.57141],[22.78316,49.65826],[22.78615,49.67572],[22.8055,49.69422],[22.81936,49.69318],[22.84671,49.70989],[22.87681,49.74081],[22.89857,49.75471],[22.90189,49.76787],[22.93268,49.79345],[22.9558,49.80204],[22.97138,49.83769],[22.99519,49.84145],[23.03136,49.88152],[23.10438,49.93958],[23.11697,49.95521],[23.14748,49.97487],[23.2082,50.02985],[23.21796,50.04851],[23.23596,50.05306],[23.27593,50.08759],[23.28355,50.0978],[23.31041,50.11154],[23.37966,50.15975],[23.42665,50.18298],[23.46814,50.215],[23.57781,50.26489],[23.6093,50.29685],[23.6309,50.30484],[23.64427,50.3216],[23.68747,50.33233],[23.69725,50.37249],[23.72899,50.38987],[23.80072,50.40538],[23.84517,50.40613],[23.94043,50.41562],[23.995,50.41362],[24.00798,50.43541],[24.03469,50.44496],[24.07163,50.50077],[24.09197,50.56429],[24.09698,50.598],[24.09376,50.6352],[24.08185,50.64727],[24.08642,50.67152],[24.06534,50.67824],[24.07252,50.71795],[24.01821,50.72256],[24.01945,50.76842],[23.96713,50.77008],[23.96295,50.81605],[23.99996,50.83945],[24.10407,50.83504],[24.1505,50.8653],[24.05221,50.89611],[23.96766,50.95462],[23.95864,50.99149],[23.92215,51.0076],[23.90941,51.07711],[23.87469,51.07758],[23.84822,51.12634],[23.87178,51.13184],[23.85963,51.15975],[23.82709,51.16041],[23.8087,51.17898],[23.73897,51.21955],[23.72196,51.25831],[23.69396,51.28676],[23.6462,51.28867],[23.63506,51.32394],[23.69953,51.40504],[23.67958,51.43959],[23.65175,51.44575],[23.64745,51.45738],[23.67688,51.47347],[23.65727,51.48835],[23.6404,51.48613],[23.62606,51.50058],[23.62408,51.51683],[23.59837,51.53349],[23.58365,51.52965],[23.56268,51.54299],[23.57468,51.55551],[23.54548,51.60221],[23.54374,51.65231],[23.55537,51.66644],[23.55553,51.69636],[23.54471,51.72288],[23.5258,51.73677],[23.57241,51.76],[23.61494,51.77672],[23.63825,51.79853],[23.6255,51.81952],[23.60726,51.8371],[23.61472,51.85191],[23.60768,51.87304],[23.62947,51.87298],[23.63204,51.88988],[23.61486,51.91848],[23.6464,51.93334],[23.62984,51.94783],[23.65383,51.9644],[23.66683,51.96573],[23.6716,51.97891],[23.68735,51.9904],[23.6633,52.02059],[23.65128,52.05934],[23.642,52.0812],[23.60285,52.11477],[23.56954,52.11891],[23.55271,52.10955],[23.53758,52.12687],[23.50597,52.14419],[23.48938,52.15445],[23.48792,52.16678],[23.50568,52.17574],[23.45605,52.18691],[23.42822,52.1739],[23.40276,52.18157],[23.3979,52.19513],[23.28423,52.21958],[23.2667,52.21542],[23.2031,52.22791],[23.19327,52.2367],[23.19718,52.24884],[23.20795,52.26015],[23.20499,52.27482],[23.17857,52.28457],[23.21384,52.32886],[23.27934,52.39328],[23.3032,52.40474],[23.31535,52.42735],[23.36595,52.48178],[23.46714,52.55046],[23.54521,52.58228],[23.6425,52.60741],[23.71919,52.61586],[23.73271,52.60763],[23.76413,52.6151],[23.78181,52.62757],[23.87778,52.68004],[23.88941,52.67858],[23.90379,52.69211],[23.94078,52.71251],[23.93812,52.8124],[23.92235,52.82742],[23.92581,52.89884],[23.91828,52.90396],[23.91726,52.93798],[23.94645,52.9571],[23.93006,52.97633],[23.92873,53.019],[23.87522,53.07985],[23.8878,53.11507],[23.90312,53.1371],[23.91433,53.14512],[23.90906,53.17127],[23.86325,53.1968],[23.85677,53.22979],[23.81909,53.24479],[23.77729,53.31084],[23.7355,53.39659],[23.66246,53.51491],[23.62731,53.59612],[23.59216,53.68874],[23.58367,53.7086],[23.58616,53.73984],[23.54994,53.76532],[23.54501,53.79521],[23.54832,53.84781],[23.54379,53.85872],[23.52553,53.86477],[23.5107,53.91695],[23.51922,53.9578],[23.49245,53.97485],[23.48078,53.99675],[23.50344,54.01057],[23.51512,54.02117],[23.52337,54.0346],[23.52886,54.06416],[23.49866,54.11682],[23.48779,54.14798],[23.46043,54.17431],[23.42769,54.18035],[23.38259,54.22657],[23.36496,54.23104],[23.33563,54.25373],[23.25225,54.25737],[23.22498,54.26363],[23.2032,54.28754],[23.1567,54.2938],[23.15954,54.31136],[23.14316,54.3161],[23.09038,54.29791],[23.0379,54.31845],[23.06507,54.34381],[22.99402,54.36244],[23.01122,54.38375],[22.83892,54.40981],[22.81044,54.37167],[22.7902,54.36392],[22.68739,54.36149],[22.645,54.35426],[22.42545,54.34863],[22.31843,54.33941],[22.22513,54.343],[22.16214,54.33777],[21.9838,54.33414],[21.50076,54.32368],[21.44995,54.31781],[21.43279,54.32529],[21.36619,54.33117],[21.32568,54.3301],[21.29855,54.33278],[21.27693,54.32904],[20.99953,54.35362],[20.82239,54.36139],[20.7484,54.36697],[20.66892,54.37254],[20.63065,54.36611],[20.60061,54.37728],[20.4183,54.39002],[20.33763,54.40117],[19.64278,54.45307],[19.39575,56.23785],[20.51806,58.95105],[27.58109,60.29591],[27.72636,60.39067],[27.68487,60.42571],[27.7514,60.46094],[27.77398,60.50158],[27.78558,60.53412],[27.85211,60.58287],[28.19391,60.77455],[28.5351,60.96115],[28.65657,60.95013],[28.75426,61.07212],[28.99537,61.17299],[29.23128,61.25782],[29.30239,61.32151],[29.41552,61.26117],[29.4968,61.25873],[29.55061,61.24308],[29.57362,61.18578],[30.46556,61.11219],[31.37316,60],[50,60],[50,44],[51.39511,37.88291]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:EX:**Kyrgyzstan, west of 75º E#EY:**Tajikistan#EZ:**Turkmenistan#UA4:**European Russia, east of 50º E#UA8,9:**Asiatic Russia, south of 60º N and, east of 50º E and west of 75º E#UK:**Uzbekistan#UN:**Kazakhstan, between 50º and 75º E","itu_zone_number":30,"itu_zone_name_loc":[53,62.5]},"geometry":{"type":"Polygon","coordinates":[[[51.39511,37.88291],[53.90931,37.34744],[54.24427,37.32038],[54.24939,37.32519],[54.25864,37.3289],[54.28537,37.35216],[54.34836,37.34835],[54.39855,37.36098],[54.43813,37.38755],[54.45141,37.394],[54.46619,37.40229],[54.47575,37.40774],[54.48605,37.41419],[54.4902,37.42134],[54.50259,37.41976],[54.52049,37.43296],[54.53069,37.43461],[54.53544,37.43933],[54.54155,37.44197],[54.55222,37.44361],[54.55691,37.44719],[54.56666,37.4461],[54.57669,37.45508],[54.58302,37.45544],[54.58752,37.45305],[54.59244,37.45364],[54.59438,37.45133],[54.60041,37.45166],[54.60313,37.44633],[54.61611,37.44447],[54.62563,37.43772],[54.64169,37.43827],[54.64922,37.43102],[54.65325,37.43072],[54.67566,37.44038],[54.68472,37.44616],[54.70461,37.46274],[54.70624,37.46391],[54.71169,37.46772],[54.7155,37.47044],[54.71814,37.47269],[54.72222,37.47491],[54.72713,37.47669],[54.73177,37.47844],[54.73669,37.47975],[54.74191,37.48105],[54.74597,37.48283],[54.74944,37.48394],[54.75352,37.48616],[54.75791,37.48863],[54.76258,37.49247],[54.76661,37.49616],[54.7685,37.49924],[54.77155,37.50249],[54.77569,37.5063],[54.77266,37.51072],[54.77505,37.51366],[54.7858,37.51664],[54.79777,37.52305],[54.79791,37.54505],[54.80014,37.55144],[54.8063,37.55566],[54.80677,37.56116],[54.80363,37.56261],[54.80661,37.5653],[54.80919,37.57419],[54.81655,37.58802],[54.81911,37.60538],[54.81583,37.6105],[54.80711,37.61711],[54.79813,37.61569],[54.79244,37.61739],[54.78908,37.62066],[54.78766,37.62405],[54.784,37.63269],[54.78969,37.64864],[54.80102,37.66055],[54.80227,37.66419],[54.79811,37.6691],[54.80027,37.67319],[54.7998,37.67708],[54.80308,37.68047],[54.8113,37.68466],[54.81691,37.69852],[54.82166,37.7021],[54.82088,37.70486],[54.81458,37.70635],[54.82355,37.71649],[54.82249,37.71927],[54.82383,37.72522],[54.83083,37.72783],[54.83466,37.73002],[54.84308,37.74019],[54.83974,37.74483],[54.85205,37.75055],[54.85191,37.75536],[54.85672,37.76052],[54.86491,37.7645],[54.87002,37.76208],[54.87602,37.7693],[54.88497,37.76866],[54.89247,37.76553],[54.89288,37.76627],[54.89291,37.7663],[54.92072,37.78397],[54.94939,37.80091],[54.95766,37.81822],[54.98636,37.83516],[55.01189,37.84969],[55.02794,37.86311],[55.03133,37.873],[55.0428,37.89022],[55.06824,37.90224],[55.09713,37.92413],[55.12933,37.95097],[55.15152,37.95805],[55.16513,37.9578],[55.17352,37.95766],[55.18613,37.95866],[55.19224,37.95233],[55.20519,37.96455],[55.22905,37.97408],[55.24499,37.98125],[55.26547,37.98211],[55.27191,37.9863],[55.27244,37.98666],[55.27744,37.98977],[55.28363,37.99333],[55.28952,37.99619],[55.29422,37.99885],[55.30333,38.00283],[55.31269,38.00585],[55.32233,38.00844],[55.32902,38.01013],[55.33519,38.01233],[55.34572,38.01625],[55.35102,38.01889],[55.35572,38.02111],[55.3613,38.02349],[55.3663,38.02572],[55.37158,38.02766],[55.37744,38.02986],[55.38213,38.03205],[55.388,38.03422],[55.39413,38.03616],[55.4,38.03836],[55.40644,38.04027],[55.4138,38.0438],[55.41997,38.04691],[55.42499,38.05025],[55.42916,38.05313],[55.43355,38.05489],[55.44175,38.05702],[55.44619,38.06013],[55.4483,38.0633],[55.45047,38.06739],[55.45288,38.07077],[55.45586,38.07325],[55.45999,38.07591],[55.46502,38.07833],[55.46972,38.08052],[55.47419,38.08433],[55.48091,38.0858],[55.48439,38.08549],[55.48749,38.08313],[55.48972,38.07988],[55.4925,38.07594],[55.4973,38.07241],[55.50255,38.07322],[55.50869,38.07472],[55.51369,38.07688],[55.51991,38.08089],[55.52255,38.082],[55.52608,38.0833],[55.5328,38.08475],[55.54069,38.08666],[55.54563,38.08702],[55.55175,38.08758],[55.55872,38.08858],[55.56514,38.08935],[55.57122,38.08902],[55.57644,38.08935],[55.58197,38.08947],[55.58836,38.09027],[55.59425,38.09244],[55.60155,38.09411],[55.61147,38.09619],[55.62227,38.0978],[55.63216,38.09875],[55.63886,38.0993],[55.64841,38.09933],[55.65652,38.09869],[55.66175,38.09836],[55.67127,38.09722],[55.67852,38.09708],[55.68463,38.09763],[55.69133,38.09816],[55.69714,38.09875],[55.71175,38.10163],[55.71989,38.10213],[55.72716,38.10289],[55.73336,38.10527],[55.7378,38.10794],[55.74191,38.10991],[55.74805,38.11091],[55.75444,38.11125],[55.76316,38.11127],[55.76952,38.11066],[55.77613,38.10916],[55.78622,38.10733],[55.79494,38.1078],[55.80077,38.10861],[55.80577,38.11055],[55.81336,38.11152],[55.81797,38.1105],[55.8228,38.10811],[55.82994,38.10497],[55.83711,38.10205],[55.8428,38.09894],[55.85019,38.09511],[55.85705,38.09175],[55.86591,38.08833],[55.87219,38.08522],[55.88108,38.0825],[55.8911,38.07927],[55.89858,38.07705],[55.90552,38.07688],[55.91164,38.07788],[55.91808,38.07888],[55.92713,38.08075],[55.93241,38.08291],[55.93794,38.08322],[55.94488,38.08238],[55.94952,38.08227],[55.95211,38.08152],[55.95469,38.081],[55.96011,38.07836],[55.96261,38.07533],[55.96602,38.07363],[55.96888,38.07241],[55.97255,38.07027],[55.9765,38.06719],[55.98077,38.06502],[55.98485,38.06561],[55.98922,38.06619],[55.99272,38.06658],[55.9953,38.06583],[56.00166,38.06544],[56.00719,38.06555],[56.01241,38.06563],[56.01766,38.06622],[56.02433,38.0665],[56.03333,38.0663],[56.03969,38.06636],[56.04377,38.06694],[56.04905,38.06797],[56.05547,38.06894],[56.06191,38.07064],[56.07972,38.07338],[56.08641,38.07391],[56.09311,38.07466],[56.09922,38.07544],[56.11175,38.07675],[56.12666,38.07958],[56.13452,38.08052],[56.14238,38.08169],[56.16044,38.08283],[56.16683,38.08313],[56.17319,38.08252],[56.17889,38.07986],[56.18397,38.07675],[56.19138,38.07336],[56.19641,38.06886],[56.21149,38.06135],[56.21841,38.06027],[56.22477,38.06011],[56.23205,38.06061],[56.23905,38.06158],[56.24688,38.06205],[56.25919,38.06472],[56.26652,38.06683],[56.27269,38.0685],[56.28116,38.06986],[56.28755,38.07061],[56.29455,38.07114],[56.30236,38.07047],[56.31166,38.07088],[56.31916,38.07047],[56.32872,38.06975],[56.33336,38.06986],[56.33713,38.07],[56.33919,38.07064],[56.33983,38.08549],[56.34114,38.08913],[56.3433,38.09227],[56.34788,38.09788],[56.35177,38.10075],[56.35386,38.10161],[56.35627,38.10386],[56.35847,38.10791],[56.35883,38.1095],[56.35866,38.11202],[56.35791,38.11502],[56.35714,38.11711],[56.35575,38.11897],[56.35408,38.12041],[56.35297,38.1218],[56.35186,38.12274],[56.35049,38.12508],[56.34916,38.12786],[56.34811,38.13019],[56.34674,38.13205],[56.3448,38.13416],[56.34166,38.13538],[56.33736,38.13689],[56.33452,38.13833],[56.3335,38.14136],[56.33358,38.14363],[56.33394,38.14544],[56.33433,38.14749],[56.33324,38.14913],[56.33105,38.15219],[56.32914,38.15522],[56.32838,38.15797],[56.32794,38.16119],[56.32722,38.16489],[56.32819,38.16691],[56.32919,38.17011],[56.33136,38.17372],[56.33475,38.17819],[56.3378,38.18133],[56.34022,38.18377],[56.34444,38.18733],[56.34833,38.19022],[56.35405,38.19486],[56.35883,38.19772],[56.36211,38.19991],[56.36811,38.20411],[56.37319,38.20763],[56.37952,38.21274],[56.38608,38.21691],[56.39177,38.22066],[56.39988,38.22708],[56.41099,38.23524],[56.41705,38.24036],[56.42452,38.24497],[56.43277,38.2475],[56.4398,38.24889],[56.44855,38.2498],[56.45469,38.25191],[56.45594,38.25236],[56.46327,38.25397],[56.46849,38.25361],[56.47988,38.25444],[56.48441,38.25419],[56.48799,38.25397],[56.49494,38.25333],[56.50422,38.2526],[56.51208,38.2526],[56.51733,38.25291],[56.52288,38.25391],[56.52672,38.25494],[56.53113,38.25619],[56.53638,38.25627],[56.54241,38.25497],[56.54966,38.25452],[56.55491,38.25461],[56.56186,38.25419],[56.56766,38.25402],[56.57516,38.25241],[56.58,38.25],[56.58647,38.24522],[56.59008,38.24147],[56.59394,38.23722],[56.59577,38.23236],[56.59905,38.22791],[56.60152,38.22486],[56.60408,38.22341],[56.60761,38.22447],[56.61177,38.22663],[56.61477,38.22838],[56.62125,38.23047],[56.62658,38.23216],[56.63183,38.23291],[56.638,38.23436],[56.64302,38.2358],[56.64544,38.2378],[56.64583,38.23986],[56.6468,38.24211],[56.64805,38.24436],[56.65141,38.24747],[56.65499,38.24966],[56.65975,38.25158],[56.66591,38.25322],[56.67324,38.25461],[56.67969,38.25536],[56.68583,38.25585],[56.69166,38.25661],[56.69694,38.25713],[56.70158,38.25677],[56.70561,38.25597],[56.7108,38.25511],[56.71683,38.25333],[56.72294,38.25338],[56.72763,38.25439],[56.73147,38.25541],[56.7368,38.25755],[56.74011,38.25974],[56.74372,38.26261],[56.74739,38.26616],[56.75044,38.26952],[56.75466,38.27258],[56.75669,38.27253],[56.75919,38.26972],[56.76052,38.26738],[56.76319,38.2625],[56.76719,38.261],[56.77388,38.25483],[56.77894,38.25099],[56.782,38.24839],[56.78455,38.24672],[56.78705,38.24433],[56.7915,38.24033],[56.79427,38.23772],[56.79791,38.23463],[56.80219,38.23311],[56.80711,38.23249],[56.81055,38.23149],[56.81572,38.23019],[56.82086,38.22797],[56.8263,38.22641],[56.83305,38.22208],[56.84072,38.21797],[56.84725,38.215],[56.85608,38.21152],[56.867,38.20891],[56.87566,38.2075],[56.88283,38.20544],[56.88886,38.20386],[56.89436,38.20369],[56.89925,38.20286],[56.90502,38.20175],[56.91191,38.20039],[56.91799,38.19997],[56.92319,38.19936],[56.93138,38.19886],[56.93161,38.19886],[56.94055,38.19766],[56.94808,38.19697],[56.95591,38.19672],[56.96175,38.19722],[56.96966,38.19833],[56.97494,38.19933],[56.98075,38.19936],[56.98619,38.1978],[56.99063,38.19377],[56.99444,38.18883],[56.99739,38.18347],[56.9978,38.18024],[57.00172,38.17738],[57.01177,38.17544],[57.02244,38.17372],[57.03197,38.17274],[57.04238,38.17194],[57.05197,38.17186],[57.06189,38.17222],[57.06891,38.17361],[57.0748,38.17499],[57.08041,38.17666],[57.08516,38.1788],[57.08935,38.18094],[57.0945,38.18469],[57.09814,38.188],[57.1015,38.19086],[57.10455,38.19352],[57.10819,38.19683],[57.11069,38.19997],[57.11402,38.20261],[57.11708,38.20547],[57.12044,38.20858],[57.12441,38.21211],[57.1293,38.21652],[57.13391,38.22141],[57.13491,38.22269],[57.13702,38.22544],[57.14161,38.22963],[57.14502,38.23366],[57.14816,38.23814],[57.151,38.24194],[57.15352,38.24597],[57.15638,38.25047],[57.1605,38.25652],[57.16502,38.25958],[57.16914,38.26058],[57.17441,38.26108],[57.1788,38.26163],[57.1838,38.26305],[57.19005,38.26561],[57.19538,38.2675],[57.2028,38.26977],[57.21211,38.27013],[57.22055,38.26985],[57.22572,38.26874],[57.23291,38.26713],[57.23975,38.26438],[57.24511,38.26169],[57.24897,38.25744],[57.25099,38.25208],[57.25244,38.24677],[57.25099,38.2413],[57.25366,38.23711],[57.2543,38.23249],[57.25577,38.22741],[57.25608,38.2228],[57.25825,38.21952],[57.2633,38.21636],[57.271,38.21358],[57.27752,38.2106],[57.28525,38.20827],[57.29166,38.20347],[57.29547,38.19877],[57.29611,38.19461],[57.29674,38.19025],[57.29652,38.18624],[57.29647,38.18497],[57.2953,38.17974],[57.29294,38.17363],[57.29353,38.16858],[57.29236,38.16288],[57.2928,38.1553],[57.29369,38.15024],[57.29872,38.14686],[57.3058,38.14339],[57.31291,38.14063],[57.32166,38.13619],[57.32844,38.13252],[57.33402,38.12844],[57.33872,38.12416],[57.34197,38.12014],[57.3438,38.11616],[57.34524,38.11108],[57.34763,38.10688],[57.35138,38.10147],[57.35549,38.09674],[57.36158,38.09149],[57.36861,38.08733],[57.37533,38.08297],[57.37939,38.0778],[57.38058,38.07294],[57.37939,38.06724],[57.37736,38.06227],[57.37711,38.05794],[57.37541,38.05319],[57.37222,38.04824],[57.36991,38.04327],[57.36733,38.03833],[57.36616,38.03311],[57.36594,38.02922],[57.36663,38.02597],[57.36844,38.02202],[57.36836,38.01538],[57.36774,38.00966],[57.36544,38.00425],[57.36277,37.99839],[57.35719,37.99169],[57.35313,37.98658],[57.3523,37.98199],[57.35358,37.97874],[57.35633,37.97613],[57.35913,37.97444],[57.36511,37.97263],[57.3708,37.97058],[57.37764,37.96827],[57.38366,37.96716],[57.38994,37.96555],[57.39269,37.96316],[57.39749,37.96072],[57.40233,37.95938],[57.40741,37.95669],[57.41216,37.95352],[57.4163,37.95016],[57.42244,37.94561],[57.42941,37.941],[57.43677,37.93822],[57.44566,37.9363],[57.45308,37.93441],[57.46108,37.93252],[57.46941,37.9313],[57.47744,37.92963],[57.48744,37.92744],[57.49458,37.92536],[57.5008,37.92283],[57.50725,37.91938],[57.51197,37.91577],[57.51797,37.91441],[57.52497,37.91485],[57.53111,37.91624],[57.53672,37.91786],[57.54347,37.91966],[57.54905,37.92108],[57.55519,37.922],[57.56369,37.92352],[57.57066,37.92394],[57.58172,37.92469],[57.58924,37.92464],[57.59786,37.92341],[57.6033,37.92227],[57.60924,37.91977],[57.61641,37.91883],[57.62725,37.91566],[57.63613,37.91419],[57.6468,37.91333],[57.65519,37.91325],[57.66439,37.91175],[57.67358,37.91072],[57.6868,37.90883],[57.69577,37.90897],[57.7058,37.9118],[57.71419,37.91169],[57.72547,37.91149],[57.73261,37.90963],[57.73761,37.90644],[57.74336,37.90072],[57.75011,37.89725],[57.75722,37.89516],[57.76263,37.89402],[57.77161,37.89391],[57.78025,37.89313],[57.78719,37.89308],[57.79397,37.89008],[57.79863,37.88622],[57.80244,37.88194],[57.80816,37.87599],[57.81277,37.87099],[57.81713,37.86647],[57.82241,37.86305],[57.82783,37.86147],[57.83441,37.86052],[57.84055,37.86166],[57.84555,37.86283],[57.85285,37.86369],[57.86219,37.86494],[57.87147,37.86525],[57.88066,37.86397],[57.88977,37.86155],[57.89686,37.85922],[57.90541,37.85702],[57.91144,37.85633],[57.91483,37.85505],[57.91902,37.85261],[57.92533,37.85144],[57.93247,37.84999],[57.95147,37.84397],[57.956,37.84241],[57.96324,37.838],[57.97005,37.83566],[57.97908,37.83208],[57.99411,37.82275],[58.00188,37.81763],[58.00752,37.81533],[58.01538,37.81135],[58.02233,37.80694],[58.02936,37.79933],[58.03372,37.79961],[58.03819,37.79735],[58.04216,37.79605],[58.04936,37.7953],[58.05516,37.79575],[58.06186,37.79661],[58.06894,37.79838],[58.07533,37.7988],[58.07958,37.79772],[58.0835,37.79572],[58.08886,37.79366],[58.09377,37.79347],[58.09597,37.79155],[58.09744,37.78758],[58.103,37.78413],[58.10702,37.78374],[58.11,37.78477],[58.11238,37.78627],[58.11547,37.78913],[58.11902,37.79058],[58.12094,37.78891],[58.12344,37.78697],[58.12614,37.78389],[58.13469,37.77777],[58.14141,37.77911],[58.14688,37.783],[58.15375,37.78594],[58.1598,37.78569],[58.16369,37.78347],[58.16697,37.78058],[58.17397,37.77705],[58.18072,37.77425],[58.191,37.77199],[58.19919,37.76936],[58.20783,37.76416],[58.21188,37.76011],[58.21297,37.75477],[58.21297,37.75019],[58.21261,37.74494],[58.21397,37.73914],[58.21605,37.73583],[58.21963,37.73316],[58.22263,37.73052],[58.22569,37.72855],[58.22716,37.72458],[58.23214,37.72116],[58.23325,37.7163],[58.2335,37.71147],[58.23316,37.70622],[58.23141,37.70169],[58.22905,37.69675],[58.22761,37.69222],[58.22613,37.68747],[58.22641,37.68288],[58.22741,37.68055],[58.23011,37.67789],[58.23733,37.67347],[58.24411,37.67111],[58.25088,37.66899],[58.25544,37.66788],[58.2605,37.66583],[58.26755,37.66322],[58.27297,37.66208],[58.27755,37.66166],[58.28513,37.65858],[58.29136,37.65647],[58.29991,37.65497],[58.30369,37.65527],[58.30833,37.65574],[58.31561,37.65636],[58.32338,37.65602],[58.33091,37.65638],[58.33761,37.65724],[58.34322,37.65494],[58.35083,37.65208],[58.35955,37.64872],[58.36547,37.64664],[58.36875,37.64397],[58.36986,37.63908],[58.37038,37.63402],[58.37149,37.62916],[58.3745,37.62672],[58.37891,37.62355],[58.38272,37.62041],[58.38711,37.617],[58.39277,37.61539],[58.39714,37.61589],[58.40158,37.61752],[58.40519,37.61966],[58.40972,37.62266],[58.41299,37.62413],[58.41711,37.62486],[58.4218,37.62602],[58.42588,37.62655],[58.4333,37.6253],[58.4408,37.62519],[58.44827,37.62486],[58.45461,37.62483],[58.45983,37.62505],[58.46625,37.62614],[58.4733,37.62788],[58.47925,37.63016],[58.48611,37.63327],[58.4923,37.6353],[58.50497,37.643],[58.50919,37.64533],[58.51258,37.64838],[58.51483,37.65197],[58.51622,37.6551],[58.51761,37.6585],[58.51944,37.66391],[58.52058,37.66799],[58.52194,37.67069],[58.52624,37.67441],[58.52933,37.67747],[58.53188,37.68058],[58.53466,37.68341],[58.53749,37.68652],[58.54172,37.68908],[58.5468,37.69138],[58.55327,37.69313],[58.55825,37.69383],[58.56341,37.69339],[58.56913,37.69266],[58.57722,37.69274],[58.58002,37.69124],[58.58336,37.68949],[58.587,37.68772],[58.59036,37.68619],[58.59469,37.68233],[58.59936,37.67891],[58.60561,37.67333],[58.60989,37.66855],[58.61358,37.66358],[58.6165,37.66022],[58.62049,37.65547],[58.62833,37.65189],[58.64127,37.64716],[58.6508,37.64305],[58.67178,37.63774],[58.68558,37.63663],[58.69552,37.63458],[58.70811,37.63308],[58.719,37.63188],[58.7298,37.62955],[58.73816,37.62939],[58.74224,37.62989],[58.74386,37.63211],[58.74488,37.63436],[58.74502,37.63619],[58.74622,37.64094],[58.74828,37.64497],[58.7508,37.6483],[58.75358,37.65047],[58.75825,37.65139],[58.76233,37.65166],[58.77188,37.64799],[58.77691,37.64594],[58.78877,37.64216],[58.79305,37.64149],[58.7968,37.64155],[58.80061,37.64205],[58.80416,37.6435],[58.80758,37.64655],[58.8095,37.64899],[58.80994,37.65127],[58.8125,37.6585],[58.81355,37.66072],[58.81516,37.66319],[58.81736,37.66536],[58.8195,37.66711],[58.82144,37.66999],[58.8233,37.67174],[58.82375,37.67355],[58.82389,37.67561],[58.82236,37.67844],[58.81835,37.68277],[58.81605,37.68677],[58.81622,37.68905],[58.8178,37.69105],[58.82194,37.692],[58.82563,37.69136],[58.83013,37.68955],[58.83564,37.68608],[58.84149,37.68305],[58.84602,37.68191],[58.85138,37.68027],[58.85749,37.67677],[58.86355,37.67283],[58.86925,37.66797],[58.879,37.65924],[58.88694,37.65336],[58.89336,37.65027],[58.89822,37.64958],[58.90486,37.6495],[58.91058,37.64899],[58.91747,37.64822],[58.92641,37.64802],[58.93241,37.64749],[58.94614,37.64544],[58.95097,37.6443],[58.95827,37.64188],[58.96419,37.63977],[58.9818,37.63225],[58.99077,37.62861],[58.99575,37.62583],[59.00569,37.62352],[59.01536,37.62166],[59.02444,37.61961],[59.03316,37.61666],[59.04052,37.61469],[59.04761,37.61275],[59.05566,37.60869],[59.06283,37.60441],[59.0695,37.60088],[59.07688,37.59569],[59.08519,37.59116],[59.09227,37.58575],[59.09966,37.58058],[59.10594,37.57613],[59.11539,37.57108],[59.12286,37.56724],[59.13161,37.56108],[59.13933,37.55633],[59.14574,37.55372],[59.15475,37.55075],[59.15858,37.54802],[59.16397,37.54294],[59.16836,37.54019],[59.17252,37.53813],[59.17697,37.53586],[59.18063,37.53475],[59.1828,37.53305],[59.18641,37.53147],[59.18794,37.52864],[59.18888,37.52608],[59.19302,37.5238],[59.19688,37.52155],[59.20016,37.51908],[59.20391,37.51544],[59.20561,37.51147],[59.21005,37.50775],[59.21263,37.50561],[59.21714,37.50422],[59.22288,37.50394],[59.22811,37.50413],[59.2318,37.50347],[59.2363,37.50211],[59.24128,37.49933],[59.24666,37.49813],[59.25411,37.49752],[59.26413,37.49702],[59.27627,37.4973],[59.28216,37.49861],[59.28516,37.50008],[59.29055,37.50255],[59.2948,37.50533],[59.30208,37.50977],[59.30989,37.5135],[59.31994,37.51666],[59.32838,37.51761],[59.33055,37.51769],[59.33464,37.51788],[59.3356,37.51791],[59.34214,37.51666],[59.34783,37.51544],[59.35049,37.51302],[59.35316,37.51036],[59.35527,37.50772],[59.35644,37.50444],[59.35733,37.50119],[59.36024,37.49805],[59.36516,37.49458],[59.36869,37.49185],[59.37127,37.48805],[59.37805,37.48288],[59.38122,37.47927],[59.38405,37.47499],[59.3858,37.47169],[59.38722,37.46794],[59.38691,37.4643],[59.38497,37.46141],[59.38427,37.44605],[59.38433,37.44308],[59.38722,37.43972],[59.39291,37.43527],[59.40311,37.42602],[59.40258,37.42308],[59.39988,37.42183],[59.38689,37.41769],[59.38353,37.41533],[59.3798,37.4123],[59.37702,37.40972],[59.3753,37.40636],[59.37413,37.40274],[59.3735,37.39841],[59.37486,37.39374],[59.37655,37.3863],[59.37891,37.38],[59.38083,37.37508],[59.38349,37.36552],[59.38639,37.3548],[59.38722,37.35094],[59.3895,37.34016],[59.39172,37.33202],[59.39244,37.32672],[59.39588,37.31963],[59.39838,37.31147],[59.402,37.30625],[59.40658,37.30255],[59.4118,37.29952],[59.41769,37.29761],[59.42189,37.296],[59.42672,37.29208],[59.42911,37.28944],[59.43033,37.28683],[59.43147,37.28311],[59.43375,37.27955],[59.43755,37.2768],[59.44352,37.27236],[59.44833,37.268],[59.45333,37.26244],[59.45888,37.25641],[59.46341,37.25202],[59.47275,37.24327],[59.47858,37.23722],[59.48424,37.22911],[59.48691,37.22669],[59.49066,37.22349],[59.49013,37.2203],[59.48797,37.21858],[59.48613,37.2173],[59.48308,37.21494],[59.48,37.21235],[59.47744,37.20927],[59.47605,37.20635],[59.47502,37.20433],[59.4788,37.20161],[59.48322,37.19933],[59.48644,37.19661],[59.49111,37.19386],[59.49766,37.18983],[59.50294,37.18772],[59.50825,37.18583],[59.5138,37.18347],[59.52041,37.18011],[59.52391,37.17741],[59.52711,37.17425],[59.53122,37.17197],[59.53627,37.1703],[59.53705,37.17008],[59.54272,37.16858],[59.54836,37.16736],[59.55199,37.16624],[59.55372,37.16272],[59.5543,37.15947],[59.55286,37.15588],[59.55169,37.15227],[59.55105,37.14772],[59.54925,37.14344],[59.54863,37.13933],[59.54911,37.13472],[59.54988,37.13033],[59.55075,37.12705],[59.55383,37.12252],[59.5581,37.12208],[59.56325,37.12202],[59.57663,37.12083],[59.58469,37.12086],[59.59291,37.11975],[59.59919,37.11916],[59.60594,37.11766],[59.61364,37.11355],[59.62466,37.10813],[59.6305,37.10944],[59.63708,37.10908],[59.64238,37.10741],[59.64788,37.10802],[59.65116,37.10922],[59.65313,37.11233],[59.6553,37.11774],[59.65783,37.12358],[59.66008,37.12644],[59.66216,37.12747],[59.66541,37.12866],[59.67038,37.12955],[59.6761,37.12947],[59.68188,37.12983],[59.68844,37.12925],[59.69955,37.12819],[59.70513,37.12649],[59.7113,37.12477],[59.71594,37.122],[59.72225,37.11844],[59.72625,37.11477],[59.72947,37.11205],[59.73341,37.10794],[59.73825,37.10422],[59.74355,37.10233],[59.74924,37.10177],[59.75474,37.10241],[59.75849,37.10266],[59.75955,37.10488],[59.76005,37.10738],[59.76027,37.10991],[59.7625,37.1123],[59.76661,37.11347],[59.77002,37.11327],[59.77372,37.11283],[59.77794,37.11191],[59.7908,37.10455],[59.79833,37.10183],[59.80983,37.09888],[59.81905,37.09586],[59.82574,37.09386],[59.83305,37.09208],[59.83994,37.08869],[59.84508,37.08497],[59.86119,37.06913],[59.87614,37.0561],[59.88094,37.05541],[59.88655,37.05416],[59.88958,37.05261],[59.89164,37.04997],[59.89511,37.04678],[59.89911,37.04355],[59.90569,37.03996],[59.91141,37.03666],[59.91663,37.03408],[59.92105,37.032],[59.92744,37.02977],[59.93336,37.02852],[59.93875,37.02777],[59.94422,37.02813],[59.94827,37.02861],[59.95322,37.02925],[59.95758,37.03014],[59.9623,37.03172],[59.96697,37.03258],[59.97222,37.03344],[59.97888,37.03422],[59.98458,37.03366],[59.99113,37.03327],[59.99536,37.03258],[60,37.03955],[60.00441,37.03966],[60.01358,37.03611],[60.02094,37.03327],[60.05066,37.01224],[60.08433,36.97852],[60.08891,36.97072],[60.09663,36.94861],[60.10258,36.93602],[60.12691,36.90588],[60.16122,36.86255],[60.17675,36.84241],[60.21416,36.81047],[60.24866,36.77677],[60.27052,36.7513],[60.29525,36.71389],[60.31563,36.6811],[60.33144,36.65613],[60.34002,36.64772],[60.35244,36.64188],[60.36739,36.62811],[60.37066,36.62424],[60.48319,36.62708],[60.56694,36.62772],[60.58541,36.62766],[60.63477,36.62755],[60.72102,36.63541],[60.83025,36.64261],[60.86408,36.64408],[60.95735,36.65127],[61.1203,36.66086],[61.14002,36.66202],[61.14025,36.66205],[61.14761,36.65594],[61.14994,36.65041],[61.14805,36.64872],[61.15252,36.64086],[61.18075,36.58819],[61.19097,36.56772],[61.19316,36.54852],[61.18933,36.52988],[61.17935,36.51422],[61.17235,36.49866],[61.17269,36.49308],[61.17544,36.48114],[61.17822,36.46838],[61.17549,36.44819],[61.164,36.39311],[61.16375,36.38105],[61.17025,36.34033],[61.18547,36.30319],[61.19952,36.26841],[61.206,36.25983],[61.20905,36.24227],[61.22286,36.19544],[61.22922,36.17239],[61.2328,36.14602],[61.22755,36.12444],[61.22647,36.12008],[61.19813,36.0651],[61.1795,36.03058],[61.17327,36.01908],[61.16833,36.00283],[61.15927,35.98961],[61.13447,35.97491],[61.12302,35.96802],[61.12308,35.96786],[61.1243,35.96324],[61.12855,35.95861],[61.13897,35.95686],[61.15952,35.95344],[61.1688,35.95197],[61.1795,35.95024],[61.21099,35.93627],[61.21302,35.93433],[61.21833,35.92933],[61.22272,35.92227],[61.22691,35.91841],[61.234,35.9155],[61.23377,35.9121],[61.2335,35.90744],[61.23197,35.90016],[61.2293,35.89522],[61.23141,35.89288],[61.23725,35.89474],[61.24213,35.89574],[61.24713,35.89433],[61.24822,35.89277],[61.24452,35.88861],[61.23988,35.8836],[61.23797,35.88272],[61.2435,35.8733],[61.24269,35.87005],[61.24191,35.8668],[61.24441,35.85808],[61.24952,35.85505],[61.25352,35.85441],[61.25483,35.84886],[61.25222,35.84311],[61.25636,35.84008],[61.2596,35.83538],[61.257,35.82966],[61.25816,35.8265],[61.25847,35.82169],[61.25977,35.81611],[61.25997,35.81291],[61.26422,35.80825],[61.26533,35.80588],[61.26347,35.80422],[61.25683,35.79991],[61.25508,35.79583],[61.25272,35.78611],[61.25025,35.77797],[61.24858,35.77308],[61.2468,35.7698],[61.25183,35.76839],[61.25491,35.7661],[61.25516,35.76208],[61.25244,35.75797],[61.25002,35.74902],[61.2508,35.73622],[61.2503,35.72816],[61.24591,35.71913],[61.24177,35.70611],[61.23383,35.70741],[61.22925,35.70161],[61.2198,35.69477],[61.21902,35.69155],[61.22266,35.68044],[61.22291,35.67647],[61.22333,35.66925],[61.22344,35.66761],[61.22288,35.66036],[61.22722,35.65411],[61.23188,35.6583],[61.24219,35.65069],[61.24124,35.64985],[61.25214,35.63261],[61.2605,35.62491],[61.27377,35.61661],[61.27663,35.61316],[61.30591,35.62272],[61.31661,35.62474],[61.3688,35.62441],[61.37144,35.61327],[61.37213,35.60125],[61.37444,35.59572],[61.38225,35.59683],[61.39413,35.59566],[61.40024,35.59191],[61.39961,35.58625],[61.39025,35.57786],[61.38483,35.56961],[61.38722,35.56247],[61.39433,35.55872],[61.40325,35.55747],[61.40924,35.5561],[61.4113,35.55458],[61.41249,35.55061],[61.42166,35.54533],[61.43264,35.54255],[61.43866,35.54039],[61.44494,35.53419],[61.45152,35.52238],[61.46672,35.51413],[61.48605,35.50283],[61.50905,35.4878],[61.51158,35.48613],[61.56661,35.45127],[61.58075,35.44458],[61.59986,35.43647],[61.61372,35.43458],[61.63941,35.43152],[61.66605,35.42927],[61.73627,35.4198],[61.75316,35.41641],[61.76699,35.4145],[61.77872,35.41572],[61.8165,35.4251],[61.87969,35.43699],[61.93605,35.44858],[61.96427,35.45358],[61.99,35.44963],[62.02063,35.44586],[62.05738,35.43747],[62.07711,35.41644],[62.12158,35.37055],[62.13089,35.36041],[62.14344,35.34477],[62.19936,35.32411],[62.24813,35.3088],[62.25613,35.30505],[62.2613,35.29961],[62.27419,35.27591],[62.27702,35.26927],[62.27883,35.26511],[62.283,35.25533],[62.29997,35.14424],[62.30208,35.14108],[62.3098,35.14294],[62.32489,35.15547],[62.43391,35.25361],[62.45925,35.27847],[62.46683,35.2843],[62.47558,35.28538],[62.48841,35.28336],[62.49649,35.27797],[62.50141,35.27733],[62.51216,35.27844],[62.52122,35.2731],[62.5343,35.26466],[62.5355,35.25988],[62.53886,35.25033],[62.55891,35.23969],[62.56991,35.23438],[62.58161,35.23555],[62.60491,35.24022],[62.60691,35.23949],[62.61027,35.22913],[62.61572,35.21647],[62.61975,35.21416],[62.62269,35.21424],[62.63036,35.21769],[62.65591,35.23849],[62.66361,35.24191],[62.687,35.24419],[62.7228,35.25486],[62.74783,35.26519],[62.75225,35.27655],[62.75561,35.29027],[62.76516,35.29616],[62.77761,35.30294],[62.80683,35.30775],[62.82627,35.3115],[62.83588,35.31577],[62.85408,35.32672],[62.86427,35.34144],[62.867,35.34713],[62.8728,35.34888],[62.88652,35.34925],[62.88747,35.35008],[62.88728,35.35488],[62.88894,35.36216],[62.89472,35.36472],[62.90158,35.36491],[62.92638,35.38244],[62.95636,35.39366],[62.98914,35.40894],[62.99786,35.41158],[63.00474,35.41097],[63.01669,35.40644],[63.01952,35.40975],[63.02024,35.41616],[63.01108,35.42477],[63.01097,35.42797],[63.01486,35.42889],[63.03469,35.42377],[63.0465,35.42247],[63.07391,35.42394],[63.09635,35.42772],[63.11069,35.46502],[63.11475,35.4876],[63.12002,35.50458],[63.11883,35.51016],[63.11275,35.51563],[63.11161,35.51963],[63.11833,35.5238],[63.12466,35.53841],[63.12722,35.54972],[63.12405,35.55524],[63.11002,35.56213],[63.10494,35.56683],[63.10272,35.574],[63.10436,35.58289],[63.10594,35.59336],[63.10263,35.60291],[63.09635,35.61238],[63.09516,35.61877],[63.10066,35.62936],[63.11975,35.64508],[63.16544,35.66064],[63.20047,35.67191],[63.24425,35.68661],[63.24797,35.6923],[63.24366,35.70264],[63.23444,35.71286],[63.22547,35.71586],[63.20969,35.71711],[63.19758,35.72483],[63.18422,35.74058],[63.17394,35.75236],[63.16486,35.75777],[63.14975,35.76702],[63.14055,35.77563],[63.13955,35.80291],[63.12819,35.81663],[63.12716,35.81786],[63.11202,35.82713],[63.10883,35.83347],[63.11422,35.84805],[63.1206,35.86186],[63.12922,35.8693],[63.14008,35.86875],[63.18158,35.86736],[63.20747,35.86669],[63.23097,35.86611],[63.26433,35.86536],[63.30011,35.86452],[63.3305,35.87002],[63.40599,35.88458],[63.4903,35.90166],[63.51486,35.90619],[63.52272,35.90716],[63.53258,35.90739],[63.54719,35.9133],[63.5593,35.93605],[63.57447,35.95641],[63.58008,35.95822],[63.58525,35.95986],[63.63158,35.96241],[63.67391,35.96727],[63.777,35.99013],[63.81527,35.99889],[63.82597,36.00472],[63.84533,36.01952],[63.86888,36.02558],[63.93475,36.03961],[63.96336,36.04172],[63.97622,36.04194],[63.99414,36.03741],[64.01611,36.02816],[64.03919,36.01491],[64.05222,36.00791],[64.06522,36.00172],[64.07111,36.00341],[64.07397,36.00827],[64.07366,36.0195],[64.06402,36.04986],[64.06155,36.06905],[64.06214,36.08514],[64.07252,36.10455],[64.08222,36.11275],[64.10158,36.12194],[64.10669,36.12439],[64.12925,36.13197],[64.13605,36.13769],[64.1478,36.14269],[64.16649,36.14702],[64.1683,36.15505],[64.17211,36.16155],[64.19677,36.16513],[64.22149,36.16633],[64.22652,36.16319],[64.23458,36.15769],[64.23858,36.15536],[64.24547,36.15705],[64.26122,36.1621],[64.26613,36.16299],[64.27119,36.15824],[64.28319,36.1528],[64.2891,36.15369],[64.29677,36.16585],[64.31783,36.19905],[64.32952,36.20724],[64.37372,36.22633],[64.4151,36.23733],[64.42991,36.23994],[64.4488,36.237],[64.45749,36.24836],[64.48261,36.28158],[64.51094,36.30361],[64.5383,36.32563],[64.56261,36.3508],[64.58108,36.37272],[64.60433,36.4035],[64.61489,36.42286],[64.62144,36.44461],[64.62294,36.47272],[64.6183,36.50877],[64.61227,36.56647],[64.60519,36.62655],[64.60702,36.6338],[64.61772,36.64919],[64.636,36.6855],[64.6728,36.74611],[64.70766,36.80588],[64.73783,36.85274],[64.78955,36.92872],[64.79544,36.936],[64.78805,36.95919],[64.77927,37.00722],[64.75885,37.09125],[64.75661,37.10647],[64.77047,37.11622],[64.87797,37.16624],[64.93475,37.19166],[64.95966,37.20311],[64.97264,37.20886],[64.98261,37.21294],[65.05469,37.22638],[65.10175,37.23561],[65.1368,37.24069],[65.14383,37.24155],[65.174,37.23694],[65.18505,37.23541],[65.19208,37.23627],[65.20905,37.2436],[65.22203,37.24933],[65.22805,37.25016],[65.24116,37.24383],[65.2498,37.23952],[65.26335,37.23275],[65.3848,37.2335],[65.50322,37.23408],[65.5243,37.23416],[65.54924,37.25836],[65.60719,37.30511],[65.62419,37.31961],[65.63819,37.33488],[65.64111,37.35174],[65.64369,37.43113],[65.69758,37.52836],[65.74191,37.5325],[65.758,37.54136],[65.76605,37.54458],[65.77713,37.54299],[65.7983,37.53822],[65.80841,37.53025],[65.81652,37.5118],[65.83572,37.49338],[65.87705,37.47261],[65.90747,37.46602],[65.93947,37.45905],[65.99383,37.4543],[66.03108,37.44869],[66.06833,37.43827],[66.0985,37.42944],[66.11961,37.415],[66.12666,37.40536],[66.12966,37.39413],[66.13266,37.38772],[66.14775,37.37727],[66.17185,37.36763],[66.18794,37.3636],[66.21308,37.366],[66.23016,37.36758],[66.23922,37.36516],[66.24622,37.35633],[66.25627,37.34908],[66.27433,37.33944],[66.28636,37.33139],[66.30041,37.32333],[66.31044,37.32011],[66.32952,37.31847],[66.34764,37.32325],[66.36978,37.32799],[66.38989,37.33194],[66.41799,37.33108],[66.4753,37.33411],[66.48435,37.33405],[66.49944,37.33963],[66.52597,37.34758],[66.54677,37.35388],[66.56894,37.36022],[66.59408,37.36091],[66.61516,37.3568],[66.62819,37.35113],[66.63517,37.34227],[66.63683,37.34152],[66.64616,37.33741],[66.66325,37.33572],[66.68336,37.33722],[66.69747,37.34197],[66.71461,37.34908],[66.72875,37.35544],[66.73577,37.35699],[66.76294,37.35844],[66.79308,37.35666],[66.81919,37.3525],[66.83125,37.35161],[66.85341,37.35869],[66.87558,37.36336],[66.91388,37.37272],[66.93711,37.38139],[66.94921,37.3853],[66.97135,37.38674],[66.98642,37.38422],[67.03655,37.37099],[67.06246,37.35555],[67.08342,37.34255],[67.09833,37.33038],[67.09919,37.31994],[67.10097,37.30308],[67.10778,37.28619],[67.12366,37.27322],[67.14866,37.26497],[67.1728,37.26716],[67.19278,37.25897],[67.20375,37.25486],[67.21058,37.24113],[67.21836,37.22422],[67.22428,37.21775],[67.24016,37.20716],[67.26396,37.18849],[67.27894,37.18433],[67.29905,37.18813],[67.31222,37.19603],[67.33049,37.20947],[67.35366,37.21405],[67.38686,37.21849],[67.39991,37.21916],[67.41911,37.22697],[67.4403,37.23313],[67.4606,37.24655],[67.48402,37.26311],[67.49622,37.2718],[67.5103,37.27244],[67.53919,37.26005],[67.55102,37.24949],[67.55869,37.23094],[67.55966,37.23036],[67.56663,37.22602],[67.57966,37.22505],[67.58977,37.22894],[67.596,37.23849],[67.61411,37.24147],[67.62828,37.24611],[67.63333,37.24844],[67.6403,37.24594],[67.65191,37.24089],[67.66122,37.23686],[67.69813,37.22674],[67.73217,37.22161],[67.73317,37.22144],[67.75213,37.21797],[67.76511,37.20961],[67.76997,37.2065],[67.78275,37.19508],[67.79052,37.18375],[67.79111,37.16447],[67.78958,37.14205],[67.78511,37.12044],[67.78372,37.10361],[67.78653,37.09394],[67.80327,37.08166],[67.82111,37.07261],[67.84302,37.06747],[67.88208,37.06689],[67.89408,37.06588],[67.89905,37.06422],[67.90091,37.05858],[67.89763,37.04658],[67.90399,37.01922],[67.92869,37.006],[67.95239,36.992],[67.96822,36.98452],[67.98105,36.97791],[67.98886,36.96974],[67.99055,36.95689],[67.99805,36.93752],[68.00585,36.92935],[68.00705,36.9293],[68.02383,36.92827],[68.04196,36.93441],[68.05608,36.93819],[68.07819,36.94263],[68.0843,36.94655],[68.10063,36.95911],[68.11094,36.97097],[68.12205,36.9748],[68.13716,36.97855],[68.1565,36.99105],[68.17702,37.00994],[68.19233,37.02011],[68.20344,37.02394],[68.22041,37.02202],[68.2343,37.01777],[68.24605,37.00791],[68.26191,37.00283],[68.27114,37.00988],[68.28138,37.01852],[68.28908,37.07694],[68.29558,37.0945],[68.30291,37.10558],[68.31308,37.11099],[68.32716,37.11236],[68.35702,37.10536],[68.37997,37.10172],[68.39511,37.10544],[68.41852,37.11702],[68.42177,37.125],[68.42199,37.13302],[68.42227,37.14183],[68.42541,37.14577],[68.43653,37.14877],[68.45255,37.14847],[68.47775,37.15197],[68.48391,37.15666],[68.49802,37.1588],[68.51522,37.16327],[68.53939,37.16677],[68.54769,37.17544],[68.56086,37.18491],[68.56722,37.18947],[68.60663,37.1983],[68.63905,37.20724],[68.65136,37.2158],[68.65261,37.223],[68.6511,37.23827],[68.65333,37.24463],[68.6573,37.24294],[68.66419,37.2388],[68.67514,37.23616],[68.67427,37.24019],[68.66883,37.25794],[68.67021,37.26916],[68.68049,37.27616],[68.69049,37.27433],[68.71186,37.27249],[68.71553,37.27219],[68.72955,37.27108],[68.74183,37.27722],[68.75811,37.2833],[68.77124,37.28541],[68.78224,37.28436],[68.78902,37.277],[68.79541,37.25838],[68.80603,37.24611],[68.81297,37.24355],[68.82421,37.24972],[68.82949,37.2568],[68.82599,37.27133],[68.80758,37.29022],[68.81016,37.30619],[68.82555,37.31547],[68.84369,37.31666],[68.86438,37.30497],[68.87488,37.28947],[68.88733,37.27314],[68.89624,37.26972],[68.90728,37.26866],[68.92152,37.27394],[68.92575,37.27947],[68.91897,37.28605],[68.90516,37.29358],[68.90058,37.30572],[68.89191,37.31555],[68.88616,37.32372],[68.89035,37.32844],[68.89746,37.33066],[68.90644,37.32805],[68.9173,37.323],[68.92116,37.31889],[68.93228,37.32025],[68.94438,37.32155],[68.95041,37.32141],[68.96041,37.31955],[68.97333,37.31605],[68.98427,37.31258],[68.9971,37.30666],[69.00794,37.30077],[69.01852,37.28847],[69.02422,37.27953],[69.02391,37.2715],[69.02972,37.26575],[69.0433,37.25338],[69.06192,37.24089],[69.08047,37.22758],[69.09014,37.21772],[69.1016,37.20377],[69.11405,37.18822],[69.12264,37.17677],[69.12647,37.17186],[69.1343,37.16686],[69.14122,37.16427],[69.15008,37.16002],[69.15483,37.1535],[69.16072,37.15013],[69.17266,37.14822],[69.18164,37.14638],[69.18741,37.14061],[69.19625,37.13558],[69.20896,37.12802],[69.22238,37.11244],[69.23114,37.10577],[69.23997,37.10152],[69.24883,37.0973],[69.25592,37.09872],[69.26605,37.10166],[69.2783,37.10694],[69.28555,37.11238],[69.28771,37.11633],[69.29872,37.11602],[69.31886,37.11791],[69.32939,37.12966],[69.35028,37.14916],[69.35864,37.15777],[69.37005,37.16627],[69.38522,37.16908],[69.39841,37.17272],[69.41433,37.19236],[69.4488,37.22349],[69.45517,37.23136],[69.45549,37.23936],[69.44752,37.24039],[69.44039,37.23819],[69.42905,37.23127],[69.42402,37.23141],[69.41713,37.2348],[69.41967,37.24677],[69.42108,37.25639],[69.41649,37.26614],[69.41175,37.27269],[69.40691,37.27683],[69.40819,37.28322],[69.41041,37.28797],[69.40763,37.29366],[69.4018,37.29863],[69.39597,37.3028],[69.39708,37.30519],[69.39919,37.30752],[69.40133,37.31069],[69.40041,37.31311],[69.39749,37.3148],[69.39344,37.31411],[69.38942,37.31422],[69.38461,37.31916],[69.38458,37.32133],[69.3843,37.33522],[69.38566,37.34402],[69.39138,37.35105],[69.39205,37.35186],[69.39116,37.35511],[69.38927,37.35755],[69.38627,37.35844],[69.38163,37.35858],[69.38124,37.35858],[69.38044,37.3626],[69.38021,37.36488],[69.37975,37.36986],[69.37894,37.37469],[69.37713,37.37955],[69.37872,37.39316],[69.36716,37.40549],[69.36936,37.40947],[69.3758,37.41891],[69.37394,37.42297],[69.37613,37.42694],[69.3775,37.43491],[69.3793,37.44308],[69.38122,37.45166],[69.38733,37.45311],[69.39653,37.45608],[69.4113,37.47172],[69.41744,37.47394],[69.42755,37.47527],[69.42972,37.47844],[69.43602,37.48466],[69.4473,37.48916],[69.4486,37.49688],[69.44866,37.49716],[69.45294,37.50266],[69.45922,37.50811],[69.46863,37.51586],[69.47699,37.52286],[69.48694,37.52472],[69.48819,37.52494],[69.48952,37.53213],[69.49485,37.53919],[69.50888,37.54822],[69.51044,37.54919],[69.51339,37.56024],[69.52424,37.58499],[69.5238,37.58486],[69.52417,37.58572],[69.52539,37.58638],[69.53244,37.5903],[69.54055,37.59088],[69.5493,37.58341],[69.56227,37.58063],[69.5743,37.57866],[69.5855,37.58077],[69.60678,37.58336],[69.62088,37.58294],[69.63989,37.57919],[69.663,37.57688],[69.67925,37.57963],[69.69716,37.57427],[69.71221,37.57302],[69.71839,37.57524],[69.73694,37.58352],[69.75344,37.59105],[69.76869,37.5938],[69.77864,37.5903],[69.78552,37.58686],[69.79413,37.57697],[69.80908,37.5733],[69.81819,37.57383],[69.83283,37.58461],[69.85783,37.60069],[69.86808,37.60358],[69.87525,37.60577],[69.88466,37.61269],[69.89492,37.61558],[69.90808,37.61677],[69.92697,37.61058],[69.93872,37.60377],[69.9453,37.59394],[69.94797,37.58663],[69.94921,37.57133],[69.95388,37.56397],[69.96194,37.56372],[69.97613,37.56486],[69.99524,37.56425],[69.99605,37.56022],[70.00475,37.55272],[70.01652,37.54591],[70.02119,37.54655],[70.0313,37.54772],[70.03472,37.54691],[70.04155,37.54269],[70.04344,37.54022],[70.0466,37.54252],[70.05378,37.54469],[70.05683,37.54541],[70.06183,37.54444],[70.06663,37.54027],[70.07444,37.53519],[70.07836,37.53266],[70.08633,37.5308],[70.09233,37.5298],[70.10214,37.52466],[70.14025,37.52097],[70.14341,37.52327],[70.14497,37.52444],[70.14655,37.52558],[70.14978,37.52949],[70.15697,37.53166],[70.16383,37.52822],[70.16789,37.52888],[70.1703,37.53602],[70.17614,37.55108],[70.1768,37.55327],[70.18103,37.56697],[70.191,37.56502],[70.20703,37.56647],[70.21028,37.56677],[70.21052,37.57158],[70.20666,37.57491],[70.20508,37.57775],[70.20505,37.57777],[70.20391,37.57983],[70.205,37.58141],[70.21997,37.57849],[70.22208,37.58002],[70.21944,37.58733],[70.21386,37.59635],[70.21499,37.59872],[70.22333,37.60324],[70.25005,37.61197],[70.25283,37.60786],[70.25978,37.60522],[70.26388,37.60669],[70.26819,37.61136],[70.2663,37.63047],[70.26558,37.63794],[70.26589,37.64352],[70.27016,37.64822],[70.27838,37.65033],[70.27952,37.65269],[70.27922,37.66555],[70.28138,37.66869],[70.28455,37.671],[70.28971,37.67322],[70.29108,37.67958],[70.29113,37.68038],[70.29841,37.68416],[70.30366,37.688],[70.30613,37.69591],[70.3003,37.70013],[70.29358,37.7068],[70.29091,37.7133],[70.2975,37.72272],[70.29753,37.72316],[70.2976,37.72511],[70.29513,37.73483],[70.29341,37.7405],[70.29183,37.74858],[70.29483,37.76614],[70.29196,37.76944],[70.28516,37.7745],[70.27944,37.78111],[70.2758,37.78847],[70.2761,37.79408],[70.28111,37.81155],[70.27733,37.8165],[70.26258,37.82422],[70.24166,37.83055],[70.21258,37.83555],[70.19674,37.84252],[70.18261,37.86225],[70.18064,37.86991],[70.17758,37.88169],[70.17466,37.92188],[70.17744,37.93624],[70.17991,37.94419],[70.18305,37.94649],[70.18808,37.94552],[70.20063,37.93386],[70.20413,37.92333],[70.21003,37.91991],[70.21208,37.92063],[70.2135,37.9278],[70.21577,37.93255],[70.23332,37.93838],[70.24866,37.94108],[70.26569,37.93727],[70.27169,37.93547],[70.27805,37.94086],[70.27441,37.94822],[70.26992,37.9588],[70.26638,37.96855],[70.2656,37.97258],[70.26569,37.97419],[70.27669,37.97141],[70.2816,37.96883],[70.2888,37.97019],[70.29086,37.97091],[70.29227,37.97808],[70.29252,37.98288],[70.29775,37.98513],[70.30483,37.98489],[70.30825,37.99197],[70.31658,37.99572],[70.32583,37.9978],[70.33041,38.00727],[70.33702,38.01666],[70.34433,38.02041],[70.34958,38.02344],[70.35197,38.02977],[70.36027,38.0335],[70.36483,38.04216],[70.36536,38.05177],[70.36758,38.05491],[70.3748,38.05708],[70.39688,38.07075],[70.41877,38.08038],[70.42163,38.08572],[70.42297,38.08816],[70.42558,38.09299],[70.43294,38.09755],[70.44838,38.10102],[70.4658,38.10361],[70.4753,38.10969],[70.48371,38.115],[70.4981,38.11769],[70.50138,38.12158],[70.50174,38.1233],[70.50277,38.12794],[70.49891,38.14894],[70.50369,38.16161],[70.51294,38.18055],[70.51999,38.19713],[70.52903,38.2043],[70.53067,38.20558],[70.53416,38.21347],[70.53844,38.23419],[70.55175,38.25297],[70.55844,38.26313],[70.56586,38.26769],[70.5878,38.2773],[70.59727,38.28258],[70.60166,38.28802],[70.6018,38.3073],[70.60866,38.31988],[70.60541,38.33174],[70.60446,38.33527],[70.60549,38.3408],[70.60597,38.34324],[70.6123,38.34702],[70.62258,38.34825],[70.65094,38.34558],[70.6573,38.34936],[70.66263,38.35319],[70.66791,38.35619],[70.67813,38.35974],[70.68455,38.362],[70.69,38.36741],[70.69052,38.37622],[70.68994,38.38344],[70.68205,38.38774],[70.67424,38.39014],[70.67302,38.39049],[70.6735,38.39849],[70.6781,38.40716],[70.68533,38.40941],[70.68955,38.41075],[70.7018,38.41108],[70.709,38.4108],[70.71605,38.41055],[70.72847,38.4133],[70.73997,38.41872],[70.74108,38.41925],[70.74972,38.42694],[70.75972,38.44019],[70.7653,38.448],[70.76953,38.45024],[70.77664,38.44997],[70.78255,38.44655],[70.79341,38.44049],[70.79369,38.44047],[70.80149,38.43938],[70.80864,38.43914],[70.81383,38.44052],[70.81816,38.44438],[70.81933,38.44675],[70.8265,38.44727],[70.84024,38.43872],[70.842,38.43383],[70.84291,38.43219],[70.84596,38.43208],[70.85136,38.43666],[70.85399,38.44619],[70.85541,38.45258],[70.86069,38.45558],[70.86722,38.46175],[70.87347,38.46391],[70.88255,38.46194],[70.89155,38.45919],[70.89638,38.455],[70.89685,38.44614],[70.89805,38.43897],[70.89833,38.43724],[70.90405,38.43061],[70.91208,38.42869],[70.926,38.42577],[70.92619,38.42575],[70.93397,38.43586],[70.93911,38.43647],[70.94105,38.43477],[70.95022,38.43441],[70.95658,38.43816],[70.95739,38.45097],[70.95372,38.45755],[70.94391,38.46355],[70.94441,38.47155],[70.96683,38.47066],[70.9763,38.47511],[70.98383,38.48122],[70.98908,38.48341],[70.99305,38.48166],[70.99966,38.47338],[71.00441,38.46758],[71.01133,38.46408],[71.0183,38.46138],[71.02114,38.45808],[71.02146,38.45672],[71.02153,38.45652],[71.02278,38.45158],[71.02616,38.44102],[71.03414,38.42224],[71.04064,38.41236],[71.04219,38.40508],[71.04483,38.39855],[71.05175,38.39505],[71.05813,38.39588],[71.06099,38.39627],[71.06463,38.40497],[71.07089,38.40711],[71.07325,38.41183],[71.07961,38.41558],[71.08889,38.41683],[71.09505,38.41736],[71.09794,38.41485],[71.09919,38.40274],[71.10308,38.40019],[71.11016,38.39911],[71.11633,38.39966],[71.11941,38.40033],[71.1213,38.39783],[71.12608,38.39283],[71.13019,38.39347],[71.13571,38.39966],[71.14341,38.39291],[71.14305,38.38733],[71.14894,38.38386],[71.15489,38.38122],[71.15997,38.381],[71.16291,38.37927],[71.16642,38.3703],[71.16872,38.35897],[71.17514,38.34827],[71.18174,38.33824],[71.1868,38.33977],[71.19125,38.34072],[71.193,38.34111],[71.19877,38.33605],[71.20144,38.33033],[71.20224,38.32708],[71.21616,38.32169],[71.22724,38.31963],[71.24013,38.31427],[71.24797,38.30994],[71.25708,38.30875],[71.26824,38.30827],[71.27644,38.30872],[71.2948,38.30875],[71.29963,38.30533],[71.30455,38.30272],[71.3188,38.30211],[71.32177,38.30119],[71.32744,38.29452],[71.32716,38.29066],[71.32705,38.28891],[71.32666,38.28333],[71.3273,38.27766],[71.32772,38.26883],[71.33274,38.2678],[71.34796,38.26716],[71.35394,38.2653],[71.35961,38.25864],[71.36491,38.24716],[71.36724,38.23663],[71.3645,38.22633],[71.36411,38.22072],[71.36694,38.21738],[71.37061,38.21161],[71.37136,38.20755],[71.3678,38.2005],[71.36347,38.19666],[71.36174,38.1863],[71.3618,38.17266],[71.3635,38.16775],[71.36616,38.16202],[71.36386,38.15811],[71.35935,38.15189],[71.35005,38.14988],[71.34177,38.14783],[71.34066,38.14541],[71.33702,38.13758],[71.33294,38.1225],[71.32744,38.11633],[71.32277,38.10769],[71.31852,38.09022],[71.31747,38.075],[71.3125,38.06158],[71.30149,38.04919],[71.29066,38.03922],[71.28538,38.03622],[71.28678,38.02955],[71.28808,38.02344],[71.28844,38.02166],[71.28497,38.01538],[71.27764,38.01169],[71.2743,38.0078],[71.274,38.00299],[71.27674,37.99885],[71.27424,37.99174],[71.27116,37.99108],[71.26597,37.98969],[71.26672,37.98563],[71.26905,37.97511],[71.26819,37.9623],[71.26686,37.95755],[71.2645,37.95283],[71.26108,37.94736],[71.26017,37.93375],[71.25811,37.93302],[71.25305,37.93325],[71.24783,37.93105],[71.24847,37.92541],[71.25336,37.92277],[71.25814,37.91858],[71.26602,37.91502],[71.27319,37.91633],[71.28341,37.91749],[71.28922,37.9285],[71.2913,37.92919],[71.29169,37.92916],[71.29333,37.92911],[71.31052,37.91322],[71.31019,37.91264],[71.3098,37.9121],[71.31324,37.909],[71.31697,37.90402],[71.32233,37.89336],[71.32683,37.88513],[71.33177,37.88333],[71.34014,37.88697],[71.35658,37.89027],[71.36616,37.89708],[71.37249,37.90083],[71.38475,37.90191],[71.40305,37.90272],[71.41574,37.91019],[71.42927,37.91522],[71.44388,37.921],[71.46128,37.92344],[71.47908,37.93149],[71.49292,37.94052],[71.50158,37.94819],[71.51303,37.95249],[71.52938,37.95416],[71.54433,37.9503],[71.55186,37.94191],[71.56644,37.93325],[71.57824,37.92789],[71.58372,37.91961],[71.58535,37.91391],[71.58538,37.90027],[71.58486,37.89308],[71.58816,37.88247],[71.58872,37.87602],[71.59027,37.86952],[71.58977,37.86233],[71.58508,37.85372],[71.58438,37.85138],[71.58244,37.845],[71.58158,37.833],[71.58386,37.82244],[71.58821,37.81261],[71.5908,37.80608],[71.59027,37.79886],[71.58908,37.7965],[71.5828,37.79358],[71.5671,37.78625],[71.55063,37.77986],[71.53507,37.76638],[71.52994,37.75741],[71.53527,37.74505],[71.54247,37.73972],[71.54472,37.73391],[71.54497,37.73102],[71.54675,37.70949],[71.54091,37.70333],[71.53971,37.69994],[71.53605,37.69127],[71.52794,37.67638],[71.52383,37.6613],[71.52427,37.65325],[71.52588,37.64755],[71.52236,37.64049],[71.51977,37.63258],[71.51833,37.62622],[71.51349,37.61519],[71.51216,37.61041],[71.50433,37.59952],[71.50436,37.59936],[71.5056,37.58902],[71.50489,37.5786],[71.50336,37.57147],[71.49944,37.55877],[71.50011,37.55394],[71.4978,37.55002],[71.4953,37.54291],[71.49394,37.53813],[71.49469,37.53411],[71.49485,37.53394],[71.49942,37.52986],[71.50011,37.52502],[71.50096,37.52013],[71.50155,37.51691],[71.50316,37.51547],[71.5063,37.51269],[71.50714,37.51025],[71.5078,37.50539],[71.51489,37.49144],[71.52047,37.48474],[71.52302,37.47822],[71.51921,37.46714],[71.51347,37.45697],[71.50922,37.45394],[71.5038,37.44855],[71.50169,37.44702],[71.49458,37.40316],[71.49222,37.39847],[71.48722,37.39869],[71.4823,37.4005],[71.47799,37.39669],[71.47444,37.3888],[71.47311,37.38405],[71.47783,37.37983],[71.48558,37.37547],[71.48835,37.37213],[71.48899,37.36647],[71.48566,37.34347],[71.48508,37.33933],[71.48664,37.33286],[71.49008,37.32466],[71.49733,37.31308],[71.499,37.30819],[71.49475,37.29072],[71.49019,37.26841],[71.48371,37.24783],[71.47647,37.23047],[71.47308,37.2265],[71.46661,37.21886],[71.459,37.21036],[71.45649,37.20325],[71.45716,37.18394],[71.45188,37.18016],[71.45114,37.17933],[71.44644,37.17397],[71.44574,37.16436],[71.44694,37.15224],[71.4455,37.14588],[71.44305,37.13958],[71.44244,37.13077],[71.44005,37.12525],[71.43922,37.11322],[71.44078,37.10675],[71.44144,37.10189],[71.4356,37.09008],[71.42983,37.07911],[71.4273,37.07119],[71.4258,37.06402],[71.42719,37.05511],[71.43103,37.05255],[71.43597,37.05152],[71.43663,37.04666],[71.43819,37.04016],[71.44674,37.03336],[71.44841,37.0315],[71.45124,37.0283],[71.45791,37.02083],[71.4593,37.01191],[71.46069,37.0078],[71.46263,37.00213],[71.46594,36.99233],[71.46633,36.9835],[71.46591,36.97708],[71.46275,36.9748],[71.45697,36.96383],[71.45913,36.95166],[71.46677,36.94649],[71.47716,36.93864],[71.47916,36.93711],[71.48336,36.92569],[71.48572,36.9213],[71.48874,36.91661],[71.49722,36.909],[71.50566,36.90058],[71.51158,36.88505],[71.5193,36.86702],[71.52541,36.85388],[71.53536,36.83897],[71.54111,36.82105],[71.54824,36.80866],[71.55033,36.79572],[71.55547,36.78344],[71.55899,36.77683],[71.55913,36.76477],[71.55941,36.764],[71.55997,36.76233],[71.56058,36.75669],[71.56533,36.75325],[71.57091,36.74739],[71.57836,36.7398],[71.58461,36.72905],[71.59522,36.72375],[71.60388,36.71936],[71.61638,36.71233],[71.61897,36.70661],[71.62344,36.69916],[71.62708,36.69416],[71.63591,36.69216],[71.64675,36.69005],[71.65149,36.68661],[71.65805,36.68069],[71.66683,36.67786],[71.69866,36.67638],[71.7125,36.67413],[71.72366,36.67683],[71.73461,36.6763],[71.74758,36.67649],[71.75677,36.67927],[71.78258,36.67727],[71.8078,36.68088],[71.83022,36.68705],[71.85205,36.69886],[71.86477,36.70872],[71.86472,36.70791],[71.87322,36.71472],[71.88569,36.72135],[71.89566,36.73455],[71.90139,36.7386],[71.90141,36.73863],[71.90305,36.7398],[71.94725,36.75616],[71.95842,36.77169],[71.96575,36.77616],[71.97119,36.7823],[71.97941,36.78513],[71.99091,36.7918],[72.00553,36.79991],[72.01049,36.81252],[72.01366,36.8148],[72.0298,36.81641],[72.03402,36.81941],[72.04477,36.82933],[72.04714,36.83402],[72.05069,36.83486],[72.06147,36.83874],[72.09525,36.84405],[72.09788,36.84416],[72.09896,36.84433],[72.10619,36.84719],[72.11558,36.86519],[72.13472,36.8795],[72.14839,36.8863],[72.1728,36.90572],[72.2061,36.92172],[72.23219,36.93486],[72.25833,36.9488],[72.2863,36.96022],[72.31872,36.97705],[72.37305,36.99191],[72.39966,36.99858],[72.42422,37.00452],[72.44705,37.00172],[72.47274,36.99713],[72.48786,36.99794],[72.50283,36.99716],[72.51694,36.99802],[72.52827,37.00144],[72.54677,37.00688],[72.55889,37.00783],[72.59169,37.01652],[72.60655,37.02616],[72.6218,37.02855],[72.63272,37.02716],[72.6503,37.02138],[72.65916,37.0193],[72.67033,37.02111],[72.67563,37.02622],[72.67974,37.03747],[72.68605,37.05241],[72.69733,37.06708],[72.70122,37.0773],[72.71205,37.09275],[72.71347,37.09452],[72.71733,37.09905],[72.7383,37.12352],[72.76947,37.18211],[72.78322,37.20144],[72.79447,37.2153],[72.80525,37.22352],[72.8178,37.22927],[72.83789,37.22897],[72.85927,37.23177],[72.88099,37.2386],[72.89808,37.24972],[72.92894,37.27622],[72.94969,37.28699],[72.99727,37.30119],[73.04122,37.30833],[73.0753,37.31763],[73.09046,37.32961],[73.10541,37.36091],[73.12239,37.37038],[73.13153,37.38191],[73.13678,37.39527],[73.1413,37.40066],[73.15605,37.40783],[73.18499,37.40453],[73.204,37.40263],[73.21747,37.40666],[73.23872,37.41827],[73.24285,37.43008],[73.26511,37.44163],[73.28105,37.45035],[73.29033,37.45222],[73.29972,37.45569],[73.30841,37.46241],[73.30913,37.46235],[73.3235,37.46149],[73.3343,37.45844],[73.34627,37.45694],[73.35939,37.45694],[73.36003,37.45288],[73.36119,37.44397],[73.36769,37.43797],[73.36853,37.43833],[73.39616,37.45072],[73.42994,37.46638],[73.45363,37.47139],[73.47689,37.47158],[73.50127,37.47069],[73.51008,37.47036],[73.53855,37.46219],[73.55477,37.45233],[73.56991,37.44175],[73.59191,37.43961],[73.63797,37.43594],[73.64878,37.43286],[73.66011,37.43536],[73.67138,37.43708],[73.70363,37.43666],[73.73283,37.43563],[73.75597,37.435],[73.76274,37.43213],[73.76775,37.42136],[73.7685,37.38833],[73.76847,37.35777],[73.7673,37.346],[73.76658,37.33858],[73.75205,37.32422],[73.73613,37.31636],[73.72072,37.3133],[73.70047,37.31216],[73.67694,37.3088],[73.66061,37.30661],[73.65544,37.30533],[73.65013,37.30244],[73.64533,37.28424],[73.63786,37.27988],[73.62474,37.27988],[73.61761,37.27872],[73.61296,37.27258],[73.61219,37.26458],[73.61741,37.25622],[73.62733,37.24433],[73.65158,37.23477],[73.65705,37.23927],[73.67283,37.24633],[73.68399,37.24722],[73.7108,37.24313],[73.72733,37.23727],[73.7393,37.22605],[73.746,37.22241],[73.75208,37.22283],[73.76055,37.22711],[73.76897,37.23061],[73.79188,37.22835],[73.81813,37.22908],[73.83255,37.23219],[73.84036,37.23975],[73.84722,37.24816],[73.85285,37.25422],[73.86344,37.25919],[73.89408,37.2733],[73.90194,37.27505],[73.91366,37.27769],[73.92308,37.28111],[73.92691,37.27925],[73.93761,37.27533],[73.94552,37.27399],[73.94994,37.27774],[73.95674,37.28536],[73.9635,37.29216],[73.97374,37.29391],[73.98349,37.29085],[73.99527,37.28766],[74,37.28736],[74.00716,37.28811],[74.02288,37.30463],[74.02966,37.30613],[74.04019,37.30049],[74.04582,37.30172],[74.05899,37.31277],[74.09983,37.32641],[74.1015,37.3268],[74.1433,37.33583],[74.14614,37.33988],[74.14566,37.35228],[74.16402,37.34266],[74.18483,37.33436],[74.19921,37.33441],[74.21191,37.34058],[74.22225,37.34802],[74.22922,37.36102],[74.2416,37.36763],[74.24502,37.37172],[74.24586,37.37544],[74.24322,37.37966],[74.22819,37.39083],[74.2263,37.39625],[74.23661,37.41447],[74.246,37.41241],[74.25883,37.40688],[74.26989,37.40538],[74.29116,37.39866],[74.30655,37.39672],[74.32372,37.3978],[74.33102,37.40002],[74.34469,37.41633],[74.356,37.41875],[74.36755,37.41819],[74.37702,37.415],[74.38236,37.40586],[74.38324,37.3983],[74.38942,37.39333],[74.40039,37.3893],[74.42461,37.38822],[74.45649,37.39994],[74.46739,37.40024],[74.48458,37.39374],[74.51738,37.39722],[74.52597,37.40177],[74.54405,37.39855],[74.55325,37.39485],[74.55733,37.39047],[74.5578,37.38085],[74.56222,37.37947],[74.57519,37.38116],[74.58828,37.38436],[74.60544,37.38555],[74.6255,37.38344],[74.64174,37.38527],[74.65814,37.39094],[74.68258,37.40414],[74.7068,37.3805],[74.78744,37.35349],[74.79502,37.35094],[74.80305,37.34719],[74.81219,37.34027],[74.82047,37.33722],[74.82969,37.32916],[74.84777,37.29464],[74.87127,37.26819],[74.87944,37.2511],[74.87855,37.23569],[74.89203,37.23294],[74.90583,37.23287],[74.91411,37.23639],[74.91722,37.2417],[74.91208,37.24701],[74.91559,37.25678],[74.91909,37.26108],[74.91374,37.26777],[74.91113,37.27501],[74.92605,37.28375],[74.93214,37.28239],[74.93998,37.2858],[74.94254,37.28915],[74.95127,37.2914],[74.9631,37.28758],[74.9697,37.29031],[74.97973,37.2854],[75.00718,37.29195],[75.02606,37.29796],[75.03275,37.30233],[75.04468,37.30588],[75.0518,37.30343],[75.06242,37.30616],[75.06362,37.31108],[75.07349,37.31162],[75.07739,37.3149],[75.08746,37.31517],[75.09685,37.31818],[75.11001,37.31463],[75.12318,37.31435],[75.12894,37.3241],[75.12166,37.33057],[75.12151,37.34024],[75.11503,37.34592],[75.10546,37.3576],[75.10411,37.36072],[75.09452,37.37011],[75.10218,37.37612],[75.11122,37.37777],[75.11487,37.3838],[75.12298,37.38574],[75.12896,37.39072],[75.13013,37.39898],[75.14297,37.40287],[75.15307,37.40895],[75.14627,37.4166],[75.14772,37.42099],[75.13961,37.43521],[75.13357,37.44289],[75.12884,37.44373],[75.12548,37.44838],[75.12466,37.46492],[75.10999,37.47293],[75.10399,37.4715],[75.09473,37.485],[75.08907,37.48515],[75.08272,37.49401],[75.08384,37.49749],[75.07878,37.50641],[75.07415,37.50738],[75.0632,37.51995],[75.06188,37.52549],[75.05718,37.52458],[75.04779,37.50806],[75.03312,37.50061],[75.0264,37.50829],[75.01926,37.50941],[75.0183,37.51707],[75.01103,37.52482],[75.00129,37.52452],[74.98869,37.53482],[74.98123,37.53478],[74.97378,37.53909],[74.96456,37.53891],[74.95489,37.54808],[74.95553,37.55345],[74.94415,37.55337],[74.93193,37.56857],[74.93483,37.57615],[74.9305,37.58617],[74.93903,37.60241],[74.92543,37.61285],[74.92695,37.62274],[74.92311,37.62946],[74.91085,37.63538],[74.90752,37.64346],[74.90191,37.64846],[74.90179,37.65617],[74.89606,37.6629],[74.90265,37.67786],[74.933,37.69202],[74.92216,37.70373],[74.93466,37.71708],[74.94744,37.71821],[74.95061,37.72477],[74.96106,37.72974],[74.96687,37.75164],[74.98487,37.7518],[74.98984,37.76174],[74.99644,37.76154],[75.00098,37.76895],[75.00964,37.76985],[75.01019,37.77735],[75.00594,37.77888],[74.98642,37.80778],[74.979,37.80584],[74.96609,37.8104],[74.95318,37.80737],[74.94576,37.81519],[74.94396,37.82404],[74.92522,37.82766],[74.92242,37.83887],[74.9131,37.85468],[74.91916,37.86225],[74.92867,37.8682],[74.93199,37.87821],[74.93777,37.88131],[74.93702,37.89634],[74.92967,37.90013],[74.91957,37.90012],[74.91221,37.9077],[74.92065,37.9169],[74.91664,37.92717],[74.92202,37.93623],[74.91778,37.94312],[74.91927,37.95131],[74.9132,37.95516],[74.91411,37.9621],[74.90748,37.9647],[74.90862,37.97045],[74.91522,37.97487],[74.91715,37.98547],[74.91289,37.99769],[74.9186,38.00693],[74.91537,38.01455],[74.91648,38.02438],[74.90648,38.03395],[74.89821,38.03271],[74.89268,38.03687],[74.88498,38.02322],[74.86903,38.02554],[74.86656,38.03076],[74.86669,38.03769],[74.85543,38.04359],[74.85175,38.05007],[74.8522,38.05709],[74.85652,38.06139],[74.85383,38.06909],[74.84495,38.07463],[74.83916,38.07259],[74.83406,38.07327],[74.82695,38.08245],[74.82052,38.08568],[74.81763,38.10026],[74.81954,38.10673],[74.8165,38.12021],[74.81827,38.12937],[74.80527,38.13813],[74.806,38.14742],[74.79786,38.15468],[74.8031,38.16589],[74.8056,38.17981],[74.80303,38.18767],[74.8034,38.198],[74.80098,38.20168],[74.7704,38.19619],[74.76077,38.2058],[74.7532,38.21488],[74.73393,38.21495],[74.71055,38.21287],[74.70659,38.22138],[74.69783,38.22827],[74.69541,38.2647],[74.70569,38.28254],[74.70362,38.29738],[74.69331,38.30845],[74.68831,38.3314],[74.66546,38.38021],[74.69529,38.42477],[74.665,38.43574],[74.65119,38.4467],[74.61747,38.44853],[74.50959,38.47187],[74.2849,38.59747],[74.25908,38.60175],[74.18643,38.64091],[74.12195,38.64171],[74.11515,38.6114],[74.09666,38.61247],[74.07679,38.60926],[74.07477,38.58672],[74.06315,38.57706],[74.07835,38.55131],[74.09075,38.54863],[74.08665,38.53763],[74.07844,38.53092],[74.0431,38.54387],[74.00675,38.53219],[74.00813,38.52404],[73.99441,38.52232],[73.97658,38.53609],[73.95668,38.53411],[73.92579,38.5418],[73.91928,38.55432],[73.90504,38.56487],[73.89766,38.58402],[73.88025,38.58565],[73.86147,38.57869],[73.83101,38.59802],[73.79849,38.61575],[73.80933,38.63779],[73.80239,38.64961],[73.80368,38.66358],[73.78197,38.68116],[73.77948,38.69017],[73.77175,38.69639],[73.77414,38.70134],[73.76657,38.70587],[73.77065,38.71708],[73.74311,38.73307],[73.75333,38.7496],[73.7557,38.77072],[73.76631,38.77042],[73.76707,38.77954],[73.75135,38.80043],[73.73777,38.8251],[73.72847,38.83377],[73.72908,38.84363],[73.71047,38.84654],[73.69872,38.85159],[73.70347,38.86393],[73.69998,38.87734],[73.71092,38.88808],[73.70812,38.89669],[73.71625,38.90588],[73.734,38.91293],[73.73859,38.92757],[73.75555,38.94007],[73.76867,38.93873],[73.77904,38.94165],[73.79354,38.92909],[73.80529,38.93415],[73.81986,38.91997],[73.83031,38.91648],[73.84709,38.94848],[73.85563,38.9527],[73.84439,38.9799],[73.84289,39.00044],[73.82766,39.02098],[73.81204,39.0423],[73.79207,39.0433],[73.78582,39.0315],[73.77471,39.02604],[73.76497,39.03231],[73.74973,39.02364],[73.73717,39.03661],[73.73834,39.05277],[73.72969,39.06697],[73.71555,39.07157],[73.71103,39.0783],[73.71914,39.09603],[73.71358,39.10223],[73.72038,39.11163],[73.70627,39.12243],[73.70588,39.13535],[73.67563,39.14348],[73.68588,39.16013],[73.67781,39.16722],[73.66011,39.16473],[73.65769,39.19275],[73.65147,39.20089],[73.64287,39.20416],[73.63856,39.21537],[73.63151,39.22871],[73.61293,39.24696],[73.58534,39.23735],[73.56187,39.24795],[73.56298,39.27126],[73.54831,39.27172],[73.53776,39.27749],[73.54908,39.29034],[73.56315,39.30638],[73.55284,39.31401],[73.55145,39.33989],[73.56789,39.34705],[73.53897,39.36456],[73.52242,39.37464],[73.50727,39.37437],[73.499,39.38047],[73.52711,39.39029],[73.5566,39.39374],[73.57098,39.39825],[73.57542,39.40475],[73.59085,39.41125],[73.59238,39.42093],[73.59665,39.42531],[73.58925,39.43605],[73.59696,39.44255],[73.5952,39.45343],[73.60169,39.46007],[73.61771,39.46441],[73.62686,39.47301],[73.64586,39.47597],[73.65524,39.46834],[73.66302,39.47216],[73.67034,39.46549],[73.67904,39.46306],[73.69322,39.46499],[73.73761,39.46056],[73.78247,39.46736],[73.79711,39.46673],[73.83852,39.47272],[73.87443,39.48294],[73.87692,39.49431],[73.87254,39.49932],[73.87476,39.51146],[73.89156,39.53362],[73.87848,39.54298],[73.91548,39.56595],[73.91395,39.58966],[73.94798,39.59898],[73.94695,39.61879],[73.94179,39.63225],[73.93698,39.66023],[73.92322,39.69398],[73.92594,39.70441],[73.91076,39.72213],[73.91896,39.7257],[73.90658,39.73277],[73.90245,39.74513],[73.87288,39.74607],[73.86222,39.75815],[73.84659,39.75944],[73.8392,39.7544],[73.84003,39.76769],[73.83262,39.78098],[73.84024,39.80371],[73.84923,39.83594],[73.86647,39.84971],[73.87959,39.85293],[73.88467,39.8637],[73.90487,39.86182],[73.91511,39.88327],[73.92123,39.90683],[73.90263,39.91459],[73.94208,39.96796],[73.95819,39.97501],[73.97581,40.00503],[73.93551,40.02405],[73.93606,40.03343],[73.95447,40.03439],[73.98303,40.04894],[73.99759,40.04545],[74.00453,40.06368],[74.01833,40.07245],[74.01184,40.07972],[74.04243,40.10065],[74.06928,40.07842],[74.10458,40.08775],[74.12233,40.11161],[74.14695,40.10502],[74.16169,40.11387],[74.21625,40.12692],[74.23062,40.12153],[74.25941,40.13398],[74.27792,40.10346],[74.30605,40.11389],[74.34289,40.09123],[74.41213,40.1366],[74.46254,40.16349],[74.46646,40.17747],[74.48489,40.18708],[74.49647,40.20351],[74.52588,40.20873],[74.56256,40.25328],[74.59237,40.2821],[74.62864,40.2821],[74.64404,40.27215],[74.66217,40.27372],[74.68598,40.29102],[74.67751,40.29508],[74.70005,40.32224],[74.69925,40.33684],[74.69193,40.34917],[74.7185,40.34827],[74.73684,40.34318],[74.74464,40.35215],[74.77188,40.34722],[74.79089,40.3538],[74.83164,40.33974],[74.85729,40.32359],[74.88136,40.33633],[74.91229,40.34592],[74.90097,40.35526],[74.88004,40.36459],[74.85602,40.39267],[74.84538,40.40178],[74.82513,40.41402],[74.79974,40.4312],[74.7874,40.45301],[74.80786,40.45531],[74.81809,40.4878],[74.81596,40.50671],[74.83904,40.52282],[74.88374,40.50679],[74.92158,40.49284],[74.9189,40.4857],[74.95153,40.46876],[74.98829,40.45182],[75,40.45765],[75,60],[50,60],[50,44],[51.39511,37.88291]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:EX:**Kyrgyzstan, east of 75º E#UA8,9,0:**Asiatic Russia, south of 60º N and between 75º and 90º E#UN:**Kazakhstan, east of 75º E","itu_zone_number":31,"itu_zone_name_loc":[53,82.5]},"geometry":{"type":"Polygon","coordinates":[[[87.81646,49.16982],[87.82075,49.17518],[87.86135,49.17607],[87.87837,49.17001],[87.90362,49.17651],[87.9238,49.17168],[87.933,49.17943],[87.96554,49.18717],[87.98984,49.18054],[88.00435,49.20611],[88.02022,49.22988],[88.05533,49.24203],[88.05022,49.2562],[88.082,49.26329],[88.08377,49.25745],[88.1075,49.25878],[88.12712,49.27713],[88.16577,49.289],[88.15961,49.31555],[88.16994,49.3242],[88.15554,49.33642],[88.16483,49.34612],[88.16312,49.35581],[88.15834,49.36358],[88.11785,49.37671],[88.11994,49.39342],[88.14724,49.40564],[88.18552,49.41786],[88.16322,49.4423],[88.19146,49.46273],[88.22519,49.4778],[88.25922,49.48265],[88.29875,49.47145],[88.31713,49.477],[88.34102,49.49682],[88.36215,49.48631],[88.38186,49.48369],[88.40705,49.49355],[88.42126,49.48379],[88.43547,49.46867],[88.49744,49.47205],[88.51755,49.48674],[88.55232,49.48249],[88.57336,49.49787],[88.59984,49.50407],[88.61033,49.49647],[88.62632,49.49779],[88.65766,49.48149],[88.67526,49.4652],[88.73681,49.45157],[88.74974,49.4617],[88.78524,49.45665],[88.8125,49.45696],[88.82603,49.44744],[88.84379,49.44178],[88.86227,49.45591],[88.84904,49.46882],[88.86989,49.46635],[88.88251,49.4728],[88.85142,49.48928],[88.85648,49.49485],[88.87549,49.50031],[88.87401,49.54761],[88.88626,49.5557],[88.90133,49.5575],[88.90991,49.54636],[88.92672,49.54592],[88.9353,49.53033],[88.93263,49.51574],[88.96568,49.49579],[88.95203,49.48209],[88.97134,49.46125],[89.00703,49.46974],[89.03448,49.48893],[89.0585,49.47846],[89.11308,49.4973],[89.14295,49.49831],[89.15736,49.5146],[89.19341,49.52096],[89.20731,49.53751],[89.23494,49.54515],[89.22599,49.56389],[89.19231,49.58797],[89.19675,49.60268],[89.18198,49.62094],[89.18812,49.63078],[89.2428,49.64536],[89.27329,49.62921],[89.30378,49.60772],[89.34554,49.59322],[89.33511,49.58137],[89.35873,49.58256],[89.38565,49.59829],[89.384,49.60972],[89.4079,49.62166],[89.41985,49.61518],[89.43544,49.62795],[89.43087,49.63612],[89.4588,49.66598],[89.47025,49.65851],[89.50132,49.66457],[89.51791,49.67555],[89.54273,49.68119],[89.5814,49.67826],[89.67247,49.69373],[89.70536,49.72159],[89.72593,49.75504],[89.71903,49.79028],[89.67495,49.78215],[89.62389,49.8067],[89.64991,49.8248],[89.63612,49.84114],[89.61401,49.86495],[89.61398,49.87776],[89.63318,49.88526],[89.63037,49.90203],[89.60002,49.91434],[89.64509,49.92482],[89.69015,49.9406],[89.74894,49.94932],[89.80621,49.95238],[89.86348,49.95898],[89.8823,49.95056],[89.91996,49.96413],[89.96415,49.97396],[89.97543,49.97268],[89.98243,49.97562],[89.99218,49.98296],[89.999999,49.98485],[89.999999,60],[75,60],[75,40.45768],[75.00363,40.45856],[75.01755,40.4657],[75.02668,40.45952],[75.02884,40.45591],[75.03678,40.45175],[75.04316,40.45359],[75.04532,40.44955],[75.05152,40.44462],[75.05634,40.44712],[75.06253,40.447],[75.06666,40.44401],[75.0756,40.4405],[75.08454,40.44222],[75.0897,40.43445],[75.1012,40.43684],[75.10661,40.44587],[75.11446,40.44804],[75.12079,40.45487],[75.12369,40.45752],[75.1279,40.45656],[75.14065,40.46209],[75.14359,40.45754],[75.14791,40.45613],[75.15894,40.45513],[75.17066,40.45674],[75.17693,40.45421],[75.18269,40.44829],[75.19278,40.44716],[75.20149,40.4476],[75.20695,40.44424],[75.21514,40.44873],[75.21907,40.44601],[75.223,40.44538],[75.23841,40.4483],[75.23809,40.45701],[75.23915,40.46102],[75.26046,40.47115],[75.25669,40.48035],[75.26158,40.48121],[75.26442,40.48312],[75.27068,40.48137],[75.27519,40.48154],[75.28038,40.47857],[75.30237,40.49121],[75.30246,40.49645],[75.29911,40.50064],[75.30753,40.51059],[75.31972,40.51844],[75.32985,40.52108],[75.32745,40.52636],[75.3278,40.53163],[75.33295,40.53199],[75.34154,40.53078],[75.34567,40.53567],[75.35185,40.53533],[75.36198,40.54282],[75.37142,40.54821],[75.37649,40.54843],[75.38087,40.545],[75.38786,40.55111],[75.39211,40.55252],[75.40014,40.55263],[75.40885,40.55326],[75.4171,40.55717],[75.42225,40.56121],[75.42946,40.56473],[75.43358,40.57099],[75.43874,40.5749],[75.44183,40.57881],[75.44595,40.5788],[75.45695,40.59027],[75.46109,40.60174],[75.46796,40.605],[75.47759,40.60617],[75.48378,40.61197],[75.48859,40.61881],[75.50679,40.62914],[75.52842,40.63738],[75.52842,40.64041],[75.53443,40.64495],[75.54778,40.65077],[75.55975,40.65503],[75.56791,40.65417],[75.57289,40.65739],[75.57924,40.65905],[75.5849,40.66252],[75.59331,40.66444],[75.59743,40.66116],[75.60155,40.66385],[75.60326,40.66103],[75.59622,40.65415],[75.59755,40.64996],[75.59476,40.64576],[75.60192,40.64626],[75.61115,40.64623],[75.61526,40.64033],[75.61114,40.63521],[75.61766,40.63186],[75.6192,40.62811],[75.62899,40.62383],[75.63242,40.61984],[75.62714,40.61468],[75.62048,40.60066],[75.62276,40.58116],[75.62389,40.57115],[75.62137,40.5651],[75.62434,40.56062],[75.62339,40.55317],[75.62313,40.54573],[75.6263,40.5435],[75.63634,40.53241],[75.64054,40.52783],[75.63856,40.52274],[75.64315,40.51299],[75.64705,40.50533],[75.6576,40.50358],[75.66772,40.49592],[75.67303,40.49921],[75.67834,40.49989],[75.68722,40.49897],[75.68575,40.49321],[75.69253,40.48484],[75.69852,40.48585],[75.70692,40.48007],[75.71395,40.47952],[75.7242,40.47364],[75.71883,40.46568],[75.7213,40.463],[75.70674,40.45304],[75.7101,40.44441],[75.70114,40.43434],[75.69117,40.43036],[75.69046,40.42506],[75.68149,40.42168],[75.67529,40.40431],[75.66944,40.39631],[75.67047,40.38621],[75.66977,40.37455],[75.66565,40.37178],[75.66116,40.3644],[75.66475,40.35757],[75.66354,40.35545],[75.67997,40.34541],[75.68167,40.3362],[75.68611,40.33432],[75.68506,40.3237],[75.6902,40.31622],[75.69498,40.31381],[75.70004,40.30316],[75.69141,40.29941],[75.68942,40.29415],[75.69224,40.28837],[75.6906,40.28495],[75.69527,40.28454],[75.69967,40.27962],[75.70609,40.28036],[75.70976,40.28581],[75.71756,40.28759],[75.72105,40.29013],[75.72248,40.29686],[75.72907,40.30202],[75.73496,40.30614],[75.7423,40.29409],[75.74529,40.29487],[75.74884,40.29893],[75.75513,40.30246],[75.76247,40.30063],[75.76981,40.30193],[75.77303,40.30036],[75.77831,40.30035],[75.78222,40.30559],[75.78794,40.30716],[75.78955,40.31082],[75.79728,40.31107],[75.80355,40.31276],[75.80494,40.31672],[75.80771,40.31806],[75.81119,40.32441],[75.81703,40.32412],[75.82561,40.32749],[75.82707,40.32295],[75.82986,40.3212],[75.82988,40.31771],[75.83197,40.31474],[75.84475,40.31151],[75.85081,40.31016],[75.8548,40.31194],[75.86492,40.31411],[75.87025,40.31053],[75.87729,40.3127],[75.88638,40.30597],[75.89402,40.30732],[75.90098,40.30291],[75.90943,40.3028],[75.90896,40.29483],[75.91213,40.29094],[75.91711,40.29477],[75.92209,40.2944],[75.92304,40.29867],[75.92879,40.30189],[75.92806,40.30572],[75.93145,40.31165],[75.929,40.31654],[75.92518,40.318],[75.9241,40.32155],[75.92508,40.32642],[75.92351,40.32963],[75.92582,40.3315],[75.92538,40.33494],[75.93274,40.33608],[75.94535,40.34251],[75.9463,40.35104],[75.95918,40.36078],[75.96038,40.36606],[75.95358,40.36986],[75.95433,40.37575],[75.96201,40.37446],[75.97416,40.38101],[75.98689,40.37879],[75.9907,40.38128],[75.99708,40.37736],[75.99719,40.36964],[75.99964,40.36762],[76.00224,40.36922],[76.00938,40.36375],[76.0126,40.35577],[76.01868,40.35388],[76.02132,40.35304],[76.03884,40.35516],[76.04675,40.35467],[76.04714,40.35809],[76.04253,40.36477],[76.04135,40.36936],[76.04566,40.37239],[76.05273,40.37227],[76.05876,40.37476],[76.05937,40.37784],[76.06826,40.38226],[76.07715,40.38354],[76.08575,40.37485],[76.10397,40.37716],[76.11224,40.37292],[76.11808,40.37524],[76.1253,40.37496],[76.13462,40.37171],[76.13825,40.36695],[76.14933,40.36614],[76.15973,40.36585],[76.16159,40.36783],[76.16835,40.36778],[76.17752,40.37923],[76.18566,40.37944],[76.18727,40.38226],[76.196,40.38895],[76.20795,40.39291],[76.21461,40.39516],[76.21485,40.39863],[76.22768,40.40377],[76.23226,40.41466],[76.25068,40.41841],[76.25302,40.4229],[76.26243,40.42437],[76.26679,40.43085],[76.27184,40.43889],[76.27976,40.43214],[76.2863,40.42853],[76.2834,40.42149],[76.27843,40.41237],[76.29166,40.40768],[76.29656,40.40508],[76.31244,40.40561],[76.31504,40.39442],[76.32252,40.3917],[76.32794,40.38688],[76.32271,40.37958],[76.32147,40.37149],[76.31508,40.36444],[76.32291,40.36263],[76.32615,40.35576],[76.32833,40.35025],[76.33189,40.34789],[76.33557,40.33844],[76.34362,40.34073],[76.33906,40.34946],[76.34296,40.35566],[76.35315,40.36399],[76.35585,40.3747],[76.36218,40.38182],[76.36578,40.38685],[76.37194,40.38691],[76.37879,40.38907],[76.38215,40.3854],[76.38005,40.37991],[76.38344,40.37494],[76.39332,40.37807],[76.40251,40.37807],[76.4075,40.38329],[76.40974,40.3859],[76.42486,40.3859],[76.43174,40.38824],[76.43931,40.38915],[76.44755,40.39379],[76.44447,40.39716],[76.44413,40.40052],[76.45375,40.40326],[76.45445,40.41175],[76.46373,40.41606],[76.46975,40.41324],[76.47859,40.42073],[76.48125,40.42716],[76.48667,40.42853],[76.49266,40.42652],[76.49796,40.42817],[76.50513,40.42729],[76.50389,40.43359],[76.50636,40.43831],[76.50471,40.44146],[76.50703,40.44518],[76.52438,40.45681],[76.53271,40.46184],[76.53761,40.4653],[76.53506,40.46733],[76.53547,40.47244],[76.53833,40.4743],[76.53581,40.48796],[76.5404,40.49021],[76.54018,40.49691],[76.54064,40.50412],[76.53151,40.50949],[76.53711,40.51617],[76.54202,40.52076],[76.54533,40.52266],[76.54864,40.53031],[76.55184,40.5315],[76.5493,40.53912],[76.5557,40.55094],[76.5676,40.55963],[76.57664,40.56854],[76.58567,40.57275],[76.58853,40.57644],[76.59276,40.57753],[76.59741,40.57972],[76.59698,40.58343],[76.5993,40.58714],[76.60516,40.59154],[76.60416,40.60242],[76.61278,40.6107],[76.62155,40.61225],[76.62825,40.61484],[76.63701,40.61248],[76.64521,40.61893],[76.65478,40.6212],[76.65148,40.63599],[76.64818,40.6492],[76.64906,40.65708],[76.65922,40.66184],[76.65426,40.67909],[76.665,40.68694],[76.67369,40.69374],[76.67087,40.69716],[76.66637,40.70746],[76.66187,40.70943],[76.65623,40.71523],[76.65316,40.71508],[76.6501,40.71701],[76.64603,40.72503],[76.64681,40.73639],[76.64394,40.73829],[76.64107,40.748],[76.63929,40.75104],[76.6437,40.75615],[76.64083,40.7617],[76.64463,40.76568],[76.64843,40.76602],[76.65397,40.76878],[76.66849,40.77378],[76.66821,40.78339],[76.6848,40.77765],[76.69298,40.78234],[76.70185,40.78755],[76.70508,40.79678],[76.709,40.80446],[76.70915,40.80771],[76.71334,40.80934],[76.71131,40.81301],[76.72783,40.81824],[76.72167,40.82034],[76.72065,40.82424],[76.71773,40.82957],[76.71825,40.84217],[76.73202,40.84532],[76.73141,40.84799],[76.72949,40.84813],[76.72497,40.85387],[76.7277,40.85787],[76.72837,40.86343],[76.73282,40.86665],[76.73933,40.87559],[76.73861,40.89189],[76.73269,40.89594],[76.72973,40.90005],[76.73088,40.90363],[76.73482,40.90809],[76.73499,40.91247],[76.73954,40.91907],[76.74409,40.91996],[76.74923,40.9287],[76.75469,40.93282],[76.75329,40.93848],[76.75117,40.94204],[76.75146,40.94741],[76.75381,40.95355],[76.76267,40.95341],[76.76953,40.95688],[76.77432,40.95723],[76.77671,40.96018],[76.78546,40.96139],[76.79146,40.96053],[76.79469,40.96253],[76.79586,40.96869],[76.80665,40.97199],[76.80826,40.97442],[76.818,40.97667],[76.82321,40.97598],[76.8368,40.97693],[76.84559,40.97373],[76.8536,40.97707],[76.84935,40.9805],[76.85129,40.98807],[76.84761,40.99648],[76.84976,40.99996],[76.85398,41.00137],[76.86069,41.01041],[76.86672,41.01531],[76.86611,41.02142],[76.86928,41.02468],[76.87314,41.02535],[76.8805,41.02825],[76.88718,41.02493],[76.89262,41.01735],[76.90355,41.0178],[76.90938,41.02042],[76.91315,41.02044],[76.91864,41.0241],[76.92757,41.02464],[76.92662,41.02582],[76.93254,41.02959],[76.93958,41.03092],[76.94541,41.03408],[76.9454,41.03815],[76.95294,41.03963],[76.95346,41.04464],[76.95946,41.04655],[76.96029,41.05305],[76.96319,41.05852],[76.97055,41.06036],[76.98114,41.06561],[76.98899,41.06931],[76.99301,41.07204],[77.00086,41.0708],[77.00427,41.06682],[77.01282,41.06491],[77.01332,41.05842],[77.03284,41.05838],[77.04035,41.06274],[77.04772,41.06214],[77.05509,41.06259],[77.06212,41.06018],[77.06983,41.05985],[77.07764,41.06209],[77.08477,41.06279],[77.08562,41.05945],[77.09129,41.05457],[77.0985,41.05359],[77.10674,41.04854],[77.10211,41.04394],[77.10022,41.03831],[77.10734,41.03484],[77.11035,41.03138],[77.1146,41.03042],[77.11816,41.02688],[77.12322,41.02756],[77.13009,41.026],[77.13902,41.02599],[77.14143,41.01976],[77.14796,41.02027],[77.15312,41.01714],[77.16378,41.01349],[77.16723,41.01086],[77.17206,41.01185],[77.17966,41.01151],[77.18452,41.00961],[77.18539,41.02326],[77.20471,41.02244],[77.21471,41.02643],[77.21834,41.02558],[77.22256,41.02878],[77.22952,41.03043],[77.23653,41.02731],[77.24312,41.02705],[77.24504,41.02304],[77.23873,41.01643],[77.24313,41.01383],[77.25748,41.01486],[77.26429,41.01277],[77.26079,41.00991],[77.26248,41.00408],[77.26959,41.00404],[77.27602,41.00142],[77.29069,41.00372],[77.29494,41.00668],[77.30358,41.00894],[77.30619,41.00851],[77.3123,41.01089],[77.31085,41.01741],[77.31788,41.01916],[77.32215,41.02194],[77.32368,41.02446],[77.33166,41.02832],[77.33894,41.02802],[77.34288,41.03119],[77.35093,41.0354],[77.35589,41.04064],[77.36215,41.03808],[77.37356,41.0407],[77.37615,41.03264],[77.37985,41.02758],[77.38355,41.03029],[77.39129,41.03129],[77.39766,41.03385],[77.40047,41.03788],[77.40875,41.03756],[77.41427,41.03413],[77.41104,41.02933],[77.41467,41.02609],[77.42125,41.02788],[77.42548,41.02526],[77.42844,41.02104],[77.44467,41.01884],[77.44691,41.02271],[77.46031,41.02061],[77.46996,41.02158],[77.47353,41.01694],[77.46997,41.0129],[77.46642,41.0117],[77.46412,41.00231],[77.46776,40.99856],[77.47854,40.99562],[77.48451,40.99785],[77.4922,40.99646],[77.5036,40.99888],[77.51157,40.99766],[77.52492,41.00262],[77.52798,41.00032],[77.535,41.00176],[77.54133,41.0001],[77.55194,41.00453],[77.55755,41.00192],[77.56522,40.99568],[77.57358,40.99617],[77.58399,40.99252],[77.58377,41.00176],[77.58813,41.00417],[77.59695,41.00166],[77.60646,41.0095],[77.6137,41.00928],[77.61751,41.0044],[77.62405,41.00196],[77.63403,41.00729],[77.64331,41.01106],[77.64711,41.01432],[77.65186,41.00795],[77.65936,41.00157],[77.66699,41.00361],[77.67461,41.00409],[77.68781,41.00349],[77.69334,41.00684],[77.69749,41.00604],[77.701,41.00652],[77.70114,41.01007],[77.70888,41.01442],[77.71457,41.0138],[77.71957,41.0194],[77.72889,41.02178],[77.73104,41.02966],[77.7413,41.02466],[77.74643,41.02397],[77.7495,41.02122],[77.7565,41.01738],[77.76487,41.01433],[77.76884,41.01663],[77.7687,41.01997],[77.7739,41.02251],[77.77876,41.02168],[77.78119,41.02463],[77.77898,41.02741],[77.77951,41.02914],[77.78682,41.03732],[77.78711,41.04067],[77.79151,41.04297],[77.7962,41.04862],[77.80294,41.04738],[77.80872,41.04287],[77.81583,41.04434],[77.82041,41.05025],[77.8195,41.05305],[77.82479,41.05857],[77.81805,41.06597],[77.81132,41.06922],[77.80733,41.07481],[77.80059,41.09023],[77.80227,41.10966],[77.80463,41.11719],[77.80317,41.12345],[77.81,41.12998],[77.81442,41.13728],[77.83154,41.15027],[77.84043,41.15551],[77.85339,41.15719],[77.87459,41.16455],[77.88253,41.16979],[77.88635,41.17554],[77.89463,41.17871],[77.91116,41.18549],[77.91777,41.18562],[77.92186,41.18758],[77.93075,41.18591],[77.9403,41.18724],[77.95775,41.19063],[77.96352,41.18885],[77.96687,41.18473],[77.97262,41.18086],[77.98091,41.18313],[77.98301,41.18539],[77.98938,41.18717],[77.99095,41.18895],[77.99836,41.19227],[78.00618,41.19316],[78.00871,41.18973],[78.0196,41.19189],[78.02592,41.19657],[78.02744,41.20176],[78.0293,41.20256],[78.03367,41.20011],[78.03872,41.20129],[78.0546,41.21047],[78.06391,41.21196],[78.072,41.21451],[78.08902,41.22429],[78.11143,41.22598],[78.11791,41.22695],[78.12439,41.22715],[78.12748,41.23599],[78.13057,41.23915],[78.12971,41.24422],[78.13365,41.24567],[78.13314,41.24996],[78.13125,41.25218],[78.13193,41.26172],[78.13055,41.26378],[78.13329,41.27048],[78.13208,41.27796],[78.13293,41.28492],[78.13875,41.28749],[78.13863,41.29513],[78.13782,41.30483],[78.13757,41.31289],[78.1466,41.32108],[78.14807,41.32387],[78.14886,41.32976],[78.1517,41.33256],[78.1518,41.33484],[78.15756,41.33841],[78.15646,41.3492],[78.15261,41.35419],[78.14863,41.36132],[78.14533,41.36639],[78.15514,41.37389],[78.1549,41.38124],[78.17269,41.38746],[78.18808,41.39393],[78.19522,41.39371],[78.2113,41.39607],[78.21738,41.39598],[78.2262,41.40104],[78.23905,41.40035],[78.2452,41.39376],[78.25721,41.39176],[78.26303,41.39284],[78.27809,41.38842],[78.28525,41.39198],[78.29054,41.39196],[78.29358,41.38886],[78.30006,41.38628],[78.30957,41.38936],[78.31392,41.38606],[78.31622,41.38275],[78.3208,41.38078],[78.33637,41.39529],[78.34244,41.39481],[78.34959,41.39149],[78.35523,41.39163],[78.36155,41.39357],[78.36712,41.39117],[78.37608,41.39255],[78.38229,41.39135],[78.38717,41.39539],[78.3927,41.40102],[78.3893,41.40819],[78.3938,41.41259],[78.40105,41.41442],[78.40661,41.40932],[78.42433,41.41617],[78.429,41.41375],[78.43676,41.41699],[78.44201,41.41655],[78.44567,41.41325],[78.45001,41.41303],[78.46373,41.42009],[78.47813,41.42562],[78.49391,41.43062],[78.50642,41.43267],[78.50778,41.43408],[78.50528,41.43535],[78.51226,41.43933],[78.51984,41.44007],[78.52742,41.43926],[78.5326,41.44206],[78.53072,41.44604],[78.53296,41.45156],[78.53948,41.45979],[78.54601,41.46596],[78.55254,41.47008],[78.5534,41.47368],[78.557,41.47625],[78.56549,41.47978],[78.57397,41.48176],[78.58005,41.4804],[78.58054,41.47505],[78.58412,41.46866],[78.59295,41.46958],[78.59903,41.46742],[78.60711,41.46932],[78.60971,41.47225],[78.61745,41.47441],[78.62039,41.47657],[78.62882,41.47449],[78.63244,41.47138],[78.64026,41.47098],[78.64464,41.46903],[78.64972,41.47326],[78.64755,41.47767],[78.655,41.48155],[78.65799,41.49033],[78.66325,41.4996],[78.67092,41.50346],[78.67653,41.50835],[78.68191,41.51003],[78.69141,41.51067],[78.69473,41.51594],[78.70354,41.5207],[78.7031,41.52321],[78.6951,41.52468],[78.68951,41.53053],[78.69632,41.53962],[78.69939,41.5398],[78.70195,41.54605],[78.71284,41.55252],[78.7176,41.55139],[78.72342,41.55442],[78.73113,41.5549],[78.73842,41.55104],[78.7411,41.55277],[78.74722,41.55347],[78.74846,41.55642],[78.75994,41.55707],[78.77393,41.55893],[78.77714,41.56089],[78.78596,41.56187],[78.78968,41.56416],[78.79635,41.55914],[78.80517,41.55996],[78.81606,41.55874],[78.81644,41.56134],[78.82281,41.56521],[78.82438,41.57165],[78.83678,41.57142],[78.84162,41.57788],[78.85166,41.57897],[78.85365,41.5822],[78.85221,41.59056],[78.85483,41.59496],[78.86201,41.59755],[78.87487,41.59217],[78.87636,41.59493],[78.88541,41.59564],[78.88691,41.59943],[78.88491,41.60415],[78.89044,41.60856],[78.89801,41.61205],[78.9066,41.61251],[78.91124,41.61968],[78.92145,41.623],[78.91937,41.62653],[78.91945,41.63195],[78.92879,41.63262],[78.92984,41.63348],[78.92917,41.63485],[78.93076,41.63618],[78.92919,41.63803],[78.9283,41.64182],[78.93256,41.64123],[78.9363,41.63993],[78.94183,41.64497],[78.95079,41.64539],[78.95338,41.64894],[78.95913,41.65148],[78.96352,41.65043],[78.96886,41.65424],[78.97599,41.6546],[78.99067,41.66369],[78.99794,41.66043],[78.99667,41.65667],[79.00432,41.65701],[79.00614,41.65838],[79.01735,41.65701],[79.02124,41.6594],[79.0194,41.66829],[79.02536,41.66684],[79.02936,41.67048],[79.0269,41.67537],[79.02925,41.67872],[79.04424,41.68016],[79.04796,41.68523],[79.05511,41.68466],[79.059,41.68907],[79.06805,41.68808],[79.07325,41.69016],[79.08258,41.68915],[79.08819,41.69484],[79.09305,41.69665],[79.09586,41.70001],[79.1033,41.70041],[79.11143,41.70236],[79.12425,41.72214],[79.13363,41.7234],[79.14141,41.7207],[79.14977,41.7232],[79.16184,41.72624],[79.16293,41.72877],[79.173,41.72926],[79.17598,41.72746],[79.18124,41.72835],[79.18559,41.72367],[79.20642,41.72468],[79.21695,41.7262],[79.21947,41.73129],[79.22718,41.73318],[79.23077,41.73814],[79.22834,41.7414],[79.2338,41.74337],[79.2489,41.74488],[79.25198,41.74922],[79.2482,41.75459],[79.24888,41.75714],[79.25668,41.76062],[79.25989,41.76006],[79.27203,41.76411],[79.27468,41.7699],[79.27046,41.77364],[79.27197,41.77549],[79.27548,41.77309],[79.28444,41.77855],[79.29478,41.79066],[79.30897,41.79564],[79.31218,41.80062],[79.31881,41.80433],[79.32271,41.81059],[79.33475,41.80668],[79.34,41.80072],[79.3473,41.79321],[79.35323,41.79365],[79.35688,41.80026],[79.36466,41.80422],[79.37175,41.81022],[79.38182,41.81302],[79.39149,41.82415],[79.3916,41.829],[79.39732,41.83002],[79.40946,41.84127],[79.42462,41.84191],[79.4391,41.84255],[79.45083,41.84677],[79.45635,41.84734],[79.4598,41.85096],[79.46462,41.85303],[79.47399,41.85057],[79.48749,41.84402],[79.48278,41.83925],[79.4849,41.83713],[79.49726,41.83629],[79.50757,41.838],[79.53711,41.83888],[79.54423,41.83774],[79.55548,41.84274],[79.5681,41.84263],[79.57316,41.84711],[79.59394,41.85302],[79.59892,41.85535],[79.60562,41.85589],[79.61438,41.86001],[79.61704,41.86603],[79.62176,41.87205],[79.61747,41.87541],[79.61946,41.87883],[79.62389,41.88079],[79.63126,41.8874],[79.63322,41.89121],[79.63725,41.8935],[79.6475,41.89344],[79.65775,41.89542],[79.66835,41.8946],[79.67963,41.89684],[79.68572,41.89724],[79.69318,41.89815],[79.69951,41.89587],[79.70447,41.89564],[79.71819,41.89975],[79.72092,41.90233],[79.72606,41.90004],[79.7312,41.90082],[79.74012,41.90288],[79.74664,41.90058],[79.75316,41.90186],[79.76689,41.89164],[79.77101,41.89267],[79.77715,41.9001],[79.78365,41.901],[79.7881,41.91162],[79.7963,41.91317],[79.79559,41.9165],[79.80314,41.92072],[79.80279,41.92513],[79.80776,41.93091],[79.80244,41.93669],[79.80481,41.94029],[79.81266,41.94542],[79.81365,41.94928],[79.81827,41.94967],[79.81611,41.95881],[79.81739,41.96539],[79.82136,41.96755],[79.82506,41.96582],[79.83137,41.96955],[79.83418,41.97728],[79.84177,41.9809],[79.84762,41.97862],[79.84995,41.98329],[79.85227,41.9854],[79.84532,42.00027],[79.84806,42.00295],[79.84805,42.00717],[79.84596,42.01357],[79.85004,42.01871],[79.85649,42.02266],[79.87461,42.02917],[79.87921,42.03064],[79.88037,42.03415],[79.88782,42.03514],[79.89595,42.03459],[79.90992,42.04221],[79.92274,42.04169],[79.93122,42.03964],[79.94987,42.0455],[79.96092,42.04384],[79.96921,42.04065],[79.97635,42.04537],[79.99021,42.04417],[79.99509,42.04076],[80.01778,42.04211],[80.02466,42.04891],[80.03841,42.04755],[80.0428,42.04921],[80.05158,42.04588],[80.06655,42.04408],[80.07362,42.04687],[80.08471,42.0424],[80.09649,42.03946],[80.10562,42.03856],[80.11818,42.03765],[80.12903,42.03496],[80.13919,42.03124],[80.14738,42.03376],[80.14869,42.03576],[80.15447,42.03521],[80.16158,42.03699],[80.16663,42.03519],[80.17467,42.03875],[80.18863,42.03714],[80.19915,42.03758],[80.20322,42.04079],[80.20934,42.04248],[80.21265,42.04839],[80.22043,42.05584],[80.22753,42.06329],[80.22391,42.06633],[80.21136,42.06988],[80.20481,42.07646],[80.18899,42.08229],[80.17179,42.09423],[80.16696,42.09916],[80.158,42.11275],[80.15214,42.11565],[80.14902,42.11905],[80.15115,42.12467],[80.15122,42.12978],[80.15163,42.13361],[80.14793,42.13949],[80.14395,42.14156],[80.13791,42.14821],[80.1396,42.15308],[80.1358,42.15693],[80.13093,42.1682],[80.14632,42.17012],[80.16412,42.16974],[80.16372,42.206],[80.16884,42.20951],[80.17464,42.21098],[80.1806,42.22212],[80.20074,42.22972],[80.21744,42.22817],[80.21973,42.22268],[80.22957,42.21719],[80.23381,42.21877],[80.24313,42.21803],[80.24972,42.21882],[80.25257,42.22141],[80.2616,42.22364],[80.272,42.22638],[80.27495,42.23034],[80.27893,42.232],[80.28421,42.23573],[80.28538,42.24453],[80.28084,42.2474],[80.29009,42.26024],[80.28442,42.2725],[80.27943,42.28171],[80.26772,42.28504],[80.2601,42.2927],[80.26002,42.30418],[80.26994,42.3084],[80.27044,42.31305],[80.27893,42.31487],[80.2842,42.31882],[80.27997,42.32486],[80.2758,42.32357],[80.26901,42.32766],[80.26428,42.32768],[80.25955,42.33177],[80.25277,42.33434],[80.2469,42.34105],[80.23729,42.34055],[80.23659,42.34766],[80.23246,42.34869],[80.22971,42.35327],[80.2297,42.35734],[80.22623,42.35841],[80.2289,42.36309],[80.22599,42.36635],[80.23804,42.37998],[80.23674,42.38339],[80.2399,42.38782],[80.2355,42.39224],[80.23014,42.39172],[80.22753,42.39778],[80.23144,42.4004],[80.23399,42.40402],[80.23096,42.4052],[80.22588,42.40892],[80.22327,42.40874],[80.21558,42.41311],[80.21462,42.42388],[80.20514,42.42818],[80.21036,42.4373],[80.2094,42.44338],[80.21269,42.44718],[80.21255,42.453],[80.2083,42.45756],[80.20891,42.46238],[80.20679,42.46871],[80.21617,42.47299],[80.21937,42.48132],[80.2291,42.48711],[80.23516,42.49077],[80.23608,42.49898],[80.23939,42.50146],[80.24271,42.50546],[80.24946,42.50161],[80.25896,42.5003],[80.26571,42.50328],[80.27355,42.51465],[80.27452,42.51943],[80.25963,42.51518],[80.25299,42.51852],[80.25044,42.52328],[80.23896,42.52729],[80.23435,42.52572],[80.22209,42.53213],[80.21098,42.54494],[80.20124,42.55573],[80.20031,42.56113],[80.19942,42.56295],[80.19441,42.56579],[80.1892,42.57096],[80.18565,42.57877],[80.18197,42.58123],[80.17898,42.59053],[80.17942,42.59375],[80.17775,42.60363],[80.17196,42.60921],[80.1676,42.61894],[80.16255,42.62514],[80.16206,42.63146],[80.16765,42.63985],[80.16819,42.64435],[80.16804,42.64885],[80.17461,42.65329],[80.17338,42.66057],[80.17517,42.66471],[80.17421,42.66785],[80.1782,42.67232],[80.18424,42.67628],[80.19289,42.6832],[80.20334,42.68543],[80.20528,42.68879],[80.2165,42.69013],[80.21947,42.69197],[80.22748,42.69339],[80.22931,42.69582],[80.22565,42.70252],[80.22243,42.71339],[80.23296,42.73563],[80.25378,42.78258],[80.26145,42.82446],[80.27554,42.83807],[80.32241,42.8338],[80.33358,42.82953],[80.40571,42.83258],[80.4284,42.85275],[80.50291,42.87592],[80.54704,42.88449],[80.60215,42.89507],[80.59896,42.89399],[80.59714,42.89744],[80.59763,42.90032],[80.59503,42.9037],[80.59448,42.90658],[80.59094,42.91357],[80.58076,42.91699],[80.57791,42.9188],[80.57083,42.9199],[80.56118,42.92855],[80.545,42.93368],[80.53935,42.93609],[80.52737,42.9384],[80.51229,42.9387],[80.4979,42.94202],[80.49451,42.94456],[80.48837,42.9441],[80.47472,42.9502],[80.47488,42.95185],[80.45048,42.96268],[80.43738,42.96776],[80.43454,42.9714],[80.41581,42.98269],[80.41406,42.98568],[80.40443,42.99007],[80.39274,42.99647],[80.38858,43.00373],[80.3802,43.02175],[80.393,43.02644],[80.39481,43.03616],[80.39834,43.04035],[80.39843,43.04504],[80.40582,43.05091],[80.4091,43.05729],[80.43214,43.0644],[80.43995,43.06731],[80.44296,43.06771],[80.44838,43.07263],[80.45791,43.07554],[80.46539,43.07211],[80.47355,43.0722],[80.47759,43.06903],[80.48369,43.06987],[80.48628,43.0718],[80.49448,43.07404],[80.49925,43.07878],[80.50627,43.08003],[80.50986,43.08528],[80.52058,43.08741],[80.52559,43.09073],[80.52649,43.09405],[80.5327,43.09462],[80.53824,43.10019],[80.53983,43.09838],[80.54829,43.09707],[80.55372,43.10068],[80.5564,43.10228],[80.55737,43.10689],[80.5604,43.1105],[80.56059,43.1158],[80.57259,43.11859],[80.57772,43.12739],[80.58661,43.13648],[80.59202,43.13863],[80.60208,43.13514],[80.60938,43.14217],[80.61793,43.14247],[80.62304,43.14026],[80.6297,43.14105],[80.63094,43.14576],[80.63698,43.14746],[80.64199,43.14516],[80.64771,43.14796],[80.65754,43.14977],[80.66498,43.14881],[80.6731,43.14385],[80.68367,43.14419],[80.69905,43.14303],[80.70412,43.1463],[80.71537,43.13403],[80.72277,43.13406],[80.73316,43.14071],[80.74218,43.14736],[80.75086,43.14625],[80.76481,43.14569],[80.77041,43.1404],[80.78151,43.13762],[80.7853,43.14102],[80.78841,43.14243],[80.78808,43.14708],[80.79307,43.15542],[80.79188,43.16076],[80.79672,43.16407],[80.79399,43.17048],[80.79676,43.17338],[80.80349,43.17493],[80.80747,43.17699],[80.79759,43.1846],[80.79327,43.19383],[80.787,43.20069],[80.78621,43.20305],[80.78817,43.2079],[80.78315,43.2161],[80.7826,43.22756],[80.78617,43.23602],[80.79015,43.23634],[80.78974,43.23838],[80.78568,43.24039],[80.78163,43.24791],[80.77812,43.24919],[80.77255,43.25547],[80.77171,43.25904],[80.76454,43.26667],[80.76575,43.27286],[80.76972,43.27706],[80.77342,43.2799],[80.77094,43.28975],[80.77429,43.29634],[80.77393,43.30087],[80.77837,43.30389],[80.77939,43.30841],[80.77834,43.31193],[80.76631,43.31607],[80.75722,43.31539],[80.75018,43.3192],[80.74605,43.31598],[80.73162,43.31699],[80.71789,43.3175],[80.70414,43.31903],[80.69793,43.31562],[80.68931,43.32247],[80.68344,43.32781],[80.68324,43.33251],[80.68579,43.33721],[80.69427,43.34255],[80.69589,43.3459],[80.70202,43.35032],[80.70677,43.35674],[80.7053,43.36358],[80.71692,43.3725],[80.72343,43.37497],[80.73062,43.38993],[80.73473,43.39291],[80.733,43.40288],[80.73695,43.41111],[80.73246,43.41713],[80.73484,43.42265],[80.73412,43.43418],[80.74523,43.44197],[80.75634,43.44727],[80.75665,43.4517],[80.75284,43.45763],[80.75277,43.4655],[80.72043,43.52243],[80.68741,43.57738],[80.60436,43.6998],[80.52268,43.82223],[80.52105,43.83969],[80.51941,43.85914],[80.51202,43.86634],[80.50685,43.87479],[80.51161,43.8823],[80.50808,43.90624],[80.49279,43.91503],[80.48471,43.92778],[80.4732,43.93757],[80.47628,43.94758],[80.48143,43.95611],[80.47044,43.96823],[80.45945,43.97517],[80.45257,43.98805],[80.44911,44.00889],[80.45593,44.02998],[80.44936,44.03502],[80.45475,44.04509],[80.44494,44.06722],[80.4411,44.06905],[80.44511,44.07467],[80.41582,44.0978],[80.39477,44.11157],[80.39603,44.11763],[80.40043,44.12854],[80.40141,44.13256],[80.4053,44.14369],[80.40335,44.15409],[80.4021,44.16301],[80.40187,44.16765],[80.40005,44.17003],[80.39837,44.18415],[80.39875,44.19335],[80.39779,44.19402],[80.39737,44.20161],[80.40214,44.21391],[80.40416,44.2262],[80.40483,44.23333],[80.4031,44.24169],[80.40617,44.24907],[80.40478,44.25276],[80.40587,44.2921],[80.39817,44.30397],[80.39253,44.3124],[80.39097,44.3229],[80.3901,44.33439],[80.3875,44.33876],[80.38628,44.35442],[80.38415,44.37485],[80.38068,44.382],[80.37861,44.39495],[80.37723,44.41182],[80.37103,44.41761],[80.37255,44.4219],[80.36858,44.43208],[80.36681,44.44067],[80.35817,44.4478],[80.35523,44.4565],[80.34954,44.45982],[80.35115,44.47259],[80.34727,44.48046],[80.34791,44.48294],[80.35475,44.4903],[80.36159,44.49472],[80.36738,44.50405],[80.37061,44.51141],[80.36949,44.51852],[80.36836,44.52416],[80.371,44.52789],[80.3709,44.5326],[80.37647,44.53609],[80.37822,44.54567],[80.38081,44.55094],[80.37997,44.55329],[80.38688,44.5576],[80.38554,44.56143],[80.39316,44.5681],[80.39173,44.57595],[80.39376,44.5833],[80.39167,44.59114],[80.399,44.59509],[80.40506,44.60146],[80.41182,44.60881],[80.40642,44.61328],[80.40446,44.61725],[80.39873,44.62172],[80.39642,44.62912],[80.39103,44.63175],[80.38289,44.63585],[80.38172,44.6416],[80.37765,44.64309],[80.37425,44.64823],[80.36741,44.65484],[80.35805,44.65931],[80.35075,44.66573],[80.34894,44.67191],[80.34576,44.67468],[80.34402,44.67547],[80.34397,44.68048],[80.33633,44.69001],[80.33408,44.68953],[80.31242,44.70372],[80.2882,44.709],[80.2746,44.7141],[80.26236,44.71822],[80.24875,44.72015],[80.24298,44.72136],[80.23789,44.72062],[80.22806,44.72638],[80.21891,44.73067],[80.21079,44.73765],[80.20473,44.74219],[80.20257,44.74225],[80.19149,44.75108],[80.19299,44.75579],[80.19723,44.75757],[80.19748,44.76114],[80.19352,44.76486],[80.18216,44.7796],[80.17613,44.78326],[80.17627,44.78984],[80.17313,44.79422],[80.16878,44.79435],[80.16375,44.79934],[80.16673,44.80349],[80.1648,44.80911],[80.16149,44.81277],[80.16316,44.8201],[80.16758,44.82596],[80.16684,44.83913],[80.16405,44.84159],[80.15789,44.84193],[80.15311,44.83934],[80.15315,44.83515],[80.14804,44.83144],[80.14706,44.82676],[80.12655,44.82349],[80.12457,44.81631],[80.11823,44.81317],[80.11325,44.80955],[80.10381,44.81103],[80.09644,44.8135],[80.08734,44.81182],[80.07825,44.81257],[80.07277,44.80927],[80.05974,44.80742],[80.05288,44.80156],[80.04122,44.80057],[80.03301,44.80395],[80.01939,44.79845],[80.01893,44.79355],[80.0068,44.79073],[80.00108,44.78992],[79.99604,44.79155],[79.99334,44.79416],[79.99269,44.79822],[79.99758,44.80343],[79.99912,44.81628],[79.99654,44.82036],[79.99602,44.82396],[79.98914,44.82385],[79.98226,44.83055],[79.9771,44.83166],[79.97177,44.83659],[79.96781,44.83812],[79.96642,44.84179],[79.95773,44.84405],[79.95832,44.84851],[79.95569,44.85062],[79.95198,44.84997],[79.95032,44.84834],[79.94511,44.84962],[79.94394,44.85174],[79.94689,44.85775],[79.94592,44.86589],[79.95213,44.86837],[79.95422,44.87329],[79.96184,44.8768],[79.96368,44.87896],[79.96415,44.8816],[79.9538,44.88193],[79.94208,44.88616],[79.93105,44.88673],[79.92894,44.89266],[79.91992,44.89539],[79.91365,44.90104],[79.90385,44.90115],[79.89352,44.89457],[79.88594,44.89383],[79.88807,44.90317],[79.88196,44.91106],[79.89142,44.91801],[79.90225,44.92399],[79.90538,44.92867],[79.91506,44.92731],[79.92447,44.93142],[79.92957,44.93293],[79.93467,44.9325],[79.93894,44.93776],[79.9432,44.93815],[79.94816,44.94389],[79.9448,44.94749],[79.94483,44.95196],[79.95309,44.95322],[79.95619,44.95718],[79.95654,44.96163],[79.96237,44.96312],[79.96959,44.96607],[79.9744,44.96202],[79.9846,44.96702],[79.9893,44.97882],[80.01382,44.98057],[80.01406,44.98521],[80.01831,44.98825],[80.01911,44.9913],[80.0276,44.99327],[80.03149,44.9963],[80.03412,44.99637],[80.03332,45.00031],[80.03905,45.00299],[80.0458,45.00178],[80.04972,45.00367],[80.05433,45.01235],[80.05619,45.01423],[80.06054,45.01283],[80.0649,45.01336],[80.07566,45.01007],[80.0751,45.00727],[80.08237,45.00756],[80.08497,45.00504],[80.09108,45.00718],[80.09719,45.00786],[80.09396,45.02712],[80.08798,45.02939],[80.0867,45.03307],[80.09092,45.03773],[80.08896,45.04626],[80.09689,45.04761],[80.10618,45.04531],[80.1134,45.0489],[80.11788,45.04132],[80.12286,45.03948],[80.12785,45.03957],[80.13023,45.04504],[80.13467,45.04711],[80.13944,45.0532],[80.13935,45.05761],[80.14893,45.05303],[80.15232,45.05329],[80.15674,45.04725],[80.16974,45.03757],[80.18113,45.0426],[80.18528,45.03505],[80.19149,45.02846],[80.19566,45.02717],[80.20259,45.03025],[80.21363,45.02289],[80.23189,45.03374],[80.2358,45.02972],[80.23972,45.02715],[80.25463,45.04109],[80.26002,45.0483],[80.2613,45.05405],[80.26667,45.05399],[80.27712,45.05931],[80.2855,45.06123],[80.29285,45.06655],[80.29207,45.06509],[80.31296,45.06824],[80.31722,45.07006],[80.32561,45.06945],[80.32982,45.0636],[80.32815,45.06019],[80.33041,45.0546],[80.33335,45.05338],[80.33859,45.04584],[80.34521,45.04023],[80.35955,45.03971],[80.37114,45.04308],[80.37454,45.041],[80.37898,45.04142],[80.38136,45.03989],[80.38785,45.04558],[80.39256,45.04445],[80.39869,45.04704],[80.40276,45.04721],[80.40782,45.05773],[80.41749,45.06108],[80.42717,45.06638],[80.43338,45.07254],[80.43821,45.0758],[80.44304,45.08312],[80.44236,45.09045],[80.43792,45.09535],[80.43759,45.09734],[80.44545,45.10024],[80.44918,45.1041],[80.45635,45.10626],[80.46215,45.11231],[80.47821,45.11398],[80.48418,45.12329],[80.48877,45.12679],[80.49728,45.11865],[80.49923,45.11395],[80.50599,45.11118],[80.50966,45.106],[80.51471,45.10517],[80.52802,45.10745],[80.54806,45.11101],[80.55774,45.11109],[80.56193,45.11263],[80.57528,45.10967],[80.58177,45.10573],[80.59993,45.1047],[80.60292,45.10736],[80.60729,45.10904],[80.6148,45.10782],[80.62024,45.11532],[80.62466,45.11822],[80.63305,45.11459],[80.63724,45.11616],[80.63659,45.11913],[80.64741,45.12132],[80.65549,45.12158],[80.66005,45.12461],[80.66666,45.12426],[80.67065,45.12711],[80.67739,45.12851],[80.6792,45.13227],[80.68798,45.13398],[80.6967,45.13241],[80.70518,45.14422],[80.71148,45.14625],[80.71572,45.14585],[80.72444,45.15082],[80.72605,45.15403],[80.72995,45.1537],[80.7319,45.15741],[80.73836,45.15757],[80.74346,45.16015],[80.75597,45.15319],[80.76299,45.15156],[80.76864,45.14606],[80.77497,45.14297],[80.78214,45.14625],[80.78726,45.15049],[80.79196,45.14894],[80.79461,45.15078],[80.80412,45.14681],[80.82467,45.14241],[80.83423,45.13969],[80.84509,45.13062],[80.85157,45.1266],[80.86012,45.125],[80.86624,45.12761],[80.87764,45.13127],[80.88972,45.12427],[80.89759,45.12509],[80.90007,45.12953],[80.90461,45.13301],[80.90709,45.13696],[80.91163,45.13899],[80.91468,45.14368],[80.92117,45.14499],[80.92797,45.15728],[80.94203,45.15842],[80.94648,45.16101],[80.95161,45.15997],[80.95743,45.16667],[80.96736,45.16757],[80.97383,45.16333],[80.98531,45.16072],[80.98855,45.16102],[80.99532,45.15883],[81.00575,45.16209],[81.01068,45.16196],[81.01658,45.16455],[81.02454,45.16328],[81.02938,45.16603],[81.03627,45.16684],[81.04557,45.17056],[81.05091,45.1763],[81.05694,45.17767],[81.06276,45.17256],[81.07064,45.1718],[81.07543,45.17927],[81.07491,45.18489],[81.07843,45.18673],[81.08332,45.19389],[81.0874,45.19627],[81.09353,45.19622],[81.1007,45.19956],[81.10924,45.2],[81.10777,45.20304],[81.10698,45.20947],[81.10336,45.21023],[81.09954,45.21708],[81.107,45.22206],[81.11135,45.21741],[81.12005,45.21508],[81.12955,45.21827],[81.13218,45.21807],[81.13859,45.20906],[81.14179,45.20988],[81.14912,45.20899],[81.15644,45.20521],[81.16376,45.2065],[81.17052,45.2144],[81.16628,45.22424],[81.17292,45.22605],[81.18058,45.22622],[81.18757,45.2322],[81.20496,45.2369],[81.21171,45.23326],[81.22264,45.23832],[81.22121,45.24484],[81.22831,45.24817],[81.2382,45.23995],[81.25036,45.24189],[81.25289,45.23814],[81.26102,45.23627],[81.26915,45.23681],[81.27522,45.24002],[81.28128,45.23935],[81.28838,45.2428],[81.29468,45.24742],[81.29892,45.24817],[81.30264,45.24673],[81.30704,45.24673],[81.3075,45.25399],[81.31791,45.25424],[81.33176,45.25641],[81.34252,45.25835],[81.3519,45.26077],[81.35676,45.25902],[81.36231,45.26065],[81.36887,45.25446],[81.37679,45.25262],[81.38075,45.25786],[81.38128,45.26358],[81.38902,45.26931],[81.38921,45.27068],[81.40099,45.27588],[81.40208,45.27896],[81.4087,45.28094],[81.4167,45.28099],[81.42102,45.28301],[81.42641,45.27955],[81.43426,45.28],[81.43799,45.27754],[81.4348,45.27408],[81.43767,45.26728],[81.45043,45.26218],[81.45613,45.26423],[81.45977,45.26337],[81.46567,45.26643],[81.46952,45.27095],[81.47269,45.27159],[81.47791,45.27514],[81.47987,45.27355],[81.49658,45.27582],[81.4982,45.28147],[81.50633,45.28169],[81.51516,45.28046],[81.52113,45.28186],[81.52315,45.28858],[81.52998,45.2953],[81.52785,45.30052],[81.53217,45.3059],[81.53993,45.30548],[81.54788,45.30101],[81.55309,45.30476],[81.56693,45.30597],[81.5746,45.30718],[81.57071,45.3154],[81.56842,45.31806],[81.56888,45.32555],[81.57826,45.32824],[81.58541,45.33193],[81.59119,45.33996],[81.6006,45.34205],[81.61276,45.34172],[81.61958,45.35153],[81.62434,45.35169],[81.6315,45.35595],[81.63934,45.35635],[81.65011,45.35012],[81.65523,45.35133],[81.66962,45.35134],[81.67815,45.35497],[81.67706,45.36245],[81.67941,45.36415],[81.68634,45.36345],[81.69464,45.36902],[81.70191,45.3653],[81.7027,45.36208],[81.71172,45.35789],[81.7219,45.36291],[81.72837,45.36326],[81.73414,45.36601],[81.73059,45.37224],[81.73184,45.37461],[81.73659,45.37371],[81.74789,45.37302],[81.75164,45.37474],[81.75913,45.37239],[81.76494,45.37484],[81.76869,45.37777],[81.78562,45.36782],[81.78997,45.36382],[81.79317,45.3594],[81.80233,45.35671],[81.80668,45.35547],[81.80914,45.35146],[81.81998,45.34029],[81.8206,45.33712],[81.8267,45.33394],[81.83122,45.32656],[81.83039,45.3178],[81.8365,45.31149],[81.84333,45.31002],[81.84398,45.3047],[81.85417,45.30156],[81.85543,45.29553],[81.86893,45.28792],[81.87969,45.2837],[81.88335,45.27863],[81.89926,45.25884],[81.90858,45.24483],[81.92203,45.22889],[81.93874,45.23546],[81.95361,45.23512],[81.97055,45.2343],[81.97547,45.23539],[81.97971,45.23866],[81.98526,45.2363],[81.99493,45.2325],[82.00597,45.23461],[82.00944,45.23301],[82.017,45.23777],[82.02628,45.24005],[82.04036,45.24668],[82.04174,45.25365],[82.04506,45.25414],[82.0531,45.25028],[82.06457,45.24641],[82.06746,45.2498],[82.07162,45.24932],[82.07372,45.24594],[82.07734,45.2469],[82.08165,45.24594],[82.08493,45.24714],[82.09095,45.24545],[82.08672,45.23785],[82.08112,45.23507],[82.08295,45.22909],[82.08204,45.22312],[82.08353,45.22004],[82.08839,45.21874],[82.09769,45.20769],[82.10081,45.20245],[82.11572,45.20198],[82.12445,45.21118],[82.14066,45.2165],[82.15549,45.22231],[82.17046,45.22122],[82.18475,45.22497],[82.19135,45.22329],[82.20076,45.2285],[82.21086,45.23274],[82.23313,45.23445],[82.24312,45.23119],[82.24983,45.23585],[82.25722,45.23422],[82.26758,45.24124],[82.27526,45.24126],[82.29014,45.23257],[82.29999,45.22267],[82.31384,45.22086],[82.32356,45.21131],[82.33286,45.20935],[82.3401,45.20884],[82.35352,45.2035],[82.36488,45.20154],[82.37382,45.2018],[82.38275,45.19965],[82.39101,45.19486],[82.39908,45.19283],[82.41677,45.19176],[82.42949,45.1877],[82.44925,45.18605],[82.45596,45.18731],[82.47384,45.17676],[82.56202,45.20412],[82.58223,45.22012],[82.58786,45.34449],[82.54268,45.42125],[82.43846,45.45952],[82.27888,45.53544],[82.27085,45.55042],[82.26591,45.57142],[82.25786,45.61594],[82.27042,45.62827],[82.27609,45.63187],[82.28314,45.64844],[82.28486,45.67532],[82.28169,45.68054],[82.28745,45.7083],[82.29904,45.71928],[82.30994,45.73792],[82.31389,45.75796],[82.31854,45.76314],[82.32849,45.77142],[82.33776,45.78065],[82.34189,45.79204],[82.34532,45.79625],[82.34292,45.80993],[82.34395,45.82457],[82.34705,45.83279],[82.34603,45.83815],[82.33882,45.84996],[82.33437,45.8656],[82.33026,45.88636],[82.33423,45.89109],[82.33557,45.89645],[82.33896,45.90182],[82.34099,45.9079],[82.34098,45.91694],[82.33548,45.93459],[82.3358,45.9393],[82.37593,45.96422],[82.39342,45.96665],[82.41023,45.96908],[82.42669,45.96722],[82.4562,45.97682],[82.47764,46.04964],[82.51213,46.15391],[82.55153,46.21433],[82.56759,46.24006],[82.57437,46.25012],[82.58116,46.25875],[82.60563,46.29401],[82.63697,46.34635],[82.71362,46.47395],[82.72197,46.48575],[82.72757,46.49803],[82.73466,46.50824],[82.73901,46.51846],[82.74496,46.5351],[82.76986,46.60049],[82.77416,46.63568],[82.77384,46.65937],[82.77798,46.66416],[82.78623,46.68025],[82.78831,46.69359],[82.82407,46.74598],[82.83474,46.75925],[82.84007,46.768],[82.8527,46.78695],[82.86141,46.79713],[82.86463,46.80308],[82.86672,46.81669],[82.87119,46.82467],[82.87567,46.8397],[82.89426,46.88383],[82.90191,46.8951],[82.90819,46.90897],[82.91927,46.92893],[82.91966,46.93842],[82.92131,46.94046],[82.92124,46.95192],[82.92529,46.96104],[82.92859,46.96709],[82.93174,46.9717],[82.93009,46.97819],[82.93201,46.9798],[82.92989,46.99302],[82.93672,47.00431],[82.93567,47.00691],[82.93858,47.01079],[82.93806,47.01607],[82.94216,47.01846],[82.95107,47.02038],[82.95758,47.02497],[82.96272,47.0319],[82.96718,47.03602],[82.96906,47.04229],[82.96888,47.04856],[82.97453,47.05166],[82.97743,47.05475],[82.98033,47.05527],[82.99216,47.06328],[82.99332,47.07],[82.99802,47.07781],[82.99969,47.08943],[83.00258,47.10014],[83.00547,47.10338],[83.0064,47.10616],[83.00938,47.10894],[83.00825,47.11242],[83.01003,47.11462],[83.00927,47.11643],[83.00683,47.11791],[83.00267,47.12057],[83.00912,47.12728],[83.01904,47.13052],[83.01971,47.13307],[83.01832,47.13493],[83.01973,47.13631],[83.01845,47.14212],[83.01141,47.14276],[83.0121,47.1469],[83.02103,47.15312],[83.02446,47.15621],[83.02313,47.15994],[83.02867,47.16216],[83.02601,47.16483],[83.02713,47.16751],[83.02618,47.16972],[83.02687,47.17119],[83.02894,47.17219],[83.02971,47.17508],[83.02705,47.17937],[83.02709,47.18198],[83.02405,47.18693],[83.02587,47.18958],[83.0285,47.19172],[83.02638,47.19885],[83.02529,47.19969],[83.02523,47.20187],[83.02814,47.20448],[83.02659,47.21128],[83.02382,47.21416],[83.02373,47.21496],[83.02741,47.21622],[83.02848,47.21983],[83.03039,47.22116],[83.03195,47.22367],[83.03412,47.22249],[83.03726,47.21876],[83.04143,47.21503],[83.04252,47.21494],[83.04806,47.22254],[83.05086,47.2235],[83.05194,47.2254],[83.05743,47.22507],[83.06361,47.22801],[83.07252,47.22783],[83.08384,47.22881],[83.08847,47.2251],[83.09379,47.22373],[83.10992,47.22949],[83.11712,47.22966],[83.13462,47.23379],[83.14337,47.23422],[83.15074,47.23465],[83.15854,47.22835],[83.17321,47.22018],[83.1841,47.21994],[83.19362,47.21876],[83.20142,47.21549],[83.20785,47.21175],[83.20883,47.20603],[83.20638,47.19845],[83.21425,47.19209],[83.22075,47.1876],[83.22553,47.18871],[83.23581,47.18935],[83.23767,47.18742],[83.23541,47.18082],[83.24414,47.17703],[83.26533,47.1756],[83.28308,47.17557],[83.28847,47.18232],[83.2958,47.18173],[83.30381,47.17788],[83.30731,47.17747],[83.31835,47.17145],[83.33489,47.17034],[83.33973,47.17212],[83.35278,47.1735],[83.35485,47.17721],[83.36379,47.17763],[83.36574,47.17517],[83.36091,47.17257],[83.36363,47.16764],[83.36429,47.1634],[83.37458,47.15802],[83.38006,47.15509],[83.38246,47.15176],[83.38624,47.15077],[83.38876,47.14639],[83.38785,47.14201],[83.40754,47.12875],[83.40845,47.12353],[83.41303,47.12161],[83.41315,47.11596],[83.4292,47.11452],[83.42755,47.1203],[83.43002,47.1242],[83.44155,47.12487],[83.45034,47.13161],[83.45775,47.13157],[83.46201,47.12724],[83.47107,47.12805],[83.46634,47.12542],[83.46259,47.12176],[83.46519,47.11877],[83.48082,47.11764],[83.48433,47.11291],[83.48127,47.11031],[83.48446,47.10908],[83.49451,47.11018],[83.49816,47.10687],[83.50593,47.10965],[83.50958,47.10774],[83.51101,47.10084],[83.51481,47.09786],[83.51587,47.09487],[83.5276,47.09148],[83.52559,47.08574],[83.53536,47.0827],[83.5447,47.08445],[83.54993,47.08012],[83.56602,47.07823],[83.56446,47.06946],[83.55877,47.06068],[83.5631,47.05644],[83.5688,47.05501],[83.57334,47.0601],[83.58063,47.0605],[83.60247,47.05439],[83.60721,47.05133],[83.60614,47.0463],[83.61351,47.04869],[83.62234,47.04872],[83.62705,47.04641],[83.63905,47.04354],[83.64333,47.04421],[83.65611,47.04197],[83.66045,47.03921],[83.67233,47.03833],[83.68055,47.03499],[83.69563,47.0354],[83.70074,47.03013],[83.70141,47.02094],[83.69617,47.01759],[83.70672,47.01751],[83.71144,47.02306],[83.7186,47.02512],[83.73248,47.02756],[83.74018,47.03328],[83.74731,47.03327],[83.75431,47.02578],[83.75884,47.02437],[83.76419,47.02718],[83.78369,47.0239],[83.79447,47.01688],[83.7978,47.01876],[83.8055,47.01536],[83.81251,47.01665],[83.81714,47.01334],[83.82795,47.01097],[83.83738,47.00369],[83.83459,46.99917],[83.83524,46.99419],[83.83882,46.99767],[83.85201,46.99506],[83.85987,46.99734],[83.87118,46.99424],[83.87032,46.98777],[83.88593,46.98505],[83.88994,46.98851],[83.89438,46.98492],[83.90568,46.98087],[83.90256,46.97564],[83.91645,46.9742],[83.92134,46.97699],[83.92187,46.9805],[83.92557,46.98436],[83.92927,46.98588],[83.93309,46.98447],[83.9395,46.98699],[83.94728,46.99092],[83.95575,46.99121],[83.95873,46.98635],[83.95896,46.9822],[83.97001,46.98549],[83.97625,46.99019],[83.98248,46.99232],[83.98597,46.99538],[84.00824,46.98906],[84.01089,46.98209],[84.01496,46.98142],[84.01765,46.98356],[84.03129,46.97776],[84.04188,46.97393],[84.04512,46.97037],[84.05385,46.96822],[84.05743,46.96928],[84.06032,46.97268],[84.07203,46.97071],[84.07825,46.96922],[84.10437,46.96913],[84.11504,46.96675],[84.12037,46.96883],[84.12501,46.96764],[84.13058,46.97051],[84.1416,46.97359],[84.15071,46.97881],[84.15569,46.98075],[84.15828,46.98081],[84.15888,46.98834],[84.1647,46.98999],[84.1664,46.99445],[84.17702,46.99352],[84.17734,46.99681],[84.1871,46.99807],[84.18793,47.00028],[84.19322,46.9985],[84.20195,47.00187],[84.21222,47.00103],[84.22524,46.99738],[84.23205,47.00132],[84.2479,46.99837],[84.25757,47.00151],[84.27995,47.00044],[84.28289,46.99709],[84.28721,47.00171],[84.30003,46.99487],[84.30644,46.99801],[84.31062,46.99634],[84.31342,46.99935],[84.32,46.99674],[84.33002,47.00303],[84.33811,47.00047],[84.35033,46.99884],[84.35554,47.00075],[84.38218,46.99585],[84.39234,47.00265],[84.39803,47.00056],[84.40054,47.00397],[84.41586,47.00497],[84.43657,47.00828],[84.44762,47.00759],[84.45866,47.00831],[84.45807,47.0043],[84.46161,46.99796],[84.45999,46.99677],[84.46044,46.99277],[84.4778,46.99062],[84.48487,46.99221],[84.4918,46.98534],[84.5011,46.97932],[84.50971,46.97472],[84.51492,46.98048],[84.54279,46.98391],[84.55106,46.98879],[84.55452,46.99366],[84.56466,46.99493],[84.57145,46.99814],[84.58099,46.99901],[84.59533,46.99964],[84.60422,46.99738],[84.61379,46.99793],[84.61607,46.99655],[84.62384,46.99752],[84.62944,46.99776],[84.63092,46.9952],[84.64008,46.99637],[84.64511,46.99896],[84.65478,46.99931],[84.66135,47.00178],[84.67104,46.99746],[84.67179,47.00158],[84.6788,47.00325],[84.69419,47.00473],[84.71054,47.00908],[84.71373,47.00654],[84.72481,47.00541],[84.75237,47.00522],[84.75427,46.99991],[84.76121,46.9989],[84.77583,46.99117],[84.77665,46.98493],[84.78118,46.98251],[84.7809,46.97634],[84.78263,46.97326],[84.78574,46.97346],[84.79777,46.9664],[84.80482,46.96334],[84.81461,46.95793],[84.82292,46.96038],[84.84664,46.95434],[84.84746,46.95153],[84.85034,46.95107],[84.85061,46.9478],[84.85732,46.94642],[84.86065,46.9443],[84.85957,46.93949],[84.8578,46.92765],[84.86281,46.92634],[84.87116,46.92006],[84.8729,46.91696],[84.87808,46.91105],[84.88774,46.90815],[84.88932,46.90684],[84.89502,46.90413],[84.89613,46.90058],[84.90526,46.89833],[84.90583,46.89613],[84.91464,46.8897],[84.91486,46.87976],[84.91921,46.87927],[84.92287,46.87549],[84.93019,46.87497],[84.93342,46.87069],[84.94353,46.86219],[84.9526,46.86354],[84.96503,46.86703],[84.96369,46.87042],[84.96612,46.87282],[84.97316,46.87214],[84.97884,46.87287],[84.97697,46.87751],[84.97716,46.88168],[84.97391,46.88515],[84.9741,46.88862],[84.9783,46.89076],[84.97814,46.89552],[84.98074,46.89652],[84.97974,46.90416],[84.98012,46.91063],[84.98394,46.91522],[84.99396,46.92116],[85.00172,46.92179],[85.00216,46.92562],[85.00604,46.9257],[85.01916,46.92368],[85.03364,46.92165],[85.04854,46.92768],[85.06045,46.92741],[85.06298,46.9254],[85.06664,46.9251],[85.06825,46.92855],[85.07353,46.93142],[85.07779,46.93077],[85.07777,46.93777],[85.08256,46.94008],[85.08323,46.94499],[85.08597,46.94895],[85.07841,46.95386],[85.07909,46.9583],[85.08847,46.95802],[85.09441,46.95869],[85.09669,46.9647],[85.10881,46.96735],[85.11143,46.97136],[85.1168,46.97117],[85.11999,46.9703],[85.12862,46.97481],[85.1273,46.97908],[85.12941,46.98101],[85.13397,46.98135],[85.14608,46.98919],[85.15339,46.98591],[85.15945,46.98684],[85.16619,46.98637],[85.17625,46.99292],[85.17876,46.9962],[85.17556,46.99971],[85.17578,47.00369],[85.18185,47.00416],[85.18688,47.00674],[85.18796,47.00943],[85.19407,47.01198],[85.194,47.01687],[85.19756,47.02065],[85.2018,47.02631],[85.20411,47.03248],[85.21216,47.03873],[85.21109,47.04516],[85.21514,47.05192],[85.22022,47.05344],[85.22482,47.05163],[85.22506,47.04909],[85.23547,47.04993],[85.24109,47.05403],[85.24788,47.05252],[85.25399,47.05288],[85.26148,47.04973],[85.26628,47.05164],[85.26901,47.05448],[85.27467,47.05548],[85.27484,47.05882],[85.27243,47.06551],[85.27653,47.06952],[85.27652,47.06622],[85.28166,47.06363],[85.28475,47.06432],[85.28953,47.06334],[85.29908,47.06464],[85.30378,47.05696],[85.30684,47.05036],[85.31196,47.0489],[85.31949,47.04394],[85.32426,47.04319],[85.33,47.04707],[85.3394,47.04735],[85.34173,47.05446],[85.34777,47.05465],[85.35062,47.05205],[85.36651,47.05226],[85.37691,47.04732],[85.38387,47.0466],[85.38957,47.04854],[85.39457,47.04814],[85.40596,47.05202],[85.41373,47.06051],[85.42366,47.06053],[85.42725,47.05727],[85.43282,47.05727],[85.43839,47.06055],[85.45347,47.05987],[85.46168,47.06386],[85.46698,47.05952],[85.47547,47.05735],[85.48122,47.05284],[85.49732,47.05352],[85.50482,47.05628],[85.51681,47.05427],[85.53017,47.05085],[85.5322,47.04907],[85.53836,47.04888],[85.54144,47.05183],[85.54727,47.05338],[85.55471,47.0507],[85.55871,47.05037],[85.56167,47.06216],[85.56521,47.06548],[85.56738,47.07114],[85.57811,47.09519],[85.57613,47.1003],[85.57965,47.11149],[85.58616,47.11417],[85.58375,47.11919],[85.57447,47.12422],[85.57787,47.13871],[85.57941,47.14193],[85.58988,47.14701],[85.59348,47.15209],[85.61012,47.16044],[85.6132,47.16524],[85.62676,47.17371],[85.63045,47.17911],[85.64032,47.18451],[85.64351,47.19245],[85.64683,47.19502],[85.64671,47.19853],[85.64967,47.20554],[85.65743,47.20859],[85.65971,47.21351],[85.6791,47.21965],[85.682,47.2223],[85.68621,47.22992],[85.68556,47.23606],[85.68936,47.2403],[85.68782,47.24172],[85.68835,47.24593],[85.68233,47.24572],[85.67974,47.25064],[85.68746,47.26232],[85.69105,47.26421],[85.69413,47.27192],[85.69378,47.27777],[85.69789,47.28316],[85.69856,47.28854],[85.69131,47.29774],[85.68338,47.30507],[85.68527,47.30831],[85.67446,47.3111],[85.67327,47.3218],[85.68496,47.32972],[85.68565,47.34264],[85.68805,47.35555],[85.68703,47.36056],[85.68943,47.36562],[85.69819,47.36583],[85.69947,47.37244],[85.70214,47.38138],[85.69513,47.3866],[85.68675,47.39322],[85.68524,47.40007],[85.68236,47.40692],[85.68661,47.40875],[85.68275,47.42962],[85.67722,47.43622],[85.67375,47.4419],[85.66543,47.44999],[85.65001,47.45358],[85.64683,47.45806],[85.64022,47.4644],[85.63868,47.4678],[85.63217,47.4746],[85.62531,47.48587],[85.61642,47.49125],[85.61235,47.49935],[85.60829,47.50885],[85.6104,47.51185],[85.60771,47.52273],[85.60953,47.52549],[85.60861,47.53102],[85.6181,47.54419],[85.61866,47.54854],[85.62709,47.55762],[85.62804,47.56517],[85.62899,47.57736],[85.6357,47.58644],[85.55278,47.98125],[85.53917,47.98438],[85.53998,47.98934],[85.5401,47.99661],[85.54435,48.00112],[85.5469,48.01041],[85.54034,48.01983],[85.5279,48.02487],[85.5271,48.02722],[85.53249,48.03049],[85.53022,48.0352],[85.53048,48.04277],[85.54113,48.05332],[85.53669,48.0717],[85.54665,48.08123],[85.54682,48.09929],[85.55137,48.10718],[85.54953,48.11502],[85.55043,48.12837],[85.55368,48.12888],[85.55737,48.12479],[85.55899,48.13169],[85.56411,48.13226],[85.55551,48.13582],[85.55376,48.13937],[85.56916,48.15724],[85.57439,48.15667],[85.57837,48.16532],[85.58277,48.17422],[85.58634,48.18279],[85.5851,48.19136],[85.59033,48.1908],[85.58847,48.19693],[85.59647,48.19701],[85.61077,48.20552],[85.62233,48.20259],[85.63424,48.2317],[85.64913,48.23871],[85.65039,48.24496],[85.65823,48.24146],[85.66661,48.25868],[85.67527,48.26226],[85.67239,48.26794],[85.67472,48.27146],[85.67774,48.27133],[85.68211,48.27932],[85.68291,48.29085],[85.6919,48.30073],[85.69124,48.32965],[85.70259,48.34274],[85.71325,48.34898],[85.71074,48.3529],[85.71224,48.36125],[85.72328,48.36702],[85.72519,48.37154],[85.74193,48.38224],[85.75099,48.39284],[85.7573,48.40297],[85.76367,48.40454],[85.79201,48.41818],[85.80521,48.4156],[85.81765,48.41784],[85.83005,48.42238],[85.83213,48.42601],[85.86475,48.43079],[85.88519,48.42954],[85.89884,48.4321],[85.90532,48.4352],[85.91386,48.43603],[86.05821,48.43824],[86.2248,48.43205],[86.23428,48.43306],[86.23751,48.43889],[86.24565,48.44591],[86.25035,48.45201],[86.25378,48.45427],[86.25996,48.4547],[86.2682,48.45081],[86.27232,48.45876],[86.28123,48.46278],[86.2819,48.47173],[86.29699,48.47726],[86.29698,48.48253],[86.30144,48.48699],[86.29904,48.49008],[86.32211,48.48798],[86.32403,48.49376],[86.33014,48.49369],[86.32942,48.49092],[86.35001,48.49148],[86.36854,48.49296],[86.36853,48.50171],[86.37746,48.50071],[86.37883,48.49288],[86.38913,48.49052],[86.3905,48.48752],[86.39393,48.48534],[86.39599,48.48106],[86.40766,48.47906],[86.58255,48.53947],[86.58937,48.542],[86.59503,48.55093],[86.59656,48.55985],[86.59466,48.56719],[86.59714,48.56882],[86.59701,48.57236],[86.59413,48.57544],[86.59837,48.57644],[86.5985,48.58107],[86.60102,48.5823],[86.60149,48.58489],[86.6086,48.58507],[86.61228,48.59797],[86.61948,48.59793],[86.62823,48.6054],[86.63423,48.61151],[86.63421,48.6264],[86.64154,48.62919],[86.6689,48.63149],[86.66987,48.63355],[86.67654,48.63367],[86.6809,48.63668],[86.69145,48.64287],[86.68919,48.64778],[86.69724,48.65269],[86.69876,48.66122],[86.7002,48.66844],[86.71226,48.67658],[86.72568,48.68337],[86.73912,48.69669],[86.75392,48.70775],[86.77147,48.72018],[86.77803,48.73509],[86.7709,48.75054],[86.76775,48.75859],[86.76253,48.76211],[86.75142,48.77821],[86.75648,48.79152],[86.76154,48.80392],[86.76862,48.80899],[86.7908,48.81632],[86.8044,48.82501],[86.81869,48.83234],[86.81814,48.84428],[86.81691,48.85576],[86.8015,48.86711],[86.7902,48.87258],[86.78342,48.8763],[86.77663,48.88883],[86.75164,48.89594],[86.75187,48.90273],[86.74112,48.91269],[86.73163,48.9371],[86.73038,48.94979],[86.72701,48.95028],[86.7272,48.95863],[86.73013,48.97194],[86.72723,48.98006],[86.7299,48.98345],[86.72776,48.99134],[86.74861,49.01086],[86.76946,49.02633],[86.78106,49.02806],[86.79511,49.0386],[86.83131,49.05062],[86.84726,49.06557],[86.84221,49.08587],[86.84472,49.10167],[86.85793,49.11417],[86.87526,49.12127],[86.87903,49.12842],[86.89945,49.13513],[86.94142,49.13029],[86.9573,49.13174],[86.97893,49.13698],[86.99884,49.14311],[87.02251,49.13834],[87.04396,49.13123],[87.05991,49.12929],[87.06463,49.12662],[87.06728,49.13024],[87.07395,49.13258],[87.08192,49.13083],[87.08886,49.13761],[87.10014,49.14004],[87.10078,49.14786],[87.10554,49.15118],[87.11558,49.15253],[87.12562,49.15254],[87.12995,49.1512],[87.13978,49.15075],[87.14137,49.15233],[87.15051,49.15076],[87.15273,49.14482],[87.1693,49.13893],[87.17415,49.1398],[87.18515,49.13867],[87.18861,49.14247],[87.1935,49.14161],[87.19976,49.14344],[87.20373,49.14008],[87.2077,49.13537],[87.21442,49.13246],[87.21564,49.12864],[87.21308,49.12292],[87.22348,49.11984],[87.2277,49.11945],[87.22892,49.11463],[87.23451,49.11413],[87.23804,49.11138],[87.2425,49.11321],[87.25383,49.11235],[87.26035,49.11463],[87.27253,49.1142],[87.27725,49.11803],[87.28197,49.11782],[87.28886,49.11457],[87.29506,49.11357],[87.304,49.10785],[87.32256,49.10438],[87.32156,49.10081],[87.33308,49.09902],[87.34666,49.10218],[87.35119,49.10089],[87.3561,49.09618],[87.36101,49.09462],[87.36533,49.09689],[87.38161,49.09272],[87.38447,49.0891],[87.39764,49.08637],[87.39925,49.08321],[87.40497,49.08049],[87.40663,49.07531],[87.42477,49.07373],[87.42746,49.07125],[87.43565,49.07237],[87.43954,49.07442],[87.44619,49.08006],[87.4562,49.08457],[87.46073,49.08548],[87.46634,49.08865],[87.47722,49.0896],[87.49017,49.0865],[87.49939,49.08968],[87.50312,49.09286],[87.50445,49.09604],[87.50509,49.10057],[87.50741,49.10401],[87.5056,49.11015],[87.50645,49.11658],[87.49357,49.1266],[87.4908,49.13228],[87.49353,49.13885],[87.50575,49.13786],[87.52079,49.14141],[87.52347,49.14452],[87.53439,49.14065],[87.54187,49.14173],[87.54905,49.14003],[87.55485,49.14012],[87.56168,49.13594],[87.56645,49.13536],[87.56941,49.14156],[87.57638,49.14264],[87.58197,49.14103],[87.58929,49.14604],[87.59797,49.14925],[87.60643,49.14862],[87.61009,49.14528],[87.61452,49.14422],[87.61758,49.14496],[87.6203,49.14772],[87.62714,49.15003],[87.63294,49.14796],[87.64081,49.14859],[87.64629,49.15081],[87.64971,49.15348],[87.65879,49.15144],[87.67131,49.15164],[87.68005,49.15896],[87.68339,49.16375],[87.68674,49.17168],[87.69519,49.17595],[87.70399,49.17618],[87.71982,49.17731],[87.73703,49.17574],[87.74586,49.1734],[87.75127,49.16747],[87.77083,49.17266],[87.77383,49.17654],[87.77854,49.17891],[87.78695,49.17417],[87.80093,49.17],[87.81183,49.16751],[87.81646,49.16982]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:JT:**Mongolia, west of 110º E#UA0:**Asiatic Russia, south of 60º N and between 90º and 110º E","itu_zone_number":32,"itu_zone_name_loc":[53,100]},"geometry":{"type":"Polygon","coordinates":[[[89.999999,60],[110,60],[110,42.63674],[109.89816,42.63306],[109.6796,42.55965],[109.62641,42.52739],[109.53203,42.46882],[109.51757,42.46688],[109.4983,42.46696],[109.48144,42.4559],[109.47576,42.45442],[109.45197,42.45166],[109.43917,42.45193],[109.41606,42.44906],[109.38334,42.4467],[109.31,42.43969],[109.28452,42.43504],[109.2623,42.43597],[109.01485,42.45717],[109.00583,42.45056],[108.99818,42.448],[108.98563,42.44845],[108.9516,42.43871],[108.8396,42.39643],[108.83542,42.39907],[108.82816,42.40322],[108.81971,42.40593],[108.79994,42.41117],[108.78512,42.41634],[108.77905,42.41368],[108.74569,42.41432],[108.71544,42.41325],[108.69412,42.41344],[108.53491,42.44325],[108.4408,42.44393],[108.43088,42.44255],[108.42111,42.44224],[108.40791,42.44143],[108.38861,42.44111],[108.3573,42.43954],[108.29468,42.43942],[108.24464,42.46397],[108.19923,42.45424],[108.15725,42.44881],[108.13501,42.44503],[108.11307,42.44212],[108.08461,42.4377],[108.06451,42.43774],[108.0409,42.43548],[108.02003,42.4355],[108.0102,42.4298],[107.99865,42.42411],[107.991,42.41957],[107.97982,42.4148],[107.96396,42.41456],[107.92939,42.40153],[107.90506,42.40337],[107.73792,42.41308],[107.65437,42.41277],[107.57494,42.41069],[107.56565,42.41147],[107.52982,42.43376],[107.51247,42.4444],[107.49477,42.45498],[107.45818,42.4582],[107.42656,42.44769],[107.2904,42.40785],[107.26025,42.36046],[107.05158,42.31712],[106.78668,42.28831],[106.64526,42.25072],[106.36581,42.15564],[106.10285,42.06056],[105.71839,41.93778],[105.58247,41.88159],[105.48154,41.83071],[105.38611,41.79825],[105.36071,41.7791],[105.29412,41.74767],[105.23167,41.74591],[105.00579,41.58008],[104.91912,41.65444],[104.68322,41.64484],[104.51873,41.66192],[104.52621,41.87442],[104.07733,41.80345],[103.85643,41.79799],[103.41716,41.88043],[102.99978,42.03342],[102.70874,42.14764],[102.54798,42.15834],[102.44564,42.14129],[102.07962,42.22196],[101.80481,42.50359],[101.55891,42.52878],[100.84198,42.67322],[100.31997,42.68622],[100.26277,42.63729],[99.97486,42.64694],[99.50065,42.56523],[98.56227,42.63358],[98.20068,42.65342],[97.1733,42.79391],[96.96796,42.75391],[96.75712,42.75423],[96.38763,42.72362],[96.3594,42.89626],[96.13536,43.06738],[95.91407,43.23047],[95.8768,43.2765],[95.86778,43.32951],[95.85876,43.40849],[95.73616,43.59621],[95.65151,43.76851],[95.62179,43.84955],[95.52391,44.00389],[95.44244,44.00451],[95.40422,44.01009],[95.36601,44.02358],[95.32253,44.02685],[95.34525,44.08108],[95.35424,44.17476],[95.37771,44.22609],[95.41079,44.24401],[95.42871,44.27755],[95.41091,44.29536],[94.99614,44.25089],[94.93022,44.29333],[94.81966,44.31819],[94.76954,44.34108],[94.72696,44.33774],[94.67511,44.38838],[94.60129,44.44883],[94.54679,44.45951],[94.47031,44.50744],[94.39152,44.521],[94.34928,44.51285],[94.3408,44.52686],[94.34604,44.54479],[94.32907,44.5826],[94.26491,44.61127],[94.22448,44.64515],[94.2068,44.67189],[94.14945,44.6824],[94.06223,44.73081],[93.73605,44.86028],[93.71493,44.86979],[93.70755,44.89292],[93.60266,44.93066],[93.50601,44.96452],[93.42759,44.95505],[93.39586,44.97473],[93.36802,44.98548],[93.32369,44.99429],[93.31744,44.98082],[93.28846,44.98301],[93.21554,44.9954],[93.1893,45.0078],[93.14521,45.01242],[93.08465,45.00733],[93.05605,45.01714],[93.00435,45.00955],[92.98423,44.99905],[92.96961,45.01574],[92.92759,45.01648],[92.92321,45.03349],[92.88148,45.04617],[92.84473,45.03658],[92.77671,45.04846],[92.74447,45.04217],[92.73146,45.03588],[92.64226,45.02136],[92.549,45.01755],[92.48596,45.00015],[92.42291,45.01771],[92.34214,45.01107],[92.31355,45.02772],[92.27423,45.02027],[92.25045,45.02042],[92.23766,45.01281],[92.18735,45.0364],[92.10134,45.07552],[92.05996,45.08264],[91.89508,45.07553],[91.80435,45.08201],[91.6856,45.06162],[91.61814,45.0701],[91.56992,45.08052],[91.55877,45.06767],[91.53534,45.08548],[91.49327,45.10273],[91.4924,45.11416],[91.46045,45.14866],[91.42952,45.15564],[91.39624,45.12888],[91.37669,45.10986],[91.32968,45.12767],[91.24146,45.13191],[91.22297,45.15007],[91.189,45.15624],[91.17976,45.16435],[91.16346,45.20017],[91.11988,45.21372],[91.08392,45.21445],[91.04796,45.2055],[90.99827,45.21687],[90.95132,45.19534],[90.88439,45.18857],[90.86428,45.19906],[90.8936,45.25211],[90.86985,45.28278],[90.83607,45.29772],[90.79874,45.28896],[90.8129,45.31939],[90.7726,45.40167],[90.76526,45.43765],[90.7057,45.46285],[90.66535,45.48805],[90.66021,45.53336],[90.68372,45.62716],[90.71273,45.72864],[90.84697,45.88774],[91.01966,46.02008],[91.02058,46.05632],[91.00777,46.07922],[91.01509,46.085],[91.01052,46.12705],[90.97666,46.15786],[90.96111,46.19657],[90.9428,46.21436],[90.95014,46.22904],[90.89435,46.30682],[90.92997,46.33551],[90.97658,46.3604],[90.99434,46.42038],[91.00597,46.4343],[91.01042,46.45831],[91.03419,46.49504],[91.05246,46.51097],[91.05016,46.54022],[91.07808,46.55814],[91.07074,46.57508],[91.0176,46.57876],[91.01381,46.60833],[91.04846,46.71712],[91.01249,46.76264],[90.99313,46.76847],[90.98202,46.78935],[90.9348,46.8202],[90.95218,46.84435],[90.95582,46.87601],[90.9329,46.88676],[90.9141,46.91535],[90.91727,46.93643],[90.87534,46.97064],[90.82517,46.99549],[90.76458,46.98801],[90.7429,47.02696],[90.72947,47.02659],[90.68583,47.07489],[90.6463,47.11102],[90.6442,47.12729],[90.62287,47.14356],[90.56098,47.20973],[90.53412,47.24866],[90.51824,47.28945],[90.48099,47.31886],[90.50539,47.33936],[90.49957,47.35242],[90.51815,47.37667],[90.50588,47.40286],[90.48132,47.39758],[90.45694,47.41306],[90.46414,47.44344],[90.47133,47.4924],[90.42668,47.52994],[90.40125,47.5378],[90.37512,47.59902],[90.34282,47.625],[90.35002,47.64539],[90.37096,47.64357],[90.37395,47.65092],[90.34948,47.67123],[90.32526,47.68408],[90.28593,47.69232],[90.25485,47.69501],[90.24036,47.70762],[90.21413,47.70327],[90.17816,47.72231],[90.13917,47.72341],[90.09839,47.75307],[90.07134,47.77904],[90.06489,47.81885],[90.07218,47.84944],[90.09201,47.8579],[90.05927,47.8842],[90.04575,47.87366],[90.0034,47.8797],[89.95556,47.88758],[89.95325,47.86004],[89.95094,47.83434],[89.93022,47.83324],[89.89027,47.83767],[89.85707,47.82625],[89.80601,47.83235],[89.7577,47.82922],[89.73924,47.86506],[89.74963,47.87601],[89.72431,47.89986],[89.65324,47.90314],[89.63895,47.92558],[89.6384,47.94802],[89.60763,47.95759],[89.59335,47.97267],[89.58564,47.9999],[89.60535,48.00648],[89.5811,48.03143],[89.5491,48.03907],[89.49333,48.0268],[89.44495,48.03166],[89.40208,48.02916],[89.37888,48.04492],[89.37079,48.02209],[89.35446,48.01579],[89.34682,48.02367],[89.31446,48.01317],[89.29583,48.0137],[89.28174,47.98636],[89.25632,47.99051],[89.24117,47.9749],[89.1889,47.97676],[89.15448,47.99701],[89.12281,47.98416],[89.05929,47.98795],[89.02795,48.02466],[89.00759,48.05219],[88.97237,48.06685],[88.95362,48.08427],[88.93213,48.10719],[88.84617,48.11083],[88.82806,48.09975],[88.73318,48.15198],[88.70877,48.15748],[88.71183,48.17031],[88.69185,48.17582],[88.66563,48.16853],[88.633,48.18215],[88.62234,48.21042],[88.58729,48.21935],[88.59684,48.24456],[88.56834,48.27411],[88.60565,48.33219],[88.57155,48.35193],[88.56928,48.36585],[88.54824,48.37179],[88.54736,48.35812],[88.51128,48.38006],[88.52289,48.3911],[88.48568,48.40774],[88.47993,48.39541],[88.43822,48.38715],[88.39586,48.41427],[88.35625,48.43045],[88.3543,48.44583],[88.35235,48.45939],[88.29134,48.4857],[88.21935,48.5029],[88.18153,48.49548],[88.13546,48.52992],[88.112,48.52419],[88.10236,48.54185],[88.07623,48.5486],[88.05695,48.54211],[88.02387,48.54911],[88.00716,48.56676],[87.97396,48.56986],[87.95929,48.59319],[87.97336,48.60635],[88.02589,48.63041],[88.01156,48.65071],[88.06314,48.68007],[88.0894,48.7116],[88.05524,48.71325],[88.02031,48.7503],[87.9689,48.77286],[87.93457,48.75323],[87.89508,48.78087],[87.8556,48.80308],[87.83157,48.79865],[87.79449,48.82055],[87.82333,48.82374],[87.81372,48.8432],[87.79312,48.84054],[87.7835,48.86957],[87.74231,48.86799],[87.73475,48.88393],[87.75981,48.91627],[87.75192,48.93327],[87.78007,48.92674],[87.812,48.94827],[87.84401,48.94555],[87.87328,48.94824],[87.86841,48.96069],[87.87453,48.97495],[87.89775,48.97463],[87.90025,48.98479],[87.87228,48.9907],[87.86853,49.00612],[87.88026,49.01895],[87.85702,49.03561],[87.84339,49.03607],[87.82977,49.04373],[87.83273,49.0618],[87.84855,49.06182],[87.85063,49.07262],[87.83833,49.08165],[87.83838,49.09067],[87.8645,49.11048],[87.82812,49.14734],[87.82092,49.14241],[87.80908,49.15612],[87.81646,49.16982],[87.82075,49.17518],[87.86135,49.17607],[87.87837,49.17001],[87.90362,49.17651],[87.9238,49.17168],[87.933,49.17943],[87.96554,49.18717],[87.98984,49.18054],[88.00435,49.20611],[88.02022,49.22988],[88.05533,49.24203],[88.05022,49.2562],[88.082,49.26329],[88.08377,49.25745],[88.1075,49.25878],[88.12712,49.27713],[88.16577,49.289],[88.15961,49.31555],[88.16994,49.3242],[88.15554,49.33642],[88.16483,49.34612],[88.16312,49.35581],[88.15834,49.36358],[88.11785,49.37671],[88.11994,49.39342],[88.14724,49.40564],[88.18552,49.41786],[88.16322,49.4423],[88.19146,49.46273],[88.22519,49.4778],[88.25922,49.48265],[88.29875,49.47145],[88.31713,49.477],[88.34102,49.49682],[88.36215,49.48631],[88.38186,49.48369],[88.40705,49.49355],[88.42126,49.48379],[88.43547,49.46867],[88.49744,49.47205],[88.51755,49.48674],[88.55232,49.48249],[88.57336,49.49787],[88.59984,49.50407],[88.61033,49.49647],[88.62632,49.49779],[88.65766,49.48149],[88.67526,49.4652],[88.73681,49.45157],[88.74974,49.4617],[88.78524,49.45665],[88.8125,49.45696],[88.82603,49.44744],[88.84379,49.44178],[88.86227,49.45591],[88.84904,49.46882],[88.86989,49.46635],[88.88251,49.4728],[88.85142,49.48928],[88.85648,49.49485],[88.87549,49.50031],[88.87401,49.54761],[88.88626,49.5557],[88.90133,49.5575],[88.90991,49.54636],[88.92672,49.54592],[88.9353,49.53033],[88.93263,49.51574],[88.96568,49.49579],[88.95203,49.48209],[88.97134,49.46125],[89.00703,49.46974],[89.03448,49.48893],[89.0585,49.47846],[89.11308,49.4973],[89.14295,49.49831],[89.15736,49.5146],[89.19341,49.52096],[89.20731,49.53751],[89.23494,49.54515],[89.22599,49.56389],[89.19231,49.58797],[89.19675,49.60268],[89.18198,49.62094],[89.18812,49.63078],[89.2428,49.64536],[89.27329,49.62921],[89.30378,49.60772],[89.34554,49.59322],[89.33511,49.58137],[89.35873,49.58256],[89.38565,49.59829],[89.384,49.60972],[89.4079,49.62166],[89.41985,49.61518],[89.43544,49.62795],[89.43087,49.63612],[89.4588,49.66598],[89.47025,49.65851],[89.50132,49.66457],[89.51791,49.67555],[89.54273,49.68119],[89.5814,49.67826],[89.67247,49.69373],[89.70536,49.72159],[89.72593,49.75504],[89.71903,49.79028],[89.67495,49.78215],[89.62389,49.8067],[89.64991,49.8248],[89.63612,49.84114],[89.61401,49.86495],[89.61398,49.87776],[89.63318,49.88526],[89.63037,49.90203],[89.60002,49.91434],[89.64509,49.92482],[89.69015,49.9406],[89.74894,49.94932],[89.80621,49.95238],[89.86348,49.95898],[89.8823,49.95056],[89.91996,49.96413],[89.96415,49.97396],[89.97543,49.97268],[89.98243,49.97562],[89.99218,49.98296],[89.999999,49.98485],[89.999999,60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:BY:**China, north of 44º N#JT:**Mongolia, east of 110º E#UA0:**Asiatic Russia, south of 60º N and between 110º and 135º E","itu_zone_number":33,"itu_zone_name_loc":[53,122.5]},"geometry":{"type":"Polygon","coordinates":[[[111.78081,44],[131.24869,44],[131.24705,44.00294],[131.24335,44.00639],[131.24246,44.01179],[131.24555,44.01388],[131.25207,44.01548],[131.25206,44.02065],[131.25582,44.02434],[131.25615,44.0305],[131.25966,44.03245],[131.26451,44.03022],[131.27073,44.02947],[131.27441,44.03315],[131.27814,44.03449],[131.27981,44.03682],[131.28431,44.03891],[131.28744,44.04346],[131.29198,44.04344],[131.29626,44.04237],[131.30012,44.04479],[131.3026,44.04524],[131.20257,44.37508],[131.10322,44.7072],[131.09539,44.71396],[131.07864,44.73964],[131.0616,44.77927],[131.01436,44.77406],[131.00447,44.82602],[130.96711,44.81953],[130.96225,44.86187],[131.07824,44.88084],[131.07888,44.91634],[131.10149,44.94017],[131.16867,44.94697],[131.2029,44.91489],[131.28863,44.92558],[131.34139,44.98682],[131.40927,44.98004],[131.42761,44.96572],[131.47342,44.95917],[131.48626,44.97593],[131.48263,44.99658],[131.59926,45.05577],[131.69391,45.12661],[131.64701,45.1597],[131.68124,45.22562],[131.78687,45.21414],[131.80673,45.29054],[131.87603,45.34376],[131.91343,45.33654],[131.92885,45.28297],[131.96625,45.2719],[131.98167,45.25696],[132.84875,45.05972],[132.95228,45.01758],[133.04539,45.06741],[133.0837,45.1059],[133.12751,45.125],[133.13286,45.17604],[133.08885,45.248],[133.09977,45.29288],[133.12695,45.35251],[133.14288,45.42919],[133.19726,45.50587],[133.31344,45.55102],[133.37407,45.57673],[133.41822,45.57167],[133.3992,45.61852],[133.42539,45.62656],[133.46806,45.60771],[133.44493,45.64974],[133.48221,45.66104],[133.47555,45.69345],[133.43043,45.69516],[133.45831,45.78491],[133.48069,45.85933],[133.52725,45.90278],[133.58478,45.86592],[133.59564,45.88882],[133.61472,45.90598],[133.59879,45.93508],[133.62955,45.94793],[133.67184,45.94308],[133.66965,45.98737],[133.7125,46.02478],[133.73886,46.066],[133.69547,46.11031],[133.68503,46.15081],[133.76852,46.17091],[133.79242,46.19523],[133.79983,46.22904],[133.81962,46.22327],[133.82677,46.20423],[133.84215,46.2004],[133.85426,46.21547],[133.87461,46.23244],[133.85376,46.24751],[133.89309,46.25105],[133.91045,46.26409],[133.90883,46.27985],[133.88798,46.30321],[133.91657,46.32278],[133.9122,46.33285],[133.87737,46.31887],[133.86176,46.34471],[133.87294,46.36013],[133.89784,46.36417],[133.93099,46.3739],[133.94766,46.3931],[133.89635,46.44827],[133.86152,46.44287],[133.84179,46.4545],[133.84129,46.48127],[133.86131,46.49278],[133.86484,46.50997],[133.87388,46.5262],[133.89389,46.54244],[133.9092,46.59191],[133.96022,46.61684],[134.00368,46.63752],[134.02517,46.6978],[134.01508,46.72133],[134.0297,46.74485],[134.04847,46.77501],[134.01505,46.81645],[134.01757,46.83482],[134.03656,46.84379],[134.03885,46.88428],[134.06814,46.93709],[134.05348,46.9824],[134.11299,47.02302],[134.12306,47.0861],[134.21277,47.09867],[134.22009,47.11872],[134.21299,47.19058],[134.13997,47.2587],[134.18781,47.3417],[134.24113,47.35768],[134.31207,47.43612],[134.48189,47.44023],[134.57533,47.4972],[134.58088,47.51705],[134.64141,47.56047],[134.67715,47.59216],[134.68542,47.63866],[134.72392,47.65762],[134.78445,47.72518],[134.74263,47.78201],[134.67333,47.82038],[134.65009,47.89346],[134.57118,47.90976],[134.58016,47.95183],[134.54245,47.98837],[134.54319,48.02859],[134.56725,48.03926],[134.58033,48.06278],[134.6257,48.09881],[134.63262,48.12293],[134.66767,48.14325],[134.66151,48.19654],[134.66501,48.24082],[134.6901,48.25839],[134.72187,48.27448],[134.71793,48.2851],[134.76536,48.35311],[134.76885,48.37548],[134.79569,48.37892],[134.839,48.39877],[134.9009,48.44759],[134.91057,48.46972],[134.92573,48.50277],[134.98896,48.52307],[135,48.5361],[135,60],[110,60],[110,42.63674],[110.01323,42.6366],[110.10063,42.64101],[110.10519,42.64409],[110.12739,42.66571],[110.13619,42.67167],[110.23011,42.70081],[110.26145,42.71033],[110.30321,42.72329],[110.32403,42.72818],[110.34172,42.73557],[110.43392,42.77978],[110.43713,42.78393],[110.46506,42.83393],[110.48409,42.84571],[110.50277,42.8585],[110.62562,42.93327],[110.65378,42.97265],[110.65911,42.98301],[110.66925,42.99601],[110.68385,43.01705],[110.68437,43.02274],[110.68369,43.0273],[110.68302,43.03262],[110.68371,43.03869],[110.71317,43.0677],[110.72764,43.07907],[110.73284,43.08568],[110.74684,43.09168],[110.76669,43.09982],[110.81968,43.1504],[110.87062,43.19797],[110.90885,43.23528],[110.91961,43.24456],[110.9669,43.2894],[110.99701,43.31375],[111.00081,43.31513],[111.02708,43.33356],[111.04065,43.3405],[111.0519,43.34245],[111.05698,43.34415],[111.06268,43.35255],[111.14964,43.37722],[111.23042,43.40688],[111.3527,43.43667],[111.40151,43.47445],[111.45119,43.48994],[111.50635,43.485],[111.56152,43.48804],[111.60364,43.5131],[111.78584,43.66857],[111.87946,43.67154],[111.92352,43.68618],[111.94835,43.69039],[111.95121,43.70503],[111.96363,43.73717],[111.96506,43.74945],[111.95567,43.8214],[111.89582,43.89499],[111.86206,43.94186],[111.78081,44]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA0:**Asiatic Russia, south of 60º N and between 135º and 155º E+- including Primor'ye and Sakhalin but excluding the Kurils","itu_zone_number":34,"itu_zone_name_loc":[53,142]},"geometry":{"type":"Polygon","coordinates":[[[146.49147,45.73822],[139.77955,45.73822],[136.66227,42.24603],[130.77271,42.24603],[130.68908,42.29407],[130.68248,42.30341],[130.6594,42.31581],[130.64937,42.32363],[130.64483,42.33451],[130.64424,42.3469],[130.64913,42.3527],[130.65536,42.35915],[130.66294,42.36225],[130.66846,42.36636],[130.66855,42.37495],[130.6651,42.37996],[130.66063,42.38398],[130.65753,42.38775],[130.65486,42.39042],[130.64514,42.40221],[130.64472,42.40826],[130.64337,42.4104],[130.64082,42.4131],[130.64067,42.41543],[130.63897,42.42016],[130.63762,42.42189],[130.63524,42.42374],[130.635,42.42489],[130.63425,42.42604],[130.6313,42.42718],[130.62422,42.43262],[130.61714,42.43528],[130.61418,42.43464],[130.61139,42.43653],[130.60895,42.43944],[130.6029,42.44121],[130.59427,42.44627],[130.59354,42.45059],[130.59142,42.45441],[130.59235,42.45621],[130.59035,42.46409],[130.59522,42.46766],[130.59083,42.4732],[130.5854,42.47873],[130.58604,42.48106],[130.58392,42.48465],[130.58484,42.48728],[130.55825,42.50303],[130.55264,42.51861],[130.55381,42.52098],[130.56254,42.51729],[130.55787,42.52523],[130.56075,42.52912],[130.56499,42.534],[130.56921,42.53787],[130.56256,42.55497],[130.56903,42.55488],[130.5748,42.55834],[130.58498,42.55918],[130.59412,42.55724],[130.60395,42.55176],[130.60417,42.56506],[130.61538,42.57077],[130.62178,42.58179],[130.62029,42.58543],[130.62566,42.58857],[130.62589,42.59373],[130.62817,42.59888],[130.62054,42.60538],[130.61635,42.61238],[130.61833,42.61836],[130.61482,42.6284],[130.61289,42.63038],[130.60616,42.63085],[130.60505,42.63431],[130.59604,42.6403],[130.59809,42.64356],[130.59463,42.64683],[130.59596,42.65184],[130.58842,42.6602],[130.58843,42.66488],[130.58362,42.67108],[130.57676,42.67538],[130.56853,42.67817],[130.5621,42.68535],[130.5548,42.68931],[130.55286,42.69001],[130.54851,42.68946],[130.54514,42.69175],[130.54229,42.69122],[130.53243,42.69839],[130.52256,42.70103],[130.51654,42.70054],[130.50776,42.69552],[130.50051,42.69506],[130.49842,42.69258],[130.49428,42.69336],[130.49151,42.69011],[130.48763,42.69044],[130.48443,42.68826],[130.47849,42.69011],[130.47186,42.68944],[130.46822,42.68987],[130.45908,42.68474],[130.44977,42.69444],[130.44802,42.70161],[130.44543,42.70078],[130.43871,42.70147],[130.4344,42.70367],[130.43077,42.70788],[130.42009,42.70333],[130.40735,42.7129],[130.40853,42.71541],[130.40147,42.72398],[130.39422,42.72447],[130.46619,42.7686],[130.57111,42.8087],[130.67053,42.85482],[130.72024,42.82955],[130.76446,42.84052],[130.78396,42.87214],[130.82667,42.87989],[130.88586,42.84739],[130.91635,42.87498],[130.98103,42.85455],[131.04022,42.8623],[131.01605,42.91746],[131.11272,42.91227],[131.13322,42.92919],[131.14273,42.96219],[131.10682,42.97192],[131.09838,43.02183],[131.11739,43.07175],[131.16601,43.07062],[131.16972,43.1062],[131.21187,43.14579],[131.20274,43.16659],[131.21009,43.18338],[131.19272,43.20618],[131.20281,43.22898],[131.25005,43.27213],[131.27532,43.37125],[131.31157,43.38849],[131.28575,43.43302],[131.30937,43.45761],[131.26361,43.4936],[131.19312,43.5256],[131.18124,43.55376],[131.22615,43.58614],[131.21708,43.67874],[131.20994,43.80828],[131.22285,43.86712],[131.25773,43.91012],[131.23493,43.98083],[131.26473,44.03001],[131.30002,44.05154],[131.11215,44.7],[131.09539,44.71396],[131.07864,44.73964],[131.0616,44.77927],[131.01436,44.77406],[131.00447,44.82602],[130.96711,44.81953],[130.96225,44.86187],[131.07824,44.88084],[131.07888,44.91634],[131.10149,44.94017],[131.16867,44.94697],[131.2029,44.91489],[131.28863,44.92558],[131.34139,44.98682],[131.40927,44.98004],[131.42761,44.96572],[131.47342,44.95917],[131.48626,44.97593],[131.48263,44.99658],[131.59926,45.05577],[131.69391,45.12661],[131.64701,45.1597],[131.68124,45.22562],[131.78687,45.21414],[131.80673,45.29054],[131.87603,45.34376],[131.91343,45.33654],[131.92885,45.28297],[131.96625,45.2719],[131.98167,45.25696],[132.84875,45.05972],[132.95228,45.01758],[133.04539,45.06741],[133.0837,45.1059],[133.12751,45.125],[133.13286,45.17604],[133.08885,45.248],[133.09977,45.29288],[133.12695,45.35251],[133.14288,45.42919],[133.19726,45.50587],[133.31344,45.55102],[133.37407,45.57673],[133.41822,45.57167],[133.3992,45.61852],[133.42539,45.62656],[133.46806,45.60771],[133.44493,45.64974],[133.48221,45.66104],[133.47555,45.69345],[133.43043,45.69516],[133.45831,45.78491],[133.48069,45.85933],[133.52725,45.90278],[133.58478,45.86592],[133.59564,45.88882],[133.61472,45.90598],[133.59879,45.93508],[133.62955,45.94793],[133.67184,45.94308],[133.66965,45.98737],[133.7125,46.02478],[133.73886,46.066],[133.69547,46.11031],[133.68503,46.15081],[133.76852,46.17091],[133.79242,46.19523],[133.79983,46.22904],[133.81962,46.22327],[133.82677,46.20423],[133.84215,46.2004],[133.85426,46.21547],[133.87461,46.23244],[133.85376,46.24751],[133.89309,46.25105],[133.91045,46.26409],[133.90883,46.27985],[133.88798,46.30321],[133.91657,46.32278],[133.9122,46.33285],[133.87737,46.31887],[133.86176,46.34471],[133.87294,46.36013],[133.89784,46.36417],[133.93099,46.3739],[133.94766,46.3931],[133.89635,46.44827],[133.86152,46.44287],[133.84179,46.4545],[133.84129,46.48127],[133.86131,46.49278],[133.86484,46.50997],[133.87388,46.5262],[133.89389,46.54244],[133.9092,46.59191],[133.96022,46.61684],[134.00368,46.63752],[134.02517,46.6978],[134.01508,46.72133],[134.0297,46.74485],[134.04847,46.77501],[134.01505,46.81645],[134.01757,46.83482],[134.03656,46.84379],[134.03885,46.88428],[134.06814,46.93709],[134.05348,46.9824],[134.11299,47.02302],[134.12306,47.0861],[134.21277,47.09867],[134.22009,47.11872],[134.21299,47.19058],[134.13997,47.2587],[134.18781,47.3417],[134.24113,47.35768],[134.31207,47.43612],[134.48189,47.44023],[134.57533,47.4972],[134.58088,47.51705],[134.64141,47.56047],[134.67715,47.59216],[134.68542,47.63866],[134.72392,47.65762],[134.78445,47.72518],[134.74263,47.78201],[134.67333,47.82038],[134.65009,47.89346],[134.57118,47.90976],[134.58016,47.95183],[134.54245,47.98837],[134.54319,48.02859],[134.56725,48.03926],[134.58033,48.06278],[134.6257,48.09881],[134.63262,48.12293],[134.66767,48.14325],[134.66151,48.19654],[134.66501,48.24082],[134.6901,48.25839],[134.72187,48.27448],[134.71793,48.2851],[134.76536,48.35311],[134.76885,48.37548],[134.79569,48.37892],[134.839,48.39877],[134.9009,48.44759],[134.91057,48.46972],[134.92573,48.50277],[134.98896,48.52307],[135,48.5361],[135,60],[155,60],[155,57],[146.49147,45.73822]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:UA0:**Asiatic Russia, south of 60º N and between 155º and 170º E+- including the Kurils","itu_zone_number":35,"itu_zone_name_loc":[55,160]},"geometry":{"type":"Polygon","coordinates":[[[150,45.21871],[146.16455,43.26843],[145.54187,43.542],[145.22612,43.82251],[146.49147,45.73822],[155,57],[155,60],[180,60],[160,50],[150,45.21871]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:CT3:**Madeira Island#CU:**Azores#EA8:**Canary Islands","itu_zone_number":36,"itu_zone_name_loc":[35,-25]},"geometry":{"type":"Polygon","coordinates":[[[-40,23],[-40,44],[-13,44],[-13,28.25],[-17,23],[-40,23]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!:CN:**Morocco#CT:**Portugal#EA:**Spain#EA6:**Baleares#EA9:**Ceuta & Melilla#!!I:**Italy#IG9, IH9:Pantelleria and Pelagic islands (African Italy)#ZB:**Gibraltar#3V:**Tunisia#7X:**Algeria","itu_zone_number":37,"itu_zone_name_loc":[35,0]},"geometry":{"type":"Polygon","coordinates":[[[-13,44],[-13,28.25],[-13.45361,27.66646],[-8.66588,27.66646],[-8.66667,27.29444],[-4.85704,25.0159],[-3.72807,24.28551],[1.16658,21.1163],[1.19058,20.99261],[1.19109,20.94114],[1.15863,20.74085],[1.18773,20.72156],[1.22781,20.72796],[1.32282,20.7395],[1.3574,20.67141],[1.59766,20.59637],[1.66322,20.53259],[1.67385,20.40193],[1.81356,20.2918],[1.88736,20.28986],[1.91653,20.22541],[1.94896,20.25246],[1.97698,20.25922],[2.005,20.24537],[2.04457,20.2692],[2.1237,20.23697],[2.18523,20.26982],[2.20832,20.31812],[2.25122,20.30522],[2.30768,20.27479],[2.30371,20.23406],[2.35742,20.19591],[2.35956,20.16137],[2.40564,20.13198],[2.39281,20.10204],[2.37746,20.09675],[2.38547,20.06437],[2.3749,20.02771],[2.39729,20.04135],[2.39706,20.06315],[2.41204,20.07469],[2.4339,20.0772],[2.4482,20.08745],[2.45701,20.08867],[2.46581,20.0957],[2.47325,20.09628],[2.48067,20.08504],[2.4977,20.09316],[2.50993,20.08772],[2.51941,20.0939],[2.52689,20.08199],[2.53713,20.06235],[2.55148,20.0556],[2.55522,20.03997],[2.56171,20.03337],[2.59667,20.03243],[2.60278,20.04439],[2.62469,20.05377],[2.6377,20.04814],[2.63528,20.0408],[2.66085,20.05326],[2.66449,20.05186],[2.66677,20.05949],[2.6711,20.0768],[2.66914,20.08416],[2.68053,20.0988],[2.68642,20.09797],[2.69937,20.08355],[2.69883,20.07123],[2.73125,19.99699],[2.82616,19.96468],[2.8936,19.96334],[2.97443,19.95002],[3.01251,19.93371],[3.03507,19.91543],[3.09197,19.89844],[3.11561,19.87865],[3.13376,19.87306],[3.14946,19.85801],[3.19802,19.84148],[3.23741,19.84161],[3.25689,19.83463],[3.26354,19.81648],[3.2472,19.79353],[3.24735,19.768],[3.24612,19.74377],[3.23116,19.70919],[3.23363,19.67444],[3.25533,19.63711],[3.23007,19.59995],[3.23667,19.56294],[3.26524,19.52851],[3.24986,19.49926],[3.26744,19.44931],[3.2591,19.43548],[3.20682,19.42942],[3.1971,19.39098],[3.17915,19.3629],[3.18592,19.32769],[3.20367,19.30803],[3.19798,19.27649],[3.12754,19.18359],[3.11479,19.13998],[3.23896,19.05925],[3.28732,19.02019],[3.29941,18.99938],[3.33347,18.99157],[3.35764,18.96814],[5.81301,19.44323],[7.45937,20.84341],[12,23.49999],[11.60295,24.26581],[11.42324,24.19938],[11.13152,24.39394],[11.04608,24.4262],[11.02952,24.45552],[10.9855,24.48733],[10.95514,24.52847],[10.9085,24.55253],[10.88108,24.55662],[10.84813,24.567],[10.81519,24.5649],[10.7946,24.54156],[10.79873,24.52822],[10.77129,24.50902],[10.73836,24.5373],[10.72362,24.57057],[10.63472,24.56886],[10.61449,24.57215],[10.60163,24.5613],[10.5888,24.55172],[10.58695,24.53964],[10.56954,24.54046],[10.54965,24.53314],[10.48032,24.5383],[10.43434,24.53347],[10.35265,24.53364],[10.33247,24.56763],[10.30316,24.59213],[10.28757,24.59913],[10.26856,24.61863],[10.21658,24.64812],[10.19894,24.68384],[10.19778,24.6971],[10.13682,24.80751],[10.10908,24.83902],[10.10058,24.87802],[10.07479,24.90936],[10.06464,24.92877],[10.04076,24.95565],[10.02842,25.35397],[9.39967,26.19533],[9.44009,26.24675],[9.50524,26.37698],[9.8635,26.51679],[9.9143,26.6447],[9.90193,26.74314],[9.93075,26.85787],[9.91238,26.86878],[9.90087,26.88337],[9.8928,26.89979],[9.87847,26.90678],[9.86138,26.93091],[9.86078,26.94234],[9.85606,26.95377],[9.83975,27.02068],[9.84052,27.05199],[9.83168,27.06618],[9.83382,27.07975],[9.8291,27.10189],[9.82301,27.11956],[9.81691,27.13357],[9.81846,27.1457],[9.80163,27.16567],[9.80232,27.1829],[9.79614,27.20013],[9.79476,27.22483],[9.78103,27.26418],[9.79407,27.30992],[9.79749,27.34956],[9.7877,27.35145],[9.80263,27.39115],[9.81481,27.40921],[9.81198,27.43865],[9.82013,27.44738],[9.81472,27.45793],[9.82575,27.47112],[9.82854,27.48432],[9.86716,27.50421],[9.86938,27.53079],[9.87985,27.55738],[9.8262,27.55896],[9.81787,27.56662],[9.82396,27.57551],[9.86851,27.58317],[9.89486,27.60908],[9.91764,27.66036],[9.92766,27.67323],[9.92807,27.69705],[9.94506,27.73065],[9.94522,27.84578],[9.96324,27.85888],[9.96632,27.88144],[9.83204,28.29156],[9.9065,28.75004],[9.88056,28.98174],[9.7887,29.40556],[9.54303,29.89505],[9.42019,30.03021],[9.39624,30.16537],[9.95379,30.38572],[10.18176,30.66292],[10.30673,30.86757],[10.28887,31.08164],[10.12133,31.48158],[10.33007,31.73043],[10.53881,31.74551],[10.63563,31.86921],[10.62258,31.90892],[10.65348,31.97193],[10.72833,31.96037],[10.8121,32.01189],[10.88488,32.1193],[11.14169,32.26614],[11.37652,32.32935],[11.5935,32.44655],[11.59625,32.52464],[11.51522,32.59611],[11.48913,32.66757],[11.49462,32.92105],[11.5523,33.12608],[11.56604,33.24828],[13.17828,35.88434],[12.36254,37.03947],[9.98889,37.93682],[7.5,37.94803],[7.5,42.43575],[3.17622,42.43575],[3.11997,42.43681],[3.10283,42.42417],[3.0802,42.42369],[3.07679,42.43842],[3.04867,42.45314],[3.03911,42.4765],[3.01543,42.46866],[2.99176,42.47298],[2.9722,42.46717],[2.94441,42.47959],[2.91903,42.45683],[2.86893,42.46648],[2.85727,42.45256],[2.83737,42.45891],[2.82709,42.44499],[2.80307,42.43107],[2.80447,42.41944],[2.77496,42.41363],[2.75333,42.4239],[2.71935,42.41796],[2.66968,42.40032],[2.67031,42.38424],[2.65171,42.38643],[2.66744,42.36528],[2.67494,42.34413],[2.63197,42.34124],[2.59263,42.354],[2.56977,42.35865],[2.55446,42.35466],[2.5419,42.33241],[2.50531,42.34162],[2.48794,42.34069],[2.43913,42.37432],[2.43152,42.39375],[2.39923,42.38961],[2.38342,42.39966],[2.35937,42.4016],[2.34357,42.41571],[2.32708,42.41643],[2.31059,42.42729],[2.28861,42.42264],[2.27211,42.4332],[2.25562,42.43565],[2.19851,42.41605],[2.16063,42.42484],[2.12246,42.40642],[2.11451,42.37989],[2.0887,42.36553],[2.04833,42.36038],[2.0162,42.35117],[1.97214,42.37211],[1.95975,42.3956],[1.95834,42.4191],[1.94184,42.43144],[1.93906,42.45392],[1.89712,42.44515],[1.82771,42.48501],[1.79815,42.48899],[1.76585,42.48486],[1.72597,42.50091],[1.70848,42.49005],[1.67228,42.49678],[1.6553,42.46907],[1.58838,42.46429],[1.57639,42.44736],[1.56103,42.45908],[1.54842,42.43229],[1.49573,42.43243],[1.47626,42.43655],[1.45129,42.43763],[1.44018,42.45235],[1.44005,42.47924],[1.41233,42.48438],[1.41684,42.49277],[1.44607,42.49508],[1.46882,42.50983],[1.44351,42.54482],[1.4127,42.53326],[1.42584,42.55459],[1.44173,42.56783],[1.4274,42.58005],[1.44496,42.59425],[1.44054,42.60643],[1.39405,42.67273],[1.35305,42.71883],[1.25564,42.71868],[1.22068,42.72365],[1.17197,42.71045],[1.13529,42.72652],[1.13156,42.75065],[1.08016,42.78882],[1.05337,42.78389],[1.03482,42.78703],[0.98125,42.78926],[0.95649,42.80582],[0.92346,42.79057],[0.86015,42.82657],[0.83368,42.826],[0.80171,42.83953],[0.78173,42.83436],[0.70742,42.86028],[0.65985,42.84769],[0.67474,42.81029],[0.64373,42.78353],[0.66766,42.77289],[0.64214,42.75722],[0.66057,42.74558],[0.68312,42.72083],[0.67546,42.69204],[0.62608,42.69262],[0.60142,42.70329],[0.58638,42.69377],[0.53491,42.70315],[0.51915,42.69435],[0.49583,42.69111],[0.47252,42.70199],[0.4204,42.68743],[0.39708,42.6968],[0.39025,42.71627],[0.37792,42.71454],[0.3601,42.7229],[0.32994,42.70885],[0.32451,42.69681],[0.31771,42.68275],[0.29717,42.67273],[0.26839,42.69602],[0.26159,42.71728],[0.23144,42.71837],[0.18618,42.73661],[0.11252,42.71118],[0.08106,42.71744],[0.05784,42.69746],[0.01676,42.70069],[-0.01058,42.68374],[-0.05783,42.69502],[-0.0691,42.7158],[-0.10783,42.72448],[-0.16114,42.79346],[-0.17875,42.78281],[-0.23424,42.80771],[-0.23919,42.82099],[-0.25814,42.82158],[-0.2771,42.83427],[-0.31995,42.84269],[-0.34326,42.84056],[-0.37755,42.80821],[-0.38783,42.79657],[-0.41459,42.80911],[-0.44065,42.79791],[-0.50649,42.8269],[-0.52295,42.81249],[-0.52293,42.79606],[-0.54076,42.79071],[-0.55585,42.77731],[-0.56983,42.78552],[-0.57008,42.80583],[-0.59804,42.80614],[-0.60178,42.82893],[-0.64534,42.85373],[-0.67792,42.88256],[-0.70157,42.8802],[-0.7285,42.89512],[-0.73346,42.91205],[-0.73102,42.93685],[-0.75055,42.96568],[-0.78075,42.96669],[-0.81094,42.95163],[-0.89332,42.95667],[-0.90703,42.96171],[-0.93517,42.95218],[-0.98357,42.9665],[-1.01548,42.9949],[-1.07038,42.99795],[-1.11425,43.02263],[-1.13895,43.00521],[-1.14717,43.02594],[-1.17049,43.03864],[-1.18045,43.03278],[-1.20877,43.05294],[-1.22885,43.05503],[-1.25443,43.03856],[-1.27176,43.0562],[-1.30558,43.06883],[-1.29776,43.09571],[-1.27073,43.11858],[-1.33073,43.11144],[-1.34578,43.09249],[-1.34161,43.07554],[-1.35249,43.0256],[-1.44445,43.04926],[-1.47324,43.08696],[-1.41688,43.1257],[-1.41499,43.15208],[-1.40168,43.15525],[-1.40211,43.17846],[-1.38184,43.18915],[-1.37975,43.25661],[-1.4102,43.27348],[-1.43504,43.26691],[-1.47361,43.27635],[-1.51505,43.29421],[-1.56198,43.28808],[-1.5621,43.27677],[-1.57046,43.24946],[-1.61452,43.25615],[-1.62969,43.27849],[-1.62288,43.30683],[-1.67999,43.31601],[-1.72886,43.29722],[-1.74211,43.3125],[-1.74162,43.32779],[-1.76263,43.34437],[-1.79187,43.35196],[-1.79001,43.37423],[-1.77717,43.41047],[-3,44],[-13,44]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:SU:**Egypt#5A:**Libya","itu_zone_number":38,"itu_zone_name_loc":[27.5,22.5]},"geometry":{"type":"Polygon","coordinates":[[[34.85369,27.92316],[36.52087,23.83941],[35.62166,23.14851],[35.2079,22.7861],[34.94687,22.85971],[34.81584,22.57721],[34.68756,22.29472],[34.42051,22.24805],[34.14935,22.20393],[34.07868,22.00018],[34.00321,21.77032],[33.55737,21.72439],[33.16646,21.99978],[30.64489,22.00045],[28.0931,22.01895],[25.00004,21.99993],[25.00003,20.00042],[24.00134,19.9996],[23.99966,19.50146],[22.05295,20.51722],[20.07329,21.51239],[15.99997,23.44918],[14.99767,23.00427],[14.1894,22.64545],[13.79011,22.97882],[13.76653,23.0027],[13.61797,23.11379],[13.56143,23.1478],[13.50089,23.1768],[13.41288,23.21085],[12,23.49999],[11.60295,24.26581],[11.42324,24.19938],[11.13152,24.39394],[11.04608,24.4262],[11.02952,24.45552],[10.9855,24.48733],[10.95514,24.52847],[10.9085,24.55253],[10.88108,24.55662],[10.84813,24.567],[10.81519,24.5649],[10.7946,24.54156],[10.79873,24.52822],[10.77129,24.50902],[10.73836,24.5373],[10.72362,24.57057],[10.63472,24.56886],[10.61449,24.57215],[10.60163,24.5613],[10.5888,24.55172],[10.58695,24.53964],[10.56954,24.54046],[10.54965,24.53314],[10.48032,24.5383],[10.43434,24.53347],[10.35265,24.53364],[10.33247,24.56763],[10.30316,24.59213],[10.28757,24.59913],[10.26856,24.61863],[10.21658,24.64812],[10.19894,24.68384],[10.19778,24.6971],[10.13682,24.80751],[10.10908,24.83902],[10.10058,24.87802],[10.07479,24.90936],[10.06464,24.92877],[10.04076,24.95565],[10.02842,25.35397],[9.39967,26.19533],[9.44009,26.24675],[9.50524,26.37698],[9.8635,26.51679],[9.9143,26.6447],[9.90193,26.74314],[9.93075,26.85787],[9.91238,26.86878],[9.90087,26.88337],[9.8928,26.89979],[9.87847,26.90678],[9.86138,26.93091],[9.86078,26.94234],[9.85606,26.95377],[9.83975,27.02068],[9.84052,27.05199],[9.83168,27.06618],[9.83382,27.07975],[9.8291,27.10189],[9.82301,27.11956],[9.81691,27.13357],[9.81846,27.1457],[9.80163,27.16567],[9.80232,27.1829],[9.79614,27.20013],[9.79476,27.22483],[9.78103,27.26418],[9.79407,27.30992],[9.79749,27.34956],[9.7877,27.35145],[9.80263,27.39115],[9.81481,27.40921],[9.81198,27.43865],[9.82013,27.44738],[9.81472,27.45793],[9.82575,27.47112],[9.82854,27.48432],[9.86716,27.50421],[9.86938,27.53079],[9.87985,27.55738],[9.8262,27.55896],[9.81787,27.56662],[9.82396,27.57551],[9.86851,27.58317],[9.89486,27.60908],[9.91764,27.66036],[9.92766,27.67323],[9.92807,27.69705],[9.94506,27.73065],[9.94522,27.84578],[9.96324,27.85888],[9.96632,27.88144],[9.83204,28.29156],[9.9065,28.75004],[9.88056,28.98174],[9.7887,29.40556],[9.54303,29.89505],[9.42019,30.03021],[9.39624,30.16537],[9.95379,30.38572],[10.18176,30.66292],[10.30673,30.86757],[10.28887,31.08164],[10.12133,31.48158],[10.33007,31.73043],[10.53881,31.74551],[10.63563,31.86921],[10.62258,31.90892],[10.65348,31.97193],[10.72833,31.96037],[10.8121,32.01189],[10.88488,32.1193],[11.14169,32.26614],[11.37652,32.32935],[11.5935,32.44655],[11.59625,32.52464],[11.51522,32.59611],[11.48913,32.66757],[11.49462,32.92105],[11.5523,33.12608],[11.56604,33.24828],[13.17828,35.88434],[33.12304,32.49965],[34.21839,31.32427],[34.23548,31.29654],[34.23987,31.29594],[34.33258,31.03998],[34.3676,30.95229],[34.404,30.85782],[34.49783,30.67867],[34.519,30.59181],[34.51667,30.54577],[34.51914,30.53226],[34.55705,30.49459],[34.54218,30.44246],[34.54311,30.41283],[34.61123,30.37103],[34.73673,30.04574],[34.78713,29.90688],[34.84851,29.75849],[34.85688,29.68731],[34.8783,29.64535],[34.87699,29.61394],[34.86676,29.59686],[34.87332,29.57727],[34.8785,29.54395],[34.8847,29.52818],[34.8957,29.51182],[34.90396,29.49366],[34.90191,29.48865],[34.80502,29.13042],[34.47917,28.05488],[34.85457,27.9259]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!!!!!:A4:**Oman#A6:**United Arab Emirates#A7:**Qatar#A9:**Bahrain#E4:**Palestine#HZ:**Saudi Arabia#JY:**Jordan#OD:**Lebanon#TA:**Turkey#YI:**Iraq#YK:**Syria#ZC4:**UK Sovereign Base Areas on Cyprus#4X:**Israel#5B:**Cyprus#7O:**Yemen - excluding Socotra and Abd al Kuri islands#9K:**Kuwait","itu_zone_number":39,"itu_zone_name_loc":[27,42]},"geometry":{"type":"Polygon","coordinates":[[[44.8069,39.62859],[44.80906,39.63907],[44.81563,39.6414],[44.81858,39.64997],[44.8174,39.6543],[44.81353,39.65702],[44.80622,39.65498],[44.79848,39.65724],[44.79941,39.6618],[44.80309,39.66479],[44.80746,39.66988],[44.80633,39.67339],[44.79518,39.66822],[44.8031,39.68442],[44.78783,39.68368],[44.78586,39.68819],[44.78733,39.69165],[44.7834,39.69425],[44.7781,39.70267],[44.77674,39.70351],[44.77195,39.7017],[44.76304,39.70338],[44.76597,39.70765],[44.77028,39.71193],[44.76789,39.71625],[44.75597,39.71292],[44.75022,39.71541],[44.74887,39.72359],[44.74409,39.73124],[44.74482,39.74338],[44.738,39.74522],[44.73544,39.74502],[44.73081,39.7406],[44.72431,39.74125],[44.7156,39.75418],[44.71101,39.76974],[44.69921,39.77291],[44.69085,39.76973],[44.68598,39.77443],[44.68729,39.78229],[44.69477,39.78646],[44.69746,39.79062],[44.69321,39.79526],[44.68415,39.79726],[44.67952,39.78734],[44.66871,39.79191],[44.65721,39.79069],[44.64949,39.80068],[44.63421,39.80592],[44.62924,39.81248],[44.62236,39.81335],[44.61548,39.81264],[44.61134,39.81491],[44.62091,39.82103],[44.61877,39.82589],[44.61379,39.82833],[44.60195,39.82181],[44.59221,39.82795],[44.58865,39.8341],[44.59389,39.84165],[44.59617,39.84885],[44.59226,39.85815],[44.58239,39.86254],[44.57609,39.86255],[44.56498,39.86995],[44.55202,39.88526],[44.55314,39.9011],[44.55083,39.90587],[44.5445,39.907],[44.53541,39.92129],[44.52173,39.92157],[44.5154,39.92909],[44.50675,39.93259],[44.5029,39.93661],[44.50175,39.94448],[44.4951,39.94866],[44.49326,39.95732],[44.48044,39.9665],[44.46749,39.97197],[44.45758,39.9705],[44.45386,39.97165],[44.45191,39.97808],[44.44613,39.98274],[44.4376,39.98424],[44.42879,39.99093],[44.41655,40.00288],[44.40945,40.0047],[44.40235,40.00284],[44.39503,40.00596],[44.38427,40.00424],[44.37579,40.0089],[44.35926,40.01895],[44.35396,40.02679],[44.34101,40.02698],[44.33822,40.03105],[44.33559,40.03249],[44.32965,40.03134],[44.32405,40.03191],[44.31853,40.03856],[44.30965,40.0397],[44.30057,40.03698],[44.29854,40.03741],[44.29507,40.04329],[44.29195,40.04364],[44.28565,40.04351],[44.27969,40.04909],[44.27333,40.04957],[44.26594,40.04795],[44.25597,40.04774],[44.25193,40.04914],[44.24462,40.04726],[44.23942,40.04774],[44.23405,40.04731],[44.23171,40.04489],[44.22885,40.04287],[44.22595,40.04403],[44.2227,40.04441],[44.21832,40.04024],[44.21784,40.0373],[44.21548,40.03528],[44.21191,40.03547],[44.20634,40.03723],[44.20129,40.03978],[44.1977,40.04027],[44.19311,40.04007],[44.19091,40.03909],[44.1893,40.03572],[44.18872,40.03169],[44.18635,40.03008],[44.17976,40.03044],[44.17398,40.02819],[44.17058,40.02916],[44.167,40.03106],[44.15424,40.03149],[44.14233,40.0327],[44.13852,40.03228],[44.13557,40.03094],[44.13172,40.02971],[44.12949,40.03032],[44.12332,40.03423],[44.11973,40.03493],[44.11528,40.0336],[44.10808,40.02964],[44.08253,40.03361],[44.04945,40.02986],[44.01637,40.02295],[43.99497,40.0313],[43.97877,40.02916],[43.97342,40.0202],[43.96669,40.01861],[43.93298,40.02353],[43.89377,40.02318],[43.85526,40.04125],[43.83459,40.04774],[43.82482,40.04819],[43.82329,40.05915],[43.80939,40.06118],[43.79421,40.06902],[43.78589,40.06846],[43.76054,40.08288],[43.74965,40.07913],[43.74131,40.08283],[43.73022,40.07811],[43.71079,40.08129],[43.69252,40.09606],[43.67658,40.09722],[43.67217,40.10901],[43.65648,40.11158],[43.65123,40.12883],[43.65011,40.14503],[43.66958,40.15703],[43.71377,40.16273],[43.71351,40.17171],[43.70088,40.17859],[43.69623,40.19026],[43.66426,40.21202],[43.65427,40.22643],[43.66543,40.2294],[43.68072,40.22504],[43.67987,40.25972],[43.66391,40.27029],[43.65227,40.26856],[43.63311,40.28081],[43.63593,40.29202],[43.62841,40.29711],[43.62671,40.30436],[43.62089,40.30952],[43.59094,40.346],[43.5963,40.35532],[43.59754,40.36465],[43.60414,40.37388],[43.60662,40.38521],[43.61734,40.39026],[43.61955,40.39565],[43.61352,40.4136],[43.61963,40.4174],[43.60793,40.43522],[43.58663,40.44675],[43.57013,40.45934],[43.56119,40.45884],[43.54677,40.46879],[43.544,40.47719],[43.55635,40.48244],[43.55771,40.49395],[43.56869,40.49607],[43.57417,40.50445],[43.58789,40.50659],[43.59996,40.51146],[43.60447,40.5158],[43.61002,40.51519],[43.62,40.52506],[43.62739,40.52348],[43.6238,40.51928],[43.63366,40.51917],[43.63955,40.52383],[43.63742,40.52709],[43.63255,40.52878],[43.6276,40.53685],[43.63381,40.54023],[43.63623,40.53436],[43.64139,40.53683],[43.64364,40.53291],[43.64579,40.53094],[43.65001,40.53055],[43.65107,40.53784],[43.6453,40.54452],[43.64262,40.55406],[43.64174,40.55684],[43.64359,40.56171],[43.65789,40.56502],[43.66452,40.56433],[43.67397,40.56815],[43.66831,40.57249],[43.67142,40.57699],[43.67762,40.57714],[43.68455,40.58473],[43.68466,40.5926],[43.70411,40.61097],[43.70731,40.6182],[43.70777,40.62542],[43.7144,40.63187],[43.72104,40.63467],[43.71765,40.64255],[43.71908,40.6546],[43.73046,40.66366],[43.73478,40.66115],[43.73591,40.66708],[43.74196,40.66692],[43.74459,40.66989],[43.74067,40.67602],[43.74704,40.67434],[43.7493,40.67735],[43.7458,40.68276],[43.73922,40.68948],[43.74665,40.69927],[43.7459,40.70519],[43.74308,40.70382],[43.74157,40.70837],[43.73718,40.71278],[43.74008,40.71848],[43.74709,40.72523],[43.74687,40.73428],[43.74504,40.73672],[43.74458,40.74046],[43.74299,40.74157],[43.74276,40.74347],[43.74076,40.74545],[43.74048,40.74874],[43.73888,40.74933],[43.73637,40.7565],[43.73518,40.75752],[43.73537,40.75907],[43.73128,40.7619],[43.73202,40.76289],[43.73007,40.76537],[43.72995,40.77117],[43.728,40.77406],[43.72606,40.77566],[43.72354,40.78262],[43.72498,40.78402],[43.72437,40.78671],[43.72245,40.78715],[43.72225,40.78928],[43.72308,40.79037],[43.72185,40.79228],[43.72027,40.79289],[43.71885,40.79618],[43.71667,40.80329],[43.71364,40.80429],[43.7099,40.81051],[43.71061,40.81231],[43.70844,40.81436],[43.70627,40.8203],[43.69912,40.82767],[43.69574,40.82906],[43.69406,40.83107],[43.69238,40.83464],[43.68867,40.83528],[43.67885,40.84487],[43.67726,40.84719],[43.68079,40.85682],[43.68053,40.86593],[43.67766,40.86887],[43.67582,40.8718],[43.6756,40.87346],[43.6764,40.87539],[43.67527,40.87898],[43.67483,40.88244],[43.6737,40.88642],[43.67673,40.89404],[43.67696,40.89578],[43.67638,40.89796],[43.68112,40.90261],[43.68071,40.90388],[43.6793,40.90502],[43.67651,40.90876],[43.67231,40.91001],[43.66939,40.91173],[43.66958,40.91346],[43.67079,40.91624],[43.67166,40.91902],[43.67356,40.92024],[43.67358,40.92163],[43.67154,40.92304],[43.67425,40.9279],[43.67626,40.93018],[43.67181,40.9367],[43.6363,40.95978],[43.59873,40.9826],[43.59241,40.98572],[43.58598,40.98663],[43.58225,40.98968],[43.57953,40.9912],[43.57818,40.99324],[43.57413,40.99336],[43.5718,40.99296],[43.56827,40.9934],[43.56439,40.99267],[43.5616,40.99383],[43.55674,40.99448],[43.55562,40.99577],[43.55364,40.99602],[43.55166,40.99783],[43.54545,40.99935],[43.54215,41.00141],[43.53988,41.00372],[43.53672,41.00549],[43.52456,41.01267],[43.51672,41.01484],[43.50688,41.01194],[43.49894,41.01518],[43.4948,41.01577],[43.49221,41.01632],[43.48783,41.01647],[43.48448,41.01609],[43.4683,41.03112],[43.46922,41.04699],[43.47152,41.06725],[43.46886,41.07002],[43.46493,41.07181],[43.46066,41.07282],[43.45865,41.07459],[43.45835,41.07966],[43.457,41.08233],[43.45667,41.08473],[43.4526,41.08669],[43.44989,41.08711],[43.44749,41.09233],[43.44715,41.09467],[43.44766,41.09727],[43.44715,41.09936],[43.45281,41.10652],[43.45642,41.10929],[43.45754,41.11262],[43.459,41.11983],[43.46638,41.12183],[43.47411,41.12306],[43.46159,41.15197],[43.44872,41.17597],[43.4295,41.18207],[43.41164,41.18662],[43.40574,41.19014],[43.39984,41.19289],[43.38461,41.19993],[43.37577,41.20318],[43.3701,41.20217],[43.36691,41.20344],[43.35993,41.20174],[43.35526,41.20144],[43.35174,41.20265],[43.34217,41.20209],[43.33775,41.20076],[43.33028,41.20093],[43.32882,41.20015],[43.32702,41.19859],[43.32238,41.19573],[43.31749,41.19469],[43.315,41.19364],[43.31028,41.19157],[43.30775,41.19092],[43.30522,41.18949],[43.30235,41.19031],[43.29914,41.18931],[43.29374,41.18965],[43.28878,41.18696],[43.2823,41.18674],[43.27222,41.18356],[43.26351,41.1796],[43.25634,41.17894],[43.25344,41.17757],[43.24942,41.17715],[43.24677,41.17724],[43.24439,41.17639],[43.24201,41.17451],[43.23945,41.17521],[43.2356,41.17582],[43.23312,41.17566],[43.23076,41.17308],[43.22908,41.17465],[43.23273,41.17763],[43.23775,41.18371],[43.23138,41.191],[43.2142,41.21564],[43.20233,41.23163],[43.20091,41.23453],[43.1988,41.24621],[43.19459,41.25381],[43.19193,41.253],[43.18339,41.25428],[43.17554,41.25451],[43.17409,41.25248],[43.16748,41.24941],[43.1632,41.24972],[43.15609,41.24626],[43.15253,41.24544],[43.14989,41.24683],[43.14725,41.2459],[43.1449,41.24661],[43.14014,41.25041],[43.13508,41.25259],[43.13226,41.25207],[43.12772,41.25309],[43.13307,41.25703],[43.13814,41.25783],[43.14051,41.25682],[43.14135,41.25747],[43.14057,41.25857],[43.1415,41.25967],[43.14721,41.262],[43.14949,41.26149],[43.15211,41.26227],[43.15607,41.26771],[43.16028,41.26843],[43.16346,41.27018],[43.16879,41.27266],[43.17398,41.27145],[43.17611,41.27317],[43.17718,41.27312],[43.17893,41.2723],[43.18072,41.27324],[43.18,41.27573],[43.18472,41.27713],[43.18528,41.27925],[43.18687,41.2806],[43.19035,41.28227],[43.1928,41.28446],[43.1977,41.28574],[43.20019,41.2846],[43.20268,41.28528],[43.20355,41.28687],[43.20741,41.28768],[43.20956,41.28899],[43.21317,41.28956],[43.21147,41.29764],[43.21543,41.29884],[43.2157,41.30034],[43.21274,41.30419],[43.2139,41.30572],[43.2124,41.30639],[43.20512,41.30545],[43.20288,41.30605],[43.20097,41.30794],[43.19819,41.30862],[43.18897,41.3044],[43.18313,41.30452],[43.18074,41.30619],[43.16599,41.309],[43.16307,41.31092],[43.16119,41.31465],[43.1588,41.31566],[43.15603,41.31634],[43.15086,41.31613],[43.14292,41.31711],[43.13665,41.31857],[43.13269,41.32049],[43.12711,41.32712],[43.12565,41.32963],[43.11254,41.34297],[43.11249,41.3455],[43.10936,41.34958],[43.09526,41.35717],[43.09131,41.35859],[43.08598,41.35872],[43.07877,41.36206],[43.07705,41.36245],[43.07498,41.36464],[43.072,41.36469],[43.06741,41.36497],[43.06489,41.36602],[43.06063,41.36637],[43.05875,41.36965],[43.05515,41.37292],[43.04572,41.37594],[43.04075,41.3769],[43.0351,41.3725],[43.03151,41.37093],[43.01853,41.37557],[43.02168,41.37917],[43.02026,41.38127],[43.01781,41.38543],[43.01428,41.38937],[43.01099,41.39623],[43.0065,41.39755],[43.0039,41.40659],[42.99595,41.40884],[42.98954,41.41135],[42.98788,41.41232],[42.98794,41.41458],[42.99012,41.41601],[42.99,41.42402],[42.97716,41.42784],[42.97221,41.43062],[42.97042,41.43072],[42.96692,41.43391],[42.96805,41.43749],[42.97072,41.44171],[42.96792,41.45117],[42.96048,41.45183],[42.95333,41.45383],[42.9503,41.45532],[42.94332,41.45715],[42.936,41.46461],[42.93186,41.46384],[42.92901,41.46674],[42.93183,41.46899],[42.92957,41.47131],[42.92817,41.47094],[42.92368,41.47365],[42.92054,41.47369],[42.91287,41.47632],[42.91076,41.47616],[42.90695,41.4775],[42.90555,41.47677],[42.89892,41.47902],[42.89887,41.48113],[42.89746,41.48349],[42.89668,41.48693],[42.89891,41.4879],[42.89889,41.49008],[42.89921,41.49728],[42.90108,41.49973],[42.90054,41.50089],[42.89839,41.50097],[42.89179,41.50285],[42.88622,41.50242],[42.88373,41.50327],[42.87706,41.50333],[42.8666,41.49642],[42.86523,41.49425],[42.86283,41.49208],[42.86281,41.48926],[42.86073,41.48077],[42.85863,41.47898],[42.85752,41.47694],[42.85882,41.47555],[42.8574,41.47292],[42.85618,41.4716],[42.85118,41.47003],[42.84964,41.47342],[42.84638,41.47294],[42.84054,41.47556],[42.83848,41.47663],[42.83608,41.47782],[42.8323,41.47789],[42.82844,41.48063],[42.82389,41.48619],[42.82028,41.48883],[42.81295,41.49141],[42.80904,41.49348],[42.80575,41.49332],[42.80314,41.4947],[42.80102,41.4967],[42.80192,41.49966],[42.80163,41.50064],[42.80133,41.50265],[42.80349,41.50435],[42.80439,41.50673],[42.8044,41.5085],[42.8008,41.51208],[42.79652,41.51618],[42.80176,41.52381],[42.80439,41.52686],[42.80539,41.52865],[42.8057,41.53043],[42.80701,41.53221],[42.80937,41.53314],[42.81139,41.53509],[42.81326,41.53542],[42.81479,41.5373],[42.81715,41.53925],[42.81734,41.54196],[42.81924,41.54467],[42.81824,41.54881],[42.81899,41.55297],[42.82152,41.55641],[42.82387,41.55638],[42.82677,41.55765],[42.82829,41.55712],[42.83002,41.55881],[42.83003,41.56261],[42.83107,41.56461],[42.834,41.56718],[42.83247,41.56951],[42.83489,41.57132],[42.83507,41.57358],[42.83319,41.57481],[42.83407,41.57701],[42.83374,41.5805],[42.83599,41.58475],[42.83299,41.58554],[42.82964,41.58734],[42.82046,41.58761],[42.81574,41.58865],[42.79292,41.58856],[42.79292,41.58656],[42.78709,41.58555],[42.78245,41.58325],[42.78181,41.58004],[42.7822,41.57735],[42.78057,41.57684],[42.77825,41.57703],[42.77558,41.57824],[42.77356,41.58007],[42.77223,41.58266],[42.76888,41.58503],[42.76268,41.58629],[42.75219,41.58536],[42.74939,41.58815],[42.74782,41.58865],[42.74694,41.59017],[42.74032,41.596],[42.736,41.59654],[42.73099,41.59607],[42.72221,41.59533],[42.71239,41.59537],[42.70546,41.59839],[42.69854,41.60064],[42.69173,41.59984],[42.68768,41.59903],[42.68369,41.59972],[42.65924,41.59264],[42.62543,41.58798],[42.60107,41.58508],[42.59125,41.57354],[42.57593,41.56534],[42.57617,41.56369],[42.57366,41.55792],[42.57612,41.55472],[42.57959,41.54554],[42.58065,41.54304],[42.57638,41.53959],[42.57476,41.53555],[42.57069,41.53378],[42.56937,41.53305],[42.56819,41.52844],[42.56392,41.52588],[42.56729,41.52069],[42.56757,41.51755],[42.57002,41.51509],[42.57248,41.51133],[42.57259,41.50974],[42.57041,41.50797],[42.56572,41.50837],[42.56068,41.50722],[42.55719,41.50434],[42.55644,41.49992],[42.55358,41.49828],[42.54933,41.49876],[42.54508,41.49321],[42.54239,41.49291],[42.53729,41.49133],[42.53225,41.49125],[42.52836,41.48353],[42.52549,41.47864],[42.51805,41.47657],[42.51455,41.47411],[42.51208,41.47165],[42.51299,41.46543],[42.51561,41.4628],[42.5164,41.46013],[42.51831,41.45915],[42.51668,41.45801],[42.51677,41.4561],[42.52142,41.45303],[42.5204,41.44933],[42.52092,41.44667],[42.52453,41.44401],[42.52333,41.44212],[42.52136,41.43808],[42.52007,41.43636],[42.51182,41.44003],[42.50803,41.44023],[42.50663,41.44165],[42.5055,41.44081],[42.503,41.44049],[42.49484,41.44519],[42.49216,41.44552],[42.49111,41.44423],[42.48937,41.44038],[42.48661,41.44122],[42.48179,41.43768],[42.47903,41.43865],[42.47611,41.43862],[42.4719,41.43564],[42.46941,41.43575],[42.46545,41.43727],[42.46183,41.43646],[42.45959,41.43811],[42.457,41.43924],[42.45146,41.4386],[42.44853,41.4386],[42.44792,41.4404],[42.44594,41.44169],[42.4394,41.4417],[42.43766,41.44376],[42.4342,41.44402],[42.42905,41.44807],[42.4239,41.45316],[42.41566,41.4587],[42.41188,41.45831],[42.40587,41.46353],[42.39986,41.46617],[42.3923,41.46592],[42.38543,41.46361],[42.38302,41.46749],[42.37151,41.46454],[42.35992,41.46615],[42.355,41.46934],[42.35007,41.47047],[42.34125,41.47146],[42.32979,41.46828],[42.32609,41.47189],[42.32012,41.47705],[42.31484,41.48066],[42.30427,41.48247],[42.29315,41.48955],[42.29125,41.48819],[42.28385,41.49351],[42.27729,41.49284],[42.27245,41.49397],[42.26761,41.49149],[42.26203,41.49144],[42.25644,41.49498],[42.2494,41.49436],[42.24158,41.49392],[42.23596,41.49704],[42.22896,41.4981],[42.22595,41.49869],[42.21971,41.49562],[42.21384,41.49615],[42.21071,41.49461],[42.20852,41.49157],[42.20285,41.49128],[42.19933,41.49809],[42.19444,41.50746],[42.18654,41.50936],[42.17829,41.51461],[42.1666,41.51144],[42.15831,41.50663],[42.14762,41.50567],[42.13654,41.50787],[42.13051,41.50502],[42.12173,41.50628],[42.11859,41.50879],[42.11153,41.51185],[42.10653,41.50874],[42.10221,41.50665],[42.09731,41.50947],[42.0924,41.51023],[42.08506,41.51033],[42.06765,41.50421],[42.06239,41.50064],[42.05632,41.49834],[42.05162,41.49809],[42.04668,41.4946],[42.04078,41.4935],[42.03144,41.49471],[42.0286,41.49968],[42.01562,41.50201],[42.00607,41.50229],[42.00167,41.50488],[41.9952,41.50439],[41.99311,41.50637],[41.99033,41.51247],[41.99232,41.51439],[41.9915,41.51668],[41.98794,41.51871],[41.98506,41.52229],[41.98012,41.52291],[41.9738,41.52147],[41.96255,41.52477],[41.95484,41.52328],[41.95287,41.52101],[41.94942,41.51843],[41.94752,41.51727],[41.94587,41.51736],[41.94354,41.51642],[41.94024,41.51402],[41.94038,41.51297],[41.93859,41.51073],[41.93336,41.50872],[41.92847,41.50849],[41.92445,41.50697],[41.91754,41.50119],[41.91487,41.50102],[41.91357,41.49982],[41.91064,41.49896],[41.91009,41.4948],[41.90714,41.49212],[41.89973,41.48853],[41.89881,41.48613],[41.89754,41.48397],[41.89529,41.48179],[41.89235,41.47987],[41.89665,41.47608],[41.89515,41.47487],[41.89314,41.47442],[41.88992,41.47276],[41.88756,41.47187],[41.88696,41.4697],[41.88413,41.46753],[41.88345,41.46568],[41.88362,41.46358],[41.88156,41.46032],[41.87814,41.45886],[41.87661,41.45868],[41.87251,41.45705],[41.87033,41.45687],[41.86702,41.45501],[41.86406,41.45431],[41.85913,41.45251],[41.85677,41.45174],[41.85482,41.45081],[41.85287,41.44937],[41.84765,41.44873],[41.84656,41.44822],[41.84665,41.44418],[41.84563,41.44098],[41.83996,41.43799],[41.83362,41.43565],[41.83248,41.43519],[41.83014,41.43524],[41.82677,41.43362],[41.82349,41.43097],[41.82249,41.43245],[41.81821,41.4328],[41.81461,41.43392],[41.81223,41.43668],[41.81226,41.43996],[41.80782,41.44324],[41.80578,41.44652],[41.80117,41.44793],[41.79518,41.44728],[41.79057,41.44874],[41.78871,41.4502],[41.78936,41.45211],[41.78898,41.45427],[41.78718,41.45578],[41.78738,41.46032],[41.786,41.46101],[41.78393,41.46143],[41.78151,41.4625],[41.77567,41.46356],[41.77425,41.46063],[41.77008,41.46207],[41.769,41.46376],[41.76537,41.46461],[41.75693,41.46751],[41.75551,41.46972],[41.7534,41.47038],[41.7506,41.47002],[41.74671,41.47112],[41.74316,41.47068],[41.73951,41.47212],[41.73825,41.47137],[41.73219,41.47293],[41.72763,41.47194],[41.71825,41.47379],[41.71634,41.47335],[41.7134,41.47419],[41.71062,41.47349],[41.70751,41.47408],[41.70944,41.47697],[41.71344,41.47883],[41.71475,41.48169],[41.71468,41.48506],[41.71765,41.48949],[41.71457,41.49288],[41.70977,41.49628],[41.70512,41.496],[41.70048,41.49443],[41.69927,41.493],[41.69737,41.49156],[41.69461,41.49051],[41.69048,41.48792],[41.68566,41.48685],[41.68236,41.48805],[41.67882,41.48697],[41.67425,41.48384],[41.67142,41.48418],[41.66517,41.48247],[41.66136,41.4841],[41.65821,41.4845],[41.65498,41.48548],[41.65184,41.48505],[41.64972,41.48545],[41.6476,41.48517],[41.6436,41.48667],[41.64188,41.48632],[41.64027,41.4864],[41.63874,41.48674],[41.6367,41.48648],[41.63337,41.48685],[41.62845,41.49022],[41.62808,41.49231],[41.62592,41.49298],[41.6226,41.49657],[41.62198,41.49946],[41.61929,41.50081],[41.61528,41.50196],[41.61114,41.50189],[41.60631,41.50387],[41.60214,41.50397],[41.59618,41.50704],[41.59125,41.50813],[41.5869,41.50816],[41.58427,41.50896],[41.58252,41.5103],[41.58163,41.51165],[41.58177,41.51426],[41.57795,41.51727],[41.57204,41.5198],[41.56518,41.51918],[41.56134,41.51956],[41.55774,41.5183],[41.555,41.51809],[41.55225,41.51879],[41.54865,41.52018],[41.54676,41.52038],[41.49877,41.53332],[30,43.5],[30,42],[28.02544,41.97996],[27.91427,41.98153],[27.86142,42.00273],[27.81715,41.99087],[27.8333,41.94838],[27.73036,41.97957],[27.58551,41.93491],[27.57488,41.92177],[27.56975,41.9025],[27.5429,41.9152],[27.51056,41.95652],[27.49256,41.94924],[27.43886,41.97466],[27.39615,42.00824],[27.36977,42.05601],[27.34148,42.05951],[27.29849,42.09489],[27.23628,42.10582],[27.20929,42.09128],[27.20428,42.06247],[27.13932,42.06398],[27.10869,42.08383],[27.06433,42.09145],[27.01873,42.07913],[27.0264,42.05855],[26.9923,42.03372],[26.97056,42.00022],[26.93557,41.99922],[26.90058,41.98801],[26.86866,41.98649],[26.84499,41.97068],[26.82236,41.97377],[26.78677,41.9861],[26.75135,41.95914],[26.6253,41.97507],[26.5627,41.92727],[26.58113,41.90296],[26.57112,41.88673],[26.57572,41.87247],[26.56292,41.85717],[26.55012,41.848],[26.53944,41.82431],[26.37084,41.82314],[26.32515,41.74416],[26.35087,41.71434],[26.39275,41.68964],[26.43463,41.68545],[26.49366,41.66476],[26.48814,41.6521],[26.53068,41.62201],[26.56706,41.61312],[26.59245,41.61039],[26.59956,41.58097],[26.59214,41.56737],[26.59571,41.52501],[26.60285,41.48344],[26.61438,41.46407],[26.61273,41.42331],[26.6303,41.41965],[26.63771,41.37971],[26.62315,41.34183],[26.58769,41.32086],[26.54249,41.34029],[26.49792,41.32628],[26.47151,41.29348],[26.39841,41.25035],[26.32611,41.25532],[26.31331,41.17412],[26.33163,41.14701],[26.30783,41.11486],[26.33301,41.10811],[26.31264,41.07472],[26.33158,41.04385],[26.367,41.02023],[26.35175,40.99702],[26.32277,40.98003],[26.34868,40.96437],[26.36086,40.94146],[26.32205,40.94541],[26.30514,40.92817],[26.29055,40.93312],[26.27784,40.92641],[26.29912,40.90262],[26.284,40.89033],[26.26064,40.91645],[26.24896,40.88383],[26.22527,40.88622],[26.22304,40.86872],[26.21094,40.85997],[26.21312,40.84417],[26.20433,40.8263],[26.16586,40.81246],[26.1274,40.7716],[26.12188,40.74187],[26.07509,40.729],[26.03643,40.72824],[25.58284,40.11726],[26.08451,39.41639],[26.49005,39.40783],[26.73355,38.97176],[26.30455,38.66595],[26.32076,38.44329],[26.17643,38.2822],[27.13561,37.79187],[27.09334,37.70565],[26.95995,37.67625],[27.20893,37.14941],[27.22686,36.95396],[27.43454,36.86791],[27.3159,36.66434],[27.53398,36.61334],[27.84627,36.69365],[27.96671,36.53534],[28.51287,36.5339],[29.34707,36.21821],[29.58839,36.17786],[29.67334,36.12332],[30,36],[30,33.03857],[33.12304,32.49965],[34.21839,31.32427],[34.23548,31.29654],[34.23987,31.29594],[34.33258,31.03998],[34.3676,30.95229],[34.404,30.85782],[34.49783,30.67867],[34.519,30.59181],[34.51667,30.54577],[34.51914,30.53226],[34.55705,30.49459],[34.54218,30.44246],[34.54311,30.41283],[34.61123,30.37103],[34.73673,30.04574],[34.78713,29.90688],[34.84851,29.75849],[34.85688,29.68731],[34.8783,29.64535],[34.87699,29.61394],[34.86676,29.59686],[34.87332,29.57727],[34.8785,29.54395],[34.8847,29.52818],[34.8957,29.51182],[34.90396,29.49366],[34.90191,29.48865],[34.80502,29.13042],[34.47917,28.05488],[34.85457,27.9259],[34.85369,27.92316],[36.52087,23.83941],[42.64797,13.47029],[44.32215,11.48006],[60,15],[60,24],[57.35314,25.2439],[56.44213,26.57008],[54.35644,25.55673],[51.08593,27.41514],[48.61398,29.9301],[48.58453,29.94523],[48.51556,29.96008],[48.45689,29.99635],[48.44801,30.0121],[48.44734,30.03751],[48.44393,30.0647],[48.43027,30.08312],[48.40434,30.10094],[48.37909,30.12174],[48.38363,30.13332],[48.3923,30.14135],[48.40885,30.15917],[48.41855,30.17937],[48.412,30.19722],[48.37662,30.22709],[48.34399,30.25934],[48.30965,30.29751],[48.27187,30.33568],[48.25926,30.3393],[48.24734,30.33996],[48.24125,30.33587],[48.23791,30.33001],[48.2278,30.32065],[48.21494,30.31485],[48.20654,30.31691],[48.19952,30.32074],[48.19303,30.33196],[48.18279,30.37986],[48.18148,30.39755],[48.16616,30.42434],[48.16045,30.42862],[48.13495,30.44312],[48.10915,30.45058],[48.10808,30.4542],[48.0715,30.46114],[48.04428,30.47416],[48.02565,30.478],[48.02983,30.73794],[48.0323,30.99642],[47.68271,30.99754],[47.68322,31.39389],[47.8662,31.78351],[47.85609,31.80479],[47.85666,31.80652],[47.8567,31.80774],[47.85658,31.80909],[47.85662,31.81044],[47.85617,31.81126],[47.8562,31.8122],[47.8561,31.81396],[47.85615,31.81544],[47.85554,31.81627],[47.85525,31.81722],[47.8548,31.81776],[47.85403,31.81845],[47.85247,31.81942],[47.85108,31.82026],[47.84795,31.82153],[47.84669,31.82169],[47.84576,31.82224],[47.84529,31.82239],[47.84466,31.82267],[47.84359,31.82257],[47.82526,31.83257],[47.82492,31.83394],[47.82525,31.83448],[47.82531,31.8365],[47.82516,31.83691],[47.82471,31.83759],[47.82394,31.83814],[47.82272,31.83951],[47.82194,31.84007],[47.82164,31.84048],[47.82136,31.84069],[47.82102,31.84103],[47.82106,31.84096],[47.82034,31.84084],[47.81998,31.84035],[47.81879,31.84039],[47.81815,31.84013],[47.81751,31.84001],[47.81671,31.83989],[47.81592,31.84004],[47.81547,31.84059],[47.81471,31.84168],[47.81456,31.84209],[47.81411,31.84263],[47.81348,31.84305],[47.81286,31.84319],[47.81191,31.84321],[47.81113,31.84349],[47.8097,31.84352],[47.80876,31.84367],[47.80784,31.84342],[47.80704,31.84309],[47.80637,31.84257],[47.8059,31.84331],[47.80595,31.84493],[47.80612,31.84534],[47.80645,31.84587],[47.80631,31.84655],[47.80569,31.8471],[47.80543,31.84886],[47.80531,31.85007],[47.80485,31.85062],[47.80425,31.85158],[47.80302,31.85268],[47.80241,31.85364],[47.80196,31.85432],[47.8012,31.85528],[47.79998,31.8559],[47.79984,31.85746],[47.79991,31.85989],[47.79981,31.86151],[47.79983,31.86232],[47.80017,31.86312],[47.80036,31.8642],[47.80039,31.86488],[47.80024,31.86542],[47.80057,31.86582],[47.8006,31.86663],[47.80003,31.86731],[47.79933,31.8678],[47.79804,31.86813],[47.79817,31.86883],[47.79863,31.8695],[47.79959,31.86988],[47.80149,31.86985],[47.80276,31.86997],[47.80387,31.86995],[47.80516,31.87074],[47.80599,31.87194],[47.80617,31.87261],[47.80651,31.87355],[47.80685,31.87408],[47.80766,31.87488],[47.80862,31.87513],[47.80926,31.87525],[47.80942,31.87539],[47.80943,31.87566],[47.80913,31.8762],[47.80884,31.87715],[47.80871,31.87797],[47.80873,31.87864],[47.80895,31.87951],[47.8093,31.88039],[47.80986,31.88078],[47.80995,31.88105],[47.80998,31.88146],[47.81014,31.88206],[47.81012,31.88267],[47.80922,31.88309],[47.80867,31.88296],[47.80781,31.88338],[47.80683,31.88367],[47.80463,31.88566],[47.80376,31.88568],[47.80313,31.88583],[47.80179,31.88598],[47.80088,31.88593],[47.79977,31.88608],[47.79835,31.88611],[47.79694,31.8864],[47.79547,31.88663],[47.79332,31.88727],[47.79238,31.88783],[47.79155,31.88784],[47.79076,31.88793],[47.78887,31.88757],[47.78845,31.88857],[47.78752,31.8894],[47.78709,31.89062],[47.78649,31.89171],[47.78591,31.89348],[47.78628,31.89536],[47.78632,31.89644],[47.78602,31.89712],[47.78511,31.89713],[47.78415,31.89688],[47.78331,31.89674],[47.78334,31.8977],[47.78354,31.89905],[47.78331,31.90702],[47.78334,31.90797],[47.78306,31.90905],[47.78201,31.90967],[47.78087,31.91003],[47.77976,31.91005],[47.77884,31.90959],[47.77815,31.909],[47.77767,31.90887],[47.77687,31.90889],[47.77621,31.9091],[47.77579,31.90958],[47.77517,31.90999],[47.77439,31.91041],[47.77391,31.91042],[47.77311,31.91003],[47.77216,31.91004],[47.77154,31.91059],[47.77077,31.91142],[47.76969,31.91238],[47.76875,31.91253],[47.76752,31.91255],[47.76648,31.91223],[47.76526,31.91229],[47.76497,31.91327],[47.76439,31.91375],[47.76342,31.91424],[47.76182,31.91373],[47.76116,31.9132],[47.76053,31.91321],[47.75976,31.9139],[47.75867,31.91445],[47.75744,31.91556],[47.75587,31.91626],[47.75541,31.91667],[47.75435,31.91817],[47.7531,31.919],[47.75201,31.91956],[47.75029,31.92013],[47.74918,31.92087],[47.74842,31.92163],[47.74776,31.92174],[47.74759,31.92267],[47.74881,31.92345],[47.749,31.92432],[47.74832,31.92528],[47.74695,31.92647],[47.74549,31.92786],[47.74441,31.92863],[47.74356,31.92885],[47.74304,31.92868],[47.74261,31.92901],[47.74196,31.92862],[47.7411,31.92891],[47.74028,31.93022],[47.73843,31.93344],[47.7357,31.93668],[47.7341,31.93821],[47.73348,31.9387],[47.73301,31.93871],[47.73267,31.93817],[47.73164,31.938],[47.73063,31.93877],[47.72995,31.93959],[47.72915,31.94007],[47.72904,31.94063],[47.72962,31.94116],[47.73034,31.94148],[47.73016,31.9427],[47.72962,31.94319],[47.72942,31.9442],[47.73034,31.94533],[47.7307,31.9464],[47.73034,31.94749],[47.72945,31.94893],[47.72878,31.9501],[47.72768,31.95229],[47.72771,31.95297],[47.72798,31.95391],[47.7281,31.95478],[47.72751,31.95601],[47.72614,31.95753],[47.72594,31.95835],[47.72596,31.95903],[47.72609,31.96017],[47.72644,31.96118],[47.72656,31.96219],[47.72568,31.96397],[47.72475,31.96453],[47.7242,31.96448],[47.72271,31.96492],[47.7201,31.96525],[47.71885,31.96555],[47.71775,31.96599],[47.71595,31.9665],[47.71528,31.96753],[47.71437,31.96864],[47.7126,31.97003],[47.71168,31.9708],[47.71165,31.97118],[47.71135,31.97256],[47.7119,31.97431],[47.71173,31.97397],[47.71196,31.97593],[47.71331,31.97799],[47.71442,31.97986],[47.71582,31.98131],[47.71725,31.98337],[47.71785,31.98464],[47.71776,31.98563],[47.71749,31.98742],[47.71626,31.98853],[47.71582,31.98942],[47.71554,31.99045],[47.71517,31.99106],[47.71449,31.99175],[47.71426,31.99217],[47.71387,31.99313],[47.71352,31.99333],[47.71255,31.99302],[47.71165,31.99236],[47.71037,31.99199],[47.70978,31.99106],[47.70942,31.9909],[47.70868,31.99129],[47.70816,31.99218],[47.70797,31.99333],[47.70767,31.99388],[47.70713,31.9943],[47.70643,31.99459],[47.70581,31.99479],[47.70558,31.99528],[47.70674,31.99634],[47.70795,31.99692],[47.70869,31.99746],[47.70964,31.99807],[47.71021,31.99875],[47.71088,31.99974],[47.71164,32.0005],[47.71257,32.00064],[47.71312,32.00063],[47.71329,32.00001],[47.71347,31.99962],[47.7141,31.99938],[47.71466,31.99952],[47.71526,31.99979],[47.71524,32.00021],[47.71535,32.00082],[47.71527,32.00152],[47.71464,32.00199],[47.71355,32.00248],[47.71135,32.00321],[47.70961,32.00394],[47.70844,32.00496],[47.70771,32.00528],[47.70735,32.00552],[47.7072,32.0059],[47.70793,32.00651],[47.70841,32.00712],[47.70889,32.00781],[47.70937,32.00842],[47.70947,32.00873],[47.70956,32.0088],[47.70957,32.00896],[47.7093,32.00911],[47.70859,32.00979],[47.7084,32.01021],[47.70832,32.01068],[47.70752,32.01154],[47.70716,32.01209],[47.70689,32.01232],[47.70637,32.01202],[47.70541,32.01212],[47.70457,32.01174],[47.70383,32.01168],[47.70309,32.01185],[47.70274,32.01232],[47.70229,32.01302],[47.7023,32.01341],[47.7022,32.01396],[47.7027,32.01433],[47.70346,32.01509],[47.70459,32.01599],[47.70526,32.01683],[47.70575,32.01752],[47.70632,32.0182],[47.70706,32.01834],[47.7077,32.01818],[47.70807,32.01802],[47.70891,32.01847],[47.70956,32.01845],[47.7101,32.01806],[47.71017,32.01736],[47.71014,32.01613],[47.7102,32.01512],[47.71075,32.01473],[47.71137,32.01452],[47.7125,32.01485],[47.71326,32.0153],[47.71383,32.01599],[47.71385,32.01676],[47.71406,32.01752],[47.71435,32.01821],[47.71402,32.0193],[47.71266,32.02048],[47.71175,32.02104],[47.71047,32.02137],[47.70974,32.02162],[47.7091,32.02194],[47.70808,32.0218],[47.70586,32.02184],[47.70458,32.02225],[47.70366,32.02242],[47.70229,32.02283],[47.70165,32.02315],[47.70083,32.02347],[47.70027,32.02348],[47.69963,32.02342],[47.69916,32.02327],[47.69915,32.02257],[47.69876,32.02235],[47.69855,32.02135],[47.69854,32.02081],[47.69787,32.02013],[47.69739,32.01944],[47.69727,32.01844],[47.69716,32.01782],[47.69677,32.01713],[47.69667,32.01667],[47.6961,32.01622],[47.69489,32.01601],[47.69396,32.01572],[47.69312,32.01519],[47.69291,32.0145],[47.6928,32.01388],[47.6922,32.01368],[47.69169,32.01382],[47.69125,32.01437],[47.69063,32.01546],[47.6901,32.01656],[47.6881,32.01759],[47.68646,32.01832],[47.68573,32.01856],[47.68498,32.01834],[47.68442,32.01813],[47.68389,32.0189],[47.6841,32.01967],[47.68421,32.02044],[47.6847,32.02151],[47.685,32.02228],[47.68586,32.02335],[47.68653,32.02411],[47.68774,32.02455],[47.68766,32.02509],[47.68703,32.02549],[47.68639,32.02581],[47.68622,32.02627],[47.6866,32.02673],[47.68752,32.02664],[47.68807,32.02632],[47.68898,32.02607],[47.68942,32.0259],[47.68991,32.02621],[47.68975,32.02691],[47.68938,32.02722],[47.68921,32.02754],[47.6896,32.02838],[47.6888,32.0294],[47.68862,32.02955],[47.68882,32.03033],[47.68828,32.0308],[47.68792,32.03088],[47.68719,32.03136],[47.68664,32.03175],[47.68591,32.03184],[47.68426,32.03241],[47.68316,32.03266],[47.6824,32.03279],[47.68161,32.03261],[47.68075,32.03239],[47.67972,32.03195],[47.67889,32.03189],[47.67808,32.03252],[47.67753,32.03292],[47.67633,32.03309],[47.67486,32.03311],[47.67311,32.03241],[47.67248,32.03257],[47.67239,32.03335],[47.67313,32.03415],[47.67307,32.03523],[47.67263,32.03593],[47.67256,32.03671],[47.67296,32.03801],[47.67282,32.03956],[47.67295,32.04095],[47.67262,32.0425],[47.67238,32.04374],[47.67213,32.04459],[47.66978,32.04679],[47.66906,32.0475],[47.6679,32.04798],[47.66626,32.04886],[47.66581,32.04914],[47.66539,32.04934],[47.66405,32.05006],[47.66213,32.05071],[47.66058,32.05143],[47.65921,32.05223],[47.65849,32.0527],[47.65794,32.05287],[47.65674,32.05289],[47.65591,32.05329],[47.65482,32.05385],[47.65438,32.05463],[47.6542,32.05486],[47.65274,32.05551],[47.65221,32.05637],[47.65148,32.05692],[47.65113,32.05754],[47.6507,32.05847],[47.65044,32.05925],[47.64972,32.05981],[47.64909,32.06036],[47.64893,32.06136],[47.64915,32.06202],[47.64925,32.06298],[47.64909,32.06375],[47.64976,32.06459],[47.65061,32.06527],[47.65164,32.06603],[47.65213,32.0671],[47.65292,32.06863],[47.65333,32.07017],[47.65354,32.07132],[47.65395,32.07263],[47.65409,32.07417],[47.65358,32.0758],[47.65316,32.07735],[47.6531,32.07859],[47.65313,32.07967],[47.65242,32.08092],[47.65226,32.08202],[47.65169,32.08309],[47.6511,32.08169],[47.64996,32.0829],[47.64883,32.08378],[47.64821,32.08403],[47.64761,32.08432],[47.6467,32.08465],[47.64624,32.08496],[47.6458,32.08575],[47.64619,32.08651],[47.64603,32.08713],[47.64512,32.08776],[47.64412,32.08832],[47.64229,32.08912],[47.64193,32.08944],[47.64128,32.08953],[47.64027,32.0897],[47.63944,32.08971],[47.63824,32.08989],[47.63719,32.08979],[47.63602,32.09062],[47.63327,32.09291],[47.632,32.09405],[47.62992,32.09579],[47.62888,32.09669],[47.62816,32.09744],[47.62744,32.09795],[47.62685,32.09846],[47.62604,32.09913],[47.62446,32.10074],[47.62286,32.10228],[47.62151,32.10353],[47.6197,32.10495],[47.61753,32.10677],[47.61554,32.10827],[47.61185,32.11119],[47.60754,32.11447],[47.60585,32.11592],[47.59978,32.12074],[47.59759,32.12278],[47.59642,32.12373],[47.59534,32.12436],[47.5947,32.12479],[47.59349,32.12393],[47.59191,32.12285],[47.589,32.12238],[47.58361,32.12124],[47.58026,32.12037],[47.57895,32.12],[47.57804,32.11979],[47.57522,32.11875],[47.57026,32.11667],[47.56887,32.11618],[47.5673,32.11657],[47.56472,32.11707],[47.56169,32.11789],[47.55942,32.1184],[47.55907,32.11986],[47.5597,32.12202],[47.55924,32.12287],[47.55863,32.12435],[47.55773,32.1256],[47.55666,32.1267],[47.55428,32.12775],[47.55127,32.12926],[47.54962,32.13006],[47.54914,32.13035],[47.54164,32.13598],[47.53744,32.13837],[47.53443,32.13988],[47.53276,32.14063],[47.53234,32.14108],[47.53239,32.14324],[47.53287,32.144],[47.53403,32.14591],[47.53508,32.14698],[47.53553,32.14813],[47.53589,32.14975],[47.53567,32.15554],[47.53544,32.15733],[47.53411,32.1592],[47.53338,32.15983],[47.53333,32.16145],[47.53374,32.16307],[47.53315,32.16532],[47.5329,32.1664],[47.53165,32.16781],[47.53038,32.16891],[47.52956,32.16954],[47.52941,32.17007],[47.52949,32.17047],[47.53362,32.17249],[47.53644,32.1743],[47.53842,32.17543],[47.53941,32.1759],[47.54058,32.17662],[47.54273,32.1776],[47.54592,32.17909],[47.54837,32.18082],[47.55081,32.18233],[47.5538,32.18328],[47.55596,32.18441],[47.55738,32.18546],[47.55833,32.18668],[47.55901,32.18783],[47.5597,32.1884],[47.56061,32.18873],[47.56284,32.18931],[47.56425,32.18991],[47.56592,32.19035],[47.56734,32.19148],[47.56755,32.19217],[47.56739,32.19302],[47.56692,32.19396],[47.56661,32.19512],[47.56609,32.19644],[47.56538,32.19753],[47.56504,32.19862],[47.56472,32.20063],[47.5645,32.20288],[47.56471,32.2038],[47.56555,32.20433],[47.56696,32.205],[47.56781,32.20545],[47.56856,32.20613],[47.56916,32.20759],[47.57027,32.21097],[47.57085,32.21204],[47.57152,32.2128],[47.57191,32.2134],[47.56994,32.21615],[47.56864,32.21926],[47.56803,32.22089],[47.56697,32.22261],[47.56699,32.22354],[47.56721,32.22461],[47.56678,32.22586],[47.56563,32.22788],[47.56441,32.22868],[47.56392,32.22992],[47.56246,32.23072],[47.56015,32.23067],[47.557,32.23088],[47.55368,32.23117],[47.551,32.23137],[47.54803,32.23134],[47.5461,32.23168],[47.54416,32.23186],[47.54241,32.2322],[47.54137,32.23257],[47.54031,32.23355],[47.53879,32.23535],[47.53754,32.23707],[47.53583,32.23918],[47.53494,32.24043],[47.53295,32.24289],[47.53144,32.24538],[47.52983,32.2475],[47.52525,32.25396],[47.52269,32.25788],[47.52109,32.26054],[47.51973,32.26141],[47.5178,32.26213],[47.51599,32.26386],[47.51395,32.26706],[47.51171,32.27003],[47.50819,32.27387],[47.50603,32.2763],[47.50357,32.27773],[47.50126,32.27808],[47.5008,32.2784],[47.50101,32.27901],[47.50418,32.27973],[47.50756,32.28161],[47.50973,32.28327],[47.51165,32.28548],[47.51233,32.28678],[47.51264,32.28801],[47.51275,32.28896],[47.51314,32.28932],[47.51536,32.28959],[47.51936,32.28984],[47.52205,32.29002],[47.52248,32.29225],[47.52219,32.29535],[47.52191,32.29618],[47.522,32.29875],[47.52219,32.30253],[47.52197,32.3047],[47.52192,32.30648],[47.52165,32.30656],[47.51987,32.30589],[47.51699,32.30555],[47.51458,32.30551],[47.51244,32.30516],[47.51038,32.30458],[47.50861,32.30429],[47.50604,32.30503],[47.50502,32.30513],[47.50288,32.30462],[47.50164,32.30424],[47.49996,32.30531],[47.49685,32.30776],[47.49525,32.3073],[47.4899,32.31002],[47.48578,32.31094],[47.48238,32.31081],[47.48025,32.31036],[47.47769,32.31303],[47.47473,32.31488],[47.47307,32.31552],[47.47148,32.31564],[47.46966,32.3155],[47.46691,32.31563],[47.46219,32.31591],[47.46181,32.32124],[47.46196,32.32605],[47.46096,32.32817],[47.45911,32.33135],[47.45848,32.33391],[47.45805,32.33752],[47.4564,32.34131],[47.45486,32.34317],[47.45358,32.34425],[47.45177,32.34603],[47.44917,32.34789],[47.44475,32.34885],[47.44195,32.3501],[47.43898,32.3515],[47.43639,32.3515],[47.43654,32.35304],[47.43812,32.35462],[47.44084,32.35646],[47.4445,32.35765],[47.44933,32.35882],[47.45275,32.35868],[47.4533,32.35982],[47.45293,32.36164],[47.45219,32.36286],[47.45289,32.366],[47.45459,32.36927],[47.45714,32.37164],[47.46006,32.37429],[47.46438,32.37648],[47.46584,32.37796],[47.46622,32.3796],[47.46511,32.38134],[47.46369,32.38295],[47.46337,32.38415],[47.4637,32.38679],[47.46458,32.38879],[47.46571,32.39103],[47.46636,32.39175],[47.4656,32.39328],[47.46218,32.39513],[47.45966,32.39636],[47.45703,32.39748],[47.45525,32.39814],[47.45362,32.40009],[47.44917,32.40398],[47.44545,32.40727],[47.44166,32.41094],[47.43855,32.41384],[47.43481,32.41701],[47.43191,32.41814],[47.43089,32.41862],[47.42882,32.42075],[47.42591,32.4244],[47.42297,32.42899],[47.42015,32.43321],[47.41761,32.4373],[47.41539,32.44019],[47.4128,32.44263],[47.40953,32.44614],[47.40697,32.44963],[47.40458,32.45283],[47.40218,32.45557],[47.40028,32.45725],[47.39857,32.45938],[47.39633,32.46182],[47.39414,32.46397],[47.39273,32.46608],[47.38909,32.46899],[47.38719,32.47036],[47.38459,32.47296],[47.38143,32.47421],[47.37931,32.4744],[47.37633,32.47427],[47.37497,32.47369],[47.37236,32.4736],[47.36997,32.47258],[47.36773,32.472],[47.36632,32.4714],[47.36525,32.4709],[47.36288,32.47134],[47.36093,32.47137],[47.35953,32.47184],[47.3583,32.47175],[47.35672,32.47309],[47.35533,32.47416],[47.35287,32.4748],[47.3479,32.47487],[47.34653,32.47549],[47.34508,32.4767],[47.34298,32.47675],[47.34101,32.47618],[47.33904,32.47546],[47.33741,32.47458],[47.33616,32.4743],[47.33475,32.47462],[47.33301,32.47585],[47.33092,32.47708],[47.32952,32.478],[47.32747,32.47869],[47.32167,32.48263],[47.31765,32.48479],[47.31433,32.48664],[47.31082,32.4882],[47.30816,32.48823],[47.30604,32.48872],[47.30219,32.49073],[47.29816,32.49259],[47.29518,32.49383],[47.29306,32.49432],[47.29076,32.49428],[47.28743,32.49652],[47.28534,32.49743],[47.28414,32.49758],[47.2833,32.49759],[47.28213,32.49427],[47.28193,32.49147],[47.28227,32.48952],[47.2833,32.48758],[47.28181,32.48592],[47.28047,32.48572],[47.27804,32.48432],[47.27681,32.48155],[47.27558,32.47895],[47.27553,32.47758],[47.27232,32.47659],[47.26837,32.47529],[47.26372,32.47416],[47.2605,32.47301],[47.25775,32.47019],[47.25449,32.46768],[47.25196,32.46622],[47.25053,32.46579],[47.24909,32.46506],[47.24739,32.46403],[47.24595,32.4635],[47.24334,32.46374],[47.24162,32.46451],[47.24011,32.4649],[47.2383,32.46508],[47.23622,32.466],[47.23492,32.46639],[47.23327,32.46587],[47.23227,32.46533],[47.23093,32.46434],[47.22926,32.46345],[47.22761,32.46284],[47.22608,32.46203],[47.22388,32.46235],[47.2203,32.46279],[47.21746,32.46275],[47.21517,32.46279],[47.21365,32.46292],[47.21331,32.46246],[47.21303,32.46036],[47.21138,32.46019],[47.20969,32.46036],[47.20758,32.46081],[47.20454,32.46106],[47.20161,32.46157],[47.19923,32.46217],[47.1963,32.4625],[47.19469,32.46286],[47.19226,32.46311],[47.19038,32.46324],[47.18959,32.46318],[47.1897,32.46277],[47.18998,32.46235],[47.19015,32.46106],[47.1895,32.46055],[47.18875,32.46025],[47.18785,32.46009],[47.18684,32.46034],[47.18557,32.46069],[47.18358,32.46153],[47.18257,32.46175],[47.18185,32.46175],[47.18116,32.46152],[47.18093,32.46127],[47.18083,32.46101],[47.18079,32.46056],[47.18086,32.45892],[47.18071,32.45818],[47.1801,32.45755],[47.17956,32.45689],[47.17886,32.45619],[47.1769,32.45641],[47.17301,32.45677],[47.1693,32.45716],[47.1683,32.4573],[47.16531,32.45945],[47.15571,32.46548],[47.15144,32.46842],[47.14968,32.46953],[47.14554,32.47139],[47.14219,32.47246],[47.14024,32.47341],[47.13704,32.47514],[47.12665,32.48087],[47.11774,32.48555],[47.11368,32.48812],[47.11135,32.48925],[47.10682,32.49193],[47.10349,32.49356],[47.10135,32.49425],[47.09724,32.49617],[47.09412,32.49724],[47.0919,32.49841],[47.09166,32.49894],[47.08987,32.50149],[47.08857,32.50369],[47.08797,32.50383],[47.08387,32.50555],[47.07751,32.50859],[47.07635,32.50925],[47.07107,32.51175],[47.0685,32.51435],[47.06201,32.52053],[47.05625,32.52578],[47.05524,32.52619],[47.0507,32.5265],[47.04913,32.52647],[47.04595,32.5285],[47.0444,32.52925],[47.04099,32.53485],[47.03709,32.53998],[47.03371,32.54436],[47.03302,32.54453],[47.02811,32.5473],[47.02361,32.55032],[47.02274,32.55091],[47.01956,32.55407],[47.01746,32.55564],[47.01454,32.55847],[47.00685,32.56504],[47.00237,32.56897],[47.00033,32.57038],[46.9932,32.57343],[46.98758,32.57572],[46.98089,32.57886],[46.97329,32.58147],[46.96843,32.58668],[46.96373,32.5908],[46.95785,32.59614],[46.95579,32.59786],[46.95314,32.59962],[46.9457,32.60341],[46.93968,32.60591],[46.93416,32.60937],[46.92921,32.6123],[46.92348,32.61477],[46.9219,32.61536],[46.91581,32.61801],[46.91413,32.61841],[46.90446,32.62332],[46.89444,32.62852],[46.88718,32.63203],[46.88058,32.6382],[46.87599,32.64269],[46.87218,32.64647],[46.86807,32.64943],[46.86225,32.65301],[46.85746,32.65564],[46.85269,32.65968],[46.84754,32.66353],[46.84246,32.66703],[46.84024,32.66916],[46.83864,32.67084],[46.83746,32.67175],[46.83591,32.6754],[46.83246,32.6819],[46.83111,32.68487],[46.83024,32.68647],[46.82785,32.69045],[46.82649,32.69287],[46.82552,32.69508],[46.82069,32.69728],[46.81463,32.69993],[46.81163,32.70147],[46.80686,32.70418],[46.80413,32.70591],[46.79379,32.71089],[46.79135,32.71203],[46.79,32.7173],[46.78835,32.72147],[46.78774,32.72286],[46.78533,32.72797],[46.78356,32.73036],[46.7733,32.73735],[46.76802,32.74073],[46.76635,32.74203],[46.76375,32.74512],[46.7611,32.74866],[46.75912,32.75064],[46.755,32.75591],[46.75214,32.75943],[46.75135,32.76036],[46.75,32.76144],[46.74506,32.76514],[46.74186,32.76775],[46.74052,32.76897],[46.73782,32.77185],[46.73541,32.77462],[46.73439,32.77564],[46.72864,32.78033],[46.72418,32.78345],[46.72168,32.78596],[46.72079,32.78647],[46.71657,32.78617],[46.71146,32.78596],[46.70801,32.78564],[46.70303,32.78711],[46.69884,32.78897],[46.69828,32.78925],[46.69456,32.79142],[46.69271,32.79259],[46.69134,32.79341],[46.68935,32.79678],[46.68856,32.79786],[46.68008,32.80035],[46.6707,32.80316],[46.66828,32.80397],[46.66278,32.80547],[46.65606,32.80758],[46.65285,32.81053],[46.65004,32.8128],[46.64745,32.81453],[46.64252,32.81594],[46.63704,32.81722],[46.63381,32.81783],[46.63245,32.81786],[46.62786,32.82037],[46.62444,32.82172],[46.62273,32.8223],[46.61923,32.82692],[46.61605,32.83044],[46.61384,32.83258],[46.60965,32.83581],[46.6047,32.83926],[46.60106,32.84147],[46.59693,32.84472],[46.59353,32.84707],[46.59217,32.84786],[46.59245,32.85064],[46.58741,32.85169],[46.58523,32.85175],[46.58051,32.85623],[46.57645,32.85992],[46.57356,32.86175],[46.56887,32.86579],[46.56401,32.86907],[46.55867,32.87294],[46.55578,32.8748],[46.55079,32.87823],[46.5434,32.8831],[46.53746,32.88664],[46.53191,32.89],[46.52773,32.89259],[46.52363,32.89513],[46.51984,32.8979],[46.51828,32.89869],[46.51466,32.89968],[46.51078,32.90036],[46.50682,32.90173],[46.50356,32.9023],[46.50005,32.90268],[46.49464,32.90313],[46.49162,32.90314],[46.48658,32.90926],[46.48339,32.91318],[46.48078,32.91619],[46.47598,32.91722],[46.47217,32.91787],[46.46657,32.91969],[46.46273,32.92091],[46.45679,32.92366],[46.45278,32.92543],[46.45051,32.92647],[46.45099,32.92993],[46.4511,32.9312],[46.4466,32.93431],[46.44384,32.93092],[46.44106,32.93119],[46.43689,32.93341],[46.43162,32.9348],[46.42773,32.93565],[46.42245,32.93758],[46.4172,32.94086],[46.41551,32.94175],[46.41157,32.94597],[46.41051,32.94704],[46.40206,32.94818],[46.39517,32.94855],[46.38976,32.949],[46.38745,32.94897],[46.37013,32.95268],[46.36306,32.95421],[46.35911,32.9548],[46.35405,32.95717],[46.34985,32.95935],[46.34745,32.96036],[46.34466,32.95898],[46.33914,32.96149],[46.3326,32.96476],[46.33161,32.96537],[46.32532,32.96571],[46.32244,32.96564],[46.31718,32.96767],[46.31404,32.96851],[46.31245,32.96897],[46.30637,32.9688],[46.30114,32.96857],[46.29827,32.96841],[46.29297,32.96861],[46.28883,32.96871],[46.28431,32.96898],[46.28244,32.96897],[46.27743,32.97001],[46.27144,32.97137],[46.268,32.97213],[46.26633,32.97258],[46.2606,32.97074],[46.25645,32.9696],[46.25383,32.9687],[46.25044,32.96929],[46.24975,32.96937],[46.24593,32.97002],[46.24411,32.97036],[46.23347,32.96737],[46.22823,32.96591],[46.22397,32.96464],[46.2205,32.96342],[46.21606,32.96241],[46.21077,32.96103],[46.208,32.96009],[46.2035,32.95914],[46.2005,32.95841],[46.19076,32.95688],[46.18295,32.95519],[46.17614,32.95405],[46.17355,32.95341],[46.1659,32.95438],[46.16109,32.95516],[46.15938,32.95536],[46.15089,32.95737],[46.14481,32.95866],[46.14029,32.95976],[46.13772,32.96009],[46.13411,32.96036],[46.12884,32.96389],[46.12474,32.96648],[46.12181,32.9681],[46.11994,32.96897],[46.11454,32.97179],[46.11165,32.97319],[46.10911,32.97425],[46.10403,32.97696],[46.10216,32.97758],[46.09886,32.98014],[46.0974,32.9812],[46.09693,32.98239],[46.09705,32.98405],[46.09618,32.98505],[46.09526,32.98574],[46.09482,32.98638],[46.09466,32.98846],[46.09478,32.98986],[46.09569,32.99135],[46.0961,32.99268],[46.09711,32.99416],[46.09782,32.99515],[46.09754,32.99648],[46.09815,32.99763],[46.0982,32.99799],[46.09861,32.9984],[46.09871,32.99873],[46.09933,32.99968],[46.09935,33.00068],[46.09917,33.00151],[46.09811,33.00244],[46.09654,33.00279],[46.09478,33.00331],[46.0944,33.0039],[46.09472,33.00498],[46.09563,33.0058],[46.09526,33.00697],[46.09439,33.00781],[46.0953,33.0088],[46.09659,33.00912],[46.09709,33.0097],[46.09716,33.01252],[46.09847,33.01384],[46.0997,33.01574],[46.09984,33.01741],[46.10007,33.0189],[46.10057,33.01948],[46.10215,33.01946],[46.10342,33.01894],[46.1044,33.01868],[46.10542,33.02017],[46.10681,33.0209],[46.1077,33.02056],[46.10855,33.01939],[46.10882,33.0183],[46.10921,33.01779],[46.11009,33.01762],[46.11069,33.0182],[46.11139,33.01835],[46.11229,33.01918],[46.11416,33.01907],[46.11574,33.01889],[46.11682,33.01912],[46.11762,33.01953],[46.11885,33.02151],[46.11966,33.02233],[46.12015,33.02233],[46.12189,33.02081],[46.12266,33.01997],[46.12351,33.01846],[46.12409,33.01804],[46.1248,33.01911],[46.12641,33.02034],[46.12751,33.02091],[46.12889,33.02098],[46.13028,33.02121],[46.1303,33.02213],[46.12973,33.02288],[46.12905,33.02347],[46.12906,33.02397],[46.13054,33.02396],[46.13211,33.02377],[46.1332,33.024],[46.13361,33.02475],[46.13285,33.02609],[46.13179,33.02694],[46.13231,33.02801],[46.13332,33.02917],[46.13424,33.03049],[46.13456,33.03148],[46.13457,33.03215],[46.13372,33.03324],[46.13305,33.03416],[46.13268,33.03517],[46.1328,33.03641],[46.1342,33.03698],[46.13599,33.03788],[46.13709,33.03844],[46.13811,33.03985],[46.13894,33.04175],[46.13897,33.04275],[46.1384,33.04401],[46.13822,33.04467],[46.13855,33.04509],[46.14014,33.04657],[46.14154,33.0473],[46.14273,33.04762],[46.14382,33.04802],[46.14384,33.04877],[46.14357,33.04952],[46.14406,33.04968],[46.14474,33.04934],[46.14513,33.04917],[46.14535,33.04992],[46.14565,33.05025],[46.14671,33.04932],[46.14703,33.05006],[46.14816,33.05197],[46.14867,33.05296],[46.14911,33.05342],[46.14902,33.05529],[46.14936,33.05711],[46.15078,33.05851],[46.15159,33.05933],[46.15171,33.06033],[46.15144,33.06142],[46.15147,33.06275],[46.15218,33.06374],[46.15338,33.0643],[46.15517,33.06487],[46.15588,33.06578],[46.15739,33.06684],[46.16017,33.06764],[46.16216,33.06853],[46.16336,33.06918],[46.1647,33.06951],[46.16427,33.07017],[46.1629,33.0706],[46.16182,33.07086],[46.16055,33.07121],[46.1594,33.07256],[46.15793,33.07307],[46.15695,33.07334],[46.15625,33.07293],[46.15544,33.07194],[46.15415,33.0717],[46.15317,33.07197],[46.15199,33.07206],[46.151,33.07207],[46.14973,33.07242],[46.14873,33.07168],[46.14744,33.07145],[46.14597,33.07197],[46.1444,33.07224],[46.14322,33.07225],[46.14188,33.07204],[46.14115,33.07244],[46.14017,33.07246],[46.1378,33.0724],[46.13563,33.07259],[46.13368,33.0732],[46.13212,33.07413],[46.13095,33.07473],[46.12978,33.07491],[46.12829,33.07468],[46.12741,33.07486],[46.12691,33.07486],[46.1263,33.07387],[46.1256,33.07346],[46.12432,33.07347],[46.12303,33.07307],[46.12212,33.0725],[46.12046,33.0731],[46.1189,33.07362],[46.11792,33.07388],[46.11688,33.07397],[46.11607,33.07482],[46.11451,33.07584],[46.11415,33.07717],[46.11459,33.07933],[46.11403,33.0805],[46.11315,33.0811],[46.11147,33.08078],[46.11087,33.08029],[46.1092,33.08073],[46.10697,33.08225],[46.10571,33.08318],[46.10515,33.08452],[46.10457,33.08494],[46.10411,33.08509],[46.10349,33.08512],[46.10289,33.08471],[46.10122,33.08515],[46.09926,33.08559],[46.0973,33.08628],[46.09555,33.08746],[46.0942,33.08848],[46.09332,33.0889],[46.09185,33.089],[46.09045,33.08827],[46.08924,33.0872],[46.08845,33.08746],[46.08838,33.08854],[46.0885,33.08946],[46.08723,33.09005],[46.08626,33.09082],[46.08579,33.09149],[46.08432,33.09192],[46.08264,33.09169],[46.08124,33.09104],[46.07995,33.09055],[46.07819,33.09132],[46.07683,33.09209],[46.07575,33.09227],[46.07435,33.09145],[46.07327,33.09065],[46.07264,33.09022],[46.07126,33.09015],[46.06961,33.09109],[46.06834,33.09185],[46.06648,33.09237],[46.06518,33.09172],[46.06517,33.09106],[46.06417,33.09065],[46.06319,33.09074],[46.0615,33.09035],[46.06032,33.09044],[46.05866,33.09121],[46.05679,33.09132],[46.05503,33.092],[46.05386,33.09235],[46.0527,33.0932],[46.05192,33.09428],[46.0508,33.09505],[46.04961,33.09527],[46.04869,33.09507],[46.0468,33.0945],[46.04444,33.09495],[46.04298,33.09547],[46.0418,33.09565],[46.0411,33.0954],[46.04144,33.09665],[46.04196,33.09812],[46.04238,33.09923],[46.04744,33.1112],[46.05272,33.1262],[46.05382,33.12556],[46.05504,33.12476],[46.05613,33.1245],[46.05778,33.12355],[46.05909,33.123],[46.06108,33.12381],[46.06228,33.12447],[46.06338,33.12487],[46.06499,33.12652],[46.06589,33.12709],[46.06718,33.12741],[46.06828,33.12781],[46.06967,33.12805],[46.07114,33.12778],[46.0728,33.12693],[46.07445,33.12574],[46.07561,33.12482],[46.07669,33.12439],[46.07778,33.12463],[46.07897,33.12486],[46.07975,33.12452],[46.08083,33.12434],[46.0816,33.12375],[46.08248,33.12324],[46.08405,33.12297],[46.08583,33.12295],[46.0874,33.12268],[46.08856,33.12159],[46.08932,33.1205],[46.09,33.11991],[46.09098,33.11973],[46.09237,33.12004],[46.09384,33.11986],[46.09532,33.11976],[46.09642,33.12008],[46.09732,33.12091],[46.09893,33.12222],[46.09994,33.12321],[46.10134,33.12394],[46.10263,33.12409],[46.1043,33.12407],[46.10538,33.12389],[46.10667,33.12413],[46.10796,33.12444],[46.10945,33.12468],[46.11082,33.12416],[46.11219,33.12406],[46.11288,33.12372],[46.11375,33.12313],[46.1157,33.12211],[46.11687,33.12159],[46.11735,33.12109],[46.11853,33.12066],[46.1198,33.12014],[46.1207,33.12072],[46.12102,33.12179],[46.12027,33.12339],[46.1201,33.12455],[46.12052,33.12596],[46.12134,33.12712],[46.12284,33.12793],[46.12368,33.12984],[46.1245,33.13108],[46.1258,33.13214],[46.127,33.13271],[46.12783,33.13437],[46.12915,33.13585],[46.13037,33.13758],[46.13159,33.13915],[46.13232,33.14039],[46.13421,33.14112],[46.13589,33.14143],[46.13718,33.14158],[46.13799,33.14257],[46.13911,33.14422],[46.14082,33.14529],[46.14261,33.14609],[46.14371,33.14633],[46.14492,33.14748],[46.14699,33.14771],[46.15055,33.14791],[46.15255,33.14864],[46.15385,33.14962],[46.15535,33.15044],[46.15636,33.15126],[46.15756,33.15208],[46.15884,33.15206],[46.15944,33.15238],[46.15985,33.15313],[46.16007,33.15388],[46.16088,33.15453],[46.16198,33.15502],[46.16297,33.15559],[46.16378,33.15633],[46.16519,33.15739],[46.16699,33.15829],[46.16809,33.15919],[46.16852,33.16027],[46.16893,33.16118],[46.16955,33.16225],[46.17132,33.16215],[46.17223,33.16272],[46.17342,33.1632],[46.17453,33.16402],[46.17544,33.16493],[46.17655,33.16591],[46.17784,33.16632],[46.17983,33.16679],[46.18153,33.16776],[46.18265,33.16908],[46.18327,33.17041],[46.18516,33.17113],[46.18646,33.17179],[46.18689,33.17286],[46.18652,33.17403],[46.18566,33.17529],[46.1855,33.17662],[46.18623,33.1782],[46.18743,33.1791],[46.18903,33.18],[46.19083,33.18064],[46.1927,33.1807],[46.1939,33.18135],[46.1958,33.18216],[46.19791,33.1838],[46.19893,33.1852],[46.19966,33.18685],[46.19951,33.1886],[46.19854,33.18937],[46.19797,33.19029],[46.19791,33.19179],[46.19835,33.19353],[46.20016,33.19484],[46.20175,33.19524],[46.20802,33.19741],[46.21023,33.19879],[46.21133,33.19954],[46.21244,33.20051],[46.21336,33.20142],[46.213,33.20204],[46.21111,33.20245],[46.20765,33.20232],[46.20522,33.20231],[46.19934,33.20184],[46.19618,33.2018],[46.19522,33.20176],[46.19185,33.20235],[46.18763,33.20349],[46.1836,33.20428],[46.18161,33.20509],[46.17982,33.20691],[46.17984,33.20783],[46.18178,33.21047],[46.18326,33.21062],[46.18384,33.21011],[46.18502,33.20993],[46.18524,33.21076],[46.18527,33.21184],[46.18579,33.21283],[46.18532,33.21417],[46.18466,33.21509],[46.18401,33.2171],[46.18335,33.21802],[46.18247,33.21862],[46.1816,33.21937],[46.18133,33.22037],[46.18236,33.22236],[46.18319,33.22377],[46.18393,33.22576],[46.18436,33.22708],[46.1855,33.22787],[46.18677,33.22864],[46.18835,33.22895],[46.19022,33.22926],[46.19126,33.23066],[46.19168,33.23157],[46.1917,33.2324],[46.19232,33.23356],[46.19263,33.23439],[46.19197,33.23556],[46.19191,33.23681],[46.19262,33.23789],[46.19304,33.2388],[46.19272,33.23926],[46.19189,33.24023],[46.19071,33.24057],[46.19002,33.24058],[46.18846,33.24118],[46.18749,33.24203],[46.18751,33.24311],[46.18764,33.24419],[46.18827,33.24509],[46.1889,33.24709],[46.18911,33.24815],[46.18855,33.24926],[46.18774,33.25016],[46.18698,33.25091],[46.187,33.25239],[46.18778,33.25294],[46.18855,33.25303],[46.18944,33.2533],[46.18967,33.25405],[46.18946,33.25479],[46.18882,33.25581],[46.18883,33.25648],[46.19006,33.25757],[46.19052,33.25896],[46.19053,33.2596],[46.1911,33.26118],[46.19123,33.26201],[46.19113,33.26294],[46.1911,33.2634],[46.19004,33.26397],[46.18883,33.26444],[46.1873,33.2651],[46.1851,33.26567],[46.18334,33.26587],[46.18191,33.26597],[46.17992,33.26561],[46.17937,33.26599],[46.17916,33.26655],[46.17906,33.2671],[46.17911,33.26759],[46.17819,33.26794],[46.17654,33.26814],[46.17511,33.26889],[46.17391,33.26965],[46.17226,33.27012],[46.17105,33.27031],[46.16918,33.27069],[46.1682,33.27154],[46.16766,33.27228],[46.16772,33.27315],[46.16647,33.27368],[46.1646,33.27444],[46.16329,33.27491],[46.16208,33.27529],[46.16132,33.27613],[46.16034,33.27715],[46.15947,33.27763],[46.15782,33.27819],[46.15628,33.27894],[46.15476,33.28025],[46.15322,33.28101],[46.1518,33.28138],[46.14994,33.28242],[46.14829,33.28308],[46.14709,33.28373],[46.14556,33.28495],[46.14466,33.28592],[46.14272,33.28701],[46.14119,33.28776],[46.13977,33.28879],[46.13835,33.28973],[46.13725,33.29019],[46.1356,33.29076],[46.13494,33.29148],[46.13386,33.29245],[46.13266,33.29338],[46.13169,33.29487],[46.13082,33.2958],[46.12972,33.29628],[46.12908,33.29748],[46.12821,33.2986],[46.1269,33.29917],[46.12548,33.30038],[46.12516,33.30159],[46.12463,33.30308],[46.12344,33.30457],[46.12181,33.30616],[46.11951,33.30728],[46.11841,33.30757],[46.11687,33.30851],[46.1155,33.30954],[46.11471,33.31131],[46.11277,33.31447],[46.11039,33.31829],[46.10866,33.32117],[46.10705,33.32424],[46.10546,33.32843],[46.10471,33.3302],[46.10385,33.33187],[46.10289,33.33457],[46.10202,33.33504],[46.09895,33.337],[46.09623,33.33915],[46.09459,33.34083],[46.09254,33.34381],[46.09102,33.34624],[46.09004,33.34708],[46.08731,33.34886],[46.08457,33.35082],[46.08172,33.35204],[46.0805,33.35259],[46.08074,33.35326],[46.08165,33.35483],[46.08198,33.35548],[46.08189,33.35612],[46.08112,33.35659],[46.07994,33.35648],[46.07958,33.35688],[46.07915,33.3579],[46.07838,33.358],[46.07688,33.35787],[46.07706,33.35857],[46.07795,33.35902],[46.07966,33.35954],[46.08009,33.36023],[46.08002,33.36089],[46.07941,33.36165],[46.07839,33.36222],[46.07791,33.36239],[46.07816,33.37414],[46.07824,33.38027],[46.0782,33.38537],[46.078,33.38842],[46.07717,33.39057],[46.07696,33.39131],[46.07633,33.39204],[46.07534,33.3942],[46.07306,33.397],[46.07133,33.39926],[46.07146,33.4009],[46.07093,33.40276],[46.0684,33.40352],[46.06565,33.40455],[46.0627,33.4068],[46.06084,33.40838],[46.05855,33.40954],[46.05789,33.41072],[46.0567,33.41231],[46.05659,33.4124],[46.05562,33.41445],[46.05442,33.41519],[46.05383,33.41537],[46.05233,33.4166],[46.05025,33.41754],[46.04772,33.41815],[46.04761,33.41867],[46.04653,33.42034],[46.04568,33.4235],[46.04504,33.4249],[46.04385,33.42648],[46.0432,33.42806],[46.04213,33.42983],[46.0417,33.43104],[46.0416,33.43196],[46.04063,33.43383],[46.04,33.43606],[46.03981,33.43838],[46.03928,33.43996],[46.03819,33.44136],[46.03716,33.44259],[46.03744,33.44321],[46.03988,33.44385],[46.04278,33.44588],[46.04414,33.44782],[46.04355,33.44787],[46.04251,33.45061],[46.04132,33.4521],[46.04078,33.45303],[46.04145,33.45405],[46.04181,33.4559],[46.04095,33.45804],[46.04009,33.45934],[46.03866,33.46],[46.03669,33.46103],[46.0356,33.46271],[46.03494,33.46342],[46.03519,33.46521],[46.03488,33.46717],[46.03369,33.46912],[46.03186,33.47219],[46.03078,33.47461],[46.02937,33.47675],[46.02851,33.47824],[46.02841,33.47926],[46.02842,33.48019],[46.0269,33.48168],[46.02547,33.4828],[46.02383,33.48383],[46.02327,33.48426],[46.02153,33.48533],[46.01976,33.48599],[46.01882,33.48648],[46.01822,33.48618],[46.01743,33.48507],[46.01696,33.48331],[46.01577,33.48231],[46.01442,33.48286],[46.01255,33.48426],[46.01036,33.48557],[46.00894,33.48688],[46.00799,33.48759],[46.00787,33.48948],[46.00881,33.49375],[46.00906,33.49588],[46.00908,33.49782],[46.00888,33.49922],[46.00796,33.50054],[46.00787,33.50184],[46.00823,33.50332],[46.00836,33.50462],[46.00784,33.50637],[46.00655,33.5087],[46.00502,33.50963],[46.00291,33.51014],[45.99994,33.51072],[45.99894,33.51055],[45.99816,33.51],[45.99725,33.50871],[45.99624,33.50779],[45.99457,33.50743],[45.9928,33.50745],[45.99148,33.50774],[45.99026,33.50737],[45.98903,33.50692],[45.98748,33.50675],[45.98572,33.50722],[45.98466,33.50731],[45.98294,33.50623],[45.98148,33.50522],[45.98014,33.50449],[45.97847,33.50367],[45.97744,33.50287],[45.97491,33.50231],[45.96936,33.50124],[45.96714,33.5007],[45.96404,33.50026],[45.96171,33.49982],[45.96038,33.49983],[45.95911,33.49926],[45.9586,33.49901],[45.95769,33.49754],[45.95645,33.49588],[45.95431,33.49348],[45.95295,33.49155],[45.95238,33.49026],[45.95216,33.48981],[45.95104,33.48953],[45.94915,33.48889],[45.9467,33.4878],[45.94513,33.48679],[45.9439,33.48551],[45.94278,33.4845],[45.94187,33.48321],[45.94133,33.48287],[45.94076,33.4834],[45.94013,33.48535],[45.93907,33.48832],[45.93722,33.49037],[45.93592,33.49177],[45.93299,33.49176],[45.92929,33.49192],[45.92563,33.49157],[45.92164,33.49095],[45.91953,33.49069],[45.91809,33.49061],[45.91622,33.49146],[45.91535,33.49174],[45.91257,33.49111],[45.91013,33.49039],[45.90847,33.49059],[45.90451,33.49164],[45.90087,33.4925],[45.89701,33.49317],[45.89414,33.49375],[45.89187,33.49426],[45.89083,33.49414],[45.88994,33.49396],[45.88782,33.49305],[45.88516,33.49242],[45.88262,33.49281],[45.88018,33.492],[45.87774,33.49192],[45.87521,33.49259],[45.87378,33.49334],[45.87329,33.4943],[45.86926,33.49397],[45.86708,33.49375],[45.86447,33.49342],[45.86271,33.49315],[45.86428,33.49424],[45.86763,33.49616],[45.87376,33.49927],[45.89521,33.51259],[45.92437,33.53093],[45.94688,33.54538],[45.94963,33.54799],[45.95188,33.55028],[45.95459,33.55314],[45.95663,33.55599],[45.95866,33.55848],[45.96023,33.55995],[45.96133,33.5612],[45.96072,33.56272],[45.9593,33.56412],[45.95809,33.56506],[45.95879,33.56654],[45.95892,33.56783],[45.95716,33.56898],[45.95652,33.57026],[45.95498,33.57101],[45.95467,33.57203],[45.95402,33.57315],[45.95206,33.57502],[45.94966,33.57772],[45.94703,33.5795],[45.94466,33.58065],[45.94266,33.58315],[45.93874,33.58716],[45.93656,33.58968],[45.93515,33.59126],[45.93428,33.5922],[45.9323,33.59332],[45.93077,33.59399],[45.92913,33.59557],[45.92551,33.5981],[45.92233,33.60016],[45.91849,33.6026],[45.91541,33.60401],[45.91222,33.60533],[45.9109,33.60571],[45.90947,33.60637],[45.90748,33.60648],[45.90469,33.6054],[45.91661,33.62759],[45.9085,33.63651],[45.90807,33.63797],[45.90675,33.63826],[45.90552,33.63817],[45.90407,33.63763],[45.90263,33.6368],[45.90139,33.63598],[45.89851,33.63609],[45.8963,33.63639],[45.89442,33.63658],[45.8921,33.6366],[45.89055,33.63671],[45.88826,33.63592],[45.88665,33.63525],[45.88564,33.63461],[45.88364,33.63444],[45.88032,33.63446],[45.87756,33.63476],[45.8749,33.63478],[45.87269,33.63526],[45.87114,33.63527],[45.86869,33.63482],[45.86625,33.63428],[45.86435,33.63356],[45.8628,33.6332],[45.86104,33.63205],[45.85934,33.63174],[45.85734,33.6311],[45.85589,33.63037],[45.85366,33.62974],[45.85111,33.62939],[45.84833,33.62894],[45.84689,33.62868],[45.84632,33.62842],[45.844,33.62823],[45.84233,33.6276],[45.84032,33.62659],[45.83699,33.62596],[45.83411,33.62598],[45.83113,33.62656],[45.8287,33.62732],[45.82649,33.62761],[45.82521,33.62731],[45.82316,33.62735],[45.82017,33.62719],[45.81575,33.62805],[45.81354,33.62731],[45.81283,33.62538],[45.81224,33.62242],[45.81154,33.6203],[45.81104,33.61842],[45.80696,33.61737],[45.80305,33.61508],[45.80081,33.61361],[45.7999,33.61291],[45.78882,33.60759],[45.77493,33.6026],[45.75743,33.59454],[45.7544,33.5934],[45.7546,33.59528],[45.75595,33.59703],[45.75641,33.59814],[45.75654,33.59962],[45.75733,33.60082],[45.75802,33.60239],[45.75804,33.60424],[45.75795,33.60517],[45.75907,33.60665],[45.75932,33.60868],[45.75979,33.61072],[45.7607,33.61238],[45.76172,33.61404],[45.76262,33.61496],[45.76463,33.61606],[45.76608,33.61726],[45.76698,33.61808],[45.76734,33.62012],[45.76814,33.62206],[45.76937,33.62279],[45.771,33.6237],[45.77215,33.63037],[45.7716,33.63705],[45.77136,33.63843],[45.76993,33.63919],[45.76784,33.64003],[45.76574,33.64069],[45.76254,33.64183],[45.76034,33.64258],[45.75769,33.64352],[45.75568,33.6441],[45.75228,33.64504],[45.75008,33.64579],[45.7461,33.64918],[45.74316,33.65097],[45.74021,33.65286],[45.73746,33.65409],[45.73604,33.65454],[45.731,33.6575],[45.72519,33.66035],[45.72135,33.66215],[45.7191,33.6626],[45.71602,33.66638],[45.713,33.67002],[45.71063,33.6732],[45.70989,33.67398],[45.70509,33.67799],[45.70268,33.6795],[45.70106,33.68137],[45.69901,33.6837],[45.69743,33.6851],[45.69619,33.68633],[45.69443,33.68718],[45.69335,33.68821],[45.69271,33.68952],[45.6923,33.6911],[45.69132,33.69176],[45.68988,33.69205],[45.68767,33.69235],[45.68591,33.69274],[45.68437,33.6926],[45.68207,33.69445],[45.68011,33.69623],[45.67749,33.69793],[45.67453,33.69982],[45.67303,33.70224],[45.67253,33.70456],[45.67047,33.70653],[45.66631,33.70889],[45.66458,33.71104],[45.66362,33.7129],[45.66192,33.71607],[45.65965,33.7176],[45.65957,33.72008],[45.65927,33.72184],[45.65882,33.7226],[45.65733,33.72417],[45.65491,33.72513],[45.65217,33.72646],[45.64876,33.72788],[45.64768,33.7291],[45.64716,33.73077],[45.6466,33.7323],[45.64519,33.7329],[45.64422,33.73339],[45.64258,33.73434],[45.6415,33.73564],[45.64107,33.7363],[45.64049,33.73731],[45.64046,33.7389],[45.64017,33.74085],[45.64008,33.74187],[45.63993,33.74288],[45.64132,33.7443],[45.64264,33.74612],[45.64365,33.74803],[45.64403,33.74912],[45.6441,33.74927],[45.64456,33.75144],[45.64549,33.75373],[45.64734,33.7561],[45.64898,33.75762],[45.6494,33.75889],[45.64931,33.75983],[45.6491,33.76038],[45.64802,33.76374],[45.64581,33.7674],[45.64442,33.7708],[45.6425,33.77377],[45.6407,33.77616],[45.63868,33.77862],[45.63657,33.78143],[45.63355,33.78492],[45.63092,33.78739],[45.62908,33.78823],[45.62748,33.78901],[45.62543,33.79013],[45.62323,33.7914],[45.62003,33.79331],[45.61287,33.79736],[45.61078,33.79847],[45.60718,33.80043],[45.60329,33.80321],[45.59968,33.81046],[45.601,33.81731],[45.60116,33.81888],[45.59995,33.82007],[45.59843,33.8216],[45.59631,33.82339],[45.59298,33.82645],[45.59035,33.82883],[45.58802,33.83071],[45.58661,33.83165],[45.58437,33.8326],[45.58418,33.83377],[45.58532,33.83564],[45.58493,33.8376],[45.58494,33.83972],[45.58373,33.84108],[45.58212,33.84354],[45.58091,33.84516],[45.57949,33.8466],[45.57778,33.84882],[45.57628,33.85213],[45.57376,33.85544],[45.57165,33.85868],[45.56983,33.8614],[45.56803,33.86488],[45.56592,33.86837],[45.56401,33.87186],[45.5626,33.87398],[45.56048,33.87653],[45.55807,33.88087],[45.55595,33.88376],[45.55364,33.88783],[45.55263,33.8897],[45.55131,33.89121],[45.55021,33.89277],[45.5493,33.89387],[45.54798,33.89362],[45.5466,33.89316],[45.54604,33.89482],[45.54525,33.89745],[45.54455,33.89906],[45.54324,33.90042],[45.54131,33.90187],[45.53858,33.90434],[45.53696,33.90621],[45.53554,33.9074],[45.53525,33.90918],[45.53527,33.91105],[45.53436,33.91258],[45.53243,33.91309],[45.53111,33.91352],[45.52936,33.91427],[45.52878,33.91539],[45.52848,33.91692],[45.52716,33.91769],[45.52594,33.91777],[45.52574,33.91871],[45.52545,33.91964],[45.52423,33.92007],[45.5229,33.92024],[45.52159,33.9201],[45.52169,33.92075],[45.52169,33.92219],[45.52099,33.92338],[45.52018,33.92432],[45.51957,33.92483],[45.51816,33.92704],[45.51767,33.92925],[45.51727,33.93087],[45.51688,33.93273],[45.51668,33.93409],[45.51619,33.93571],[45.51568,33.9369],[45.51477,33.93825],[45.51366,33.93911],[45.51305,33.93987],[45.51287,33.94208],[45.51247,33.94378],[45.51126,33.94556],[45.50974,33.94735],[45.50863,33.94854],[45.50772,33.94939],[45.50701,33.95066],[45.50509,33.9522],[45.50326,33.95424],[45.50282,33.95516],[45.50252,33.95633],[45.5027,33.95732],[45.50163,33.95726],[45.50072,33.95717],[45.49981,33.95642],[45.49849,33.95424],[45.49667,33.95357],[45.49486,33.95298],[45.49304,33.9519],[45.49253,33.95122],[45.49102,33.95014],[45.48964,33.94927],[45.48779,33.94905],[45.48447,33.94863],[45.48356,33.94838],[45.48243,33.9476],[45.48195,33.94805],[45.48166,33.94863],[45.48131,33.94927],[45.48077,33.95015],[45.47846,33.95056],[45.47645,33.9504],[45.47474,33.9504],[45.47313,33.95006],[45.47011,33.94923],[45.4682,33.94957],[45.46629,33.94973],[45.46438,33.94948],[45.46247,33.9489],[45.46045,33.94806],[45.45874,33.94731],[45.45825,33.94677],[45.45652,33.94731],[45.45532,33.94747],[45.45401,33.94698],[45.4526,33.94664],[45.45049,33.94639],[45.44889,33.94698],[45.44808,33.94698],[45.44686,33.94705],[45.44567,33.94782],[45.44437,33.94798],[45.44216,33.94782],[45.44065,33.94748],[45.43854,33.94748],[45.43673,33.9479],[45.43472,33.9474],[45.43351,33.94698],[45.4316,33.9468],[45.4309,33.94749],[45.42981,33.94916],[45.42962,33.95042],[45.42964,33.95243],[45.42974,33.95369],[45.42995,33.95462],[45.42906,33.95537],[45.42715,33.95621],[45.42555,33.95721],[45.42475,33.95797],[45.42356,33.95898],[45.42215,33.95923],[45.42115,33.95973],[45.42036,33.96065],[45.42037,33.96217],[45.42007,33.96334],[45.41928,33.96443],[45.41878,33.96535],[45.41825,33.96593],[45.41759,33.9672],[45.41721,33.96929],[45.41622,33.97122],[45.41492,33.97307],[45.41353,33.97483],[45.41163,33.97575],[45.40983,33.97659],[45.40832,33.97717],[45.40742,33.97732],[45.40964,33.97835],[45.41125,33.97869],[45.41316,33.97894],[45.41548,33.97919],[45.41729,33.97986],[45.41941,33.98086],[45.42052,33.98204],[45.42084,33.98321],[45.42105,33.98472],[45.42146,33.98615],[45.42148,33.98833],[45.42139,33.98959],[45.4218,33.99068],[45.42291,33.99143],[45.42412,33.99185],[45.42523,33.99176],[45.42633,33.99118],[45.42773,33.99084],[45.42894,33.99076],[45.43015,33.99092],[45.43046,33.99252],[45.43108,33.99395],[45.43179,33.9952],[45.4329,33.99621],[45.43402,33.99738],[45.43533,33.99805],[45.43684,33.99813],[45.43805,33.99839],[45.43926,33.99914],[45.43926,33.99922],[45.44209,34.00025],[45.44431,34.00151],[45.44804,34.00353],[45.44985,34.00488],[45.45146,34.00622],[45.45307,34.00748],[45.45549,34.00833],[45.4567,34.00842],[45.45871,34.00867],[45.46083,34.00927],[45.46264,34.00986],[45.46415,34.01012],[45.46587,34.01071],[45.46728,34.01139],[45.46727,34.01197],[45.46697,34.01255],[45.46647,34.01297],[45.46596,34.01364],[45.46617,34.01439],[45.46697,34.01489],[45.46757,34.01557],[45.46788,34.0164],[45.46727,34.0174],[45.46717,34.01824],[45.46717,34.01916],[45.46757,34.02024],[45.46818,34.02058],[45.46918,34.021],[45.4702,34.02067],[45.4709,34.02026],[45.4713,34.02051],[45.4716,34.02143],[45.47231,34.02294],[45.47352,34.0237],[45.47503,34.02487],[45.47614,34.02605],[45.47654,34.02689],[45.47583,34.0273],[45.47553,34.0273],[45.47503,34.02688],[45.47452,34.02629],[45.47412,34.02579],[45.47341,34.02553],[45.47231,34.02562],[45.4717,34.02619],[45.4709,34.02736],[45.4723,34.02904],[45.47321,34.02971],[45.47372,34.03072],[45.47382,34.03197],[45.47361,34.03281],[45.47321,34.03431],[45.47261,34.03489],[45.47119,34.03488],[45.47039,34.0353],[45.47019,34.0358],[45.47039,34.0363],[45.47099,34.03656],[45.4719,34.03681],[45.47281,34.0369],[45.47351,34.03682],[45.47412,34.0364],[45.47493,34.03657],[45.47593,34.03658],[45.47664,34.03608],[45.47765,34.03608],[45.47795,34.03709],[45.47814,34.03801],[45.47784,34.03859],[45.47744,34.03959],[45.47744,34.04051],[45.47774,34.04151],[45.47824,34.04219],[45.47905,34.04269],[45.47945,34.04328],[45.48006,34.04445],[45.47945,34.04528],[45.47986,34.04662],[45.48016,34.04754],[45.48016,34.0483],[45.47985,34.0488],[45.47764,34.05021],[45.47683,34.05112],[45.47643,34.05196],[45.47703,34.05305],[45.47814,34.05422],[45.47935,34.05473],[45.47985,34.05598],[45.47995,34.05732],[45.47935,34.05815],[45.47935,34.0589],[45.47955,34.05983],[45.47914,34.06083],[45.47834,34.06132],[45.47693,34.0614],[45.4733,34.06139],[45.47199,34.06189],[45.47038,34.06263],[45.46867,34.06346],[45.46725,34.06446],[45.46675,34.06537],[45.46736,34.06671],[45.46876,34.0673],[45.46987,34.06815],[45.47088,34.06848],[45.47098,34.06932],[45.47148,34.0699],[45.47199,34.07016],[45.47269,34.07083],[45.47269,34.07133],[45.47239,34.07208],[45.47209,34.07267],[45.47229,34.07309],[45.47279,34.07342],[45.4735,34.07418],[45.4737,34.07501],[45.4738,34.07593],[45.4738,34.07669],[45.474,34.07727],[45.47501,34.07744],[45.47662,34.07762],[45.47783,34.0777],[45.47894,34.07821],[45.47954,34.07913],[45.47964,34.08013],[45.47995,34.08131],[45.48014,34.08215],[45.48105,34.08265],[45.48226,34.08282],[45.48367,34.08266],[45.48387,34.08208],[45.48407,34.08132],[45.48418,34.0799],[45.48458,34.07848],[45.48498,34.07757],[45.48549,34.07707],[45.48629,34.07724],[45.4865,34.07799],[45.4868,34.07933],[45.4876,34.08084],[45.48851,34.08134],[45.48971,34.08177],[45.49012,34.08243],[45.49032,34.08319],[45.49092,34.08361],[45.49213,34.08395],[45.49344,34.08412],[45.49526,34.08421],[45.49626,34.08464],[45.49616,34.08556],[45.49536,34.0863],[45.49364,34.08688],[45.49102,34.08795],[45.49032,34.08871],[45.49123,34.08955],[45.49223,34.0898],[45.49385,34.09031],[45.49395,34.09164],[45.49395,34.09256],[45.49414,34.09357],[45.49485,34.09424],[45.49576,34.09425],[45.49656,34.094],[45.49727,34.09442],[45.49717,34.09584],[45.49737,34.09684],[45.49837,34.09751],[45.49939,34.09793],[45.50009,34.09819],[45.502,34.0992],[45.50432,34.09954],[45.50613,34.09964],[45.50694,34.09989],[45.50714,34.10064],[45.50664,34.10131],[45.50563,34.10222],[45.50492,34.10306],[45.50442,34.10406],[45.50482,34.10514],[45.50603,34.10549],[45.50734,34.10566],[45.50845,34.10683],[45.50996,34.10868],[45.51137,34.11019],[45.51237,34.11086],[45.51368,34.11204],[45.51479,34.11179],[45.5154,34.11179],[45.5157,34.11213],[45.5155,34.1128],[45.51489,34.11313],[45.51469,34.11405],[45.5155,34.11397],[45.5166,34.11355],[45.51832,34.11306],[45.51902,34.11231],[45.51983,34.1119],[45.52034,34.11156],[45.52074,34.11165],[45.52124,34.11215],[45.52124,34.1129],[45.52104,34.11365],[45.52134,34.11466],[45.52164,34.11499],[45.52245,34.11533],[45.52386,34.1155],[45.52457,34.1166],[45.52436,34.11735],[45.52416,34.11801],[45.52366,34.11893],[45.52507,34.11961],[45.52648,34.12003],[45.52809,34.11945],[45.52819,34.11811],[45.52809,34.11686],[45.52809,34.11619],[45.5287,34.11578],[45.5299,34.11562],[45.53081,34.1157],[45.53081,34.11629],[45.53101,34.11695],[45.53152,34.11771],[45.53273,34.11797],[45.53373,34.11797],[45.53353,34.11864],[45.53252,34.11938],[45.53121,34.1198],[45.53031,34.12063],[45.5299,34.1223],[45.53061,34.12314],[45.53171,34.12331],[45.53363,34.12407],[45.53464,34.12507],[45.53595,34.12466],[45.53665,34.12433],[45.53927,34.12551],[45.54108,34.12602],[45.54199,34.12603],[45.5428,34.12653],[45.5432,34.12745],[45.54436,34.12788],[45.54511,34.12838],[45.54572,34.12872],[45.54592,34.1293],[45.54652,34.13022],[45.55075,34.13325],[45.55498,34.13653],[45.5577,34.13846],[45.55881,34.13805],[45.56002,34.13864],[45.56012,34.14006],[45.56551,34.13991],[45.56825,34.13986],[45.57523,34.14388],[45.5816,34.14621],[45.57896,34.15058],[45.57664,34.15484],[45.57482,34.15884],[45.57482,34.16411],[45.57412,34.16904],[45.57331,34.17204],[45.572,34.17379],[45.57049,34.17504],[45.56964,34.1751],[45.56766,34.17753],[45.56555,34.17995],[45.56303,34.18286],[45.5595,34.18652],[45.55748,34.18952],[45.55728,34.18977],[45.55527,34.19286],[45.55426,34.19628],[45.55476,34.19812],[45.55567,34.19946],[45.55714,34.20039],[45.55788,34.20173],[45.5601,34.20425],[45.56187,34.20594],[45.56705,34.21071],[45.56946,34.21289],[45.56993,34.21316],[45.57087,34.21791],[45.57148,34.22084],[45.5727,34.22343],[45.57641,34.23014],[45.57923,34.23474],[45.58049,34.2365],[45.58124,34.24069],[45.58124,34.24211],[45.58144,34.2432],[45.58187,34.24428],[45.58225,34.24687],[45.58255,34.24863],[45.58255,34.24972],[45.58187,34.25511],[45.58178,34.2582],[45.58149,34.26382],[45.58195,34.26783],[45.58215,34.26844],[45.58275,34.27505],[45.58375,34.2796],[45.58529,34.28566],[45.58604,34.28817],[45.58573,34.29346],[45.5857,34.29478],[45.58484,34.29957],[45.5835,34.30291],[45.57465,34.31621],[45.56187,34.33177],[45.53621,34.35369],[45.53543,34.35345],[45.53521,34.35261],[45.53496,34.35113],[45.53463,34.34952],[45.53396,34.34789],[45.53206,34.34714],[45.52996,34.34734],[45.5282,34.34921],[45.52631,34.35017],[45.52392,34.35023],[45.52137,34.34958],[45.5196,34.34923],[45.51774,34.34896],[45.51503,34.34954],[45.51178,34.35154],[45.51051,34.35281],[45.50912,34.35335],[45.50817,34.35297],[45.5075,34.35174],[45.50679,34.35021],[45.50588,34.3486],[45.50468,34.34754],[45.50426,34.34638],[45.50434,34.3445],[45.50371,34.34239],[45.50198,34.34092],[45.50037,34.33989],[45.49987,34.33962],[45.49941,34.3389],[45.49846,34.33771],[45.49742,34.33621],[45.49631,34.33706],[45.49353,34.34178],[45.48075,34.36483],[45.46659,34.38371],[45.46634,34.38628],[45.46381,34.39872],[45.46242,34.40261],[45.45853,34.41594],[45.45797,34.42095],[45.45677,34.43085],[45.45659,34.43325],[45.45436,34.43289],[45.45436,34.43511],[45.45156,34.43665],[45.44881,34.43761],[45.4449,34.43934],[45.4477,34.4398],[45.44355,34.44126],[45.44247,34.44308],[45.44219,34.44744],[45.44274,34.44851],[45.44329,34.44976],[45.44224,34.45208],[45.44131,34.45317],[45.44033,34.45565],[45.44025,34.45805],[45.4407,34.46019],[45.44255,34.46188],[45.44397,34.46411],[45.44548,34.46511],[45.44807,34.46499],[45.44992,34.46428],[45.45298,34.46428],[45.45436,34.4665],[45.45853,34.4665],[45.46016,34.46762],[45.46135,34.46952],[45.46186,34.474],[45.46312,34.47513],[45.4647,34.4752],[45.46663,34.47592],[45.46804,34.47743],[45.46953,34.47808],[45.47119,34.47771],[45.4724,34.47662],[45.47379,34.4759],[45.47798,34.47553],[45.48104,34.47602],[45.4841,34.47609],[45.48698,34.47565],[45.48864,34.47557],[45.49073,34.47528],[45.49177,34.47499],[45.49387,34.47448],[45.49631,34.4744],[45.49805,34.47374],[45.4991,34.47367],[45.49997,34.47367],[45.50079,34.47377],[45.50215,34.47376],[45.50371,34.47334],[45.50579,34.47306],[45.50709,34.47285],[45.50795,34.47261],[45.51022,34.47341],[45.51238,34.47478],[45.51475,34.47605],[45.51712,34.47759],[45.51821,34.47887],[45.51929,34.48086],[45.51939,34.48123],[45.52109,34.48257],[45.52274,34.48529],[45.52371,34.4871],[45.52381,34.48905],[45.52364,34.49064],[45.52453,34.49274],[45.52558,34.49447],[45.52638,34.49592],[45.52647,34.49678],[45.52708,34.49792],[45.52709,34.49824],[45.52674,34.49903],[45.52584,34.49996],[45.52569,34.50163],[45.5258,34.50301],[45.52521,34.50432],[45.52532,34.50614],[45.52604,34.5078],[45.52581,34.50955],[45.52539,34.51064],[45.52497,34.51209],[45.52552,34.51405],[45.5252,34.51558],[45.52494,34.51616],[45.52557,34.51739],[45.52621,34.51942],[45.52678,34.52226],[45.52647,34.52451],[45.52632,34.52669],[45.52602,34.52953],[45.52542,34.53083],[45.52381,34.53183],[45.52345,34.53353],[45.52304,34.53506],[45.52263,34.53717],[45.52266,34.53927],[45.52173,34.54138],[45.52079,34.54248],[45.51845,34.54408],[45.51663,34.54518],[45.51489,34.54585],[45.51368,34.54636],[45.5133,34.54654],[45.51325,34.54702],[45.51362,34.54861],[45.51416,34.54948],[45.5144,34.55046],[45.51215,34.55122],[45.512,34.55167],[45.51289,34.55247],[45.51378,34.55341],[45.51537,34.55434],[45.51747,34.55492],[45.51854,34.55614],[45.51954,34.55839],[45.52183,34.55976],[45.52253,34.55991],[45.52351,34.56113],[45.52345,34.56295],[45.52304,34.5647],[45.52341,34.56644],[45.52309,34.56811],[45.52293,34.56927],[45.52339,34.57109],[45.52306,34.57218],[45.52307,34.57291],[45.52361,34.57363],[45.52397,34.57457],[45.52373,34.57559],[45.52313,34.57661],[45.52314,34.57755],[45.52386,34.57849],[45.52457,34.57922],[45.52589,34.57965],[45.52703,34.58022],[45.52748,34.58124],[45.5275,34.58226],[45.5276,34.58327],[45.5284,34.58414],[45.52938,34.58551],[45.52983,34.58638],[45.53055,34.5874],[45.53091,34.58841],[45.53155,34.58986],[45.53192,34.59168],[45.53142,34.59349],[45.5311,34.5951],[45.53112,34.59633],[45.5314,34.59771],[45.53054,34.59888],[45.52969,34.59997],[45.52953,34.60113],[45.52998,34.60164],[45.53099,34.60183],[45.53243,34.60221],[45.53437,34.60278],[45.53568,34.60306],[45.53664,34.60299],[45.53733,34.60218],[45.53819,34.60109],[45.53809,34.60015],[45.53773,34.59957],[45.53702,34.59906],[45.53614,34.59885],[45.53552,34.5982],[45.53525,34.5974],[45.53523,34.59653],[45.53504,34.59566],[45.53564,34.59485],[45.53616,34.59413],[45.53694,34.59362],[45.53781,34.59339],[45.5386,34.5939],[45.53959,34.59513],[45.54039,34.59592],[45.54136,34.59679],[45.54242,34.59737],[45.5433,34.59794],[45.54418,34.59794],[45.54522,34.5975],[45.54573,34.59684],[45.54651,34.59597],[45.54703,34.59545],[45.54807,34.59509],[45.54877,34.59487],[45.54964,34.59501],[45.55017,34.59544],[45.55166,34.59521],[45.55244,34.59478],[45.55304,34.59412],[45.55347,34.59353],[45.55381,34.59303],[45.55486,34.59266],[45.55529,34.59265],[45.5553,34.59324],[45.55557,34.59374],[45.55646,34.59425],[45.55742,34.59425],[45.55776,34.59381],[45.55801,34.59293],[45.558,34.59214],[45.55738,34.59156],[45.55667,34.59112],[45.55588,34.59113],[45.55518,34.59091],[45.55491,34.59062],[45.55482,34.59011],[45.55525,34.58982],[45.55612,34.58945],[45.55655,34.58873],[45.55741,34.58785],[45.55749,34.58727],[45.55809,34.58654],[45.5586,34.58574],[45.55894,34.58515],[45.55893,34.58457],[45.55805,34.58422],[45.55709,34.58393],[45.55603,34.58328],[45.5554,34.58248],[45.5553,34.58176],[45.55686,34.58059],[45.55878,34.58058],[45.56001,34.58086],[45.56098,34.58086],[45.56141,34.58071],[45.56166,34.58006],[45.56166,34.57955],[45.56121,34.57912],[45.5606,34.57883],[45.55946,34.57854],[45.55866,34.57811],[45.55847,34.57688],[45.55854,34.57622],[45.55889,34.57579],[45.55966,34.57513],[45.56045,34.5749],[45.56124,34.57498],[45.56185,34.57541],[45.56264,34.57555],[45.56335,34.57562],[45.56404,34.57532],[45.5649,34.57459],[45.56568,34.57386],[45.56619,34.57299],[45.56661,34.57204],[45.56703,34.57088],[45.56719,34.56964],[45.56717,34.56841],[45.56708,34.56812],[45.56672,34.56739],[45.56723,34.56652],[45.56801,34.56623],[45.56887,34.56564],[45.56948,34.56484],[45.57025,34.56418],[45.57103,34.56359],[45.57146,34.56345],[45.57217,34.56345],[45.57261,34.56395],[45.57263,34.56526],[45.57326,34.56627],[45.5744,34.56678],[45.57483,34.56641],[45.57491,34.5659],[45.5749,34.5651],[45.5748,34.5643],[45.57479,34.5635],[45.57522,34.56292],[45.57626,34.56211],[45.57685,34.56139],[45.57711,34.56059],[45.57735,34.55957],[45.57734,34.55891],[45.57803,34.5584],[45.57908,34.55818],[45.57978,34.55854],[45.58015,34.55955],[45.58069,34.56035],[45.58165,34.56078],[45.58225,34.55983],[45.58242,34.55918],[45.58267,34.55845],[45.58363,34.55823],[45.58423,34.55757],[45.58536,34.5572],[45.58659,34.55749],[45.58695,34.55828],[45.58801,34.55908],[45.58872,34.55966],[45.58951,34.55994],[45.59073,34.55943],[45.59054,34.55885],[45.59018,34.5582],[45.59,34.55732],[45.59024,34.55653],[45.5905,34.55623],[45.59111,34.55601],[45.59181,34.55593],[45.59233,34.5555],[45.59302,34.5552],[45.5945,34.5549],[45.59537,34.55468],[45.59528,34.55388],[45.59483,34.55323],[45.59464,34.55229],[45.59489,34.55141],[45.59496,34.55069],[45.5954,34.5504],[45.59661,34.55017],[45.59767,34.55046],[45.5989,34.55067],[45.59925,34.55117],[45.59944,34.55168],[45.60014,34.55197],[45.60092,34.55175],[45.60248,34.55051],[45.60378,34.55006],[45.60544,34.54954],[45.60675,34.54939],[45.60745,34.54968],[45.60799,34.55062],[45.60879,34.55164],[45.61106,34.55104],[45.61114,34.55097],[45.61254,34.55125],[45.61308,34.55197],[45.61431,34.55218],[45.61588,34.55218],[45.61657,34.55174],[45.6178,34.55151],[45.61953,34.55092],[45.62172,34.55077],[45.62208,34.55156],[45.62295,34.55105],[45.62365,34.55133],[45.62358,34.55228],[45.62342,34.55315],[45.62526,34.5538],[45.62604,34.55321],[45.62619,34.55139],[45.62617,34.55038],[45.62668,34.54929],[45.6272,34.54899],[45.62816,34.54921],[45.62861,34.55007],[45.62907,34.55109],[45.63021,34.55144],[45.63162,34.55209],[45.63252,34.55361],[45.63264,34.55579],[45.63188,34.55717],[45.63216,34.55884],[45.63305,34.55942],[45.63427,34.55912],[45.63531,34.55846],[45.63555,34.55752],[45.63597,34.55657],[45.63693,34.55635],[45.63869,34.55684],[45.63922,34.55713],[45.63914,34.55772],[45.63872,34.55844],[45.63916,34.5591],[45.64083,34.55916],[45.64125,34.55858],[45.64141,34.55756],[45.64166,34.55683],[45.64129,34.5556],[45.64058,34.5548],[45.64013,34.554],[45.64039,34.55364],[45.64143,34.55356],[45.64292,34.55334],[45.64397,34.55326],[45.64544,34.5526],[45.64605,34.55216],[45.64665,34.55165],[45.64735,34.55164],[45.6484,34.55192],[45.64876,34.5525],[45.64982,34.55294],[45.65113,34.55293],[45.65166,34.55343],[45.65107,34.5546],[45.65074,34.55591],[45.65102,34.55663],[45.65198,34.5567],[45.6524,34.55612],[45.65248,34.55539],[45.6529,34.55451],[45.65325,34.554],[45.65464,34.55363],[45.65552,34.55407],[45.65623,34.55493],[45.65782,34.55558],[45.65982,34.55535],[45.6613,34.55454],[45.66128,34.55323],[45.66196,34.55221],[45.66317,34.55112],[45.66456,34.55104],[45.66503,34.55256],[45.66574,34.55357],[45.66723,34.55371],[45.66905,34.55268],[45.67,34.55187],[45.67121,34.55143],[45.67255,34.55266],[45.67353,34.55367],[45.67434,34.55548],[45.67523,34.55621],[45.67645,34.5562],[45.67775,34.55553],[45.67915,34.55516],[45.67993,34.55523],[45.68065,34.55617],[45.68111,34.55777],[45.68183,34.55878],[45.68227,34.55929],[45.68394,34.55928],[45.68462,34.55862],[45.68461,34.55767],[45.68372,34.55666],[45.68344,34.55601],[45.68335,34.55529],[45.68404,34.55477],[45.685,34.55469],[45.68563,34.55621],[45.68591,34.5573],[45.68637,34.55817],[45.68706,34.5581],[45.68801,34.55736],[45.68888,34.55663],[45.68983,34.55619],[45.69017,34.55561],[45.69095,34.55517],[45.69226,34.55516],[45.69304,34.55464],[45.69303,34.55407],[45.6931,34.55334],[45.6938,34.5529],[45.69493,34.55282],[45.69572,34.55318],[45.69684,34.55186],[45.69805,34.55106],[45.69891,34.5504],[45.69907,34.54931],[45.69975,34.54814],[45.70043,34.54748],[45.70122,34.54719],[45.70227,34.54747],[45.70289,34.5479],[45.70393,34.54753],[45.7041,34.54688],[45.70417,34.54579],[45.70529,34.54527],[45.7066,34.54512],[45.70749,34.54577],[45.70906,34.54583],[45.70957,34.54474],[45.71,34.5443],[45.70938,34.54358],[45.70866,34.54286],[45.70918,34.5422],[45.71013,34.5419],[45.71093,34.54233],[45.71216,34.54283],[45.71276,34.54247],[45.71267,34.54182],[45.71248,34.54101],[45.71326,34.54065],[45.71404,34.54042],[45.71569,34.53969],[45.71683,34.53961],[45.71788,34.53996],[45.71787,34.53946],[45.71751,34.53881],[45.71741,34.5383],[45.71828,34.53778],[45.71915,34.53735],[45.72047,34.53784],[45.72084,34.53893],[45.72189,34.53914],[45.72241,34.53885],[45.72267,34.53863],[45.72327,34.53804],[45.72404,34.53746],[45.72527,34.53767],[45.72623,34.53773],[45.72684,34.53759],[45.72928,34.5367],[45.73014,34.53633],[45.73075,34.53611],[45.7318,34.53588],[45.7325,34.53602],[45.73234,34.53683],[45.73218,34.53777],[45.73289,34.53857],[45.73447,34.5387],[45.73542,34.53826],[45.7362,34.53782],[45.73724,34.5373],[45.73855,34.53693],[45.73967,34.53641],[45.74038,34.53677],[45.74116,34.5367],[45.74194,34.53626],[45.74257,34.53691],[45.74258,34.53763],[45.74338,34.53813],[45.74338,34.5385],[45.7433,34.53904],[45.74279,34.53981],[45.74167,34.54076],[45.74073,34.542],[45.74067,34.54331],[45.74139,34.54476],[45.74237,34.54584],[45.74269,34.54889],[45.7424,34.55071],[45.74196,34.55216],[45.74066,34.55326],[45.7391,34.55378],[45.73632,34.554],[45.73624,34.55532],[45.73609,34.55634],[45.73541,34.5578],[45.73482,34.55918],[45.73468,34.56078],[45.7347,34.56209],[45.73542,34.56346],[45.73576,34.56428],[45.73791,34.56555],[45.73854,34.56686],[45.73918,34.56831],[45.74009,34.57026],[45.74048,34.57259],[45.73989,34.57383],[45.73903,34.57485],[45.73819,34.57667],[45.7383,34.57819],[45.73946,34.57935],[45.7401,34.58094],[45.73917,34.58298],[45.73928,34.58436],[45.73907,34.58683],[45.73831,34.58851],[45.73745,34.58924],[45.7366,34.58956],[45.73554,34.59063],[45.73266,34.59079],[45.73179,34.59109],[45.73049,34.59178],[45.7306,34.59313],[45.73001,34.59459],[45.7288,34.59554],[45.72849,34.59743],[45.72852,34.59917],[45.72819,34.60055],[45.72682,34.60187],[45.72605,34.60333],[45.72504,34.60522],[45.72366,34.60668],[45.72324,34.60771],[45.72243,34.60817],[45.72266,34.60916],[45.72355,34.61039],[45.72399,34.61082],[45.72507,34.61249],[45.72571,34.61372],[45.72572,34.61452],[45.72688,34.61597],[45.72927,34.61711],[45.72965,34.61733],[45.73,34.61878],[45.72959,34.6206],[45.72892,34.62205],[45.72866,34.62278],[45.72782,34.62468],[45.72699,34.62715],[45.72624,34.62919],[45.72566,34.63137],[45.72507,34.63254],[45.7251,34.63435],[45.72486,34.63588],[45.72349,34.63771],[45.72203,34.6388],[45.72029,34.63954],[45.7197,34.64078],[45.7192,34.6426],[45.71802,34.64493],[45.71699,34.64624],[45.71582,34.6493],[45.71455,34.65222],[45.71371,34.65411],[45.7134,34.65607],[45.71255,34.65768],[45.71146,34.66059],[45.71071,34.66277],[45.71056,34.66415],[45.71009,34.66757],[45.71037,34.66873],[45.71049,34.66928],[45.71004,34.67011],[45.70856,34.67034],[45.70715,34.66991],[45.70425,34.66913],[45.70214,34.66893],[45.70006,34.66967],[45.69804,34.66975],[45.69717,34.66968],[45.69604,34.66928],[45.69598,34.67209],[45.69592,34.67361],[45.69596,34.67579],[45.69662,34.67855],[45.69691,34.68029],[45.69686,34.68283],[45.6976,34.68501],[45.69842,34.68682],[45.69977,34.68884],[45.7012,34.69043],[45.70227,34.69188],[45.70299,34.69206],[45.70291,34.69318],[45.70243,34.69344],[45.70223,34.69457],[45.7005,34.69574],[45.69842,34.69699],[45.69642,34.69773],[45.69416,34.69912],[45.69262,34.70116],[45.69195,34.7032],[45.69162,34.70415],[45.69104,34.70483],[45.69025,34.70626],[45.68634,34.70781],[45.68399,34.70884],[45.68287,34.70979],[45.68156,34.70994],[45.67972,34.71025],[45.67824,34.71083],[45.67702,34.71091],[45.67587,34.71041],[45.67455,34.71006],[45.6729,34.71094],[45.67118,34.71247],[45.66882,34.71373],[45.66754,34.71518],[45.66677,34.71642],[45.66546,34.71672],[45.6631,34.71674],[45.66241,34.71725],[45.66164,34.71834],[45.66059,34.71893],[45.6592,34.71915],[45.6578,34.71967],[45.65702,34.72011],[45.65694,34.72069],[45.65599,34.72135],[45.65547,34.72193],[45.65435,34.72296],[45.65357,34.72311],[45.65252,34.72326],[45.65315,34.7242],[45.65431,34.7255],[45.65546,34.72644],[45.65697,34.72795],[45.65821,34.72824],[45.66104,34.72844],[45.66225,34.72923],[45.66332,34.73032],[45.66439,34.73125],[45.66493,34.73198],[45.66664,34.73516],[45.66871,34.73806],[45.67057,34.7395],[45.67138,34.74073],[45.67193,34.74196],[45.67203,34.74269],[45.67287,34.74573],[45.67377,34.74733],[45.6752,34.74928],[45.67554,34.75071],[45.67626,34.75207],[45.67697,34.75323],[45.67715,34.75372],[45.67647,34.7554],[45.6764,34.75771],[45.67756,34.75987],[45.67916,34.76167],[45.68067,34.76369],[45.68215,34.76456],[45.68358,34.76599],[45.68499,34.76671],[45.68684,34.7675],[45.68764,34.76793],[45.68914,34.76937],[45.69143,34.77022],[45.69467,34.77065],[45.69748,34.77093],[45.69937,34.7715],[45.69952,34.77309],[45.69893,34.7749],[45.69815,34.77663],[45.6973,34.77837],[45.69626,34.77953],[45.69513,34.78097],[45.69409,34.78213],[45.69358,34.78321],[45.6941,34.78373],[45.69622,34.78436],[45.69789,34.78522],[45.69984,34.78673],[45.70178,34.78796],[45.70328,34.78918],[45.7041,34.79039],[45.70304,34.79171],[45.70078,34.7933],[45.70036,34.79475],[45.69846,34.79807],[45.69699,34.79938],[45.69532,34.79981],[45.69402,34.80112],[45.69272,34.80271],[45.69212,34.8043],[45.69205,34.8056],[45.69189,34.80755],[45.69104,34.80993],[45.68992,34.81152],[45.68826,34.81317],[45.68846,34.81449],[45.68935,34.816],[45.69076,34.81694],[45.69279,34.81852],[45.69475,34.82125],[45.69626,34.8227],[45.69715,34.82363],[45.6991,34.82429],[45.70326,34.8254],[45.7116,34.82873],[45.71299,34.82957],[45.71354,34.83039],[45.71465,34.83095],[45.72269,34.83945],[45.72397,34.839],[45.7259,34.83899],[45.72714,34.84],[45.72925,34.84028],[45.73117,34.83934],[45.73372,34.83969],[45.73488,34.84127],[45.73623,34.8451],[45.73799,34.8479],[45.73819,34.84697],[45.73719,34.84459],[45.73664,34.84221],[45.736,34.83961],[45.73604,34.83789],[45.73596,34.83586],[45.73638,34.83383],[45.73768,34.83253],[45.74014,34.83303],[45.74305,34.83388],[45.74479,34.8333],[45.74566,34.83229],[45.74652,34.8307],[45.74715,34.829],[45.74852,34.8291],[45.75019,34.82974],[45.75353,34.83041],[45.75576,34.83039],[45.75937,34.83311],[45.76194,34.83461],[45.76503,34.83545],[45.76723,34.83586],[45.76884,34.83701],[45.77033,34.83735],[45.77243,34.83691],[45.7741,34.83704],[45.77482,34.83812],[45.77483,34.83819],[45.77726,34.84156],[45.77952,34.84508],[45.78247,34.8478],[45.78595,34.85045],[45.79057,34.85359],[45.79369,34.85602],[45.79576,34.85707],[45.7965,34.86062],[45.79694,34.86531],[45.79679,34.87066],[45.7974,34.87477],[45.79677,34.8786],[45.79643,34.88359],[45.79477,34.88845],[45.79344,34.89243],[45.79214,34.89765],[45.79132,34.90011],[45.79031,34.90236],[45.7891,34.90352],[45.78747,34.90563],[45.7866,34.90706],[45.787,34.90831],[45.78842,34.90938],[45.79038,34.91052],[45.79172,34.91159],[45.79299,34.91151],[45.79543,34.91265],[45.79999,34.91282],[45.80332,34.91229],[45.80621,34.91154],[45.81077,34.91128],[45.81333,34.91206],[45.81492,34.91241],[45.8171,34.91174],[45.81771,34.91123],[45.81938,34.9115],[45.82183,34.91148],[45.82356,34.91002],[45.82503,34.90892],[45.82658,34.9071],[45.82716,34.90551],[45.82743,34.90345],[45.82826,34.9034],[45.82933,34.90455],[45.83126,34.90439],[45.83343,34.90329],[45.83465,34.90234],[45.83462,34.90089],[45.83451,34.90024],[45.83537,34.89915],[45.83632,34.89845],[45.83826,34.89898],[45.83924,34.89948],[45.84167,34.89823],[45.84248,34.89894],[45.84354,34.89944],[45.84442,34.89943],[45.84571,34.89819],[45.84684,34.89746],[45.84833,34.8973],[45.84928,34.8965],[45.84995,34.8949],[45.85076,34.89401],[45.85195,34.89445],[45.85224,34.89575],[45.85401,34.89624],[45.8563,34.89651],[45.85823,34.89628],[45.86129,34.89574],[45.86322,34.89565],[45.86549,34.89595],[45.86536,34.89715],[45.86494,34.89817],[45.865,34.90105],[45.86576,34.90207],[45.86522,34.90322],[45.86533,34.90423],[45.86597,34.90546],[45.86764,34.90551],[45.86907,34.90673],[45.86901,34.90795],[45.8691,34.90957],[45.86822,34.91266],[45.86803,34.91591],[45.86772,34.91808],[45.86767,34.91989],[45.86884,34.92125],[45.86885,34.92154],[45.86916,34.92377],[45.86875,34.92522],[45.86807,34.92631],[45.86809,34.92733],[45.86952,34.92861],[45.87112,34.92925],[45.87262,34.92996],[45.87309,34.93111],[45.87302,34.93219],[45.87234,34.93328],[45.87186,34.93516],[45.87271,34.93595],[45.87337,34.93631],[45.87459,34.93601],[45.87565,34.93593],[45.87646,34.93686],[45.87778,34.93721],[45.87859,34.93778],[45.8786,34.93879],[45.87854,34.93987],[45.87917,34.94073],[45.88015,34.9413],[45.88149,34.9423],[45.88178,34.94353],[45.8818,34.94432],[45.88199,34.94519],[45.88262,34.94576],[45.88359,34.94582],[45.88436,34.94538],[45.88533,34.94516],[45.88735,34.94521],[45.88851,34.94599],[45.88976,34.94707],[45.8902,34.94699],[45.89125,34.94677],[45.89196,34.94705],[45.8918,34.94798],[45.89155,34.94871],[45.89227,34.94936],[45.89359,34.94971],[45.89422,34.95021],[45.89423,34.95085],[45.89372,34.95173],[45.8941,34.95309],[45.89359,34.95375],[45.89299,34.95426],[45.89326,34.95491],[45.89407,34.95541],[45.89522,34.95626],[45.8956,34.95742],[45.89614,34.95821],[45.8973,34.9587],[45.89775,34.9592],[45.89771,34.95957],[45.89735,34.96116],[45.89642,34.96268],[45.89625,34.96348],[45.89503,34.96385],[45.89496,34.9645],[45.89454,34.96537],[45.89402,34.96559],[45.89359,34.96632],[45.8936,34.96697],[45.8931,34.9682],[45.89215,34.96879],[45.89102,34.96938],[45.89051,34.97032],[45.89046,34.9722],[45.89066,34.97321],[45.89147,34.97414],[45.89175,34.97501],[45.89116,34.97602],[45.89031,34.97726],[45.88998,34.97856],[45.8902,34.98037],[45.88926,34.98182],[45.88743,34.98234],[45.88754,34.98343],[45.88818,34.98465],[45.88865,34.98616],[45.88876,34.98739],[45.88993,34.98845],[45.88804,34.99072],[45.88806,34.99181],[45.88721,34.9929],[45.88643,34.99355],[45.88645,34.99478],[45.88559,34.99544],[45.88553,34.99659],[45.88556,34.99818],[45.88593,34.99948],[45.88446,35.00058],[45.88116,35.00213],[45.88108,35.00278],[45.88029,35.00307],[45.87959,35.00315],[45.87822,35.00461],[45.87789,35.00653],[45.87686,35.00722],[45.87459,35.00775],[45.87393,35.00963],[45.87423,35.01144],[45.87529,35.01186],[45.8768,35.01271],[45.87823,35.01342],[45.87939,35.01421],[45.87966,35.01507],[45.8795,35.01551],[45.87838,35.0166],[45.87753,35.01791],[45.87702,35.01907],[45.87768,35.02073],[45.87779,35.02203],[45.87764,35.0234],[45.87663,35.0255],[45.8764,35.02724],[45.8767,35.02875],[45.87673,35.03006],[45.87571,35.03173],[45.8752,35.0326],[45.87469,35.03376],[45.87594,35.0344],[45.87717,35.03446],[45.87781,35.03568],[45.87872,35.03719],[45.8802,35.03725],[45.8984,35.04631],[45.90023,35.04783],[45.90226,35.04824],[45.90411,35.0483],[45.90657,35.04784],[45.90858,35.04732],[45.90971,35.04672],[45.91084,35.04628],[45.91146,35.0462],[45.9126,35.04626],[45.91445,35.04639],[45.9178,35.04658],[45.9192,35.04635],[45.92157,35.04618],[45.92343,35.04681],[45.92475,35.04695],[45.92615,35.04671],[45.92729,35.04642],[45.92799,35.04612],[45.93011,35.0457],[45.93046,35.04646],[45.93051,35.04863],[45.93019,35.05007],[45.92907,35.05146],[45.9277,35.05299],[45.92631,35.05379],[45.92263,35.05455],[45.92141,35.05492],[45.92063,35.0558],[45.92048,35.05703],[45.92051,35.0584],[45.92089,35.05962],[45.92153,35.06049],[45.92227,35.06221],[45.92221,35.0638],[45.92225,35.06554],[45.92213,35.06843],[45.9221,35.07074],[45.92185,35.07139],[45.92146,35.07371],[45.92133,35.07616],[45.92173,35.07811],[45.92237,35.07941],[45.92233,35.0815],[45.92208,35.08215],[45.92198,35.08569],[45.92192,35.09097],[45.92205,35.09265],[45.92182,35.09465],[45.92159,35.09625],[45.92187,35.09704],[45.92388,35.09623],[45.92482,35.0952],[45.92576,35.09368],[45.92847,35.08888],[45.93035,35.08634],[45.93189,35.0843],[45.93414,35.08255],[45.93598,35.08238],[45.93698,35.08346],[45.9378,35.08489],[45.93908,35.08697],[45.94053,35.08891],[45.94196,35.08998],[45.94384,35.09127],[45.94587,35.09168],[45.94701,35.09131],[45.9491,35.09049],[45.95093,35.08982],[45.95232,35.08865],[45.95334,35.08734],[45.95402,35.08632],[45.95566,35.08465],[45.95686,35.08312],[45.95851,35.08224],[45.95991,35.08179],[45.9621,35.08126],[45.96376,35.0811],[45.96551,35.08036],[45.9669,35.07984],[45.96733,35.07912],[45.96783,35.0781],[45.96779,35.076],[45.96846,35.07434],[45.97029,35.07366],[45.97214,35.07365],[45.97459,35.07305],[45.97591,35.07303],[45.97775,35.07287],[45.97941,35.07242],[45.98037,35.07219],[45.98177,35.07175],[45.98237,35.07102],[45.98297,35.07007],[45.98374,35.06949],[45.9847,35.06904],[45.98734,35.06902],[45.98847,35.06821],[45.98924,35.06748],[45.99002,35.06661],[45.99053,35.06595],[45.99148,35.065],[45.99269,35.06441],[45.99548,35.06316],[45.99705,35.06278],[45.99881,35.06269],[45.99978,35.06268],[46.00121,35.06355],[46.0015,35.06478],[46.00162,35.06674],[46.00236,35.06876],[46.00318,35.07042],[46.00444,35.07194],[46.00559,35.07236],[46.00744,35.07257],[46.00911,35.07263],[46.01202,35.07268],[46.01465,35.07208],[46.0163,35.07083],[46.01707,35.06982],[46.01705,35.06851],[46.01737,35.06669],[46.01841,35.0656],[46.0205,35.06457],[46.02328,35.06296],[46.02571,35.06127],[46.02675,35.0601],[46.02743,35.05851],[46.02776,35.05727],[46.02722,35.05691],[46.02607,35.05627],[46.02587,35.05532],[46.02771,35.05451],[46.03006,35.05326],[46.0325,35.05238],[46.03461,35.05214],[46.03635,35.05126],[46.03907,35.05081],[46.04049,35.05152],[46.04103,35.0521],[46.04184,35.05289],[46.04307,35.05302],[46.04455,35.05243],[46.0455,35.05134],[46.04663,35.05039],[46.04812,35.04994],[46.04945,35.05087],[46.05001,35.05232],[46.05108,35.05304],[46.05239,35.05302],[46.05317,35.0523],[46.05315,35.05106],[46.05252,35.05005],[46.05206,35.04904],[46.05204,35.04817],[46.05273,35.04758],[46.05291,35.04737],[46.05455,35.04598],[46.05559,35.04525],[46.05618,35.04372],[46.05641,35.04205],[46.05648,35.04053],[46.05637,35.03937],[46.05724,35.03871],[46.05828,35.03819],[46.06031,35.03825],[46.06226,35.03925],[46.0635,35.03982],[46.0635,35.03996],[46.06528,35.04133],[46.06618,35.04212],[46.0677,35.04341],[46.06782,35.04529],[46.06821,35.04696],[46.06823,35.04841],[46.06852,35.04978],[46.0695,35.05043],[46.07215,35.05113],[46.07366,35.0517],[46.0764,35.05277],[46.07801,35.05428],[46.07989,35.056],[46.07993,35.05781],[46.07969,35.05934],[46.07839,35.06036],[46.07681,35.06045],[46.076,35.05958],[46.07475,35.05858],[46.07333,35.05772],[46.07165,35.05723],[46.06955,35.05768],[46.0687,35.05935],[46.06837,35.0608],[46.06813,35.06233],[46.06816,35.06378],[46.06828,35.0653],[46.069,35.06631],[46.0699,35.06717],[46.07088,35.06803],[46.07222,35.06911],[46.07241,35.06961],[46.07244,35.07179],[46.07092,35.07484],[46.06989,35.07652],[46.06983,35.07761],[46.07028,35.07833],[46.07188,35.07933],[46.07217,35.08049],[46.07183,35.08107],[46.07131,35.08173],[46.07106,35.0826],[46.07125,35.08318],[46.0717,35.08375],[46.07294,35.08447],[46.0741,35.08489],[46.07656,35.08488],[46.07771,35.0853],[46.07869,35.08573],[46.07994,35.08681],[46.08118,35.08745],[46.08472,35.08815],[46.08622,35.08836],[46.08815,35.08841],[46.09027,35.0889],[46.09204,35.08925],[46.09336,35.08931],[46.09536,35.08813],[46.09579,35.08726],[46.09647,35.08595],[46.09654,35.08508],[46.09704,35.08385],[46.09737,35.08239],[46.09761,35.08138],[46.09821,35.08043],[46.09943,35.07977],[46.10065,35.07918],[46.10284,35.07858],[46.10337,35.07858],[46.10442,35.0782],[46.10661,35.07812],[46.10741,35.07811],[46.10934,35.07795],[46.11048,35.07794],[46.11164,35.07851],[46.1126,35.07814],[46.11328,35.07733],[46.11424,35.07661],[46.11555,35.07587],[46.11616,35.07564],[46.11713,35.07614],[46.11811,35.07686],[46.11892,35.07766],[46.1199,35.07823],[46.12131,35.07858],[46.12148,35.07807],[46.12254,35.07842],[46.12406,35.07943],[46.12549,35.08064],[46.128,35.08287],[46.12951,35.08358],[46.13206,35.08392],[46.13295,35.08406],[46.13462,35.08412],[46.13577,35.08425],[46.13745,35.08497],[46.14039,35.08675],[46.14146,35.08754],[46.14296,35.08782],[46.14411,35.08781],[46.14534,35.08795],[46.14711,35.08829],[46.14887,35.08828],[46.15123,35.08775],[46.1529,35.08752],[46.15501,35.0875],[46.15677,35.08756],[46.15863,35.08812],[46.1597,35.08855],[46.16131,35.08998],[46.16204,35.09114],[46.16312,35.09243],[46.16386,35.09424],[46.1645,35.09554],[46.16601,35.0964],[46.16682,35.09755],[46.16765,35.09921],[46.16872,35.1],[46.17067,35.10071],[46.17211,35.10221],[46.17398,35.10358],[46.17603,35.1045],[46.17843,35.10564],[46.1786,35.10557],[46.17987,35.10715],[46.18227,35.10843],[46.18748,35.10969],[46.18961,35.11025],[46.19095,35.11111],[46.19133,35.11262],[46.1844,35.11533],[46.18227,35.11626],[46.17892,35.11738],[46.17745,35.11833],[46.17622,35.11863],[46.17226,35.11867],[46.17022,35.11818],[46.16833,35.12059],[46.16669,35.12176],[46.16486,35.12301],[46.16225,35.12419],[46.16067,35.12493],[46.15878,35.12712],[46.15696,35.12851],[46.15557,35.12947],[46.1549,35.13025],[46.15456,35.13179],[46.15476,35.13295],[46.15586,35.13512],[46.15685,35.13641],[46.15802,35.13778],[46.16077,35.13957],[46.16107,35.14087],[46.16013,35.14175],[46.15891,35.1427],[46.15896,35.14524],[46.1593,35.14893],[46.16002,35.15008],[46.15917,35.15132],[46.15769,35.15228],[46.1562,35.15294],[46.15563,35.15491],[46.15512,35.15607],[46.15466,35.15679],[46.1551,35.15933],[46.15565,35.16085],[46.15605,35.16317],[46.15599,35.1644],[46.15636,35.16548],[46.15761,35.16612],[46.15916,35.16672],[46.16035,35.16782],[46.16137,35.16943],[46.1623,35.17003],[46.16387,35.17107],[46.16467,35.17157],[46.16566,35.17244],[46.16673,35.17329],[46.16799,35.17444],[46.16951,35.17588],[46.17104,35.17724],[46.1721,35.17767],[46.17556,35.17887],[46.17681,35.17966],[46.17956,35.1805],[46.1805,35.18068],[46.18125,35.18136],[46.1827,35.18309],[46.18456,35.18394],[46.18749,35.18478],[46.19014,35.18498],[46.19188,35.18486],[46.19341,35.1847],[46.19421,35.18458],[46.19466,35.18429],[46.19525,35.18537],[46.19562,35.18638],[46.19511,35.18711],[46.1954,35.18848],[46.1963,35.18927],[46.1973,35.19064],[46.19749,35.19173],[46.19726,35.19311],[46.19657,35.19405],[46.19555,35.19566],[46.19567,35.19718],[46.19612,35.19797],[46.19683,35.1984],[46.19897,35.19954],[46.20022,35.20011],[46.2008,35.20069],[46.20073,35.20091],[46.20084,35.20118],[46.20127,35.2013],[46.1936,35.20349],[46.19352,35.20416],[46.19389,35.20524],[46.19463,35.20726],[46.19467,35.20915],[46.19418,35.21096],[46.19326,35.21329],[46.19197,35.21504],[46.19077,35.21623],[46.18933,35.21978],[46.18708,35.22176],[46.18545,35.22369],[46.18458,35.22438],[46.18255,35.22614],[46.18127,35.22706],[46.17969,35.22809],[46.17817,35.22866],[46.17743,35.22872],[46.17688,35.22873],[46.17564,35.22833],[46.17501,35.22777],[46.17425,35.22702],[46.1737,35.22678],[46.17302,35.22668],[46.17209,35.22628],[46.17189,35.22543],[46.17076,35.22457],[46.16977,35.22413],[46.16897,35.22413],[46.16799,35.22444],[46.16722,35.22461],[46.16578,35.22467],[46.16485,35.22457],[46.16436,35.22427],[46.16367,35.22393],[46.16305,35.22352],[46.16248,35.22303],[46.16188,35.22234],[46.16069,35.22248],[46.15947,35.22325],[46.15814,35.22437],[46.15643,35.22505],[46.15502,35.22526],[46.15368,35.22593],[46.1521,35.22662],[46.14879,35.2279],[46.14701,35.22832],[46.14603,35.22853],[46.14438,35.22845],[46.13998,35.22897],[46.13707,35.22899],[46.1346,35.22894],[46.13265,35.22838],[46.1305,35.2279],[46.1285,35.22903],[46.12594,35.23037],[46.12429,35.23119],[46.12355,35.23151],[46.12365,35.2323],[46.12514,35.23356],[46.12744,35.23512],[46.12605,35.23623],[46.1237,35.23526],[46.11911,35.23262],[46.11707,35.23409],[46.11477,35.23532],[46.11343,35.23598],[46.11251,35.23918],[46.11141,35.2399],[46.10982,35.24037],[46.10883,35.2404],[46.10978,35.24158],[46.11178,35.24334],[46.11356,35.24397],[46.11506,35.24432],[46.11647,35.24453],[46.1186,35.24494],[46.12126,35.24609],[46.12287,35.24708],[46.12327,35.24818],[46.12336,35.24876],[46.12326,35.24882],[46.1238,35.24998],[46.12424,35.25114],[46.12459,35.25229],[46.12503,35.25344],[46.12562,35.25425],[46.12688,35.25486],[46.12814,35.2558],[46.12891,35.25674],[46.1296,35.25789],[46.13036,35.25857],[46.13172,35.26033],[46.13289,35.26093],[46.13431,35.26146],[46.13532,35.2622],[46.13576,35.26329],[46.13702,35.26423],[46.13845,35.26496],[46.13962,35.26563],[46.14038,35.26604],[46.14105,35.26623],[46.14156,35.26725],[46.14241,35.26833],[46.14318,35.26955],[46.14428,35.27036],[46.14513,35.2713],[46.14598,35.27232],[46.14691,35.2732],[46.14776,35.27414],[46.14778,35.27557],[46.14806,35.27706],[46.1485,35.27822],[46.14855,35.27984],[46.14971,35.28038],[46.15071,35.28078],[46.15204,35.28084],[46.15396,35.2815],[46.15563,35.28197],[46.15832,35.28371],[46.15883,35.28429],[46.15802,35.28528],[46.15662,35.2859],[46.15548,35.28686],[46.155,35.28789],[46.1537,35.28939],[46.15239,35.29036],[46.15182,35.29104],[46.15085,35.29214],[46.15054,35.2933],[46.15073,35.29479],[46.15059,35.29602],[46.15094,35.29683],[46.15145,35.29771],[46.1514,35.29927],[46.15076,35.3005],[46.14979,35.30187],[46.14908,35.30371],[46.14853,35.30542],[46.14806,35.30658],[46.14733,35.30787],[46.14679,35.30965],[46.14632,35.31129],[46.14543,35.31251],[46.14445,35.31334],[46.14283,35.31539],[46.14185,35.31594],[46.1403,35.31766],[46.13849,35.31855],[46.13776,35.31924],[46.13644,35.3202],[46.1353,35.32096],[46.13391,35.32213],[46.13301,35.32281],[46.13227,35.32356],[46.13081,35.32501],[46.12967,35.32638],[46.12844,35.32754],[46.12737,35.32768],[46.12661,35.3279],[46.12632,35.32906],[46.12633,35.33],[46.1266,35.33095],[46.12721,35.33231],[46.12747,35.33299],[46.12772,35.33401],[46.12751,35.33496],[46.12611,35.33572],[46.12471,35.33662],[46.12159,35.33827],[46.1201,35.33855],[46.11868,35.33843],[46.11694,35.33837],[46.11561,35.33852],[46.11438,35.33908],[46.11298,35.3399],[46.11109,35.34128],[46.10896,35.34293],[46.10633,35.34451],[46.10503,35.34561],[46.10297,35.34657],[46.10082,35.34713],[46.09908,35.34756],[46.09777,35.34852],[46.09663,35.34961],[46.09555,35.3501],[46.09423,35.35065],[46.0935,35.35134],[46.0928,35.35379],[46.09324,35.35501],[46.09343,35.35637],[46.09381,35.35875],[46.09316,35.35964],[46.09192,35.36026],[46.09027,35.36074],[46.08952,35.36082],[46.08919,35.36096],[46.08606,35.36207],[46.08439,35.36201],[46.08298,35.36216],[46.08175,35.36292],[46.08051,35.36333],[46.07928,35.36409],[46.07788,35.36478],[46.07672,35.36499],[46.07572,35.36507],[46.07465,35.36521],[46.07308,35.36597],[46.0726,35.36686],[46.0717,35.36755],[46.07088,35.36844],[46.06998,35.36912],[46.06875,35.37022],[46.06862,35.37122],[46.06808,35.37204],[46.06741,35.3728],[46.06615,35.37357],[46.06486,35.37521],[46.06438,35.37679],[46.06452,35.37816],[46.06387,35.37995],[46.06223,35.38169],[46.06035,35.3832],[46.05822,35.38478],[46.05658,35.38615],[46.05493,35.38705],[46.05353,35.38787],[46.05206,35.38911],[46.05133,35.39],[46.05087,35.39225],[46.04974,35.39409],[46.04869,35.39573],[46.0479,35.39791],[46.0475,35.39894],[46.04563,35.40153],[46.04213,35.40523],[46.04073,35.40632],[46.03942,35.40742],[46.03871,35.40954],[46.03857,35.41097],[46.03685,35.41247],[46.03563,35.41391],[46.035,35.41535],[46.03418,35.4163],[46.03279,35.41754],[46.03222,35.41849],[46.03158,35.41972],[46.03011,35.42116],[46.02911,35.42208],[46.02905,35.42357],[46.02922,35.42708],[46.02859,35.42926],[46.02771,35.43138],[46.02724,35.43294],[46.02578,35.43458],[46.02467,35.43605],[46.02392,35.43773],[46.02212,35.43944],[46.02048,35.44068],[46.01734,35.44179],[46.01578,35.44309],[46.01488,35.44418],[46.0139,35.44487],[46.01342,35.44603],[46.01203,35.44781],[46.01107,35.44978],[46.01002,35.45156],[46.00965,35.45381],[46.00909,35.45531],[46.00754,35.45695],[46.0059,35.45805],[46.00518,35.45982],[46.00488,35.46159],[46.00482,35.46282],[46.00439,35.46395],[46.00399,35.46574],[46.00307,35.46779],[46.00209,35.46882],[46.00077,35.46998],[45.99985,35.47085],[45.99873,35.47204],[45.9981,35.47322],[45.99715,35.4743],[45.9963,35.47592],[45.99529,35.47802],[45.99468,35.47959],[45.99367,35.48169],[45.99265,35.48314],[45.99163,35.48465],[45.99078,35.48682],[45.9897,35.48918],[45.98867,35.49037],[45.98814,35.49214],[45.98777,35.49384],[45.98653,35.49545],[45.9863,35.49599],[45.98671,35.49778],[45.98721,35.49908],[45.99327,35.51958],[45.99758,35.51787],[45.9995,35.51726],[46.0011,35.51698],[46.00391,35.51669],[46.00521,35.51714],[46.00605,35.51763],[46.00875,35.51763],[46.01207,35.51825],[46.01473,35.51882],[46.01706,35.51892],[46.01911,35.51874],[46.01648,35.52215],[46.01435,35.52375],[46.01197,35.52568],[46.01015,35.52694],[46.00936,35.528],[46.00801,35.52874],[46.00586,35.52974],[46.00411,35.53061],[46.00238,35.5324],[46.00111,35.5336],[45.99992,35.53427],[45.99895,35.53421],[45.99715,35.5343],[45.99715,35.54263],[45.9973,35.54401],[45.99856,35.54656],[45.9991,35.54791],[45.99819,35.54808],[45.99714,35.54802],[45.99594,35.54842],[45.99467,35.54949],[45.9935,35.55094],[45.99255,35.55207],[45.99137,35.55307],[45.98956,35.55525],[45.98822,35.55664],[45.98754,35.55888],[45.98652,35.56014],[45.98468,35.56075],[45.98326,35.56096],[45.98214,35.56222],[45.98152,35.56367],[45.98035,35.56526],[45.97998,35.56703],[45.97938,35.56914],[45.97744,35.57277],[45.97684,35.57514],[45.97654,35.57626],[45.97479,35.57739],[45.97345,35.57879],[45.97291,35.57978],[45.97294,35.58149],[45.97362,35.58351],[45.97354,35.58485],[45.97463,35.58554],[45.97656,35.58552],[45.97816,35.58472],[45.97927,35.58425],[45.98128,35.5839],[45.98273,35.58382],[45.98417,35.58354],[45.98545,35.58314],[45.986,35.58248],[45.98704,35.58207],[45.98888,35.58192],[45.98985,35.58191],[45.99057,35.58158],[45.99127,35.58072],[45.99222,35.58005],[45.99271,35.57958],[45.99364,35.57859],[45.99443,35.57773],[45.99546,35.577],[45.99755,35.57665],[45.99884,35.57671],[45.99981,35.57702],[46.00143,35.57766],[46.00313,35.57804],[46.0044,35.5773],[46.00542,35.57579],[46.00644,35.57479],[46.00918,35.57483],[46.0115,35.57441],[46.013,35.57319],[46.01463,35.57386],[46.01738,35.57436],[46.02085,35.57484],[46.02574,35.57414],[46.02728,35.57485],[46.02948,35.57574],[46.02994,35.57652],[46.02928,35.57831],[46.02858,35.5791],[46.02861,35.58048],[46.0284,35.58213],[46.0273,35.58338],[46.02594,35.58406],[46.02436,35.58525],[46.02383,35.58677],[46.02322,35.58888],[46.0218,35.5902],[46.02045,35.59127],[46.01798,35.59241],[46.01599,35.59322],[46.01399,35.59382],[46.013,35.59402],[46.01378,35.59534],[46.01405,35.59685],[46.01391,35.59803],[46.01316,35.6004],[46.01366,35.60158],[46.01384,35.60263],[46.01509,35.60452],[46.01601,35.60648],[46.01708,35.60759],[46.01784,35.60909],[46.01804,35.61126],[46.01736,35.61317],[46.01674,35.61436],[46.01644,35.61581],[46.01609,35.61811],[46.01515,35.61949],[46.01381,35.62102],[46.01287,35.62228],[46.01282,35.62353],[46.01316,35.6247],[46.01321,35.62694],[46.01292,35.62865],[46.01165,35.62977],[46.01103,35.6307],[46.01072,35.63149],[46.00994,35.63235],[46.00922,35.63295],[46.00802,35.63323],[46.00633,35.63324],[46.00473,35.63365],[46.00329,35.63426],[46.00184,35.63434],[46.00111,35.63415],[45.9999,35.63396],[45.99668,35.63386],[45.99395,35.63448],[45.99327,35.63541],[45.99361,35.63744],[45.99437,35.63933],[45.99493,35.64041],[45.99747,35.64108],[45.999,35.64152],[46.00022,35.64178],[46.00097,35.64302],[46.0014,35.64426],[46.00173,35.64505],[46.00318,35.6451],[46.00561,35.64579],[46.00652,35.64664],[46.00735,35.64814],[46.00865,35.64885],[46.01012,35.64956],[46.01133,35.64985],[46.01144,35.65112],[46.01115,35.6527],[46.01076,35.65402],[46.01216,35.65458],[46.01267,35.65636],[46.01312,35.65873],[46.01331,35.6601],[46.01358,35.66135],[46.01424,35.66233],[46.01483,35.66363],[46.01486,35.66482],[46.01473,35.66639],[46.01411,35.66771],[46.0135,35.66923],[46.01295,35.67009],[46.0116,35.67128],[46.01082,35.67247],[46.00915,35.67354],[46.00796,35.67421],[46.00781,35.675],[46.00771,35.67596],[46.00883,35.67735],[46.01013,35.67819],[46.0112,35.6793],[46.01292,35.68079],[46.01358,35.68131],[46.01401,35.68242],[46.01434,35.68321],[46.01548,35.68372],[46.01621,35.68391],[46.01742,35.68403],[46.018,35.68481],[46.01881,35.685],[46.01969,35.68473],[46.02113,35.68419],[46.0229,35.68418],[46.02396,35.68456],[46.02438,35.68513],[46.02576,35.68586],[46.0261,35.68683],[46.0262,35.68782],[46.02622,35.6888],[46.02584,35.69006],[46.02586,35.69084],[46.02605,35.69124],[46.02685,35.69195],[46.02879,35.69232],[46.03072,35.69224],[46.03162,35.69282],[46.03237,35.69406],[46.03216,35.69551],[46.03162,35.69677],[46.03156,35.69755],[46.03125,35.69854],[46.03103,35.69959],[46.03202,35.70057],[46.03358,35.70167],[46.03416,35.70278],[46.03467,35.70396],[46.03582,35.70519],[46.03735,35.70511],[46.03879,35.70438],[46.04072,35.70436],[46.04171,35.7052],[46.04221,35.70618],[46.04272,35.70652],[46.04407,35.70655],[46.04549,35.70496],[46.04628,35.70391],[46.04696,35.70193],[46.04772,35.70124],[46.0503,35.69992],[46.05239,35.69951],[46.05585,35.69947],[46.05836,35.70004],[46.06014,35.70042],[46.06161,35.70096],[46.06255,35.69993],[46.06323,35.69789],[46.06432,35.69597],[46.06542,35.69465],[46.06661,35.69365],[46.06787,35.69239],[46.06938,35.69152],[46.07028,35.69177],[46.07134,35.69249],[46.0732,35.69286],[46.07554,35.69316],[46.0795,35.69352],[46.08192,35.69369],[46.0833,35.694],[46.08427,35.69399],[46.0855,35.69346],[46.08716,35.69389],[46.08805,35.69369],[46.08955,35.69269],[46.09117,35.6928],[46.0919,35.69325],[46.09392,35.69363],[46.09561,35.69341],[46.09649,35.69288],[46.09744,35.69235],[46.09782,35.69129],[46.09828,35.6899],[46.09922,35.68851],[46.10009,35.68811],[46.1005,35.68763],[46.1033,35.68735],[46.1066,35.68745],[46.11146,35.68825],[46.11502,35.6888],[46.11729,35.68944],[46.11964,35.69033],[46.12207,35.69103],[46.12347,35.69239],[46.12438,35.69343],[46.12602,35.69473],[46.1286,35.69496],[46.13191,35.69499],[46.13459,35.69595],[46.13734,35.69657],[46.13905,35.69722],[46.13979,35.69767],[46.14105,35.69791],[46.1418,35.69764],[46.14275,35.69671],[46.14418,35.69578],[46.14625,35.69483],[46.14817,35.69416],[46.15161,35.69287],[46.15321,35.69266],[46.15506,35.69211],[46.15584,35.69105],[46.15798,35.68952],[46.15892,35.68852],[46.16061,35.68811],[46.16303,35.68841],[46.16466,35.68905],[46.1662,35.68956],[46.16653,35.69008],[46.16688,35.69041],[46.16753,35.69165],[46.16822,35.69348],[46.16898,35.69498],[46.16941,35.69622],[46.17032,35.69733],[46.17155,35.69817],[46.17309,35.69887],[46.17416,35.69985],[46.17419,35.70096],[46.17407,35.70287],[46.17409,35.70385],[46.17453,35.70575],[46.17496,35.7068],[46.17514,35.70772],[46.17598,35.70922],[46.17762,35.71051],[46.1795,35.71161],[46.18128,35.71192],[46.18292,35.71308],[46.18511,35.71378],[46.18762,35.71421],[46.18939,35.71425],[46.19022,35.71485],[46.19151,35.71535],[46.19218,35.71639],[46.19358,35.71788],[46.19426,35.71899],[46.19622,35.72009],[46.19834,35.72131],[46.20036,35.72181],[46.2023,35.72212],[46.20432,35.72223],[46.20586,35.72227],[46.20771,35.72245],[46.21012,35.72203],[46.21568,35.72197],[46.21758,35.72043],[46.21822,35.7199],[46.22069,35.71889],[46.22325,35.71814],[46.22558,35.71752],[46.22775,35.71743],[46.22856,35.71755],[46.2292,35.71748],[46.22994,35.71735],[46.23112,35.71686],[46.23216,35.71626],[46.233,35.71485],[46.23407,35.71505],[46.23601,35.71582],[46.23683,35.71627],[46.23838,35.71671],[46.24072,35.71714],[46.24244,35.7183],[46.243,35.71819],[46.24642,35.71983],[46.24782,35.72106],[46.24938,35.72209],[46.25004,35.72274],[46.25149,35.72387],[46.25394,35.7257],[46.25637,35.72666],[46.25904,35.72724],[46.26105,35.72819],[46.26285,35.72886],[46.26527,35.72911],[46.26793,35.72916],[46.26978,35.72895],[46.27133,35.72846],[46.27455,35.72958],[46.27714,35.73082],[46.28097,35.73342],[46.28373,35.73412],[46.28647,35.73411],[46.28827,35.73402],[46.28834,35.7373],[46.28804,35.7392],[46.28654,35.74111],[46.28355,35.74513],[46.28613,35.7461],[46.28905,35.74734],[46.29067,35.74798],[46.29537,35.74959],[46.29643,35.75011],[46.29837,35.75036],[46.29951,35.75128],[46.30081,35.75206],[46.30245,35.75355],[46.30296,35.75545],[46.30298,35.75683],[46.30389,35.75808],[46.30398,35.75867],[46.30391,35.75965],[46.30433,35.76096],[46.30475,35.76174],[46.30577,35.76208],[46.30717,35.76206],[46.30878,35.76172],[46.31048,35.76197],[46.31178,35.76255],[46.31259,35.76288],[46.31468,35.76254],[46.31677,35.762],[46.31902,35.76159],[46.32072,35.76178],[46.32137,35.76223],[46.32226,35.76269],[46.32363,35.76268],[46.32492,35.76234],[46.32685,35.76213],[46.32855,35.76265],[46.32993,35.76297],[46.33106,35.76316],[46.33244,35.76319],[46.33387,35.76377],[46.33376,35.76907],[46.33845,35.77382],[46.33754,35.78053],[46.34603,35.78727],[46.34421,35.80376],[46.33987,35.81367],[46.34102,35.81913],[46.32969,35.8184],[46.31561,35.81879],[46.30805,35.82652],[46.30116,35.8275],[46.29907,35.83391],[46.29423,35.83504],[46.2887,35.8345],[46.28788,35.82621],[46.28053,35.81986],[46.27456,35.81686],[46.26853,35.81376],[46.26538,35.81423],[46.25978,35.81127],[46.25281,35.81291],[46.24652,35.80982],[46.23922,35.81303],[46.23492,35.81389],[46.23113,35.81283],[46.22175,35.80048],[46.21655,35.79956],[46.21134,35.79419],[46.20299,35.7996],[46.19521,35.80038],[46.19259,35.80659],[46.1846,35.81232],[46.17627,35.80664],[46.17549,35.80151],[46.16766,35.80006],[46.15516,35.80574],[46.1454,35.81643],[46.13661,35.82439],[46.13536,35.83679],[46.13892,35.83863],[46.13669,35.84373],[46.12072,35.84494],[46.1075,35.84837],[46.102,35.84874],[46.09238,35.85728],[46.08172,35.85692],[46.08137,35.85878],[46.06844,35.85647],[46.05689,35.85528],[46.04821,35.85066],[46.04458,35.84531],[46.04075,35.8452],[46.03349,35.83869],[46.02211,35.83496],[46.01505,35.83785],[46.00592,35.83657],[46.0021,35.83417],[45.98522,35.84011],[45.97826,35.83418],[45.97519,35.83448],[45.97144,35.83812],[45.96462,35.84429],[45.9602,35.83514],[45.95647,35.83602],[45.95598,35.82338],[45.95155,35.82261],[45.94888,35.82551],[45.94216,35.8252],[45.93948,35.82365],[45.93269,35.82488],[45.93215,35.8279],[45.92381,35.83109],[45.91331,35.83245],[45.90535,35.83628],[45.89631,35.83726],[45.8892,35.83477],[45.88735,35.83257],[45.88227,35.83095],[45.87967,35.81269],[45.87446,35.81125],[45.86877,35.81526],[45.8617,35.81983],[45.84949,35.81549],[45.83109,35.81003],[45.82014,35.81798],[45.80027,35.82704],[45.79691,35.81343],[45.77991,35.8107],[45.77335,35.8136],[45.77092,35.80508],[45.76437,35.79935],[45.76062,35.80517],[45.7555,35.80822],[45.75589,35.81346],[45.74707,35.82619],[45.73904,35.8277],[45.73883,35.83879],[45.73451,35.84432],[45.72915,35.84706],[45.72517,35.85259],[45.72366,35.86078],[45.71656,35.86168],[45.71679,35.86658],[45.71496,35.8687],[45.71724,35.87273],[45.713,35.87983],[45.70533,35.88525],[45.69799,35.88523],[45.69551,35.88716],[45.69509,35.89187],[45.69838,35.89462],[45.69328,35.90067],[45.68034,35.89774],[45.67765,35.90295],[45.67564,35.9065],[45.67123,35.91338],[45.67094,35.91581],[45.66846,35.92417],[45.6528,35.93591],[45.6484,35.93488],[45.63959,35.94395],[45.62736,35.94662],[45.62227,35.95768],[45.61835,35.95599],[45.61021,35.95764],[45.6082,35.96069],[45.60413,35.95763],[45.59476,35.96632],[45.59586,35.97247],[45.5916,35.97416],[45.59009,35.97696],[45.58541,35.97705],[45.58705,35.97223],[45.58208,35.97148],[45.57557,35.97608],[45.57558,35.98152],[45.57148,35.98307],[45.56361,35.98978],[45.55506,35.99816],[45.54969,36.00112],[45.54374,35.99894],[45.5371,35.99787],[45.53081,35.99542],[45.52177,35.99463],[45.51536,35.99624],[45.50621,35.99897],[45.5053,36.00265],[45.49782,36.00173],[45.49034,36.00247],[45.48355,36.00072],[45.4795,36.0023],[45.46678,35.99588],[45.4611,35.99572],[45.45487,35.98901],[45.45277,35.99453],[45.44032,35.99945],[45.43241,35.99475],[45.43327,35.99129],[45.43163,35.99039],[45.42704,35.98549],[45.42039,35.98171],[45.41382,35.98348],[45.41186,35.98225],[45.41075,35.98061],[45.40771,35.98028],[45.40777,35.97927],[45.40954,35.97728],[45.40857,35.97598],[45.40639,35.9758],[45.4051,35.97419],[45.40783,35.97055],[45.40592,35.96981],[45.40313,35.97055],[45.39819,35.97018],[45.39308,35.96772],[45.3894,35.97205],[45.3816,35.97465],[45.37457,35.96998],[45.37357,35.97356],[45.37625,35.97613],[45.37344,35.98287],[45.36645,35.98162],[45.36396,35.98287],[45.36242,35.97981],[45.36603,35.97621],[45.36638,35.97371],[45.36261,35.9747],[45.36115,35.97623],[45.35764,35.97568],[45.35594,35.97354],[45.35105,35.97637],[45.34788,35.97933],[45.34717,35.98267],[45.35091,35.9874],[45.34244,35.99713],[45.34564,36.00187],[45.34198,36.00383],[45.34329,36.00697],[45.34203,36.00761],[45.34642,36.0147],[45.35287,36.01957],[45.35142,36.02444],[45.35135,36.02764],[45.35438,36.03432],[45.36035,36.03794],[45.36359,36.04267],[45.3717,36.05048],[45.37433,36.06218],[45.37873,36.07136],[45.37716,36.07567],[45.38245,36.07943],[45.37935,36.08728],[45.37471,36.0937],[45.37007,36.09901],[45.37006,36.10472],[45.3563,36.10905],[45.35011,36.10838],[45.34458,36.12091],[45.34113,36.12218],[45.34042,36.13011],[45.33717,36.13375],[45.32979,36.13684],[45.32706,36.13996],[45.32776,36.1453],[45.32434,36.14898],[45.3292,36.15648],[45.32796,36.15761],[45.32502,36.16386],[45.32576,36.16581],[45.32496,36.16735],[45.32035,36.16762],[45.32341,36.17805],[45.32067,36.18251],[45.3164,36.1835],[45.31831,36.18521],[45.32665,36.19038],[45.32293,36.19214],[45.32381,36.19495],[45.32813,36.19555],[45.33657,36.20367],[45.33182,36.20924],[45.32912,36.2148],[45.32261,36.21626],[45.32091,36.21938],[45.31475,36.22175],[45.3134,36.22744],[45.31549,36.2298],[45.31295,36.23793],[45.30256,36.23995],[45.29218,36.24142],[45.2776,36.24519],[45.2656,36.25328],[45.27715,36.26181],[45.28801,36.26757],[45.29475,36.26946],[45.30012,36.26802],[45.3009,36.27248],[45.30443,36.27362],[45.29222,36.28358],[45.28413,36.28799],[45.27517,36.29766],[45.26753,36.29542],[45.26189,36.30088],[45.2616,36.30655],[45.26475,36.31056],[45.26418,36.31415],[45.26786,36.32023],[45.26627,36.32409],[45.271,36.32295],[45.27333,36.33122],[45.27929,36.33424],[45.284,36.33603],[45.28252,36.34114],[45.27668,36.34234],[45.27497,36.34464],[45.27618,36.35081],[45.27189,36.35422],[45.27121,36.35955],[45.27536,36.36689],[45.26923,36.37108],[45.27002,36.37392],[45.27745,36.37618],[45.27361,36.38255],[45.27115,36.38893],[45.27228,36.39288],[45.26468,36.39595],[45.25844,36.40178],[45.25422,36.40239],[45.25024,36.40692],[45.25223,36.41433],[45.24155,36.41872],[45.24255,36.42423],[45.23767,36.43357],[45.23094,36.43266],[45.22489,36.42872],[45.21899,36.42967],[45.20786,36.4244],[45.19658,36.42379],[45.18724,36.42226],[45.17927,36.41796],[45.16883,36.41876],[45.15481,36.4165],[45.1532,36.40492],[45.14353,36.40507],[45.13767,36.40762],[45.12905,36.40521],[45.12247,36.40784],[45.11452,36.4055],[45.1089,36.41144],[45.10397,36.4135],[45.1044,36.41598],[45.09154,36.42258],[45.08779,36.42199],[45.08236,36.42521],[45.081,36.42867],[45.07826,36.43131],[45.07623,36.43824],[45.07935,36.44489],[45.0756,36.45431],[45.07179,36.46043],[45.06181,36.4627],[45.05794,36.47258],[45.05956,36.47528],[45.05457,36.48235],[45.05541,36.49411],[45.05351,36.50642],[45.04271,36.51165],[45.03808,36.51025],[45.03192,36.51451],[45.02712,36.51491],[45.02028,36.51708],[45.01275,36.51926],[45.0066,36.52695],[45.0049,36.533],[45.00182,36.5374],[45.00682,36.5462],[45.00496,36.55113],[45.01104,36.55437],[45.01574,36.55762],[45.02171,36.55694],[45.03778,36.56055],[45.03892,36.57016],[45.03937,36.58034],[45.03351,36.58287],[45.02833,36.58817],[45.02634,36.59681],[45.0271,36.60379],[45.03136,36.60785],[45.04074,36.60755],[45.04669,36.6111],[45.05298,36.61604],[45.06304,36.61408],[45.06667,36.62334],[45.06994,36.62956],[45.07021,36.63619],[45.06773,36.64336],[45.071,36.64339],[45.07207,36.65253],[45.06993,36.65826],[45.06779,36.66454],[45.0693,36.67415],[45.06531,36.68211],[45.06626,36.68812],[45.06053,36.69675],[45.05548,36.70373],[45.0494,36.71099],[45.04607,36.71715],[45.04112,36.7201],[45.04071,36.72351],[45.03158,36.73016],[45.0324,36.73654],[45.03054,36.74045],[45.02354,36.74353],[45.01809,36.7443],[45.01677,36.74617],[45.01207,36.74661],[45.01296,36.75244],[45.00726,36.75505],[45.00087,36.75271],[44.99772,36.75326],[44.98934,36.74776],[44.97347,36.74848],[44.96927,36.75141],[44.96567,36.75973],[44.95711,36.77307],[44.95308,36.77544],[44.94768,36.78056],[44.93962,36.78641],[44.9338,36.7849],[44.93025,36.78021],[44.92293,36.77635],[44.91171,36.77689],[44.9043,36.77839],[44.89585,36.77935],[44.89065,36.78235],[44.88354,36.78229],[44.87963,36.7805],[44.86508,36.77954],[44.8578,36.77218],[44.85244,36.77621],[44.84434,36.77858],[44.84451,36.78363],[44.84047,36.78918],[44.83713,36.79693],[44.83764,36.80199],[44.83746,36.80759],[44.83951,36.80911],[44.8388,36.81599],[44.84676,36.82417],[44.85334,36.8307],[44.8593,36.83222],[44.8664,36.83251],[44.86136,36.8376],[44.86114,36.84489],[44.87167,36.84607],[44.87671,36.84944],[44.88249,36.85208],[44.89033,36.85363],[44.89645,36.85436],[44.90189,36.85783],[44.90308,36.86191],[44.90253,36.86732],[44.90403,36.87274],[44.90085,36.87533],[44.906,36.88161],[44.90445,36.8842],[44.90848,36.89291],[44.91119,36.89424],[44.91281,36.89819],[44.91238,36.90487],[44.90876,36.90946],[44.91167,36.91268],[44.91244,36.91703],[44.91114,36.92194],[44.90445,36.92588],[44.89912,36.93368],[44.90015,36.93773],[44.89669,36.94463],[44.885,36.94632],[44.88499,36.9521],[44.88154,36.95404],[44.88445,36.96136],[44.88873,36.96649],[44.88923,36.97408],[44.89248,36.98004],[44.89417,36.98782],[44.89586,36.99835],[44.90062,37.00351],[44.90469,37.00373],[44.90587,37.00735],[44.90166,37.01423],[44.90019,37.02276],[44.89597,37.02554],[44.8945,37.02831],[44.88712,37.03075],[44.88318,37.0299],[44.87958,37.03098],[44.87392,37.03205],[44.86913,37.03196],[44.85682,37.03725],[44.8585,37.04374],[44.85331,37.04803],[44.84843,37.04675],[44.84278,37.04857],[44.83233,37.04519],[44.8247,37.04268],[44.81708,37.03962],[44.81283,37.04359],[44.80994,37.04502],[44.8074,37.04411],[44.80683,37.04642],[44.80205,37.04812],[44.80346,37.05639],[44.79911,37.06665],[44.78275,37.0758],[44.77737,37.0762],[44.77724,37.08503],[44.78398,37.08948],[44.78371,37.09181],[44.77795,37.09605],[44.77494,37.09646],[44.76633,37.09919],[44.76285,37.1052],[44.74969,37.11229],[44.75032,37.11519],[44.74752,37.11973],[44.75262,37.12495],[44.75585,37.1251],[44.7639,37.12908],[44.76447,37.13651],[44.77232,37.13914],[44.78016,37.14231],[44.78479,37.14466],[44.78598,37.14866],[44.78356,37.15664],[44.78559,37.15949],[44.78453,37.1637],[44.78622,37.16681],[44.77993,37.17381],[44.77214,37.17795],[44.771,37.18021],[44.76595,37.18364],[44.76822,37.19324],[44.76615,37.19943],[44.76133,37.20507],[44.76026,37.2169],[44.7626,37.22307],[44.75842,37.22623],[44.75766,37.22885],[44.76057,37.23475],[44.76657,37.23874],[44.76895,37.24508],[44.78676,37.25667],[44.79652,37.25714],[44.80136,37.25998],[44.80209,37.26502],[44.80281,37.26978],[44.8056,37.27181],[44.81295,37.27528],[44.81551,37.27985],[44.81048,37.28906],[44.80478,37.29992],[44.80078,37.30395],[44.79816,37.31016],[44.79202,37.31359],[44.78656,37.31757],[44.77634,37.32279],[44.77374,37.32668],[44.76649,37.32983],[44.75408,37.33051],[44.74919,37.33381],[44.74223,37.33492],[44.73861,37.33987],[44.72538,37.34454],[44.71967,37.34571],[44.71602,37.34852],[44.71559,37.35249],[44.7255,37.35332],[44.72462,37.35782],[44.7204,37.36062],[44.72173,37.36748],[44.72136,37.37227],[44.72305,37.37488],[44.71622,37.37699],[44.71008,37.38073],[44.7029,37.38092],[44.69847,37.3833],[44.68797,37.38517],[44.68331,37.38213],[44.67549,37.3847],[44.66883,37.38326],[44.6553,37.38618],[44.65313,37.39257],[44.65539,37.39823],[44.65717,37.40082],[44.65207,37.40278],[44.64423,37.40856],[44.63334,37.41903],[44.63698,37.4236],[44.63203,37.43171],[44.62777,37.4322],[44.61874,37.43725],[44.60701,37.43623],[44.60012,37.4379],[44.59289,37.43846],[44.58773,37.43957],[44.57927,37.4475],[44.5861,37.45174],[44.58789,37.46051],[44.58626,37.46656],[44.58634,37.4767],[44.5823,37.48302],[44.58418,37.49675],[44.58605,37.50885],[44.5939,37.51147],[44.60107,37.51355],[44.60162,37.52527],[44.60491,37.52936],[44.60806,37.53973],[44.61293,37.5452],[44.61262,37.54957],[44.60739,37.5493],[44.60148,37.55338],[44.60277,37.55992],[44.61235,37.56237],[44.61368,37.56536],[44.60868,37.57002],[44.61236,37.57153],[44.60734,37.57609],[44.60242,37.5762],[44.59819,37.58011],[44.60556,37.58455],[44.61087,37.5879],[44.61206,37.59533],[44.61462,37.60167],[44.60894,37.60754],[44.60669,37.61124],[44.59945,37.61781],[44.59527,37.61574],[44.58614,37.62816],[44.58044,37.63732],[44.57316,37.63769],[44.56672,37.6419],[44.57387,37.65682],[44.57384,37.66577],[44.5896,37.67119],[44.59222,37.67729],[44.59108,37.68175],[44.59885,37.68405],[44.608,37.69015],[44.61714,37.69905],[44.62628,37.70742],[44.62233,37.71821],[44.62044,37.72792],[44.61581,37.73155],[44.61117,37.73247],[44.60654,37.73881],[44.60327,37.74027],[44.60108,37.74421],[44.59478,37.74815],[44.58628,37.76471],[44.57748,37.76573],[44.56947,37.76895],[44.56422,37.77109],[44.56344,37.77476],[44.55726,37.78046],[44.54352,37.78141],[44.5291,37.78291],[44.52138,37.78074],[44.51786,37.77721],[44.51434,37.77586],[44.49803,37.77369],[44.49408,37.77043],[44.48,37.77233],[44.47211,37.76392],[44.45785,37.76719],[44.45107,37.76854],[44.44498,37.77099],[44.44352,37.77737],[44.45029,37.78484],[44.4478,37.79691],[44.44806,37.80682],[44.43209,37.79897],[44.42436,37.79926],[44.42186,37.80446],[44.41697,37.8064],[44.41404,37.81571],[44.4064,37.81942],[44.39601,37.8215],[44.39171,37.82783],[44.39635,37.83767],[44.40441,37.84127],[44.40561,37.84569],[44.40337,37.85119],[44.39535,37.85709],[44.38801,37.86245],[44.37724,37.86442],[44.36234,37.86259],[44.34865,37.86673],[44.3384,37.87032],[44.33299,37.87426],[44.31748,37.87742],[44.31008,37.87006],[44.30232,37.86811],[44.29295,37.86712],[44.28838,37.87263],[44.28312,37.87271],[44.27415,37.87018],[44.26724,37.86764],[44.25859,37.86949],[44.25097,37.87621],[44.24638,37.87449],[44.24082,37.87891],[44.2387,37.88442],[44.23279,37.88505],[44.22209,37.88839],[44.22647,37.89282],[44.23292,37.89995],[44.22453,37.90664],[44.22707,37.91021],[44.23167,37.9127],[44.22919,37.91767],[44.23426,37.91993],[44.2359,37.92707],[44.24296,37.92915],[44.24718,37.93182],[44.24659,37.93719],[44.25109,37.94299],[44.24843,37.95107],[44.24332,37.95158],[44.24027,37.95535],[44.24129,37.96437],[44.24914,37.97042],[44.25493,37.97593],[44.25456,37.97976],[44.25969,37.98414],[44.26104,37.98879],[44.26789,37.99452],[44.26706,37.99963],[44.26898,38.00853],[44.27571,38.01635],[44.28175,38.02147],[44.28668,38.02137],[44.29333,38.02803],[44.30135,38.03252],[44.30455,38.03771],[44.30912,38.04614],[44.30556,38.04679],[44.30118,38.05456],[44.31221,38.05871],[44.32049,38.06287],[44.31989,38.06902],[44.31148,38.06808],[44.31199,38.07308],[44.31714,38.07416],[44.32161,38.07849],[44.32796,38.07768],[44.32873,38.08539],[44.33225,38.0893],[44.32864,38.09525],[44.32916,38.0985],[44.33534,38.09824],[44.35387,38.10554],[44.36211,38.10312],[44.36486,38.10448],[44.35842,38.11375],[44.35953,38.12357],[44.35446,38.12704],[44.34939,38.13105],[44.35145,38.13465],[44.36055,38.13528],[44.36827,38.13537],[44.37067,38.13825],[44.37994,38.13844],[44.38578,38.14456],[44.39264,38.14654],[44.39114,38.15321],[44.39553,38.15978],[44.39121,38.16496],[44.39169,38.16852],[44.39654,38.17222],[44.4,38.18351],[44.39727,38.18995],[44.40087,38.19396],[44.39772,38.19836],[44.39923,38.20163],[44.40212,38.20168],[44.40772,38.2143],[44.41126,38.21991],[44.40769,38.22655],[44.4055,38.23372],[44.39812,38.23814],[44.39949,38.24325],[44.40155,38.24633],[44.40224,38.25158],[44.4073,38.25414],[44.41305,38.25669],[44.41357,38.26126],[44.42267,38.26772],[44.42859,38.2696],[44.43314,38.26879],[44.43974,38.27483],[44.44841,38.28303],[44.45476,38.28434],[44.46034,38.28943],[44.46935,38.29453],[44.47287,38.29504],[44.47845,38.30202],[44.49201,38.30237],[44.49871,38.30973],[44.49665,38.31754],[44.49939,38.32159],[44.49665,38.32982],[44.49733,38.33373],[44.51038,38.33592],[44.51213,38.34093],[44.50976,38.34595],[44.50021,38.34575],[44.49553,38.34373],[44.49373,38.34615],[44.49913,38.35073],[44.48982,38.35787],[44.48371,38.35831],[44.47761,38.35767],[44.47295,38.35477],[44.47029,38.35841],[44.46282,38.35936],[44.46201,38.36494],[44.45913,38.36945],[44.45684,38.37427],[44.45179,38.378],[44.44857,38.38547],[44.43952,38.38357],[44.43056,38.37663],[44.41817,38.37024],[44.40303,38.36572],[44.40026,38.36724],[44.39133,38.36369],[44.38789,38.36266],[44.38446,38.35895],[44.37828,38.35798],[44.37281,38.36262],[44.36974,38.36888],[44.36564,38.36948],[44.36224,38.37547],[44.35684,38.3752],[44.35154,38.36926],[44.34212,38.37141],[44.335,38.36952],[44.32561,38.37019],[44.31473,38.37537],[44.31033,38.382],[44.30709,38.38908],[44.30042,38.39455],[44.31041,38.39536],[44.313,38.40438],[44.31902,38.40855],[44.31645,38.41771],[44.31664,38.42524],[44.3177,38.43225],[44.30573,38.44034],[44.3027,38.44682],[44.31061,38.45198],[44.30959,38.45823],[44.31374,38.46426],[44.3131,38.47739],[44.32243,38.48381],[44.32304,38.48784],[44.31991,38.492],[44.31885,38.49508],[44.32358,38.49938],[44.32488,38.50313],[44.32193,38.50544],[44.32104,38.51151],[44.31513,38.51505],[44.31266,38.52342],[44.30881,38.53018],[44.31038,38.53539],[44.31265,38.53898],[44.31305,38.54669],[44.31621,38.54743],[44.31645,38.55251],[44.31327,38.55599],[44.31352,38.56322],[44.31795,38.57391],[44.32272,38.57547],[44.32475,38.57811],[44.32476,38.5809],[44.32271,38.58638],[44.32342,38.58928],[44.31865,38.59884],[44.32079,38.60079],[44.31751,38.60791],[44.32194,38.60821],[44.32119,38.62328],[44.31399,38.62991],[44.30748,38.63599],[44.2917,38.64011],[44.28433,38.64083],[44.27284,38.64531],[44.26977,38.6505],[44.27126,38.65486],[44.27894,38.65707],[44.28146,38.66304],[44.27986,38.66793],[44.28239,38.67517],[44.27635,38.68],[44.27236,38.68482],[44.27275,38.69019],[44.26902,38.69823],[44.27117,38.70306],[44.26689,38.70496],[44.26123,38.70418],[44.26091,38.71494],[44.25457,38.71737],[44.25509,38.71981],[44.26372,38.71923],[44.26795,38.72314],[44.27424,38.72813],[44.28087,38.73311],[44.27995,38.73595],[44.27674,38.74003],[44.27695,38.74518],[44.28701,38.75361],[44.28815,38.75853],[44.29203,38.76398],[44.29192,38.76724],[44.28905,38.77051],[44.291,38.77538],[44.28991,38.77968],[44.28676,38.78292],[44.28979,38.78605],[44.29968,38.79133],[44.30236,38.80249],[44.31297,38.80566],[44.31465,38.80776],[44.30683,38.81617],[44.30326,38.82332],[44.29626,38.82672],[44.30183,38.83995],[44.29258,38.84285],[44.28264,38.84736],[44.27787,38.85478],[44.26669,38.85235],[44.25757,38.84778],[44.24592,38.85098],[44.24113,38.85793],[44.24448,38.86394],[44.24577,38.86942],[44.2408,38.87183],[44.23499,38.87824],[44.22911,38.88211],[44.2198,38.88599],[44.21149,38.88999],[44.21065,38.89801],[44.21564,38.90282],[44.21927,38.90442],[44.2204,38.90996],[44.21879,38.91764],[44.21145,38.92178],[44.19882,38.92258],[44.19675,38.93038],[44.18988,38.9339],[44.19554,38.93954],[44.19983,38.94518],[44.20017,38.9495],[44.19764,38.9508],[44.19047,38.95196],[44.18386,38.95575],[44.18231,38.9552],[44.18007,38.95653],[44.18151,38.96058],[44.18448,38.96544],[44.18819,38.96759],[44.18657,38.97148],[44.18826,38.97425],[44.19177,38.9747],[44.18755,38.97835],[44.18938,38.98069],[44.18189,38.98463],[44.17165,38.99018],[44.17529,39.00146],[44.18236,39.01168],[44.191,39.00996],[44.20308,39.01706],[44.21242,39.02148],[44.20501,39.03053],[44.19623,39.03799],[44.19378,39.04436],[44.20639,39.0555],[44.1953,39.06611],[44.19109,39.07512],[44.19825,39.08669],[44.20541,39.08973],[44.21081,39.08835],[44.21998,39.0915],[44.22709,39.09571],[44.22355,39.10298],[44.21869,39.10394],[44.21657,39.10758],[44.20743,39.11465],[44.21081,39.12145],[44.21351,39.13038],[44.20769,39.13761],[44.20119,39.14058],[44.19554,39.15074],[44.19066,39.15342],[44.18921,39.15877],[44.17894,39.16897],[44.16594,39.17703],[44.15305,39.18146],[44.14291,39.18588],[44.13602,39.18275],[44.12512,39.1858],[44.11215,39.19097],[44.10922,39.20025],[44.09718,39.20497],[44.09439,39.21709],[44.10132,39.22434],[44.09864,39.22733],[44.10151,39.23173],[44.10314,39.24318],[44.08897,39.24786],[44.0858,39.25652],[44.09142,39.26244],[44.09086,39.26888],[44.09455,39.27593],[44.10124,39.27674],[44.10708,39.28474],[44.10226,39.28957],[44.0899,39.29055],[44.07925,39.29632],[44.07753,39.30558],[44.07856,39.31165],[44.0789,39.31825],[44.07924,39.32432],[44.07499,39.33338],[44.0625,39.34296],[44.05674,39.34354],[44.05621,39.35532],[44.03766,39.3614],[44.0374,39.3663],[44.03199,39.37147],[44.03387,39.37729],[44.03919,39.37964],[44.04176,39.38359],[44.05444,39.38875],[44.05783,39.3858],[44.0518,39.39772],[44.05229,39.40486],[44.07069,39.41247],[44.08423,39.4077],[44.09538,39.41228],[44.1182,39.40174],[44.13054,39.40559],[44.13292,39.39884],[44.12412,39.38983],[44.13111,39.39038],[44.14482,39.39904],[44.15991,39.40239],[44.17535,39.40062],[44.18804,39.40204],[44.1942,39.41017],[44.21196,39.41723],[44.2243,39.41548],[44.23801,39.41373],[44.24758,39.39908],[44.26744,39.3993],[44.276,39.38295],[44.28868,39.37829],[44.2955,39.37732],[44.30644,39.38165],[44.32008,39.39139],[44.33362,39.38858],[44.35608,39.39956],[44.37992,39.41161],[44.4015,39.41368],[44.42172,39.41204],[44.42698,39.42914],[44.43225,39.43988],[44.42549,39.44781],[44.42009,39.46527],[44.41682,39.46666],[44.41371,39.46831],[44.41137,39.46949],[44.40835,39.47121],[44.4088,39.47303],[44.41042,39.47442],[44.41239,39.47515],[44.41608,39.48276],[44.41856,39.48614],[44.42707,39.48903],[44.43344,39.49292],[44.43388,39.49589],[44.43964,39.50111],[44.43776,39.50229],[44.44034,39.50506],[44.43845,39.50856],[44.43295,39.50913],[44.43294,39.51724],[44.43636,39.52008],[44.4312,39.52414],[44.42947,39.52927],[44.42534,39.53264],[44.42503,39.5375],[44.42679,39.53866],[44.42631,39.54021],[44.42687,39.54335],[44.42334,39.54791],[44.42393,39.54903],[44.42065,39.55141],[44.41953,39.55379],[44.41566,39.55484],[44.41753,39.55841],[44.42043,39.56092],[44.42452,39.56567],[44.42205,39.56749],[44.43478,39.57191],[44.44063,39.57262],[44.44669,39.57741],[44.46615,39.60071],[44.47998,39.61029],[44.48813,39.64269],[44.48425,39.64627],[44.48515,39.65153],[44.48433,39.65547],[44.48407,39.66545],[44.48295,39.66672],[44.48286,39.67036],[44.47631,39.67469],[44.47424,39.67943],[44.46702,39.68443],[44.47221,39.68691],[44.48013,39.69224],[44.48633,39.6952],[44.4926,39.70094],[44.61327,39.78175],[44.6162,39.77932],[44.62162,39.76992],[44.62154,39.76633],[44.62345,39.76561],[44.62401,39.76332],[44.62521,39.76252],[44.6265,39.76199],[44.6266,39.76153],[44.62636,39.76108],[44.6259,39.76083],[44.62596,39.76017],[44.62756,39.75948],[44.62718,39.75882],[44.62751,39.75854],[44.62849,39.759],[44.62947,39.75912],[44.63056,39.75889],[44.63106,39.75815],[44.62967,39.75642],[44.63037,39.75578],[44.63236,39.75607],[44.63263,39.75349],[44.63117,39.75272],[44.63119,39.75214],[44.63172,39.75175],[44.63137,39.75035],[44.63025,39.74865],[44.62947,39.74668],[44.63141,39.74404],[44.63472,39.74325],[44.63654,39.74113],[44.6388,39.74085],[44.6416,39.73872],[44.6408,39.73691],[44.64332,39.73522],[44.64172,39.73405],[44.64401,39.73264],[44.64561,39.73149],[44.6479,39.72769],[44.65248,39.72748],[44.65657,39.725],[44.65997,39.72146],[44.66098,39.7207],[44.66198,39.71861],[44.66559,39.71705],[44.66818,39.7147],[44.67668,39.71466],[44.68519,39.71514],[44.68969,39.71788],[44.69079,39.71648],[44.68761,39.7135],[44.69305,39.7132],[44.69647,39.7124],[44.70264,39.71027],[44.70314,39.71185],[44.70631,39.71303],[44.7103,39.71349],[44.71298,39.71465],[44.71498,39.71448],[44.71446,39.71196],[44.71711,39.70911],[44.71943,39.70758],[44.72113,39.70755],[44.72523,39.70563],[44.72827,39.70259],[44.72719,39.70021],[44.73026,39.69836],[44.73196,39.69704],[44.73435,39.69413],[44.73834,39.69314],[44.74164,39.69373],[44.74406,39.6898],[44.74923,39.68772],[44.75234,39.68273],[44.75372,39.68156],[44.75424,39.6782],[44.75724,39.67718],[44.75853,39.6759],[44.75853,39.6735],[44.75767,39.6715],[44.75389,39.67292],[44.75459,39.67073],[44.75846,39.66992],[44.76174,39.67055],[44.76191,39.66918],[44.7607,39.66808],[44.76377,39.66529],[44.76803,39.66552],[44.77049,39.66357],[44.7702,39.66123],[44.77749,39.65991],[44.78585,39.65482],[44.78804,39.65185],[44.7985,39.64841],[44.80373,39.64167],[44.80291,39.63196],[44.8069,39.62859]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:EP:**Iran#YA:**Afghanistan","itu_zone_number":40,"itu_zone_name_loc":[32,56]},"geometry":{"type":"Polygon","coordinates":[[[60,24],[57.35314,25.2439],[56.44213,26.57008],[54.35644,25.55673],[51.08593,27.41514],[48.61398,29.9301],[48.58453,29.94523],[48.51556,29.96008],[48.45689,29.99635],[48.44801,30.0121],[48.44734,30.03751],[48.44393,30.0647],[48.43027,30.08312],[48.40434,30.10094],[48.37909,30.12174],[48.38363,30.13332],[48.3923,30.14135],[48.40885,30.15917],[48.41855,30.17937],[48.412,30.19722],[48.37662,30.22709],[48.34399,30.25934],[48.30965,30.29751],[48.27187,30.33568],[48.25926,30.3393],[48.24734,30.33996],[48.24125,30.33587],[48.23791,30.33001],[48.2278,30.32065],[48.21494,30.31485],[48.20654,30.31691],[48.19952,30.32074],[48.19303,30.33196],[48.18279,30.37986],[48.18148,30.39755],[48.16616,30.42434],[48.16045,30.42862],[48.13495,30.44312],[48.10915,30.45058],[48.10808,30.4542],[48.0715,30.46114],[48.04428,30.47416],[48.02565,30.478],[48.02983,30.73794],[48.0323,30.99642],[47.68271,30.99754],[47.68322,31.39389],[47.8662,31.78351],[47.85609,31.80479],[47.85666,31.80652],[47.8567,31.80774],[47.85658,31.80909],[47.85662,31.81044],[47.85617,31.81126],[47.8562,31.8122],[47.8561,31.81396],[47.85615,31.81544],[47.85554,31.81627],[47.85525,31.81722],[47.8548,31.81776],[47.85403,31.81845],[47.85247,31.81942],[47.85108,31.82026],[47.84795,31.82153],[47.84669,31.82169],[47.84576,31.82224],[47.84529,31.82239],[47.84466,31.82267],[47.84359,31.82257],[47.82526,31.83257],[47.82492,31.83394],[47.82525,31.83448],[47.82531,31.8365],[47.82516,31.83691],[47.82471,31.83759],[47.82394,31.83814],[47.82272,31.83951],[47.82194,31.84007],[47.82164,31.84048],[47.82136,31.84069],[47.82102,31.84103],[47.82106,31.84096],[47.82034,31.84084],[47.81998,31.84035],[47.81879,31.84039],[47.81815,31.84013],[47.81751,31.84001],[47.81671,31.83989],[47.81592,31.84004],[47.81547,31.84059],[47.81471,31.84168],[47.81456,31.84209],[47.81411,31.84263],[47.81348,31.84305],[47.81286,31.84319],[47.81191,31.84321],[47.81113,31.84349],[47.8097,31.84352],[47.80876,31.84367],[47.80784,31.84342],[47.80704,31.84309],[47.80637,31.84257],[47.8059,31.84331],[47.80595,31.84493],[47.80612,31.84534],[47.80645,31.84587],[47.80631,31.84655],[47.80569,31.8471],[47.80543,31.84886],[47.80531,31.85007],[47.80485,31.85062],[47.80425,31.85158],[47.80302,31.85268],[47.80241,31.85364],[47.80196,31.85432],[47.8012,31.85528],[47.79998,31.8559],[47.79984,31.85746],[47.79991,31.85989],[47.79981,31.86151],[47.79983,31.86232],[47.80017,31.86312],[47.80036,31.8642],[47.80039,31.86488],[47.80024,31.86542],[47.80057,31.86582],[47.8006,31.86663],[47.80003,31.86731],[47.79933,31.8678],[47.79804,31.86813],[47.79817,31.86883],[47.79863,31.8695],[47.79959,31.86988],[47.80149,31.86985],[47.80276,31.86997],[47.80387,31.86995],[47.80516,31.87074],[47.80599,31.87194],[47.80617,31.87261],[47.80651,31.87355],[47.80685,31.87408],[47.80766,31.87488],[47.80862,31.87513],[47.80926,31.87525],[47.80942,31.87539],[47.80943,31.87566],[47.80913,31.8762],[47.80884,31.87715],[47.80871,31.87797],[47.80873,31.87864],[47.80895,31.87951],[47.8093,31.88039],[47.80986,31.88078],[47.80995,31.88105],[47.80998,31.88146],[47.81014,31.88206],[47.81012,31.88267],[47.80922,31.88309],[47.80867,31.88296],[47.80781,31.88338],[47.80683,31.88367],[47.80463,31.88566],[47.80376,31.88568],[47.80313,31.88583],[47.80179,31.88598],[47.80088,31.88593],[47.79977,31.88608],[47.79835,31.88611],[47.79694,31.8864],[47.79547,31.88663],[47.79332,31.88727],[47.79238,31.88783],[47.79155,31.88784],[47.79076,31.88793],[47.78887,31.88757],[47.78845,31.88857],[47.78752,31.8894],[47.78709,31.89062],[47.78649,31.89171],[47.78591,31.89348],[47.78628,31.89536],[47.78632,31.89644],[47.78602,31.89712],[47.78511,31.89713],[47.78415,31.89688],[47.78331,31.89674],[47.78334,31.8977],[47.78354,31.89905],[47.78331,31.90702],[47.78334,31.90797],[47.78306,31.90905],[47.78201,31.90967],[47.78087,31.91003],[47.77976,31.91005],[47.77884,31.90959],[47.77815,31.909],[47.77767,31.90887],[47.77687,31.90889],[47.77621,31.9091],[47.77579,31.90958],[47.77517,31.90999],[47.77439,31.91041],[47.77391,31.91042],[47.77311,31.91003],[47.77216,31.91004],[47.77154,31.91059],[47.77077,31.91142],[47.76969,31.91238],[47.76875,31.91253],[47.76752,31.91255],[47.76648,31.91223],[47.76526,31.91229],[47.76497,31.91327],[47.76439,31.91375],[47.76342,31.91424],[47.76182,31.91373],[47.76116,31.9132],[47.76053,31.91321],[47.75976,31.9139],[47.75867,31.91445],[47.75744,31.91556],[47.75587,31.91626],[47.75541,31.91667],[47.75435,31.91817],[47.7531,31.919],[47.75201,31.91956],[47.75029,31.92013],[47.74918,31.92087],[47.74842,31.92163],[47.74776,31.92174],[47.74759,31.92267],[47.74881,31.92345],[47.749,31.92432],[47.74832,31.92528],[47.74695,31.92647],[47.74549,31.92786],[47.74441,31.92863],[47.74356,31.92885],[47.74304,31.92868],[47.74261,31.92901],[47.74196,31.92862],[47.7411,31.92891],[47.74028,31.93022],[47.73843,31.93344],[47.7357,31.93668],[47.7341,31.93821],[47.73348,31.9387],[47.73301,31.93871],[47.73267,31.93817],[47.73164,31.938],[47.73063,31.93877],[47.72995,31.93959],[47.72915,31.94007],[47.72904,31.94063],[47.72962,31.94116],[47.73034,31.94148],[47.73016,31.9427],[47.72962,31.94319],[47.72942,31.9442],[47.73034,31.94533],[47.7307,31.9464],[47.73034,31.94749],[47.72945,31.94893],[47.72878,31.9501],[47.72768,31.95229],[47.72771,31.95297],[47.72798,31.95391],[47.7281,31.95478],[47.72751,31.95601],[47.72614,31.95753],[47.72594,31.95835],[47.72596,31.95903],[47.72609,31.96017],[47.72644,31.96118],[47.72656,31.96219],[47.72568,31.96397],[47.72475,31.96453],[47.7242,31.96448],[47.72271,31.96492],[47.7201,31.96525],[47.71885,31.96555],[47.71775,31.96599],[47.71595,31.9665],[47.71528,31.96753],[47.71437,31.96864],[47.7126,31.97003],[47.71168,31.9708],[47.71165,31.97118],[47.71135,31.97256],[47.7119,31.97431],[47.71173,31.97397],[47.71196,31.97593],[47.71331,31.97799],[47.71442,31.97986],[47.71582,31.98131],[47.71725,31.98337],[47.71785,31.98464],[47.71776,31.98563],[47.71749,31.98742],[47.71626,31.98853],[47.71582,31.98942],[47.71554,31.99045],[47.71517,31.99106],[47.71449,31.99175],[47.71426,31.99217],[47.71387,31.99313],[47.71352,31.99333],[47.71255,31.99302],[47.71165,31.99236],[47.71037,31.99199],[47.70978,31.99106],[47.70942,31.9909],[47.70868,31.99129],[47.70816,31.99218],[47.70797,31.99333],[47.70767,31.99388],[47.70713,31.9943],[47.70643,31.99459],[47.70581,31.99479],[47.70558,31.99528],[47.70674,31.99634],[47.70795,31.99692],[47.70869,31.99746],[47.70964,31.99807],[47.71021,31.99875],[47.71088,31.99974],[47.71164,32.0005],[47.71257,32.00064],[47.71312,32.00063],[47.71329,32.00001],[47.71347,31.99962],[47.7141,31.99938],[47.71466,31.99952],[47.71526,31.99979],[47.71524,32.00021],[47.71535,32.00082],[47.71527,32.00152],[47.71464,32.00199],[47.71355,32.00248],[47.71135,32.00321],[47.70961,32.00394],[47.70844,32.00496],[47.70771,32.00528],[47.70735,32.00552],[47.7072,32.0059],[47.70793,32.00651],[47.70841,32.00712],[47.70889,32.00781],[47.70937,32.00842],[47.70947,32.00873],[47.70956,32.0088],[47.70957,32.00896],[47.7093,32.00911],[47.70859,32.00979],[47.7084,32.01021],[47.70832,32.01068],[47.70752,32.01154],[47.70716,32.01209],[47.70689,32.01232],[47.70637,32.01202],[47.70541,32.01212],[47.70457,32.01174],[47.70383,32.01168],[47.70309,32.01185],[47.70274,32.01232],[47.70229,32.01302],[47.7023,32.01341],[47.7022,32.01396],[47.7027,32.01433],[47.70346,32.01509],[47.70459,32.01599],[47.70526,32.01683],[47.70575,32.01752],[47.70632,32.0182],[47.70706,32.01834],[47.7077,32.01818],[47.70807,32.01802],[47.70891,32.01847],[47.70956,32.01845],[47.7101,32.01806],[47.71017,32.01736],[47.71014,32.01613],[47.7102,32.01512],[47.71075,32.01473],[47.71137,32.01452],[47.7125,32.01485],[47.71326,32.0153],[47.71383,32.01599],[47.71385,32.01676],[47.71406,32.01752],[47.71435,32.01821],[47.71402,32.0193],[47.71266,32.02048],[47.71175,32.02104],[47.71047,32.02137],[47.70974,32.02162],[47.7091,32.02194],[47.70808,32.0218],[47.70586,32.02184],[47.70458,32.02225],[47.70366,32.02242],[47.70229,32.02283],[47.70165,32.02315],[47.70083,32.02347],[47.70027,32.02348],[47.69963,32.02342],[47.69916,32.02327],[47.69915,32.02257],[47.69876,32.02235],[47.69855,32.02135],[47.69854,32.02081],[47.69787,32.02013],[47.69739,32.01944],[47.69727,32.01844],[47.69716,32.01782],[47.69677,32.01713],[47.69667,32.01667],[47.6961,32.01622],[47.69489,32.01601],[47.69396,32.01572],[47.69312,32.01519],[47.69291,32.0145],[47.6928,32.01388],[47.6922,32.01368],[47.69169,32.01382],[47.69125,32.01437],[47.69063,32.01546],[47.6901,32.01656],[47.6881,32.01759],[47.68646,32.01832],[47.68573,32.01856],[47.68498,32.01834],[47.68442,32.01813],[47.68389,32.0189],[47.6841,32.01967],[47.68421,32.02044],[47.6847,32.02151],[47.685,32.02228],[47.68586,32.02335],[47.68653,32.02411],[47.68774,32.02455],[47.68766,32.02509],[47.68703,32.02549],[47.68639,32.02581],[47.68622,32.02627],[47.6866,32.02673],[47.68752,32.02664],[47.68807,32.02632],[47.68898,32.02607],[47.68942,32.0259],[47.68991,32.02621],[47.68975,32.02691],[47.68938,32.02722],[47.68921,32.02754],[47.6896,32.02838],[47.6888,32.0294],[47.68862,32.02955],[47.68882,32.03033],[47.68828,32.0308],[47.68792,32.03088],[47.68719,32.03136],[47.68664,32.03175],[47.68591,32.03184],[47.68426,32.03241],[47.68316,32.03266],[47.6824,32.03279],[47.68161,32.03261],[47.68075,32.03239],[47.67972,32.03195],[47.67889,32.03189],[47.67808,32.03252],[47.67753,32.03292],[47.67633,32.03309],[47.67486,32.03311],[47.67311,32.03241],[47.67248,32.03257],[47.67239,32.03335],[47.67313,32.03415],[47.67307,32.03523],[47.67263,32.03593],[47.67256,32.03671],[47.67296,32.03801],[47.67282,32.03956],[47.67295,32.04095],[47.67262,32.0425],[47.67238,32.04374],[47.67213,32.04459],[47.66978,32.04679],[47.66906,32.0475],[47.6679,32.04798],[47.66626,32.04886],[47.66581,32.04914],[47.66539,32.04934],[47.66405,32.05006],[47.66213,32.05071],[47.66058,32.05143],[47.65921,32.05223],[47.65849,32.0527],[47.65794,32.05287],[47.65674,32.05289],[47.65591,32.05329],[47.65482,32.05385],[47.65438,32.05463],[47.6542,32.05486],[47.65274,32.05551],[47.65221,32.05637],[47.65148,32.05692],[47.65113,32.05754],[47.6507,32.05847],[47.65044,32.05925],[47.64972,32.05981],[47.64909,32.06036],[47.64893,32.06136],[47.64915,32.06202],[47.64925,32.06298],[47.64909,32.06375],[47.64976,32.06459],[47.65061,32.06527],[47.65164,32.06603],[47.65213,32.0671],[47.65292,32.06863],[47.65333,32.07017],[47.65354,32.07132],[47.65395,32.07263],[47.65409,32.07417],[47.65358,32.0758],[47.65316,32.07735],[47.6531,32.07859],[47.65313,32.07967],[47.65242,32.08092],[47.65226,32.08202],[47.65169,32.08309],[47.6511,32.08169],[47.64996,32.0829],[47.64883,32.08378],[47.64821,32.08403],[47.64761,32.08432],[47.6467,32.08465],[47.64624,32.08496],[47.6458,32.08575],[47.64619,32.08651],[47.64603,32.08713],[47.64512,32.08776],[47.64412,32.08832],[47.64229,32.08912],[47.64193,32.08944],[47.64128,32.08953],[47.64027,32.0897],[47.63944,32.08971],[47.63824,32.08989],[47.63719,32.08979],[47.63602,32.09062],[47.63327,32.09291],[47.632,32.09405],[47.62992,32.09579],[47.62888,32.09669],[47.62816,32.09744],[47.62744,32.09795],[47.62685,32.09846],[47.62604,32.09913],[47.62446,32.10074],[47.62286,32.10228],[47.62151,32.10353],[47.6197,32.10495],[47.61753,32.10677],[47.61554,32.10827],[47.61185,32.11119],[47.60754,32.11447],[47.60585,32.11592],[47.59978,32.12074],[47.59759,32.12278],[47.59642,32.12373],[47.59534,32.12436],[47.5947,32.12479],[47.59349,32.12393],[47.59191,32.12285],[47.589,32.12238],[47.58361,32.12124],[47.58026,32.12037],[47.57895,32.12],[47.57804,32.11979],[47.57522,32.11875],[47.57026,32.11667],[47.56887,32.11618],[47.5673,32.11657],[47.56472,32.11707],[47.56169,32.11789],[47.55942,32.1184],[47.55907,32.11986],[47.5597,32.12202],[47.55924,32.12287],[47.55863,32.12435],[47.55773,32.1256],[47.55666,32.1267],[47.55428,32.12775],[47.55127,32.12926],[47.54962,32.13006],[47.54914,32.13035],[47.54164,32.13598],[47.53744,32.13837],[47.53443,32.13988],[47.53276,32.14063],[47.53234,32.14108],[47.53239,32.14324],[47.53287,32.144],[47.53403,32.14591],[47.53508,32.14698],[47.53553,32.14813],[47.53589,32.14975],[47.53567,32.15554],[47.53544,32.15733],[47.53411,32.1592],[47.53338,32.15983],[47.53333,32.16145],[47.53374,32.16307],[47.53315,32.16532],[47.5329,32.1664],[47.53165,32.16781],[47.53038,32.16891],[47.52956,32.16954],[47.52941,32.17007],[47.52949,32.17047],[47.53362,32.17249],[47.53644,32.1743],[47.53842,32.17543],[47.53941,32.1759],[47.54058,32.17662],[47.54273,32.1776],[47.54592,32.17909],[47.54837,32.18082],[47.55081,32.18233],[47.5538,32.18328],[47.55596,32.18441],[47.55738,32.18546],[47.55833,32.18668],[47.55901,32.18783],[47.5597,32.1884],[47.56061,32.18873],[47.56284,32.18931],[47.56425,32.18991],[47.56592,32.19035],[47.56734,32.19148],[47.56755,32.19217],[47.56739,32.19302],[47.56692,32.19396],[47.56661,32.19512],[47.56609,32.19644],[47.56538,32.19753],[47.56504,32.19862],[47.56472,32.20063],[47.5645,32.20288],[47.56471,32.2038],[47.56555,32.20433],[47.56696,32.205],[47.56781,32.20545],[47.56856,32.20613],[47.56916,32.20759],[47.57027,32.21097],[47.57085,32.21204],[47.57152,32.2128],[47.57191,32.2134],[47.56994,32.21615],[47.56864,32.21926],[47.56803,32.22089],[47.56697,32.22261],[47.56699,32.22354],[47.56721,32.22461],[47.56678,32.22586],[47.56563,32.22788],[47.56441,32.22868],[47.56392,32.22992],[47.56246,32.23072],[47.56015,32.23067],[47.557,32.23088],[47.55368,32.23117],[47.551,32.23137],[47.54803,32.23134],[47.5461,32.23168],[47.54416,32.23186],[47.54241,32.2322],[47.54137,32.23257],[47.54031,32.23355],[47.53879,32.23535],[47.53754,32.23707],[47.53583,32.23918],[47.53494,32.24043],[47.53295,32.24289],[47.53144,32.24538],[47.52983,32.2475],[47.52525,32.25396],[47.52269,32.25788],[47.52109,32.26054],[47.51973,32.26141],[47.5178,32.26213],[47.51599,32.26386],[47.51395,32.26706],[47.51171,32.27003],[47.50819,32.27387],[47.50603,32.2763],[47.50357,32.27773],[47.50126,32.27808],[47.5008,32.2784],[47.50101,32.27901],[47.50418,32.27973],[47.50756,32.28161],[47.50973,32.28327],[47.51165,32.28548],[47.51233,32.28678],[47.51264,32.28801],[47.51275,32.28896],[47.51314,32.28932],[47.51536,32.28959],[47.51936,32.28984],[47.52205,32.29002],[47.52248,32.29225],[47.52219,32.29535],[47.52191,32.29618],[47.522,32.29875],[47.52219,32.30253],[47.52197,32.3047],[47.52192,32.30648],[47.52165,32.30656],[47.51987,32.30589],[47.51699,32.30555],[47.51458,32.30551],[47.51244,32.30516],[47.51038,32.30458],[47.50861,32.30429],[47.50604,32.30503],[47.50502,32.30513],[47.50288,32.30462],[47.50164,32.30424],[47.49996,32.30531],[47.49685,32.30776],[47.49525,32.3073],[47.4899,32.31002],[47.48578,32.31094],[47.48238,32.31081],[47.48025,32.31036],[47.47769,32.31303],[47.47473,32.31488],[47.47307,32.31552],[47.47148,32.31564],[47.46966,32.3155],[47.46691,32.31563],[47.46219,32.31591],[47.46181,32.32124],[47.46196,32.32605],[47.46096,32.32817],[47.45911,32.33135],[47.45848,32.33391],[47.45805,32.33752],[47.4564,32.34131],[47.45486,32.34317],[47.45358,32.34425],[47.45177,32.34603],[47.44917,32.34789],[47.44475,32.34885],[47.44195,32.3501],[47.43898,32.3515],[47.43639,32.3515],[47.43654,32.35304],[47.43812,32.35462],[47.44084,32.35646],[47.4445,32.35765],[47.44933,32.35882],[47.45275,32.35868],[47.4533,32.35982],[47.45293,32.36164],[47.45219,32.36286],[47.45289,32.366],[47.45459,32.36927],[47.45714,32.37164],[47.46006,32.37429],[47.46438,32.37648],[47.46584,32.37796],[47.46622,32.3796],[47.46511,32.38134],[47.46369,32.38295],[47.46337,32.38415],[47.4637,32.38679],[47.46458,32.38879],[47.46571,32.39103],[47.46636,32.39175],[47.4656,32.39328],[47.46218,32.39513],[47.45966,32.39636],[47.45703,32.39748],[47.45525,32.39814],[47.45362,32.40009],[47.44917,32.40398],[47.44545,32.40727],[47.44166,32.41094],[47.43855,32.41384],[47.43481,32.41701],[47.43191,32.41814],[47.43089,32.41862],[47.42882,32.42075],[47.42591,32.4244],[47.42297,32.42899],[47.42015,32.43321],[47.41761,32.4373],[47.41539,32.44019],[47.4128,32.44263],[47.40953,32.44614],[47.40697,32.44963],[47.40458,32.45283],[47.40218,32.45557],[47.40028,32.45725],[47.39857,32.45938],[47.39633,32.46182],[47.39414,32.46397],[47.39273,32.46608],[47.38909,32.46899],[47.38719,32.47036],[47.38459,32.47296],[47.38143,32.47421],[47.37931,32.4744],[47.37633,32.47427],[47.37497,32.47369],[47.37236,32.4736],[47.36997,32.47258],[47.36773,32.472],[47.36632,32.4714],[47.36525,32.4709],[47.36288,32.47134],[47.36093,32.47137],[47.35953,32.47184],[47.3583,32.47175],[47.35672,32.47309],[47.35533,32.47416],[47.35287,32.4748],[47.3479,32.47487],[47.34653,32.47549],[47.34508,32.4767],[47.34298,32.47675],[47.34101,32.47618],[47.33904,32.47546],[47.33741,32.47458],[47.33616,32.4743],[47.33475,32.47462],[47.33301,32.47585],[47.33092,32.47708],[47.32952,32.478],[47.32747,32.47869],[47.32167,32.48263],[47.31765,32.48479],[47.31433,32.48664],[47.31082,32.4882],[47.30816,32.48823],[47.30604,32.48872],[47.30219,32.49073],[47.29816,32.49259],[47.29518,32.49383],[47.29306,32.49432],[47.29076,32.49428],[47.28743,32.49652],[47.28534,32.49743],[47.28414,32.49758],[47.2833,32.49759],[47.28213,32.49427],[47.28193,32.49147],[47.28227,32.48952],[47.2833,32.48758],[47.28181,32.48592],[47.28047,32.48572],[47.27804,32.48432],[47.27681,32.48155],[47.27558,32.47895],[47.27553,32.47758],[47.27232,32.47659],[47.26837,32.47529],[47.26372,32.47416],[47.2605,32.47301],[47.25775,32.47019],[47.25449,32.46768],[47.25196,32.46622],[47.25053,32.46579],[47.24909,32.46506],[47.24739,32.46403],[47.24595,32.4635],[47.24334,32.46374],[47.24162,32.46451],[47.24011,32.4649],[47.2383,32.46508],[47.23622,32.466],[47.23492,32.46639],[47.23327,32.46587],[47.23227,32.46533],[47.23093,32.46434],[47.22926,32.46345],[47.22761,32.46284],[47.22608,32.46203],[47.22388,32.46235],[47.2203,32.46279],[47.21746,32.46275],[47.21517,32.46279],[47.21365,32.46292],[47.21331,32.46246],[47.21303,32.46036],[47.21138,32.46019],[47.20969,32.46036],[47.20758,32.46081],[47.20454,32.46106],[47.20161,32.46157],[47.19923,32.46217],[47.1963,32.4625],[47.19469,32.46286],[47.19226,32.46311],[47.19038,32.46324],[47.18959,32.46318],[47.1897,32.46277],[47.18998,32.46235],[47.19015,32.46106],[47.1895,32.46055],[47.18875,32.46025],[47.18785,32.46009],[47.18684,32.46034],[47.18557,32.46069],[47.18358,32.46153],[47.18257,32.46175],[47.18185,32.46175],[47.18116,32.46152],[47.18093,32.46127],[47.18083,32.46101],[47.18079,32.46056],[47.18086,32.45892],[47.18071,32.45818],[47.1801,32.45755],[47.17956,32.45689],[47.17886,32.45619],[47.1769,32.45641],[47.17301,32.45677],[47.1693,32.45716],[47.1683,32.4573],[47.16531,32.45945],[47.15571,32.46548],[47.15144,32.46842],[47.14968,32.46953],[47.14554,32.47139],[47.14219,32.47246],[47.14024,32.47341],[47.13704,32.47514],[47.12665,32.48087],[47.11774,32.48555],[47.11368,32.48812],[47.11135,32.48925],[47.10682,32.49193],[47.10349,32.49356],[47.10135,32.49425],[47.09724,32.49617],[47.09412,32.49724],[47.0919,32.49841],[47.09166,32.49894],[47.08987,32.50149],[47.08857,32.50369],[47.08797,32.50383],[47.08387,32.50555],[47.07751,32.50859],[47.07635,32.50925],[47.07107,32.51175],[47.0685,32.51435],[47.06201,32.52053],[47.05625,32.52578],[47.05524,32.52619],[47.0507,32.5265],[47.04913,32.52647],[47.04595,32.5285],[47.0444,32.52925],[47.04099,32.53485],[47.03709,32.53998],[47.03371,32.54436],[47.03302,32.54453],[47.02811,32.5473],[47.02361,32.55032],[47.02274,32.55091],[47.01956,32.55407],[47.01746,32.55564],[47.01454,32.55847],[47.00685,32.56504],[47.00237,32.56897],[47.00033,32.57038],[46.9932,32.57343],[46.98758,32.57572],[46.98089,32.57886],[46.97329,32.58147],[46.96843,32.58668],[46.96373,32.5908],[46.95785,32.59614],[46.95579,32.59786],[46.95314,32.59962],[46.9457,32.60341],[46.93968,32.60591],[46.93416,32.60937],[46.92921,32.6123],[46.92348,32.61477],[46.9219,32.61536],[46.91581,32.61801],[46.91413,32.61841],[46.90446,32.62332],[46.89444,32.62852],[46.88718,32.63203],[46.88058,32.6382],[46.87599,32.64269],[46.87218,32.64647],[46.86807,32.64943],[46.86225,32.65301],[46.85746,32.65564],[46.85269,32.65968],[46.84754,32.66353],[46.84246,32.66703],[46.84024,32.66916],[46.83864,32.67084],[46.83746,32.67175],[46.83591,32.6754],[46.83246,32.6819],[46.83111,32.68487],[46.83024,32.68647],[46.82785,32.69045],[46.82649,32.69287],[46.82552,32.69508],[46.82069,32.69728],[46.81463,32.69993],[46.81163,32.70147],[46.80686,32.70418],[46.80413,32.70591],[46.79379,32.71089],[46.79135,32.71203],[46.79,32.7173],[46.78835,32.72147],[46.78774,32.72286],[46.78533,32.72797],[46.78356,32.73036],[46.7733,32.73735],[46.76802,32.74073],[46.76635,32.74203],[46.76375,32.74512],[46.7611,32.74866],[46.75912,32.75064],[46.755,32.75591],[46.75214,32.75943],[46.75135,32.76036],[46.75,32.76144],[46.74506,32.76514],[46.74186,32.76775],[46.74052,32.76897],[46.73782,32.77185],[46.73541,32.77462],[46.73439,32.77564],[46.72864,32.78033],[46.72418,32.78345],[46.72168,32.78596],[46.72079,32.78647],[46.71657,32.78617],[46.71146,32.78596],[46.70801,32.78564],[46.70303,32.78711],[46.69884,32.78897],[46.69828,32.78925],[46.69456,32.79142],[46.69271,32.79259],[46.69134,32.79341],[46.68935,32.79678],[46.68856,32.79786],[46.68008,32.80035],[46.6707,32.80316],[46.66828,32.80397],[46.66278,32.80547],[46.65606,32.80758],[46.65285,32.81053],[46.65004,32.8128],[46.64745,32.81453],[46.64252,32.81594],[46.63704,32.81722],[46.63381,32.81783],[46.63245,32.81786],[46.62786,32.82037],[46.62444,32.82172],[46.62273,32.8223],[46.61923,32.82692],[46.61605,32.83044],[46.61384,32.83258],[46.60965,32.83581],[46.6047,32.83926],[46.60106,32.84147],[46.59693,32.84472],[46.59353,32.84707],[46.59217,32.84786],[46.59245,32.85064],[46.58741,32.85169],[46.58523,32.85175],[46.58051,32.85623],[46.57645,32.85992],[46.57356,32.86175],[46.56887,32.86579],[46.56401,32.86907],[46.55867,32.87294],[46.55578,32.8748],[46.55079,32.87823],[46.5434,32.8831],[46.53746,32.88664],[46.53191,32.89],[46.52773,32.89259],[46.52363,32.89513],[46.51984,32.8979],[46.51828,32.89869],[46.51466,32.89968],[46.51078,32.90036],[46.50682,32.90173],[46.50356,32.9023],[46.50005,32.90268],[46.49464,32.90313],[46.49162,32.90314],[46.48658,32.90926],[46.48339,32.91318],[46.48078,32.91619],[46.47598,32.91722],[46.47217,32.91787],[46.46657,32.91969],[46.46273,32.92091],[46.45679,32.92366],[46.45278,32.92543],[46.45051,32.92647],[46.45099,32.92993],[46.4511,32.9312],[46.4466,32.93431],[46.44384,32.93092],[46.44106,32.93119],[46.43689,32.93341],[46.43162,32.9348],[46.42773,32.93565],[46.42245,32.93758],[46.4172,32.94086],[46.41551,32.94175],[46.41157,32.94597],[46.41051,32.94704],[46.40206,32.94818],[46.39517,32.94855],[46.38976,32.949],[46.38745,32.94897],[46.37013,32.95268],[46.36306,32.95421],[46.35911,32.9548],[46.35405,32.95717],[46.34985,32.95935],[46.34745,32.96036],[46.34466,32.95898],[46.33914,32.96149],[46.3326,32.96476],[46.33161,32.96537],[46.32532,32.96571],[46.32244,32.96564],[46.31718,32.96767],[46.31404,32.96851],[46.31245,32.96897],[46.30637,32.9688],[46.30114,32.96857],[46.29827,32.96841],[46.29297,32.96861],[46.28883,32.96871],[46.28431,32.96898],[46.28244,32.96897],[46.27743,32.97001],[46.27144,32.97137],[46.268,32.97213],[46.26633,32.97258],[46.2606,32.97074],[46.25645,32.9696],[46.25383,32.9687],[46.25044,32.96929],[46.24975,32.96937],[46.24593,32.97002],[46.24411,32.97036],[46.23347,32.96737],[46.22823,32.96591],[46.22397,32.96464],[46.2205,32.96342],[46.21606,32.96241],[46.21077,32.96103],[46.208,32.96009],[46.2035,32.95914],[46.2005,32.95841],[46.19076,32.95688],[46.18295,32.95519],[46.17614,32.95405],[46.17355,32.95341],[46.1659,32.95438],[46.16109,32.95516],[46.15938,32.95536],[46.15089,32.95737],[46.14481,32.95866],[46.14029,32.95976],[46.13772,32.96009],[46.13411,32.96036],[46.12884,32.96389],[46.12474,32.96648],[46.12181,32.9681],[46.11994,32.96897],[46.11454,32.97179],[46.11165,32.97319],[46.10911,32.97425],[46.10403,32.97696],[46.10216,32.97758],[46.09886,32.98014],[46.0974,32.9812],[46.09693,32.98239],[46.09705,32.98405],[46.09618,32.98505],[46.09526,32.98574],[46.09482,32.98638],[46.09466,32.98846],[46.09478,32.98986],[46.09569,32.99135],[46.0961,32.99268],[46.09711,32.99416],[46.09782,32.99515],[46.09754,32.99648],[46.09815,32.99763],[46.0982,32.99799],[46.09861,32.9984],[46.09871,32.99873],[46.09933,32.99968],[46.09935,33.00068],[46.09917,33.00151],[46.09811,33.00244],[46.09654,33.00279],[46.09478,33.00331],[46.0944,33.0039],[46.09472,33.00498],[46.09563,33.0058],[46.09526,33.00697],[46.09439,33.00781],[46.0953,33.0088],[46.09659,33.00912],[46.09709,33.0097],[46.09716,33.01252],[46.09847,33.01384],[46.0997,33.01574],[46.09984,33.01741],[46.10007,33.0189],[46.10057,33.01948],[46.10215,33.01946],[46.10342,33.01894],[46.1044,33.01868],[46.10542,33.02017],[46.10681,33.0209],[46.1077,33.02056],[46.10855,33.01939],[46.10882,33.0183],[46.10921,33.01779],[46.11009,33.01762],[46.11069,33.0182],[46.11139,33.01835],[46.11229,33.01918],[46.11416,33.01907],[46.11574,33.01889],[46.11682,33.01912],[46.11762,33.01953],[46.11885,33.02151],[46.11966,33.02233],[46.12015,33.02233],[46.12189,33.02081],[46.12266,33.01997],[46.12351,33.01846],[46.12409,33.01804],[46.1248,33.01911],[46.12641,33.02034],[46.12751,33.02091],[46.12889,33.02098],[46.13028,33.02121],[46.1303,33.02213],[46.12973,33.02288],[46.12905,33.02347],[46.12906,33.02397],[46.13054,33.02396],[46.13211,33.02377],[46.1332,33.024],[46.13361,33.02475],[46.13285,33.02609],[46.13179,33.02694],[46.13231,33.02801],[46.13332,33.02917],[46.13424,33.03049],[46.13456,33.03148],[46.13457,33.03215],[46.13372,33.03324],[46.13305,33.03416],[46.13268,33.03517],[46.1328,33.03641],[46.1342,33.03698],[46.13599,33.03788],[46.13709,33.03844],[46.13811,33.03985],[46.13894,33.04175],[46.13897,33.04275],[46.1384,33.04401],[46.13822,33.04467],[46.13855,33.04509],[46.14014,33.04657],[46.14154,33.0473],[46.14273,33.04762],[46.14382,33.04802],[46.14384,33.04877],[46.14357,33.04952],[46.14406,33.04968],[46.14474,33.04934],[46.14513,33.04917],[46.14535,33.04992],[46.14565,33.05025],[46.14671,33.04932],[46.14703,33.05006],[46.14816,33.05197],[46.14867,33.05296],[46.14911,33.05342],[46.14902,33.05529],[46.14936,33.05711],[46.15078,33.05851],[46.15159,33.05933],[46.15171,33.06033],[46.15144,33.06142],[46.15147,33.06275],[46.15218,33.06374],[46.15338,33.0643],[46.15517,33.06487],[46.15588,33.06578],[46.15739,33.06684],[46.16017,33.06764],[46.16216,33.06853],[46.16336,33.06918],[46.1647,33.06951],[46.16427,33.07017],[46.1629,33.0706],[46.16182,33.07086],[46.16055,33.07121],[46.1594,33.07256],[46.15793,33.07307],[46.15695,33.07334],[46.15625,33.07293],[46.15544,33.07194],[46.15415,33.0717],[46.15317,33.07197],[46.15199,33.07206],[46.151,33.07207],[46.14973,33.07242],[46.14873,33.07168],[46.14744,33.07145],[46.14597,33.07197],[46.1444,33.07224],[46.14322,33.07225],[46.14188,33.07204],[46.14115,33.07244],[46.14017,33.07246],[46.1378,33.0724],[46.13563,33.07259],[46.13368,33.0732],[46.13212,33.07413],[46.13095,33.07473],[46.12978,33.07491],[46.12829,33.07468],[46.12741,33.07486],[46.12691,33.07486],[46.1263,33.07387],[46.1256,33.07346],[46.12432,33.07347],[46.12303,33.07307],[46.12212,33.0725],[46.12046,33.0731],[46.1189,33.07362],[46.11792,33.07388],[46.11688,33.07397],[46.11607,33.07482],[46.11451,33.07584],[46.11415,33.07717],[46.11459,33.07933],[46.11403,33.0805],[46.11315,33.0811],[46.11147,33.08078],[46.11087,33.08029],[46.1092,33.08073],[46.10697,33.08225],[46.10571,33.08318],[46.10515,33.08452],[46.10457,33.08494],[46.10411,33.08509],[46.10349,33.08512],[46.10289,33.08471],[46.10122,33.08515],[46.09926,33.08559],[46.0973,33.08628],[46.09555,33.08746],[46.0942,33.08848],[46.09332,33.0889],[46.09185,33.089],[46.09045,33.08827],[46.08924,33.0872],[46.08845,33.08746],[46.08838,33.08854],[46.0885,33.08946],[46.08723,33.09005],[46.08626,33.09082],[46.08579,33.09149],[46.08432,33.09192],[46.08264,33.09169],[46.08124,33.09104],[46.07995,33.09055],[46.07819,33.09132],[46.07683,33.09209],[46.07575,33.09227],[46.07435,33.09145],[46.07327,33.09065],[46.07264,33.09022],[46.07126,33.09015],[46.06961,33.09109],[46.06834,33.09185],[46.06648,33.09237],[46.06518,33.09172],[46.06517,33.09106],[46.06417,33.09065],[46.06319,33.09074],[46.0615,33.09035],[46.06032,33.09044],[46.05866,33.09121],[46.05679,33.09132],[46.05503,33.092],[46.05386,33.09235],[46.0527,33.0932],[46.05192,33.09428],[46.0508,33.09505],[46.04961,33.09527],[46.04869,33.09507],[46.0468,33.0945],[46.04444,33.09495],[46.04298,33.09547],[46.0418,33.09565],[46.0411,33.0954],[46.04144,33.09665],[46.04196,33.09812],[46.04238,33.09923],[46.04744,33.1112],[46.05272,33.1262],[46.05382,33.12556],[46.05504,33.12476],[46.05613,33.1245],[46.05778,33.12355],[46.05909,33.123],[46.06108,33.12381],[46.06228,33.12447],[46.06338,33.12487],[46.06499,33.12652],[46.06589,33.12709],[46.06718,33.12741],[46.06828,33.12781],[46.06967,33.12805],[46.07114,33.12778],[46.0728,33.12693],[46.07445,33.12574],[46.07561,33.12482],[46.07669,33.12439],[46.07778,33.12463],[46.07897,33.12486],[46.07975,33.12452],[46.08083,33.12434],[46.0816,33.12375],[46.08248,33.12324],[46.08405,33.12297],[46.08583,33.12295],[46.0874,33.12268],[46.08856,33.12159],[46.08932,33.1205],[46.09,33.11991],[46.09098,33.11973],[46.09237,33.12004],[46.09384,33.11986],[46.09532,33.11976],[46.09642,33.12008],[46.09732,33.12091],[46.09893,33.12222],[46.09994,33.12321],[46.10134,33.12394],[46.10263,33.12409],[46.1043,33.12407],[46.10538,33.12389],[46.10667,33.12413],[46.10796,33.12444],[46.10945,33.12468],[46.11082,33.12416],[46.11219,33.12406],[46.11288,33.12372],[46.11375,33.12313],[46.1157,33.12211],[46.11687,33.12159],[46.11735,33.12109],[46.11853,33.12066],[46.1198,33.12014],[46.1207,33.12072],[46.12102,33.12179],[46.12027,33.12339],[46.1201,33.12455],[46.12052,33.12596],[46.12134,33.12712],[46.12284,33.12793],[46.12368,33.12984],[46.1245,33.13108],[46.1258,33.13214],[46.127,33.13271],[46.12783,33.13437],[46.12915,33.13585],[46.13037,33.13758],[46.13159,33.13915],[46.13232,33.14039],[46.13421,33.14112],[46.13589,33.14143],[46.13718,33.14158],[46.13799,33.14257],[46.13911,33.14422],[46.14082,33.14529],[46.14261,33.14609],[46.14371,33.14633],[46.14492,33.14748],[46.14699,33.14771],[46.15055,33.14791],[46.15255,33.14864],[46.15385,33.14962],[46.15535,33.15044],[46.15636,33.15126],[46.15756,33.15208],[46.15884,33.15206],[46.15944,33.15238],[46.15985,33.15313],[46.16007,33.15388],[46.16088,33.15453],[46.16198,33.15502],[46.16297,33.15559],[46.16378,33.15633],[46.16519,33.15739],[46.16699,33.15829],[46.16809,33.15919],[46.16852,33.16027],[46.16893,33.16118],[46.16955,33.16225],[46.17132,33.16215],[46.17223,33.16272],[46.17342,33.1632],[46.17453,33.16402],[46.17544,33.16493],[46.17655,33.16591],[46.17784,33.16632],[46.17983,33.16679],[46.18153,33.16776],[46.18265,33.16908],[46.18327,33.17041],[46.18516,33.17113],[46.18646,33.17179],[46.18689,33.17286],[46.18652,33.17403],[46.18566,33.17529],[46.1855,33.17662],[46.18623,33.1782],[46.18743,33.1791],[46.18903,33.18],[46.19083,33.18064],[46.1927,33.1807],[46.1939,33.18135],[46.1958,33.18216],[46.19791,33.1838],[46.19893,33.1852],[46.19966,33.18685],[46.19951,33.1886],[46.19854,33.18937],[46.19797,33.19029],[46.19791,33.19179],[46.19835,33.19353],[46.20016,33.19484],[46.20175,33.19524],[46.20802,33.19741],[46.21023,33.19879],[46.21133,33.19954],[46.21244,33.20051],[46.21336,33.20142],[46.213,33.20204],[46.21111,33.20245],[46.20765,33.20232],[46.20522,33.20231],[46.19934,33.20184],[46.19618,33.2018],[46.19522,33.20176],[46.19185,33.20235],[46.18763,33.20349],[46.1836,33.20428],[46.18161,33.20509],[46.17982,33.20691],[46.17984,33.20783],[46.18178,33.21047],[46.18326,33.21062],[46.18384,33.21011],[46.18502,33.20993],[46.18524,33.21076],[46.18527,33.21184],[46.18579,33.21283],[46.18532,33.21417],[46.18466,33.21509],[46.18401,33.2171],[46.18335,33.21802],[46.18247,33.21862],[46.1816,33.21937],[46.18133,33.22037],[46.18236,33.22236],[46.18319,33.22377],[46.18393,33.22576],[46.18436,33.22708],[46.1855,33.22787],[46.18677,33.22864],[46.18835,33.22895],[46.19022,33.22926],[46.19126,33.23066],[46.19168,33.23157],[46.1917,33.2324],[46.19232,33.23356],[46.19263,33.23439],[46.19197,33.23556],[46.19191,33.23681],[46.19262,33.23789],[46.19304,33.2388],[46.19272,33.23926],[46.19189,33.24023],[46.19071,33.24057],[46.19002,33.24058],[46.18846,33.24118],[46.18749,33.24203],[46.18751,33.24311],[46.18764,33.24419],[46.18827,33.24509],[46.1889,33.24709],[46.18911,33.24815],[46.18855,33.24926],[46.18774,33.25016],[46.18698,33.25091],[46.187,33.25239],[46.18778,33.25294],[46.18855,33.25303],[46.18944,33.2533],[46.18967,33.25405],[46.18946,33.25479],[46.18882,33.25581],[46.18883,33.25648],[46.19006,33.25757],[46.19052,33.25896],[46.19053,33.2596],[46.1911,33.26118],[46.19123,33.26201],[46.19113,33.26294],[46.1911,33.2634],[46.19004,33.26397],[46.18883,33.26444],[46.1873,33.2651],[46.1851,33.26567],[46.18334,33.26587],[46.18191,33.26597],[46.17992,33.26561],[46.17937,33.26599],[46.17916,33.26655],[46.17906,33.2671],[46.17911,33.26759],[46.17819,33.26794],[46.17654,33.26814],[46.17511,33.26889],[46.17391,33.26965],[46.17226,33.27012],[46.17105,33.27031],[46.16918,33.27069],[46.1682,33.27154],[46.16766,33.27228],[46.16772,33.27315],[46.16647,33.27368],[46.1646,33.27444],[46.16329,33.27491],[46.16208,33.27529],[46.16132,33.27613],[46.16034,33.27715],[46.15947,33.27763],[46.15782,33.27819],[46.15628,33.27894],[46.15476,33.28025],[46.15322,33.28101],[46.1518,33.28138],[46.14994,33.28242],[46.14829,33.28308],[46.14709,33.28373],[46.14556,33.28495],[46.14466,33.28592],[46.14272,33.28701],[46.14119,33.28776],[46.13977,33.28879],[46.13835,33.28973],[46.13725,33.29019],[46.1356,33.29076],[46.13494,33.29148],[46.13386,33.29245],[46.13266,33.29338],[46.13169,33.29487],[46.13082,33.2958],[46.12972,33.29628],[46.12908,33.29748],[46.12821,33.2986],[46.1269,33.29917],[46.12548,33.30038],[46.12516,33.30159],[46.12463,33.30308],[46.12344,33.30457],[46.12181,33.30616],[46.11951,33.30728],[46.11841,33.30757],[46.11687,33.30851],[46.1155,33.30954],[46.11471,33.31131],[46.11277,33.31447],[46.11039,33.31829],[46.10866,33.32117],[46.10705,33.32424],[46.10546,33.32843],[46.10471,33.3302],[46.10385,33.33187],[46.10289,33.33457],[46.10202,33.33504],[46.09895,33.337],[46.09623,33.33915],[46.09459,33.34083],[46.09254,33.34381],[46.09102,33.34624],[46.09004,33.34708],[46.08731,33.34886],[46.08457,33.35082],[46.08172,33.35204],[46.0805,33.35259],[46.08074,33.35326],[46.08165,33.35483],[46.08198,33.35548],[46.08189,33.35612],[46.08112,33.35659],[46.07994,33.35648],[46.07958,33.35688],[46.07915,33.3579],[46.07838,33.358],[46.07688,33.35787],[46.07706,33.35857],[46.07795,33.35902],[46.07966,33.35954],[46.08009,33.36023],[46.08002,33.36089],[46.07941,33.36165],[46.07839,33.36222],[46.07791,33.36239],[46.07816,33.37414],[46.07824,33.38027],[46.0782,33.38537],[46.078,33.38842],[46.07717,33.39057],[46.07696,33.39131],[46.07633,33.39204],[46.07534,33.3942],[46.07306,33.397],[46.07133,33.39926],[46.07146,33.4009],[46.07093,33.40276],[46.0684,33.40352],[46.06565,33.40455],[46.0627,33.4068],[46.06084,33.40838],[46.05855,33.40954],[46.05789,33.41072],[46.0567,33.41231],[46.05659,33.4124],[46.05562,33.41445],[46.05442,33.41519],[46.05383,33.41537],[46.05233,33.4166],[46.05025,33.41754],[46.04772,33.41815],[46.04761,33.41867],[46.04653,33.42034],[46.04568,33.4235],[46.04504,33.4249],[46.04385,33.42648],[46.0432,33.42806],[46.04213,33.42983],[46.0417,33.43104],[46.0416,33.43196],[46.04063,33.43383],[46.04,33.43606],[46.03981,33.43838],[46.03928,33.43996],[46.03819,33.44136],[46.03716,33.44259],[46.03744,33.44321],[46.03988,33.44385],[46.04278,33.44588],[46.04414,33.44782],[46.04355,33.44787],[46.04251,33.45061],[46.04132,33.4521],[46.04078,33.45303],[46.04145,33.45405],[46.04181,33.4559],[46.04095,33.45804],[46.04009,33.45934],[46.03866,33.46],[46.03669,33.46103],[46.0356,33.46271],[46.03494,33.46342],[46.03519,33.46521],[46.03488,33.46717],[46.03369,33.46912],[46.03186,33.47219],[46.03078,33.47461],[46.02937,33.47675],[46.02851,33.47824],[46.02841,33.47926],[46.02842,33.48019],[46.0269,33.48168],[46.02547,33.4828],[46.02383,33.48383],[46.02327,33.48426],[46.02153,33.48533],[46.01976,33.48599],[46.01882,33.48648],[46.01822,33.48618],[46.01743,33.48507],[46.01696,33.48331],[46.01577,33.48231],[46.01442,33.48286],[46.01255,33.48426],[46.01036,33.48557],[46.00894,33.48688],[46.00799,33.48759],[46.00787,33.48948],[46.00881,33.49375],[46.00906,33.49588],[46.00908,33.49782],[46.00888,33.49922],[46.00796,33.50054],[46.00787,33.50184],[46.00823,33.50332],[46.00836,33.50462],[46.00784,33.50637],[46.00655,33.5087],[46.00502,33.50963],[46.00291,33.51014],[45.99994,33.51072],[45.99894,33.51055],[45.99816,33.51],[45.99725,33.50871],[45.99624,33.50779],[45.99457,33.50743],[45.9928,33.50745],[45.99148,33.50774],[45.99026,33.50737],[45.98903,33.50692],[45.98748,33.50675],[45.98572,33.50722],[45.98466,33.50731],[45.98294,33.50623],[45.98148,33.50522],[45.98014,33.50449],[45.97847,33.50367],[45.97744,33.50287],[45.97491,33.50231],[45.96936,33.50124],[45.96714,33.5007],[45.96404,33.50026],[45.96171,33.49982],[45.96038,33.49983],[45.95911,33.49926],[45.9586,33.49901],[45.95769,33.49754],[45.95645,33.49588],[45.95431,33.49348],[45.95295,33.49155],[45.95238,33.49026],[45.95216,33.48981],[45.95104,33.48953],[45.94915,33.48889],[45.9467,33.4878],[45.94513,33.48679],[45.9439,33.48551],[45.94278,33.4845],[45.94187,33.48321],[45.94133,33.48287],[45.94076,33.4834],[45.94013,33.48535],[45.93907,33.48832],[45.93722,33.49037],[45.93592,33.49177],[45.93299,33.49176],[45.92929,33.49192],[45.92563,33.49157],[45.92164,33.49095],[45.91953,33.49069],[45.91809,33.49061],[45.91622,33.49146],[45.91535,33.49174],[45.91257,33.49111],[45.91013,33.49039],[45.90847,33.49059],[45.90451,33.49164],[45.90087,33.4925],[45.89701,33.49317],[45.89414,33.49375],[45.89187,33.49426],[45.89083,33.49414],[45.88994,33.49396],[45.88782,33.49305],[45.88516,33.49242],[45.88262,33.49281],[45.88018,33.492],[45.87774,33.49192],[45.87521,33.49259],[45.87378,33.49334],[45.87329,33.4943],[45.86926,33.49397],[45.86708,33.49375],[45.86447,33.49342],[45.86271,33.49315],[45.86428,33.49424],[45.86763,33.49616],[45.87376,33.49927],[45.89521,33.51259],[45.92437,33.53093],[45.94688,33.54538],[45.94963,33.54799],[45.95188,33.55028],[45.95459,33.55314],[45.95663,33.55599],[45.95866,33.55848],[45.96023,33.55995],[45.96133,33.5612],[45.96072,33.56272],[45.9593,33.56412],[45.95809,33.56506],[45.95879,33.56654],[45.95892,33.56783],[45.95716,33.56898],[45.95652,33.57026],[45.95498,33.57101],[45.95467,33.57203],[45.95402,33.57315],[45.95206,33.57502],[45.94966,33.57772],[45.94703,33.5795],[45.94466,33.58065],[45.94266,33.58315],[45.93874,33.58716],[45.93656,33.58968],[45.93515,33.59126],[45.93428,33.5922],[45.9323,33.59332],[45.93077,33.59399],[45.92913,33.59557],[45.92551,33.5981],[45.92233,33.60016],[45.91849,33.6026],[45.91541,33.60401],[45.91222,33.60533],[45.9109,33.60571],[45.90947,33.60637],[45.90748,33.60648],[45.90469,33.6054],[45.91661,33.62759],[45.9085,33.63651],[45.90807,33.63797],[45.90675,33.63826],[45.90552,33.63817],[45.90407,33.63763],[45.90263,33.6368],[45.90139,33.63598],[45.89851,33.63609],[45.8963,33.63639],[45.89442,33.63658],[45.8921,33.6366],[45.89055,33.63671],[45.88826,33.63592],[45.88665,33.63525],[45.88564,33.63461],[45.88364,33.63444],[45.88032,33.63446],[45.87756,33.63476],[45.8749,33.63478],[45.87269,33.63526],[45.87114,33.63527],[45.86869,33.63482],[45.86625,33.63428],[45.86435,33.63356],[45.8628,33.6332],[45.86104,33.63205],[45.85934,33.63174],[45.85734,33.6311],[45.85589,33.63037],[45.85366,33.62974],[45.85111,33.62939],[45.84833,33.62894],[45.84689,33.62868],[45.84632,33.62842],[45.844,33.62823],[45.84233,33.6276],[45.84032,33.62659],[45.83699,33.62596],[45.83411,33.62598],[45.83113,33.62656],[45.8287,33.62732],[45.82649,33.62761],[45.82521,33.62731],[45.82316,33.62735],[45.82017,33.62719],[45.81575,33.62805],[45.81354,33.62731],[45.81283,33.62538],[45.81224,33.62242],[45.81154,33.6203],[45.81104,33.61842],[45.80696,33.61737],[45.80305,33.61508],[45.80081,33.61361],[45.7999,33.61291],[45.78882,33.60759],[45.77493,33.6026],[45.75743,33.59454],[45.7544,33.5934],[45.7546,33.59528],[45.75595,33.59703],[45.75641,33.59814],[45.75654,33.59962],[45.75733,33.60082],[45.75802,33.60239],[45.75804,33.60424],[45.75795,33.60517],[45.75907,33.60665],[45.75932,33.60868],[45.75979,33.61072],[45.7607,33.61238],[45.76172,33.61404],[45.76262,33.61496],[45.76463,33.61606],[45.76608,33.61726],[45.76698,33.61808],[45.76734,33.62012],[45.76814,33.62206],[45.76937,33.62279],[45.771,33.6237],[45.77215,33.63037],[45.7716,33.63705],[45.77136,33.63843],[45.76993,33.63919],[45.76784,33.64003],[45.76574,33.64069],[45.76254,33.64183],[45.76034,33.64258],[45.75769,33.64352],[45.75568,33.6441],[45.75228,33.64504],[45.75008,33.64579],[45.7461,33.64918],[45.74316,33.65097],[45.74021,33.65286],[45.73746,33.65409],[45.73604,33.65454],[45.731,33.6575],[45.72519,33.66035],[45.72135,33.66215],[45.7191,33.6626],[45.71602,33.66638],[45.713,33.67002],[45.71063,33.6732],[45.70989,33.67398],[45.70509,33.67799],[45.70268,33.6795],[45.70106,33.68137],[45.69901,33.6837],[45.69743,33.6851],[45.69619,33.68633],[45.69443,33.68718],[45.69335,33.68821],[45.69271,33.68952],[45.6923,33.6911],[45.69132,33.69176],[45.68988,33.69205],[45.68767,33.69235],[45.68591,33.69274],[45.68437,33.6926],[45.68207,33.69445],[45.68011,33.69623],[45.67749,33.69793],[45.67453,33.69982],[45.67303,33.70224],[45.67253,33.70456],[45.67047,33.70653],[45.66631,33.70889],[45.66458,33.71104],[45.66362,33.7129],[45.66192,33.71607],[45.65965,33.7176],[45.65957,33.72008],[45.65927,33.72184],[45.65882,33.7226],[45.65733,33.72417],[45.65491,33.72513],[45.65217,33.72646],[45.64876,33.72788],[45.64768,33.7291],[45.64716,33.73077],[45.6466,33.7323],[45.64519,33.7329],[45.64422,33.73339],[45.64258,33.73434],[45.6415,33.73564],[45.64107,33.7363],[45.64049,33.73731],[45.64046,33.7389],[45.64017,33.74085],[45.64008,33.74187],[45.63993,33.74288],[45.64132,33.7443],[45.64264,33.74612],[45.64365,33.74803],[45.64403,33.74912],[45.6441,33.74927],[45.64456,33.75144],[45.64549,33.75373],[45.64734,33.7561],[45.64898,33.75762],[45.6494,33.75889],[45.64931,33.75983],[45.6491,33.76038],[45.64802,33.76374],[45.64581,33.7674],[45.64442,33.7708],[45.6425,33.77377],[45.6407,33.77616],[45.63868,33.77862],[45.63657,33.78143],[45.63355,33.78492],[45.63092,33.78739],[45.62908,33.78823],[45.62748,33.78901],[45.62543,33.79013],[45.62323,33.7914],[45.62003,33.79331],[45.61287,33.79736],[45.61078,33.79847],[45.60718,33.80043],[45.60329,33.80321],[45.59968,33.81046],[45.601,33.81731],[45.60116,33.81888],[45.59995,33.82007],[45.59843,33.8216],[45.59631,33.82339],[45.59298,33.82645],[45.59035,33.82883],[45.58802,33.83071],[45.58661,33.83165],[45.58437,33.8326],[45.58418,33.83377],[45.58532,33.83564],[45.58493,33.8376],[45.58494,33.83972],[45.58373,33.84108],[45.58212,33.84354],[45.58091,33.84516],[45.57949,33.8466],[45.57778,33.84882],[45.57628,33.85213],[45.57376,33.85544],[45.57165,33.85868],[45.56983,33.8614],[45.56803,33.86488],[45.56592,33.86837],[45.56401,33.87186],[45.5626,33.87398],[45.56048,33.87653],[45.55807,33.88087],[45.55595,33.88376],[45.55364,33.88783],[45.55263,33.8897],[45.55131,33.89121],[45.55021,33.89277],[45.5493,33.89387],[45.54798,33.89362],[45.5466,33.89316],[45.54604,33.89482],[45.54525,33.89745],[45.54455,33.89906],[45.54324,33.90042],[45.54131,33.90187],[45.53858,33.90434],[45.53696,33.90621],[45.53554,33.9074],[45.53525,33.90918],[45.53527,33.91105],[45.53436,33.91258],[45.53243,33.91309],[45.53111,33.91352],[45.52936,33.91427],[45.52878,33.91539],[45.52848,33.91692],[45.52716,33.91769],[45.52594,33.91777],[45.52574,33.91871],[45.52545,33.91964],[45.52423,33.92007],[45.5229,33.92024],[45.52159,33.9201],[45.52169,33.92075],[45.52169,33.92219],[45.52099,33.92338],[45.52018,33.92432],[45.51957,33.92483],[45.51816,33.92704],[45.51767,33.92925],[45.51727,33.93087],[45.51688,33.93273],[45.51668,33.93409],[45.51619,33.93571],[45.51568,33.9369],[45.51477,33.93825],[45.51366,33.93911],[45.51305,33.93987],[45.51287,33.94208],[45.51247,33.94378],[45.51126,33.94556],[45.50974,33.94735],[45.50863,33.94854],[45.50772,33.94939],[45.50701,33.95066],[45.50509,33.9522],[45.50326,33.95424],[45.50282,33.95516],[45.50252,33.95633],[45.5027,33.95732],[45.50163,33.95726],[45.50072,33.95717],[45.49981,33.95642],[45.49849,33.95424],[45.49667,33.95357],[45.49486,33.95298],[45.49304,33.9519],[45.49253,33.95122],[45.49102,33.95014],[45.48964,33.94927],[45.48779,33.94905],[45.48447,33.94863],[45.48356,33.94838],[45.48243,33.9476],[45.48195,33.94805],[45.48166,33.94863],[45.48131,33.94927],[45.48077,33.95015],[45.47846,33.95056],[45.47645,33.9504],[45.47474,33.9504],[45.47313,33.95006],[45.47011,33.94923],[45.4682,33.94957],[45.46629,33.94973],[45.46438,33.94948],[45.46247,33.9489],[45.46045,33.94806],[45.45874,33.94731],[45.45825,33.94677],[45.45652,33.94731],[45.45532,33.94747],[45.45401,33.94698],[45.4526,33.94664],[45.45049,33.94639],[45.44889,33.94698],[45.44808,33.94698],[45.44686,33.94705],[45.44567,33.94782],[45.44437,33.94798],[45.44216,33.94782],[45.44065,33.94748],[45.43854,33.94748],[45.43673,33.9479],[45.43472,33.9474],[45.43351,33.94698],[45.4316,33.9468],[45.4309,33.94749],[45.42981,33.94916],[45.42962,33.95042],[45.42964,33.95243],[45.42974,33.95369],[45.42995,33.95462],[45.42906,33.95537],[45.42715,33.95621],[45.42555,33.95721],[45.42475,33.95797],[45.42356,33.95898],[45.42215,33.95923],[45.42115,33.95973],[45.42036,33.96065],[45.42037,33.96217],[45.42007,33.96334],[45.41928,33.96443],[45.41878,33.96535],[45.41825,33.96593],[45.41759,33.9672],[45.41721,33.96929],[45.41622,33.97122],[45.41492,33.97307],[45.41353,33.97483],[45.41163,33.97575],[45.40983,33.97659],[45.40832,33.97717],[45.40742,33.97732],[45.40964,33.97835],[45.41125,33.97869],[45.41316,33.97894],[45.41548,33.97919],[45.41729,33.97986],[45.41941,33.98086],[45.42052,33.98204],[45.42084,33.98321],[45.42105,33.98472],[45.42146,33.98615],[45.42148,33.98833],[45.42139,33.98959],[45.4218,33.99068],[45.42291,33.99143],[45.42412,33.99185],[45.42523,33.99176],[45.42633,33.99118],[45.42773,33.99084],[45.42894,33.99076],[45.43015,33.99092],[45.43046,33.99252],[45.43108,33.99395],[45.43179,33.9952],[45.4329,33.99621],[45.43402,33.99738],[45.43533,33.99805],[45.43684,33.99813],[45.43805,33.99839],[45.43926,33.99914],[45.43926,33.99922],[45.44209,34.00025],[45.44431,34.00151],[45.44804,34.00353],[45.44985,34.00488],[45.45146,34.00622],[45.45307,34.00748],[45.45549,34.00833],[45.4567,34.00842],[45.45871,34.00867],[45.46083,34.00927],[45.46264,34.00986],[45.46415,34.01012],[45.46587,34.01071],[45.46728,34.01139],[45.46727,34.01197],[45.46697,34.01255],[45.46647,34.01297],[45.46596,34.01364],[45.46617,34.01439],[45.46697,34.01489],[45.46757,34.01557],[45.46788,34.0164],[45.46727,34.0174],[45.46717,34.01824],[45.46717,34.01916],[45.46757,34.02024],[45.46818,34.02058],[45.46918,34.021],[45.4702,34.02067],[45.4709,34.02026],[45.4713,34.02051],[45.4716,34.02143],[45.47231,34.02294],[45.47352,34.0237],[45.47503,34.02487],[45.47614,34.02605],[45.47654,34.02689],[45.47583,34.0273],[45.47553,34.0273],[45.47503,34.02688],[45.47452,34.02629],[45.47412,34.02579],[45.47341,34.02553],[45.47231,34.02562],[45.4717,34.02619],[45.4709,34.02736],[45.4723,34.02904],[45.47321,34.02971],[45.47372,34.03072],[45.47382,34.03197],[45.47361,34.03281],[45.47321,34.03431],[45.47261,34.03489],[45.47119,34.03488],[45.47039,34.0353],[45.47019,34.0358],[45.47039,34.0363],[45.47099,34.03656],[45.4719,34.03681],[45.47281,34.0369],[45.47351,34.03682],[45.47412,34.0364],[45.47493,34.03657],[45.47593,34.03658],[45.47664,34.03608],[45.47765,34.03608],[45.47795,34.03709],[45.47814,34.03801],[45.47784,34.03859],[45.47744,34.03959],[45.47744,34.04051],[45.47774,34.04151],[45.47824,34.04219],[45.47905,34.04269],[45.47945,34.04328],[45.48006,34.04445],[45.47945,34.04528],[45.47986,34.04662],[45.48016,34.04754],[45.48016,34.0483],[45.47985,34.0488],[45.47764,34.05021],[45.47683,34.05112],[45.47643,34.05196],[45.47703,34.05305],[45.47814,34.05422],[45.47935,34.05473],[45.47985,34.05598],[45.47995,34.05732],[45.47935,34.05815],[45.47935,34.0589],[45.47955,34.05983],[45.47914,34.06083],[45.47834,34.06132],[45.47693,34.0614],[45.4733,34.06139],[45.47199,34.06189],[45.47038,34.06263],[45.46867,34.06346],[45.46725,34.06446],[45.46675,34.06537],[45.46736,34.06671],[45.46876,34.0673],[45.46987,34.06815],[45.47088,34.06848],[45.47098,34.06932],[45.47148,34.0699],[45.47199,34.07016],[45.47269,34.07083],[45.47269,34.07133],[45.47239,34.07208],[45.47209,34.07267],[45.47229,34.07309],[45.47279,34.07342],[45.4735,34.07418],[45.4737,34.07501],[45.4738,34.07593],[45.4738,34.07669],[45.474,34.07727],[45.47501,34.07744],[45.47662,34.07762],[45.47783,34.0777],[45.47894,34.07821],[45.47954,34.07913],[45.47964,34.08013],[45.47995,34.08131],[45.48014,34.08215],[45.48105,34.08265],[45.48226,34.08282],[45.48367,34.08266],[45.48387,34.08208],[45.48407,34.08132],[45.48418,34.0799],[45.48458,34.07848],[45.48498,34.07757],[45.48549,34.07707],[45.48629,34.07724],[45.4865,34.07799],[45.4868,34.07933],[45.4876,34.08084],[45.48851,34.08134],[45.48971,34.08177],[45.49012,34.08243],[45.49032,34.08319],[45.49092,34.08361],[45.49213,34.08395],[45.49344,34.08412],[45.49526,34.08421],[45.49626,34.08464],[45.49616,34.08556],[45.49536,34.0863],[45.49364,34.08688],[45.49102,34.08795],[45.49032,34.08871],[45.49123,34.08955],[45.49223,34.0898],[45.49385,34.09031],[45.49395,34.09164],[45.49395,34.09256],[45.49414,34.09357],[45.49485,34.09424],[45.49576,34.09425],[45.49656,34.094],[45.49727,34.09442],[45.49717,34.09584],[45.49737,34.09684],[45.49837,34.09751],[45.49939,34.09793],[45.50009,34.09819],[45.502,34.0992],[45.50432,34.09954],[45.50613,34.09964],[45.50694,34.09989],[45.50714,34.10064],[45.50664,34.10131],[45.50563,34.10222],[45.50492,34.10306],[45.50442,34.10406],[45.50482,34.10514],[45.50603,34.10549],[45.50734,34.10566],[45.50845,34.10683],[45.50996,34.10868],[45.51137,34.11019],[45.51237,34.11086],[45.51368,34.11204],[45.51479,34.11179],[45.5154,34.11179],[45.5157,34.11213],[45.5155,34.1128],[45.51489,34.11313],[45.51469,34.11405],[45.5155,34.11397],[45.5166,34.11355],[45.51832,34.11306],[45.51902,34.11231],[45.51983,34.1119],[45.52034,34.11156],[45.52074,34.11165],[45.52124,34.11215],[45.52124,34.1129],[45.52104,34.11365],[45.52134,34.11466],[45.52164,34.11499],[45.52245,34.11533],[45.52386,34.1155],[45.52457,34.1166],[45.52436,34.11735],[45.52416,34.11801],[45.52366,34.11893],[45.52507,34.11961],[45.52648,34.12003],[45.52809,34.11945],[45.52819,34.11811],[45.52809,34.11686],[45.52809,34.11619],[45.5287,34.11578],[45.5299,34.11562],[45.53081,34.1157],[45.53081,34.11629],[45.53101,34.11695],[45.53152,34.11771],[45.53273,34.11797],[45.53373,34.11797],[45.53353,34.11864],[45.53252,34.11938],[45.53121,34.1198],[45.53031,34.12063],[45.5299,34.1223],[45.53061,34.12314],[45.53171,34.12331],[45.53363,34.12407],[45.53464,34.12507],[45.53595,34.12466],[45.53665,34.12433],[45.53927,34.12551],[45.54108,34.12602],[45.54199,34.12603],[45.5428,34.12653],[45.5432,34.12745],[45.54436,34.12788],[45.54511,34.12838],[45.54572,34.12872],[45.54592,34.1293],[45.54652,34.13022],[45.55075,34.13325],[45.55498,34.13653],[45.5577,34.13846],[45.55881,34.13805],[45.56002,34.13864],[45.56012,34.14006],[45.56551,34.13991],[45.56825,34.13986],[45.57523,34.14388],[45.5816,34.14621],[45.57896,34.15058],[45.57664,34.15484],[45.57482,34.15884],[45.57482,34.16411],[45.57412,34.16904],[45.57331,34.17204],[45.572,34.17379],[45.57049,34.17504],[45.56964,34.1751],[45.56766,34.17753],[45.56555,34.17995],[45.56303,34.18286],[45.5595,34.18652],[45.55748,34.18952],[45.55728,34.18977],[45.55527,34.19286],[45.55426,34.19628],[45.55476,34.19812],[45.55567,34.19946],[45.55714,34.20039],[45.55788,34.20173],[45.5601,34.20425],[45.56187,34.20594],[45.56705,34.21071],[45.56946,34.21289],[45.56993,34.21316],[45.57087,34.21791],[45.57148,34.22084],[45.5727,34.22343],[45.57641,34.23014],[45.57923,34.23474],[45.58049,34.2365],[45.58124,34.24069],[45.58124,34.24211],[45.58144,34.2432],[45.58187,34.24428],[45.58225,34.24687],[45.58255,34.24863],[45.58255,34.24972],[45.58187,34.25511],[45.58178,34.2582],[45.58149,34.26382],[45.58195,34.26783],[45.58215,34.26844],[45.58275,34.27505],[45.58375,34.2796],[45.58529,34.28566],[45.58604,34.28817],[45.58573,34.29346],[45.5857,34.29478],[45.58484,34.29957],[45.5835,34.30291],[45.57465,34.31621],[45.56187,34.33177],[45.53621,34.35369],[45.53543,34.35345],[45.53521,34.35261],[45.53496,34.35113],[45.53463,34.34952],[45.53396,34.34789],[45.53206,34.34714],[45.52996,34.34734],[45.5282,34.34921],[45.52631,34.35017],[45.52392,34.35023],[45.52137,34.34958],[45.5196,34.34923],[45.51774,34.34896],[45.51503,34.34954],[45.51178,34.35154],[45.51051,34.35281],[45.50912,34.35335],[45.50817,34.35297],[45.5075,34.35174],[45.50679,34.35021],[45.50588,34.3486],[45.50468,34.34754],[45.50426,34.34638],[45.50434,34.3445],[45.50371,34.34239],[45.50198,34.34092],[45.50037,34.33989],[45.49987,34.33962],[45.49941,34.3389],[45.49846,34.33771],[45.49742,34.33621],[45.49631,34.33706],[45.49353,34.34178],[45.48075,34.36483],[45.46659,34.38371],[45.46634,34.38628],[45.46381,34.39872],[45.46242,34.40261],[45.45853,34.41594],[45.45797,34.42095],[45.45677,34.43085],[45.45659,34.43325],[45.45436,34.43289],[45.45436,34.43511],[45.45156,34.43665],[45.44881,34.43761],[45.4449,34.43934],[45.4477,34.4398],[45.44355,34.44126],[45.44247,34.44308],[45.44219,34.44744],[45.44274,34.44851],[45.44329,34.44976],[45.44224,34.45208],[45.44131,34.45317],[45.44033,34.45565],[45.44025,34.45805],[45.4407,34.46019],[45.44255,34.46188],[45.44397,34.46411],[45.44548,34.46511],[45.44807,34.46499],[45.44992,34.46428],[45.45298,34.46428],[45.45436,34.4665],[45.45853,34.4665],[45.46016,34.46762],[45.46135,34.46952],[45.46186,34.474],[45.46312,34.47513],[45.4647,34.4752],[45.46663,34.47592],[45.46804,34.47743],[45.46953,34.47808],[45.47119,34.47771],[45.4724,34.47662],[45.47379,34.4759],[45.47798,34.47553],[45.48104,34.47602],[45.4841,34.47609],[45.48698,34.47565],[45.48864,34.47557],[45.49073,34.47528],[45.49177,34.47499],[45.49387,34.47448],[45.49631,34.4744],[45.49805,34.47374],[45.4991,34.47367],[45.49997,34.47367],[45.50079,34.47377],[45.50215,34.47376],[45.50371,34.47334],[45.50579,34.47306],[45.50709,34.47285],[45.50795,34.47261],[45.51022,34.47341],[45.51238,34.47478],[45.51475,34.47605],[45.51712,34.47759],[45.51821,34.47887],[45.51929,34.48086],[45.51939,34.48123],[45.52109,34.48257],[45.52274,34.48529],[45.52371,34.4871],[45.52381,34.48905],[45.52364,34.49064],[45.52453,34.49274],[45.52558,34.49447],[45.52638,34.49592],[45.52647,34.49678],[45.52708,34.49792],[45.52709,34.49824],[45.52674,34.49903],[45.52584,34.49996],[45.52569,34.50163],[45.5258,34.50301],[45.52521,34.50432],[45.52532,34.50614],[45.52604,34.5078],[45.52581,34.50955],[45.52539,34.51064],[45.52497,34.51209],[45.52552,34.51405],[45.5252,34.51558],[45.52494,34.51616],[45.52557,34.51739],[45.52621,34.51942],[45.52678,34.52226],[45.52647,34.52451],[45.52632,34.52669],[45.52602,34.52953],[45.52542,34.53083],[45.52381,34.53183],[45.52345,34.53353],[45.52304,34.53506],[45.52263,34.53717],[45.52266,34.53927],[45.52173,34.54138],[45.52079,34.54248],[45.51845,34.54408],[45.51663,34.54518],[45.51489,34.54585],[45.51368,34.54636],[45.5133,34.54654],[45.51325,34.54702],[45.51362,34.54861],[45.51416,34.54948],[45.5144,34.55046],[45.51215,34.55122],[45.512,34.55167],[45.51289,34.55247],[45.51378,34.55341],[45.51537,34.55434],[45.51747,34.55492],[45.51854,34.55614],[45.51954,34.55839],[45.52183,34.55976],[45.52253,34.55991],[45.52351,34.56113],[45.52345,34.56295],[45.52304,34.5647],[45.52341,34.56644],[45.52309,34.56811],[45.52293,34.56927],[45.52339,34.57109],[45.52306,34.57218],[45.52307,34.57291],[45.52361,34.57363],[45.52397,34.57457],[45.52373,34.57559],[45.52313,34.57661],[45.52314,34.57755],[45.52386,34.57849],[45.52457,34.57922],[45.52589,34.57965],[45.52703,34.58022],[45.52748,34.58124],[45.5275,34.58226],[45.5276,34.58327],[45.5284,34.58414],[45.52938,34.58551],[45.52983,34.58638],[45.53055,34.5874],[45.53091,34.58841],[45.53155,34.58986],[45.53192,34.59168],[45.53142,34.59349],[45.5311,34.5951],[45.53112,34.59633],[45.5314,34.59771],[45.53054,34.59888],[45.52969,34.59997],[45.52953,34.60113],[45.52998,34.60164],[45.53099,34.60183],[45.53243,34.60221],[45.53437,34.60278],[45.53568,34.60306],[45.53664,34.60299],[45.53733,34.60218],[45.53819,34.60109],[45.53809,34.60015],[45.53773,34.59957],[45.53702,34.59906],[45.53614,34.59885],[45.53552,34.5982],[45.53525,34.5974],[45.53523,34.59653],[45.53504,34.59566],[45.53564,34.59485],[45.53616,34.59413],[45.53694,34.59362],[45.53781,34.59339],[45.5386,34.5939],[45.53959,34.59513],[45.54039,34.59592],[45.54136,34.59679],[45.54242,34.59737],[45.5433,34.59794],[45.54418,34.59794],[45.54522,34.5975],[45.54573,34.59684],[45.54651,34.59597],[45.54703,34.59545],[45.54807,34.59509],[45.54877,34.59487],[45.54964,34.59501],[45.55017,34.59544],[45.55166,34.59521],[45.55244,34.59478],[45.55304,34.59412],[45.55347,34.59353],[45.55381,34.59303],[45.55486,34.59266],[45.55529,34.59265],[45.5553,34.59324],[45.55557,34.59374],[45.55646,34.59425],[45.55742,34.59425],[45.55776,34.59381],[45.55801,34.59293],[45.558,34.59214],[45.55738,34.59156],[45.55667,34.59112],[45.55588,34.59113],[45.55518,34.59091],[45.55491,34.59062],[45.55482,34.59011],[45.55525,34.58982],[45.55612,34.58945],[45.55655,34.58873],[45.55741,34.58785],[45.55749,34.58727],[45.55809,34.58654],[45.5586,34.58574],[45.55894,34.58515],[45.55893,34.58457],[45.55805,34.58422],[45.55709,34.58393],[45.55603,34.58328],[45.5554,34.58248],[45.5553,34.58176],[45.55686,34.58059],[45.55878,34.58058],[45.56001,34.58086],[45.56098,34.58086],[45.56141,34.58071],[45.56166,34.58006],[45.56166,34.57955],[45.56121,34.57912],[45.5606,34.57883],[45.55946,34.57854],[45.55866,34.57811],[45.55847,34.57688],[45.55854,34.57622],[45.55889,34.57579],[45.55966,34.57513],[45.56045,34.5749],[45.56124,34.57498],[45.56185,34.57541],[45.56264,34.57555],[45.56335,34.57562],[45.56404,34.57532],[45.5649,34.57459],[45.56568,34.57386],[45.56619,34.57299],[45.56661,34.57204],[45.56703,34.57088],[45.56719,34.56964],[45.56717,34.56841],[45.56708,34.56812],[45.56672,34.56739],[45.56723,34.56652],[45.56801,34.56623],[45.56887,34.56564],[45.56948,34.56484],[45.57025,34.56418],[45.57103,34.56359],[45.57146,34.56345],[45.57217,34.56345],[45.57261,34.56395],[45.57263,34.56526],[45.57326,34.56627],[45.5744,34.56678],[45.57483,34.56641],[45.57491,34.5659],[45.5749,34.5651],[45.5748,34.5643],[45.57479,34.5635],[45.57522,34.56292],[45.57626,34.56211],[45.57685,34.56139],[45.57711,34.56059],[45.57735,34.55957],[45.57734,34.55891],[45.57803,34.5584],[45.57908,34.55818],[45.57978,34.55854],[45.58015,34.55955],[45.58069,34.56035],[45.58165,34.56078],[45.58225,34.55983],[45.58242,34.55918],[45.58267,34.55845],[45.58363,34.55823],[45.58423,34.55757],[45.58536,34.5572],[45.58659,34.55749],[45.58695,34.55828],[45.58801,34.55908],[45.58872,34.55966],[45.58951,34.55994],[45.59073,34.55943],[45.59054,34.55885],[45.59018,34.5582],[45.59,34.55732],[45.59024,34.55653],[45.5905,34.55623],[45.59111,34.55601],[45.59181,34.55593],[45.59233,34.5555],[45.59302,34.5552],[45.5945,34.5549],[45.59537,34.55468],[45.59528,34.55388],[45.59483,34.55323],[45.59464,34.55229],[45.59489,34.55141],[45.59496,34.55069],[45.5954,34.5504],[45.59661,34.55017],[45.59767,34.55046],[45.5989,34.55067],[45.59925,34.55117],[45.59944,34.55168],[45.60014,34.55197],[45.60092,34.55175],[45.60248,34.55051],[45.60378,34.55006],[45.60544,34.54954],[45.60675,34.54939],[45.60745,34.54968],[45.60799,34.55062],[45.60879,34.55164],[45.61106,34.55104],[45.61114,34.55097],[45.61254,34.55125],[45.61308,34.55197],[45.61431,34.55218],[45.61588,34.55218],[45.61657,34.55174],[45.6178,34.55151],[45.61953,34.55092],[45.62172,34.55077],[45.62208,34.55156],[45.62295,34.55105],[45.62365,34.55133],[45.62358,34.55228],[45.62342,34.55315],[45.62526,34.5538],[45.62604,34.55321],[45.62619,34.55139],[45.62617,34.55038],[45.62668,34.54929],[45.6272,34.54899],[45.62816,34.54921],[45.62861,34.55007],[45.62907,34.55109],[45.63021,34.55144],[45.63162,34.55209],[45.63252,34.55361],[45.63264,34.55579],[45.63188,34.55717],[45.63216,34.55884],[45.63305,34.55942],[45.63427,34.55912],[45.63531,34.55846],[45.63555,34.55752],[45.63597,34.55657],[45.63693,34.55635],[45.63869,34.55684],[45.63922,34.55713],[45.63914,34.55772],[45.63872,34.55844],[45.63916,34.5591],[45.64083,34.55916],[45.64125,34.55858],[45.64141,34.55756],[45.64166,34.55683],[45.64129,34.5556],[45.64058,34.5548],[45.64013,34.554],[45.64039,34.55364],[45.64143,34.55356],[45.64292,34.55334],[45.64397,34.55326],[45.64544,34.5526],[45.64605,34.55216],[45.64665,34.55165],[45.64735,34.55164],[45.6484,34.55192],[45.64876,34.5525],[45.64982,34.55294],[45.65113,34.55293],[45.65166,34.55343],[45.65107,34.5546],[45.65074,34.55591],[45.65102,34.55663],[45.65198,34.5567],[45.6524,34.55612],[45.65248,34.55539],[45.6529,34.55451],[45.65325,34.554],[45.65464,34.55363],[45.65552,34.55407],[45.65623,34.55493],[45.65782,34.55558],[45.65982,34.55535],[45.6613,34.55454],[45.66128,34.55323],[45.66196,34.55221],[45.66317,34.55112],[45.66456,34.55104],[45.66503,34.55256],[45.66574,34.55357],[45.66723,34.55371],[45.66905,34.55268],[45.67,34.55187],[45.67121,34.55143],[45.67255,34.55266],[45.67353,34.55367],[45.67434,34.55548],[45.67523,34.55621],[45.67645,34.5562],[45.67775,34.55553],[45.67915,34.55516],[45.67993,34.55523],[45.68065,34.55617],[45.68111,34.55777],[45.68183,34.55878],[45.68227,34.55929],[45.68394,34.55928],[45.68462,34.55862],[45.68461,34.55767],[45.68372,34.55666],[45.68344,34.55601],[45.68335,34.55529],[45.68404,34.55477],[45.685,34.55469],[45.68563,34.55621],[45.68591,34.5573],[45.68637,34.55817],[45.68706,34.5581],[45.68801,34.55736],[45.68888,34.55663],[45.68983,34.55619],[45.69017,34.55561],[45.69095,34.55517],[45.69226,34.55516],[45.69304,34.55464],[45.69303,34.55407],[45.6931,34.55334],[45.6938,34.5529],[45.69493,34.55282],[45.69572,34.55318],[45.69684,34.55186],[45.69805,34.55106],[45.69891,34.5504],[45.69907,34.54931],[45.69975,34.54814],[45.70043,34.54748],[45.70122,34.54719],[45.70227,34.54747],[45.70289,34.5479],[45.70393,34.54753],[45.7041,34.54688],[45.70417,34.54579],[45.70529,34.54527],[45.7066,34.54512],[45.70749,34.54577],[45.70906,34.54583],[45.70957,34.54474],[45.71,34.5443],[45.70938,34.54358],[45.70866,34.54286],[45.70918,34.5422],[45.71013,34.5419],[45.71093,34.54233],[45.71216,34.54283],[45.71276,34.54247],[45.71267,34.54182],[45.71248,34.54101],[45.71326,34.54065],[45.71404,34.54042],[45.71569,34.53969],[45.71683,34.53961],[45.71788,34.53996],[45.71787,34.53946],[45.71751,34.53881],[45.71741,34.5383],[45.71828,34.53778],[45.71915,34.53735],[45.72047,34.53784],[45.72084,34.53893],[45.72189,34.53914],[45.72241,34.53885],[45.72267,34.53863],[45.72327,34.53804],[45.72404,34.53746],[45.72527,34.53767],[45.72623,34.53773],[45.72684,34.53759],[45.72928,34.5367],[45.73014,34.53633],[45.73075,34.53611],[45.7318,34.53588],[45.7325,34.53602],[45.73234,34.53683],[45.73218,34.53777],[45.73289,34.53857],[45.73447,34.5387],[45.73542,34.53826],[45.7362,34.53782],[45.73724,34.5373],[45.73855,34.53693],[45.73967,34.53641],[45.74038,34.53677],[45.74116,34.5367],[45.74194,34.53626],[45.74257,34.53691],[45.74258,34.53763],[45.74338,34.53813],[45.74338,34.5385],[45.7433,34.53904],[45.74279,34.53981],[45.74167,34.54076],[45.74073,34.542],[45.74067,34.54331],[45.74139,34.54476],[45.74237,34.54584],[45.74269,34.54889],[45.7424,34.55071],[45.74196,34.55216],[45.74066,34.55326],[45.7391,34.55378],[45.73632,34.554],[45.73624,34.55532],[45.73609,34.55634],[45.73541,34.5578],[45.73482,34.55918],[45.73468,34.56078],[45.7347,34.56209],[45.73542,34.56346],[45.73576,34.56428],[45.73791,34.56555],[45.73854,34.56686],[45.73918,34.56831],[45.74009,34.57026],[45.74048,34.57259],[45.73989,34.57383],[45.73903,34.57485],[45.73819,34.57667],[45.7383,34.57819],[45.73946,34.57935],[45.7401,34.58094],[45.73917,34.58298],[45.73928,34.58436],[45.73907,34.58683],[45.73831,34.58851],[45.73745,34.58924],[45.7366,34.58956],[45.73554,34.59063],[45.73266,34.59079],[45.73179,34.59109],[45.73049,34.59178],[45.7306,34.59313],[45.73001,34.59459],[45.7288,34.59554],[45.72849,34.59743],[45.72852,34.59917],[45.72819,34.60055],[45.72682,34.60187],[45.72605,34.60333],[45.72504,34.60522],[45.72366,34.60668],[45.72324,34.60771],[45.72243,34.60817],[45.72266,34.60916],[45.72355,34.61039],[45.72399,34.61082],[45.72507,34.61249],[45.72571,34.61372],[45.72572,34.61452],[45.72688,34.61597],[45.72927,34.61711],[45.72965,34.61733],[45.73,34.61878],[45.72959,34.6206],[45.72892,34.62205],[45.72866,34.62278],[45.72782,34.62468],[45.72699,34.62715],[45.72624,34.62919],[45.72566,34.63137],[45.72507,34.63254],[45.7251,34.63435],[45.72486,34.63588],[45.72349,34.63771],[45.72203,34.6388],[45.72029,34.63954],[45.7197,34.64078],[45.7192,34.6426],[45.71802,34.64493],[45.71699,34.64624],[45.71582,34.6493],[45.71455,34.65222],[45.71371,34.65411],[45.7134,34.65607],[45.71255,34.65768],[45.71146,34.66059],[45.71071,34.66277],[45.71056,34.66415],[45.71009,34.66757],[45.71037,34.66873],[45.71049,34.66928],[45.71004,34.67011],[45.70856,34.67034],[45.70715,34.66991],[45.70425,34.66913],[45.70214,34.66893],[45.70006,34.66967],[45.69804,34.66975],[45.69717,34.66968],[45.69604,34.66928],[45.69598,34.67209],[45.69592,34.67361],[45.69596,34.67579],[45.69662,34.67855],[45.69691,34.68029],[45.69686,34.68283],[45.6976,34.68501],[45.69842,34.68682],[45.69977,34.68884],[45.7012,34.69043],[45.70227,34.69188],[45.70299,34.69206],[45.70291,34.69318],[45.70243,34.69344],[45.70223,34.69457],[45.7005,34.69574],[45.69842,34.69699],[45.69642,34.69773],[45.69416,34.69912],[45.69262,34.70116],[45.69195,34.7032],[45.69162,34.70415],[45.69104,34.70483],[45.69025,34.70626],[45.68634,34.70781],[45.68399,34.70884],[45.68287,34.70979],[45.68156,34.70994],[45.67972,34.71025],[45.67824,34.71083],[45.67702,34.71091],[45.67587,34.71041],[45.67455,34.71006],[45.6729,34.71094],[45.67118,34.71247],[45.66882,34.71373],[45.66754,34.71518],[45.66677,34.71642],[45.66546,34.71672],[45.6631,34.71674],[45.66241,34.71725],[45.66164,34.71834],[45.66059,34.71893],[45.6592,34.71915],[45.6578,34.71967],[45.65702,34.72011],[45.65694,34.72069],[45.65599,34.72135],[45.65547,34.72193],[45.65435,34.72296],[45.65357,34.72311],[45.65252,34.72326],[45.65315,34.7242],[45.65431,34.7255],[45.65546,34.72644],[45.65697,34.72795],[45.65821,34.72824],[45.66104,34.72844],[45.66225,34.72923],[45.66332,34.73032],[45.66439,34.73125],[45.66493,34.73198],[45.66664,34.73516],[45.66871,34.73806],[45.67057,34.7395],[45.67138,34.74073],[45.67193,34.74196],[45.67203,34.74269],[45.67287,34.74573],[45.67377,34.74733],[45.6752,34.74928],[45.67554,34.75071],[45.67626,34.75207],[45.67697,34.75323],[45.67715,34.75372],[45.67647,34.7554],[45.6764,34.75771],[45.67756,34.75987],[45.67916,34.76167],[45.68067,34.76369],[45.68215,34.76456],[45.68358,34.76599],[45.68499,34.76671],[45.68684,34.7675],[45.68764,34.76793],[45.68914,34.76937],[45.69143,34.77022],[45.69467,34.77065],[45.69748,34.77093],[45.69937,34.7715],[45.69952,34.77309],[45.69893,34.7749],[45.69815,34.77663],[45.6973,34.77837],[45.69626,34.77953],[45.69513,34.78097],[45.69409,34.78213],[45.69358,34.78321],[45.6941,34.78373],[45.69622,34.78436],[45.69789,34.78522],[45.69984,34.78673],[45.70178,34.78796],[45.70328,34.78918],[45.7041,34.79039],[45.70304,34.79171],[45.70078,34.7933],[45.70036,34.79475],[45.69846,34.79807],[45.69699,34.79938],[45.69532,34.79981],[45.69402,34.80112],[45.69272,34.80271],[45.69212,34.8043],[45.69205,34.8056],[45.69189,34.80755],[45.69104,34.80993],[45.68992,34.81152],[45.68826,34.81317],[45.68846,34.81449],[45.68935,34.816],[45.69076,34.81694],[45.69279,34.81852],[45.69475,34.82125],[45.69626,34.8227],[45.69715,34.82363],[45.6991,34.82429],[45.70326,34.8254],[45.7116,34.82873],[45.71299,34.82957],[45.71354,34.83039],[45.71465,34.83095],[45.72269,34.83945],[45.72397,34.839],[45.7259,34.83899],[45.72714,34.84],[45.72925,34.84028],[45.73117,34.83934],[45.73372,34.83969],[45.73488,34.84127],[45.73623,34.8451],[45.73799,34.8479],[45.73819,34.84697],[45.73719,34.84459],[45.73664,34.84221],[45.736,34.83961],[45.73604,34.83789],[45.73596,34.83586],[45.73638,34.83383],[45.73768,34.83253],[45.74014,34.83303],[45.74305,34.83388],[45.74479,34.8333],[45.74566,34.83229],[45.74652,34.8307],[45.74715,34.829],[45.74852,34.8291],[45.75019,34.82974],[45.75353,34.83041],[45.75576,34.83039],[45.75937,34.83311],[45.76194,34.83461],[45.76503,34.83545],[45.76723,34.83586],[45.76884,34.83701],[45.77033,34.83735],[45.77243,34.83691],[45.7741,34.83704],[45.77482,34.83812],[45.77483,34.83819],[45.77726,34.84156],[45.77952,34.84508],[45.78247,34.8478],[45.78595,34.85045],[45.79057,34.85359],[45.79369,34.85602],[45.79576,34.85707],[45.7965,34.86062],[45.79694,34.86531],[45.79679,34.87066],[45.7974,34.87477],[45.79677,34.8786],[45.79643,34.88359],[45.79477,34.88845],[45.79344,34.89243],[45.79214,34.89765],[45.79132,34.90011],[45.79031,34.90236],[45.7891,34.90352],[45.78747,34.90563],[45.7866,34.90706],[45.787,34.90831],[45.78842,34.90938],[45.79038,34.91052],[45.79172,34.91159],[45.79299,34.91151],[45.79543,34.91265],[45.79999,34.91282],[45.80332,34.91229],[45.80621,34.91154],[45.81077,34.91128],[45.81333,34.91206],[45.81492,34.91241],[45.8171,34.91174],[45.81771,34.91123],[45.81938,34.9115],[45.82183,34.91148],[45.82356,34.91002],[45.82503,34.90892],[45.82658,34.9071],[45.82716,34.90551],[45.82743,34.90345],[45.82826,34.9034],[45.82933,34.90455],[45.83126,34.90439],[45.83343,34.90329],[45.83465,34.90234],[45.83462,34.90089],[45.83451,34.90024],[45.83537,34.89915],[45.83632,34.89845],[45.83826,34.89898],[45.83924,34.89948],[45.84167,34.89823],[45.84248,34.89894],[45.84354,34.89944],[45.84442,34.89943],[45.84571,34.89819],[45.84684,34.89746],[45.84833,34.8973],[45.84928,34.8965],[45.84995,34.8949],[45.85076,34.89401],[45.85195,34.89445],[45.85224,34.89575],[45.85401,34.89624],[45.8563,34.89651],[45.85823,34.89628],[45.86129,34.89574],[45.86322,34.89565],[45.86549,34.89595],[45.86536,34.89715],[45.86494,34.89817],[45.865,34.90105],[45.86576,34.90207],[45.86522,34.90322],[45.86533,34.90423],[45.86597,34.90546],[45.86764,34.90551],[45.86907,34.90673],[45.86901,34.90795],[45.8691,34.90957],[45.86822,34.91266],[45.86803,34.91591],[45.86772,34.91808],[45.86767,34.91989],[45.86884,34.92125],[45.86885,34.92154],[45.86916,34.92377],[45.86875,34.92522],[45.86807,34.92631],[45.86809,34.92733],[45.86952,34.92861],[45.87112,34.92925],[45.87262,34.92996],[45.87309,34.93111],[45.87302,34.93219],[45.87234,34.93328],[45.87186,34.93516],[45.87271,34.93595],[45.87337,34.93631],[45.87459,34.93601],[45.87565,34.93593],[45.87646,34.93686],[45.87778,34.93721],[45.87859,34.93778],[45.8786,34.93879],[45.87854,34.93987],[45.87917,34.94073],[45.88015,34.9413],[45.88149,34.9423],[45.88178,34.94353],[45.8818,34.94432],[45.88199,34.94519],[45.88262,34.94576],[45.88359,34.94582],[45.88436,34.94538],[45.88533,34.94516],[45.88735,34.94521],[45.88851,34.94599],[45.88976,34.94707],[45.8902,34.94699],[45.89125,34.94677],[45.89196,34.94705],[45.8918,34.94798],[45.89155,34.94871],[45.89227,34.94936],[45.89359,34.94971],[45.89422,34.95021],[45.89423,34.95085],[45.89372,34.95173],[45.8941,34.95309],[45.89359,34.95375],[45.89299,34.95426],[45.89326,34.95491],[45.89407,34.95541],[45.89522,34.95626],[45.8956,34.95742],[45.89614,34.95821],[45.8973,34.9587],[45.89775,34.9592],[45.89771,34.95957],[45.89735,34.96116],[45.89642,34.96268],[45.89625,34.96348],[45.89503,34.96385],[45.89496,34.9645],[45.89454,34.96537],[45.89402,34.96559],[45.89359,34.96632],[45.8936,34.96697],[45.8931,34.9682],[45.89215,34.96879],[45.89102,34.96938],[45.89051,34.97032],[45.89046,34.9722],[45.89066,34.97321],[45.89147,34.97414],[45.89175,34.97501],[45.89116,34.97602],[45.89031,34.97726],[45.88998,34.97856],[45.8902,34.98037],[45.88926,34.98182],[45.88743,34.98234],[45.88754,34.98343],[45.88818,34.98465],[45.88865,34.98616],[45.88876,34.98739],[45.88993,34.98845],[45.88804,34.99072],[45.88806,34.99181],[45.88721,34.9929],[45.88643,34.99355],[45.88645,34.99478],[45.88559,34.99544],[45.88553,34.99659],[45.88556,34.99818],[45.88593,34.99948],[45.88446,35.00058],[45.88116,35.00213],[45.88108,35.00278],[45.88029,35.00307],[45.87959,35.00315],[45.87822,35.00461],[45.87789,35.00653],[45.87686,35.00722],[45.87459,35.00775],[45.87393,35.00963],[45.87423,35.01144],[45.87529,35.01186],[45.8768,35.01271],[45.87823,35.01342],[45.87939,35.01421],[45.87966,35.01507],[45.8795,35.01551],[45.87838,35.0166],[45.87753,35.01791],[45.87702,35.01907],[45.87768,35.02073],[45.87779,35.02203],[45.87764,35.0234],[45.87663,35.0255],[45.8764,35.02724],[45.8767,35.02875],[45.87673,35.03006],[45.87571,35.03173],[45.8752,35.0326],[45.87469,35.03376],[45.87594,35.0344],[45.87717,35.03446],[45.87781,35.03568],[45.87872,35.03719],[45.8802,35.03725],[45.8984,35.04631],[45.90023,35.04783],[45.90226,35.04824],[45.90411,35.0483],[45.90657,35.04784],[45.90858,35.04732],[45.90971,35.04672],[45.91084,35.04628],[45.91146,35.0462],[45.9126,35.04626],[45.91445,35.04639],[45.9178,35.04658],[45.9192,35.04635],[45.92157,35.04618],[45.92343,35.04681],[45.92475,35.04695],[45.92615,35.04671],[45.92729,35.04642],[45.92799,35.04612],[45.93011,35.0457],[45.93046,35.04646],[45.93051,35.04863],[45.93019,35.05007],[45.92907,35.05146],[45.9277,35.05299],[45.92631,35.05379],[45.92263,35.05455],[45.92141,35.05492],[45.92063,35.0558],[45.92048,35.05703],[45.92051,35.0584],[45.92089,35.05962],[45.92153,35.06049],[45.92227,35.06221],[45.92221,35.0638],[45.92225,35.06554],[45.92213,35.06843],[45.9221,35.07074],[45.92185,35.07139],[45.92146,35.07371],[45.92133,35.07616],[45.92173,35.07811],[45.92237,35.07941],[45.92233,35.0815],[45.92208,35.08215],[45.92198,35.08569],[45.92192,35.09097],[45.92205,35.09265],[45.92182,35.09465],[45.92159,35.09625],[45.92187,35.09704],[45.92388,35.09623],[45.92482,35.0952],[45.92576,35.09368],[45.92847,35.08888],[45.93035,35.08634],[45.93189,35.0843],[45.93414,35.08255],[45.93598,35.08238],[45.93698,35.08346],[45.9378,35.08489],[45.93908,35.08697],[45.94053,35.08891],[45.94196,35.08998],[45.94384,35.09127],[45.94587,35.09168],[45.94701,35.09131],[45.9491,35.09049],[45.95093,35.08982],[45.95232,35.08865],[45.95334,35.08734],[45.95402,35.08632],[45.95566,35.08465],[45.95686,35.08312],[45.95851,35.08224],[45.95991,35.08179],[45.9621,35.08126],[45.96376,35.0811],[45.96551,35.08036],[45.9669,35.07984],[45.96733,35.07912],[45.96783,35.0781],[45.96779,35.076],[45.96846,35.07434],[45.97029,35.07366],[45.97214,35.07365],[45.97459,35.07305],[45.97591,35.07303],[45.97775,35.07287],[45.97941,35.07242],[45.98037,35.07219],[45.98177,35.07175],[45.98237,35.07102],[45.98297,35.07007],[45.98374,35.06949],[45.9847,35.06904],[45.98734,35.06902],[45.98847,35.06821],[45.98924,35.06748],[45.99002,35.06661],[45.99053,35.06595],[45.99148,35.065],[45.99269,35.06441],[45.99548,35.06316],[45.99705,35.06278],[45.99881,35.06269],[45.99978,35.06268],[46.00121,35.06355],[46.0015,35.06478],[46.00162,35.06674],[46.00236,35.06876],[46.00318,35.07042],[46.00444,35.07194],[46.00559,35.07236],[46.00744,35.07257],[46.00911,35.07263],[46.01202,35.07268],[46.01465,35.07208],[46.0163,35.07083],[46.01707,35.06982],[46.01705,35.06851],[46.01737,35.06669],[46.01841,35.0656],[46.0205,35.06457],[46.02328,35.06296],[46.02571,35.06127],[46.02675,35.0601],[46.02743,35.05851],[46.02776,35.05727],[46.02722,35.05691],[46.02607,35.05627],[46.02587,35.05532],[46.02771,35.05451],[46.03006,35.05326],[46.0325,35.05238],[46.03461,35.05214],[46.03635,35.05126],[46.03907,35.05081],[46.04049,35.05152],[46.04103,35.0521],[46.04184,35.05289],[46.04307,35.05302],[46.04455,35.05243],[46.0455,35.05134],[46.04663,35.05039],[46.04812,35.04994],[46.04945,35.05087],[46.05001,35.05232],[46.05108,35.05304],[46.05239,35.05302],[46.05317,35.0523],[46.05315,35.05106],[46.05252,35.05005],[46.05206,35.04904],[46.05204,35.04817],[46.05273,35.04758],[46.05291,35.04737],[46.05455,35.04598],[46.05559,35.04525],[46.05618,35.04372],[46.05641,35.04205],[46.05648,35.04053],[46.05637,35.03937],[46.05724,35.03871],[46.05828,35.03819],[46.06031,35.03825],[46.06226,35.03925],[46.0635,35.03982],[46.0635,35.03996],[46.06528,35.04133],[46.06618,35.04212],[46.0677,35.04341],[46.06782,35.04529],[46.06821,35.04696],[46.06823,35.04841],[46.06852,35.04978],[46.0695,35.05043],[46.07215,35.05113],[46.07366,35.0517],[46.0764,35.05277],[46.07801,35.05428],[46.07989,35.056],[46.07993,35.05781],[46.07969,35.05934],[46.07839,35.06036],[46.07681,35.06045],[46.076,35.05958],[46.07475,35.05858],[46.07333,35.05772],[46.07165,35.05723],[46.06955,35.05768],[46.0687,35.05935],[46.06837,35.0608],[46.06813,35.06233],[46.06816,35.06378],[46.06828,35.0653],[46.069,35.06631],[46.0699,35.06717],[46.07088,35.06803],[46.07222,35.06911],[46.07241,35.06961],[46.07244,35.07179],[46.07092,35.07484],[46.06989,35.07652],[46.06983,35.07761],[46.07028,35.07833],[46.07188,35.07933],[46.07217,35.08049],[46.07183,35.08107],[46.07131,35.08173],[46.07106,35.0826],[46.07125,35.08318],[46.0717,35.08375],[46.07294,35.08447],[46.0741,35.08489],[46.07656,35.08488],[46.07771,35.0853],[46.07869,35.08573],[46.07994,35.08681],[46.08118,35.08745],[46.08472,35.08815],[46.08622,35.08836],[46.08815,35.08841],[46.09027,35.0889],[46.09204,35.08925],[46.09336,35.08931],[46.09536,35.08813],[46.09579,35.08726],[46.09647,35.08595],[46.09654,35.08508],[46.09704,35.08385],[46.09737,35.08239],[46.09761,35.08138],[46.09821,35.08043],[46.09943,35.07977],[46.10065,35.07918],[46.10284,35.07858],[46.10337,35.07858],[46.10442,35.0782],[46.10661,35.07812],[46.10741,35.07811],[46.10934,35.07795],[46.11048,35.07794],[46.11164,35.07851],[46.1126,35.07814],[46.11328,35.07733],[46.11424,35.07661],[46.11555,35.07587],[46.11616,35.07564],[46.11713,35.07614],[46.11811,35.07686],[46.11892,35.07766],[46.1199,35.07823],[46.12131,35.07858],[46.12148,35.07807],[46.12254,35.07842],[46.12406,35.07943],[46.12549,35.08064],[46.128,35.08287],[46.12951,35.08358],[46.13206,35.08392],[46.13295,35.08406],[46.13462,35.08412],[46.13577,35.08425],[46.13745,35.08497],[46.14039,35.08675],[46.14146,35.08754],[46.14296,35.08782],[46.14411,35.08781],[46.14534,35.08795],[46.14711,35.08829],[46.14887,35.08828],[46.15123,35.08775],[46.1529,35.08752],[46.15501,35.0875],[46.15677,35.08756],[46.15863,35.08812],[46.1597,35.08855],[46.16131,35.08998],[46.16204,35.09114],[46.16312,35.09243],[46.16386,35.09424],[46.1645,35.09554],[46.16601,35.0964],[46.16682,35.09755],[46.16765,35.09921],[46.16872,35.1],[46.17067,35.10071],[46.17211,35.10221],[46.17398,35.10358],[46.17603,35.1045],[46.17843,35.10564],[46.1786,35.10557],[46.17987,35.10715],[46.18227,35.10843],[46.18748,35.10969],[46.18961,35.11025],[46.19095,35.11111],[46.19133,35.11262],[46.1844,35.11533],[46.18227,35.11626],[46.17892,35.11738],[46.17745,35.11833],[46.17622,35.11863],[46.17226,35.11867],[46.17022,35.11818],[46.16833,35.12059],[46.16669,35.12176],[46.16486,35.12301],[46.16225,35.12419],[46.16067,35.12493],[46.15878,35.12712],[46.15696,35.12851],[46.15557,35.12947],[46.1549,35.13025],[46.15456,35.13179],[46.15476,35.13295],[46.15586,35.13512],[46.15685,35.13641],[46.15802,35.13778],[46.16077,35.13957],[46.16107,35.14087],[46.16013,35.14175],[46.15891,35.1427],[46.15896,35.14524],[46.1593,35.14893],[46.16002,35.15008],[46.15917,35.15132],[46.15769,35.15228],[46.1562,35.15294],[46.15563,35.15491],[46.15512,35.15607],[46.15466,35.15679],[46.1551,35.15933],[46.15565,35.16085],[46.15605,35.16317],[46.15599,35.1644],[46.15636,35.16548],[46.15761,35.16612],[46.15916,35.16672],[46.16035,35.16782],[46.16137,35.16943],[46.1623,35.17003],[46.16387,35.17107],[46.16467,35.17157],[46.16566,35.17244],[46.16673,35.17329],[46.16799,35.17444],[46.16951,35.17588],[46.17104,35.17724],[46.1721,35.17767],[46.17556,35.17887],[46.17681,35.17966],[46.17956,35.1805],[46.1805,35.18068],[46.18125,35.18136],[46.1827,35.18309],[46.18456,35.18394],[46.18749,35.18478],[46.19014,35.18498],[46.19188,35.18486],[46.19341,35.1847],[46.19421,35.18458],[46.19466,35.18429],[46.19525,35.18537],[46.19562,35.18638],[46.19511,35.18711],[46.1954,35.18848],[46.1963,35.18927],[46.1973,35.19064],[46.19749,35.19173],[46.19726,35.19311],[46.19657,35.19405],[46.19555,35.19566],[46.19567,35.19718],[46.19612,35.19797],[46.19683,35.1984],[46.19897,35.19954],[46.20022,35.20011],[46.2008,35.20069],[46.20073,35.20091],[46.20084,35.20118],[46.20127,35.2013],[46.1936,35.20349],[46.19352,35.20416],[46.19389,35.20524],[46.19463,35.20726],[46.19467,35.20915],[46.19418,35.21096],[46.19326,35.21329],[46.19197,35.21504],[46.19077,35.21623],[46.18933,35.21978],[46.18708,35.22176],[46.18545,35.22369],[46.18458,35.22438],[46.18255,35.22614],[46.18127,35.22706],[46.17969,35.22809],[46.17817,35.22866],[46.17743,35.22872],[46.17688,35.22873],[46.17564,35.22833],[46.17501,35.22777],[46.17425,35.22702],[46.1737,35.22678],[46.17302,35.22668],[46.17209,35.22628],[46.17189,35.22543],[46.17076,35.22457],[46.16977,35.22413],[46.16897,35.22413],[46.16799,35.22444],[46.16722,35.22461],[46.16578,35.22467],[46.16485,35.22457],[46.16436,35.22427],[46.16367,35.22393],[46.16305,35.22352],[46.16248,35.22303],[46.16188,35.22234],[46.16069,35.22248],[46.15947,35.22325],[46.15814,35.22437],[46.15643,35.22505],[46.15502,35.22526],[46.15368,35.22593],[46.1521,35.22662],[46.14879,35.2279],[46.14701,35.22832],[46.14603,35.22853],[46.14438,35.22845],[46.13998,35.22897],[46.13707,35.22899],[46.1346,35.22894],[46.13265,35.22838],[46.1305,35.2279],[46.1285,35.22903],[46.12594,35.23037],[46.12429,35.23119],[46.12355,35.23151],[46.12365,35.2323],[46.12514,35.23356],[46.12744,35.23512],[46.12605,35.23623],[46.1237,35.23526],[46.11911,35.23262],[46.11707,35.23409],[46.11477,35.23532],[46.11343,35.23598],[46.11251,35.23918],[46.11141,35.2399],[46.10982,35.24037],[46.10883,35.2404],[46.10978,35.24158],[46.11178,35.24334],[46.11356,35.24397],[46.11506,35.24432],[46.11647,35.24453],[46.1186,35.24494],[46.12126,35.24609],[46.12287,35.24708],[46.12327,35.24818],[46.12336,35.24876],[46.12326,35.24882],[46.1238,35.24998],[46.12424,35.25114],[46.12459,35.25229],[46.12503,35.25344],[46.12562,35.25425],[46.12688,35.25486],[46.12814,35.2558],[46.12891,35.25674],[46.1296,35.25789],[46.13036,35.25857],[46.13172,35.26033],[46.13289,35.26093],[46.13431,35.26146],[46.13532,35.2622],[46.13576,35.26329],[46.13702,35.26423],[46.13845,35.26496],[46.13962,35.26563],[46.14038,35.26604],[46.14105,35.26623],[46.14156,35.26725],[46.14241,35.26833],[46.14318,35.26955],[46.14428,35.27036],[46.14513,35.2713],[46.14598,35.27232],[46.14691,35.2732],[46.14776,35.27414],[46.14778,35.27557],[46.14806,35.27706],[46.1485,35.27822],[46.14855,35.27984],[46.14971,35.28038],[46.15071,35.28078],[46.15204,35.28084],[46.15396,35.2815],[46.15563,35.28197],[46.15832,35.28371],[46.15883,35.28429],[46.15802,35.28528],[46.15662,35.2859],[46.15548,35.28686],[46.155,35.28789],[46.1537,35.28939],[46.15239,35.29036],[46.15182,35.29104],[46.15085,35.29214],[46.15054,35.2933],[46.15073,35.29479],[46.15059,35.29602],[46.15094,35.29683],[46.15145,35.29771],[46.1514,35.29927],[46.15076,35.3005],[46.14979,35.30187],[46.14908,35.30371],[46.14853,35.30542],[46.14806,35.30658],[46.14733,35.30787],[46.14679,35.30965],[46.14632,35.31129],[46.14543,35.31251],[46.14445,35.31334],[46.14283,35.31539],[46.14185,35.31594],[46.1403,35.31766],[46.13849,35.31855],[46.13776,35.31924],[46.13644,35.3202],[46.1353,35.32096],[46.13391,35.32213],[46.13301,35.32281],[46.13227,35.32356],[46.13081,35.32501],[46.12967,35.32638],[46.12844,35.32754],[46.12737,35.32768],[46.12661,35.3279],[46.12632,35.32906],[46.12633,35.33],[46.1266,35.33095],[46.12721,35.33231],[46.12747,35.33299],[46.12772,35.33401],[46.12751,35.33496],[46.12611,35.33572],[46.12471,35.33662],[46.12159,35.33827],[46.1201,35.33855],[46.11868,35.33843],[46.11694,35.33837],[46.11561,35.33852],[46.11438,35.33908],[46.11298,35.3399],[46.11109,35.34128],[46.10896,35.34293],[46.10633,35.34451],[46.10503,35.34561],[46.10297,35.34657],[46.10082,35.34713],[46.09908,35.34756],[46.09777,35.34852],[46.09663,35.34961],[46.09555,35.3501],[46.09423,35.35065],[46.0935,35.35134],[46.0928,35.35379],[46.09324,35.35501],[46.09343,35.35637],[46.09381,35.35875],[46.09316,35.35964],[46.09192,35.36026],[46.09027,35.36074],[46.08952,35.36082],[46.08919,35.36096],[46.08606,35.36207],[46.08439,35.36201],[46.08298,35.36216],[46.08175,35.36292],[46.08051,35.36333],[46.07928,35.36409],[46.07788,35.36478],[46.07672,35.36499],[46.07572,35.36507],[46.07465,35.36521],[46.07308,35.36597],[46.0726,35.36686],[46.0717,35.36755],[46.07088,35.36844],[46.06998,35.36912],[46.06875,35.37022],[46.06862,35.37122],[46.06808,35.37204],[46.06741,35.3728],[46.06615,35.37357],[46.06486,35.37521],[46.06438,35.37679],[46.06452,35.37816],[46.06387,35.37995],[46.06223,35.38169],[46.06035,35.3832],[46.05822,35.38478],[46.05658,35.38615],[46.05493,35.38705],[46.05353,35.38787],[46.05206,35.38911],[46.05133,35.39],[46.05087,35.39225],[46.04974,35.39409],[46.04869,35.39573],[46.0479,35.39791],[46.0475,35.39894],[46.04563,35.40153],[46.04213,35.40523],[46.04073,35.40632],[46.03942,35.40742],[46.03871,35.40954],[46.03857,35.41097],[46.03685,35.41247],[46.03563,35.41391],[46.035,35.41535],[46.03418,35.4163],[46.03279,35.41754],[46.03222,35.41849],[46.03158,35.41972],[46.03011,35.42116],[46.02911,35.42208],[46.02905,35.42357],[46.02922,35.42708],[46.02859,35.42926],[46.02771,35.43138],[46.02724,35.43294],[46.02578,35.43458],[46.02467,35.43605],[46.02392,35.43773],[46.02212,35.43944],[46.02048,35.44068],[46.01734,35.44179],[46.01578,35.44309],[46.01488,35.44418],[46.0139,35.44487],[46.01342,35.44603],[46.01203,35.44781],[46.01107,35.44978],[46.01002,35.45156],[46.00965,35.45381],[46.00909,35.45531],[46.00754,35.45695],[46.0059,35.45805],[46.00518,35.45982],[46.00488,35.46159],[46.00482,35.46282],[46.00439,35.46395],[46.00399,35.46574],[46.00307,35.46779],[46.00209,35.46882],[46.00077,35.46998],[45.99985,35.47085],[45.99873,35.47204],[45.9981,35.47322],[45.99715,35.4743],[45.9963,35.47592],[45.99529,35.47802],[45.99468,35.47959],[45.99367,35.48169],[45.99265,35.48314],[45.99163,35.48465],[45.99078,35.48682],[45.9897,35.48918],[45.98867,35.49037],[45.98814,35.49214],[45.98777,35.49384],[45.98653,35.49545],[45.9863,35.49599],[45.98671,35.49778],[45.98721,35.49908],[45.99327,35.51958],[45.99758,35.51787],[45.9995,35.51726],[46.0011,35.51698],[46.00391,35.51669],[46.00521,35.51714],[46.00605,35.51763],[46.00875,35.51763],[46.01207,35.51825],[46.01473,35.51882],[46.01706,35.51892],[46.01911,35.51874],[46.01648,35.52215],[46.01435,35.52375],[46.01197,35.52568],[46.01015,35.52694],[46.00936,35.528],[46.00801,35.52874],[46.00586,35.52974],[46.00411,35.53061],[46.00238,35.5324],[46.00111,35.5336],[45.99992,35.53427],[45.99895,35.53421],[45.99715,35.5343],[45.99715,35.54263],[45.9973,35.54401],[45.99856,35.54656],[45.9991,35.54791],[45.99819,35.54808],[45.99714,35.54802],[45.99594,35.54842],[45.99467,35.54949],[45.9935,35.55094],[45.99255,35.55207],[45.99137,35.55307],[45.98956,35.55525],[45.98822,35.55664],[45.98754,35.55888],[45.98652,35.56014],[45.98468,35.56075],[45.98326,35.56096],[45.98214,35.56222],[45.98152,35.56367],[45.98035,35.56526],[45.97998,35.56703],[45.97938,35.56914],[45.97744,35.57277],[45.97684,35.57514],[45.97654,35.57626],[45.97479,35.57739],[45.97345,35.57879],[45.97291,35.57978],[45.97294,35.58149],[45.97362,35.58351],[45.97354,35.58485],[45.97463,35.58554],[45.97656,35.58552],[45.97816,35.58472],[45.97927,35.58425],[45.98128,35.5839],[45.98273,35.58382],[45.98417,35.58354],[45.98545,35.58314],[45.986,35.58248],[45.98704,35.58207],[45.98888,35.58192],[45.98985,35.58191],[45.99057,35.58158],[45.99127,35.58072],[45.99222,35.58005],[45.99271,35.57958],[45.99364,35.57859],[45.99443,35.57773],[45.99546,35.577],[45.99755,35.57665],[45.99884,35.57671],[45.99981,35.57702],[46.00143,35.57766],[46.00313,35.57804],[46.0044,35.5773],[46.00542,35.57579],[46.00644,35.57479],[46.00918,35.57483],[46.0115,35.57441],[46.013,35.57319],[46.01463,35.57386],[46.01738,35.57436],[46.02085,35.57484],[46.02574,35.57414],[46.02728,35.57485],[46.02948,35.57574],[46.02994,35.57652],[46.02928,35.57831],[46.02858,35.5791],[46.02861,35.58048],[46.0284,35.58213],[46.0273,35.58338],[46.02594,35.58406],[46.02436,35.58525],[46.02383,35.58677],[46.02322,35.58888],[46.0218,35.5902],[46.02045,35.59127],[46.01798,35.59241],[46.01599,35.59322],[46.01399,35.59382],[46.013,35.59402],[46.01378,35.59534],[46.01405,35.59685],[46.01391,35.59803],[46.01316,35.6004],[46.01366,35.60158],[46.01384,35.60263],[46.01509,35.60452],[46.01601,35.60648],[46.01708,35.60759],[46.01784,35.60909],[46.01804,35.61126],[46.01736,35.61317],[46.01674,35.61436],[46.01644,35.61581],[46.01609,35.61811],[46.01515,35.61949],[46.01381,35.62102],[46.01287,35.62228],[46.01282,35.62353],[46.01316,35.6247],[46.01321,35.62694],[46.01292,35.62865],[46.01165,35.62977],[46.01103,35.6307],[46.01072,35.63149],[46.00994,35.63235],[46.00922,35.63295],[46.00802,35.63323],[46.00633,35.63324],[46.00473,35.63365],[46.00329,35.63426],[46.00184,35.63434],[46.00111,35.63415],[45.9999,35.63396],[45.99668,35.63386],[45.99395,35.63448],[45.99327,35.63541],[45.99361,35.63744],[45.99437,35.63933],[45.99493,35.64041],[45.99747,35.64108],[45.999,35.64152],[46.00022,35.64178],[46.00097,35.64302],[46.0014,35.64426],[46.00173,35.64505],[46.00318,35.6451],[46.00561,35.64579],[46.00652,35.64664],[46.00735,35.64814],[46.00865,35.64885],[46.01012,35.64956],[46.01133,35.64985],[46.01144,35.65112],[46.01115,35.6527],[46.01076,35.65402],[46.01216,35.65458],[46.01267,35.65636],[46.01312,35.65873],[46.01331,35.6601],[46.01358,35.66135],[46.01424,35.66233],[46.01483,35.66363],[46.01486,35.66482],[46.01473,35.66639],[46.01411,35.66771],[46.0135,35.66923],[46.01295,35.67009],[46.0116,35.67128],[46.01082,35.67247],[46.00915,35.67354],[46.00796,35.67421],[46.00781,35.675],[46.00771,35.67596],[46.00883,35.67735],[46.01013,35.67819],[46.0112,35.6793],[46.01292,35.68079],[46.01358,35.68131],[46.01401,35.68242],[46.01434,35.68321],[46.01548,35.68372],[46.01621,35.68391],[46.01742,35.68403],[46.018,35.68481],[46.01881,35.685],[46.01969,35.68473],[46.02113,35.68419],[46.0229,35.68418],[46.02396,35.68456],[46.02438,35.68513],[46.02576,35.68586],[46.0261,35.68683],[46.0262,35.68782],[46.02622,35.6888],[46.02584,35.69006],[46.02586,35.69084],[46.02605,35.69124],[46.02685,35.69195],[46.02879,35.69232],[46.03072,35.69224],[46.03162,35.69282],[46.03237,35.69406],[46.03216,35.69551],[46.03162,35.69677],[46.03156,35.69755],[46.03125,35.69854],[46.03103,35.69959],[46.03202,35.70057],[46.03358,35.70167],[46.03416,35.70278],[46.03467,35.70396],[46.03582,35.70519],[46.03735,35.70511],[46.03879,35.70438],[46.04072,35.70436],[46.04171,35.7052],[46.04221,35.70618],[46.04272,35.70652],[46.04407,35.70655],[46.04549,35.70496],[46.04628,35.70391],[46.04696,35.70193],[46.04772,35.70124],[46.0503,35.69992],[46.05239,35.69951],[46.05585,35.69947],[46.05836,35.70004],[46.06014,35.70042],[46.06161,35.70096],[46.06255,35.69993],[46.06323,35.69789],[46.06432,35.69597],[46.06542,35.69465],[46.06661,35.69365],[46.06787,35.69239],[46.06938,35.69152],[46.07028,35.69177],[46.07134,35.69249],[46.0732,35.69286],[46.07554,35.69316],[46.0795,35.69352],[46.08192,35.69369],[46.0833,35.694],[46.08427,35.69399],[46.0855,35.69346],[46.08716,35.69389],[46.08805,35.69369],[46.08955,35.69269],[46.09117,35.6928],[46.0919,35.69325],[46.09392,35.69363],[46.09561,35.69341],[46.09649,35.69288],[46.09744,35.69235],[46.09782,35.69129],[46.09828,35.6899],[46.09922,35.68851],[46.10009,35.68811],[46.1005,35.68763],[46.1033,35.68735],[46.1066,35.68745],[46.11146,35.68825],[46.11502,35.6888],[46.11729,35.68944],[46.11964,35.69033],[46.12207,35.69103],[46.12347,35.69239],[46.12438,35.69343],[46.12602,35.69473],[46.1286,35.69496],[46.13191,35.69499],[46.13459,35.69595],[46.13734,35.69657],[46.13905,35.69722],[46.13979,35.69767],[46.14105,35.69791],[46.1418,35.69764],[46.14275,35.69671],[46.14418,35.69578],[46.14625,35.69483],[46.14817,35.69416],[46.15161,35.69287],[46.15321,35.69266],[46.15506,35.69211],[46.15584,35.69105],[46.15798,35.68952],[46.15892,35.68852],[46.16061,35.68811],[46.16303,35.68841],[46.16466,35.68905],[46.1662,35.68956],[46.16653,35.69008],[46.16688,35.69041],[46.16753,35.69165],[46.16822,35.69348],[46.16898,35.69498],[46.16941,35.69622],[46.17032,35.69733],[46.17155,35.69817],[46.17309,35.69887],[46.17416,35.69985],[46.17419,35.70096],[46.17407,35.70287],[46.17409,35.70385],[46.17453,35.70575],[46.17496,35.7068],[46.17514,35.70772],[46.17598,35.70922],[46.17762,35.71051],[46.1795,35.71161],[46.18128,35.71192],[46.18292,35.71308],[46.18511,35.71378],[46.18762,35.71421],[46.18939,35.71425],[46.19022,35.71485],[46.19151,35.71535],[46.19218,35.71639],[46.19358,35.71788],[46.19426,35.71899],[46.19622,35.72009],[46.19834,35.72131],[46.20036,35.72181],[46.2023,35.72212],[46.20432,35.72223],[46.20586,35.72227],[46.20771,35.72245],[46.21012,35.72203],[46.21568,35.72197],[46.21758,35.72043],[46.21822,35.7199],[46.22069,35.71889],[46.22325,35.71814],[46.22558,35.71752],[46.22775,35.71743],[46.22856,35.71755],[46.2292,35.71748],[46.22994,35.71735],[46.23112,35.71686],[46.23216,35.71626],[46.233,35.71485],[46.23407,35.71505],[46.23601,35.71582],[46.23683,35.71627],[46.23838,35.71671],[46.24072,35.71714],[46.24244,35.7183],[46.243,35.71819],[46.24642,35.71983],[46.24782,35.72106],[46.24938,35.72209],[46.25004,35.72274],[46.25149,35.72387],[46.25394,35.7257],[46.25637,35.72666],[46.25904,35.72724],[46.26105,35.72819],[46.26285,35.72886],[46.26527,35.72911],[46.26793,35.72916],[46.26978,35.72895],[46.27133,35.72846],[46.27455,35.72958],[46.27714,35.73082],[46.28097,35.73342],[46.28373,35.73412],[46.28647,35.73411],[46.28827,35.73402],[46.28834,35.7373],[46.28804,35.7392],[46.28654,35.74111],[46.28355,35.74513],[46.28613,35.7461],[46.28905,35.74734],[46.29067,35.74798],[46.29537,35.74959],[46.29643,35.75011],[46.29837,35.75036],[46.29951,35.75128],[46.30081,35.75206],[46.30245,35.75355],[46.30296,35.75545],[46.30298,35.75683],[46.30389,35.75808],[46.30398,35.75867],[46.30391,35.75965],[46.30433,35.76096],[46.30475,35.76174],[46.30577,35.76208],[46.30717,35.76206],[46.30878,35.76172],[46.31048,35.76197],[46.31178,35.76255],[46.31259,35.76288],[46.31468,35.76254],[46.31677,35.762],[46.31902,35.76159],[46.32072,35.76178],[46.32137,35.76223],[46.32226,35.76269],[46.32363,35.76268],[46.32492,35.76234],[46.32685,35.76213],[46.32855,35.76265],[46.32993,35.76297],[46.33106,35.76316],[46.33244,35.76319],[46.33387,35.76377],[46.33376,35.76907],[46.33845,35.77382],[46.33754,35.78053],[46.34603,35.78727],[46.34421,35.80376],[46.33987,35.81367],[46.34102,35.81913],[46.32969,35.8184],[46.31561,35.81879],[46.30805,35.82652],[46.30116,35.8275],[46.29907,35.83391],[46.29423,35.83504],[46.2887,35.8345],[46.28788,35.82621],[46.28053,35.81986],[46.27456,35.81686],[46.26853,35.81376],[46.26538,35.81423],[46.25978,35.81127],[46.25281,35.81291],[46.24652,35.80982],[46.23922,35.81303],[46.23492,35.81389],[46.23113,35.81283],[46.22175,35.80048],[46.21655,35.79956],[46.21134,35.79419],[46.20299,35.7996],[46.19521,35.80038],[46.19259,35.80659],[46.1846,35.81232],[46.17627,35.80664],[46.17549,35.80151],[46.16766,35.80006],[46.15516,35.80574],[46.1454,35.81643],[46.13661,35.82439],[46.13536,35.83679],[46.13892,35.83863],[46.13669,35.84373],[46.12072,35.84494],[46.1075,35.84837],[46.102,35.84874],[46.09238,35.85728],[46.08172,35.85692],[46.08137,35.85878],[46.06844,35.85647],[46.05689,35.85528],[46.04821,35.85066],[46.04458,35.84531],[46.04075,35.8452],[46.03349,35.83869],[46.02211,35.83496],[46.01505,35.83785],[46.00592,35.83657],[46.0021,35.83417],[45.98522,35.84011],[45.97826,35.83418],[45.97519,35.83448],[45.97144,35.83812],[45.96462,35.84429],[45.9602,35.83514],[45.95647,35.83602],[45.95598,35.82338],[45.95155,35.82261],[45.94888,35.82551],[45.94216,35.8252],[45.93948,35.82365],[45.93269,35.82488],[45.93215,35.8279],[45.92381,35.83109],[45.91331,35.83245],[45.90535,35.83628],[45.89631,35.83726],[45.8892,35.83477],[45.88735,35.83257],[45.88227,35.83095],[45.87967,35.81269],[45.87446,35.81125],[45.86877,35.81526],[45.8617,35.81983],[45.84949,35.81549],[45.83109,35.81003],[45.82014,35.81798],[45.80027,35.82704],[45.79691,35.81343],[45.77991,35.8107],[45.77335,35.8136],[45.77092,35.80508],[45.76437,35.79935],[45.76062,35.80517],[45.7555,35.80822],[45.75589,35.81346],[45.74707,35.82619],[45.73904,35.8277],[45.73883,35.83879],[45.73451,35.84432],[45.72915,35.84706],[45.72517,35.85259],[45.72366,35.86078],[45.71656,35.86168],[45.71679,35.86658],[45.71496,35.8687],[45.71724,35.87273],[45.713,35.87983],[45.70533,35.88525],[45.69799,35.88523],[45.69551,35.88716],[45.69509,35.89187],[45.69838,35.89462],[45.69328,35.90067],[45.68034,35.89774],[45.67765,35.90295],[45.67564,35.9065],[45.67123,35.91338],[45.67094,35.91581],[45.66846,35.92417],[45.6528,35.93591],[45.6484,35.93488],[45.63959,35.94395],[45.62736,35.94662],[45.62227,35.95768],[45.61835,35.95599],[45.61021,35.95764],[45.6082,35.96069],[45.60413,35.95763],[45.59476,35.96632],[45.59586,35.97247],[45.5916,35.97416],[45.59009,35.97696],[45.58541,35.97705],[45.58705,35.97223],[45.58208,35.97148],[45.57557,35.97608],[45.57558,35.98152],[45.57148,35.98307],[45.56361,35.98978],[45.55506,35.99816],[45.54969,36.00112],[45.54374,35.99894],[45.5371,35.99787],[45.53081,35.99542],[45.52177,35.99463],[45.51536,35.99624],[45.50621,35.99897],[45.5053,36.00265],[45.49782,36.00173],[45.49034,36.00247],[45.48355,36.00072],[45.4795,36.0023],[45.46678,35.99588],[45.4611,35.99572],[45.45487,35.98901],[45.45277,35.99453],[45.44032,35.99945],[45.43241,35.99475],[45.43327,35.99129],[45.43163,35.99039],[45.42704,35.98549],[45.42039,35.98171],[45.41382,35.98348],[45.41186,35.98225],[45.41075,35.98061],[45.40771,35.98028],[45.40777,35.97927],[45.40954,35.97728],[45.40857,35.97598],[45.40639,35.9758],[45.4051,35.97419],[45.40783,35.97055],[45.40592,35.96981],[45.40313,35.97055],[45.39819,35.97018],[45.39308,35.96772],[45.3894,35.97205],[45.3816,35.97465],[45.37457,35.96998],[45.37357,35.97356],[45.37625,35.97613],[45.37344,35.98287],[45.36645,35.98162],[45.36396,35.98287],[45.36242,35.97981],[45.36603,35.97621],[45.36638,35.97371],[45.36261,35.9747],[45.36115,35.97623],[45.35764,35.97568],[45.35594,35.97354],[45.35105,35.97637],[45.34788,35.97933],[45.34717,35.98267],[45.35091,35.9874],[45.34244,35.99713],[45.34564,36.00187],[45.34198,36.00383],[45.34329,36.00697],[45.34203,36.00761],[45.34642,36.0147],[45.35287,36.01957],[45.35142,36.02444],[45.35135,36.02764],[45.35438,36.03432],[45.36035,36.03794],[45.36359,36.04267],[45.3717,36.05048],[45.37433,36.06218],[45.37873,36.07136],[45.37716,36.07567],[45.38245,36.07943],[45.37935,36.08728],[45.37471,36.0937],[45.37007,36.09901],[45.37006,36.10472],[45.3563,36.10905],[45.35011,36.10838],[45.34458,36.12091],[45.34113,36.12218],[45.34042,36.13011],[45.33717,36.13375],[45.32979,36.13684],[45.32706,36.13996],[45.32776,36.1453],[45.32434,36.14898],[45.3292,36.15648],[45.32796,36.15761],[45.32502,36.16386],[45.32576,36.16581],[45.32496,36.16735],[45.32035,36.16762],[45.32341,36.17805],[45.32067,36.18251],[45.3164,36.1835],[45.31831,36.18521],[45.32665,36.19038],[45.32293,36.19214],[45.32381,36.19495],[45.32813,36.19555],[45.33657,36.20367],[45.33182,36.20924],[45.32912,36.2148],[45.32261,36.21626],[45.32091,36.21938],[45.31475,36.22175],[45.3134,36.22744],[45.31549,36.2298],[45.31295,36.23793],[45.30256,36.23995],[45.29218,36.24142],[45.2776,36.24519],[45.2656,36.25328],[45.27715,36.26181],[45.28801,36.26757],[45.29475,36.26946],[45.30012,36.26802],[45.3009,36.27248],[45.30443,36.27362],[45.29222,36.28358],[45.28413,36.28799],[45.27517,36.29766],[45.26753,36.29542],[45.26189,36.30088],[45.2616,36.30655],[45.26475,36.31056],[45.26418,36.31415],[45.26786,36.32023],[45.26627,36.32409],[45.271,36.32295],[45.27333,36.33122],[45.27929,36.33424],[45.284,36.33603],[45.28252,36.34114],[45.27668,36.34234],[45.27497,36.34464],[45.27618,36.35081],[45.27189,36.35422],[45.27121,36.35955],[45.27536,36.36689],[45.26923,36.37108],[45.27002,36.37392],[45.27745,36.37618],[45.27361,36.38255],[45.27115,36.38893],[45.27228,36.39288],[45.26468,36.39595],[45.25844,36.40178],[45.25422,36.40239],[45.25024,36.40692],[45.25223,36.41433],[45.24155,36.41872],[45.24255,36.42423],[45.23767,36.43357],[45.23094,36.43266],[45.22489,36.42872],[45.21899,36.42967],[45.20786,36.4244],[45.19658,36.42379],[45.18724,36.42226],[45.17927,36.41796],[45.16883,36.41876],[45.15481,36.4165],[45.1532,36.40492],[45.14353,36.40507],[45.13767,36.40762],[45.12905,36.40521],[45.12247,36.40784],[45.11452,36.4055],[45.1089,36.41144],[45.10397,36.4135],[45.1044,36.41598],[45.09154,36.42258],[45.08779,36.42199],[45.08236,36.42521],[45.081,36.42867],[45.07826,36.43131],[45.07623,36.43824],[45.07935,36.44489],[45.0756,36.45431],[45.07179,36.46043],[45.06181,36.4627],[45.05794,36.47258],[45.05956,36.47528],[45.05457,36.48235],[45.05541,36.49411],[45.05351,36.50642],[45.04271,36.51165],[45.03808,36.51025],[45.03192,36.51451],[45.02712,36.51491],[45.02028,36.51708],[45.01275,36.51926],[45.0066,36.52695],[45.0049,36.533],[45.00182,36.5374],[45.00682,36.5462],[45.00496,36.55113],[45.01104,36.55437],[45.01574,36.55762],[45.02171,36.55694],[45.03778,36.56055],[45.03892,36.57016],[45.03937,36.58034],[45.03351,36.58287],[45.02833,36.58817],[45.02634,36.59681],[45.0271,36.60379],[45.03136,36.60785],[45.04074,36.60755],[45.04669,36.6111],[45.05298,36.61604],[45.06304,36.61408],[45.06667,36.62334],[45.06994,36.62956],[45.07021,36.63619],[45.06773,36.64336],[45.071,36.64339],[45.07207,36.65253],[45.06993,36.65826],[45.06779,36.66454],[45.0693,36.67415],[45.06531,36.68211],[45.06626,36.68812],[45.06053,36.69675],[45.05548,36.70373],[45.0494,36.71099],[45.04607,36.71715],[45.04112,36.7201],[45.04071,36.72351],[45.03158,36.73016],[45.0324,36.73654],[45.03054,36.74045],[45.02354,36.74353],[45.01809,36.7443],[45.01677,36.74617],[45.01207,36.74661],[45.01296,36.75244],[45.00726,36.75505],[45.00087,36.75271],[44.99772,36.75326],[44.98934,36.74776],[44.97347,36.74848],[44.96927,36.75141],[44.96567,36.75973],[44.95711,36.77307],[44.95308,36.77544],[44.94768,36.78056],[44.93962,36.78641],[44.9338,36.7849],[44.93025,36.78021],[44.92293,36.77635],[44.91171,36.77689],[44.9043,36.77839],[44.89585,36.77935],[44.89065,36.78235],[44.88354,36.78229],[44.87963,36.7805],[44.86508,36.77954],[44.8578,36.77218],[44.85244,36.77621],[44.84434,36.77858],[44.84451,36.78363],[44.84047,36.78918],[44.83713,36.79693],[44.83764,36.80199],[44.83746,36.80759],[44.83951,36.80911],[44.8388,36.81599],[44.84676,36.82417],[44.85334,36.8307],[44.8593,36.83222],[44.8664,36.83251],[44.86136,36.8376],[44.86114,36.84489],[44.87167,36.84607],[44.87671,36.84944],[44.88249,36.85208],[44.89033,36.85363],[44.89645,36.85436],[44.90189,36.85783],[44.90308,36.86191],[44.90253,36.86732],[44.90403,36.87274],[44.90085,36.87533],[44.906,36.88161],[44.90445,36.8842],[44.90848,36.89291],[44.91119,36.89424],[44.91281,36.89819],[44.91238,36.90487],[44.90876,36.90946],[44.91167,36.91268],[44.91244,36.91703],[44.91114,36.92194],[44.90445,36.92588],[44.89912,36.93368],[44.90015,36.93773],[44.89669,36.94463],[44.885,36.94632],[44.88499,36.9521],[44.88154,36.95404],[44.88445,36.96136],[44.88873,36.96649],[44.88923,36.97408],[44.89248,36.98004],[44.89417,36.98782],[44.89586,36.99835],[44.90062,37.00351],[44.90469,37.00373],[44.90587,37.00735],[44.90166,37.01423],[44.90019,37.02276],[44.89597,37.02554],[44.8945,37.02831],[44.88712,37.03075],[44.88318,37.0299],[44.87958,37.03098],[44.87392,37.03205],[44.86913,37.03196],[44.85682,37.03725],[44.8585,37.04374],[44.85331,37.04803],[44.84843,37.04675],[44.84278,37.04857],[44.83233,37.04519],[44.8247,37.04268],[44.81708,37.03962],[44.81283,37.04359],[44.80994,37.04502],[44.8074,37.04411],[44.80683,37.04642],[44.80205,37.04812],[44.80346,37.05639],[44.79911,37.06665],[44.78275,37.0758],[44.77737,37.0762],[44.77724,37.08503],[44.78398,37.08948],[44.78371,37.09181],[44.77795,37.09605],[44.77494,37.09646],[44.76633,37.09919],[44.76285,37.1052],[44.74969,37.11229],[44.75032,37.11519],[44.74752,37.11973],[44.75262,37.12495],[44.75585,37.1251],[44.7639,37.12908],[44.76447,37.13651],[44.77232,37.13914],[44.78016,37.14231],[44.78479,37.14466],[44.78598,37.14866],[44.78356,37.15664],[44.78559,37.15949],[44.78453,37.1637],[44.78622,37.16681],[44.77993,37.17381],[44.77214,37.17795],[44.771,37.18021],[44.76595,37.18364],[44.76822,37.19324],[44.76615,37.19943],[44.76133,37.20507],[44.76026,37.2169],[44.7626,37.22307],[44.75842,37.22623],[44.75766,37.22885],[44.76057,37.23475],[44.76657,37.23874],[44.76895,37.24508],[44.78676,37.25667],[44.79652,37.25714],[44.80136,37.25998],[44.80209,37.26502],[44.80281,37.26978],[44.8056,37.27181],[44.81295,37.27528],[44.81551,37.27985],[44.81048,37.28906],[44.80478,37.29992],[44.80078,37.30395],[44.79816,37.31016],[44.79202,37.31359],[44.78656,37.31757],[44.77634,37.32279],[44.77374,37.32668],[44.76649,37.32983],[44.75408,37.33051],[44.74919,37.33381],[44.74223,37.33492],[44.73861,37.33987],[44.72538,37.34454],[44.71967,37.34571],[44.71602,37.34852],[44.71559,37.35249],[44.7255,37.35332],[44.72462,37.35782],[44.7204,37.36062],[44.72173,37.36748],[44.72136,37.37227],[44.72305,37.37488],[44.71622,37.37699],[44.71008,37.38073],[44.7029,37.38092],[44.69847,37.3833],[44.68797,37.38517],[44.68331,37.38213],[44.67549,37.3847],[44.66883,37.38326],[44.6553,37.38618],[44.65313,37.39257],[44.65539,37.39823],[44.65717,37.40082],[44.65207,37.40278],[44.64423,37.40856],[44.63334,37.41903],[44.63698,37.4236],[44.63203,37.43171],[44.62777,37.4322],[44.61874,37.43725],[44.60701,37.43623],[44.60012,37.4379],[44.59289,37.43846],[44.58773,37.43957],[44.57927,37.4475],[44.5861,37.45174],[44.58789,37.46051],[44.58626,37.46656],[44.58634,37.4767],[44.5823,37.48302],[44.58418,37.49675],[44.58605,37.50885],[44.5939,37.51147],[44.60107,37.51355],[44.60162,37.52527],[44.60491,37.52936],[44.60806,37.53973],[44.61293,37.5452],[44.61262,37.54957],[44.60739,37.5493],[44.60148,37.55338],[44.60277,37.55992],[44.61235,37.56237],[44.61368,37.56536],[44.60868,37.57002],[44.61236,37.57153],[44.60734,37.57609],[44.60242,37.5762],[44.59819,37.58011],[44.60556,37.58455],[44.61087,37.5879],[44.61206,37.59533],[44.61462,37.60167],[44.60894,37.60754],[44.60669,37.61124],[44.59945,37.61781],[44.59527,37.61574],[44.58614,37.62816],[44.58044,37.63732],[44.57316,37.63769],[44.56672,37.6419],[44.57387,37.65682],[44.57384,37.66577],[44.5896,37.67119],[44.59222,37.67729],[44.59108,37.68175],[44.59885,37.68405],[44.608,37.69015],[44.61714,37.69905],[44.62628,37.70742],[44.62233,37.71821],[44.62044,37.72792],[44.61581,37.73155],[44.61117,37.73247],[44.60654,37.73881],[44.60327,37.74027],[44.60108,37.74421],[44.59478,37.74815],[44.58628,37.76471],[44.57748,37.76573],[44.56947,37.76895],[44.56422,37.77109],[44.56344,37.77476],[44.55726,37.78046],[44.54352,37.78141],[44.5291,37.78291],[44.52138,37.78074],[44.51786,37.77721],[44.51434,37.77586],[44.49803,37.77369],[44.49408,37.77043],[44.48,37.77233],[44.47211,37.76392],[44.45785,37.76719],[44.45107,37.76854],[44.44498,37.77099],[44.44352,37.77737],[44.45029,37.78484],[44.4478,37.79691],[44.44806,37.80682],[44.43209,37.79897],[44.42436,37.79926],[44.42186,37.80446],[44.41697,37.8064],[44.41404,37.81571],[44.4064,37.81942],[44.39601,37.8215],[44.39171,37.82783],[44.39635,37.83767],[44.40441,37.84127],[44.40561,37.84569],[44.40337,37.85119],[44.39535,37.85709],[44.38801,37.86245],[44.37724,37.86442],[44.36234,37.86259],[44.34865,37.86673],[44.3384,37.87032],[44.33299,37.87426],[44.31748,37.87742],[44.31008,37.87006],[44.30232,37.86811],[44.29295,37.86712],[44.28838,37.87263],[44.28312,37.87271],[44.27415,37.87018],[44.26724,37.86764],[44.25859,37.86949],[44.25097,37.87621],[44.24638,37.87449],[44.24082,37.87891],[44.2387,37.88442],[44.23279,37.88505],[44.22209,37.88839],[44.22647,37.89282],[44.23292,37.89995],[44.22453,37.90664],[44.22707,37.91021],[44.23167,37.9127],[44.22919,37.91767],[44.23426,37.91993],[44.2359,37.92707],[44.24296,37.92915],[44.24718,37.93182],[44.24659,37.93719],[44.25109,37.94299],[44.24843,37.95107],[44.24332,37.95158],[44.24027,37.95535],[44.24129,37.96437],[44.24914,37.97042],[44.25493,37.97593],[44.25456,37.97976],[44.25969,37.98414],[44.26104,37.98879],[44.26789,37.99452],[44.26706,37.99963],[44.26898,38.00853],[44.27571,38.01635],[44.28175,38.02147],[44.28668,38.02137],[44.29333,38.02803],[44.30135,38.03252],[44.30455,38.03771],[44.30912,38.04614],[44.30556,38.04679],[44.30118,38.05456],[44.31221,38.05871],[44.32049,38.06287],[44.31989,38.06902],[44.31148,38.06808],[44.31199,38.07308],[44.31714,38.07416],[44.32161,38.07849],[44.32796,38.07768],[44.32873,38.08539],[44.33225,38.0893],[44.32864,38.09525],[44.32916,38.0985],[44.33534,38.09824],[44.35387,38.10554],[44.36211,38.10312],[44.36486,38.10448],[44.35842,38.11375],[44.35953,38.12357],[44.35446,38.12704],[44.34939,38.13105],[44.35145,38.13465],[44.36055,38.13528],[44.36827,38.13537],[44.37067,38.13825],[44.37994,38.13844],[44.38578,38.14456],[44.39264,38.14654],[44.39114,38.15321],[44.39553,38.15978],[44.39121,38.16496],[44.39169,38.16852],[44.39654,38.17222],[44.4,38.18351],[44.39727,38.18995],[44.40087,38.19396],[44.39772,38.19836],[44.39923,38.20163],[44.40212,38.20168],[44.40772,38.2143],[44.41126,38.21991],[44.40769,38.22655],[44.4055,38.23372],[44.39812,38.23814],[44.39949,38.24325],[44.40155,38.24633],[44.40224,38.25158],[44.4073,38.25414],[44.41305,38.25669],[44.41357,38.26126],[44.42267,38.26772],[44.42859,38.2696],[44.43314,38.26879],[44.43974,38.27483],[44.44841,38.28303],[44.45476,38.28434],[44.46034,38.28943],[44.46935,38.29453],[44.47287,38.29504],[44.47845,38.30202],[44.49201,38.30237],[44.49871,38.30973],[44.49665,38.31754],[44.49939,38.32159],[44.49665,38.32982],[44.49733,38.33373],[44.51038,38.33592],[44.51213,38.34093],[44.50976,38.34595],[44.50021,38.34575],[44.49553,38.34373],[44.49373,38.34615],[44.49913,38.35073],[44.48982,38.35787],[44.48371,38.35831],[44.47761,38.35767],[44.47295,38.35477],[44.47029,38.35841],[44.46282,38.35936],[44.46201,38.36494],[44.45913,38.36945],[44.45684,38.37427],[44.45179,38.378],[44.44857,38.38547],[44.43952,38.38357],[44.43056,38.37663],[44.41817,38.37024],[44.40303,38.36572],[44.40026,38.36724],[44.39133,38.36369],[44.38789,38.36266],[44.38446,38.35895],[44.37828,38.35798],[44.37281,38.36262],[44.36974,38.36888],[44.36564,38.36948],[44.36224,38.37547],[44.35684,38.3752],[44.35154,38.36926],[44.34212,38.37141],[44.335,38.36952],[44.32561,38.37019],[44.31473,38.37537],[44.31033,38.382],[44.30709,38.38908],[44.30042,38.39455],[44.31041,38.39536],[44.313,38.40438],[44.31902,38.40855],[44.31645,38.41771],[44.31664,38.42524],[44.3177,38.43225],[44.30573,38.44034],[44.3027,38.44682],[44.31061,38.45198],[44.30959,38.45823],[44.31374,38.46426],[44.3131,38.47739],[44.32243,38.48381],[44.32304,38.48784],[44.31991,38.492],[44.31885,38.49508],[44.32358,38.49938],[44.32488,38.50313],[44.32193,38.50544],[44.32104,38.51151],[44.31513,38.51505],[44.31266,38.52342],[44.30881,38.53018],[44.31038,38.53539],[44.31265,38.53898],[44.31305,38.54669],[44.31621,38.54743],[44.31645,38.55251],[44.31327,38.55599],[44.31352,38.56322],[44.31795,38.57391],[44.32272,38.57547],[44.32475,38.57811],[44.32476,38.5809],[44.32271,38.58638],[44.32342,38.58928],[44.31865,38.59884],[44.32079,38.60079],[44.31751,38.60791],[44.32194,38.60821],[44.32119,38.62328],[44.31399,38.62991],[44.30748,38.63599],[44.2917,38.64011],[44.28433,38.64083],[44.27284,38.64531],[44.26977,38.6505],[44.27126,38.65486],[44.27894,38.65707],[44.28146,38.66304],[44.27986,38.66793],[44.28239,38.67517],[44.27635,38.68],[44.27236,38.68482],[44.27275,38.69019],[44.26902,38.69823],[44.27117,38.70306],[44.26689,38.70496],[44.26123,38.70418],[44.26091,38.71494],[44.25457,38.71737],[44.25509,38.71981],[44.26372,38.71923],[44.26795,38.72314],[44.27424,38.72813],[44.28087,38.73311],[44.27995,38.73595],[44.27674,38.74003],[44.27695,38.74518],[44.28701,38.75361],[44.28815,38.75853],[44.29203,38.76398],[44.29192,38.76724],[44.28905,38.77051],[44.291,38.77538],[44.28991,38.77968],[44.28676,38.78292],[44.28979,38.78605],[44.29968,38.79133],[44.30236,38.80249],[44.31297,38.80566],[44.31465,38.80776],[44.30683,38.81617],[44.30326,38.82332],[44.29626,38.82672],[44.30183,38.83995],[44.29258,38.84285],[44.28264,38.84736],[44.27787,38.85478],[44.26669,38.85235],[44.25757,38.84778],[44.24592,38.85098],[44.24113,38.85793],[44.24448,38.86394],[44.24577,38.86942],[44.2408,38.87183],[44.23499,38.87824],[44.22911,38.88211],[44.2198,38.88599],[44.21149,38.88999],[44.21065,38.89801],[44.21564,38.90282],[44.21927,38.90442],[44.2204,38.90996],[44.21879,38.91764],[44.21145,38.92178],[44.19882,38.92258],[44.19675,38.93038],[44.18988,38.9339],[44.19554,38.93954],[44.19983,38.94518],[44.20017,38.9495],[44.19764,38.9508],[44.19047,38.95196],[44.18386,38.95575],[44.18231,38.9552],[44.18007,38.95653],[44.18151,38.96058],[44.18448,38.96544],[44.18819,38.96759],[44.18657,38.97148],[44.18826,38.97425],[44.19177,38.9747],[44.18755,38.97835],[44.18938,38.98069],[44.18189,38.98463],[44.17165,38.99018],[44.17529,39.00146],[44.18236,39.01168],[44.191,39.00996],[44.20308,39.01706],[44.21242,39.02148],[44.20501,39.03053],[44.19623,39.03799],[44.19378,39.04436],[44.20639,39.0555],[44.1953,39.06611],[44.19109,39.07512],[44.19825,39.08669],[44.20541,39.08973],[44.21081,39.08835],[44.21998,39.0915],[44.22709,39.09571],[44.22355,39.10298],[44.21869,39.10394],[44.21657,39.10758],[44.20743,39.11465],[44.21081,39.12145],[44.21351,39.13038],[44.20769,39.13761],[44.20119,39.14058],[44.19554,39.15074],[44.19066,39.15342],[44.18921,39.15877],[44.17894,39.16897],[44.16594,39.17703],[44.15305,39.18146],[44.14291,39.18588],[44.13602,39.18275],[44.12512,39.1858],[44.11215,39.19097],[44.10922,39.20025],[44.09718,39.20497],[44.09439,39.21709],[44.10132,39.22434],[44.09864,39.22733],[44.10151,39.23173],[44.10314,39.24318],[44.08897,39.24786],[44.0858,39.25652],[44.09142,39.26244],[44.09086,39.26888],[44.09455,39.27593],[44.10124,39.27674],[44.10708,39.28474],[44.10226,39.28957],[44.0899,39.29055],[44.07925,39.29632],[44.07753,39.30558],[44.07856,39.31165],[44.0789,39.31825],[44.07924,39.32432],[44.07499,39.33338],[44.0625,39.34296],[44.05674,39.34354],[44.05621,39.35532],[44.03766,39.3614],[44.0374,39.3663],[44.03199,39.37147],[44.03387,39.37729],[44.03919,39.37964],[44.04176,39.38359],[44.05444,39.38875],[44.05783,39.3858],[44.0518,39.39772],[44.05229,39.40486],[44.07069,39.41247],[44.08423,39.4077],[44.09538,39.41228],[44.1182,39.40174],[44.13054,39.40559],[44.13292,39.39884],[44.12412,39.38983],[44.13111,39.39038],[44.14482,39.39904],[44.15991,39.40239],[44.17535,39.40062],[44.18804,39.40204],[44.1942,39.41017],[44.21196,39.41723],[44.2243,39.41548],[44.23801,39.41373],[44.24758,39.39908],[44.26744,39.3993],[44.276,39.38295],[44.28868,39.37829],[44.2955,39.37732],[44.30644,39.38165],[44.32008,39.39139],[44.33362,39.38858],[44.35608,39.39956],[44.37992,39.41161],[44.4015,39.41368],[44.42172,39.41204],[44.42698,39.42914],[44.43225,39.43988],[44.42549,39.44781],[44.42009,39.46527],[44.41682,39.46666],[44.41371,39.46831],[44.41137,39.46949],[44.40835,39.47121],[44.4088,39.47303],[44.41042,39.47442],[44.41239,39.47515],[44.41608,39.48276],[44.41856,39.48614],[44.42707,39.48903],[44.43344,39.49292],[44.43388,39.49589],[44.43964,39.50111],[44.43776,39.50229],[44.44034,39.50506],[44.43845,39.50856],[44.43295,39.50913],[44.43294,39.51724],[44.43636,39.52008],[44.4312,39.52414],[44.42947,39.52927],[44.42534,39.53264],[44.42503,39.5375],[44.42679,39.53866],[44.42631,39.54021],[44.42687,39.54335],[44.42334,39.54791],[44.42393,39.54903],[44.42065,39.55141],[44.41953,39.55379],[44.41566,39.55484],[44.41753,39.55841],[44.42043,39.56092],[44.42452,39.56567],[44.42205,39.56749],[44.43478,39.57191],[44.44063,39.57262],[44.44669,39.57741],[44.46615,39.60071],[44.47998,39.61029],[44.48813,39.64269],[44.48425,39.64627],[44.48515,39.65153],[44.48433,39.65547],[44.48407,39.66545],[44.48295,39.66672],[44.48286,39.67036],[44.47631,39.67469],[44.47424,39.67943],[44.46702,39.68443],[44.47221,39.68691],[44.48013,39.69224],[44.48633,39.6952],[44.4926,39.70094],[44.61327,39.78175],[44.6162,39.77932],[44.62162,39.76992],[44.62154,39.76633],[44.62345,39.76561],[44.62401,39.76332],[44.62521,39.76252],[44.6265,39.76199],[44.6266,39.76153],[44.62636,39.76108],[44.6259,39.76083],[44.62596,39.76017],[44.62756,39.75948],[44.62718,39.75882],[44.62751,39.75854],[44.62849,39.759],[44.62947,39.75912],[44.63056,39.75889],[44.63106,39.75815],[44.62967,39.75642],[44.63037,39.75578],[44.63236,39.75607],[44.63263,39.75349],[44.63117,39.75272],[44.63119,39.75214],[44.63172,39.75175],[44.63137,39.75035],[44.63025,39.74865],[44.62947,39.74668],[44.63141,39.74404],[44.63472,39.74325],[44.63654,39.74113],[44.6388,39.74085],[44.6416,39.73872],[44.6408,39.73691],[44.64332,39.73522],[44.64172,39.73405],[44.64401,39.73264],[44.64561,39.73149],[44.6479,39.72769],[44.65248,39.72748],[44.65657,39.725],[44.65997,39.72146],[44.66098,39.7207],[44.66198,39.71861],[44.66559,39.71705],[44.66818,39.7147],[44.67668,39.71466],[44.68519,39.71514],[44.68969,39.71788],[44.69079,39.71648],[44.68761,39.7135],[44.69305,39.7132],[44.69647,39.7124],[44.70264,39.71027],[44.70314,39.71185],[44.70631,39.71303],[44.7103,39.71349],[44.71298,39.71465],[44.71498,39.71448],[44.71446,39.71196],[44.71711,39.70911],[44.71943,39.70758],[44.72113,39.70755],[44.72523,39.70563],[44.72827,39.70259],[44.72719,39.70021],[44.73026,39.69836],[44.73196,39.69704],[44.73435,39.69413],[44.73834,39.69314],[44.74164,39.69373],[44.74406,39.6898],[44.74923,39.68772],[44.75234,39.68273],[44.75372,39.68156],[44.75424,39.6782],[44.75724,39.67718],[44.75853,39.6759],[44.75853,39.6735],[44.75767,39.6715],[44.75389,39.67292],[44.75459,39.67073],[44.75846,39.66992],[44.76174,39.67055],[44.76191,39.66918],[44.7607,39.66808],[44.76377,39.66529],[44.76803,39.66552],[44.77049,39.66357],[44.7702,39.66123],[44.77749,39.65991],[44.78585,39.65482],[44.78804,39.65185],[44.7985,39.64841],[44.80373,39.64167],[44.80291,39.63196],[44.8069,39.62859],[44.81744,39.61467],[44.82592,39.61134],[44.83718,39.6128],[44.8459,39.60864],[44.85394,39.60236],[44.86128,39.6019],[44.86658,39.60383],[44.8657,39.60787],[44.86619,39.61297],[44.86942,39.61649],[44.87935,39.61418],[44.88173,39.60976],[44.87228,39.59961],[44.87243,39.59528],[44.87877,39.59387],[44.89129,39.59721],[44.89438,39.60634],[44.89902,39.6043],[44.9009,39.60066],[44.88717,39.58242],[44.90571,39.57661],[44.91601,39.56762],[44.90802,39.55823],[44.91034,39.55308],[44.91163,39.54925],[44.90536,39.54118],[44.91652,39.53617],[44.9177,39.53303],[44.91408,39.53096],[44.91046,39.531],[44.90821,39.52733],[44.91364,39.52009],[44.92319,39.51708],[44.92725,39.51142],[44.93797,39.51315],[44.94312,39.50134],[44.95153,39.49464],[44.94923,39.48985],[44.94327,39.49117],[44.94005,39.4893],[44.93887,39.48661],[44.95024,39.48493],[44.94683,39.48184],[44.93724,39.48247],[44.93898,39.47805],[44.94758,39.47258],[44.94192,39.46323],[44.94629,39.45988],[44.94642,39.45396],[44.94861,39.45229],[44.9614,39.45067],[44.97693,39.45169],[44.97462,39.44529],[44.96316,39.44369],[44.96201,39.43812],[44.96635,39.43042],[44.96543,39.42246],[44.975,39.41951],[44.99006,39.41603],[44.99752,39.4096],[45.00464,39.41034],[45.00923,39.40567],[45.01805,39.40439],[45.02952,39.3932],[45.0355,39.39049],[45.04011,39.3915],[45.04438,39.38004],[45.05836,39.38236],[45.05781,39.36787],[45.05862,39.36346],[45.07501,39.35942],[45.08728,39.35166],[45.08702,39.34782],[45.08058,39.33336],[45.08959,39.33004],[45.10028,39.33476],[45.10322,39.32969],[45.10341,39.32302],[45.10787,39.30967],[45.12452,39.30407],[45.12838,39.29648],[45.11782,39.28783],[45.12125,39.28619],[45.13305,39.28785],[45.14142,39.28313],[45.14103,39.27894],[45.13378,39.27156],[45.13867,39.26691],[45.14494,39.26491],[45.14691,39.25095],[45.15094,39.24178],[45.14845,39.23101],[45.15098,39.21791],[45.14699,39.20535],[45.15009,39.20514],[45.16622,39.21398],[45.17447,39.21092],[45.17207,39.21876],[45.17242,39.22288],[45.18067,39.22287],[45.18755,39.21647],[45.18553,39.20312],[45.21101,39.20143],[45.22153,39.2079],[45.22242,39.19521],[45.28598,39.1796],[45.30868,39.19379],[45.32936,39.16783],[45.33699,39.16688],[45.39372,39.10416],[45.40308,39.09206],[45.39989,39.08009],[45.40253,39.07323],[45.40929,39.07117],[45.4236,39.06138],[45.42801,39.06102],[45.43186,39.05853],[45.43365,39.05284],[45.4399,39.05061],[45.44421,39.05192],[45.44921,39.05537],[45.45439,39.05266],[45.45674,39.04716],[45.45085,39.03953],[45.44937,39.02854],[45.44331,39.02131],[45.43862,39.01354],[45.43817,39.00495],[45.44896,38.99476],[45.45681,38.99047],[45.46554,38.98993],[45.47427,38.98832],[45.47922,38.98552],[45.48692,38.98591],[45.49222,38.98363],[45.49752,38.98296],[45.50762,38.97864],[45.52812,38.9706],[45.53425,38.96979],[45.53766,38.96618],[45.55127,38.96399],[45.55796,38.96852],[45.56602,38.96879],[45.5684,38.97572],[45.58022,38.97851],[45.58372,38.9763],[45.58413,38.96929],[45.58722,38.96568],[45.59271,38.96394],[45.59974,38.96134],[45.6078,38.95607],[45.61256,38.95787],[45.6146,38.9553],[45.61355,38.94952],[45.6162,38.94271],[45.63219,38.94469],[45.64371,38.94586],[45.64696,38.95127],[45.65947,38.95159],[45.67901,38.94624],[45.6855,38.94903],[45.70984,38.94461],[45.7189,38.93455],[45.72583,38.93566],[45.7293,38.92873],[45.73034,38.93061],[45.7367,38.92728],[45.75224,38.92935],[45.76035,38.92424],[45.76716,38.9257],[45.7719,38.92715],[45.77665,38.92577],[45.78072,38.91691],[45.78994,38.92194],[45.79503,38.92163],[45.81037,38.91112],[45.8153,38.90506],[45.82673,38.90437],[45.83541,38.90475],[45.83836,38.90925],[45.84563,38.91022],[45.85485,38.90689],[45.86339,38.90089],[45.8599,38.89516],[45.86556,38.88945],[45.87216,38.88927],[45.87602,38.89015],[45.88167,38.88631],[45.89007,38.88461],[45.89294,38.87634],[45.90405,38.87769],[45.90761,38.87369],[45.9135,38.87436],[45.91872,38.87236],[45.92755,38.87893],[45.93294,38.88871],[45.94442,38.89597],[45.9564,38.88911],[45.96479,38.88995],[45.97413,38.88236],[45.98155,38.8815],[45.98485,38.87744],[46.01017,38.87174],[46.01667,38.87365],[46.02661,38.8729],[46.03329,38.87506],[46.04066,38.87187],[46.05593,38.87885],[46.054,38.88369],[46.05894,38.88747],[46.06676,38.88753],[46.07217,38.87825],[46.07964,38.87163],[46.09442,38.86762],[46.10679,38.86642],[46.11298,38.86522],[46.11232,38.85908],[46.12952,38.85026],[46.12868,38.84645],[46.13675,38.84639],[46.14398,38.84251],[46.15053,38.84172],[46.15517,38.84373],[46.1605,38.84145],[46.16739,38.84306],[46.17427,38.8404],[46.18465,38.84042],[46.19372,38.85115],[46.21207,38.85334],[46.21874,38.86514],[46.23175,38.8679],[46.24134,38.87169],[46.2475,38.87334],[46.25039,38.87779],[46.26016,38.88385],[46.26683,38.88616],[46.26733,38.89169],[46.26942,38.89454],[46.27701,38.89632],[46.28323,38.90104],[46.29151,38.90095],[46.2999,38.90166],[46.3028,38.90665],[46.30905,38.903],[46.31668,38.90149],[46.32943,38.90879],[46.33668,38.91074],[46.33755,38.91691],[46.35515,38.91625],[46.35949,38.91486],[46.36451,38.91613],[46.369,38.90976],[46.37966,38.9066],[46.39331,38.90407],[46.40308,38.9001],[46.41147,38.89292],[46.41589,38.89246],[46.4165,38.88566],[46.42122,38.8826],[46.42564,38.88646],[46.42731,38.89192],[46.43415,38.89479],[46.44031,38.89445],[46.44337,38.89704],[46.4504,38.89701],[46.45468,38.89964],[46.46547,38.8889],[46.47489,38.88991],[46.48431,38.88558],[46.48851,38.88657],[46.49203,38.88916],[46.49932,38.88961],[46.50592,38.88579],[46.51569,38.88964],[46.52573,38.88782],[46.52272,38.88173],[46.52716,38.87178],[46.53435,38.86772],[46.55186,38.88285],[46.56388,38.88622],[46.58053,38.89699],[46.60268,38.90776],[46.60079,38.91372],[46.62568,38.9309],[46.6395,38.94407],[46.64027,38.95082],[46.65487,38.95524],[46.65547,38.96186],[46.66912,38.97595],[46.668,38.98044],[46.67306,38.98759],[46.68508,38.98791],[46.69178,38.99315],[46.68586,39.00003],[46.68575,39.00629],[46.69153,39.01182],[46.69339,39.01778],[46.69663,39.02001],[46.70682,39.01693],[46.71089,39.01806],[46.7153,39.01465],[46.72697,39.01598],[46.73418,39.01491],[46.7359,39.02051],[46.74122,39.02224],[46.74379,39.02558],[46.751,39.0253],[46.75486,39.0263],[46.75667,39.03317],[46.76302,39.0357],[46.75718,39.04902],[46.76096,39.05168],[46.76096,39.06337],[46.7668,39.06734],[46.76972,39.07279],[46.77401,39.07663],[46.77405,39.07979],[46.79332,39.08508],[46.79684,39.09246],[46.80624,39.09689],[46.80774,39.10477],[46.81295,39.10472],[46.81542,39.11053],[46.82036,39.11629],[46.8283,39.11332],[46.83398,39.12222],[46.83624,39.13592],[46.84182,39.13585],[46.84808,39.14004],[46.86083,39.14],[46.8593,39.14637],[46.86283,39.15142],[46.86499,39.15647],[46.87443,39.15406],[46.87982,39.15602],[46.88589,39.15478],[46.90353,39.16403],[46.90978,39.15727],[46.91992,39.15731],[46.92869,39.16055],[46.93574,39.15926],[46.93996,39.14983],[46.94692,39.14732],[46.94904,39.13923],[46.958,39.14131],[46.96215,39.14019],[46.97004,39.14518],[46.97655,39.14645],[46.9937,39.15429],[46.99172,39.16025],[46.99386,39.16407],[47.00089,39.16747],[47.01718,39.16687],[47.02155,39.16976],[47.02065,39.17254],[47.02318,39.17532],[47.03363,39.17917],[47.03653,39.18356],[47.04295,39.18629],[47.05281,39.19274],[47.05362,39.1965],[47.05993,39.20132],[47.06177,39.20641],[47.06429,39.20884],[47.06374,39.21243],[47.05494,39.21283],[47.05541,39.22015],[47.06138,39.22746],[47.05572,39.23334],[47.06104,39.24134],[47.06774,39.24375],[47.07349,39.25267],[47.07568,39.25367],[47.07787,39.26106],[47.09401,39.26696],[47.09693,39.27097],[47.09539,39.27658],[47.10502,39.27615],[47.11293,39.27997],[47.11193,39.28736],[47.12138,39.29211],[47.13152,39.2974],[47.13763,39.2969],[47.14652,39.29852],[47.14926,39.30118],[47.14856,39.30491],[47.15198,39.30545],[47.16289,39.31133],[47.17587,39.31084],[47.17746,39.31491],[47.18249,39.31579],[47.18911,39.31969],[47.19843,39.31831],[47.20638,39.31534],[47.21158,39.31822],[47.21472,39.31844],[47.22067,39.32297],[47.22662,39.32697],[47.23257,39.32885],[47.23439,39.33285],[47.24498,39.34084],[47.25007,39.34032],[47.25478,39.34524],[47.26086,39.34909],[47.26453,39.35136],[47.27027,39.3568],[47.2748,39.35761],[47.28119,39.36199],[47.29238,39.36478],[47.29829,39.37195],[47.30983,39.3689],[47.31312,39.3701],[47.31387,39.3753],[47.31767,39.38136],[47.32628,39.38423],[47.32805,39.39023],[47.32982,39.39252],[47.33347,39.39636],[47.33232,39.40419],[47.33391,39.40618],[47.33651,39.40731],[47.34185,39.40526],[47.34705,39.40751],[47.34915,39.41481],[47.35401,39.42635],[47.36655,39.42663],[47.37317,39.43658],[47.37086,39.44441],[47.37878,39.44364],[47.38206,39.44988],[47.38121,39.45613],[47.39025,39.46845],[47.39832,39.46844],[47.40099,39.46393],[47.40678,39.46406],[47.41105,39.46784],[47.41326,39.46843],[47.42667,39.46683],[47.42875,39.47262],[47.43804,39.47645],[47.44938,39.47922],[47.46037,39.47914],[47.46587,39.48172],[47.47446,39.4827],[47.48374,39.48581],[47.48894,39.49158],[47.49763,39.49474],[47.50287,39.4942],[47.51705,39.49868],[47.52779,39.49893],[47.53407,39.50093],[47.53687,39.50431],[47.54035,39.50558],[47.55085,39.51063],[47.55929,39.51171],[47.56522,39.51596],[47.56979,39.51968],[47.57239,39.52712],[47.5798,39.53191],[47.58608,39.53259],[47.58824,39.53909],[47.59349,39.54108],[47.59634,39.54079],[47.5992,39.53891],[47.60789,39.53967],[47.61293,39.54455],[47.61819,39.54408],[47.62082,39.55232],[47.62729,39.55406],[47.63307,39.5595],[47.6475,39.56116],[47.65713,39.56495],[47.65919,39.56856],[47.66332,39.57059],[47.66848,39.57341],[47.66797,39.57746],[47.67089,39.57887],[47.67881,39.57771],[47.6838,39.58242],[47.68664,39.58266],[47.68948,39.58766],[47.69758,39.58505],[47.70705,39.58455],[47.72338,39.59437],[47.73567,39.59584],[47.74252,39.60123],[47.74868,39.60557],[47.75176,39.61091],[47.75621,39.6099],[47.76443,39.61424],[47.76503,39.6185],[47.76424,39.62064],[47.76954,39.63022],[47.77534,39.63246],[47.77801,39.63745],[47.78815,39.63846],[47.78979,39.64068],[47.78937,39.64713],[47.79196,39.64998],[47.79988,39.64803],[47.80369,39.64819],[47.80861,39.65359],[47.81434,39.65275],[47.81755,39.65743],[47.82522,39.66025],[47.83427,39.66043],[47.83338,39.66592],[47.83901,39.66692],[47.84801,39.66028],[47.86487,39.66938],[47.8757,39.6668],[47.87871,39.67105],[47.88616,39.66683],[47.89292,39.66102],[47.90827,39.66183],[47.91743,39.65945],[47.91892,39.66277],[47.9417,39.67561],[47.94126,39.67961],[47.94928,39.68081],[47.95329,39.68512],[47.95798,39.68625],[47.96353,39.68923],[47.97458,39.68904],[47.97567,39.70153],[47.97999,39.70487],[47.97608,39.70769],[47.98583,39.70882],[48.03155,39.69159],[48.34146,39.41613],[48.36848,39.3813],[48.36093,39.36964],[48.34584,39.37072],[48.3261,39.36264],[48.32079,39.36305],[48.31085,39.36003],[48.31137,39.35825],[48.29481,39.35046],[48.2707,39.33896],[48.26842,39.34151],[48.26306,39.33927],[48.26765,39.33412],[48.26057,39.33534],[48.25422,39.33067],[48.24358,39.33088],[48.23981,39.33324],[48.2381,39.3356],[48.23329,39.33607],[48.23004,39.33495],[48.22609,39.32587],[48.21134,39.32788],[48.19607,39.32046],[48.18629,39.31304],[48.17548,39.308],[48.16604,39.30403],[48.16141,39.2958],[48.15421,39.29389],[48.15285,39.28782],[48.15081,39.28401],[48.14475,39.2817],[48.14625,39.27833],[48.14199,39.27742],[48.13863,39.27424],[48.13835,39.27199],[48.13375,39.26995],[48.135,39.26621],[48.13463,39.26327],[48.13693,39.26178],[48.1376,39.25863],[48.13434,39.25588],[48.13116,39.24961],[48.13141,39.24657],[48.12978,39.24419],[48.13278,39.24124],[48.13149,39.23936],[48.13479,39.23762],[48.13303,39.23521],[48.13544,39.23343],[48.13374,39.22953],[48.13753,39.22796],[48.1373,39.22407],[48.14015,39.2227],[48.13636,39.22039],[48.13481,39.21795],[48.14131,39.21479],[48.14322,39.21139],[48.14185,39.2085],[48.14289,39.20574],[48.15007,39.20064],[48.15883,39.19728],[48.15964,39.19521],[48.162,39.19407],[48.16329,39.19099],[48.16714,39.19067],[48.16984,39.18818],[48.17598,39.18635],[48.18609,39.18224],[48.19062,39.17945],[48.19255,39.17656],[48.19481,39.17581],[48.19875,39.17628],[48.20217,39.17403],[48.20422,39.17044],[48.21357,39.16772],[48.21446,39.16424],[48.21765,39.16449],[48.2199,39.16228],[48.21474,39.15878],[48.22177,39.14585],[48.2288,39.14038],[48.23169,39.13346],[48.23477,39.13333],[48.23614,39.1304],[48.24481,39.1286],[48.2473,39.1288],[48.25124,39.12594],[48.25673,39.1261],[48.25814,39.12415],[48.26007,39.12499],[48.26316,39.1237],[48.26951,39.12454],[48.27403,39.12273],[48.27715,39.12249],[48.28044,39.12171],[48.29724,39.11504],[48.30199,39.1125],[48.30536,39.10916],[48.30521,39.10665],[48.30712,39.10414],[48.30567,39.10282],[48.30748,39.10164],[48.30508,39.09895],[48.30491,39.09319],[48.30758,39.0905],[48.31187,39.09074],[48.31687,39.0852],[48.31766,39.08126],[48.31621,39.07859],[48.31956,39.07326],[48.31879,39.06949],[48.32385,39.06106],[48.32763,39.05833],[48.32704,39.05461],[48.32781,39.05263],[48.33219,39.05213],[48.33335,39.0493],[48.33307,39.04648],[48.33588,39.04353],[48.337,39.03763],[48.33915,39.03587],[48.33521,39.02628],[48.33388,39.02055],[48.33049,39.01855],[48.32852,39.01295],[48.31551,38.99786],[48.30799,38.99344],[48.30874,38.99101],[48.30091,38.98591],[48.29101,38.97974],[48.29011,38.97647],[48.27559,38.96844],[48.26999,38.9668],[48.2584,38.96695],[48.22411,38.95955],[48.20219,38.95375],[48.18881,38.95696],[48.17818,38.95483],[48.17029,38.9567],[48.1636,38.95443],[48.15623,38.9543],[48.14904,38.9479],[48.14391,38.94684],[48.13594,38.94785],[48.12728,38.94672],[48.11725,38.94692],[48.10722,38.94552],[48.10707,38.94272],[48.09979,38.94507],[48.08838,38.94687],[48.08615,38.94025],[48.08195,38.93828],[48.08118,38.93417],[48.07938,38.92859],[48.08032,38.92461],[48.07878,38.91612],[48.07243,38.91351],[48.06814,38.90983],[48.06231,38.91049],[48.05546,38.90752],[48.04379,38.90149],[48.03658,38.90115],[48.03126,38.89965],[48.02663,38.90028],[48.02391,38.9085],[48.01912,38.91085],[48.01402,38.9102],[48.01028,38.90261],[48.02129,38.83775],[48.0261,38.83379],[48.03503,38.83143],[48.0419,38.81495],[48.04765,38.81297],[48.05134,38.80992],[48.05941,38.80809],[48.07348,38.80123],[48.08173,38.80088],[48.07898,38.79833],[48.07898,38.79417],[48.091,38.79216],[48.09409,38.78907],[48.10988,38.78742],[48.10198,38.78096],[48.1049,38.77265],[48.11057,38.76915],[48.11741,38.77268],[48.12392,38.76803],[48.13043,38.76712],[48.13282,38.76942],[48.1407,38.76744],[48.14755,38.76626],[48.15166,38.76241],[48.165,38.75984],[48.17372,38.7615],[48.18839,38.75564],[48.19206,38.7562],[48.19196,38.75107],[48.19811,38.74885],[48.20083,38.74823],[48.2032,38.7428],[48.20695,38.74004],[48.21738,38.737],[48.22363,38.73923],[48.22369,38.73504],[48.23085,38.73186],[48.23871,38.73137],[48.24313,38.73114],[48.25167,38.72663],[48.24866,38.71975],[48.25986,38.71015],[48.26076,38.70109],[48.25737,38.69805],[48.25123,38.69448],[48.24936,38.69109],[48.2523,38.68073],[48.24999,38.67179],[48.25249,38.66501],[48.25328,38.6609],[48.25749,38.6584],[48.26607,38.65631],[48.27234,38.65606],[48.27929,38.65259],[48.28379,38.65152],[48.2883,38.64778],[48.29113,38.64833],[48.29581,38.64458],[48.2943,38.63654],[48.2975,38.63105],[48.3007,38.62931],[48.30458,38.62032],[48.30709,38.61939],[48.3058,38.61243],[48.31202,38.60627],[48.31756,38.60225],[48.32185,38.60256],[48.32743,38.60424],[48.33439,38.59949],[48.33963,38.6001],[48.35105,38.59588],[48.35612,38.5969],[48.36394,38.59577],[48.36832,38.5984],[48.37395,38.5989],[48.37888,38.60048],[48.38717,38.60593],[48.39062,38.60234],[48.40642,38.60243],[48.41776,38.60703],[48.4224,38.61148],[48.42703,38.61325],[48.43529,38.61181],[48.44234,38.61386],[48.44732,38.61002],[48.45505,38.60992],[48.45866,38.60661],[48.45763,38.60246],[48.45865,38.5967],[48.45383,38.58947],[48.45691,38.58653],[48.45518,38.58198],[48.46201,38.57184],[48.46261,38.56337],[48.46806,38.56102],[48.4687,38.55866],[48.47342,38.55234],[48.48527,38.55473],[48.49187,38.5519],[48.49586,38.55263],[48.50164,38.54924],[48.50535,38.54585],[48.50496,38.54104],[48.50801,38.53623],[48.50861,38.52662],[48.51354,38.52222],[48.51367,38.51836],[48.51895,38.51476],[48.52365,38.51565],[48.52629,38.51385],[48.5329,38.50464],[48.53539,38.50403],[48.54264,38.49714],[48.5492,38.49348],[48.55268,38.48713],[48.55753,38.48132],[48.56663,38.47977],[48.57358,38.47146],[48.57843,38.46247],[48.58154,38.46336],[48.58241,38.45896],[48.58053,38.45564],[48.59048,38.45522],[48.59025,38.44805],[48.59276,38.44302],[48.59046,38.43934],[48.59343,38.43077],[48.59709,38.42544],[48.60143,38.42372],[48.59958,38.41824],[48.60958,38.41411],[48.61614,38.40836],[48.62546,38.40288],[48.63751,38.39794],[48.64047,38.40052],[48.64618,38.40149],[48.65395,38.39762],[48.66171,38.3916],[48.67068,38.39499],[48.67896,38.39677],[48.68621,38.39989],[48.69415,38.40032],[48.69938,38.40496],[48.7053,38.4069],[48.71165,38.40809],[48.71918,38.40856],[48.72809,38.41118],[48.73836,38.41111],[48.74519,38.4177],[48.75203,38.4261],[48.75956,38.43343],[48.76044,38.43753],[48.7675,38.44109],[48.77681,38.44176],[48.78344,38.44828],[48.78921,38.44888],[48.79377,38.45172],[48.79969,38.45188],[48.80588,38.44941],[48.81052,38.44824],[48.81292,38.44841],[48.81947,38.45063],[48.82221,38.44894],[48.82783,38.45038],[48.84072,38.45073],[48.84744,38.44933],[48.85184,38.45018],[48.85624,38.44833],[48.86415,38.44353],[48.86631,38.44301],[48.86881,38.4437],[48.87143,38.44203],[48.87559,38.44089],[48.8807,38.44239],[48.88161,38.44212],[48.88278,38.43937],[48.88821,38.43925],[51.39511,37.88291],[53.90931,37.34744],[54.24427,37.32038],[54.24939,37.32519],[54.25864,37.3289],[54.28537,37.35216],[54.34836,37.34835],[54.39855,37.36098],[54.43813,37.38755],[54.45141,37.394],[54.46619,37.40229],[54.47575,37.40774],[54.48605,37.41419],[54.4902,37.42134],[54.50259,37.41976],[54.52049,37.43296],[54.53069,37.43461],[54.53544,37.43933],[54.54155,37.44197],[54.55222,37.44361],[54.55691,37.44719],[54.56666,37.4461],[54.57669,37.45508],[54.58302,37.45544],[54.58752,37.45305],[54.59244,37.45364],[54.59438,37.45133],[54.60041,37.45166],[54.60313,37.44633],[54.61611,37.44447],[54.62563,37.43772],[54.64169,37.43827],[54.64922,37.43102],[54.65325,37.43072],[54.67566,37.44038],[54.68472,37.44616],[54.70461,37.46274],[54.70624,37.46391],[54.71169,37.46772],[54.7155,37.47044],[54.71814,37.47269],[54.72222,37.47491],[54.72713,37.47669],[54.73177,37.47844],[54.73669,37.47975],[54.74191,37.48105],[54.74597,37.48283],[54.74944,37.48394],[54.75352,37.48616],[54.75791,37.48863],[54.76258,37.49247],[54.76661,37.49616],[54.7685,37.49924],[54.77155,37.50249],[54.77569,37.5063],[54.77266,37.51072],[54.77505,37.51366],[54.7858,37.51664],[54.79777,37.52305],[54.79791,37.54505],[54.80014,37.55144],[54.8063,37.55566],[54.80677,37.56116],[54.80363,37.56261],[54.80661,37.5653],[54.80919,37.57419],[54.81655,37.58802],[54.81911,37.60538],[54.81583,37.6105],[54.80711,37.61711],[54.79813,37.61569],[54.79244,37.61739],[54.78908,37.62066],[54.78766,37.62405],[54.784,37.63269],[54.78969,37.64864],[54.80102,37.66055],[54.80227,37.66419],[54.79811,37.6691],[54.80027,37.67319],[54.7998,37.67708],[54.80308,37.68047],[54.8113,37.68466],[54.81691,37.69852],[54.82166,37.7021],[54.82088,37.70486],[54.81458,37.70635],[54.82355,37.71649],[54.82249,37.71927],[54.82383,37.72522],[54.83083,37.72783],[54.83466,37.73002],[54.84308,37.74019],[54.83974,37.74483],[54.85205,37.75055],[54.85191,37.75536],[54.85672,37.76052],[54.86491,37.7645],[54.87002,37.76208],[54.87602,37.7693],[54.88497,37.76866],[54.89247,37.76553],[54.89288,37.76627],[54.89291,37.7663],[54.92072,37.78397],[54.94939,37.80091],[54.95766,37.81822],[54.98636,37.83516],[55.01189,37.84969],[55.02794,37.86311],[55.03133,37.873],[55.0428,37.89022],[55.06824,37.90224],[55.09713,37.92413],[55.12933,37.95097],[55.15152,37.95805],[55.16513,37.9578],[55.17352,37.95766],[55.18613,37.95866],[55.19224,37.95233],[55.20519,37.96455],[55.22905,37.97408],[55.24499,37.98125],[55.26547,37.98211],[55.27191,37.9863],[55.27244,37.98666],[55.27744,37.98977],[55.28363,37.99333],[55.28952,37.99619],[55.29422,37.99885],[55.30333,38.00283],[55.31269,38.00585],[55.32233,38.00844],[55.32902,38.01013],[55.33519,38.01233],[55.34572,38.01625],[55.35102,38.01889],[55.35572,38.02111],[55.3613,38.02349],[55.3663,38.02572],[55.37158,38.02766],[55.37744,38.02986],[55.38213,38.03205],[55.388,38.03422],[55.39413,38.03616],[55.4,38.03836],[55.40644,38.04027],[55.4138,38.0438],[55.41997,38.04691],[55.42499,38.05025],[55.42916,38.05313],[55.43355,38.05489],[55.44175,38.05702],[55.44619,38.06013],[55.4483,38.0633],[55.45047,38.06739],[55.45288,38.07077],[55.45586,38.07325],[55.45999,38.07591],[55.46502,38.07833],[55.46972,38.08052],[55.47419,38.08433],[55.48091,38.0858],[55.48439,38.08549],[55.48749,38.08313],[55.48972,38.07988],[55.4925,38.07594],[55.4973,38.07241],[55.50255,38.07322],[55.50869,38.07472],[55.51369,38.07688],[55.51991,38.08089],[55.52255,38.082],[55.52608,38.0833],[55.5328,38.08475],[55.54069,38.08666],[55.54563,38.08702],[55.55175,38.08758],[55.55872,38.08858],[55.56514,38.08935],[55.57122,38.08902],[55.57644,38.08935],[55.58197,38.08947],[55.58836,38.09027],[55.59425,38.09244],[55.60155,38.09411],[55.61147,38.09619],[55.62227,38.0978],[55.63216,38.09875],[55.63886,38.0993],[55.64841,38.09933],[55.65652,38.09869],[55.66175,38.09836],[55.67127,38.09722],[55.67852,38.09708],[55.68463,38.09763],[55.69133,38.09816],[55.69714,38.09875],[55.71175,38.10163],[55.71989,38.10213],[55.72716,38.10289],[55.73336,38.10527],[55.7378,38.10794],[55.74191,38.10991],[55.74805,38.11091],[55.75444,38.11125],[55.76316,38.11127],[55.76952,38.11066],[55.77613,38.10916],[55.78622,38.10733],[55.79494,38.1078],[55.80077,38.10861],[55.80577,38.11055],[55.81336,38.11152],[55.81797,38.1105],[55.8228,38.10811],[55.82994,38.10497],[55.83711,38.10205],[55.8428,38.09894],[55.85019,38.09511],[55.85705,38.09175],[55.86591,38.08833],[55.87219,38.08522],[55.88108,38.0825],[55.8911,38.07927],[55.89858,38.07705],[55.90552,38.07688],[55.91164,38.07788],[55.91808,38.07888],[55.92713,38.08075],[55.93241,38.08291],[55.93794,38.08322],[55.94488,38.08238],[55.94952,38.08227],[55.95211,38.08152],[55.95469,38.081],[55.96011,38.07836],[55.96261,38.07533],[55.96602,38.07363],[55.96888,38.07241],[55.97255,38.07027],[55.9765,38.06719],[55.98077,38.06502],[55.98485,38.06561],[55.98922,38.06619],[55.99272,38.06658],[55.9953,38.06583],[56.00166,38.06544],[56.00719,38.06555],[56.01241,38.06563],[56.01766,38.06622],[56.02433,38.0665],[56.03333,38.0663],[56.03969,38.06636],[56.04377,38.06694],[56.04905,38.06797],[56.05547,38.06894],[56.06191,38.07064],[56.07972,38.07338],[56.08641,38.07391],[56.09311,38.07466],[56.09922,38.07544],[56.11175,38.07675],[56.12666,38.07958],[56.13452,38.08052],[56.14238,38.08169],[56.16044,38.08283],[56.16683,38.08313],[56.17319,38.08252],[56.17889,38.07986],[56.18397,38.07675],[56.19138,38.07336],[56.19641,38.06886],[56.21149,38.06135],[56.21841,38.06027],[56.22477,38.06011],[56.23205,38.06061],[56.23905,38.06158],[56.24688,38.06205],[56.25919,38.06472],[56.26652,38.06683],[56.27269,38.0685],[56.28116,38.06986],[56.28755,38.07061],[56.29455,38.07114],[56.30236,38.07047],[56.31166,38.07088],[56.31916,38.07047],[56.32872,38.06975],[56.33336,38.06986],[56.33713,38.07],[56.33919,38.07064],[56.33983,38.08549],[56.34114,38.08913],[56.3433,38.09227],[56.34788,38.09788],[56.35177,38.10075],[56.35386,38.10161],[56.35627,38.10386],[56.35847,38.10791],[56.35883,38.1095],[56.35866,38.11202],[56.35791,38.11502],[56.35714,38.11711],[56.35575,38.11897],[56.35408,38.12041],[56.35297,38.1218],[56.35186,38.12274],[56.35049,38.12508],[56.34916,38.12786],[56.34811,38.13019],[56.34674,38.13205],[56.3448,38.13416],[56.34166,38.13538],[56.33736,38.13689],[56.33452,38.13833],[56.3335,38.14136],[56.33358,38.14363],[56.33394,38.14544],[56.33433,38.14749],[56.33324,38.14913],[56.33105,38.15219],[56.32914,38.15522],[56.32838,38.15797],[56.32794,38.16119],[56.32722,38.16489],[56.32819,38.16691],[56.32919,38.17011],[56.33136,38.17372],[56.33475,38.17819],[56.3378,38.18133],[56.34022,38.18377],[56.34444,38.18733],[56.34833,38.19022],[56.35405,38.19486],[56.35883,38.19772],[56.36211,38.19991],[56.36811,38.20411],[56.37319,38.20763],[56.37952,38.21274],[56.38608,38.21691],[56.39177,38.22066],[56.39988,38.22708],[56.41099,38.23524],[56.41705,38.24036],[56.42452,38.24497],[56.43277,38.2475],[56.4398,38.24889],[56.44855,38.2498],[56.45469,38.25191],[56.45594,38.25236],[56.46327,38.25397],[56.46849,38.25361],[56.47988,38.25444],[56.48441,38.25419],[56.48799,38.25397],[56.49494,38.25333],[56.50422,38.2526],[56.51208,38.2526],[56.51733,38.25291],[56.52288,38.25391],[56.52672,38.25494],[56.53113,38.25619],[56.53638,38.25627],[56.54241,38.25497],[56.54966,38.25452],[56.55491,38.25461],[56.56186,38.25419],[56.56766,38.25402],[56.57516,38.25241],[56.58,38.25],[56.58647,38.24522],[56.59008,38.24147],[56.59394,38.23722],[56.59577,38.23236],[56.59905,38.22791],[56.60152,38.22486],[56.60408,38.22341],[56.60761,38.22447],[56.61177,38.22663],[56.61477,38.22838],[56.62125,38.23047],[56.62658,38.23216],[56.63183,38.23291],[56.638,38.23436],[56.64302,38.2358],[56.64544,38.2378],[56.64583,38.23986],[56.6468,38.24211],[56.64805,38.24436],[56.65141,38.24747],[56.65499,38.24966],[56.65975,38.25158],[56.66591,38.25322],[56.67324,38.25461],[56.67969,38.25536],[56.68583,38.25585],[56.69166,38.25661],[56.69694,38.25713],[56.70158,38.25677],[56.70561,38.25597],[56.7108,38.25511],[56.71683,38.25333],[56.72294,38.25338],[56.72763,38.25439],[56.73147,38.25541],[56.7368,38.25755],[56.74011,38.25974],[56.74372,38.26261],[56.74739,38.26616],[56.75044,38.26952],[56.75466,38.27258],[56.75669,38.27253],[56.75919,38.26972],[56.76052,38.26738],[56.76319,38.2625],[56.76719,38.261],[56.77388,38.25483],[56.77894,38.25099],[56.782,38.24839],[56.78455,38.24672],[56.78705,38.24433],[56.7915,38.24033],[56.79427,38.23772],[56.79791,38.23463],[56.80219,38.23311],[56.80711,38.23249],[56.81055,38.23149],[56.81572,38.23019],[56.82086,38.22797],[56.8263,38.22641],[56.83305,38.22208],[56.84072,38.21797],[56.84725,38.215],[56.85608,38.21152],[56.867,38.20891],[56.87566,38.2075],[56.88283,38.20544],[56.88886,38.20386],[56.89436,38.20369],[56.89925,38.20286],[56.90502,38.20175],[56.91191,38.20039],[56.91799,38.19997],[56.92319,38.19936],[56.93138,38.19886],[56.93161,38.19886],[56.94055,38.19766],[56.94808,38.19697],[56.95591,38.19672],[56.96175,38.19722],[56.96966,38.19833],[56.97494,38.19933],[56.98075,38.19936],[56.98619,38.1978],[56.99063,38.19377],[56.99444,38.18883],[56.99739,38.18347],[56.9978,38.18024],[57.00172,38.17738],[57.01177,38.17544],[57.02244,38.17372],[57.03197,38.17274],[57.04238,38.17194],[57.05197,38.17186],[57.06189,38.17222],[57.06891,38.17361],[57.0748,38.17499],[57.08041,38.17666],[57.08516,38.1788],[57.08935,38.18094],[57.0945,38.18469],[57.09814,38.188],[57.1015,38.19086],[57.10455,38.19352],[57.10819,38.19683],[57.11069,38.19997],[57.11402,38.20261],[57.11708,38.20547],[57.12044,38.20858],[57.12441,38.21211],[57.1293,38.21652],[57.13391,38.22141],[57.13491,38.22269],[57.13702,38.22544],[57.14161,38.22963],[57.14502,38.23366],[57.14816,38.23814],[57.151,38.24194],[57.15352,38.24597],[57.15638,38.25047],[57.1605,38.25652],[57.16502,38.25958],[57.16914,38.26058],[57.17441,38.26108],[57.1788,38.26163],[57.1838,38.26305],[57.19005,38.26561],[57.19538,38.2675],[57.2028,38.26977],[57.21211,38.27013],[57.22055,38.26985],[57.22572,38.26874],[57.23291,38.26713],[57.23975,38.26438],[57.24511,38.26169],[57.24897,38.25744],[57.25099,38.25208],[57.25244,38.24677],[57.25099,38.2413],[57.25366,38.23711],[57.2543,38.23249],[57.25577,38.22741],[57.25608,38.2228],[57.25825,38.21952],[57.2633,38.21636],[57.271,38.21358],[57.27752,38.2106],[57.28525,38.20827],[57.29166,38.20347],[57.29547,38.19877],[57.29611,38.19461],[57.29674,38.19025],[57.29652,38.18624],[57.29647,38.18497],[57.2953,38.17974],[57.29294,38.17363],[57.29353,38.16858],[57.29236,38.16288],[57.2928,38.1553],[57.29369,38.15024],[57.29872,38.14686],[57.3058,38.14339],[57.31291,38.14063],[57.32166,38.13619],[57.32844,38.13252],[57.33402,38.12844],[57.33872,38.12416],[57.34197,38.12014],[57.3438,38.11616],[57.34524,38.11108],[57.34763,38.10688],[57.35138,38.10147],[57.35549,38.09674],[57.36158,38.09149],[57.36861,38.08733],[57.37533,38.08297],[57.37939,38.0778],[57.38058,38.07294],[57.37939,38.06724],[57.37736,38.06227],[57.37711,38.05794],[57.37541,38.05319],[57.37222,38.04824],[57.36991,38.04327],[57.36733,38.03833],[57.36616,38.03311],[57.36594,38.02922],[57.36663,38.02597],[57.36844,38.02202],[57.36836,38.01538],[57.36774,38.00966],[57.36544,38.00425],[57.36277,37.99839],[57.35719,37.99169],[57.35313,37.98658],[57.3523,37.98199],[57.35358,37.97874],[57.35633,37.97613],[57.35913,37.97444],[57.36511,37.97263],[57.3708,37.97058],[57.37764,37.96827],[57.38366,37.96716],[57.38994,37.96555],[57.39269,37.96316],[57.39749,37.96072],[57.40233,37.95938],[57.40741,37.95669],[57.41216,37.95352],[57.4163,37.95016],[57.42244,37.94561],[57.42941,37.941],[57.43677,37.93822],[57.44566,37.9363],[57.45308,37.93441],[57.46108,37.93252],[57.46941,37.9313],[57.47744,37.92963],[57.48744,37.92744],[57.49458,37.92536],[57.5008,37.92283],[57.50725,37.91938],[57.51197,37.91577],[57.51797,37.91441],[57.52497,37.91485],[57.53111,37.91624],[57.53672,37.91786],[57.54347,37.91966],[57.54905,37.92108],[57.55519,37.922],[57.56369,37.92352],[57.57066,37.92394],[57.58172,37.92469],[57.58924,37.92464],[57.59786,37.92341],[57.6033,37.92227],[57.60924,37.91977],[57.61641,37.91883],[57.62725,37.91566],[57.63613,37.91419],[57.6468,37.91333],[57.65519,37.91325],[57.66439,37.91175],[57.67358,37.91072],[57.6868,37.90883],[57.69577,37.90897],[57.7058,37.9118],[57.71419,37.91169],[57.72547,37.91149],[57.73261,37.90963],[57.73761,37.90644],[57.74336,37.90072],[57.75011,37.89725],[57.75722,37.89516],[57.76263,37.89402],[57.77161,37.89391],[57.78025,37.89313],[57.78719,37.89308],[57.79397,37.89008],[57.79863,37.88622],[57.80244,37.88194],[57.80816,37.87599],[57.81277,37.87099],[57.81713,37.86647],[57.82241,37.86305],[57.82783,37.86147],[57.83441,37.86052],[57.84055,37.86166],[57.84555,37.86283],[57.85285,37.86369],[57.86219,37.86494],[57.87147,37.86525],[57.88066,37.86397],[57.88977,37.86155],[57.89686,37.85922],[57.90541,37.85702],[57.91144,37.85633],[57.91483,37.85505],[57.91902,37.85261],[57.92533,37.85144],[57.93247,37.84999],[57.95147,37.84397],[57.956,37.84241],[57.96324,37.838],[57.97005,37.83566],[57.97908,37.83208],[57.99411,37.82275],[58.00188,37.81763],[58.00752,37.81533],[58.01538,37.81135],[58.02233,37.80694],[58.02936,37.79933],[58.03372,37.79961],[58.03819,37.79735],[58.04216,37.79605],[58.04936,37.7953],[58.05516,37.79575],[58.06186,37.79661],[58.06894,37.79838],[58.07533,37.7988],[58.07958,37.79772],[58.0835,37.79572],[58.08886,37.79366],[58.09377,37.79347],[58.09597,37.79155],[58.09744,37.78758],[58.103,37.78413],[58.10702,37.78374],[58.11,37.78477],[58.11238,37.78627],[58.11547,37.78913],[58.11902,37.79058],[58.12094,37.78891],[58.12344,37.78697],[58.12614,37.78389],[58.13469,37.77777],[58.14141,37.77911],[58.14688,37.783],[58.15375,37.78594],[58.1598,37.78569],[58.16369,37.78347],[58.16697,37.78058],[58.17397,37.77705],[58.18072,37.77425],[58.191,37.77199],[58.19919,37.76936],[58.20783,37.76416],[58.21188,37.76011],[58.21297,37.75477],[58.21297,37.75019],[58.21261,37.74494],[58.21397,37.73914],[58.21605,37.73583],[58.21963,37.73316],[58.22263,37.73052],[58.22569,37.72855],[58.22716,37.72458],[58.23214,37.72116],[58.23325,37.7163],[58.2335,37.71147],[58.23316,37.70622],[58.23141,37.70169],[58.22905,37.69675],[58.22761,37.69222],[58.22613,37.68747],[58.22641,37.68288],[58.22741,37.68055],[58.23011,37.67789],[58.23733,37.67347],[58.24411,37.67111],[58.25088,37.66899],[58.25544,37.66788],[58.2605,37.66583],[58.26755,37.66322],[58.27297,37.66208],[58.27755,37.66166],[58.28513,37.65858],[58.29136,37.65647],[58.29991,37.65497],[58.30369,37.65527],[58.30833,37.65574],[58.31561,37.65636],[58.32338,37.65602],[58.33091,37.65638],[58.33761,37.65724],[58.34322,37.65494],[58.35083,37.65208],[58.35955,37.64872],[58.36547,37.64664],[58.36875,37.64397],[58.36986,37.63908],[58.37038,37.63402],[58.37149,37.62916],[58.3745,37.62672],[58.37891,37.62355],[58.38272,37.62041],[58.38711,37.617],[58.39277,37.61539],[58.39714,37.61589],[58.40158,37.61752],[58.40519,37.61966],[58.40972,37.62266],[58.41299,37.62413],[58.41711,37.62486],[58.4218,37.62602],[58.42588,37.62655],[58.4333,37.6253],[58.4408,37.62519],[58.44827,37.62486],[58.45461,37.62483],[58.45983,37.62505],[58.46625,37.62614],[58.4733,37.62788],[58.47925,37.63016],[58.48611,37.63327],[58.4923,37.6353],[58.50497,37.643],[58.50919,37.64533],[58.51258,37.64838],[58.51483,37.65197],[58.51622,37.6551],[58.51761,37.6585],[58.51944,37.66391],[58.52058,37.66799],[58.52194,37.67069],[58.52624,37.67441],[58.52933,37.67747],[58.53188,37.68058],[58.53466,37.68341],[58.53749,37.68652],[58.54172,37.68908],[58.5468,37.69138],[58.55327,37.69313],[58.55825,37.69383],[58.56341,37.69339],[58.56913,37.69266],[58.57722,37.69274],[58.58002,37.69124],[58.58336,37.68949],[58.587,37.68772],[58.59036,37.68619],[58.59469,37.68233],[58.59936,37.67891],[58.60561,37.67333],[58.60989,37.66855],[58.61358,37.66358],[58.6165,37.66022],[58.62049,37.65547],[58.62833,37.65189],[58.64127,37.64716],[58.6508,37.64305],[58.67178,37.63774],[58.68558,37.63663],[58.69552,37.63458],[58.70811,37.63308],[58.719,37.63188],[58.7298,37.62955],[58.73816,37.62939],[58.74224,37.62989],[58.74386,37.63211],[58.74488,37.63436],[58.74502,37.63619],[58.74622,37.64094],[58.74828,37.64497],[58.7508,37.6483],[58.75358,37.65047],[58.75825,37.65139],[58.76233,37.65166],[58.77188,37.64799],[58.77691,37.64594],[58.78877,37.64216],[58.79305,37.64149],[58.7968,37.64155],[58.80061,37.64205],[58.80416,37.6435],[58.80758,37.64655],[58.8095,37.64899],[58.80994,37.65127],[58.8125,37.6585],[58.81355,37.66072],[58.81516,37.66319],[58.81736,37.66536],[58.8195,37.66711],[58.82144,37.66999],[58.8233,37.67174],[58.82375,37.67355],[58.82389,37.67561],[58.82236,37.67844],[58.81835,37.68277],[58.81605,37.68677],[58.81622,37.68905],[58.8178,37.69105],[58.82194,37.692],[58.82563,37.69136],[58.83013,37.68955],[58.83564,37.68608],[58.84149,37.68305],[58.84602,37.68191],[58.85138,37.68027],[58.85749,37.67677],[58.86355,37.67283],[58.86925,37.66797],[58.879,37.65924],[58.88694,37.65336],[58.89336,37.65027],[58.89822,37.64958],[58.90486,37.6495],[58.91058,37.64899],[58.91747,37.64822],[58.92641,37.64802],[58.93241,37.64749],[58.94614,37.64544],[58.95097,37.6443],[58.95827,37.64188],[58.96419,37.63977],[58.9818,37.63225],[58.99077,37.62861],[58.99575,37.62583],[59.00569,37.62352],[59.01536,37.62166],[59.02444,37.61961],[59.03316,37.61666],[59.04052,37.61469],[59.04761,37.61275],[59.05566,37.60869],[59.06283,37.60441],[59.0695,37.60088],[59.07688,37.59569],[59.08519,37.59116],[59.09227,37.58575],[59.09966,37.58058],[59.10594,37.57613],[59.11539,37.57108],[59.12286,37.56724],[59.13161,37.56108],[59.13933,37.55633],[59.14574,37.55372],[59.15475,37.55075],[59.15858,37.54802],[59.16397,37.54294],[59.16836,37.54019],[59.17252,37.53813],[59.17697,37.53586],[59.18063,37.53475],[59.1828,37.53305],[59.18641,37.53147],[59.18794,37.52864],[59.18888,37.52608],[59.19302,37.5238],[59.19688,37.52155],[59.20016,37.51908],[59.20391,37.51544],[59.20561,37.51147],[59.21005,37.50775],[59.21263,37.50561],[59.21714,37.50422],[59.22288,37.50394],[59.22811,37.50413],[59.2318,37.50347],[59.2363,37.50211],[59.24128,37.49933],[59.24666,37.49813],[59.25411,37.49752],[59.26413,37.49702],[59.27627,37.4973],[59.28216,37.49861],[59.28516,37.50008],[59.29055,37.50255],[59.2948,37.50533],[59.30208,37.50977],[59.30989,37.5135],[59.31994,37.51666],[59.32838,37.51761],[59.33055,37.51769],[59.33464,37.51788],[59.3356,37.51791],[59.34214,37.51666],[59.34783,37.51544],[59.35049,37.51302],[59.35316,37.51036],[59.35527,37.50772],[59.35644,37.50444],[59.35733,37.50119],[59.36024,37.49805],[59.36516,37.49458],[59.36869,37.49185],[59.37127,37.48805],[59.37805,37.48288],[59.38122,37.47927],[59.38405,37.47499],[59.3858,37.47169],[59.38722,37.46794],[59.38691,37.4643],[59.38497,37.46141],[59.38427,37.44605],[59.38433,37.44308],[59.38722,37.43972],[59.39291,37.43527],[59.40311,37.42602],[59.40258,37.42308],[59.39988,37.42183],[59.38689,37.41769],[59.38353,37.41533],[59.3798,37.4123],[59.37702,37.40972],[59.3753,37.40636],[59.37413,37.40274],[59.3735,37.39841],[59.37486,37.39374],[59.37655,37.3863],[59.37891,37.38],[59.38083,37.37508],[59.38349,37.36552],[59.38639,37.3548],[59.38722,37.35094],[59.3895,37.34016],[59.39172,37.33202],[59.39244,37.32672],[59.39588,37.31963],[59.39838,37.31147],[59.402,37.30625],[59.40658,37.30255],[59.4118,37.29952],[59.41769,37.29761],[59.42189,37.296],[59.42672,37.29208],[59.42911,37.28944],[59.43033,37.28683],[59.43147,37.28311],[59.43375,37.27955],[59.43755,37.2768],[59.44352,37.27236],[59.44833,37.268],[59.45333,37.26244],[59.45888,37.25641],[59.46341,37.25202],[59.47275,37.24327],[59.47858,37.23722],[59.48424,37.22911],[59.48691,37.22669],[59.49066,37.22349],[59.49013,37.2203],[59.48797,37.21858],[59.48613,37.2173],[59.48308,37.21494],[59.48,37.21235],[59.47744,37.20927],[59.47605,37.20635],[59.47502,37.20433],[59.4788,37.20161],[59.48322,37.19933],[59.48644,37.19661],[59.49111,37.19386],[59.49766,37.18983],[59.50294,37.18772],[59.50825,37.18583],[59.5138,37.18347],[59.52041,37.18011],[59.52391,37.17741],[59.52711,37.17425],[59.53122,37.17197],[59.53627,37.1703],[59.53705,37.17008],[59.54272,37.16858],[59.54836,37.16736],[59.55199,37.16624],[59.55372,37.16272],[59.5543,37.15947],[59.55286,37.15588],[59.55169,37.15227],[59.55105,37.14772],[59.54925,37.14344],[59.54863,37.13933],[59.54911,37.13472],[59.54988,37.13033],[59.55075,37.12705],[59.55383,37.12252],[59.5581,37.12208],[59.56325,37.12202],[59.57663,37.12083],[59.58469,37.12086],[59.59291,37.11975],[59.59919,37.11916],[59.60594,37.11766],[59.61364,37.11355],[59.62466,37.10813],[59.6305,37.10944],[59.63708,37.10908],[59.64238,37.10741],[59.64788,37.10802],[59.65116,37.10922],[59.65313,37.11233],[59.6553,37.11774],[59.65783,37.12358],[59.66008,37.12644],[59.66216,37.12747],[59.66541,37.12866],[59.67038,37.12955],[59.6761,37.12947],[59.68188,37.12983],[59.68844,37.12925],[59.69955,37.12819],[59.70513,37.12649],[59.7113,37.12477],[59.71594,37.122],[59.72225,37.11844],[59.72625,37.11477],[59.72947,37.11205],[59.73341,37.10794],[59.73825,37.10422],[59.74355,37.10233],[59.74924,37.10177],[59.75474,37.10241],[59.75849,37.10266],[59.75955,37.10488],[59.76005,37.10738],[59.76027,37.10991],[59.7625,37.1123],[59.76661,37.11347],[59.77002,37.11327],[59.77372,37.11283],[59.77794,37.11191],[59.7908,37.10455],[59.79833,37.10183],[59.80983,37.09888],[59.81905,37.09586],[59.82574,37.09386],[59.83305,37.09208],[59.83994,37.08869],[59.84508,37.08497],[59.86119,37.06913],[59.87614,37.0561],[59.88094,37.05541],[59.88655,37.05416],[59.88958,37.05261],[59.89164,37.04997],[59.89511,37.04678],[59.89911,37.04355],[59.90569,37.03996],[59.91141,37.03666],[59.91663,37.03408],[59.92105,37.032],[59.92744,37.02977],[59.93336,37.02852],[59.93875,37.02777],[59.94422,37.02813],[59.94827,37.02861],[59.95322,37.02925],[59.95758,37.03014],[59.9623,37.03172],[59.96697,37.03258],[59.97222,37.03344],[59.97888,37.03422],[59.98458,37.03366],[59.99113,37.03327],[59.99536,37.03258],[60,37.03955],[60.00441,37.03966],[60.01358,37.03611],[60.02094,37.03327],[60.05066,37.01224],[60.08433,36.97852],[60.08891,36.97072],[60.09663,36.94861],[60.10258,36.93602],[60.12691,36.90588],[60.16122,36.86255],[60.17675,36.84241],[60.21416,36.81047],[60.24866,36.77677],[60.27052,36.7513],[60.29525,36.71389],[60.31563,36.6811],[60.33144,36.65613],[60.34002,36.64772],[60.35244,36.64188],[60.36739,36.62811],[60.37066,36.62424],[60.48319,36.62708],[60.56694,36.62772],[60.58541,36.62766],[60.63477,36.62755],[60.72102,36.63541],[60.83025,36.64261],[60.86408,36.64408],[60.95735,36.65127],[61.1203,36.66086],[61.14002,36.66202],[61.14025,36.66205],[61.14761,36.65594],[61.14994,36.65041],[61.14805,36.64872],[61.15252,36.64086],[61.18075,36.58819],[61.19097,36.56772],[61.19316,36.54852],[61.18933,36.52988],[61.17935,36.51422],[61.17235,36.49866],[61.17269,36.49308],[61.17544,36.48114],[61.17822,36.46838],[61.17549,36.44819],[61.164,36.39311],[61.16375,36.38105],[61.17025,36.34033],[61.18547,36.30319],[61.19952,36.26841],[61.206,36.25983],[61.20905,36.24227],[61.22286,36.19544],[61.22922,36.17239],[61.2328,36.14602],[61.22755,36.12444],[61.22647,36.12008],[61.19813,36.0651],[61.1795,36.03058],[61.17327,36.01908],[61.16833,36.00283],[61.15927,35.98961],[61.13447,35.97491],[61.12302,35.96802],[61.12308,35.96786],[61.1243,35.96324],[61.12855,35.95861],[61.13897,35.95686],[61.15952,35.95344],[61.1688,35.95197],[61.1795,35.95024],[61.21099,35.93627],[61.21302,35.93433],[61.21833,35.92933],[61.22272,35.92227],[61.22691,35.91841],[61.234,35.9155],[61.23377,35.9121],[61.2335,35.90744],[61.23197,35.90016],[61.2293,35.89522],[61.23141,35.89288],[61.23725,35.89474],[61.24213,35.89574],[61.24713,35.89433],[61.24822,35.89277],[61.24452,35.88861],[61.23988,35.8836],[61.23797,35.88272],[61.2435,35.8733],[61.24269,35.87005],[61.24191,35.8668],[61.24441,35.85808],[61.24952,35.85505],[61.25352,35.85441],[61.25483,35.84886],[61.25222,35.84311],[61.25636,35.84008],[61.2596,35.83538],[61.257,35.82966],[61.25816,35.8265],[61.25847,35.82169],[61.25977,35.81611],[61.25997,35.81291],[61.26422,35.80825],[61.26533,35.80588],[61.26347,35.80422],[61.25683,35.79991],[61.25508,35.79583],[61.25272,35.78611],[61.25025,35.77797],[61.24858,35.77308],[61.2468,35.7698],[61.25183,35.76839],[61.25491,35.7661],[61.25516,35.76208],[61.25244,35.75797],[61.25002,35.74902],[61.2508,35.73622],[61.2503,35.72816],[61.24591,35.71913],[61.24177,35.70611],[61.23383,35.70741],[61.22925,35.70161],[61.2198,35.69477],[61.21902,35.69155],[61.22266,35.68044],[61.22291,35.67647],[61.22333,35.66925],[61.22344,35.66761],[61.22288,35.66036],[61.22722,35.65411],[61.23188,35.6583],[61.24219,35.65069],[61.24124,35.64985],[61.25214,35.63261],[61.2605,35.62491],[61.27377,35.61661],[61.27663,35.61316],[61.30591,35.62272],[61.31661,35.62474],[61.3688,35.62441],[61.37144,35.61327],[61.37213,35.60125],[61.37444,35.59572],[61.38225,35.59683],[61.39413,35.59566],[61.40024,35.59191],[61.39961,35.58625],[61.39025,35.57786],[61.38483,35.56961],[61.38722,35.56247],[61.39433,35.55872],[61.40325,35.55747],[61.40924,35.5561],[61.4113,35.55458],[61.41249,35.55061],[61.42166,35.54533],[61.43264,35.54255],[61.43866,35.54039],[61.44494,35.53419],[61.45152,35.52238],[61.46672,35.51413],[61.48605,35.50283],[61.50905,35.4878],[61.51158,35.48613],[61.56661,35.45127],[61.58075,35.44458],[61.59986,35.43647],[61.61372,35.43458],[61.63941,35.43152],[61.66605,35.42927],[61.73627,35.4198],[61.75316,35.41641],[61.76699,35.4145],[61.77872,35.41572],[61.8165,35.4251],[61.87969,35.43699],[61.93605,35.44858],[61.96427,35.45358],[61.99,35.44963],[62.02063,35.44586],[62.05738,35.43747],[62.07711,35.41644],[62.12158,35.37055],[62.13089,35.36041],[62.14344,35.34477],[62.19936,35.32411],[62.24813,35.3088],[62.25613,35.30505],[62.2613,35.29961],[62.27419,35.27591],[62.27702,35.26927],[62.27883,35.26511],[62.283,35.25533],[62.29997,35.14424],[62.30208,35.14108],[62.3098,35.14294],[62.32489,35.15547],[62.43391,35.25361],[62.45925,35.27847],[62.46683,35.2843],[62.47558,35.28538],[62.48841,35.28336],[62.49649,35.27797],[62.50141,35.27733],[62.51216,35.27844],[62.52122,35.2731],[62.5343,35.26466],[62.5355,35.25988],[62.53886,35.25033],[62.55891,35.23969],[62.56991,35.23438],[62.58161,35.23555],[62.60491,35.24022],[62.60691,35.23949],[62.61027,35.22913],[62.61572,35.21647],[62.61975,35.21416],[62.62269,35.21424],[62.63036,35.21769],[62.65591,35.23849],[62.66361,35.24191],[62.687,35.24419],[62.7228,35.25486],[62.74783,35.26519],[62.75225,35.27655],[62.75561,35.29027],[62.76516,35.29616],[62.77761,35.30294],[62.80683,35.30775],[62.82627,35.3115],[62.83588,35.31577],[62.85408,35.32672],[62.86427,35.34144],[62.867,35.34713],[62.8728,35.34888],[62.88652,35.34925],[62.88747,35.35008],[62.88728,35.35488],[62.88894,35.36216],[62.89472,35.36472],[62.90158,35.36491],[62.92638,35.38244],[62.95636,35.39366],[62.98914,35.40894],[62.99786,35.41158],[63.00474,35.41097],[63.01669,35.40644],[63.01952,35.40975],[63.02024,35.41616],[63.01108,35.42477],[63.01097,35.42797],[63.01486,35.42889],[63.03469,35.42377],[63.0465,35.42247],[63.07391,35.42394],[63.09635,35.42772],[63.11069,35.46502],[63.11475,35.4876],[63.12002,35.50458],[63.11883,35.51016],[63.11275,35.51563],[63.11161,35.51963],[63.11833,35.5238],[63.12466,35.53841],[63.12722,35.54972],[63.12405,35.55524],[63.11002,35.56213],[63.10494,35.56683],[63.10272,35.574],[63.10436,35.58289],[63.10594,35.59336],[63.10263,35.60291],[63.09635,35.61238],[63.09516,35.61877],[63.10066,35.62936],[63.11975,35.64508],[63.16544,35.66064],[63.20047,35.67191],[63.24425,35.68661],[63.24797,35.6923],[63.24366,35.70264],[63.23444,35.71286],[63.22547,35.71586],[63.20969,35.71711],[63.19758,35.72483],[63.18422,35.74058],[63.17394,35.75236],[63.16486,35.75777],[63.14975,35.76702],[63.14055,35.77563],[63.13955,35.80291],[63.12819,35.81663],[63.12716,35.81786],[63.11202,35.82713],[63.10883,35.83347],[63.11422,35.84805],[63.1206,35.86186],[63.12922,35.8693],[63.14008,35.86875],[63.18158,35.86736],[63.20747,35.86669],[63.23097,35.86611],[63.26433,35.86536],[63.30011,35.86452],[63.3305,35.87002],[63.40599,35.88458],[63.4903,35.90166],[63.51486,35.90619],[63.52272,35.90716],[63.53258,35.90739],[63.54719,35.9133],[63.5593,35.93605],[63.57447,35.95641],[63.58008,35.95822],[63.58525,35.95986],[63.63158,35.96241],[63.67391,35.96727],[63.777,35.99013],[63.81527,35.99889],[63.82597,36.00472],[63.84533,36.01952],[63.86888,36.02558],[63.93475,36.03961],[63.96336,36.04172],[63.97622,36.04194],[63.99414,36.03741],[64.01611,36.02816],[64.03919,36.01491],[64.05222,36.00791],[64.06522,36.00172],[64.07111,36.00341],[64.07397,36.00827],[64.07366,36.0195],[64.06402,36.04986],[64.06155,36.06905],[64.06214,36.08514],[64.07252,36.10455],[64.08222,36.11275],[64.10158,36.12194],[64.10669,36.12439],[64.12925,36.13197],[64.13605,36.13769],[64.1478,36.14269],[64.16649,36.14702],[64.1683,36.15505],[64.17211,36.16155],[64.19677,36.16513],[64.22149,36.16633],[64.22652,36.16319],[64.23458,36.15769],[64.23858,36.15536],[64.24547,36.15705],[64.26122,36.1621],[64.26613,36.16299],[64.27119,36.15824],[64.28319,36.1528],[64.2891,36.15369],[64.29677,36.16585],[64.31783,36.19905],[64.32952,36.20724],[64.37372,36.22633],[64.4151,36.23733],[64.42991,36.23994],[64.4488,36.237],[64.45749,36.24836],[64.48261,36.28158],[64.51094,36.30361],[64.5383,36.32563],[64.56261,36.3508],[64.58108,36.37272],[64.60433,36.4035],[64.61489,36.42286],[64.62144,36.44461],[64.62294,36.47272],[64.6183,36.50877],[64.61227,36.56647],[64.60519,36.62655],[64.60702,36.6338],[64.61772,36.64919],[64.636,36.6855],[64.6728,36.74611],[64.70766,36.80588],[64.73783,36.85274],[64.78955,36.92872],[64.79544,36.936],[64.78805,36.95919],[64.77927,37.00722],[64.75885,37.09125],[64.75661,37.10647],[64.77047,37.11622],[64.87797,37.16624],[64.93475,37.19166],[64.95966,37.20311],[64.97264,37.20886],[64.98261,37.21294],[65.05469,37.22638],[65.10175,37.23561],[65.1368,37.24069],[65.14383,37.24155],[65.174,37.23694],[65.18505,37.23541],[65.19208,37.23627],[65.20905,37.2436],[65.22203,37.24933],[65.22805,37.25016],[65.24116,37.24383],[65.2498,37.23952],[65.26335,37.23275],[65.3848,37.2335],[65.50322,37.23408],[65.5243,37.23416],[65.54924,37.25836],[65.60719,37.30511],[65.62419,37.31961],[65.63819,37.33488],[65.64111,37.35174],[65.64369,37.43113],[65.69758,37.52836],[65.74191,37.5325],[65.758,37.54136],[65.76605,37.54458],[65.77713,37.54299],[65.7983,37.53822],[65.80841,37.53025],[65.81652,37.5118],[65.83572,37.49338],[65.87705,37.47261],[65.90747,37.46602],[65.93947,37.45905],[65.99383,37.4543],[66.03108,37.44869],[66.06833,37.43827],[66.0985,37.42944],[66.11961,37.415],[66.12666,37.40536],[66.12966,37.39413],[66.13266,37.38772],[66.14775,37.37727],[66.17185,37.36763],[66.18794,37.3636],[66.21308,37.366],[66.23016,37.36758],[66.23922,37.36516],[66.24622,37.35633],[66.25627,37.34908],[66.27433,37.33944],[66.28636,37.33139],[66.30041,37.32333],[66.31044,37.32011],[66.32952,37.31847],[66.34764,37.32325],[66.36978,37.32799],[66.38989,37.33194],[66.41799,37.33108],[66.4753,37.33411],[66.48435,37.33405],[66.49944,37.33963],[66.52597,37.34758],[66.54677,37.35388],[66.56894,37.36022],[66.59408,37.36091],[66.61516,37.3568],[66.62819,37.35113],[66.63517,37.34227],[66.63683,37.34152],[66.64616,37.33741],[66.66325,37.33572],[66.68336,37.33722],[66.69747,37.34197],[66.71461,37.34908],[66.72875,37.35544],[66.73577,37.35699],[66.76294,37.35844],[66.79308,37.35666],[66.81919,37.3525],[66.83125,37.35161],[66.85341,37.35869],[66.87558,37.36336],[66.91388,37.37272],[66.93711,37.38139],[66.94921,37.3853],[66.97135,37.38674],[66.98642,37.38422],[67.03655,37.37099],[67.06246,37.35555],[67.08342,37.34255],[67.09833,37.33038],[67.09919,37.31994],[67.10097,37.30308],[67.10778,37.28619],[67.12366,37.27322],[67.14866,37.26497],[67.1728,37.26716],[67.19278,37.25897],[67.20375,37.25486],[67.21058,37.24113],[67.21836,37.22422],[67.22428,37.21775],[67.24016,37.20716],[67.26396,37.18849],[67.27894,37.18433],[67.29905,37.18813],[67.31222,37.19603],[67.33049,37.20947],[67.35366,37.21405],[67.38686,37.21849],[67.39991,37.21916],[67.41911,37.22697],[67.4403,37.23313],[67.4606,37.24655],[67.48402,37.26311],[67.49622,37.2718],[67.5103,37.27244],[67.53919,37.26005],[67.55102,37.24949],[67.55869,37.23094],[67.55966,37.23036],[67.56663,37.22602],[67.57966,37.22505],[67.58977,37.22894],[67.596,37.23849],[67.61411,37.24147],[67.62828,37.24611],[67.63333,37.24844],[67.6403,37.24594],[67.65191,37.24089],[67.66122,37.23686],[67.69813,37.22674],[67.73217,37.22161],[67.73317,37.22144],[67.75213,37.21797],[67.76511,37.20961],[67.76997,37.2065],[67.78275,37.19508],[67.79052,37.18375],[67.79111,37.16447],[67.78958,37.14205],[67.78511,37.12044],[67.78372,37.10361],[67.78653,37.09394],[67.80327,37.08166],[67.82111,37.07261],[67.84302,37.06747],[67.88208,37.06689],[67.89408,37.06588],[67.89905,37.06422],[67.90091,37.05858],[67.89763,37.04658],[67.90399,37.01922],[67.92869,37.006],[67.95239,36.992],[67.96822,36.98452],[67.98105,36.97791],[67.98886,36.96974],[67.99055,36.95689],[67.99805,36.93752],[68.00585,36.92935],[68.00705,36.9293],[68.02383,36.92827],[68.04196,36.93441],[68.05608,36.93819],[68.07819,36.94263],[68.0843,36.94655],[68.10063,36.95911],[68.11094,36.97097],[68.12205,36.9748],[68.13716,36.97855],[68.1565,36.99105],[68.17702,37.00994],[68.19233,37.02011],[68.20344,37.02394],[68.22041,37.02202],[68.2343,37.01777],[68.24605,37.00791],[68.26191,37.00283],[68.27114,37.00988],[68.28138,37.01852],[68.28908,37.07694],[68.29558,37.0945],[68.30291,37.10558],[68.31308,37.11099],[68.32716,37.11236],[68.35702,37.10536],[68.37997,37.10172],[68.39511,37.10544],[68.41852,37.11702],[68.42177,37.125],[68.42199,37.13302],[68.42227,37.14183],[68.42541,37.14577],[68.43653,37.14877],[68.45255,37.14847],[68.47775,37.15197],[68.48391,37.15666],[68.49802,37.1588],[68.51522,37.16327],[68.53939,37.16677],[68.54769,37.17544],[68.56086,37.18491],[68.56722,37.18947],[68.60663,37.1983],[68.63905,37.20724],[68.65136,37.2158],[68.65261,37.223],[68.6511,37.23827],[68.65333,37.24463],[68.6573,37.24294],[68.66419,37.2388],[68.67514,37.23616],[68.67427,37.24019],[68.66883,37.25794],[68.67021,37.26916],[68.68049,37.27616],[68.69049,37.27433],[68.71186,37.27249],[68.71553,37.27219],[68.72955,37.27108],[68.74183,37.27722],[68.75811,37.2833],[68.77124,37.28541],[68.78224,37.28436],[68.78902,37.277],[68.79541,37.25838],[68.80603,37.24611],[68.81297,37.24355],[68.82421,37.24972],[68.82949,37.2568],[68.82599,37.27133],[68.80758,37.29022],[68.81016,37.30619],[68.82555,37.31547],[68.84369,37.31666],[68.86438,37.30497],[68.87488,37.28947],[68.88733,37.27314],[68.89624,37.26972],[68.90728,37.26866],[68.92152,37.27394],[68.92575,37.27947],[68.91897,37.28605],[68.90516,37.29358],[68.90058,37.30572],[68.89191,37.31555],[68.88616,37.32372],[68.89035,37.32844],[68.89746,37.33066],[68.90644,37.32805],[68.9173,37.323],[68.92116,37.31889],[68.93228,37.32025],[68.94438,37.32155],[68.95041,37.32141],[68.96041,37.31955],[68.97333,37.31605],[68.98427,37.31258],[68.9971,37.30666],[69.00794,37.30077],[69.01852,37.28847],[69.02422,37.27953],[69.02391,37.2715],[69.02972,37.26575],[69.0433,37.25338],[69.06192,37.24089],[69.08047,37.22758],[69.09014,37.21772],[69.1016,37.20377],[69.11405,37.18822],[69.12264,37.17677],[69.12647,37.17186],[69.1343,37.16686],[69.14122,37.16427],[69.15008,37.16002],[69.15483,37.1535],[69.16072,37.15013],[69.17266,37.14822],[69.18164,37.14638],[69.18741,37.14061],[69.19625,37.13558],[69.20896,37.12802],[69.22238,37.11244],[69.23114,37.10577],[69.23997,37.10152],[69.24883,37.0973],[69.25592,37.09872],[69.26605,37.10166],[69.2783,37.10694],[69.28555,37.11238],[69.28771,37.11633],[69.29872,37.11602],[69.31886,37.11791],[69.32939,37.12966],[69.35028,37.14916],[69.35864,37.15777],[69.37005,37.16627],[69.38522,37.16908],[69.39841,37.17272],[69.41433,37.19236],[69.4488,37.22349],[69.45517,37.23136],[69.45549,37.23936],[69.44752,37.24039],[69.44039,37.23819],[69.42905,37.23127],[69.42402,37.23141],[69.41713,37.2348],[69.41967,37.24677],[69.42108,37.25639],[69.41649,37.26614],[69.41175,37.27269],[69.40691,37.27683],[69.40819,37.28322],[69.41041,37.28797],[69.40763,37.29366],[69.4018,37.29863],[69.39597,37.3028],[69.39708,37.30519],[69.39919,37.30752],[69.40133,37.31069],[69.40041,37.31311],[69.39749,37.3148],[69.39344,37.31411],[69.38942,37.31422],[69.38461,37.31916],[69.38458,37.32133],[69.3843,37.33522],[69.38566,37.34402],[69.39138,37.35105],[69.39205,37.35186],[69.39116,37.35511],[69.38927,37.35755],[69.38627,37.35844],[69.38163,37.35858],[69.38124,37.35858],[69.38044,37.3626],[69.38021,37.36488],[69.37975,37.36986],[69.37894,37.37469],[69.37713,37.37955],[69.37872,37.39316],[69.36716,37.40549],[69.36936,37.40947],[69.3758,37.41891],[69.37394,37.42297],[69.37613,37.42694],[69.3775,37.43491],[69.3793,37.44308],[69.38122,37.45166],[69.38733,37.45311],[69.39653,37.45608],[69.4113,37.47172],[69.41744,37.47394],[69.42755,37.47527],[69.42972,37.47844],[69.43602,37.48466],[69.4473,37.48916],[69.4486,37.49688],[69.44866,37.49716],[69.45294,37.50266],[69.45922,37.50811],[69.46863,37.51586],[69.47699,37.52286],[69.48694,37.52472],[69.48819,37.52494],[69.48952,37.53213],[69.49485,37.53919],[69.50888,37.54822],[69.51044,37.54919],[69.51339,37.56024],[69.52424,37.58499],[69.5238,37.58486],[69.52417,37.58572],[69.52539,37.58638],[69.53244,37.5903],[69.54055,37.59088],[69.5493,37.58341],[69.56227,37.58063],[69.5743,37.57866],[69.5855,37.58077],[69.60678,37.58336],[69.62088,37.58294],[69.63989,37.57919],[69.663,37.57688],[69.67925,37.57963],[69.69716,37.57427],[69.71221,37.57302],[69.71839,37.57524],[69.73694,37.58352],[69.75344,37.59105],[69.76869,37.5938],[69.77864,37.5903],[69.78552,37.58686],[69.79413,37.57697],[69.80908,37.5733],[69.81819,37.57383],[69.83283,37.58461],[69.85783,37.60069],[69.86808,37.60358],[69.87525,37.60577],[69.88466,37.61269],[69.89492,37.61558],[69.90808,37.61677],[69.92697,37.61058],[69.93872,37.60377],[69.9453,37.59394],[69.94797,37.58663],[69.94921,37.57133],[69.95388,37.56397],[69.96194,37.56372],[69.97613,37.56486],[69.99524,37.56425],[69.99605,37.56022],[70.00475,37.55272],[70.01652,37.54591],[70.02119,37.54655],[70.0313,37.54772],[70.03472,37.54691],[70.04155,37.54269],[70.04344,37.54022],[70.0466,37.54252],[70.05378,37.54469],[70.05683,37.54541],[70.06183,37.54444],[70.06663,37.54027],[70.07444,37.53519],[70.07836,37.53266],[70.08633,37.5308],[70.09233,37.5298],[70.10214,37.52466],[70.14025,37.52097],[70.14341,37.52327],[70.14497,37.52444],[70.14655,37.52558],[70.14978,37.52949],[70.15697,37.53166],[70.16383,37.52822],[70.16789,37.52888],[70.1703,37.53602],[70.17614,37.55108],[70.1768,37.55327],[70.18103,37.56697],[70.191,37.56502],[70.20703,37.56647],[70.21028,37.56677],[70.21052,37.57158],[70.20666,37.57491],[70.20508,37.57775],[70.20505,37.57777],[70.20391,37.57983],[70.205,37.58141],[70.21997,37.57849],[70.22208,37.58002],[70.21944,37.58733],[70.21386,37.59635],[70.21499,37.59872],[70.22333,37.60324],[70.25005,37.61197],[70.25283,37.60786],[70.25978,37.60522],[70.26388,37.60669],[70.26819,37.61136],[70.2663,37.63047],[70.26558,37.63794],[70.26589,37.64352],[70.27016,37.64822],[70.27838,37.65033],[70.27952,37.65269],[70.27922,37.66555],[70.28138,37.66869],[70.28455,37.671],[70.28971,37.67322],[70.29108,37.67958],[70.29113,37.68038],[70.29841,37.68416],[70.30366,37.688],[70.30613,37.69591],[70.3003,37.70013],[70.29358,37.7068],[70.29091,37.7133],[70.2975,37.72272],[70.29753,37.72316],[70.2976,37.72511],[70.29513,37.73483],[70.29341,37.7405],[70.29183,37.74858],[70.29483,37.76614],[70.29196,37.76944],[70.28516,37.7745],[70.27944,37.78111],[70.2758,37.78847],[70.2761,37.79408],[70.28111,37.81155],[70.27733,37.8165],[70.26258,37.82422],[70.24166,37.83055],[70.21258,37.83555],[70.19674,37.84252],[70.18261,37.86225],[70.18064,37.86991],[70.17758,37.88169],[70.17466,37.92188],[70.17744,37.93624],[70.17991,37.94419],[70.18305,37.94649],[70.18808,37.94552],[70.20063,37.93386],[70.20413,37.92333],[70.21003,37.91991],[70.21208,37.92063],[70.2135,37.9278],[70.21577,37.93255],[70.23332,37.93838],[70.24866,37.94108],[70.26569,37.93727],[70.27169,37.93547],[70.27805,37.94086],[70.27441,37.94822],[70.26992,37.9588],[70.26638,37.96855],[70.2656,37.97258],[70.26569,37.97419],[70.27669,37.97141],[70.2816,37.96883],[70.2888,37.97019],[70.29086,37.97091],[70.29227,37.97808],[70.29252,37.98288],[70.29775,37.98513],[70.30483,37.98489],[70.30825,37.99197],[70.31658,37.99572],[70.32583,37.9978],[70.33041,38.00727],[70.33702,38.01666],[70.34433,38.02041],[70.34958,38.02344],[70.35197,38.02977],[70.36027,38.0335],[70.36483,38.04216],[70.36536,38.05177],[70.36758,38.05491],[70.3748,38.05708],[70.39688,38.07075],[70.41877,38.08038],[70.42163,38.08572],[70.42297,38.08816],[70.42558,38.09299],[70.43294,38.09755],[70.44838,38.10102],[70.4658,38.10361],[70.4753,38.10969],[70.48371,38.115],[70.4981,38.11769],[70.50138,38.12158],[70.50174,38.1233],[70.50277,38.12794],[70.49891,38.14894],[70.50369,38.16161],[70.51294,38.18055],[70.51999,38.19713],[70.52903,38.2043],[70.53067,38.20558],[70.53416,38.21347],[70.53844,38.23419],[70.55175,38.25297],[70.55844,38.26313],[70.56586,38.26769],[70.5878,38.2773],[70.59727,38.28258],[70.60166,38.28802],[70.6018,38.3073],[70.60866,38.31988],[70.60541,38.33174],[70.60446,38.33527],[70.60549,38.3408],[70.60597,38.34324],[70.6123,38.34702],[70.62258,38.34825],[70.65094,38.34558],[70.6573,38.34936],[70.66263,38.35319],[70.66791,38.35619],[70.67813,38.35974],[70.68455,38.362],[70.69,38.36741],[70.69052,38.37622],[70.68994,38.38344],[70.68205,38.38774],[70.67424,38.39014],[70.67302,38.39049],[70.6735,38.39849],[70.6781,38.40716],[70.68533,38.40941],[70.68955,38.41075],[70.7018,38.41108],[70.709,38.4108],[70.71605,38.41055],[70.72847,38.4133],[70.73997,38.41872],[70.74108,38.41925],[70.74972,38.42694],[70.75972,38.44019],[70.7653,38.448],[70.76953,38.45024],[70.77664,38.44997],[70.78255,38.44655],[70.79341,38.44049],[70.79369,38.44047],[70.80149,38.43938],[70.80864,38.43914],[70.81383,38.44052],[70.81816,38.44438],[70.81933,38.44675],[70.8265,38.44727],[70.84024,38.43872],[70.842,38.43383],[70.84291,38.43219],[70.84596,38.43208],[70.85136,38.43666],[70.85399,38.44619],[70.85541,38.45258],[70.86069,38.45558],[70.86722,38.46175],[70.87347,38.46391],[70.88255,38.46194],[70.89155,38.45919],[70.89638,38.455],[70.89685,38.44614],[70.89805,38.43897],[70.89833,38.43724],[70.90405,38.43061],[70.91208,38.42869],[70.926,38.42577],[70.92619,38.42575],[70.93397,38.43586],[70.93911,38.43647],[70.94105,38.43477],[70.95022,38.43441],[70.95658,38.43816],[70.95739,38.45097],[70.95372,38.45755],[70.94391,38.46355],[70.94441,38.47155],[70.96683,38.47066],[70.9763,38.47511],[70.98383,38.48122],[70.98908,38.48341],[70.99305,38.48166],[70.99966,38.47338],[71.00441,38.46758],[71.01133,38.46408],[71.0183,38.46138],[71.02114,38.45808],[71.02146,38.45672],[71.02153,38.45652],[71.02278,38.45158],[71.02616,38.44102],[71.03414,38.42224],[71.04064,38.41236],[71.04219,38.40508],[71.04483,38.39855],[71.05175,38.39505],[71.05813,38.39588],[71.06099,38.39627],[71.06463,38.40497],[71.07089,38.40711],[71.07325,38.41183],[71.07961,38.41558],[71.08889,38.41683],[71.09505,38.41736],[71.09794,38.41485],[71.09919,38.40274],[71.10308,38.40019],[71.11016,38.39911],[71.11633,38.39966],[71.11941,38.40033],[71.1213,38.39783],[71.12608,38.39283],[71.13019,38.39347],[71.13571,38.39966],[71.14341,38.39291],[71.14305,38.38733],[71.14894,38.38386],[71.15489,38.38122],[71.15997,38.381],[71.16291,38.37927],[71.16642,38.3703],[71.16872,38.35897],[71.17514,38.34827],[71.18174,38.33824],[71.1868,38.33977],[71.19125,38.34072],[71.193,38.34111],[71.19877,38.33605],[71.20144,38.33033],[71.20224,38.32708],[71.21616,38.32169],[71.22724,38.31963],[71.24013,38.31427],[71.24797,38.30994],[71.25708,38.30875],[71.26824,38.30827],[71.27644,38.30872],[71.2948,38.30875],[71.29963,38.30533],[71.30455,38.30272],[71.3188,38.30211],[71.32177,38.30119],[71.32744,38.29452],[71.32716,38.29066],[71.32705,38.28891],[71.32666,38.28333],[71.3273,38.27766],[71.32772,38.26883],[71.33274,38.2678],[71.34796,38.26716],[71.35394,38.2653],[71.35961,38.25864],[71.36491,38.24716],[71.36724,38.23663],[71.3645,38.22633],[71.36411,38.22072],[71.36694,38.21738],[71.37061,38.21161],[71.37136,38.20755],[71.3678,38.2005],[71.36347,38.19666],[71.36174,38.1863],[71.3618,38.17266],[71.3635,38.16775],[71.36616,38.16202],[71.36386,38.15811],[71.35935,38.15189],[71.35005,38.14988],[71.34177,38.14783],[71.34066,38.14541],[71.33702,38.13758],[71.33294,38.1225],[71.32744,38.11633],[71.32277,38.10769],[71.31852,38.09022],[71.31747,38.075],[71.3125,38.06158],[71.30149,38.04919],[71.29066,38.03922],[71.28538,38.03622],[71.28678,38.02955],[71.28808,38.02344],[71.28844,38.02166],[71.28497,38.01538],[71.27764,38.01169],[71.2743,38.0078],[71.274,38.00299],[71.27674,37.99885],[71.27424,37.99174],[71.27116,37.99108],[71.26597,37.98969],[71.26672,37.98563],[71.26905,37.97511],[71.26819,37.9623],[71.26686,37.95755],[71.2645,37.95283],[71.26108,37.94736],[71.26017,37.93375],[71.25811,37.93302],[71.25305,37.93325],[71.24783,37.93105],[71.24847,37.92541],[71.25336,37.92277],[71.25814,37.91858],[71.26602,37.91502],[71.27319,37.91633],[71.28341,37.91749],[71.28922,37.9285],[71.2913,37.92919],[71.29169,37.92916],[71.29333,37.92911],[71.31052,37.91322],[71.31019,37.91264],[71.3098,37.9121],[71.31324,37.909],[71.31697,37.90402],[71.32233,37.89336],[71.32683,37.88513],[71.33177,37.88333],[71.34014,37.88697],[71.35658,37.89027],[71.36616,37.89708],[71.37249,37.90083],[71.38475,37.90191],[71.40305,37.90272],[71.41574,37.91019],[71.42927,37.91522],[71.44388,37.921],[71.46128,37.92344],[71.47908,37.93149],[71.49292,37.94052],[71.50158,37.94819],[71.51303,37.95249],[71.52938,37.95416],[71.54433,37.9503],[71.55186,37.94191],[71.56644,37.93325],[71.57824,37.92789],[71.58372,37.91961],[71.58535,37.91391],[71.58538,37.90027],[71.58486,37.89308],[71.58816,37.88247],[71.58872,37.87602],[71.59027,37.86952],[71.58977,37.86233],[71.58508,37.85372],[71.58438,37.85138],[71.58244,37.845],[71.58158,37.833],[71.58386,37.82244],[71.58821,37.81261],[71.5908,37.80608],[71.59027,37.79886],[71.58908,37.7965],[71.5828,37.79358],[71.5671,37.78625],[71.55063,37.77986],[71.53507,37.76638],[71.52994,37.75741],[71.53527,37.74505],[71.54247,37.73972],[71.54472,37.73391],[71.54497,37.73102],[71.54675,37.70949],[71.54091,37.70333],[71.53971,37.69994],[71.53605,37.69127],[71.52794,37.67638],[71.52383,37.6613],[71.52427,37.65325],[71.52588,37.64755],[71.52236,37.64049],[71.51977,37.63258],[71.51833,37.62622],[71.51349,37.61519],[71.51216,37.61041],[71.50433,37.59952],[71.50436,37.59936],[71.5056,37.58902],[71.50489,37.5786],[71.50336,37.57147],[71.49944,37.55877],[71.50011,37.55394],[71.4978,37.55002],[71.4953,37.54291],[71.49394,37.53813],[71.49469,37.53411],[71.49485,37.53394],[71.49942,37.52986],[71.50011,37.52502],[71.50096,37.52013],[71.50155,37.51691],[71.50316,37.51547],[71.5063,37.51269],[71.50714,37.51025],[71.5078,37.50539],[71.51489,37.49144],[71.52047,37.48474],[71.52302,37.47822],[71.51921,37.46714],[71.51347,37.45697],[71.50922,37.45394],[71.5038,37.44855],[71.50169,37.44702],[71.49458,37.40316],[71.49222,37.39847],[71.48722,37.39869],[71.4823,37.4005],[71.47799,37.39669],[71.47444,37.3888],[71.47311,37.38405],[71.47783,37.37983],[71.48558,37.37547],[71.48835,37.37213],[71.48899,37.36647],[71.48566,37.34347],[71.48508,37.33933],[71.48664,37.33286],[71.49008,37.32466],[71.49733,37.31308],[71.499,37.30819],[71.49475,37.29072],[71.49019,37.26841],[71.48371,37.24783],[71.47647,37.23047],[71.47308,37.2265],[71.46661,37.21886],[71.459,37.21036],[71.45649,37.20325],[71.45716,37.18394],[71.45188,37.18016],[71.45114,37.17933],[71.44644,37.17397],[71.44574,37.16436],[71.44694,37.15224],[71.4455,37.14588],[71.44305,37.13958],[71.44244,37.13077],[71.44005,37.12525],[71.43922,37.11322],[71.44078,37.10675],[71.44144,37.10189],[71.4356,37.09008],[71.42983,37.07911],[71.4273,37.07119],[71.4258,37.06402],[71.42719,37.05511],[71.43103,37.05255],[71.43597,37.05152],[71.43663,37.04666],[71.43819,37.04016],[71.44674,37.03336],[71.44841,37.0315],[71.45124,37.0283],[71.45791,37.02083],[71.4593,37.01191],[71.46069,37.0078],[71.46263,37.00213],[71.46594,36.99233],[71.46633,36.9835],[71.46591,36.97708],[71.46275,36.9748],[71.45697,36.96383],[71.45913,36.95166],[71.46677,36.94649],[71.47716,36.93864],[71.47916,36.93711],[71.48336,36.92569],[71.48572,36.9213],[71.48874,36.91661],[71.49722,36.909],[71.50566,36.90058],[71.51158,36.88505],[71.5193,36.86702],[71.52541,36.85388],[71.53536,36.83897],[71.54111,36.82105],[71.54824,36.80866],[71.55033,36.79572],[71.55547,36.78344],[71.55899,36.77683],[71.55913,36.76477],[71.55941,36.764],[71.55997,36.76233],[71.56058,36.75669],[71.56533,36.75325],[71.57091,36.74739],[71.57836,36.7398],[71.58461,36.72905],[71.59522,36.72375],[71.60388,36.71936],[71.61638,36.71233],[71.61897,36.70661],[71.62344,36.69916],[71.62708,36.69416],[71.63591,36.69216],[71.64675,36.69005],[71.65149,36.68661],[71.65805,36.68069],[71.66683,36.67786],[71.69866,36.67638],[71.7125,36.67413],[71.72366,36.67683],[71.73461,36.6763],[71.74758,36.67649],[71.75677,36.67927],[71.78258,36.67727],[71.8078,36.68088],[71.83022,36.68705],[71.85205,36.69886],[71.86477,36.70872],[71.86472,36.70791],[71.87322,36.71472],[71.88569,36.72135],[71.89566,36.73455],[71.90139,36.7386],[71.90141,36.73863],[71.90305,36.7398],[71.94725,36.75616],[71.95842,36.77169],[71.96575,36.77616],[71.97119,36.7823],[71.97941,36.78513],[71.99091,36.7918],[72.00553,36.79991],[72.01049,36.81252],[72.01366,36.8148],[72.0298,36.81641],[72.03402,36.81941],[72.04477,36.82933],[72.04714,36.83402],[72.05069,36.83486],[72.06147,36.83874],[72.09525,36.84405],[72.09788,36.84416],[72.09896,36.84433],[72.10619,36.84719],[72.11558,36.86519],[72.13472,36.8795],[72.14839,36.8863],[72.1728,36.90572],[72.2061,36.92172],[72.23219,36.93486],[72.25833,36.9488],[72.2863,36.96022],[72.31872,36.97705],[72.37305,36.99191],[72.39966,36.99858],[72.42422,37.00452],[72.44705,37.00172],[72.47274,36.99713],[72.48786,36.99794],[72.50283,36.99716],[72.51694,36.99802],[72.52827,37.00144],[72.54677,37.00688],[72.55889,37.00783],[72.59169,37.01652],[72.60655,37.02616],[72.6218,37.02855],[72.63272,37.02716],[72.6503,37.02138],[72.65916,37.0193],[72.67033,37.02111],[72.67563,37.02622],[72.67974,37.03747],[72.68605,37.05241],[72.69733,37.06708],[72.70122,37.0773],[72.71205,37.09275],[72.71347,37.09452],[72.71733,37.09905],[72.7383,37.12352],[72.76947,37.18211],[72.78322,37.20144],[72.79447,37.2153],[72.80525,37.22352],[72.8178,37.22927],[72.83789,37.22897],[72.85927,37.23177],[72.88099,37.2386],[72.89808,37.24972],[72.92894,37.27622],[72.94969,37.28699],[72.99727,37.30119],[73.04122,37.30833],[73.0753,37.31763],[73.09046,37.32961],[73.10541,37.36091],[73.12239,37.37038],[73.13153,37.38191],[73.13678,37.39527],[73.1413,37.40066],[73.15605,37.40783],[73.18499,37.40453],[73.204,37.40263],[73.21747,37.40666],[73.23872,37.41827],[73.24285,37.43008],[73.26511,37.44163],[73.28105,37.45035],[73.29033,37.45222],[73.29972,37.45569],[73.30841,37.46241],[73.30913,37.46235],[73.3235,37.46149],[73.3343,37.45844],[73.34627,37.45694],[73.35939,37.45694],[73.36003,37.45288],[73.36119,37.44397],[73.36769,37.43797],[73.36853,37.43833],[73.39616,37.45072],[73.42994,37.46638],[73.45363,37.47139],[73.47689,37.47158],[73.50127,37.47069],[73.51008,37.47036],[73.53855,37.46219],[73.55477,37.45233],[73.56991,37.44175],[73.59191,37.43961],[73.63797,37.43594],[73.64878,37.43286],[73.66011,37.43536],[73.67138,37.43708],[73.70363,37.43666],[73.73283,37.43563],[73.75597,37.435],[73.76274,37.43213],[73.76775,37.42136],[73.7685,37.38833],[73.76847,37.35777],[73.7673,37.346],[73.76658,37.33858],[73.75205,37.32422],[73.73613,37.31636],[73.72072,37.3133],[73.70047,37.31216],[73.67694,37.3088],[73.66061,37.30661],[73.65544,37.30533],[73.65013,37.30244],[73.64533,37.28424],[73.63786,37.27988],[73.62474,37.27988],[73.61761,37.27872],[73.61296,37.27258],[73.61219,37.26458],[73.61741,37.25622],[73.62733,37.24433],[73.65158,37.23477],[73.65705,37.23927],[73.67283,37.24633],[73.68399,37.24722],[73.7108,37.24313],[73.72733,37.23727],[73.7393,37.22605],[73.746,37.22241],[73.75208,37.22283],[73.76055,37.22711],[73.76897,37.23061],[73.79188,37.22835],[73.81813,37.22908],[73.83255,37.23219],[73.84036,37.23975],[73.84722,37.24816],[73.85285,37.25422],[73.86344,37.25919],[73.89408,37.2733],[73.90194,37.27505],[73.91366,37.27769],[73.92308,37.28111],[73.92691,37.27925],[73.93761,37.27533],[73.94552,37.27399],[73.94994,37.27774],[73.95674,37.28536],[73.9635,37.29216],[73.97374,37.29391],[73.98349,37.29085],[73.99527,37.28766],[74,37.28736],[74.00716,37.28811],[74.02288,37.30463],[74.02966,37.30613],[74.04019,37.30049],[74.04582,37.30172],[74.05899,37.31277],[74.09983,37.32641],[74.1015,37.3268],[74.1433,37.33583],[74.14614,37.33988],[74.14566,37.35228],[74.16402,37.34266],[74.18483,37.33436],[74.19921,37.33441],[74.21191,37.34058],[74.22225,37.34802],[74.22922,37.36102],[74.2416,37.36763],[74.24502,37.37172],[74.24586,37.37544],[74.24322,37.37966],[74.22819,37.39083],[74.2263,37.39625],[74.23661,37.41447],[74.246,37.41241],[74.25883,37.40688],[74.26989,37.40538],[74.29116,37.39866],[74.30655,37.39672],[74.32372,37.3978],[74.33102,37.40002],[74.34469,37.41633],[74.356,37.41875],[74.36755,37.41819],[74.37702,37.415],[74.38236,37.40586],[74.38324,37.3983],[74.38942,37.39333],[74.40039,37.3893],[74.42461,37.38822],[74.45649,37.39994],[74.46739,37.40024],[74.48458,37.39374],[74.51738,37.39722],[74.52597,37.40177],[74.54405,37.39855],[74.55325,37.39485],[74.55733,37.39047],[74.5578,37.38085],[74.56222,37.37947],[74.57519,37.38116],[74.58828,37.38436],[74.60544,37.38555],[74.6255,37.38344],[74.64174,37.38527],[74.65814,37.39094],[74.68258,37.40414],[74.7068,37.3805],[74.78744,37.35349],[74.79502,37.35094],[74.80305,37.34719],[74.81219,37.34027],[74.82047,37.33722],[74.82969,37.32916],[74.84777,37.29464],[74.87127,37.26819],[74.87944,37.2511],[74.87855,37.23569],[74.87322,37.23016],[74.84494,37.22077],[74.82685,37.21694],[74.81469,37.21844],[74.79544,37.2265],[74.78888,37.2333],[74.78147,37.25202],[74.77727,37.25825],[74.76505,37.268],[74.76136,37.26955],[74.74725,37.27541],[74.72016,37.27666],[74.70469,37.27247],[74.6933,37.26733],[74.65992,37.23838],[74.6503,37.23652],[74.63772,37.23961],[74.62513,37.24633],[74.61411,37.24808],[74.59552,37.24327],[74.58033,37.23563],[74.57211,37.2343],[74.56194,37.23566],[74.54272,37.24274],[74.53221,37.24497],[74.50797,37.23919],[74.49847,37.23963],[74.48911,37.24191],[74.48664,37.23697],[74.49227,37.23083],[74.49258,37.22325],[74.48847,37.2173],[74.48078,37.21302],[74.47269,37.20249],[74.46978,37.19569],[74.4733,37.18761],[74.47872,37.18419],[74.49372,37.17966],[74.49433,37.17555],[74.48374,37.16424],[74.45671,37.14702],[74.44875,37.13169],[74.43222,37.12328],[74.43311,37.11574],[74.45533,37.11022],[74.46619,37.10433],[74.48127,37.09619],[74.48644,37.09338],[74.50283,37.07444],[74.52478,37.03235],[74.52958,37.02938],[74.55239,37.03074],[74.57155,37.02978],[74.57219,37.02997],[74.57341,37.02166],[74.56891,36.98744],[74.56297,36.96419],[74.55841,36.96027],[74.55075,36.95966],[74.54149,36.96105],[74.53658,36.96516],[74.52833,36.9905],[74.52463,36.9933],[74.51736,36.99891],[74.49813,36.99955],[74.42786,36.99763],[74.42055,36.99611],[74.41344,36.98816],[74.40119,36.98044],[74.37394,36.97399],[74.35408,36.96469],[74.33444,36.94699],[74.33141,36.94424],[74.31083,36.92986],[74.264,36.90444],[74.2548,36.90127],[74.2523,36.90039],[74.23635,36.89958],[74.21028,36.90761],[74.19061,36.91005],[74.16647,36.91153],[74.15203,36.90986],[74.14753,36.90569],[74.14119,36.89572],[74.13744,36.88275],[74.13422,36.87155],[74.12741,36.84811],[74.11966,36.84172],[74.10972,36.84094],[74.09413,36.84633],[74.08499,36.8463],[74.07888,36.84413],[74.05275,36.82872],[74.03099,36.82914],[74.02525,36.83297],[74.00608,36.83677],[74,36.83402],[73.97969,36.83302],[73.96319,36.8375],[73.93552,36.86736],[73.91735,36.87619],[73.90833,36.88102],[73.89011,36.8788],[73.8838,36.87922],[73.87913,36.88547],[73.84658,36.89861],[73.82213,36.89764],[73.80797,36.89344],[73.80016,36.88969],[73.79435,36.89516],[73.79074,36.90133],[73.78461,36.90344],[73.77594,36.90144],[73.7633,36.90224],[73.74996,36.9065],[73.74025,36.90455],[73.73683,36.90222],[73.73352,36.90072],[73.72511,36.90127],[73.71386,36.90538],[73.70505,36.91272],[73.69347,36.91347],[73.66255,36.91116],[73.63955,36.90325],[73.6185,36.90458],[73.59764,36.90758],[73.58555,36.90322],[73.58338,36.90152],[73.57755,36.89691],[73.55036,36.88925],[73.52777,36.88555],[73.51572,36.89224],[73.50641,36.89452],[73.46958,36.89677],[73.44061,36.89261],[73.41664,36.89661],[73.40313,36.89913],[73.38905,36.89574],[73.37225,36.88572],[73.35694,36.88069],[73.3478,36.88463],[73.33622,36.88533],[73.31771,36.87963],[73.30661,36.87313],[73.29766,36.87369],[73.28919,36.87933],[73.27336,36.88855],[73.26194,36.89025],[73.23339,36.88677],[73.21566,36.88988],[73.18939,36.88319],[73.1818,36.88466],[73.14414,36.89411],[73.12166,36.88716],[73.08836,36.88808],[73.07174,36.88905],[73.04727,36.87397],[73.02683,36.86069],[72.99747,36.86238],[72.96888,36.8733],[72.95339,36.87211],[72.92949,36.84875],[72.92414,36.84594],[72.90752,36.84688],[72.88263,36.84108],[72.87105,36.84069],[72.82508,36.84327],[72.79853,36.84786],[72.78158,36.84466],[72.76266,36.8488],[72.75,36.85055],[72.71847,36.84197],[72.68524,36.8438],[72.65616,36.84983],[72.63161,36.84841],[72.62658,36.84158],[72.5661,36.83241],[72.54538,36.82286],[72.50753,36.79288],[72.50447,36.78239],[72.49522,36.77755],[72.41116,36.77666],[72.39005,36.76177],[72.36763,36.75763],[72.33683,36.75922],[72.31369,36.74619],[72.31205,36.74602],[72.30255,36.74499],[72.24136,36.75347],[72.22691,36.73822],[72.22133,36.72991],[72.22127,36.7298],[72.19689,36.69355],[72.20444,36.67719],[72.21447,36.66422],[72.19163,36.65472],[72.16555,36.65961],[72.14069,36.65197],[72.11624,36.64966],[72.10291,36.64855],[72.09727,36.63283],[72.10622,36.60572],[72.09674,36.59733],[72.05916,36.59563],[72.01294,36.56772],[71.96438,36.56655],[71.9353,36.56089],[71.92778,36.5488],[71.91716,36.52444],[71.91664,36.51736],[71.90914,36.5053],[71.88486,36.50469],[71.83205,36.50547],[71.82186,36.48641],[71.81786,36.46172],[71.81852,36.44452],[71.81886,36.44197],[71.82905,36.43452],[71.86166,36.42941],[71.86502,36.41505],[71.85727,36.39941],[71.84371,36.39474],[71.81744,36.396],[71.79577,36.40058],[71.75788,36.42372],[71.7458,36.4326],[71.72447,36.44838],[71.70744,36.45627],[71.68794,36.46075],[71.67763,36.46875],[71.67336,36.47208],[71.65619,36.47822],[71.63594,36.47205],[71.62361,36.45308],[71.62258,36.43883],[71.62197,36.43005],[71.61389,36.40911],[71.5928,36.39055],[71.56539,36.37583],[71.55613,36.36914],[71.55952,36.35477],[71.57216,36.34708],[71.56874,36.32949],[71.53552,36.32566],[71.52422,36.32086],[71.52116,36.30855],[71.52055,36.29972],[71.49974,36.29752],[71.48516,36.29597],[71.46886,36.2825],[71.45719,36.27236],[71.4443,36.27],[71.44163,36.26952],[71.43447,36.26094],[71.41905,36.22789],[71.40047,36.21272],[71.38458,36.20455],[71.36685,36.2018],[71.35908,36.19869],[71.35241,36.18122],[71.34744,36.17255],[71.34058,36.16838],[71.31028,36.15816],[71.28419,36.14508],[71.2546,36.12861],[71.24544,36.12277],[71.24266,36.11399],[71.2438,36.09794],[71.24236,36.09269],[71.22799,36.09063],[71.20808,36.07105],[71.19899,36.04922],[71.19953,36.04633],[71.20141,36.03577],[71.21502,36.0263],[71.2288,36.0195],[71.2536,35.99708],[71.26108,35.99408],[71.28485,35.98949],[71.3028,35.97983],[71.31933,35.96488],[71.33225,35.96163],[71.34963,35.95999],[71.36169,35.96033],[71.37672,35.95611],[71.38138,35.94436],[71.38408,35.91936],[71.38114,35.90791],[71.38072,35.90172],[71.39319,35.89227],[71.4073,35.89075],[71.41819,35.89027],[71.42966,35.88174],[71.4618,35.8403],[71.46741,35.82672],[71.48986,35.80347],[71.48936,35.79639],[71.48133,35.77452],[71.48055,35.763],[71.48535,35.75388],[71.4978,35.74441],[71.52216,35.73352],[71.5328,35.7295],[71.54666,35.72022],[71.54677,35.70544],[71.5388,35.68827],[71.50958,35.65824],[71.50042,35.64022],[71.49947,35.62641],[71.51005,35.61577],[71.52627,35.60488],[71.55586,35.59152],[71.57788,35.58313],[71.60121,35.57744],[71.61222,35.57322],[71.61416,35.56852],[71.61088,35.55391],[71.59928,35.53322],[71.59369,35.5178],[71.59339,35.49752],[71.60608,35.48491],[71.63616,35.46322],[71.64894,35.45247],[71.65066,35.445],[71.64638,35.43227],[71.64105,35.42052],[71.62336,35.40936],[71.5558,35.31286],[71.55358,35.29661],[71.55355,35.29636],[71.55944,35.28408],[71.57003,35.27436],[71.59594,35.25838],[71.62252,35.23591],[71.63541,35.227],[71.65763,35.22319],[71.67197,35.21883],[71.67672,35.20661],[71.67488,35.19652],[71.63894,35.165],[71.62882,35.14888],[71.6173,35.1398],[71.60363,35.13586],[71.58533,35.12936],[71.55258,35.10797],[71.53577,35.09041],[71.53005,35.07236],[71.53397,35.06391],[71.53883,35.05361],[71.54666,35.03766],[71.55603,35.02805],[71.55208,35.01908],[71.53488,35.01252],[71.5176,35.00416],[71.51013,34.99258],[71.51041,34.98066],[71.50646,34.97166],[71.49925,34.96374],[71.48574,34.96163],[71.47621,34.95288],[71.44564,34.94513],[71.43291,34.93838],[71.42238,34.93061],[71.40061,34.9215],[71.38472,34.91672],[71.37016,34.91555],[71.3543,34.91166],[71.34371,34.90297],[71.32839,34.88991],[71.30986,34.87883],[71.30119,34.86547],[71.29575,34.85011],[71.29244,34.83377],[71.27944,34.80502],[71.27122,34.79805],[71.2463,34.79088],[71.22988,34.76044],[71.22499,34.75333],[71.2191,34.74808],[71.19572,34.74727],[71.18172,34.73688],[71.17128,34.72999],[71.15427,34.72433],[71.14372,34.71561],[71.13666,34.70949],[71.11452,34.71047],[71.10602,34.69891],[71.09566,34.67552],[71.09586,34.66086],[71.10578,34.64211],[71.11058,34.62997],[71.10705,34.62036],[71.08708,34.59044],[71.0738,34.58222],[71.05433,34.57691],[71.01797,34.57316],[71.00375,34.56675],[70.99555,34.55477],[70.99283,34.52763],[70.99485,34.4915],[71.0068,34.46111],[71.023,34.44813],[71.0485,34.43091],[71.05358,34.4275],[71.06536,34.41205],[71.07602,34.39577],[71.08728,34.38913],[71.11846,34.379],[71.15394,34.36955],[71.16947,34.3636],[71.17124,34.35825],[71.17108,34.33891],[71.15841,34.32277],[71.15675,34.31316],[71.13033,34.28091],[71.12205,34.26719],[71.1213,34.25494],[71.12652,34.23714],[71.1353,34.2253],[71.12828,34.21419],[71.12444,34.2038],[71.12605,34.17913],[71.12608,34.16241],[71.10939,34.14908],[71.08586,34.12088],[71.07966,34.11344],[71.07274,34.10569],[71.07733,34.07966],[71.07627,34.0625],[71.06527,34.0518],[71.04235,34.04933],[71.03416,34.05052],[71.0178,34.03661],[70.99869,34.0288],[70.98317,34.02861],[70.95463,34.01861],[70.9356,34.01166],[70.9253,34.01208],[70.91794,34.0098],[70.91638,34.00127],[70.89872,33.98222],[70.88494,33.97674],[70.8685,33.9783],[70.85108,33.98072],[70.82428,33.98183],[70.80938,33.97469],[70.78833,33.9678],[70.77947,33.95783],[70.76794,33.95486],[70.75072,33.96072],[70.74036,33.96027],[70.70114,33.96097],[70.6763,33.96022],[70.65116,33.95433],[70.63066,33.95686],[70.59388,33.96433],[70.56047,33.95786],[70.54772,33.95147],[70.53913,33.94577],[70.52502,33.95233],[70.51139,33.94855],[70.50183,33.94377],[70.46772,33.94333],[70.43939,33.95386],[70.4263,33.96038],[70.40372,33.96294],[70.32624,33.96322],[70.29794,33.97458],[70.29783,33.97286],[70.27911,33.98027],[70.26094,33.97772],[70.23883,33.97314],[70.22377,33.98119],[70.19821,33.9853],[70.1693,33.99919],[70.1543,34.0083],[70.13647,34.01216],[70.11191,34.01086],[70.10016,34.00805],[70.07991,34.01519],[70.06747,34.02419],[70.04619,34.03672],[70.02441,34.03961],[70.01927,34.03978],[70.01197,34.04861],[70.00166,34.04894],[69.98711,34.04085],[69.96636,34.03833],[69.91349,34.03794],[69.89753,34.02774],[69.89666,34.00955],[69.90105,33.9933],[69.90066,33.98474],[69.89516,33.97741],[69.87669,33.96836],[69.8658,33.95586],[69.86119,33.93991],[69.86575,33.92691],[69.88297,33.91025],[69.90389,33.89027],[69.91219,33.87497],[69.9163,33.85341],[69.92597,33.84022],[69.94594,33.82775],[69.95569,33.81669],[69.96302,33.78213],[69.9698,33.76261],[69.99183,33.74044],[70.00563,33.73352],[70.02603,33.73069],[70.03505,33.73147],[70.09211,33.71664],[70.10247,33.71841],[70.11677,33.72222],[70.12447,33.72194],[70.13697,33.71505],[70.1501,33.6953],[70.15071,33.68241],[70.14719,33.66325],[70.14927,33.65352],[70.16933,33.64422],[70.18966,33.6403],[70.19702,33.6336],[70.19358,33.61655],[70.17941,33.56452],[70.17472,33.54752],[70.17358,33.52505],[70.18191,33.51297],[70.20055,33.50158],[70.20764,33.48952],[70.2148,33.47963],[70.23124,33.4758],[70.24008,33.47336],[70.25238,33.4386],[70.25849,33.43302],[70.28786,33.43194],[70.2978,33.42622],[70.30097,33.41325],[70.31539,33.39555],[70.31494,33.387],[70.31172,33.37424],[70.32099,33.35569],[70.32658,33.34047],[70.32352,33.33094],[70.30816,33.33041],[70.29142,33.32783],[70.27108,33.30497],[70.23347,33.2688],[70.20827,33.25041],[70.20694,33.24974],[70.18994,33.24141],[70.16805,33.23791],[70.16397,33.23269],[70.15574,33.22119],[70.13111,33.21347],[70.10414,33.21014],[70.09386,33.20836],[70.07894,33.21638],[70.0673,33.21355],[70.02308,33.14327],[70.00638,33.14061],[70,33.13977],[69.98713,33.13805],[69.97683,33.13627],[69.96514,33.1313],[69.94589,33.12872],[69.9288,33.11752],[69.91669,33.10397],[69.90127,33.10127],[69.89236,33.10158],[69.87552,33.09569],[69.85644,33.09633],[69.8288,33.10475],[69.79911,33.12391],[69.78653,33.12755],[69.77347,33.12047],[69.7668,33.11425],[69.74639,33.11383],[69.7373,33.10983],[69.73049,33.10038],[69.72255,33.09314],[69.70458,33.0905],[69.68947,33.09419],[69.67941,33.09772],[69.66672,33.09811],[69.65511,33.09524],[69.61699,33.09749],[69.58005,33.09755],[69.56663,33.08189],[69.54274,33.05905],[69.50736,33.02925],[69.50711,33.02902],[69.49964,33.00247],[69.49302,32.96622],[69.49202,32.94269],[69.51508,32.88627],[69.53108,32.874],[69.53458,32.86641],[69.53052,32.86116],[69.51247,32.85422],[69.50077,32.84814],[69.49739,32.84849],[69.47422,32.85105],[69.46391,32.84708],[69.45825,32.83333],[69.44097,32.81455],[69.41217,32.79288],[69.39522,32.78158],[69.39236,32.77416],[69.39311,32.7613],[69.40277,32.74922],[69.4151,32.7403],[69.43125,32.73233],[69.44122,32.72774],[69.44216,32.72022],[69.44047,32.70955],[69.4388,32.69997],[69.43727,32.69358],[69.43697,32.68608],[69.44294,32.67736],[69.44774,32.67077],[69.45122,32.66316],[69.44441,32.65158],[69.43369,32.63691],[69.41635,32.616],[69.4001,32.58969],[69.38524,32.56655],[69.3428,32.54955],[69.32608,32.54252],[69.30072,32.54111],[69.28522,32.53297],[69.27022,32.50555],[69.24069,32.46138],[69.23877,32.4443],[69.25025,32.414],[69.27141,32.37377],[69.28082,32.35638],[69.27958,32.29216],[69.26997,32.27208],[69.27386,32.20986],[69.27578,32.19374],[69.27366,32.17239],[69.27283,32.151],[69.28947,32.09272],[69.2861,32.07138],[69.29846,32],[69.30033,31.99194],[69.31199,31.98613],[69.31272,31.97608],[69.31527,31.96877],[69.3235,31.94416],[69.3233,31.94072],[69.31761,31.92808],[69.31285,31.9248],[69.29927,31.91913],[69.27766,31.91152],[69.27185,31.90619],[69.26725,31.89514],[69.26258,31.88661],[69.23111,31.86258],[69.21064,31.85408],[69.20341,31.85261],[69.1976,31.84838],[69.19758,31.84824],[69.19255,31.8308],[69.19233,31.83],[69.18575,31.82327],[69.18094,31.80947],[69.17469,31.79999],[69.15625,31.78394],[69.14897,31.75888],[69.13524,31.74791],[69.13227,31.73619],[69.12741,31.72447],[69.12,31.72022],[69.12011,31.719],[69.12102,31.70994],[69.11794,31.70325],[69.10969,31.70038],[69.09644,31.69355],[69.09647,31.69305],[69.09647,31.69263],[69.08116,31.68119],[69.06647,31.66725],[69.0468,31.65986],[69.0315,31.65022],[69.02417,31.64211],[69.021,31.62672],[69.01088,31.62472],[69.00091,31.62825],[68.99344,31.62697],[68.98594,31.628],[68.97827,31.63613],[68.96891,31.63552],[68.96158,31.64044],[68.94916,31.64575],[68.94441,31.64225],[68.93367,31.62055],[68.92847,31.61336],[68.91688,31.60472],[68.90064,31.60125],[68.89536,31.60133],[68.89438,31.60133],[68.872,31.60169],[68.85869,31.59827],[68.8483,31.59741],[68.84355,31.59869],[68.84183,31.59913],[68.83152,31.60583],[68.82191,31.605],[68.81216,31.60963],[68.80494,31.60997],[68.7975,31.61877],[68.78266,31.63525],[68.77794,31.65508],[68.77349,31.66097],[68.75189,31.66952],[68.74283,31.67944],[68.717,31.69663],[68.71391,31.70208],[68.71572,31.71608],[68.70925,31.75099],[68.70183,31.76989],[68.69805,31.77141],[68.68219,31.77366],[68.67816,31.77336],[68.63952,31.77563],[68.63222,31.77825],[68.5821,31.82086],[68.57611,31.82555],[68.57013,31.82797],[68.5548,31.82036],[68.53841,31.81111],[68.52069,31.80116],[68.47783,31.78066],[68.46594,31.77405],[68.46497,31.77383],[68.4513,31.77055],[68.43697,31.76524],[68.43311,31.76325],[68.4476,31.75788],[68.45766,31.75213],[68.46366,31.74813],[68.47916,31.75025],[68.49292,31.7528],[68.49836,31.75383],[68.53852,31.75458],[68.56402,31.75252],[68.57611,31.75161],[68.58203,31.75033],[68.57463,31.73486],[68.56353,31.71977],[68.55561,31.71436],[68.53713,31.71402],[68.51039,31.73388],[68.50089,31.7383],[68.49038,31.74038],[68.47916,31.73925],[68.45664,31.74066],[68.45339,31.74219],[68.44533,31.7425],[68.43611,31.74713],[68.42302,31.75536],[68.42175,31.75736],[68.41952,31.75619],[68.40958,31.75716],[68.37202,31.75847],[68.32089,31.75747],[68.28661,31.757],[68.27822,31.7598],[68.25375,31.7815],[68.25096,31.78536],[68.25936,31.80155],[68.24124,31.80644],[68.19144,31.81275],[68.17749,31.8145],[68.17191,31.82172],[68.17119,31.82788],[68.16889,31.83425],[68.16494,31.83072],[68.15408,31.81744],[68.14436,31.80119],[68.14044,31.79814],[68.12108,31.76597],[68.11669,31.75869],[68.10121,31.74761],[68.09083,31.73638],[68.08408,31.72869],[68.06733,31.7155],[68.06749,31.71025],[68.06408,31.69938],[68.05783,31.6933],[68.0468,31.68597],[68.0315,31.67922],[68.02255,31.67375],[67.98772,31.64891],[67.9698,31.63958],[67.94991,31.63341],[67.93716,31.63288],[67.92453,31.63238],[67.91683,31.63013],[67.90438,31.62597],[67.8945,31.62572],[67.88661,31.62944],[67.87377,31.62961],[67.86869,31.6288],[67.84314,31.61652],[67.81597,31.59633],[67.81172,31.59161],[67.80358,31.58213],[67.79,31.57219],[67.77819,31.5655],[67.76697,31.55674],[67.74913,31.54025],[67.74205,31.53372],[67.72605,31.52483],[67.71308,31.52063],[67.70433,31.5198],[67.69977,31.51938],[67.6778,31.52091],[67.66175,31.52097],[67.6538,31.51872],[67.65,31.51844],[67.64847,31.51836],[67.63639,31.52813],[67.62774,31.53019],[67.62155,31.53116],[67.61005,31.53136],[67.58455,31.53438],[67.56955,31.53469],[67.5595,31.53236],[67.554,31.5288],[67.55503,31.52194],[67.57566,31.50505],[67.591,31.47958],[67.59505,31.4705],[67.59864,31.45961],[67.59911,31.45366],[67.59469,31.4343],[67.59764,31.4268],[67.60539,31.41852],[67.62286,31.41508],[67.62774,31.41336],[67.63378,31.40069],[67.64405,31.39683],[67.66007,31.39722],[67.68922,31.40436],[67.72633,31.41191],[67.74094,31.41477],[67.75033,31.41363],[67.76041,31.40747],[67.76403,31.40341],[67.77133,31.39994],[67.7783,31.39116],[67.78577,31.37461],[67.78986,31.35661],[67.78544,31.34391],[67.77558,31.33433],[67.77408,31.33286],[67.76277,31.32755],[67.75616,31.3258],[67.73786,31.32458],[67.73119,31.32322],[67.71772,31.32341],[67.7071,31.32025],[67.69171,31.31369],[67.68289,31.30683],[67.6583,31.29155],[67.62041,31.27638],[67.61219,31.27527],[67.60294,31.27275],[67.59063,31.27402],[67.58019,31.2733],[67.57466,31.27294],[67.57099,31.27077],[67.53925,31.26355],[67.53136,31.26038],[67.51039,31.24997],[67.49066,31.24214],[67.46416,31.23755],[67.44405,31.23288],[67.43066,31.22772],[67.40641,31.21974],[67.39297,31.21708],[67.39052,31.21658],[67.36616,31.21913],[67.34536,31.21972],[67.32719,31.21372],[67.31461,31.21519],[67.30486,31.21197],[67.29149,31.2125],[67.2715,31.20577],[67.2621,31.20688],[67.24583,31.21469],[67.22699,31.21944],[67.19574,31.22061],[67.18333,31.22486],[67.17099,31.24008],[67.16633,31.24338],[67.11761,31.2413],[67.10997,31.23925],[67.09371,31.23191],[67.06903,31.22961],[67.05616,31.23083],[67.04963,31.23386],[67.04025,31.23541],[67.03099,31.24019],[67.02566,31.24666],[67.02185,31.25502],[67.0248,31.2613],[67.04025,31.26933],[67.04775,31.27527],[67.0513,31.28591],[67.05002,31.29161],[67.04447,31.30383],[67.03463,31.30927],[67.0188,31.31133],[66.98566,31.31286],[66.9691,31.31261],[66.95772,31.31066],[66.95183,31.30983],[66.93419,31.30561],[66.90227,31.29616],[66.8668,31.28272],[66.85658,31.2785],[66.83496,31.26427],[66.82228,31.2483],[66.80802,31.22644],[66.80577,31.224],[66.802,31.21908],[66.79291,31.21305],[66.77625,31.2098],[66.75785,31.20969],[66.73108,31.2125],[66.72016,31.20597],[66.71817,31.20269],[66.71316,31.18261],[66.7093,31.16069],[66.70361,31.15066],[66.69694,31.13211],[66.68619,31.11527],[66.68814,31.10111],[66.68421,31.09319],[66.68316,31.07458],[66.667,31.06675],[66.66422,31.063],[66.65983,31.06033],[66.6388,31.04177],[66.61816,31.02047],[66.57963,30.9885],[66.56255,30.97761],[66.53389,30.97024],[66.51855,30.96839],[66.50746,30.96616],[66.48416,30.96402],[66.48239,30.96191],[66.44622,30.95588],[66.44008,30.95436],[66.40097,30.94472],[66.39133,30.9405],[66.38658,30.93391],[66.38394,30.92188],[66.38133,30.91494],[66.37191,30.88227],[66.36172,30.84408],[66.34139,30.77275],[66.33303,30.74058],[66.3311,30.73661],[66.32222,30.70488],[66.31608,30.68838],[66.29877,30.62677],[66.29294,30.60983],[66.28936,30.59594],[66.28666,30.58727],[66.28394,30.57858],[66.28105,30.56927],[66.28108,30.56308],[66.28269,30.55694],[66.29233,30.53777],[66.29788,30.5093],[66.30535,30.50244],[66.30994,30.50077],[66.32592,30.49327],[66.32763,30.49036],[66.3398,30.4793],[66.33663,30.45602],[66.33891,30.44694],[66.34958,30.43377],[66.35411,30.42727],[66.35436,30.42177],[66.35111,30.41225],[66.33799,30.39252],[66.33469,30.38347],[66.33277,30.3733],[66.33419,30.35452],[66.33652,30.3498],[66.33522,30.33736],[66.33247,30.3173],[66.32744,30.30588],[66.32044,30.27949],[66.31661,30.24286],[66.31041,30.22819],[66.30139,30.2178],[66.29289,30.20188],[66.28694,30.18744],[66.28771,30.17097],[66.28644,30.16402],[66.2843,30.15891],[66.26852,30.14091],[66.26008,30.12913],[66.25724,30.11069],[66.23844,30.08408],[66.23822,30.06641],[66.24166,30.05505],[66.25905,30.04397],[66.28855,30.02227],[66.30041,30.01625],[66.30374,30.01294],[66.32222,30],[66.35874,29.97444],[66.3615,29.97202],[66.36194,29.96814],[66.35685,29.9583],[66.34564,29.95013],[66.33019,29.92502],[66.31916,29.91294],[66.31891,29.91269],[66.31319,29.91088],[66.31224,29.90833],[66.28933,29.89125],[66.26983,29.87494],[66.25397,29.85566],[66.24563,29.85136],[66.23058,29.84669],[66.20224,29.83927],[66.18386,29.83311],[66.16486,29.8283],[66.1558,29.82522],[66.13322,29.81897],[66.11658,29.81438],[66.07241,29.80244],[66.03552,29.79213],[66.00252,29.78355],[65.9381,29.76691],[65.91555,29.76011],[65.88797,29.75377],[65.87452,29.74961],[65.85322,29.74419],[65.83405,29.73841],[65.78113,29.72374],[65.73722,29.7133],[65.7313,29.71077],[65.6978,29.7028],[65.65866,29.69208],[65.63608,29.68658],[65.61086,29.681],[65.57152,29.6693],[65.53466,29.66047],[65.52253,29.65608],[65.51574,29.65511],[65.44132,29.63622],[65.42346,29.63111],[65.36966,29.61558],[65.28627,29.59347],[65.27588,29.59163],[65.26194,29.58738],[65.23994,29.58116],[65.19488,29.56958],[65.16083,29.56027],[65.09713,29.54283],[65.06705,29.53622],[65.054,29.53475],[65.02855,29.5343],[65,29.53741],[64.95578,29.55358],[64.82169,29.56408],[64.80741,29.56575],[64.7621,29.57113],[64.66744,29.57838],[64.63191,29.58108],[64.53228,29.57586],[64.48761,29.57177],[64.45547,29.56399],[64.4281,29.55094],[64.4118,29.54511],[64.39074,29.54416],[64.37,29.54872],[64.3526,29.54538],[64.31527,29.53033],[64.27941,29.52808],[64.2668,29.52383],[64.23741,29.50244],[64.20805,29.49436],[64.17105,29.45952],[64.15233,29.44955],[64.14658,29.434],[64.13108,29.39194],[64.12,29.38211],[64.1053,29.37747],[64.08725,29.38288],[64.06783,29.39177],[64.04469,29.41302],[64.03236,29.41769],[63.91077,29.43861],[63.77411,29.45969],[63.64483,29.47947],[63.63216,29.48205],[63.59083,29.49041],[63.56016,29.48944],[63.4163,29.47986],[63.36449,29.47636],[63.27272,29.4678],[63.1293,29.45433],[62.98591,29.44069],[62.84258,29.42691],[62.69927,29.41297],[62.556,29.39891],[62.45577,29.38897],[62.2783,29.44177],[62.14169,29.48222],[62.00497,29.52252],[61.86816,29.56269],[61.73122,29.60275],[61.65252,29.62569],[61.59458,29.64355],[61.45827,29.68544],[61.32186,29.72722],[61.18536,29.76883],[61.04875,29.81033],[61.00169,29.82455],[60.91202,29.85169],[60.87861,29.86177],[60.96524,29.76077],[60.98736,29.73497],[61.05172,29.65975],[61.12586,29.57294],[61.19258,29.5025],[61.23461,29.46494],[61.31113,29.39647],[61.37086,29.35002],[61.37138,29.34961],[61.37227,29.34844],[61.37274,29.34727],[61.37686,29.33686],[61.37749,29.3353],[61.37341,29.31647],[61.35775,29.28277],[61.38349,29.22147],[61.39097,29.21361],[61.39913,29.20852],[61.42244,29.2005],[61.42866,29.19377],[61.41483,29.15619],[61.41336,29.14122],[61.4158,29.13563],[61.44352,29.12811],[61.45863,29.12241],[61.47052,29.11394],[61.47794,29.10277],[61.47886,29.08055],[61.50316,29.05641],[61.50555,29.04805],[61.49531,29.04461],[61.47821,29.02436],[61.53403,29.00942],[61.57704,28.92725],[61.60932,28.86216],[61.63615,28.81619],[61.67621,28.76576],[61.69558,28.75147],[61.72586,28.7412],[61.77752,28.67991],[61.79561,28.65583],[61.80416,28.64016],[61.82291,28.63269],[61.87011,28.59705],[61.89213,28.58372],[61.90861,28.57377],[61.95758,28.54869],[61.99316,28.54075],[62.01583,28.52858],[62.01827,28.52677],[62.0433,28.50788],[62.11577,28.48511],[62.14855,28.48905],[62.15236,28.4895],[62.17055,28.48755],[62.20241,28.47869],[62.23988,28.46586],[62.26944,28.46647],[62.29627,28.46344],[62.34997,28.44119],[62.37252,28.43802],[62.41669,28.41833],[62.43188,28.41094],[62.43966,28.40713],[62.47233,28.37605],[62.50288,28.33133],[62.51597,28.32227],[62.54158,28.30997],[62.57311,28.27852],[62.5923,28.25513],[62.63069,28.25936],[62.78694,28.28119],[62.79194,28.27711],[62.79658,28.20894],[62.7808,28.10294],[62.76822,28.03241],[62.77183,28.01505],[62.79005,27.97811],[62.79747,27.91444],[62.80827,27.85158],[62.8198,27.805],[62.82058,27.79977],[62.83002,27.73527],[62.83858,27.64744],[62.85125,27.54886],[62.85202,27.54266],[62.85538,27.46513],[62.83997,27.42502],[62.80738,27.34008],[62.82805,27.31933],[62.83252,27.30494],[62.82319,27.28622],[62.78147,27.25141],[62.78297,27.23427],[62.79794,27.22152],[62.82136,27.21233],[62.84366,27.21308],[62.87833,27.21713],[62.89233,27.21077],[62.90869,27.19924],[62.95166,27.19208],[62.97724,27.19511],[63.05864,27.23319],[63.11577,27.23436],[63.1952,27.25975],[63.22715,27.22622],[63.25746,27.22693],[63.2809,27.21176],[63.33326,27.11788],[63.30955,27.12716],[63.2903,27.11875],[63.26358,27.11039],[63.26077,27.09208],[63.25111,27.09028],[63.25311,26.90238],[63.24137,26.89607],[63.23906,26.88165],[63.24636,26.86723],[63.2405,26.84088],[63.18556,26.83516],[63.19877,26.79841],[63.20319,26.76825],[63.19868,26.7429],[63.19972,26.71282],[63.18821,26.69826],[63.2016,26.67437],[63.18907,26.66733],[63.19577,26.64556],[63.16919,26.6473],[63.16202,26.64361],[63.15652,26.645],[63.09002,26.64408],[63.05144,26.63758],[63.00191,26.65194],[62.98588,26.65336],[62.95275,26.65297],[62.94652,26.65291],[62.91947,26.64613],[62.84008,26.64752],[62.8216,26.65219],[62.80347,26.65225],[62.77869,26.65227],[62.76069,26.64841],[62.73683,26.63852],[62.73394,26.63622],[62.73158,26.6343],[62.72638,26.62411],[62.72139,26.61988],[62.71022,26.617],[62.69741,26.61366],[62.69649,26.61333],[62.68516,26.61255],[62.66086,26.6165],[62.64833,26.60913],[62.6378,26.59941],[62.60813,26.58499],[62.58197,26.58283],[62.52986,26.57847],[62.51197,26.58133],[62.47841,26.56955],[62.46336,26.56761],[62.44122,26.57002],[62.43452,26.56813],[62.41069,26.54439],[62.40352,26.53933],[62.39711,26.5383],[62.36133,26.53952],[62.35341,26.53591],[62.34325,26.53125],[62.33361,26.52852],[62.31505,26.52886],[62.30602,26.52441],[62.29938,26.51363],[62.29586,26.49875],[62.29702,26.49413],[62.3045,26.4848],[62.30877,26.47669],[62.3088,26.47666],[62.30219,26.46761],[62.28258,26.44725],[62.26977,26.44574],[62.25772,26.44883],[62.25636,26.44597],[62.26461,26.43208],[62.26472,26.41269],[62.28583,26.3776],[62.25734,26.3687],[62.24982,26.34102],[62.27126,26.3346],[62.26862,26.32429],[62.24567,26.32147],[62.23189,26.33211],[62.23263,26.31493],[62.21253,26.27143],[62.15005,26.27037],[62.09718,26.28533],[62.09573,26.31059],[62.06897,26.32502],[62.02984,26.33453],[62.02474,26.30926],[61.98666,26.27966],[61.95824,26.26858],[61.91696,26.25473],[61.90117,26.26263],[61.88882,26.25143],[61.89048,26.23105],[61.86093,26.17515],[61.83897,26.06693],[61.83587,26.02005],[61.82375,25.96218],[61.8333,25.9119],[61.85775,25.91378],[61.87402,25.89202],[61.89179,25.89036],[61.89033,25.88005],[61.84626,25.87792],[61.8221,25.84738],[61.84923,25.81868],[61.83951,25.79435],[61.84078,25.74529],[61.80834,25.73649],[61.80077,25.71925],[61.73626,25.73913],[61.69504,25.69125],[61.69414,25.6793],[61.68899,25.66255],[61.6766,25.64631],[61.66722,25.51238],[61.65355,25.30557],[61.5713,25.01276],[60,24]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!:A5:**Bhutan#AP:**Pakistan#S2:**Bangladesh#VQ9:**Chagos Islands#VU:**India#VU7:**Laccadive Islands#4S:**Sri Lanka#8Q:**Maldives","itu_zone_number":41,"itu_zone_name_loc":[10,75]},"geometry":{"type":"Polygon","coordinates":[[[89.999999,28.33293],[89.98701,28.33257],[89.98226,28.31379],[89.94074,28.31527],[89.93013,28.31827],[89.9176,28.31795],[89.90439,28.31188],[89.89719,28.30942],[89.89239,28.31417],[89.88039,28.3109],[89.87405,28.31335],[89.86839,28.31338],[89.85878,28.30799],[89.83956,28.28869],[89.82997,28.28214],[89.82748,28.25891],[89.82294,28.24959],[89.82038,28.24122],[89.81438,28.23893],[89.80563,28.23785],[89.79775,28.24657],[89.79229,28.24647],[89.79131,28.23917],[89.78691,28.22944],[89.7781,28.22814],[89.77306,28.22381],[89.76803,28.2219],[89.77239,28.21824],[89.77539,28.21096],[89.78103,28.21091],[89.78339,28.20779],[89.77583,28.19638],[89.76964,28.19344],[89.7655,28.18697],[89.76545,28.18309],[89.75528,28.18617],[89.74786,28.19077],[89.74559,28.18901],[89.74194,28.19027],[89.72907,28.17552],[89.71894,28.17166],[89.71397,28.17725],[89.68917,28.18156],[89.68291,28.18466],[89.67532,28.18156],[89.66978,28.17059],[89.66116,28.17142],[89.65871,28.16801],[89.64593,28.16968],[89.64138,28.17376],[89.62431,28.16521],[89.61959,28.16816],[89.60972,28.16808],[89.59642,28.16377],[89.59515,28.15287],[89.59005,28.1453],[89.58289,28.14015],[89.56936,28.11956],[89.5602,28.12165],[89.55052,28.11665],[89.5532,28.1053],[89.54879,28.1034],[89.543,28.09727],[89.53521,28.08925],[89.52495,28.09016],[89.51022,28.0947],[89.50531,28.08677],[89.50556,28.08126],[89.49781,28.07449],[89.49384,28.06892],[89.48506,28.06215],[89.48503,28.05795],[89.47608,28.05011],[89.47452,28.04498],[89.46816,28.04167],[89.46498,28.03698],[89.45973,28.03533],[89.46024,28.0308],[89.47129,28.02316],[89.46862,28.01431],[89.45771,28.01122],[89.4516,28.00692],[89.45478,27.99724],[89.45041,27.98816],[89.45198,27.97486],[89.43931,27.96464],[89.43927,27.95549],[89.43375,27.95058],[89.43371,27.94719],[89.41995,27.94441],[89.41507,27.93596],[89.4102,27.93358],[89.41456,27.92557],[89.4061,27.92248],[89.39901,27.91877],[89.39862,27.90988],[89.39412,27.90585],[89.38956,27.89141],[89.37565,27.88376],[89.36843,27.87151],[89.36016,27.87188],[89.34932,27.86538],[89.33779,27.86252],[89.32949,27.85437],[89.31192,27.85442],[89.30877,27.85751],[89.30518,27.85393],[89.29815,27.85338],[89.29301,27.84835],[89.28788,27.83997],[89.28137,27.83827],[89.27419,27.82881],[89.26563,27.82845],[89.26635,27.8224],[89.26843,27.81271],[89.25712,27.8071],[89.24512,27.80271],[89.23947,27.80348],[89.2345,27.80243],[89.2349,27.79318],[89.23221,27.78849],[89.23096,27.78396],[89.225,27.78341],[89.22518,27.77576],[89.22159,27.77207],[89.22263,27.76468],[89.21991,27.7584],[89.22266,27.75695],[89.22679,27.74639],[89.22061,27.74167],[89.222,27.738],[89.22887,27.73291],[89.2196,27.72356],[89.20725,27.72059],[89.20519,27.72187],[89.19697,27.72094],[89.19219,27.70213],[89.18363,27.69365],[89.18435,27.68851],[89.17751,27.68155],[89.18272,27.67432],[89.17419,27.67317],[89.17077,27.66722],[89.16392,27.66553],[89.15604,27.65684],[89.15159,27.65545],[89.14066,27.64807],[89.14209,27.6419],[89.13391,27.63939],[89.12923,27.63259],[89.13279,27.62944],[89.12983,27.62142],[89.12893,27.61522],[89.12337,27.61509],[89.11782,27.61983],[89.1126,27.6194],[89.10739,27.62383],[89.10073,27.62296],[89.09683,27.62574],[89.07872,27.62175],[89.07194,27.61746],[89.06112,27.61405],[89.05854,27.60912],[89.05116,27.60723],[89.04125,27.59753],[89.03786,27.58906],[89.03451,27.57819],[89.02391,27.57595],[89.014,27.57432],[89.00721,27.56985],[89.00284,27.5602],[88.99846,27.55542],[89.00575,27.5552],[89.00481,27.54951],[88.9983,27.5459],[88.99746,27.54044],[88.99386,27.53681],[88.98361,27.5296],[88.97888,27.52917],[88.97562,27.52587],[88.97544,27.51954],[88.97183,27.51442],[88.97834,27.50856],[88.98691,27.49174],[88.97521,27.48489],[88.96557,27.47348],[88.96721,27.46004],[88.96136,27.45188],[88.95551,27.43702],[88.9644,27.42437],[88.96295,27.41707],[88.94987,27.41372],[88.96324,27.40565],[88.96607,27.39952],[88.97027,27.39887],[88.97516,27.38603],[88.98035,27.36285],[88.97745,27.35674],[88.98767,27.35156],[88.98937,27.34721],[88.99656,27.34652],[89.00135,27.3376],[89.00477,27.32624],[88.98162,27.31592],[88.97289,27.3056],[88.96139,27.31058],[88.95297,27.32044],[88.93752,27.33771],[88.9267,27.33506],[88.92618,27.32997],[88.9224,27.32773],[88.91758,27.33127],[88.90567,27.32894],[88.90097,27.333],[88.895,27.3326],[88.89267,27.33849],[88.88252,27.3454],[88.88488,27.35008],[88.88205,27.35272],[88.8805,27.36105],[88.87294,27.36316],[88.86195,27.37015],[88.86332,27.37924],[88.86126,27.38645],[88.84598,27.3848],[88.83853,27.37899],[88.8304,27.38964],[88.82168,27.39205],[88.81984,27.40085],[88.82143,27.40479],[88.80806,27.40443],[88.80602,27.40803],[88.80743,27.41036],[88.80477,27.41563],[88.80769,27.42434],[88.80185,27.42237],[88.79927,27.42748],[88.79601,27.42772],[88.79051,27.4378],[88.79428,27.43935],[88.79325,27.44699],[88.78947,27.44765],[88.78621,27.45255],[88.78295,27.4544],[88.78294,27.45877],[88.77607,27.47055],[88.78292,27.47523],[88.7802,27.48207],[88.78434,27.48465],[88.78402,27.49971],[88.78645,27.50381],[88.78667,27.50957],[88.79032,27.51472],[88.78801,27.52107],[88.79395,27.52498],[88.79295,27.53148],[88.78269,27.52976],[88.77792,27.5317],[88.77387,27.53923],[88.77254,27.55699],[88.76296,27.56685],[88.76969,27.57122],[88.78123,27.57012],[88.7859,27.57388],[88.79263,27.5746],[88.78866,27.58601],[88.80475,27.59544],[88.80847,27.60244],[88.80662,27.60875],[88.80992,27.61903],[88.80394,27.62443],[88.81121,27.63734],[88.81572,27.64842],[88.82407,27.64443],[88.83122,27.64702],[88.84922,27.66747],[88.84799,27.67575],[88.84141,27.68351],[88.84788,27.69309],[88.84744,27.69697],[88.84357,27.70267],[88.83789,27.70555],[88.83958,27.71194],[88.85669,27.71681],[88.8587,27.73809],[88.86757,27.74357],[88.86185,27.75393],[88.85682,27.75335],[88.85467,27.76924],[88.85595,27.77357],[88.85483,27.77913],[88.8592,27.79075],[88.86089,27.80446],[88.8574,27.80576],[88.85866,27.81687],[88.87503,27.82828],[88.87978,27.82974],[88.88316,27.83544],[88.88013,27.84094],[88.88122,27.85128],[88.8889,27.8568],[88.88101,27.86728],[88.87792,27.88261],[88.88137,27.89142],[88.87074,27.90114],[88.86921,27.91875],[88.8602,27.92725],[88.84745,27.92603],[88.83471,27.93028],[88.83812,27.94606],[88.84223,27.94788],[88.84376,27.9538],[88.83981,27.96942],[88.84219,27.97519],[88.84078,27.98247],[88.84281,27.98552],[88.83758,28.0007],[88.8358,28.0165],[88.8293,28.01763],[88.82075,28.0224],[88.81494,28.02112],[88.80433,28.03074],[88.79683,28.04149],[88.79343,28.04384],[88.79208,28.04922],[88.78765,28.04998],[88.78321,28.05376],[88.7764,28.05467],[88.75523,28.08073],[88.74292,28.07575],[88.72992,28.07259],[88.71502,28.07843],[88.69778,28.0765],[88.69255,28.07882],[88.68265,28.07838],[88.67873,28.0724],[88.6675,28.07531],[88.66451,28.08731],[88.6443,28.1027],[88.64058,28.11567],[88.63381,28.12343],[88.6275,28.11625],[88.61638,28.11271],[88.60857,28.10804],[88.60118,28.08962],[88.59481,28.09059],[88.58914,28.08731],[88.58705,28.08451],[88.57741,28.08492],[88.56916,28.09139],[88.56431,28.0898],[88.56218,28.08631],[88.55525,28.08221],[88.55491,28.07838],[88.55732,28.07454],[88.55423,28.06692],[88.5539,28.05627],[88.54979,28.0483],[88.55324,28.03881],[88.54642,28.03358],[88.53497,28.03368],[88.52832,28.03803],[88.52396,28.03581],[88.51935,28.0429],[88.51116,28.04282],[88.5025,28.05099],[88.49522,28.05493],[88.49164,28.04752],[88.48531,28.04436],[88.47541,28.03621],[88.47443,28.02716],[88.46796,28.01749],[88.45547,28.01435],[88.4375,28.00878],[88.43023,28.00736],[88.42365,28.00169],[88.41666,27.99946],[88.4135,27.99059],[88.41377,27.98051],[88.40189,27.98062],[88.39001,27.97649],[88.38259,27.98448],[88.37723,27.98884],[88.35626,27.98846],[88.33461,27.98322],[88.3315,27.97616],[88.32289,27.98002],[88.31532,27.97807],[88.31393,27.97248],[88.3029,27.96495],[88.29322,27.96686],[88.28415,27.96523],[88.28017,27.95466],[88.27138,27.9544],[88.26891,27.95753],[88.26396,27.95529],[88.25935,27.94653],[88.25063,27.9414],[88.23799,27.96937],[88.23127,27.96815],[88.22317,27.96147],[88.21317,27.96388],[88.20593,27.96129],[88.20694,27.94051],[88.19586,27.94297],[88.18753,27.9424],[88.17851,27.94972],[88.17327,27.95036],[88.16185,27.95782],[88.15351,27.95862],[88.1493,27.96275],[88.14166,27.96506],[88.13529,27.95364],[88.1303,27.9495],[88.13458,27.94567],[88.13611,27.93698],[88.13104,27.93287],[88.12941,27.92511],[88.12133,27.92355],[88.11752,27.9168],[88.12434,27.90419],[88.13871,27.88977],[88.13576,27.88122],[88.14087,27.87729],[88.14391,27.87883],[88.14904,27.87702],[88.15554,27.87035],[88.16119,27.8696],[88.17989,27.85609],[88.19737,27.8558],[88.1956,27.8492],[88.19917,27.84439],[88.19931,27.83957],[88.18895,27.82842],[88.18203,27.82395],[88.17286,27.82185],[88.17237,27.81947],[88.18128,27.81052],[88.18882,27.79974],[88.19635,27.79018],[88.19051,27.78297],[88.1826,27.77576],[88.18121,27.76757],[88.17776,27.75695],[88.17841,27.74663],[88.16976,27.74394],[88.1563,27.74185],[88.1531,27.71555],[88.14755,27.70969],[88.14613,27.70383],[88.15071,27.69897],[88.15082,27.69259],[88.14544,27.68134],[88.14499,27.66614],[88.13938,27.66112],[88.12485,27.65246],[88.1205,27.64425],[88.11799,27.62449],[88.10849,27.6061],[88.10449,27.60109],[88.09446,27.59917],[88.08855,27.59421],[88.07742,27.57393],[88.07967,27.56309],[88.07781,27.56017],[88.06994,27.55633],[88.0684,27.54985],[88.05932,27.5391],[88.06074,27.51742],[88.05544,27.50864],[88.04567,27.49804],[88.04353,27.48604],[88.04552,27.47708],[88.0641,27.46258],[88.06824,27.45076],[88.07375,27.44626],[88.06411,27.42796],[88.05104,27.41089],[88.04447,27.37828],[88.04771,27.36868],[88.0713,27.34375],[88.07842,27.33408],[88.07803,27.32647],[88.05725,27.31369],[88.04549,27.30059],[88.03441,27.28444],[88.03199,27.26132],[88.02708,27.24638],[88.01861,27.23555],[88.01289,27.22044],[88.00993,27.19634],[88.01211,27.16583],[88.01086,27.15182],[87.99704,27.12745],[87.99283,27.11347],[87.99595,27.103],[88.01502,27.09074],[88.01898,27.08642],[88.0314,27.05263],[88.04619,27.042],[88.05618,27.03994],[88.07272,27.03153],[88.08108,27.02418],[88.08969,27.00453],[88.10037,27.0017],[88.10776,26.99463],[88.11585,26.98756],[88.12805,26.98813],[88.13407,26.98503],[88.12333,26.96822],[88.12083,26.94956],[88.13584,26.93539],[88.14466,26.92122],[88.14481,26.91216],[88.13755,26.89895],[88.14746,26.88911],[88.15997,26.88297],[88.1645,26.87653],[88.16506,26.87086],[88.16774,26.86802],[88.17179,26.86886],[88.17375,26.85287],[88.16752,26.8507],[88.16974,26.84403],[88.16853,26.83798],[88.17324,26.83342],[88.17109,26.82641],[88.1789,26.81511],[88.1773,26.80394],[88.18068,26.79609],[88.18132,26.7858],[88.18807,26.77255],[88.18659,26.74725],[88.18099,26.7195],[88.16635,26.70016],[88.16797,26.68358],[88.16519,26.67201],[88.1638,26.66316],[88.16242,26.64572],[88.1555,26.63241],[88.14028,26.62542],[88.13869,26.61146],[88.13001,26.60317],[88.12916,26.57644],[88.11458,26.56936],[88.10602,26.55151],[88.1095,26.54408],[88.09586,26.53535],[88.10694,26.52662],[88.09468,26.51052],[88.10061,26.50364],[88.09968,26.48938],[88.10605,26.48914],[88.10543,26.47956],[88.09796,26.4792],[88.10146,26.46409],[88.08883,26.46282],[88.0968,26.44925],[88.09077,26.4258],[88.07539,26.41899],[88.05313,26.40234],[88.02785,26.3838],[88.03085,26.36516],[88.00698,26.36151],[88.00053,26.36614],[87.99535,26.36442],[87.99154,26.37007],[87.99216,26.38015],[87.97222,26.39257],[87.96087,26.39693],[87.94952,26.39945],[87.93919,26.41372],[87.92407,26.42516],[87.92611,26.44521],[87.92231,26.44808],[87.90849,26.44557],[87.9029,26.4486],[87.89723,26.46633],[87.88931,26.47351],[87.86583,26.46063],[87.85721,26.45387],[87.84722,26.43973],[87.83617,26.43913],[87.81737,26.44932],[87.80471,26.45872],[87.79067,26.4589],[87.77564,26.45003],[87.77374,26.42461],[87.77047,26.41271],[87.76752,26.40776],[87.76114,26.40773],[87.74494,26.41443],[87.7356,26.41252],[87.72627,26.41431],[87.72236,26.42187],[87.71639,26.42636],[87.70858,26.4255],[87.69596,26.43017],[87.68379,26.42404],[87.67771,26.41759],[87.67506,26.41114],[87.66652,26.40379],[87.64875,26.39955],[87.64273,26.39229],[87.63173,26.39008],[87.60906,26.38664],[87.60459,26.38117],[87.59256,26.37878],[87.58567,26.38261],[87.58081,26.39027],[87.53128,26.41788],[87.49724,26.43123],[87.4838,26.43596],[87.46448,26.43498],[87.44167,26.43147],[87.40375,26.42057],[87.36857,26.40291],[87.3595,26.38833],[87.35064,26.35736],[87.34255,26.35017],[87.32939,26.34772],[87.31897,26.35205],[87.30981,26.36346],[87.29697,26.37028],[87.27281,26.3725],[87.2665,26.37963],[87.25911,26.40386],[87.24589,26.41209],[87.23953,26.41356],[87.22905,26.41088],[87.21995,26.40574],[87.20998,26.40591],[87.20588,26.40935],[87.19972,26.41095],[87.18466,26.40246],[87.17032,26.40024],[87.15194,26.39887],[87.13322,26.4135],[87.11999,26.42874],[87.11366,26.43184],[87.10294,26.44231],[87.09566,26.45216],[87.08369,26.48665],[87.06869,26.55255],[87.06947,26.58004],[87.06682,26.58666],[87.06076,26.58852],[87.0499,26.5867],[87.03365,26.57199],[87.0046,26.53398],[86.99094,26.52619],[86.96628,26.52453],[86.94856,26.53044],[86.9402,26.52653],[86.93321,26.51954],[86.93089,26.51354],[86.9169,26.51091],[86.90154,26.50244],[86.89485,26.48796],[86.89108,26.47191],[86.82104,26.43673],[86.79877,26.44697],[86.7765,26.45106],[86.76079,26.44942],[86.74543,26.42379],[86.73694,26.41968],[86.73128,26.41976],[86.72561,26.42169],[86.69627,26.4398],[86.68341,26.4493],[86.65991,26.45603],[86.6419,26.4646],[86.61669,26.48437],[86.5908,26.48999],[86.57374,26.49283],[86.55703,26.50345],[86.54032,26.52452],[86.52681,26.53224],[86.48881,26.53847],[86.47072,26.54869],[86.43957,26.5583],[86.42456,26.56269],[86.40985,26.56795],[86.40112,26.57703],[86.3917,26.58242],[86.37945,26.58799],[86.35553,26.58926],[86.3324,26.58443],[86.32804,26.58767],[86.33466,26.60687],[86.33166,26.61256],[86.3268,26.61395],[86.30477,26.61351],[86.29029,26.61429],[86.27581,26.612],[86.2488,26.60224],[86.22086,26.587],[86.20654,26.58539],[86.19881,26.58977],[86.1897,26.60644],[86.18523,26.60845],[86.16222,26.60725],[86.14127,26.60236],[86.13505,26.6049],[86.12745,26.61634],[86.11782,26.61869],[86.11368,26.61551],[86.10472,26.61805],[86.07927,26.6433],[86.06861,26.6524],[86.04696,26.66149],[86.02907,26.66312],[86.00336,26.65031],[85.9962,26.64855],[85.96998,26.64832],[85.96265,26.64656],[85.94489,26.61818],[85.92095,26.60822],[85.90608,26.59985],[85.89727,26.59107],[85.89533,26.59026],[85.87795,26.58152],[85.86929,26.57447],[85.85471,26.5702],[85.84971,26.5728],[85.84677,26.57601],[85.84227,26.58735],[85.84493,26.59284],[85.84142,26.60324],[85.83653,26.6075],[85.83071,26.60919],[85.81166,26.60075],[85.80842,26.60151],[85.78458,26.62316],[85.76781,26.6321],[85.75104,26.6435],[85.73054,26.66629],[85.72394,26.70452],[85.72764,26.73477],[85.73231,26.78577],[85.7279,26.8001],[85.70898,26.81737],[85.6832,26.8328],[85.66859,26.83646],[85.65888,26.84319],[85.64918,26.84747],[85.63938,26.86062],[85.63026,26.86826],[85.62182,26.86606],[85.60857,26.86019],[85.59991,26.85395],[85.58948,26.84944],[85.57067,26.84594],[85.50729,26.81351],[85.47943,26.80196],[85.46735,26.79838],[85.45994,26.79107],[85.45253,26.78683],[85.44605,26.78549],[85.42997,26.7909],[85.42148,26.79589],[85.41207,26.79484],[85.39184,26.77754],[85.3807,26.76246],[85.37001,26.75455],[85.35197,26.75029],[85.34628,26.74664],[85.34002,26.73757],[85.33496,26.7345],[85.30999,26.73941],[85.29575,26.74554],[85.27413,26.74984],[85.21065,26.76763],[85.19993,26.77384],[85.19333,26.78373],[85.18743,26.79301],[85.18426,26.80351],[85.18745,26.81777],[85.19339,26.83141],[85.19633,26.84951],[85.18849,26.86517],[85.17165,26.87023],[85.14004,26.87222],[85.10156,26.86763],[85.09122,26.86182],[85.07814,26.85049],[85.05991,26.84728],[85.04167,26.84713],[85.03611,26.8499],[85.03432,26.85611],[85.04695,26.87702],[85.04062,26.88639],[85.00858,26.88934],[84.97447,26.90118],[84.96832,26.90878],[84.96628,26.92066],[84.96751,26.93331],[84.96668,26.94596],[84.94833,26.96205],[84.92723,26.96925],[84.89395,26.97326],[84.87928,26.98306],[84.85431,26.99591],[84.84857,27.01091],[84.84351,27.0149],[84.81367,27.01983],[84.80322,27.01581],[84.79971,27.00707],[84.79484,27.00262],[84.78876,27.00382],[84.78061,27.01175],[84.76938,27.01265],[84.75965,27.00698],[84.7506,27.00743],[84.70328,27.02233],[84.68785,27.031],[84.66263,27.03656],[84.64977,27.04212],[84.6451,27.04999],[84.64386,27.05908],[84.65326,27.08254],[84.66335,27.09927],[84.67968,27.13135],[84.68201,27.14296],[84.67816,27.16801],[84.68693,27.19795],[84.68011,27.23433],[84.65816,27.2684],[84.65269,27.29391],[84.63234,27.31573],[84.60925,27.33632],[84.59695,27.34086],[84.58464,27.34356],[84.56346,27.3441],[84.50108,27.35652],[84.46303,27.35969],[84.44282,27.36895],[84.39583,27.36819],[84.33285,27.37726],[84.29871,27.38755],[84.28234,27.40352],[84.27484,27.42796],[84.26148,27.44505],[84.2548,27.44994],[84.24262,27.45483],[84.23505,27.45247],[84.22268,27.44218],[84.2182,27.44042],[84.21166,27.4411],[84.2061,27.44625],[84.20632,27.45781],[84.20106,27.4712],[84.1897,27.47836],[84.17628,27.48125],[84.15445,27.48962],[84.14635,27.49738],[84.14512,27.50355],[84.14732,27.51215],[84.14417,27.52387],[84.1268,27.518],[84.106,27.51761],[84.09927,27.51616],[84.09598,27.51288],[84.09437,27.50234],[84.08829,27.49455],[84.06242,27.47895],[84.06063,27.46537],[84.05542,27.45422],[84.04018,27.44412],[84.00778,27.44345],[83.983,27.4483],[83.96714,27.45254],[83.95868,27.45153],[83.95273,27.44797],[83.93923,27.44686],[83.93329,27.44788],[83.92347,27.45114],[83.89285,27.44182],[83.86738,27.4386],[83.84709,27.44094],[83.83866,27.43937],[83.83436,27.43476],[83.83439,27.42833],[83.83786,27.41947],[83.85853,27.39382],[83.86989,27.38328],[83.87851,27.36847],[83.87721,27.36203],[83.87264,27.35657],[83.86602,27.35294],[83.8538,27.35331],[83.8358,27.36534],[83.81169,27.37806],[83.78759,27.38835],[83.74916,27.408],[83.69769,27.42704],[83.65037,27.45232],[83.60785,27.46846],[83.52444,27.47346],[83.44207,27.47023],[83.4208,27.47309],[83.39473,27.47839],[83.38659,27.47286],[83.38325,27.45818],[83.37692,27.44345],[83.37848,27.43573],[83.38211,27.42801],[83.39097,27.42402],[83.3964,27.41698],[83.3973,27.41296],[83.38721,27.39218],[83.3737,27.372],[83.34734,27.34537],[83.33745,27.33874],[83.32069,27.33578],[83.29198,27.33687],[83.27095,27.34576],[83.25636,27.38606],[83.23786,27.40124],[83.21181,27.4146],[83.20086,27.42643],[83.18443,27.44679],[83.16247,27.44951],[83.11649,27.44856],[83.03963,27.4479],[82.96899,27.4612],[82.9474,27.46861],[82.93455,27.48572],[82.92513,27.49429],[82.91368,27.49683],[82.89388,27.4911],[82.87408,27.49084],[82.82813,27.49658],[82.78217,27.49927],[82.76522,27.50211],[82.75011,27.54056],[82.74187,27.55604],[82.7453,27.57138],[82.74736,27.58429],[82.73637,27.60342],[82.73156,27.61646],[82.73448,27.63162],[82.73121,27.64253],[82.72126,27.65462],[82.72246,27.68164],[82.71061,27.70502],[82.69996,27.71103],[82.6916,27.70664],[82.68118,27.70347],[82.66515,27.70685],[82.65163,27.70692],[82.59279,27.68905],[82.55719,27.68346],[82.53258,27.68517],[82.4897,27.6743],[82.47135,27.6719],[82.45026,27.67194],[82.43111,27.67634],[82.40046,27.69483],[82.38595,27.71454],[82.35555,27.74363],[82.34077,27.74749],[82.32154,27.74922],[82.30222,27.76142],[82.27741,27.77909],[82.22986,27.81897],[82.19879,27.83759],[82.17046,27.85743],[82.14917,27.86462],[82.12238,27.86365],[82.11277,27.86755],[82.10469,27.87732],[82.09799,27.89315],[82.08184,27.90722],[82.06998,27.91302],[82.04439,27.91882],[82.00144,27.92252],[81.97859,27.91832],[81.95677,27.90563],[81.93441,27.8851],[81.91138,27.85543],[81.89796,27.85246],[81.88214,27.85557],[81.86111,27.86835],[81.82188,27.89326],[81.78188,27.90911],[81.71442,27.96712],[81.69789,27.97624],[81.68034,27.98081],[81.66862,27.98114],[81.64457,27.98525],[81.63356,27.98814],[81.62187,27.99624],[81.61567,28.00859],[81.60466,28.02117],[81.55553,28.04314],[81.50503,28.06814],[81.47801,28.08117],[81.47228,28.08875],[81.47036,28.09792],[81.47325,28.11193],[81.47078,28.12421],[81.45049,28.13391],[81.43913,28.15602],[81.42246,28.16632],[81.40442,28.17117],[81.38413,28.17421],[81.37387,28.16683],[81.3739,28.1595],[81.37048,28.14613],[81.36439,28.13863],[81.34104,28.13195],[81.31975,28.13012],[81.31643,28.13437],[81.31724,28.13863],[81.3213,28.14273],[81.32331,28.14804],[81.31771,28.15019],[81.31211,28.1493],[81.30433,28.1528],[81.2993,28.1569],[81.29816,28.16207],[81.30138,28.16758],[81.31605,28.17042],[81.32092,28.17219],[81.31477,28.18185],[81.31069,28.18848],[81.31219,28.19505],[81.2788,28.22655],[81.24953,28.25443],[81.23631,28.2754],[81.22703,28.31171],[81.21227,28.34802],[81.20093,28.36015],[81.1896,28.36927],[81.13097,28.38457],[81.07304,28.39686],[81.05639,28.40166],[81.04662,28.40646],[81.03806,28.4064],[81.03224,28.40211],[81.02368,28.40265],[81.01346,28.40723],[81.01475,28.42176],[81.01466,28.43507],[81.00803,28.44244],[80.99728,28.44135],[80.98258,28.43544],[80.97681,28.43676],[80.97169,28.43867],[80.96932,28.443],[80.96389,28.44501],[80.95331,28.44037],[80.94205,28.43936],[80.90084,28.46274],[80.89887,28.46896],[80.902,28.48565],[80.89861,28.49842],[80.89329,28.50633],[80.87423,28.50791],[80.85655,28.50044],[80.84432,28.50062],[80.83277,28.50443],[80.77878,28.53617],[80.75663,28.56949],[80.74659,28.57349],[80.71663,28.57447],[80.70204,28.57944],[80.69361,28.58602],[80.68998,28.59259],[80.68959,28.60635],[80.68538,28.60914],[80.67504,28.61461],[80.66676,28.62128],[80.66603,28.62825],[80.66255,28.63282],[80.64486,28.63565],[80.62305,28.63668],[80.60757,28.64175],[80.58075,28.6567],[80.57884,28.66471],[80.58304,28.67654],[80.58242,28.68235],[80.57654,28.68571],[80.56566,28.68261],[80.55753,28.68101],[80.54882,28.68505],[80.53963,28.68529],[80.50768,28.66376],[80.50437,28.65232],[80.52166,28.57941],[80.51573,28.5668],[80.50799,28.56691],[80.47207,28.58945],[80.46343,28.61158],[80.45514,28.62046],[80.43586,28.63189],[80.41795,28.63369],[80.40102,28.62733],[80.37791,28.62338],[80.36224,28.62693],[80.35278,28.63352],[80.34444,28.64601],[80.33473,28.66513],[80.31237,28.69821],[80.29819,28.70496],[80.27508,28.70991],[80.26216,28.71859],[80.25408,28.74519],[80.24391,28.75162],[80.20352,28.75263],[80.18696,28.75855],[80.17528,28.76464],[80.16155,28.77855],[80.15468,28.78952],[80.13064,28.81568],[80.09819,28.82372],[80.06814,28.82484],[80.06007,28.82897],[80.05543,28.83671],[80.0592,28.86206],[80.05491,28.87425],[80.05336,28.88644],[80.05182,28.90133],[80.05439,28.91563],[80.0616,28.93339],[80.06881,28.94875],[80.08837,28.96258],[80.11893,28.97671],[80.12217,28.97959],[80.12815,28.99027],[80.13292,29.00292],[80.12946,29.01383],[80.12188,29.02233],[80.12047,29.03154],[80.13107,29.05305],[80.13911,29.0638],[80.1451,29.07876],[80.14866,29.10042],[80.14673,29.10828],[80.15819,29.11867],[80.17239,29.12607],[80.18398,29.12977],[80.19775,29.12877],[80.20773,29.12467],[80.22045,29.12297],[80.23165,29.12751],[80.2408,29.1357],[80.25682,29.14388],[80.26002,29.14886],[80.25581,29.15703],[80.24959,29.16292],[80.2468,29.1688],[80.24457,29.18875],[80.23718,29.2036],[80.23667,29.21125],[80.2449,29.21911],[80.26782,29.20935],[80.2818,29.20319],[80.28815,29.20555],[80.29046,29.23161],[80.2969,29.25766],[80.3077,29.31096],[80.2998,29.31965],[80.27954,29.31936],[80.2761,29.3228],[80.26443,29.36275],[80.2658,29.37233],[80.26236,29.39089],[80.24587,29.40638],[80.23694,29.4126],[80.23625,29.42495],[80.2414,29.43999],[80.25599,29.44988],[80.28062,29.45422],[80.2874,29.46095],[80.28739,29.47922],[80.29048,29.48343],[80.29648,29.48374],[80.30155,29.4833],[80.30661,29.48525],[80.30781,29.49179],[80.31382,29.49893],[80.34145,29.51683],[80.35055,29.52576],[80.35132,29.53529],[80.3466,29.54124],[80.34574,29.54805],[80.35518,29.55779],[80.36968,29.5643],[80.38831,29.57738],[80.40443,29.59268],[80.4089,29.59899],[80.41061,29.62082],[80.41884,29.63548],[80.41541,29.64717],[80.40578,29.65524],[80.39066,29.66332],[80.38396,29.68168],[80.38,29.70122],[80.37141,29.73675],[80.37537,29.7463],[80.38139,29.75346],[80.39893,29.7672],[80.41959,29.7899],[80.44385,29.79652],[80.48493,29.79688],[80.51366,29.82496],[80.54101,29.84679],[80.55263,29.87103],[80.5663,29.89705],[80.58067,29.92084],[80.58748,29.93868],[80.59338,29.95041],[80.6041,29.95917],[80.6269,29.96359],[80.65946,29.96292],[80.67932,29.97087],[80.69574,29.98596],[80.705,29.99942],[80.71426,30.00872],[80.72181,30.011],[80.73005,30.01327],[80.74172,30.01703],[80.74721,30.02197],[80.74719,30.02511],[80.75405,30.03479],[80.75882,30.05563],[80.76911,30.06219],[80.78043,30.06517],[80.78626,30.07053],[80.80177,30.09472],[80.81453,30.10345],[80.83284,30.10874],[80.8412,30.11126],[80.84475,30.11913],[80.87521,30.14081],[80.87668,30.14893],[80.87541,30.15825],[80.87012,30.16411],[80.86346,30.1676],[80.86161,30.1705],[80.88339,30.1846],[80.88423,30.19514],[80.89297,30.20658],[80.8967,30.21122],[80.90111,30.21348],[80.90994,30.22276],[80.91987,30.22764],[80.92808,30.21383],[80.92321,30.20311],[80.92309,30.19474],[80.92628,30.18691],[80.93951,30.17944],[80.95969,30.18535],[80.96806,30.18534],[80.97369,30.18948],[80.98472,30.18606],[80.99987,30.18501],[81.0137,30.19418],[81.03449,30.1971],[81.03453,30.20087],[81.0435,30.20464],[81.04462,30.21069],[81.04137,30.21449],[81.03005,30.2203],[81.02938,30.22552],[81.02596,30.22778],[81.03044,30.23596],[81.02805,30.23881],[81.03151,30.24629],[81.02037,30.25114],[81.01128,30.25421],[81.0041,30.2645],[80.98149,30.26967],[80.95276,30.26992],[80.9365,30.2639],[80.92665,30.26622],[80.92435,30.27211],[80.93144,30.27617],[80.9275,30.28292],[80.91454,30.28733],[80.90776,30.29708],[80.90991,30.3012],[80.90725,30.30413],[80.89261,30.3013],[80.87384,30.30085],[80.87338,30.30467],[80.86079,30.31351],[80.84248,30.31755],[80.83332,30.31377],[80.82461,30.31511],[80.81886,30.32312],[80.80051,30.32314],[80.80127,30.33413],[80.78796,30.34008],[80.78563,30.34841],[80.78536,30.35317],[80.7783,30.35471],[80.77431,30.3622],[80.76413,30.37266],[80.76094,30.37224],[80.75919,30.3762],[80.75125,30.38016],[80.75029,30.38737],[80.74384,30.38925],[80.7337,30.40012],[80.72919,30.40112],[80.71675,30.4132],[80.70474,30.41855],[80.70045,30.41384],[80.69418,30.41362],[80.6879,30.41517],[80.68634,30.42124],[80.67771,30.42332],[80.67832,30.42866],[80.67025,30.43248],[80.66287,30.43985],[80.64056,30.45104],[80.63764,30.44997],[80.63172,30.45624],[80.62855,30.4566],[80.62409,30.46216],[80.61388,30.45848],[80.6074,30.46492],[80.60641,30.47136],[80.59835,30.4711],[80.59647,30.4683],[80.58291,30.46847],[80.57725,30.46478],[80.56541,30.46346],[80.5661,30.45935],[80.54997,30.4499],[80.54276,30.44873],[80.52719,30.45828],[80.52534,30.46665],[80.51891,30.47214],[80.50733,30.47615],[80.49849,30.48844],[80.48943,30.48453],[80.48244,30.49068],[80.46995,30.48972],[80.4458,30.49764],[80.44121,30.50407],[80.43182,30.50695],[80.42814,30.51329],[80.41519,30.51608],[80.41528,30.52006],[80.41773,30.52354],[80.41096,30.5246],[80.39898,30.5175],[80.38014,30.51869],[80.3768,30.52343],[80.36393,30.527],[80.35724,30.52317],[80.34574,30.51993],[80.3363,30.52833],[80.3351,30.53496],[80.32034,30.54525],[80.31623,30.56465],[80.28456,30.57053],[80.25358,30.56458],[80.23771,30.57784],[80.22016,30.57916],[80.2088,30.58756],[80.20398,30.58643],[80.19779,30.58825],[80.18953,30.58185],[80.17852,30.5784],[80.16958,30.57435],[80.15907,30.5775],[80.14763,30.57051],[80.14191,30.5611],[80.1362,30.5576],[80.12294,30.55934],[80.10899,30.56464],[80.10672,30.56934],[80.10239,30.57227],[80.0856,30.57175],[80.07776,30.59112],[80.07696,30.59344],[80.06449,30.59577],[80.06008,30.59588],[80.0543,30.59481],[80.04824,30.5974],[80.04217,30.59822],[80.03846,30.61004],[80.03269,30.61064],[80.02871,30.61597],[80.03606,30.621],[80.03355,30.62677],[80.03036,30.62899],[80.03152,30.63373],[80.02926,30.63906],[80.02081,30.63996],[80.02129,30.64381],[80.01377,30.64829],[80.01724,30.65632],[80.01256,30.66716],[80.00542,30.66964],[79.99827,30.6786],[79.9925,30.68226],[79.98398,30.69063],[79.98567,30.69715],[79.98255,30.70366],[79.9866,30.71079],[79.98579,30.73094],[79.98292,30.74017],[79.98457,30.74331],[79.98485,30.74822],[79.97954,30.74981],[79.97559,30.75436],[79.97268,30.75537],[79.96703,30.76286],[79.95108,30.76753],[79.95229,30.77219],[79.95853,30.7767],[79.94612,30.78205],[79.93782,30.79153],[79.9305,30.7917],[79.9258,30.79532],[79.92111,30.79482],[79.91139,30.80118],[79.89754,30.80046],[79.88988,30.81319],[79.89218,30.81766],[79.90615,30.81623],[79.90881,30.83766],[79.89255,30.8469],[79.88796,30.85968],[79.88015,30.86284],[79.8741,30.8624],[79.8708,30.85961],[79.86283,30.86052],[79.83768,30.85022],[79.82765,30.85054],[79.80954,30.87364],[79.80467,30.88399],[79.79912,30.89021],[79.79693,30.8997],[79.78751,30.90624],[79.78153,30.91338],[79.77093,30.92707],[79.77009,30.93406],[79.76376,30.93516],[79.75709,30.94363],[79.7511,30.94679],[79.73832,30.94081],[79.7218,30.94872],[79.71077,30.9525],[79.70073,30.96302],[79.70031,30.97059],[79.68847,30.97483],[79.67457,30.98261],[79.66635,30.98316],[79.66292,30.97552],[79.66498,30.96788],[79.66361,30.96497],[79.64971,30.96013],[79.63513,30.95352],[79.61822,30.94948],[79.61436,30.94426],[79.60183,30.93913],[79.58949,30.94561],[79.58265,30.95268],[79.55317,30.95798],[79.54837,30.96758],[79.54152,30.97307],[79.53672,30.9815],[79.52849,30.98462],[79.52696,30.99011],[79.52337,30.99088],[79.51618,30.99773],[79.51976,31.00465],[79.51579,31.01275],[79.50874,31.01555],[79.50727,31.02195],[79.5106,31.02541],[79.50709,31.0322],[79.49095,31.03156],[79.47208,31.03386],[79.46384,31.03089],[79.45354,31.03086],[79.43706,31.0226],[79.42745,31.02257],[79.42202,31.03578],[79.41866,31.04841],[79.42126,31.05597],[79.41906,31.06589],[79.41261,31.07278],[79.4171,31.07953],[79.41748,31.08864],[79.41411,31.10685],[79.40806,31.11446],[79.39208,31.11687],[79.38241,31.11483],[79.37756,31.11279],[79.37393,31.11603],[79.36824,31.11692],[79.36442,31.1234],[79.35347,31.12209],[79.34183,31.12725],[79.33916,31.13228],[79.32833,31.13293],[79.31131,31.14879],[79.30864,31.16215],[79.30456,31.16883],[79.30872,31.17199],[79.30553,31.18726],[79.3044,31.20723],[79.2994,31.21898],[79.29035,31.2269],[79.28335,31.23894],[79.26591,31.23776],[79.25569,31.24275],[79.24337,31.25317],[79.22624,31.26066],[79.23016,31.26829],[79.23831,31.27064],[79.24684,31.27681],[79.24699,31.28018],[79.24844,31.28891],[79.25126,31.29236],[79.24395,31.29794],[79.22978,31.3041],[79.22522,31.31085],[79.22066,31.31643],[79.2251,31.32818],[79.23573,31.33464],[79.22868,31.34014],[79.22507,31.34564],[79.21631,31.34792],[79.21373,31.3543],[79.1981,31.35416],[79.16942,31.36282],[79.16906,31.37383],[79.17643,31.3852],[79.17222,31.39323],[79.17144,31.39833],[79.16505,31.39677],[79.15361,31.41093],[79.15058,31.41857],[79.14343,31.42446],[79.14218,31.43212],[79.12837,31.43898],[79.12089,31.44013],[79.1086,31.44479],[79.1067,31.44943],[79.09807,31.45403],[79.08318,31.45028],[79.07997,31.45708],[79.07491,31.45778],[79.06891,31.45069],[79.06859,31.43926],[79.06209,31.43369],[79.06145,31.42957],[79.05605,31.43072],[79.05091,31.4248],[79.0444,31.43236],[79.03102,31.43112],[79.01764,31.42521],[79.0156,31.40985],[79.017,31.38747],[79.0092,31.38214],[79.01114,31.37097],[79.01857,31.35922],[79.01807,31.34856],[79.00095,31.34101],[78.98688,31.3481],[78.9886,31.35635],[78.98003,31.36319],[78.97077,31.35639],[78.9507,31.36589],[78.94435,31.36601],[78.93955,31.34631],[78.93339,31.34186],[78.92516,31.32846],[78.91692,31.32059],[78.9183,31.31565],[78.9123,31.30866],[78.90561,31.30871],[78.89704,31.30235],[78.90133,31.298],[78.90083,31.29013],[78.88264,31.28612],[78.87635,31.30359],[78.86909,31.30676],[78.86114,31.31462],[78.85405,31.31199],[78.85107,31.30789],[78.85243,31.30342],[78.8562,31.30013],[78.85686,31.29412],[78.84101,31.29632],[78.83787,31.29353],[78.82409,31.29574],[78.81511,31.30087],[78.81601,31.30366],[78.81107,31.30703],[78.79394,31.3044],[78.77921,31.31173],[78.7795,31.32036],[78.77209,31.3232],[78.7688,31.32547],[78.7686,31.33015],[78.77297,31.33102],[78.7739,31.33365],[78.76389,31.34067],[78.77099,31.34912],[78.75428,31.35834],[78.74857,31.36755],[78.75489,31.37058],[78.75772,31.37474],[78.75573,31.37889],[78.75328,31.38496],[78.76253,31.39906],[78.77315,31.4155],[78.78617,31.43165],[78.79508,31.43725],[78.79726,31.44318],[78.77748,31.45262],[78.76675,31.47266],[78.76039,31.48114],[78.74896,31.48433],[78.7396,31.48168],[78.72705,31.48456],[78.72008,31.50707],[78.7217,31.51318],[78.72606,31.51608],[78.73248,31.53361],[78.7444,31.54171],[78.75774,31.54137],[78.76146,31.54805],[78.77544,31.54328],[78.7798,31.55548],[78.80381,31.56599],[78.80654,31.5765],[78.82053,31.57774],[78.82649,31.58859],[78.83382,31.59711],[78.84025,31.59747],[78.84737,31.60836],[78.84084,31.62239],[78.8295,31.62531],[78.81781,31.63759],[78.80954,31.63817],[78.80077,31.64964],[78.79818,31.66929],[78.80039,31.67784],[78.79849,31.68288],[78.7884,31.67832],[78.76663,31.67405],[78.754,31.6772],[78.74933,31.68466],[78.75373,31.68999],[78.75263,31.69591],[78.74597,31.7057],[78.74295,31.71826],[78.73378,31.72403],[78.72754,31.74255],[78.72888,31.74539],[78.72542,31.75115],[78.72461,31.75783],[78.7207,31.76119],[78.71747,31.76719],[78.70601,31.77435],[78.70465,31.78123],[78.70741,31.78403],[78.70261,31.79442],[78.70468,31.8013],[78.70267,31.80782],[78.71731,31.82222],[78.73057,31.83138],[78.74724,31.8744],[78.73938,31.88579],[78.74669,31.89448],[78.74163,31.902],[78.74992,31.90779],[78.74859,31.91301],[78.75462,31.9146],[78.76065,31.92551],[78.76723,31.92752],[78.76905,31.93625],[78.76813,31.94497],[78.76354,31.94844],[78.76467,31.95072],[78.76476,31.95998],[78.7703,31.96345],[78.77719,31.96315],[78.77859,31.96459],[78.77504,31.9731],[78.77631,31.97696],[78.77403,31.98584],[78.77976,31.99485],[78.76921,31.99722],[78.76517,32.00454],[78.75518,32.00172],[78.7493,32.00326],[78.73984,32.00127],[78.73312,32.00568],[78.73411,32.01276],[78.72797,32.01703],[78.72321,32.02711],[78.72055,32.03098],[78.7221,32.03929],[78.71305,32.04705],[78.71154,32.05364],[78.70764,32.05645],[78.70442,32.06624],[78.6894,32.07069],[78.68262,32.08038],[78.69014,32.088],[78.69268,32.09736],[78.68299,32.11354],[78.67471,32.11378],[78.6733,32.11707],[78.65812,32.11552],[78.64847,32.11895],[78.64226,32.12355],[78.63051,32.12636],[78.63031,32.13287],[78.62598,32.13822],[78.60979,32.15184],[78.59633,32.1576],[78.59112,32.16801],[78.59949,32.17431],[78.59928,32.19339],[78.59268,32.20017],[78.57965,32.2034],[78.57142,32.20197],[78.56387,32.20404],[78.56045,32.20261],[78.55423,32.21374],[78.54391,32.2225],[78.54114,32.22835],[78.53214,32.24393],[78.5252,32.24528],[78.51963,32.26289],[78.50894,32.26861],[78.49689,32.27606],[78.49132,32.27386],[78.48773,32.27583],[78.49965,32.29172],[78.49908,32.29443],[78.51019,32.30295],[78.50451,32.30957],[78.49883,32.32373],[78.47889,32.3242],[78.47648,32.33496],[78.48161,32.34629],[78.48057,32.3511],[78.4864,32.35706],[78.48046,32.36592],[78.46942,32.36533],[78.46511,32.37339],[78.45771,32.37972],[78.45237,32.38721],[78.46003,32.39179],[78.47112,32.39521],[78.47019,32.40407],[78.4727,32.41235],[78.46921,32.41927],[78.47189,32.42909],[78.47109,32.44294],[78.46467,32.4463],[78.46201,32.4549],[78.45042,32.4606],[78.45669,32.47021],[78.44716,32.47576],[78.4415,32.47934],[78.43819,32.48806],[78.43077,32.49098],[78.42622,32.50088],[78.42897,32.50457],[78.41318,32.51753],[78.40702,32.5265],[78.39607,32.52939],[78.39271,32.53808],[78.3987,32.54546],[78.40376,32.54409],[78.40538,32.55429],[78.41309,32.55878],[78.4153,32.56675],[78.42191,32.57053],[78.43001,32.56953],[78.43469,32.57258],[78.45022,32.57463],[78.45339,32.58073],[78.46317,32.57931],[78.46676,32.58078],[78.47526,32.57631],[78.48431,32.57783],[78.49268,32.58514],[78.50074,32.58314],[78.50897,32.59238],[78.51239,32.60161],[78.51564,32.60029],[78.51851,32.60676],[78.51451,32.61206],[78.51683,32.61343],[78.5465,32.61353],[78.5463,32.61884],[78.5553,32.6173],[78.5588,32.62328],[78.56368,32.61653],[78.56788,32.61557],[78.57193,32.62413],[78.57942,32.62112],[78.57997,32.6261],[78.57846,32.63252],[78.57901,32.63721],[78.58534,32.64208],[78.59698,32.64045],[78.61344,32.64345],[78.62472,32.63397],[78.63153,32.6346],[78.63393,32.64562],[78.64216,32.64275],[78.65142,32.6516],[78.66446,32.65813],[78.67166,32.65671],[78.70427,32.66801],[78.7101,32.66804],[78.71671,32.67281],[78.724,32.67412],[78.73927,32.69523],[78.75071,32.6886],[78.74648,32.67821],[78.74018,32.66204],[78.74299,32.65533],[78.75128,32.64631],[78.75048,32.64134],[78.76684,32.63348],[78.7705,32.63006],[78.77313,32.61822],[78.78125,32.61621],[78.77982,32.60841],[78.7777,32.60755],[78.77759,32.5931],[78.77017,32.58094],[78.76241,32.57919],[78.75685,32.5673],[78.76085,32.55955],[78.76005,32.55759],[78.76342,32.54851],[78.77023,32.54],[78.76708,32.53613],[78.77011,32.52357],[78.78102,32.51633],[78.77912,32.51047],[78.77927,32.50055],[78.77763,32.49776],[78.78149,32.48571],[78.78027,32.47898],[78.79414,32.47557],[78.80842,32.44111],[78.81694,32.43083],[78.83232,32.42751],[78.83424,32.41565],[78.84303,32.41017],[78.85484,32.41387],[78.86871,32.41293],[78.88014,32.39831],[78.88746,32.39828],[78.89204,32.40115],[78.89593,32.39416],[78.9005,32.39587],[78.90637,32.38939],[78.90149,32.38632],[78.90216,32.38164],[78.90626,32.3787],[78.90622,32.37398],[78.92592,32.36287],[78.93876,32.35699],[78.954,32.34531],[78.96924,32.33536],[78.9738,32.33924],[78.98936,32.37038],[79.01275,32.38116],[79.0231,32.38383],[79.02749,32.3792],[79.03669,32.38327],[79.04451,32.38227],[79.05989,32.38765],[79.07355,32.38353],[79.08175,32.37901],[79.0879,32.37274],[79.09805,32.37001],[79.10462,32.37442],[79.10157,32.38636],[79.10402,32.38989],[79.10078,32.39484],[79.10097,32.3969],[79.10479,32.40101],[79.10518,32.40744],[79.11243,32.41156],[79.11419,32.41857],[79.12553,32.41864],[79.12656,32.42277],[79.12169,32.43523],[79.11785,32.43754],[79.12122,32.4471],[79.11707,32.45449],[79.1191,32.4584],[79.12755,32.4613],[79.12903,32.46652],[79.13181,32.46985],[79.12909,32.47724],[79.1312,32.48158],[79.14923,32.47696],[79.15216,32.48971],[79.1592,32.49667],[79.16436,32.49451],[79.18462,32.49698],[79.18102,32.50346],[79.183,32.50642],[79.18154,32.51169],[79.18877,32.51598],[79.20148,32.51303],[79.20535,32.50983],[79.21265,32.51069],[79.22106,32.51008],[79.22077,32.52464],[79.22328,32.52451],[79.23402,32.51802],[79.24795,32.51603],[79.25242,32.52156],[79.25844,32.53764],[79.26454,32.53584],[79.26795,32.53886],[79.26861,32.54536],[79.27271,32.5478],[79.27612,32.55603],[79.28369,32.55047],[79.28266,32.54654],[79.29399,32.53971],[79.30017,32.54648],[79.30704,32.55152],[79.3079,32.55635],[79.31082,32.55887],[79.32301,32.55878],[79.32636,32.56366],[79.33108,32.56622],[79.33436,32.55908],[79.34038,32.5531],[79.33287,32.54966],[79.33429,32.54042],[79.35567,32.52716],[79.364,32.53358],[79.39357,32.52434],[79.40012,32.52638],[79.40461,32.51916],[79.4134,32.51965],[79.41265,32.52367],[79.41776,32.52567],[79.41876,32.53231],[79.41382,32.53729],[79.41369,32.54054],[79.41596,32.54147],[79.42852,32.54009],[79.43275,32.54345],[79.43629,32.55028],[79.42757,32.55585],[79.42788,32.56157],[79.43568,32.56785],[79.44005,32.58049],[79.44535,32.58379],[79.44585,32.58795],[79.45228,32.5938],[79.45321,32.60253],[79.46382,32.60609],[79.46962,32.6166],[79.47885,32.619],[79.48397,32.62603],[79.49397,32.63177],[79.50189,32.64302],[79.50706,32.64387],[79.525,32.65187],[79.52728,32.65776],[79.53574,32.66364],[79.53973,32.67183],[79.54922,32.67656],[79.54416,32.68096],[79.53911,32.68246],[79.54023,32.69957],[79.54204,32.70454],[79.54624,32.70687],[79.55044,32.70515],[79.55361,32.70805],[79.55747,32.70922],[79.56107,32.71372],[79.55986,32.71822],[79.55469,32.72087],[79.54884,32.72121],[79.5426,32.73008],[79.54631,32.73923],[79.54728,32.74839],[79.55374,32.75134],[79.55745,32.75775],[79.55114,32.76422],[79.54171,32.76413],[79.54481,32.77378],[79.52147,32.77911],[79.50499,32.78445],[79.48886,32.79498],[79.48097,32.80147],[79.48097,32.81114],[79.4693,32.8208],[79.46759,32.82989],[79.46107,32.83263],[79.46296,32.83852],[79.47077,32.84233],[79.47261,32.84972],[79.47103,32.8548],[79.47275,32.86572],[79.46932,32.86796],[79.47276,32.87877],[79.46145,32.88122],[79.45837,32.87906],[79.45385,32.8825],[79.45138,32.8894],[79.43209,32.8914],[79.42104,32.89629],[79.40821,32.90663],[79.39058,32.91698],[79.40097,32.94141],[79.37904,32.94498],[79.36604,32.9376],[79.35249,32.95174],[79.35362,32.95564],[79.36104,32.95932],[79.36298,32.963],[79.35865,32.96651],[79.35614,32.97317],[79.35225,32.97925],[79.34427,32.97936],[79.34247,32.98509],[79.33862,32.98737],[79.33708,32.99423],[79.33073,33.00108],[79.3383,33.00098],[79.34174,33.01866],[79.33831,33.0277],[79.32801,33.0337],[79.33519,33.04691],[79.33843,33.05582],[79.3488,33.06128],[79.35884,33.06185],[79.35788,33.07055],[79.36128,33.07228],[79.36262,33.07689],[79.36668,33.07979],[79.36809,33.08672],[79.3649,33.09276],[79.36702,33.10105],[79.36426,33.1059],[79.3684,33.10762],[79.37066,33.1112],[79.37345,33.11903],[79.38149,33.12577],[79.39158,33.13941],[79.39853,33.13822],[79.4,33.15025],[79.39494,33.1528],[79.39193,33.15649],[79.3971,33.17013],[79.40998,33.16847],[79.41256,33.17715],[79.40948,33.18819],[79.40009,33.19545],[79.38521,33.20271],[79.38007,33.19824],[79.36188,33.19722],[79.35021,33.20223],[79.33511,33.20322],[79.3237,33.19472],[79.32294,33.19054],[79.30286,33.19108],[79.29568,33.20281],[79.28918,33.20276],[79.28062,33.20731],[79.27274,33.21358],[79.27284,33.22085],[79.26602,33.21859],[79.26019,33.21502],[79.25368,33.21603],[79.25027,33.22094],[79.238,33.23367],[79.22995,33.23299],[79.21709,33.23805],[79.21241,33.23214],[79.21391,33.22394],[79.21005,33.22045],[79.2092,33.21289],[79.20132,33.20869],[79.19755,33.21478],[79.19103,33.22087],[79.1828,33.2204],[79.18196,33.21218],[79.17493,33.20913],[79.17546,33.20436],[79.16844,33.19959],[79.16412,33.19437],[79.16391,33.19146],[79.1539,33.18562],[79.15241,33.18086],[79.14495,33.1864],[79.14367,33.19022],[79.13462,33.19436],[79.13106,33.19965],[79.12647,33.2012],[79.12531,33.20332],[79.12163,33.20097],[79.11451,33.20263],[79.10783,33.19907],[79.10287,33.20628],[79.09386,33.21132],[79.08486,33.21981],[79.07234,33.22329],[79.06539,33.23422],[79.06806,33.23653],[79.07555,33.24064],[79.08029,33.24533],[79.06884,33.25298],[79.06071,33.25537],[79.05258,33.26178],[79.04482,33.26114],[79.03293,33.27772],[79.03938,33.28505],[79.03855,33.28996],[79.03153,33.29314],[79.03894,33.30809],[79.02883,33.30761],[79.02491,33.31402],[79.02736,33.31996],[79.01985,33.32468],[79.01129,33.32274],[79.0041,33.32768],[78.99537,33.32516],[78.97977,33.32724],[78.97673,33.33425],[78.96212,33.3398],[78.95919,33.34706],[78.95419,33.35519],[78.95675,33.35873],[78.94917,33.36523],[78.95463,33.37116],[78.94701,33.37901],[78.94115,33.38092],[78.93665,33.38685],[78.92804,33.38916],[78.92286,33.39319],[78.91047,33.4008],[78.90425,33.40956],[78.89561,33.4116],[78.89108,33.41537],[78.86967,33.41436],[78.8668,33.41852],[78.85712,33.4158],[78.8447,33.41938],[78.84252,33.42483],[78.83563,33.42515],[78.83492,33.43178],[78.83319,33.43583],[78.83694,33.43816],[78.82852,33.44484],[78.82834,33.44866],[78.82317,33.45514],[78.81647,33.45834],[78.81664,33.46383],[78.80942,33.4748],[78.8142,33.48301],[78.80327,33.48979],[78.79402,33.49976],[78.78478,33.50573],[78.77252,33.51815],[78.77022,33.52513],[78.7329,33.56931],[78.7423,33.57709],[78.74072,33.5906],[78.74134,33.60073],[78.75316,33.60995],[78.754,33.61916],[78.75843,33.62359],[78.75149,33.62729],[78.72476,33.62267],[78.71725,33.62262],[78.72033,33.63381],[78.72547,33.64442],[78.72958,33.64818],[78.73027,33.65177],[78.73507,33.66051],[78.76387,33.72011],[78.76513,33.72627],[78.77195,33.73106],[78.77533,33.73871],[78.77718,33.74647],[78.77032,33.74946],[78.76415,33.7593],[78.7627,33.76629],[78.76399,33.77727],[78.75422,33.78326],[78.76079,33.80751],[78.76168,33.82334],[78.7653,33.83346],[78.76403,33.84259],[78.76013,33.84558],[78.75898,33.85314],[78.76148,33.85514],[78.75672,33.86755],[78.75127,33.88509],[78.76303,33.891],[78.76107,33.90318],[78.76476,33.90639],[78.76228,33.91473],[78.74958,33.91473],[78.74375,33.92043],[78.73174,33.92043],[78.72797,33.92271],[78.73511,33.93967],[78.73469,33.95548],[78.74114,33.97614],[78.74241,33.98401],[78.74024,33.99302],[78.74278,33.99908],[78.73558,34.0065],[78.72718,34.00851],[78.72701,34.01564],[78.72169,34.01416],[78.70539,34.01837],[78.70179,34.02401],[78.70163,34.02793],[78.68962,34.02284],[78.67419,34.02515],[78.66803,34.03203],[78.66362,34.03073],[78.65508,34.03227],[78.65528,34.03842],[78.65632,34.04115],[78.65461,34.05354],[78.65882,34.05768],[78.66647,34.07091],[78.65704,34.0752],[78.66025,34.08045],[78.66141,34.0857],[78.66921,34.09222],[78.67519,34.08934],[78.68168,34.07959],[78.69502,34.08377],[78.69277,34.08899],[78.69804,34.09299],[78.70744,34.09473],[78.71511,34.0902],[78.72098,34.09205],[78.72822,34.08993],[78.74061,34.09235],[78.74545,34.09023],[78.75118,34.09914],[78.75988,34.09876],[78.76034,34.10578],[78.76985,34.10872],[78.77583,34.11699],[78.78524,34.12014],[78.78608,34.1287],[78.79446,34.13725],[78.81433,34.1312],[78.82596,34.12459],[78.83478,34.12803],[78.83467,34.13317],[78.84133,34.14176],[78.85673,34.14211],[78.86032,34.16217],[78.86322,34.16575],[78.87375,34.16454],[78.88176,34.15542],[78.88153,34.15368],[78.8916,34.14728],[78.89825,34.14856],[78.90489,34.14074],[78.90947,34.14273],[78.90787,34.1487],[78.9136,34.1521],[78.92553,34.15322],[78.92588,34.16204],[78.92759,34.16745],[78.92382,34.17145],[78.93309,34.19107],[78.94476,34.22518],[78.95214,34.22777],[78.9609,34.23604],[78.95922,34.24357],[78.96442,34.24769],[78.96313,34.25934],[78.97017,34.27925],[78.98515,34.30059],[78.97953,34.30662],[78.9803,34.315],[79.01174,34.30291],[79.01571,34.30671],[79.02777,34.30579],[79.03845,34.29608],[79.05463,34.29658],[79.0586,34.30139],[79.05719,34.30784],[79.05303,34.31372],[79.05364,34.32151],[79.04596,34.32456],[79.04034,34.33158],[79.03117,34.33313],[79.0316,34.34574],[79.03869,34.3563],[79.03753,34.35836],[79.03223,34.36232],[79.02898,34.36969],[79.02334,34.37393],[79.02524,34.37818],[79.02127,34.38331],[79.02141,34.38845],[79.01744,34.39046],[79.0169,34.39474],[79.00964,34.40076],[79.00718,34.40677],[78.98665,34.4018],[78.97436,34.39852],[78.96426,34.38768],[78.94593,34.38874],[78.94133,34.38441],[78.93261,34.38121],[78.92778,34.37992],[78.91609,34.38883],[78.91262,34.38909],[78.90499,34.3998],[78.88931,34.39826],[78.87843,34.39503],[78.86962,34.402],[78.86217,34.40443],[78.85415,34.41354],[78.84682,34.41756],[78.83186,34.41728],[78.8162,34.42098],[78.81305,34.42893],[78.80784,34.42924],[78.80538,34.43635],[78.79726,34.43699],[78.78982,34.44046],[78.7832,34.44287],[78.77657,34.4388],[78.76375,34.43927],[78.75735,34.44699],[78.74711,34.45056],[78.73893,34.45584],[78.73831,34.45913],[78.75035,34.46134],[78.75691,34.46638],[78.75372,34.47135],[78.75739,34.47857],[78.76268,34.48057],[78.74774,34.4885],[78.73554,34.49359],[78.71459,34.50209],[78.71318,34.51513],[78.70831,34.52705],[78.68625,34.52749],[78.68272,34.53019],[78.66742,34.53277],[78.64972,34.53987],[78.64438,34.54414],[78.64705,34.54992],[78.6238,34.53649],[78.61291,34.53947],[78.60279,34.53412],[78.60316,34.53191],[78.59222,34.52747],[78.5937,34.51747],[78.58831,34.51228],[78.58841,34.50709],[78.5799,34.50387],[78.57241,34.50885],[78.56012,34.51044],[78.56035,34.5161],[78.55634,34.52006],[78.56127,34.52629],[78.55669,34.53337],[78.56036,34.53988],[78.5606,34.55631],[78.55625,34.55647],[78.5526,34.56285],[78.55146,34.57165],[78.54144,34.57274],[78.5328,34.57722],[78.51595,34.57268],[78.50458,34.57718],[78.49834,34.58393],[78.49246,34.57894],[78.48383,34.58018],[78.47824,34.57587],[78.47849,34.57014],[78.47244,34.56756],[78.46014,34.56938],[78.45746,34.56781],[78.45565,34.56279],[78.45041,34.55833],[78.45159,34.55225],[78.44535,34.54263],[78.43631,34.54204],[78.42899,34.55616],[78.42578,34.55897],[78.43104,34.57052],[78.43012,34.59055],[78.42439,34.59256],[78.42141,34.59514],[78.41672,34.59348],[78.41202,34.5969],[78.40784,34.5958],[78.3913,34.60487],[78.38699,34.60446],[78.38474,34.60687],[78.37185,34.60589],[78.36514,34.60886],[78.36376,34.60534],[78.35619,34.60238],[78.35135,34.60494],[78.34787,34.60281],[78.33753,34.60294],[78.33126,34.60716],[78.32902,34.6122],[78.32163,34.61217],[78.31699,34.61439],[78.31149,34.6135],[78.30256,34.61487],[78.29362,34.61762],[78.29014,34.61505],[78.28322,34.62236],[78.27289,34.62913],[78.26875,34.63646],[78.26933,34.6494],[78.26649,34.6516],[78.26628,34.65742],[78.26127,34.66098],[78.26433,34.66581],[78.2722,34.66782],[78.27491,34.67321],[78.279,34.67635],[78.27463,34.6862],[78.27618,34.68896],[78.27517,34.69561],[78.27177,34.70157],[78.26425,34.70189],[78.25947,34.70899],[78.25607,34.70759],[78.24718,34.709],[78.239,34.71495],[78.23186,34.71383],[78.22265,34.7178],[78.21695,34.71613],[78.2078,34.72068],[78.20395,34.73118],[78.20146,34.73604],[78.20456,34.74023],[78.20389,34.74184],[78.20461,34.75128],[78.18816,34.79061],[78.18545,34.79385],[78.18567,34.79838],[78.1907,34.80009],[78.19582,34.8044],[78.19939,34.80717],[78.20295,34.80705],[78.20479,34.80862],[78.20949,34.80641],[78.21622,34.80834],[78.21849,34.81111],[78.2225,34.81228],[78.22568,34.81173],[78.22955,34.81935],[78.2286,34.82218],[78.22835,34.82586],[78.23076,34.82816],[78.23342,34.83347],[78.23265,34.83709],[78.2342,34.83954],[78.23354,34.84537],[78.23134,34.8467],[78.23085,34.84972],[78.22815,34.85182],[78.2282,34.85504],[78.23184,34.85667],[78.23705,34.87006],[78.23436,34.875],[78.23648,34.88107],[78.22699,34.88616],[78.22573,34.88901],[78.21499,34.8885],[78.20424,34.89137],[78.20343,34.89723],[78.20811,34.90366],[78.19802,34.90896],[78.19687,34.91371],[78.18805,34.91917],[78.18747,34.92239],[78.17693,34.92898],[78.17407,34.93903],[78.17744,34.94209],[78.18356,34.94064],[78.19374,34.95003],[78.20253,34.95435],[78.20309,34.96599],[78.20228,34.97256],[78.19619,34.97388],[78.18421,34.98271],[78.17823,34.98487],[78.17636,34.98759],[78.1713,34.98557],[78.15662,34.98861],[78.15169,34.99231],[78.14881,34.99938],[78.14375,35.00228],[78.14135,35.03272],[78.13912,35.03787],[78.13414,35.04048],[78.1283,35.04628],[78.12899,35.04888],[78.13788,35.05061],[78.13408,35.05654],[78.13303,35.06077],[78.13814,35.06475],[78.13981,35.0676],[78.14454,35.06909],[78.14651,35.07171],[78.14,35.07654],[78.13709,35.08233],[78.13074,35.09149],[78.13522,35.09521],[78.13215,35.09982],[78.12771,35.10051],[78.11269,35.10719],[78.11239,35.11713],[78.10248,35.12034],[78.10183,35.12831],[78.09927,35.13143],[78.09945,35.13623],[78.10119,35.1419],[78.08506,35.16585],[78.07116,35.17165],[78.0552,35.17914],[78.05086,35.1853],[78.0431,35.19201],[78.0391,35.20012],[78.03374,35.20319],[78.02777,35.20459],[78.02592,35.2116],[78.02153,35.21608],[78.0155,35.21551],[78.011,35.22896],[78.00583,35.22769],[78.00478,35.23034],[78.00817,35.23846],[78.00328,35.23978],[78.00319,35.24335],[78.01092,35.27376],[78.01136,35.3052],[78.02277,35.35795],[78.0276,35.36469],[78.03518,35.37032],[78.04415,35.381],[78.04675,35.38859],[78.05285,35.39882],[78.06483,35.40841],[78.072,35.41129],[78.07428,35.41549],[78.08343,35.42081],[78.08936,35.42195],[78.09564,35.42588],[78.10123,35.43093],[78.10282,35.43397],[78.10784,35.4398],[78.10428,35.44423],[78.10415,35.44699],[78.10991,35.46159],[78.10901,35.46833],[78.11429,35.47395],[78.10462,35.48366],[78.1003,35.48209],[78.08499,35.4861],[78.08185,35.49106],[78.07596,35.49546],[78.07482,35.49335],[78.07025,35.49348],[78.06569,35.48728],[78.05311,35.49159],[78.04053,35.48919],[78.03556,35.48312],[78.03608,35.47928],[78.0342,35.476],[78.03532,35.47324],[78.03369,35.47049],[78.02753,35.47036],[78.02548,35.46856],[78.00838,35.4826],[78.00707,35.48992],[78.00095,35.49389],[77.99639,35.48937],[77.96986,35.49492],[77.96794,35.49323],[77.96741,35.48148],[77.95348,35.48398],[77.94779,35.4781],[77.93918,35.48382],[77.93538,35.49121],[77.92435,35.4965],[77.91712,35.48934],[77.92158,35.48385],[77.91813,35.47892],[77.91812,35.47288],[77.91398,35.4689],[77.9119,35.46156],[77.90465,35.46533],[77.90083,35.4652],[77.89765,35.47331],[77.8931,35.47416],[77.88915,35.47948],[77.88314,35.47922],[77.87627,35.48595],[77.87696,35.49044],[77.86734,35.49804],[77.86047,35.50004],[77.85427,35.49072],[77.84419,35.49671],[77.8403,35.50269],[77.82702,35.50628],[77.82313,35.51402],[77.81328,35.52223],[77.80858,35.51981],[77.80388,35.51964],[77.79881,35.51054],[77.7934,35.50843],[77.79143,35.50633],[77.78404,35.50491],[77.78009,35.49845],[77.76995,35.49969],[77.76463,35.50204],[77.75724,35.50327],[77.75466,35.4978],[77.74288,35.49561],[77.71879,35.46264],[77.70869,35.46215],[77.70682,35.46334],[77.69965,35.46404],[77.69522,35.46195],[77.69301,35.4567],[77.68668,35.45426],[77.67791,35.46489],[77.6712,35.46713],[77.65282,35.48727],[77.63888,35.48345],[77.63738,35.47629],[77.64206,35.46802],[77.63082,35.4621],[77.61581,35.47016],[77.60423,35.47263],[77.60158,35.46951],[77.59549,35.46974],[77.59156,35.46574],[77.5782,35.47002],[77.5827,35.47934],[77.57293,35.484],[77.56042,35.48643],[77.5509,35.48288],[77.54275,35.48438],[77.54019,35.48848],[77.53574,35.48894],[77.52512,35.48437],[77.52041,35.48674],[77.51639,35.48407],[77.50903,35.48712],[77.50118,35.48931],[77.49028,35.48475],[77.4835,35.48354],[77.48016,35.48065],[77.4642,35.47263],[77.46035,35.46862],[77.45305,35.46685],[77.44294,35.4612],[77.4342,35.46506],[77.43046,35.46495],[77.42434,35.47143],[77.4188,35.47033],[77.40844,35.47371],[77.40035,35.47331],[77.39363,35.4701],[77.3898,35.47208],[77.38145,35.47325],[77.37654,35.48337],[77.37059,35.49041],[77.3722,35.49745],[77.36306,35.49978],[77.35529,35.49429],[77.33963,35.50362],[77.33976,35.50959],[77.33615,35.51392],[77.3394,35.51826],[77.33766,35.52442],[77.32869,35.5317],[77.32762,35.53395],[77.31899,35.539],[77.31376,35.53625],[77.31059,35.54243],[77.30347,35.54498],[77.30047,35.54139],[77.29609,35.54087],[77.29378,35.5437],[77.28277,35.53849],[77.27314,35.53606],[77.26451,35.53959],[77.24956,35.53074],[77.22705,35.52972],[77.21141,35.52282],[77.19371,35.52151],[77.17997,35.52816],[77.17584,35.53201],[77.16414,35.53804],[77.15251,35.53788],[77.14637,35.54052],[77.13684,35.55138],[77.1267,35.55691],[77.12084,35.55679],[77.11102,35.56354],[77.10032,35.56355],[77.09169,35.5658],[77.06279,35.59903],[77.05656,35.60212],[77.04541,35.59899],[77.02747,35.60049],[77.01022,35.61093],[77.00095,35.60853],[76.99443,35.61003],[76.98379,35.5987],[76.97297,35.6014],[76.96697,35.59546],[76.95805,35.59549],[76.94814,35.60335],[76.93803,35.60589],[76.93136,35.61065],[76.91767,35.61126],[76.89984,35.61909],[76.89987,35.62358],[76.87923,35.64086],[76.85996,35.65199],[76.85233,35.66869],[76.84414,35.67467],[76.83871,35.66837],[76.83292,35.66905],[76.82302,35.66583],[76.81455,35.66997],[76.80539,35.66463],[76.79394,35.66428],[76.78866,35.66169],[76.78292,35.66126],[76.77718,35.65804],[76.77327,35.66076],[76.76662,35.65958],[76.75642,35.66596],[76.75378,35.67401],[76.75674,35.6812],[76.75115,35.68566],[76.74763,35.68567],[76.74382,35.68904],[76.7431,35.69491],[76.73794,35.70008],[76.73209,35.69968],[76.72845,35.7043],[76.72687,35.70948],[76.7151,35.71486],[76.70264,35.7247],[76.69626,35.72486],[76.69568,35.72923],[76.69373,35.7336],[76.69773,35.74052],[76.69343,35.74731],[76.685,35.75298],[76.67158,35.75597],[76.66263,35.75449],[76.653,35.75682],[76.64749,35.76138],[76.64851,35.76496],[76.64197,35.77021],[76.63439,35.77125],[76.6254,35.7683],[76.61567,35.76185],[76.60302,35.77101],[76.58664,35.77497],[76.58467,35.77894],[76.59105,35.78296],[76.57771,35.79853],[76.57879,35.80407],[76.57096,35.80712],[76.56588,35.8124],[76.56509,35.82018],[76.56087,35.8224],[76.5709,35.83157],[76.58779,35.84353],[76.5858,35.84825],[76.58313,35.863],[76.57345,35.86825],[76.57271,35.87127],[76.58246,35.87928],[76.58809,35.88728],[76.59201,35.88889],[76.59112,35.89161],[76.59923,35.90082],[76.58456,35.91089],[76.5862,35.91554],[76.58372,35.9202],[76.56692,35.92546],[76.56216,35.92208],[76.5562,35.9278],[76.5475,35.92741],[76.54394,35.92493],[76.54319,35.90729],[76.54588,35.90299],[76.53408,35.89926],[76.51954,35.88775],[76.51243,35.8814],[76.50892,35.88716],[76.49443,35.89013],[76.48124,35.88774],[76.47593,35.89133],[76.46651,35.89046],[76.45658,35.88317],[76.44772,35.87416],[76.44442,35.86559],[76.43184,35.8591],[76.42751,35.85262],[76.41678,35.85439],[76.40249,35.85306],[76.3882,35.86062],[76.37842,35.85833],[76.36975,35.86359],[76.36521,35.86328],[76.35149,35.85467],[76.35596,35.84439],[76.35477,35.83592],[76.35838,35.82855],[76.35084,35.83011],[76.33918,35.83054],[76.32699,35.83536],[76.31619,35.83739],[76.3083,35.83254],[76.29983,35.84305],[76.28873,35.8419],[76.27007,35.84187],[76.26549,35.83784],[76.25787,35.84098],[76.24888,35.8391],[76.24161,35.84085],[76.22267,35.84203],[76.22038,35.838],[76.22181,35.83446],[76.22049,35.82868],[76.20738,35.82674],[76.20045,35.82368],[76.17527,35.82397],[76.17,35.82092],[76.15788,35.82625],[76.14508,35.83716],[76.14532,35.84333],[76.14075,35.85006],[76.14546,35.85637],[76.15159,35.85897],[76.15497,35.86546],[76.14859,35.87419],[76.15334,35.88163],[76.14778,35.89241],[76.15796,35.90813],[76.15921,35.91828],[76.15266,35.92772],[76.14663,35.93188],[76.14294,35.94258],[76.13718,35.94772],[76.13506,35.9552],[76.11983,35.96738],[76.11479,35.96875],[76.1125,35.97234],[76.10775,35.97691],[76.10643,35.98315],[76.10422,35.98572],[76.10339,35.99217],[76.09817,35.99707],[76.09707,36.00918],[76.1031,36.01175],[76.10054,36.01588],[76.08562,36.02279],[76.04753,36.02438],[76.03727,36.02147],[76.02912,36.02287],[76.02365,36.01732],[76.01474,36.01648],[76.00445,36.01676],[75.99282,36.02176],[75.98398,36.03121],[75.9766,36.03234],[75.97472,36.03624],[75.95688,36.0463],[75.95484,36.05197],[75.94863,36.05562],[75.9493,36.06217],[75.9534,36.06482],[75.95278,36.06623],[75.94117,36.07042],[75.94227,36.07571],[75.95504,36.07823],[75.95363,36.08188],[75.94398,36.08775],[75.94602,36.09609],[75.93777,36.10499],[75.94187,36.1089],[75.94872,36.1117],[75.9472,36.11854],[75.93195,36.12759],[75.93241,36.13589],[75.95083,36.14143],[75.96513,36.14751],[75.96854,36.14923],[75.96302,36.15704],[75.96845,36.16379],[75.98281,36.16444],[75.98825,36.16288],[75.99695,36.16755],[76.00427,36.16668],[76.01257,36.17248],[76.02773,36.17329],[76.0299,36.17547],[76.018,36.17864],[76.01033,36.17995],[76.00472,36.18292],[76.00495,36.18815],[76.00998,36.19061],[76.01158,36.19474],[76.00693,36.19929],[76.00915,36.20773],[76.00671,36.22626],[76.00322,36.23229],[76.00972,36.23545],[76.01828,36.23308],[76.01962,36.23608],[76.02646,36.23619],[76.03331,36.23409],[76.03501,36.22867],[76.0435,36.22426],[76.05611,36.22318],[76.06211,36.22657],[76.05744,36.23072],[76.06033,36.23488],[76.05738,36.23959],[76.05786,36.24541],[76.04647,36.25372],[76.03782,36.26424],[76.026,36.26944],[76.01693,36.30065],[75.99534,36.30773],[75.99558,36.32385],[75.99238,36.33148],[75.98505,36.34132],[75.9846,36.35171],[75.99376,36.35602],[75.99811,36.3633],[75.99817,36.36885],[76.00098,36.37164],[76.00275,36.38106],[76.016,36.38881],[76.02719,36.39159],[76.02664,36.39799],[76.03322,36.40285],[76.03569,36.40771],[76.02767,36.41924],[76.02308,36.43575],[76.01626,36.45377],[76.00807,36.47345],[75.99383,36.48866],[75.98637,36.50469],[75.97371,36.51354],[75.9638,36.52294],[75.95939,36.53159],[75.9488,36.54135],[75.9393,36.55646],[75.92533,36.5644],[75.92441,36.57069],[75.94145,36.59153],[75.94201,36.59859],[75.93529,36.60055],[75.9285,36.60952],[75.92446,36.61409],[75.91818,36.62003],[75.91328,36.62762],[75.90691,36.63179],[75.89034,36.63744],[75.88088,36.64821],[75.87348,36.65568],[75.87201,36.66203],[75.86642,36.66894],[75.85662,36.67393],[75.84829,36.67353],[75.8395,36.68],[75.83207,36.68372],[75.82637,36.6924],[75.81699,36.69702],[75.81105,36.69778],[75.80277,36.71072],[75.79449,36.7121],[75.79204,36.71541],[75.76556,36.72533],[75.7466,36.74009],[75.73505,36.74582],[75.72076,36.75265],[75.71347,36.74651],[75.70411,36.74696],[75.69864,36.74682],[75.69042,36.75768],[75.67399,36.76509],[75.66442,36.76453],[75.65485,36.76782],[75.64704,36.76752],[75.63991,36.77053],[75.63082,36.7669],[75.62241,36.76878],[75.5867,36.76841],[75.57297,36.7664],[75.56902,36.76745],[75.56783,36.7751],[75.55118,36.77038],[75.53384,36.7717],[75.53368,36.76167],[75.52677,36.75669],[75.53154,36.75116],[75.53665,36.74205],[75.53577,36.73832],[75.53774,36.73371],[75.53215,36.72029],[75.51803,36.72203],[75.50823,36.72896],[75.50435,36.73682],[75.50048,36.73919],[75.49239,36.73428],[75.48629,36.7288],[75.47469,36.72332],[75.46901,36.71538],[75.46057,36.72011],[75.45278,36.72346],[75.4498,36.73177],[75.44451,36.74508],[75.43442,36.75013],[75.43531,36.75849],[75.42975,36.7615],[75.42762,36.76561],[75.4213,36.77053],[75.42144,36.77794],[75.42432,36.78371],[75.42735,36.79415],[75.42034,36.79907],[75.4235,36.80906],[75.42323,36.81904],[75.42993,36.82888],[75.42977,36.8453],[75.42258,36.86662],[75.42261,36.87409],[75.41956,36.88046],[75.422,36.88738],[75.41906,36.89085],[75.41064,36.89158],[75.39706,36.90026],[75.38623,36.90401],[75.39153,36.9175],[75.38723,36.9266],[75.39211,36.93266],[75.40592,36.93652],[75.41012,36.94615],[75.40295,36.94986],[75.40133,36.95491],[75.39421,36.95556],[75.39303,36.95083],[75.38613,36.94739],[75.37305,36.94723],[75.35856,36.9568],[75.34167,36.95662],[75.32341,36.9592],[75.31925,36.96745],[75.31441,36.96967],[75.30816,36.96477],[75.29644,36.9733],[75.28542,36.9747],[75.27711,36.972],[75.27064,36.97329],[75.26868,36.96818],[75.25917,36.96416],[75.25241,36.96454],[75.2485,36.96173],[75.23967,36.96114],[75.23497,36.95891],[75.21664,36.96543],[75.21616,36.97194],[75.19947,36.97632],[75.19422,36.97413],[75.17786,36.97879],[75.17318,36.98619],[75.16874,36.98608],[75.16019,36.98817],[75.15747,36.99712],[75.16332,37.00406],[75.16659,37.00561],[75.16779,37.0088],[75.16281,37.01638],[75.15234,37.01574],[75.14976,37.02346],[75.14444,37.02679],[75.13755,37.02695],[75.12929,37.0196],[75.12511,37.01259],[75.11607,37.0117],[75.11345,37.00665],[75.10464,37.01135],[75.09594,37.01096],[75.09068,37.00838],[75.08199,37.00791],[75.07146,37.00258],[75.05733,37.00177],[75.04457,37.00698],[75.04172,37.01412],[75.02913,37.01688],[75.01955,37.00976],[75.01134,37.00044],[75.00454,37.001],[74.99876,36.99772],[74.99587,36.99252],[74.98955,36.99006],[74.98263,36.98973],[74.97815,36.99643],[74.97366,36.99764],[74.96376,36.98788],[74.94328,36.98811],[74.92892,36.97945],[74.91636,36.97816],[74.92204,36.97107],[74.92359,36.96069],[74.92995,36.9547],[74.9315,36.94597],[74.92782,36.94478],[74.91658,36.94633],[74.92182,36.93554],[74.91951,36.93298],[74.91411,36.93343],[74.90802,36.9284],[74.89997,36.93425],[74.88608,36.93352],[74.88386,36.93663],[74.8858,36.94835],[74.8812,36.95294],[74.88026,36.95993],[74.87486,36.96499],[74.87358,36.97061],[74.86517,36.98019],[74.84853,37.01007],[74.83952,37.0174],[74.84631,37.02857],[74.84108,37.04275],[74.84087,37.0556],[74.8386,37.05967],[74.82535,37.05539],[74.79973,37.0522],[74.79108,37.04281],[74.79487,37.0311],[74.78801,37.02744],[74.78115,37.02761],[74.77343,37.02152],[74.7616,37.02475],[74.74892,37.02216],[74.73487,37.02177],[74.72581,37.02846],[74.72361,37.03405],[74.7173,37.03773],[74.71716,37.04195],[74.72152,37.05738],[74.70597,37.06597],[74.7068,37.07765],[74.69939,37.08359],[74.6689,37.08289],[74.65778,37.07788],[74.65146,37.07013],[74.64206,37.06855],[74.62304,37.06039],[74.62414,37.04572],[74.57155,37.02978],[74.57219,37.02997],[74.57341,37.02166],[74.56891,36.98744],[74.56297,36.96419],[74.55841,36.96027],[74.55075,36.95966],[74.54149,36.96105],[74.53658,36.96516],[74.52833,36.9905],[74.52463,36.9933],[74.51736,36.99891],[74.49813,36.99955],[74.42786,36.99763],[74.42055,36.99611],[74.41344,36.98816],[74.40119,36.98044],[74.37394,36.97399],[74.35408,36.96469],[74.33444,36.94699],[74.33141,36.94424],[74.31083,36.92986],[74.264,36.90444],[74.2548,36.90127],[74.2523,36.90039],[74.23635,36.89958],[74.21028,36.90761],[74.19061,36.91005],[74.16647,36.91153],[74.15203,36.90986],[74.14753,36.90569],[74.14119,36.89572],[74.13744,36.88275],[74.13422,36.87155],[74.12741,36.84811],[74.11966,36.84172],[74.10972,36.84094],[74.09413,36.84633],[74.08499,36.8463],[74.07888,36.84413],[74.05275,36.82872],[74.03099,36.82914],[74.02525,36.83297],[74.00608,36.83677],[74,36.83402],[73.97969,36.83302],[73.96319,36.8375],[73.93552,36.86736],[73.91735,36.87619],[73.90833,36.88102],[73.89011,36.8788],[73.8838,36.87922],[73.87913,36.88547],[73.84658,36.89861],[73.82213,36.89764],[73.80797,36.89344],[73.80016,36.88969],[73.79435,36.89516],[73.79074,36.90133],[73.78461,36.90344],[73.77594,36.90144],[73.7633,36.90224],[73.74996,36.9065],[73.74025,36.90455],[73.73683,36.90222],[73.73352,36.90072],[73.72511,36.90127],[73.71386,36.90538],[73.70505,36.91272],[73.69347,36.91347],[73.66255,36.91116],[73.63955,36.90325],[73.6185,36.90458],[73.59764,36.90758],[73.58555,36.90322],[73.58338,36.90152],[73.57755,36.89691],[73.55036,36.88925],[73.52777,36.88555],[73.51572,36.89224],[73.50641,36.89452],[73.46958,36.89677],[73.44061,36.89261],[73.41664,36.89661],[73.40313,36.89913],[73.38905,36.89574],[73.37225,36.88572],[73.35694,36.88069],[73.3478,36.88463],[73.33622,36.88533],[73.31771,36.87963],[73.30661,36.87313],[73.29766,36.87369],[73.28919,36.87933],[73.27336,36.88855],[73.26194,36.89025],[73.23339,36.88677],[73.21566,36.88988],[73.18939,36.88319],[73.1818,36.88466],[73.14414,36.89411],[73.12166,36.88716],[73.08836,36.88808],[73.07174,36.88905],[73.04727,36.87397],[73.02683,36.86069],[72.99747,36.86238],[72.96888,36.8733],[72.95339,36.87211],[72.92949,36.84875],[72.92414,36.84594],[72.90752,36.84688],[72.88263,36.84108],[72.87105,36.84069],[72.82508,36.84327],[72.79853,36.84786],[72.78158,36.84466],[72.76266,36.8488],[72.75,36.85055],[72.71847,36.84197],[72.68524,36.8438],[72.65616,36.84983],[72.63161,36.84841],[72.62658,36.84158],[72.5661,36.83241],[72.54538,36.82286],[72.50753,36.79288],[72.50447,36.78239],[72.49522,36.77755],[72.41116,36.77666],[72.39005,36.76177],[72.36763,36.75763],[72.33683,36.75922],[72.31369,36.74619],[72.31205,36.74602],[72.30255,36.74499],[72.24136,36.75347],[72.22691,36.73822],[72.22133,36.72991],[72.22127,36.7298],[72.19689,36.69355],[72.20444,36.67719],[72.21447,36.66422],[72.19163,36.65472],[72.16555,36.65961],[72.14069,36.65197],[72.11624,36.64966],[72.10291,36.64855],[72.09727,36.63283],[72.10622,36.60572],[72.09674,36.59733],[72.05916,36.59563],[72.01294,36.56772],[71.96438,36.56655],[71.9353,36.56089],[71.92778,36.5488],[71.91716,36.52444],[71.91664,36.51736],[71.90914,36.5053],[71.88486,36.50469],[71.83205,36.50547],[71.82186,36.48641],[71.81786,36.46172],[71.81852,36.44452],[71.81886,36.44197],[71.82905,36.43452],[71.86166,36.42941],[71.86502,36.41505],[71.85727,36.39941],[71.84371,36.39474],[71.81744,36.396],[71.79577,36.40058],[71.75788,36.42372],[71.7458,36.4326],[71.72447,36.44838],[71.70744,36.45627],[71.68794,36.46075],[71.67763,36.46875],[71.67336,36.47208],[71.65619,36.47822],[71.63594,36.47205],[71.62361,36.45308],[71.62258,36.43883],[71.62197,36.43005],[71.61389,36.40911],[71.5928,36.39055],[71.56539,36.37583],[71.55613,36.36914],[71.55952,36.35477],[71.57216,36.34708],[71.56874,36.32949],[71.53552,36.32566],[71.52422,36.32086],[71.52116,36.30855],[71.52055,36.29972],[71.49974,36.29752],[71.48516,36.29597],[71.46886,36.2825],[71.45719,36.27236],[71.4443,36.27],[71.44163,36.26952],[71.43447,36.26094],[71.41905,36.22789],[71.40047,36.21272],[71.38458,36.20455],[71.36685,36.2018],[71.35908,36.19869],[71.35241,36.18122],[71.34744,36.17255],[71.34058,36.16838],[71.31028,36.15816],[71.28419,36.14508],[71.2546,36.12861],[71.24544,36.12277],[71.24266,36.11399],[71.2438,36.09794],[71.24236,36.09269],[71.22799,36.09063],[71.20808,36.07105],[71.19899,36.04922],[71.19953,36.04633],[71.20141,36.03577],[71.21502,36.0263],[71.2288,36.0195],[71.2536,35.99708],[71.26108,35.99408],[71.28485,35.98949],[71.3028,35.97983],[71.31933,35.96488],[71.33225,35.96163],[71.34963,35.95999],[71.36169,35.96033],[71.37672,35.95611],[71.38138,35.94436],[71.38408,35.91936],[71.38114,35.90791],[71.38072,35.90172],[71.39319,35.89227],[71.4073,35.89075],[71.41819,35.89027],[71.42966,35.88174],[71.4618,35.8403],[71.46741,35.82672],[71.48986,35.80347],[71.48936,35.79639],[71.48133,35.77452],[71.48055,35.763],[71.48535,35.75388],[71.4978,35.74441],[71.52216,35.73352],[71.5328,35.7295],[71.54666,35.72022],[71.54677,35.70544],[71.5388,35.68827],[71.50958,35.65824],[71.50042,35.64022],[71.49947,35.62641],[71.51005,35.61577],[71.52627,35.60488],[71.55586,35.59152],[71.57788,35.58313],[71.60121,35.57744],[71.61222,35.57322],[71.61416,35.56852],[71.61088,35.55391],[71.59928,35.53322],[71.59369,35.5178],[71.59339,35.49752],[71.60608,35.48491],[71.63616,35.46322],[71.64894,35.45247],[71.65066,35.445],[71.64638,35.43227],[71.64105,35.42052],[71.62336,35.40936],[71.5558,35.31286],[71.55358,35.29661],[71.55355,35.29636],[71.55944,35.28408],[71.57003,35.27436],[71.59594,35.25838],[71.62252,35.23591],[71.63541,35.227],[71.65763,35.22319],[71.67197,35.21883],[71.67672,35.20661],[71.67488,35.19652],[71.63894,35.165],[71.62882,35.14888],[71.6173,35.1398],[71.60363,35.13586],[71.58533,35.12936],[71.55258,35.10797],[71.53577,35.09041],[71.53005,35.07236],[71.53397,35.06391],[71.53883,35.05361],[71.54666,35.03766],[71.55603,35.02805],[71.55208,35.01908],[71.53488,35.01252],[71.5176,35.00416],[71.51013,34.99258],[71.51041,34.98066],[71.50646,34.97166],[71.49925,34.96374],[71.48574,34.96163],[71.47621,34.95288],[71.44564,34.94513],[71.43291,34.93838],[71.42238,34.93061],[71.40061,34.9215],[71.38472,34.91672],[71.37016,34.91555],[71.3543,34.91166],[71.34371,34.90297],[71.32839,34.88991],[71.30986,34.87883],[71.30119,34.86547],[71.29575,34.85011],[71.29244,34.83377],[71.27944,34.80502],[71.27122,34.79805],[71.2463,34.79088],[71.22988,34.76044],[71.22499,34.75333],[71.2191,34.74808],[71.19572,34.74727],[71.18172,34.73688],[71.17128,34.72999],[71.15427,34.72433],[71.14372,34.71561],[71.13666,34.70949],[71.11452,34.71047],[71.10602,34.69891],[71.09566,34.67552],[71.09586,34.66086],[71.10578,34.64211],[71.11058,34.62997],[71.10705,34.62036],[71.08708,34.59044],[71.0738,34.58222],[71.05433,34.57691],[71.01797,34.57316],[71.00375,34.56675],[70.99555,34.55477],[70.99283,34.52763],[70.99485,34.4915],[71.0068,34.46111],[71.023,34.44813],[71.0485,34.43091],[71.05358,34.4275],[71.06536,34.41205],[71.07602,34.39577],[71.08728,34.38913],[71.11846,34.379],[71.15394,34.36955],[71.16947,34.3636],[71.17124,34.35825],[71.17108,34.33891],[71.15841,34.32277],[71.15675,34.31316],[71.13033,34.28091],[71.12205,34.26719],[71.1213,34.25494],[71.12652,34.23714],[71.1353,34.2253],[71.12828,34.21419],[71.12444,34.2038],[71.12605,34.17913],[71.12608,34.16241],[71.10939,34.14908],[71.08586,34.12088],[71.07966,34.11344],[71.07274,34.10569],[71.07733,34.07966],[71.07627,34.0625],[71.06527,34.0518],[71.04235,34.04933],[71.03416,34.05052],[71.0178,34.03661],[70.99869,34.0288],[70.98317,34.02861],[70.95463,34.01861],[70.9356,34.01166],[70.9253,34.01208],[70.91794,34.0098],[70.91638,34.00127],[70.89872,33.98222],[70.88494,33.97674],[70.8685,33.9783],[70.85108,33.98072],[70.82428,33.98183],[70.80938,33.97469],[70.78833,33.9678],[70.77947,33.95783],[70.76794,33.95486],[70.75072,33.96072],[70.74036,33.96027],[70.70114,33.96097],[70.6763,33.96022],[70.65116,33.95433],[70.63066,33.95686],[70.59388,33.96433],[70.56047,33.95786],[70.54772,33.95147],[70.53913,33.94577],[70.52502,33.95233],[70.51139,33.94855],[70.50183,33.94377],[70.46772,33.94333],[70.43939,33.95386],[70.4263,33.96038],[70.40372,33.96294],[70.32624,33.96322],[70.29794,33.97458],[70.29783,33.97286],[70.27911,33.98027],[70.26094,33.97772],[70.23883,33.97314],[70.22377,33.98119],[70.19821,33.9853],[70.1693,33.99919],[70.1543,34.0083],[70.13647,34.01216],[70.11191,34.01086],[70.10016,34.00805],[70.07991,34.01519],[70.06747,34.02419],[70.04619,34.03672],[70.02441,34.03961],[70.01927,34.03978],[70.01197,34.04861],[70.00166,34.04894],[69.98711,34.04085],[69.96636,34.03833],[69.91349,34.03794],[69.89753,34.02774],[69.89666,34.00955],[69.90105,33.9933],[69.90066,33.98474],[69.89516,33.97741],[69.87669,33.96836],[69.8658,33.95586],[69.86119,33.93991],[69.86575,33.92691],[69.88297,33.91025],[69.90389,33.89027],[69.91219,33.87497],[69.9163,33.85341],[69.92597,33.84022],[69.94594,33.82775],[69.95569,33.81669],[69.96302,33.78213],[69.9698,33.76261],[69.99183,33.74044],[70.00563,33.73352],[70.02603,33.73069],[70.03505,33.73147],[70.09211,33.71664],[70.10247,33.71841],[70.11677,33.72222],[70.12447,33.72194],[70.13697,33.71505],[70.1501,33.6953],[70.15071,33.68241],[70.14719,33.66325],[70.14927,33.65352],[70.16933,33.64422],[70.18966,33.6403],[70.19702,33.6336],[70.19358,33.61655],[70.17941,33.56452],[70.17472,33.54752],[70.17358,33.52505],[70.18191,33.51297],[70.20055,33.50158],[70.20764,33.48952],[70.2148,33.47963],[70.23124,33.4758],[70.24008,33.47336],[70.25238,33.4386],[70.25849,33.43302],[70.28786,33.43194],[70.2978,33.42622],[70.30097,33.41325],[70.31539,33.39555],[70.31494,33.387],[70.31172,33.37424],[70.32099,33.35569],[70.32658,33.34047],[70.32352,33.33094],[70.30816,33.33041],[70.29142,33.32783],[70.27108,33.30497],[70.23347,33.2688],[70.20827,33.25041],[70.20694,33.24974],[70.18994,33.24141],[70.16805,33.23791],[70.16397,33.23269],[70.15574,33.22119],[70.13111,33.21347],[70.10414,33.21014],[70.09386,33.20836],[70.07894,33.21638],[70.0673,33.21355],[70.02308,33.14327],[70.00638,33.14061],[70,33.13977],[69.98713,33.13805],[69.97683,33.13627],[69.96514,33.1313],[69.94589,33.12872],[69.9288,33.11752],[69.91669,33.10397],[69.90127,33.10127],[69.89236,33.10158],[69.87552,33.09569],[69.85644,33.09633],[69.8288,33.10475],[69.79911,33.12391],[69.78653,33.12755],[69.77347,33.12047],[69.7668,33.11425],[69.74639,33.11383],[69.7373,33.10983],[69.73049,33.10038],[69.72255,33.09314],[69.70458,33.0905],[69.68947,33.09419],[69.67941,33.09772],[69.66672,33.09811],[69.65511,33.09524],[69.61699,33.09749],[69.58005,33.09755],[69.56663,33.08189],[69.54274,33.05905],[69.50736,33.02925],[69.50711,33.02902],[69.49964,33.00247],[69.49302,32.96622],[69.49202,32.94269],[69.51508,32.88627],[69.53108,32.874],[69.53458,32.86641],[69.53052,32.86116],[69.51247,32.85422],[69.50077,32.84814],[69.49739,32.84849],[69.47422,32.85105],[69.46391,32.84708],[69.45825,32.83333],[69.44097,32.81455],[69.41217,32.79288],[69.39522,32.78158],[69.39236,32.77416],[69.39311,32.7613],[69.40277,32.74922],[69.4151,32.7403],[69.43125,32.73233],[69.44122,32.72774],[69.44216,32.72022],[69.44047,32.70955],[69.4388,32.69997],[69.43727,32.69358],[69.43697,32.68608],[69.44294,32.67736],[69.44774,32.67077],[69.45122,32.66316],[69.44441,32.65158],[69.43369,32.63691],[69.41635,32.616],[69.4001,32.58969],[69.38524,32.56655],[69.3428,32.54955],[69.32608,32.54252],[69.30072,32.54111],[69.28522,32.53297],[69.27022,32.50555],[69.24069,32.46138],[69.23877,32.4443],[69.25025,32.414],[69.27141,32.37377],[69.28082,32.35638],[69.27958,32.29216],[69.26997,32.27208],[69.27386,32.20986],[69.27578,32.19374],[69.27366,32.17239],[69.27283,32.151],[69.28947,32.09272],[69.2861,32.07138],[69.29846,32],[69.30033,31.99194],[69.31199,31.98613],[69.31272,31.97608],[69.31527,31.96877],[69.3235,31.94416],[69.3233,31.94072],[69.31761,31.92808],[69.31285,31.9248],[69.29927,31.91913],[69.27766,31.91152],[69.27185,31.90619],[69.26725,31.89514],[69.26258,31.88661],[69.23111,31.86258],[69.21064,31.85408],[69.20341,31.85261],[69.1976,31.84838],[69.19758,31.84824],[69.19255,31.8308],[69.19233,31.83],[69.18575,31.82327],[69.18094,31.80947],[69.17469,31.79999],[69.15625,31.78394],[69.14897,31.75888],[69.13524,31.74791],[69.13227,31.73619],[69.12741,31.72447],[69.12,31.72022],[69.12011,31.719],[69.12102,31.70994],[69.11794,31.70325],[69.10969,31.70038],[69.09644,31.69355],[69.09647,31.69305],[69.09647,31.69263],[69.08116,31.68119],[69.06647,31.66725],[69.0468,31.65986],[69.0315,31.65022],[69.02417,31.64211],[69.021,31.62672],[69.01088,31.62472],[69.00091,31.62825],[68.99344,31.62697],[68.98594,31.628],[68.97827,31.63613],[68.96891,31.63552],[68.96158,31.64044],[68.94916,31.64575],[68.94441,31.64225],[68.93367,31.62055],[68.92847,31.61336],[68.91688,31.60472],[68.90064,31.60125],[68.89536,31.60133],[68.89438,31.60133],[68.872,31.60169],[68.85869,31.59827],[68.8483,31.59741],[68.84355,31.59869],[68.84183,31.59913],[68.83152,31.60583],[68.82191,31.605],[68.81216,31.60963],[68.80494,31.60997],[68.7975,31.61877],[68.78266,31.63525],[68.77794,31.65508],[68.77349,31.66097],[68.75189,31.66952],[68.74283,31.67944],[68.717,31.69663],[68.71391,31.70208],[68.71572,31.71608],[68.70925,31.75099],[68.70183,31.76989],[68.69805,31.77141],[68.68219,31.77366],[68.67816,31.77336],[68.63952,31.77563],[68.63222,31.77825],[68.5821,31.82086],[68.57611,31.82555],[68.57013,31.82797],[68.5548,31.82036],[68.53841,31.81111],[68.52069,31.80116],[68.47783,31.78066],[68.46594,31.77405],[68.46497,31.77383],[68.4513,31.77055],[68.43697,31.76524],[68.43311,31.76325],[68.4476,31.75788],[68.45766,31.75213],[68.46366,31.74813],[68.47916,31.75025],[68.49292,31.7528],[68.49836,31.75383],[68.53852,31.75458],[68.56402,31.75252],[68.57611,31.75161],[68.58203,31.75033],[68.57463,31.73486],[68.56353,31.71977],[68.55561,31.71436],[68.53713,31.71402],[68.51039,31.73388],[68.50089,31.7383],[68.49038,31.74038],[68.47916,31.73925],[68.45664,31.74066],[68.45339,31.74219],[68.44533,31.7425],[68.43611,31.74713],[68.42302,31.75536],[68.42175,31.75736],[68.41952,31.75619],[68.40958,31.75716],[68.37202,31.75847],[68.32089,31.75747],[68.28661,31.757],[68.27822,31.7598],[68.25375,31.7815],[68.25096,31.78536],[68.25936,31.80155],[68.24124,31.80644],[68.19144,31.81275],[68.17749,31.8145],[68.17191,31.82172],[68.17119,31.82788],[68.16889,31.83425],[68.16494,31.83072],[68.15408,31.81744],[68.14436,31.80119],[68.14044,31.79814],[68.12108,31.76597],[68.11669,31.75869],[68.10121,31.74761],[68.09083,31.73638],[68.08408,31.72869],[68.06733,31.7155],[68.06749,31.71025],[68.06408,31.69938],[68.05783,31.6933],[68.0468,31.68597],[68.0315,31.67922],[68.02255,31.67375],[67.98772,31.64891],[67.9698,31.63958],[67.94991,31.63341],[67.93716,31.63288],[67.92453,31.63238],[67.91683,31.63013],[67.90438,31.62597],[67.8945,31.62572],[67.88661,31.62944],[67.87377,31.62961],[67.86869,31.6288],[67.84314,31.61652],[67.81597,31.59633],[67.81172,31.59161],[67.80358,31.58213],[67.79,31.57219],[67.77819,31.5655],[67.76697,31.55674],[67.74913,31.54025],[67.74205,31.53372],[67.72605,31.52483],[67.71308,31.52063],[67.70433,31.5198],[67.69977,31.51938],[67.6778,31.52091],[67.66175,31.52097],[67.6538,31.51872],[67.65,31.51844],[67.64847,31.51836],[67.63639,31.52813],[67.62774,31.53019],[67.62155,31.53116],[67.61005,31.53136],[67.58455,31.53438],[67.56955,31.53469],[67.5595,31.53236],[67.554,31.5288],[67.55503,31.52194],[67.57566,31.50505],[67.591,31.47958],[67.59505,31.4705],[67.59864,31.45961],[67.59911,31.45366],[67.59469,31.4343],[67.59764,31.4268],[67.60539,31.41852],[67.62286,31.41508],[67.62774,31.41336],[67.63378,31.40069],[67.64405,31.39683],[67.66007,31.39722],[67.68922,31.40436],[67.72633,31.41191],[67.74094,31.41477],[67.75033,31.41363],[67.76041,31.40747],[67.76403,31.40341],[67.77133,31.39994],[67.7783,31.39116],[67.78577,31.37461],[67.78986,31.35661],[67.78544,31.34391],[67.77558,31.33433],[67.77408,31.33286],[67.76277,31.32755],[67.75616,31.3258],[67.73786,31.32458],[67.73119,31.32322],[67.71772,31.32341],[67.7071,31.32025],[67.69171,31.31369],[67.68289,31.30683],[67.6583,31.29155],[67.62041,31.27638],[67.61219,31.27527],[67.60294,31.27275],[67.59063,31.27402],[67.58019,31.2733],[67.57466,31.27294],[67.57099,31.27077],[67.53925,31.26355],[67.53136,31.26038],[67.51039,31.24997],[67.49066,31.24214],[67.46416,31.23755],[67.44405,31.23288],[67.43066,31.22772],[67.40641,31.21974],[67.39297,31.21708],[67.39052,31.21658],[67.36616,31.21913],[67.34536,31.21972],[67.32719,31.21372],[67.31461,31.21519],[67.30486,31.21197],[67.29149,31.2125],[67.2715,31.20577],[67.2621,31.20688],[67.24583,31.21469],[67.22699,31.21944],[67.19574,31.22061],[67.18333,31.22486],[67.17099,31.24008],[67.16633,31.24338],[67.11761,31.2413],[67.10997,31.23925],[67.09371,31.23191],[67.06903,31.22961],[67.05616,31.23083],[67.04963,31.23386],[67.04025,31.23541],[67.03099,31.24019],[67.02566,31.24666],[67.02185,31.25502],[67.0248,31.2613],[67.04025,31.26933],[67.04775,31.27527],[67.0513,31.28591],[67.05002,31.29161],[67.04447,31.30383],[67.03463,31.30927],[67.0188,31.31133],[66.98566,31.31286],[66.9691,31.31261],[66.95772,31.31066],[66.95183,31.30983],[66.93419,31.30561],[66.90227,31.29616],[66.8668,31.28272],[66.85658,31.2785],[66.83496,31.26427],[66.82228,31.2483],[66.80802,31.22644],[66.80577,31.224],[66.802,31.21908],[66.79291,31.21305],[66.77625,31.2098],[66.75785,31.20969],[66.73108,31.2125],[66.72016,31.20597],[66.71817,31.20269],[66.71316,31.18261],[66.7093,31.16069],[66.70361,31.15066],[66.69694,31.13211],[66.68619,31.11527],[66.68814,31.10111],[66.68421,31.09319],[66.68316,31.07458],[66.667,31.06675],[66.66422,31.063],[66.65983,31.06033],[66.6388,31.04177],[66.61816,31.02047],[66.57963,30.9885],[66.56255,30.97761],[66.53389,30.97024],[66.51855,30.96839],[66.50746,30.96616],[66.48416,30.96402],[66.48239,30.96191],[66.44622,30.95588],[66.44008,30.95436],[66.40097,30.94472],[66.39133,30.9405],[66.38658,30.93391],[66.38394,30.92188],[66.38133,30.91494],[66.37191,30.88227],[66.36172,30.84408],[66.34139,30.77275],[66.33303,30.74058],[66.3311,30.73661],[66.32222,30.70488],[66.31608,30.68838],[66.29877,30.62677],[66.29294,30.60983],[66.28936,30.59594],[66.28666,30.58727],[66.28394,30.57858],[66.28105,30.56927],[66.28108,30.56308],[66.28269,30.55694],[66.29233,30.53777],[66.29788,30.5093],[66.30535,30.50244],[66.30994,30.50077],[66.32592,30.49327],[66.32763,30.49036],[66.3398,30.4793],[66.33663,30.45602],[66.33891,30.44694],[66.34958,30.43377],[66.35411,30.42727],[66.35436,30.42177],[66.35111,30.41225],[66.33799,30.39252],[66.33469,30.38347],[66.33277,30.3733],[66.33419,30.35452],[66.33652,30.3498],[66.33522,30.33736],[66.33247,30.3173],[66.32744,30.30588],[66.32044,30.27949],[66.31661,30.24286],[66.31041,30.22819],[66.30139,30.2178],[66.29289,30.20188],[66.28694,30.18744],[66.28771,30.17097],[66.28644,30.16402],[66.2843,30.15891],[66.26852,30.14091],[66.26008,30.12913],[66.25724,30.11069],[66.23844,30.08408],[66.23822,30.06641],[66.24166,30.05505],[66.25905,30.04397],[66.28855,30.02227],[66.30041,30.01625],[66.30374,30.01294],[66.32222,30],[66.35874,29.97444],[66.3615,29.97202],[66.36194,29.96814],[66.35685,29.9583],[66.34564,29.95013],[66.33019,29.92502],[66.31916,29.91294],[66.31891,29.91269],[66.31319,29.91088],[66.31224,29.90833],[66.28933,29.89125],[66.26983,29.87494],[66.25397,29.85566],[66.24563,29.85136],[66.23058,29.84669],[66.20224,29.83927],[66.18386,29.83311],[66.16486,29.8283],[66.1558,29.82522],[66.13322,29.81897],[66.11658,29.81438],[66.07241,29.80244],[66.03552,29.79213],[66.00252,29.78355],[65.9381,29.76691],[65.91555,29.76011],[65.88797,29.75377],[65.87452,29.74961],[65.85322,29.74419],[65.83405,29.73841],[65.78113,29.72374],[65.73722,29.7133],[65.7313,29.71077],[65.6978,29.7028],[65.65866,29.69208],[65.63608,29.68658],[65.61086,29.681],[65.57152,29.6693],[65.53466,29.66047],[65.52253,29.65608],[65.51574,29.65511],[65.44132,29.63622],[65.42346,29.63111],[65.36966,29.61558],[65.28627,29.59347],[65.27588,29.59163],[65.26194,29.58738],[65.23994,29.58116],[65.19488,29.56958],[65.16083,29.56027],[65.09713,29.54283],[65.06705,29.53622],[65.054,29.53475],[65.02855,29.5343],[65,29.53741],[64.95578,29.55358],[64.82169,29.56408],[64.80741,29.56575],[64.7621,29.57113],[64.66744,29.57838],[64.63191,29.58108],[64.53228,29.57586],[64.48761,29.57177],[64.45547,29.56399],[64.4281,29.55094],[64.4118,29.54511],[64.39074,29.54416],[64.37,29.54872],[64.3526,29.54538],[64.31527,29.53033],[64.27941,29.52808],[64.2668,29.52383],[64.23741,29.50244],[64.20805,29.49436],[64.17105,29.45952],[64.15233,29.44955],[64.14658,29.434],[64.13108,29.39194],[64.12,29.38211],[64.1053,29.37747],[64.08725,29.38288],[64.06783,29.39177],[64.04469,29.41302],[64.03236,29.41769],[63.91077,29.43861],[63.77411,29.45969],[63.64483,29.47947],[63.63216,29.48205],[63.59083,29.49041],[63.56016,29.48944],[63.4163,29.47986],[63.36449,29.47636],[63.27272,29.4678],[63.1293,29.45433],[62.98591,29.44069],[62.84258,29.42691],[62.69927,29.41297],[62.556,29.39891],[62.45577,29.38897],[62.2783,29.44177],[62.14169,29.48222],[62.00497,29.52252],[61.86816,29.56269],[61.73122,29.60275],[61.65252,29.62569],[61.59458,29.64355],[61.45827,29.68544],[61.32186,29.72722],[61.18536,29.76883],[61.04875,29.81033],[61.00169,29.82455],[60.91202,29.85169],[60.87861,29.86177],[60.96524,29.76077],[60.98736,29.73497],[61.05172,29.65975],[61.12586,29.57294],[61.19258,29.5025],[61.23461,29.46494],[61.31113,29.39647],[61.37086,29.35002],[61.37138,29.34961],[61.37227,29.34844],[61.37274,29.34727],[61.37686,29.33686],[61.37749,29.3353],[61.37341,29.31647],[61.35775,29.28277],[61.38349,29.22147],[61.39097,29.21361],[61.39913,29.20852],[61.42244,29.2005],[61.42866,29.19377],[61.41483,29.15619],[61.41336,29.14122],[61.4158,29.13563],[61.44352,29.12811],[61.45863,29.12241],[61.47052,29.11394],[61.47794,29.10277],[61.47886,29.08055],[61.50316,29.05641],[61.50555,29.04805],[61.49531,29.04461],[61.47821,29.02436],[61.53403,29.00942],[61.57704,28.92725],[61.60932,28.86216],[61.63615,28.81619],[61.67621,28.76576],[61.69558,28.75147],[61.72586,28.7412],[61.77752,28.67991],[61.79561,28.65583],[61.80416,28.64016],[61.82291,28.63269],[61.87011,28.59705],[61.89213,28.58372],[61.90861,28.57377],[61.95758,28.54869],[61.99316,28.54075],[62.01583,28.52858],[62.01827,28.52677],[62.0433,28.50788],[62.11577,28.48511],[62.14855,28.48905],[62.15236,28.4895],[62.17055,28.48755],[62.20241,28.47869],[62.23988,28.46586],[62.26944,28.46647],[62.29627,28.46344],[62.34997,28.44119],[62.37252,28.43802],[62.41669,28.41833],[62.43188,28.41094],[62.43966,28.40713],[62.47233,28.37605],[62.50288,28.33133],[62.51597,28.32227],[62.54158,28.30997],[62.57311,28.27852],[62.5923,28.25513],[62.63069,28.25936],[62.78694,28.28119],[62.79194,28.27711],[62.79658,28.20894],[62.7808,28.10294],[62.76822,28.03241],[62.77183,28.01505],[62.79005,27.97811],[62.79747,27.91444],[62.80827,27.85158],[62.8198,27.805],[62.82058,27.79977],[62.83002,27.73527],[62.83858,27.64744],[62.85125,27.54886],[62.85202,27.54266],[62.85538,27.46513],[62.83997,27.42502],[62.80738,27.34008],[62.82805,27.31933],[62.83252,27.30494],[62.82319,27.28622],[62.78147,27.25141],[62.78297,27.23427],[62.79794,27.22152],[62.82136,27.21233],[62.84366,27.21308],[62.87833,27.21713],[62.89233,27.21077],[62.90869,27.19924],[62.95166,27.19208],[62.97724,27.19511],[63.05864,27.23319],[63.11577,27.23436],[63.1952,27.25975],[63.22715,27.22622],[63.25746,27.22693],[63.2809,27.21176],[63.33326,27.11788],[63.30955,27.12716],[63.2903,27.11875],[63.26358,27.11039],[63.26077,27.09208],[63.25111,27.09028],[63.25311,26.90238],[63.24137,26.89607],[63.23906,26.88165],[63.24636,26.86723],[63.2405,26.84088],[63.18556,26.83516],[63.19877,26.79841],[63.20319,26.76825],[63.19868,26.7429],[63.19972,26.71282],[63.18821,26.69826],[63.2016,26.67437],[63.18907,26.66733],[63.19577,26.64556],[63.16919,26.6473],[63.16202,26.64361],[63.15652,26.645],[63.09002,26.64408],[63.05144,26.63758],[63.00191,26.65194],[62.98588,26.65336],[62.95275,26.65297],[62.94652,26.65291],[62.91947,26.64613],[62.84008,26.64752],[62.8216,26.65219],[62.80347,26.65225],[62.77869,26.65227],[62.76069,26.64841],[62.73683,26.63852],[62.73394,26.63622],[62.73158,26.6343],[62.72638,26.62411],[62.72139,26.61988],[62.71022,26.617],[62.69741,26.61366],[62.69649,26.61333],[62.68516,26.61255],[62.66086,26.6165],[62.64833,26.60913],[62.6378,26.59941],[62.60813,26.58499],[62.58197,26.58283],[62.52986,26.57847],[62.51197,26.58133],[62.47841,26.56955],[62.46336,26.56761],[62.44122,26.57002],[62.43452,26.56813],[62.41069,26.54439],[62.40352,26.53933],[62.39711,26.5383],[62.36133,26.53952],[62.35341,26.53591],[62.34325,26.53125],[62.33361,26.52852],[62.31505,26.52886],[62.30602,26.52441],[62.29938,26.51363],[62.29586,26.49875],[62.29702,26.49413],[62.3045,26.4848],[62.30877,26.47669],[62.3088,26.47666],[62.30219,26.46761],[62.28258,26.44725],[62.26977,26.44574],[62.25772,26.44883],[62.25636,26.44597],[62.26461,26.43208],[62.26472,26.41269],[62.28583,26.3776],[62.25734,26.3687],[62.24982,26.34102],[62.27126,26.3346],[62.26862,26.32429],[62.24567,26.32147],[62.23189,26.33211],[62.23263,26.31493],[62.21253,26.27143],[62.15005,26.27037],[62.09718,26.28533],[62.09573,26.31059],[62.06897,26.32502],[62.02984,26.33453],[62.02474,26.30926],[61.98666,26.27966],[61.95824,26.26858],[61.91696,26.25473],[61.90117,26.26263],[61.88882,26.25143],[61.89048,26.23105],[61.86093,26.17515],[61.83897,26.06693],[61.83587,26.02005],[61.82375,25.96218],[61.8333,25.9119],[61.85775,25.91378],[61.87402,25.89202],[61.89179,25.89036],[61.89033,25.88005],[61.84626,25.87792],[61.8221,25.84738],[61.84923,25.81868],[61.83951,25.79435],[61.84078,25.74529],[61.80834,25.73649],[61.80077,25.71925],[61.73626,25.73913],[61.69504,25.69125],[61.69414,25.6793],[61.68899,25.66255],[61.6766,25.64631],[61.66722,25.51238],[61.65355,25.30557],[61.5713,25.01276],[60,24],[60,0],[62.46122,-10],[89.999999,-10],[89.999999,20],[92.37132,20.7013],[92.37498,20.72474],[92.35827,20.76408],[92.33881,20.82396],[92.30905,20.88501],[92.29165,20.91527],[92.27287,20.94424],[92.27088,20.95565],[92.27233,20.97924],[92.26835,21.00077],[92.25353,21.0214],[92.25264,21.03572],[92.25656,21.0494],[92.26161,21.05432],[92.26459,21.05988],[92.2589,21.07741],[92.23338,21.09529],[92.22468,21.11733],[92.21769,21.12205],[92.2075,21.11752],[92.20006,21.12324],[92.19753,21.13853],[92.20324,21.14997],[92.19932,21.16052],[92.1917,21.16292],[92.18136,21.15771],[92.17515,21.15827],[92.17236,21.16907],[92.17337,21.17479],[92.17233,21.18051],[92.17557,21.18367],[92.18087,21.18619],[92.18275,21.19209],[92.18669,21.19671],[92.19423,21.20019],[92.19968,21.20064],[92.21062,21.22476],[92.21711,21.22745],[92.21947,21.23333],[92.21175,21.24791],[92.21348,21.25147],[92.22106,21.25603],[92.21662,21.26762],[92.21784,21.27886],[92.20944,21.28562],[92.21083,21.28824],[92.20294,21.29946],[92.1978,21.31069],[92.20124,21.31808],[92.1985,21.32738],[92.21362,21.33989],[92.21602,21.34493],[92.22409,21.35001],[92.23079,21.34806],[92.23319,21.35182],[92.25276,21.35879],[92.25898,21.36436],[92.25469,21.36703],[92.25316,21.37226],[92.25771,21.37744],[92.25402,21.38708],[92.26785,21.39993],[92.26383,21.40818],[92.26394,21.41322],[92.26937,21.41492],[92.2697,21.41918],[92.26918,21.4277],[92.27441,21.43292],[92.28012,21.42945],[92.28686,21.42827],[92.29292,21.42964],[92.29418,21.42398],[92.29749,21.42024],[92.30137,21.42402],[92.31073,21.41758],[92.31504,21.42067],[92.32435,21.41917],[92.32649,21.43089],[92.33832,21.43643],[92.33618,21.44785],[92.34061,21.45421],[92.34366,21.46823],[92.35724,21.46935],[92.36464,21.47367],[92.36792,21.47927],[92.37344,21.4761],[92.38241,21.47931],[92.39861,21.4624],[92.41208,21.44167],[92.41648,21.44179],[92.4254,21.43415],[92.43157,21.40508],[92.42744,21.39647],[92.42743,21.38148],[92.43085,21.37224],[92.43697,21.37174],[92.43897,21.36515],[92.45783,21.3689],[92.46211,21.36533],[92.46982,21.36305],[92.47182,21.35518],[92.48484,21.35765],[92.48724,21.36082],[92.49718,21.36208],[92.50266,21.35628],[92.50706,21.3573],[92.51145,21.36792],[92.50712,21.37595],[92.51447,21.37758],[92.5163,21.38838],[92.53119,21.38831],[92.53555,21.37793],[92.54013,21.37642],[92.54952,21.37875],[92.55181,21.38215],[92.55685,21.38491],[92.56223,21.37776],[92.56349,21.36997],[92.56651,21.3451],[92.57296,21.33365],[92.57145,21.32931],[92.57197,21.32311],[92.57593,21.31818],[92.58658,21.28658],[92.58419,21.28185],[92.59124,21.26381],[92.59623,21.24513],[92.61358,21.24744],[92.62406,21.25167],[92.62116,21.25942],[92.62932,21.26457],[92.63066,21.26779],[92.65364,21.27835],[92.66822,21.28236],[92.68006,21.28636],[92.6796,21.29685],[92.66427,21.31969],[92.65626,21.34998],[92.65151,21.35915],[92.64882,21.37791],[92.65093,21.38644],[92.64893,21.38986],[92.64446,21.39969],[92.63998,21.41462],[92.64064,21.42852],[92.63783,21.43714],[92.63457,21.43873],[92.62992,21.44864],[92.63231,21.45247],[92.62404,21.47547],[92.62742,21.48697],[92.62016,21.51619],[92.62113,21.52881],[92.61484,21.56873],[92.6082,21.59141],[92.61049,21.62048],[92.60343,21.65299],[92.6047,21.6718],[92.60872,21.68487],[92.60176,21.70304],[92.6048,21.72137],[92.6099,21.73142],[92.60534,21.73651],[92.61107,21.78179],[92.60813,21.79965],[92.60999,21.81879],[92.62078,21.82359],[92.6145,21.84224],[92.61396,21.85201],[92.62097,21.86177],[92.63106,21.86167],[92.63084,21.86923],[92.63384,21.87413],[92.61992,21.92218],[92.61342,21.92337],[92.61378,21.92711],[92.61313,21.93205],[92.61664,21.93937],[92.61541,21.94318],[92.60953,21.94381],[92.6115,21.95779],[92.60307,21.98259],[92.61348,21.9873],[92.6232,21.99456],[92.63293,22.00404],[92.64471,22.01862],[92.6522,22.02254],[92.66587,22.02073],[92.67105,22.02058],[92.68017,22.02783],[92.68516,22.03953],[92.68317,22.07233],[92.67878,22.08603],[92.67851,22.09974],[92.68346,22.10139],[92.69588,22.09457],[92.70004,22.09562],[92.7004,22.09965],[92.69646,22.14904],[92.70067,22.15593],[92.71102,22.16033],[92.72477,22.15808],[92.73372,22.14692],[92.75733,22.13098],[92.78802,22.11634],[92.80954,22.10074],[92.81962,22.08818],[92.8242,22.07879],[92.8398,22.06486],[92.85722,22.05885],[92.86833,22.04502],[92.88081,22.02674],[92.88535,22.01405],[92.89126,21.96315],[92.89546,21.9546],[92.90034,21.95432],[92.90684,21.96006],[92.91421,21.96961],[92.92168,21.99189],[92.92914,22.01991],[92.93857,22.02612],[92.94947,22.0289],[92.95967,22.02469],[92.97357,22.00225],[92.98429,21.99103],[92.99158,21.99127],[93.00038,21.99554],[93.00713,22.00427],[93.00219,22.02287],[92.99246,22.04656],[92.9889,22.05529],[92.99161,22.06781],[93.00669,22.09115],[93.01074,22.10792],[93.0168,22.1157],[93.02415,22.11749],[93.03435,22.11774],[93.03974,22.11609],[93.04778,22.11724],[93.05238,22.11966],[93.04784,22.13618],[93.04241,22.14619],[93.04038,22.16169],[93.04486,22.17326],[93.04866,22.17783],[93.04886,22.18872],[93.04426,22.20215],[93.05075,22.20852],[93.06479,22.21172],[93.07845,22.21176],[93.08906,22.20797],[93.1031,22.20671],[93.11165,22.20324],[93.12348,22.18815],[93.13124,22.18549],[93.14106,22.18346],[93.14951,22.18589],[93.1662,22.19213],[93.16172,22.20548],[93.15655,22.21565],[93.14623,22.22487],[93.14141,22.23154],[93.14362,22.23743],[93.14747,22.24037],[93.15407,22.2414],[93.17413,22.24172],[93.19138,22.24792],[93.19691,22.25515],[93.19901,22.26365],[93.19863,22.27894],[93.19756,22.29106],[93.19718,22.31843],[93.19012,22.38197],[93.18282,22.41089],[93.18294,22.42566],[93.18101,22.44044],[93.16563,22.4531],[93.1418,22.4626],[93.13514,22.47528],[93.13768,22.4914],[93.13569,22.4988],[93.1241,22.51635],[93.11739,22.53433],[93.11926,22.55548],[93.13427,22.58254],[93.13662,22.59321],[93.13555,22.60199],[93.12952,22.61998],[93.11731,22.63416],[93.10389,22.64858],[93.0977,22.66106],[93.09632,22.66983],[93.09907,22.67739],[93.09769,22.68874],[93.09494,22.69894],[93.0915,22.71547],[93.09733,22.7282],[93.09973,22.73903],[93.10109,22.77761],[93.09901,22.79148],[93.105,22.81106],[93.11168,22.83001],[93.11595,22.86478],[93.11954,22.87613],[93.1397,22.89138],[93.14405,22.90009],[93.14291,22.91323],[93.14852,22.91458],[93.15413,22.91277],[93.16158,22.91927],[93.14711,22.93986],[93.13848,22.95791],[93.13495,22.99276],[93.12686,23.00825],[93.12536,23.01465],[93.1266,23.02547],[93.13779,23.0483],[93.14648,23.05435],[93.15735,23.05168],[93.16478,23.05218],[93.18052,23.05889],[93.19491,23.05941],[93.20724,23.0574],[93.21302,23.0499],[93.2238,23.02245],[93.22978,23.01333],[93.24005,23.00784],[93.25101,23.00678],[93.26986,23.00319],[93.2841,23.00582],[93.29352,23.00908],[93.30783,23.01809],[93.31729,23.02858],[93.32443,23.04394],[93.33281,23.05699],[93.34626,23.06667],[93.35011,23.07256],[93.35004,23.09139],[93.3579,23.11217],[93.36938,23.12572],[93.38474,23.13471],[93.38737,23.13948],[93.38452,23.14489],[93.37479,23.1506],[93.37165,23.15473],[93.37125,23.16201],[93.37702,23.19347],[93.38965,23.2243],[93.38624,23.24855],[93.37115,23.27582],[93.37132,23.28958],[93.36875,23.30459],[93.37339,23.32087],[93.37322,23.32895],[93.36607,23.34973],[93.36746,23.35449],[93.37091,23.35736],[93.37988,23.35995],[93.38816,23.36096],[93.39369,23.36575],[93.40414,23.37673],[93.40418,23.3894],[93.40285,23.39387],[93.39881,23.43434],[93.39992,23.45495],[93.40562,23.4725],[93.40308,23.48375],[93.40411,23.50074],[93.41474,23.53977],[93.41577,23.54984],[93.41405,23.56746],[93.42091,23.58351],[93.42434,23.59704],[93.42605,23.60822],[93.42416,23.62607],[93.42012,23.64066],[93.41947,23.65267],[93.42158,23.66091],[93.43221,23.67492],[93.43323,23.67887],[93.42944,23.69157],[93.41672,23.7005],[93.4105,23.70703],[93.40631,23.71759],[93.3993,23.74436],[93.39901,23.7822],[93.39569,23.80948],[93.38492,23.83956],[93.38194,23.88539],[93.3872,23.90987],[93.38573,23.91816],[93.38357,23.92332],[93.37651,23.92924],[93.36857,23.93292],[93.36298,23.93337],[93.3583,23.93689],[93.35499,23.94543],[93.34151,23.97067],[93.33205,23.97534],[93.3274,23.98252],[93.32927,24.00852],[93.32771,24.03515],[93.32993,24.03983],[93.33283,24.06834],[93.33556,24.07579],[93.35031,24.08766],[93.36352,24.09109],[93.3794,24.0903],[93.39386,24.08551],[93.40352,24.07885],[93.41171,24.06615],[93.41918,24.04453],[93.43867,24.02165],[93.44944,24.01271],[93.46296,24.00315],[93.46786,23.98544],[93.46795,23.97651],[93.47606,23.96671],[93.49131,23.96285],[93.50861,23.9615],[93.52935,23.96359],[93.54521,23.97092],[93.55555,23.98211],[93.56245,23.98514],[93.56672,23.98647],[93.57649,23.97901],[93.58092,23.97099],[93.59222,23.97081],[93.60283,23.97566],[93.61204,23.99883],[93.62193,24.01636],[93.63356,24.01593],[93.65481,24.01174],[93.66197,24.01194],[93.68768,24.01527],[93.70189,24.01108],[93.71815,24.00438],[93.74225,24.00558],[93.75879,24.00677],[93.76579,24.00289],[93.77669,23.99231],[93.78472,23.97636],[93.78691,23.9673],[93.79266,23.95735],[93.8024,23.94641],[93.81764,23.9361],[93.82824,23.93552],[93.84227,23.93807],[93.86553,23.9438],[93.89227,23.95232],[93.92175,23.95706],[93.93609,23.95213],[93.97282,23.93175],[93.99857,23.92611],[94.03256,23.9211],[94.04647,23.90997],[94.04999,23.90032],[94.05999,23.89518],[94.07754,23.89381],[94.09797,23.88581],[94.10956,23.86769],[94.1102,23.86208],[94.11963,23.85188],[94.12906,23.84357],[94.13609,23.84374],[94.1451,23.84822],[94.15303,23.85862],[94.16131,23.88095],[94.16127,23.90278],[94.16053,23.92398],[94.16151,23.93451],[94.16524,23.94442],[94.17373,23.94917],[94.1869,23.95563],[94.20619,23.9849],[94.21633,23.9999],[94.22579,24.03058],[94.22289,24.05123],[94.2241,24.0587],[94.23911,24.06929],[94.24321,24.0829],[94.24181,24.10905],[94.2452,24.12062],[94.25025,24.14593],[94.25965,24.16329],[94.26973,24.17877],[94.27289,24.19627],[94.27881,24.22693],[94.29296,24.25132],[94.29695,24.25319],[94.30272,24.26258],[94.31109,24.27791],[94.31391,24.28589],[94.31604,24.29763],[94.31442,24.31947],[94.31898,24.3363],[94.32878,24.34556],[94.35403,24.36578],[94.36143,24.37473],[94.35392,24.39889],[94.35464,24.40492],[94.37601,24.40838],[94.38624,24.41886],[94.38926,24.43403],[94.38851,24.45701],[94.38913,24.47937],[94.39358,24.48564],[94.40129,24.49003],[94.41408,24.49253],[94.42412,24.50253],[94.42958,24.51821],[94.43813,24.55449],[94.44579,24.56867],[94.45521,24.5753],[94.46874,24.58006],[94.4937,24.59648],[94.5044,24.60668],[94.51648,24.62062],[94.5289,24.65141],[94.53476,24.69146],[94.53529,24.70243],[94.53788,24.70779],[94.54655,24.71133],[94.57582,24.70925],[94.58587,24.71372],[94.59728,24.72442],[94.61823,24.76101],[94.61892,24.76808],[94.61825,24.80031],[94.62308,24.81614],[94.63962,24.84096],[94.65581,24.85426],[94.66925,24.86942],[94.68756,24.91506],[94.69294,24.92544],[94.69597,24.93499],[94.69645,24.9488],[94.69314,24.96096],[94.69258,24.97438],[94.69659,24.98311],[94.7034,24.98965],[94.70952,24.99308],[94.7226,25.00826],[94.73361,25.02157],[94.73711,25.0426],[94.73301,25.10136],[94.73474,25.12452],[94.72892,25.13524],[94.72137,25.13995],[94.69631,25.15131],[94.67056,25.16143],[94.65752,25.16525],[94.63881,25.16762],[94.61598,25.16999],[94.59916,25.17847],[94.59015,25.18829],[94.58458,25.19626],[94.57617,25.21404],[94.57669,25.23711],[94.57995,25.2521],[94.58202,25.2891],[94.58917,25.30204],[94.59962,25.31192],[94.61074,25.32987],[94.61515,25.34189],[94.61793,25.35828],[94.61865,25.37033],[94.62422,25.39567],[94.6339,25.40953],[94.64767,25.41709],[94.66007,25.42588],[94.66413,25.43279],[94.67025,25.449],[94.68907,25.46893],[94.69962,25.47453],[94.71291,25.47951],[94.72333,25.48417],[94.73472,25.49301],[94.74679,25.49689],[94.76031,25.49318],[94.77107,25.49133],[94.78962,25.49666],[94.80405,25.50768],[94.81779,25.52181],[94.83119,25.54541],[94.84185,25.55972],[94.85046,25.56697],[94.87159,25.56594],[94.88008,25.56836],[94.88513,25.57263],[94.88562,25.57808],[94.87769,25.58649],[94.88036,25.59341],[94.89689,25.6033],[94.9108,25.61962],[94.92128,25.63595],[94.94446,25.66651],[94.96421,25.69026],[94.97365,25.69798],[94.98035,25.70755],[94.98619,25.72112],[94.99306,25.72972],[94.99976,25.73416],[95.01581,25.73545],[95.0274,25.73767],[95.03426,25.74376],[95.03976,25.75254],[95.03908,25.76856],[95.03463,25.79625],[95.02881,25.82579],[95.01822,25.89237],[95.02012,25.92268],[95.02271,25.93076],[95.03375,25.93931],[95.06022,25.94329],[95.07404,25.94875],[95.08649,25.95484],[95.11469,25.98119],[95.13534,26.00321],[95.14995,26.02001],[95.15976,26.03002],[95.17163,26.04558],[95.17722,26.05583],[95.17938,26.06485],[95.17566,26.07654],[95.17311,26.08053],[95.15788,26.08986],[95.11793,26.10165],[95.11152,26.11325],[95.11072,26.12676],[95.11266,26.1378],[95.11414,26.15156],[95.1118,26.16152],[95.1041,26.16958],[95.10372,26.181],[95.10952,26.18933],[95.11669,26.19335],[95.11994,26.19813],[95.12044,26.2023],[95.11581,26.20878],[95.09908,26.2114],[95.08763,26.21672],[95.08098,26.22881],[95.07695,26.25961],[95.07087,26.29472],[95.06718,26.30429],[95.06534,26.32876],[95.06831,26.3477],[95.08857,26.39051],[95.09528,26.40638],[95.09451,26.41678],[95.09031,26.42717],[95.0692,26.45338],[95.06483,26.46833],[95.06746,26.48287],[95.07735,26.49783],[95.08745,26.50653],[95.09548,26.51032],[95.10976,26.52262],[95.11717,26.54412],[95.14312,26.56134],[95.14751,26.56564],[95.15032,26.57501],[95.14902,26.58131],[95.13913,26.59406],[95.13837,26.6043],[95.14143,26.61342],[95.15188,26.62289],[95.1589,26.62622],[95.17466,26.62996],[95.19454,26.63616],[95.20515,26.64358],[95.21423,26.65957],[95.22632,26.66848],[95.23106,26.67362],[95.2461,26.67999],[95.25328,26.67903],[95.25702,26.67378],[95.25752,26.66701],[95.2539,26.65656],[95.25715,26.65072],[95.26392,26.64534],[95.27138,26.64487],[95.31813,26.66856],[95.34734,26.67887],[95.38959,26.68488],[95.43875,26.70797],[95.45027,26.71614],[95.4708,26.74322],[95.48072,26.75769],[95.49083,26.78485],[95.503,26.81016],[95.51573,26.82019],[95.52313,26.82459],[95.54151,26.82715],[95.60471,26.81909],[95.61347,26.82298],[95.61949,26.8287],[95.63015,26.8521],[95.63385,26.87029],[95.64394,26.88506],[95.65791,26.8949],[95.6681,26.89873],[95.68006,26.89728],[95.69909,26.89105],[95.71194,26.88849],[95.71903,26.89293],[95.72716,26.89787],[95.73803,26.91016],[95.74719,26.93347],[95.75074,26.94727],[95.75978,26.96351],[95.77521,26.97273],[95.78395,26.97734],[95.79657,26.99281],[95.80781,27.0046],[95.84006,27.00984],[95.86373,27.00989],[95.87417,27.01259],[95.90616,27.02648],[95.92663,27.0426],[95.94269,27.05984],[95.95107,27.07029],[95.96151,27.08013],[95.98135,27.11016],[96.00363,27.15543],[96.01271,27.17135],[96.0248,27.18359],[96.03634,27.19215],[96.06889,27.20926],[96.09045,27.2282],[96.15342,27.25483],[96.1722,27.25808],[96.18685,27.26865],[96.19285,27.2707],[96.2168,27.27172],[96.22838,27.27579],[96.25816,27.27605],[96.27146,27.27875],[96.28201,27.28603],[96.29805,27.29026],[96.32413,27.28672],[96.34163,27.28953],[96.35467,27.29478],[96.37411,27.29324],[96.3915,27.29353],[96.4082,27.30206],[96.42714,27.30603],[96.44828,27.30313],[96.46531,27.29718],[96.4819,27.30266],[96.49779,27.30203],[96.50745,27.29562],[96.51675,27.29271],[96.52551,27.29431],[96.53436,27.30365],[96.54252,27.30506],[96.55652,27.30397],[96.56902,27.30922],[96.57987,27.31907],[96.59113,27.3365],[96.59642,27.3504],[96.60318,27.36162],[96.60994,27.36674],[96.6177,27.36806],[96.63222,27.36079],[96.64566,27.34617],[96.64834,27.34298],[96.65444,27.33917],[96.66501,27.33933],[96.67284,27.34193],[96.68003,27.34372],[96.68791,27.35038],[96.6951,27.35857],[96.70298,27.36493],[96.71359,27.36775],[96.7491,27.36092],[96.78496,27.34617],[96.80017,27.33049],[96.80525,27.3281],[96.81858,27.32448],[96.82395,27.3197],[96.83413,27.29249],[96.84774,27.26894],[96.8585,27.26083],[96.87474,27.25882],[96.88001,27.25924],[96.8839,27.25416],[96.8855,27.24872],[96.88435,27.24328],[96.88252,27.23937],[96.87657,27.23729],[96.86845,27.22885],[96.86101,27.21614],[96.86249,27.20862],[96.86604,27.19804],[96.87802,27.18432],[96.89809,27.17196],[96.96511,27.14531],[96.98043,27.1381],[97.0001,27.13266],[97.01703,27.12722],[97.02895,27.11974],[97.0459,27.0995],[97.06078,27.0927],[97.06687,27.09195],[97.09017,27.10196],[97.10935,27.10098],[97.12478,27.08755],[97.12881,27.08496],[97.13764,27.08542],[97.14618,27.09589],[97.14717,27.10758],[97.15879,27.12172],[97.16012,27.13647],[97.1489,27.15062],[97.12531,27.16354],[97.12296,27.17077],[97.12443,27.17654],[97.12796,27.17988],[97.12816,27.18532],[97.12595,27.19214],[97.11963,27.19774],[97.09668,27.2065],[97.07309,27.24873],[97.05706,27.26837],[97.04823,27.28222],[97.03598,27.2979],[96.99909,27.33051],[96.99035,27.34298],[96.97268,27.36247],[96.96257,27.37526],[96.95787,27.38347],[96.95515,27.39284],[96.94899,27.40404],[96.93394,27.41303],[96.92506,27.43008],[96.91239,27.44258],[96.90589,27.45019],[96.89981,27.46481],[96.90006,27.47577],[96.90441,27.484],[96.91769,27.50014],[96.91816,27.5044],[96.90802,27.52594],[96.90475,27.55966],[96.8958,27.56499],[96.88874,27.57703],[96.88589,27.59126],[96.88687,27.60568],[96.88923,27.61766],[96.89493,27.62581],[96.91368,27.63821],[96.9179,27.64426],[96.92213,27.65092],[96.93219,27.66183],[96.94157,27.66486],[96.95313,27.66486],[96.96125,27.6679],[96.97933,27.6843],[97.00343,27.71807],[97.01587,27.74212],[97.02685,27.74587],[97.04195,27.74835],[97.0598,27.75205],[97.07833,27.74638],[97.08382,27.74922],[97.08721,27.75587],[97.08822,27.77742],[97.0906,27.78196],[97.09727,27.78498],[97.1163,27.78922],[97.12484,27.79526],[97.13046,27.81011],[97.13402,27.81403],[97.15166,27.81673],[97.15762,27.82126],[97.1659,27.83026],[97.17831,27.83744],[97.18691,27.84832],[97.20581,27.86284],[97.22299,27.87996],[97.22849,27.88494],[97.23744,27.89673],[97.24859,27.90726],[97.26659,27.9087],[97.28047,27.91681],[97.28553,27.91859],[97.29332,27.91916],[97.30583,27.91392],[97.31011,27.90364],[97.30985,27.89304],[97.3113,27.88031],[97.3173,27.87762],[97.32841,27.88225],[97.33952,27.88932],[97.3435,27.89131],[97.36465,27.8927],[97.36746,27.89669],[97.36743,27.90243],[97.36259,27.92578],[97.36069,27.94083],[97.36489,27.96063],[97.38278,27.99479],[97.39312,28.00712],[97.39578,28.01223],[97.39431,28.01915],[97.37597,28.03216],[97.36724,28.04213],[97.36764,28.04753],[97.36285,28.05138],[97.35874,28.05766],[97.35945,28.06233],[97.35538,28.06682],[97.34862,28.06551],[97.3426,28.06066],[97.33452,28.05884],[97.32648,28.06196],[97.32004,28.05852],[97.3129,28.06175],[97.3219,28.08232],[97.32815,28.08532],[97.32785,28.0947],[97.32479,28.10226],[97.3345,28.10809],[97.33043,28.11191],[97.32498,28.11331],[97.32508,28.12459],[97.31899,28.12678],[97.31438,28.1345],[97.30976,28.141],[97.31606,28.1481],[97.32167,28.14792],[97.32462,28.14304],[97.33433,28.1418],[97.34542,28.15087],[97.35474,28.1532],[97.35613,28.15969],[97.36027,28.16496],[97.3548,28.17672],[97.36108,28.19026],[97.36323,28.20076],[97.36075,28.20521],[97.3538,28.20785],[97.34731,28.20812],[97.34503,28.2141],[97.3406,28.21574],[97.33618,28.21495],[97.33007,28.21518],[97.29863,28.23199],[97.2847,28.23338],[97.2845,28.24565],[97.27818,28.24407],[97.27186,28.24492],[97.2702,28.25628],[97.26361,28.26328],[97.24603,28.26484],[97.24383,28.27158],[97.2405,28.27298],[97.23579,28.28346],[97.23942,28.29353],[97.22147,28.3024],[97.21862,28.30826],[97.20812,28.30099],[97.19979,28.31005],[97.19694,28.3161],[97.19174,28.3197],[97.17928,28.33297],[97.17219,28.33401],[97.16853,28.32961],[97.15561,28.33669],[97.14914,28.34416],[97.14611,28.35284],[97.14098,28.35169],[97.12279,28.36262],[97.10049,28.366],[97.09329,28.36878],[97.07893,28.37203],[97.06584,28.36375],[97.0545,28.35901],[97.04384,28.34943],[97.02728,28.32985],[97.00311,28.32452],[96.99119,28.32745],[96.97652,28.32978],[96.95269,28.3453],[96.92383,28.35249],[96.92244,28.3639],[96.91342,28.36764],[96.90921,28.3738],[96.89972,28.38096],[96.89023,28.38449],[96.88349,28.39829],[96.88424,28.40519],[96.89323,28.41693],[96.88909,28.42819],[96.87913,28.43442],[96.86573,28.44851],[96.86089,28.48492],[96.82148,28.50034],[96.78344,28.51394],[96.76751,28.51411],[96.74952,28.54263],[96.75954,28.55865],[96.74511,28.57158],[96.72792,28.57425],[96.71487,28.58448],[96.6922,28.58688],[96.66679,28.59952],[96.65408,28.60977],[96.63039,28.61097],[96.61459,28.61397],[96.5799,28.59213],[96.55138,28.58295],[96.53796,28.57166],[96.5237,28.55184],[96.51356,28.5278],[96.51077,28.45771],[96.50543,28.43865],[96.49596,28.42987],[96.48926,28.43408],[96.48325,28.44916],[96.47775,28.49049],[96.44684,28.48927],[96.44289,28.49908],[96.43413,28.50586],[96.40838,28.50857],[96.41155,28.51711],[96.43202,28.5253],[96.45248,28.53048],[96.4587,28.5343],[96.46765,28.54405],[96.4814,28.55501],[96.48235,28.56041],[96.48056,28.56642],[96.45165,28.58267],[96.44676,28.58687],[96.46162,28.60147],[96.48931,28.60636],[96.49502,28.60944],[96.49511,28.62223],[96.49658,28.62597],[96.50594,28.6234],[96.51254,28.62624],[96.537,28.6547],[96.5371,28.66257],[96.53446,28.67526],[96.53605,28.68135],[96.54409,28.68758],[96.55693,28.6908],[96.59772,28.69723],[96.60349,28.69945],[96.60905,28.70723],[96.62079,28.72766],[96.62162,28.73539],[96.61806,28.73713],[96.60351,28.75872],[96.60092,28.78071],[96.59323,28.78069],[96.57832,28.77886],[96.57269,28.78335],[96.57048,28.78784],[96.57746,28.79738],[96.57804,28.80561],[96.58479,28.81144],[96.58937,28.81827],[96.57827,28.8178],[96.56586,28.82448],[96.55829,28.83202],[96.5521,28.84016],[96.54795,28.84921],[96.54387,28.84728],[96.53773,28.84774],[96.52751,28.8583],[96.52141,28.86134],[96.51939,28.86918],[96.52423,28.87882],[96.51718,28.88701],[96.51537,28.90794],[96.52455,28.91564],[96.52025,28.93359],[96.50839,28.94614],[96.48193,28.9478],[96.47298,28.92799],[96.46404,28.9337],[96.45511,28.93595],[96.44309,28.9515],[96.43639,28.96168],[96.43523,28.97669],[96.42823,28.98479],[96.42879,28.9983],[96.43519,29.0013],[96.43445,29.00614],[96.39633,29.02942],[96.38654,29.03115],[96.37516,29.03219],[96.36585,29.03922],[96.36164,29.0485],[96.3623,29.06864],[96.35405,29.06804],[96.35199,29.07466],[96.35884,29.09388],[96.36843,29.10952],[96.34744,29.10131],[96.34155,29.10014],[96.32536,29.10123],[96.30952,29.10141],[96.29626,29.09885],[96.28198,29.09989],[96.26908,29.09673],[96.26176,29.08825],[96.25377,29.08457],[96.24257,29.07421],[96.23772,29.06066],[96.23011,29.04712],[96.21353,29.02723],[96.20553,29.02415],[96.19822,29.02348],[96.19546,29.03515],[96.18585,29.04069],[96.18241,29.04442],[96.18686,29.05009],[96.186,29.05353],[96.18239,29.05516],[96.18581,29.0596],[96.19815,29.07245],[96.19603,29.08421],[96.18841,29.09687],[96.18353,29.11073],[96.19353,29.11767],[96.22805,29.12833],[96.23874,29.13182],[96.24394,29.13861],[96.24541,29.1504],[96.25436,29.15372],[96.2609,29.15914],[96.29285,29.15647],[96.29783,29.15932],[96.30169,29.17663],[96.30007,29.19035],[96.28308,29.2022],[96.28325,29.20955],[96.27078,29.20958],[96.26179,29.21453],[96.2528,29.2135],[96.26218,29.22074],[96.2624,29.2269],[96.2592,29.23008],[96.26217,29.23684],[96.26171,29.24421],[96.24894,29.24875],[96.23912,29.24863],[96.22381,29.25569],[96.2175,29.26239],[96.21425,29.26406],[96.19658,29.26274],[96.18783,29.26681],[96.18252,29.27208],[96.1805,29.27997],[96.17402,29.28307],[96.16616,29.29456],[96.15004,29.29348],[96.14559,29.31157],[96.13943,29.3166],[96.14359,29.32906],[96.13749,29.3456],[96.12517,29.34953],[96.1156,29.35526],[96.10465,29.35919],[96.09165,29.36551],[96.08348,29.36523],[96.07052,29.37272],[96.06163,29.37482],[96.05755,29.38111],[96.05213,29.38352],[96.03718,29.37637],[96.0273,29.3686],[96.01742,29.36323],[96.00657,29.36748],[95.99572,29.36873],[95.98127,29.36146],[95.97766,29.36398],[95.97404,29.37189],[95.96613,29.37573],[95.95477,29.36726],[95.94203,29.36597],[95.93939,29.34978],[95.93073,29.34715],[95.92503,29.34255],[95.90559,29.33615],[95.88897,29.32851],[95.87632,29.31443],[95.86784,29.31798],[95.86151,29.31536],[95.85561,29.31704],[95.8497,29.31633],[95.84612,29.3194],[95.8398,29.32127],[95.83676,29.33398],[95.84334,29.34071],[95.83876,29.35207],[95.82857,29.35141],[95.8122,29.34715],[95.8051,29.3411],[95.79801,29.33805],[95.77969,29.32355],[95.75725,29.32222],[95.73755,29.29896],[95.74711,29.2901],[95.74881,29.28058],[95.75187,29.27585],[95.74241,29.26184],[95.73638,29.25561],[95.73584,29.25088],[95.73042,29.24043],[95.73114,29.23431],[95.73768,29.22675],[95.74354,29.22519],[95.73658,29.21766],[95.72756,29.21792],[95.71825,29.21416],[95.70994,29.20426],[95.70361,29.20484],[95.70552,29.21381],[95.69886,29.22397],[95.666,29.22418],[95.65757,29.21715],[95.64777,29.21012],[95.63831,29.21508],[95.63709,29.22244],[95.61818,29.23355],[95.60613,29.23507],[95.60352,29.23463],[95.5961,29.22519],[95.5972,29.21538],[95.59486,29.20737],[95.60351,29.19576],[95.60173,29.19181],[95.59651,29.18786],[95.58882,29.18775],[95.56396,29.19857],[95.56024,29.20641],[95.55152,29.20209],[95.54853,29.19603],[95.53249,29.19477],[95.52892,29.18896],[95.5068,29.19453],[95.50227,29.19196],[95.50001,29.18228],[95.50579,29.17791],[95.50677,29.16994],[95.51379,29.16521],[95.51256,29.15808],[95.51521,29.15362],[95.51305,29.14855],[95.51523,29.14272],[95.51055,29.13809],[95.5093,29.12566],[95.50386,29.12724],[95.48058,29.14142],[95.47461,29.14139],[95.46744,29.13461],[95.4589,29.13622],[95.45142,29.14635],[95.45356,29.15227],[95.44891,29.16112],[95.45456,29.16398],[95.45282,29.17029],[95.45382,29.1754],[95.44724,29.17992],[95.44616,29.18564],[95.43563,29.19294],[95.42688,29.18471],[95.4195,29.18128],[95.41968,29.16616],[95.41436,29.16363],[95.41574,29.14925],[95.40888,29.14387],[95.40991,29.13698],[95.41386,29.13173],[95.413,29.12589],[95.40476,29.12439],[95.39721,29.1247],[95.39515,29.1298],[95.39172,29.13491],[95.37939,29.13685],[95.3458,29.13413],[95.33905,29.13708],[95.32818,29.13553],[95.31182,29.13879],[95.30587,29.13839],[95.29992,29.1362],[95.29506,29.12798],[95.28539,29.12096],[95.27704,29.11593],[95.2829,29.11072],[95.27229,29.10432],[95.27179,29.08716],[95.2706,29.07301],[95.26169,29.06801],[95.25878,29.07616],[95.25999,29.08011],[95.25215,29.0829],[95.24308,29.08219],[95.23676,29.08569],[95.23012,29.10285],[95.21946,29.10498],[95.21016,29.10772],[95.18903,29.10068],[95.17889,29.10385],[95.16696,29.09884],[95.15914,29.09862],[95.1518,29.09046],[95.13691,29.0883],[95.13048,29.09238],[95.12998,29.09753],[95.12485,29.09945],[95.10908,29.09566],[95.10224,29.09668],[95.10096,29.10134],[95.11617,29.1084],[95.11901,29.11366],[95.11027,29.12208],[95.10085,29.1275],[95.09681,29.14198],[95.08925,29.14158],[95.07757,29.14529],[95.0652,29.14719],[95.05419,29.15359],[95.04301,29.15064],[95.02266,29.15816],[95.00574,29.16567],[95.00535,29.16756],[95.00155,29.16866],[94.99981,29.17215],[94.99427,29.17314],[94.98516,29.17409],[94.98833,29.17082],[94.99493,29.16935],[95.00119,29.16218],[95.01015,29.1541],[95.01464,29.14466],[95.01585,29.13245],[95.02255,29.12743],[95.01649,29.1267],[94.99944,29.13196],[94.99612,29.14113],[94.99212,29.14609],[94.96168,29.15996],[94.95192,29.15891],[94.94079,29.16087],[94.93316,29.15944],[94.92485,29.15622],[94.91675,29.15731],[94.90796,29.16139],[94.90754,29.16837],[94.89803,29.17437],[94.89195,29.17768],[94.879,29.17979],[94.86155,29.18042],[94.84931,29.1835],[94.83943,29.17833],[94.83366,29.17855],[94.82803,29.17282],[94.8224,29.17248],[94.80887,29.16435],[94.80427,29.16641],[94.79768,29.1859],[94.8003,29.20508],[94.80415,29.20808],[94.79342,29.21872],[94.77391,29.21659],[94.75197,29.23021],[94.74391,29.2445],[94.74891,29.25041],[94.74849,29.25677],[94.74465,29.26313],[94.73805,29.27098],[94.73627,29.27584],[94.7353,29.28629],[94.72401,29.29124],[94.71547,29.2914],[94.71005,29.3019],[94.69373,29.3181],[94.68266,29.31457],[94.67492,29.30844],[94.66717,29.30471],[94.65718,29.30624],[94.64406,29.29627],[94.62613,29.29587],[94.61845,29.28295],[94.60184,29.27542],[94.59554,29.27358],[94.5913,29.27173],[94.58212,29.26116],[94.57157,29.25598],[94.57145,29.2477],[94.56761,29.24026],[94.56034,29.23762],[94.55597,29.22884],[94.5516,29.22845],[94.54105,29.21907],[94.51549,29.22698],[94.5119,29.2313],[94.5053,29.22656],[94.50214,29.21584],[94.49306,29.20757],[94.47402,29.21009],[94.45773,29.21261],[94.45245,29.20646],[94.45335,29.19073],[94.44555,29.18083],[94.43946,29.18532],[94.42925,29.18741],[94.4181,29.17871],[94.40326,29.18305],[94.39184,29.18439],[94.38893,29.18093],[94.38534,29.16069],[94.38025,29.15469],[94.3731,29.1541],[94.36732,29.1514],[94.35536,29.15291],[94.34736,29.15113],[94.33901,29.15504],[94.3341,29.15476],[94.32462,29.153],[94.31857,29.15603],[94.30373,29.1522],[94.29369,29.15257],[94.29585,29.13444],[94.28978,29.12171],[94.27694,29.11245],[94.27405,29.10079],[94.27917,29.08873],[94.29733,29.08266],[94.31377,29.079],[94.3165,29.07147],[94.31374,29.06693],[94.3239,29.05648],[94.32823,29.03942],[94.34285,29.03557],[94.36115,29.03529],[94.36641,29.02601],[94.34319,29.00241],[94.32134,28.99322],[94.30855,28.99405],[94.30176,28.98332],[94.27983,28.96985],[94.27369,28.96719],[94.27485,28.95206],[94.26753,28.9463],[94.26656,28.93976],[94.26024,28.93077],[94.25323,28.929],[94.23206,28.92732],[94.2153,28.93313],[94.20678,28.93173],[94.19414,28.93513],[94.17876,28.93613],[94.16755,28.92761],[94.16596,28.91849],[94.17514,28.91107],[94.16001,28.90397],[94.14557,28.89808],[94.1325,28.88888],[94.11669,28.8893],[94.10173,28.88431],[94.08471,28.88172],[94.07883,28.88256],[94.07055,28.87648],[94.05746,28.87401],[94.05805,28.85885],[94.03863,28.85773],[94.02892,28.85326],[94.02265,28.84397],[94.01814,28.82609],[94.02079,28.79333],[94.01296,28.79401],[94.00355,28.79165],[93.99552,28.79109],[93.98494,28.79658],[93.98809,28.8069],[93.9786,28.81819],[93.97461,28.82046],[93.95756,28.80823],[93.94806,28.80321],[93.9396,28.78917],[93.92633,28.78356],[93.91169,28.77313],[93.9193,28.74535],[93.91487,28.74108],[93.90975,28.74104],[93.89683,28.7571],[93.86743,28.74547],[93.86069,28.74167],[93.85223,28.74659],[93.84102,28.74851],[93.82542,28.73987],[93.81051,28.74027],[93.80253,28.73459],[93.79181,28.73615],[93.78899,28.73619],[93.78686,28.72962],[93.78556,28.71434],[93.75543,28.69876],[93.74909,28.69276],[93.73383,28.68375],[93.72998,28.6803],[93.7275,28.67323],[93.71369,28.66496],[93.70606,28.66452],[93.6884,28.67759],[93.67135,28.66959],[93.65841,28.66821],[93.63734,28.65461],[93.62921,28.66483],[93.62795,28.68047],[93.62336,28.68766],[93.61397,28.6843],[93.60389,28.68456],[93.58454,28.67909],[93.52124,28.67423],[93.51099,28.66892],[93.49387,28.66962],[93.48431,28.67274],[93.4768,28.67406],[93.47182,28.67072],[93.45928,28.66919],[93.44777,28.66887],[93.43695,28.66433],[93.42733,28.66248],[93.4232,28.65762],[93.41477,28.65426],[93.39399,28.63945],[93.38195,28.63335],[93.30792,28.5931],[93.24831,28.54985],[93.1852,28.49461],[93.17394,28.47106],[93.16852,28.41974],[93.14864,28.37596],[93.14799,28.36661],[93.13859,28.36265],[93.11569,28.34436],[93.1,28.34019],[93.08569,28.32696],[93.0779,28.32483],[93.07423,28.32225],[93.0637,28.30638],[93.05912,28.30487],[93.05133,28.31029],[93.02776,28.29946],[93.00282,28.29408],[92.9954,28.27962],[92.99071,28.27363],[92.96066,28.26721],[92.95793,28.26354],[92.95177,28.26168],[92.947,28.26159],[92.93193,28.2491],[92.92749,28.22592],[92.93658,28.21825],[92.92987,28.20575],[92.91921,28.2001],[92.91162,28.20152],[92.88338,28.20193],[92.87578,28.19721],[92.86748,28.19008],[92.85502,28.18609],[92.84313,28.18115],[92.83434,28.17531],[92.82692,28.17491],[92.8145,28.17975],[92.80715,28.18059],[92.80393,28.18323],[92.79062,28.18853],[92.77773,28.18399],[92.76672,28.17673],[92.77139,28.17002],[92.76954,28.16453],[92.75898,28.16141],[92.7454,28.16122],[92.74109,28.15649],[92.7361,28.1554],[92.73128,28.16035],[92.72508,28.16168],[92.71681,28.16796],[92.71086,28.16547],[92.70285,28.15571],[92.69163,28.15011],[92.67744,28.15103],[92.66748,28.12505],[92.66301,28.09691],[92.65597,28.08497],[92.65799,28.07532],[92.66687,28.06809],[92.684,28.06813],[92.69324,28.06603],[92.70181,28.06818],[92.71382,28.06492],[92.73132,28.05439],[92.73131,28.04908],[92.73611,28.03953],[92.72615,28.01847],[92.7203,28.00044],[92.72372,27.98985],[92.73316,27.98641],[92.73161,27.97995],[92.70792,27.96337],[92.6983,27.96298],[92.69006,27.95197],[92.67632,27.94823],[92.67039,27.94124],[92.6645,27.93001],[92.65862,27.92545],[92.65328,27.91832],[92.64587,27.9118],[92.63656,27.91149],[92.62754,27.90965],[92.62202,27.91354],[92.60757,27.91682],[92.59443,27.91112],[92.59071,27.89991],[92.58081,27.88871],[92.58293,27.88114],[92.56857,27.88207],[92.56528,27.8768],[92.55513,27.87336],[92.54566,27.86597],[92.53344,27.86646],[92.53309,27.86057],[92.52998,27.85588],[92.51142,27.84712],[92.50037,27.85086],[92.49328,27.8429],[92.47589,27.83312],[92.47766,27.82793],[92.47227,27.82055],[92.46756,27.80954],[92.45702,27.80065],[92.45609,27.79358],[92.43761,27.80539],[92.42749,27.80197],[92.42312,27.80846],[92.42631,27.81494],[92.42272,27.82154],[92.42607,27.83121],[92.42462,27.83482],[92.41328,27.82891],[92.40598,27.81939],[92.39593,27.82019],[92.38387,27.81284],[92.37181,27.80915],[92.36353,27.80332],[92.35662,27.80478],[92.33858,27.79645],[92.31917,27.79783],[92.32017,27.81092],[92.31225,27.82279],[92.30605,27.82556],[92.29709,27.83318],[92.29878,27.84171],[92.30391,27.85146],[92.29591,27.86283],[92.2934,27.86994],[92.2842,27.87615],[92.27569,27.88296],[92.26896,27.88566],[92.25542,27.87846],[92.24463,27.8846],[92.24078,27.88525],[92.23107,27.8795],[92.22203,27.87313],[92.2129,27.87315],[92.21082,27.868],[92.21218,27.86225],[92.20117,27.85892],[92.18536,27.84466],[92.1743,27.84713],[92.16385,27.82839],[92.14173,27.83394],[92.13182,27.82621],[92.12893,27.81795],[92.10769,27.80232],[92.09965,27.79983],[92.0606,27.78802],[92.0577,27.77952],[92.04724,27.78135],[92.03634,27.77558],[92.01721,27.7771],[92.01053,27.78257],[92.00231,27.78106],[91.99409,27.78259],[91.98453,27.77805],[91.97771,27.77291],[91.97579,27.76217],[91.96701,27.75082],[91.96385,27.74088],[91.95181,27.73545],[91.94182,27.72881],[91.91978,27.71735],[91.90627,27.72907],[91.901,27.72986],[91.8942,27.72361],[91.87295,27.7223],[91.86818,27.73134],[91.86035,27.73512],[91.86076,27.74072],[91.85005,27.7607],[91.6453,27.76116],[91.64435,27.77029],[91.63941,27.77364],[91.63694,27.7899],[91.63447,27.80312],[91.62424,27.81377],[91.6099,27.82382],[91.60163,27.8227],[91.5985,27.81855],[91.58851,27.81865],[91.58157,27.81156],[91.57669,27.81115],[91.56937,27.81856],[91.56342,27.82961],[91.55357,27.84988],[91.5531,27.85461],[91.55836,27.85558],[91.57092,27.84778],[91.57509,27.86497],[91.58678,27.86093],[91.58954,27.85627],[91.59369,27.85606],[91.60205,27.86404],[91.61178,27.85745],[91.6206,27.86431],[91.62226,27.87533],[91.61897,27.88205],[91.62007,27.88511],[91.62543,27.88816],[91.62529,27.89181],[91.61829,27.89569],[91.60991,27.89472],[91.59589,27.90249],[91.5919,27.90711],[91.57564,27.90485],[91.56866,27.89686],[91.55481,27.89857],[91.5484,27.91898],[91.53763,27.92144],[91.53373,27.92389],[91.5273,27.92335],[91.51847,27.92917],[91.50963,27.93681],[91.50245,27.93948],[91.49526,27.9382],[91.48327,27.9442],[91.49128,27.96456],[91.48738,27.97353],[91.48415,27.97393],[91.48297,27.97978],[91.47445,27.97996],[91.4677,27.99609],[91.4638,27.99864],[91.46563,28.00555],[91.44693,28.01006],[91.43934,28.00255],[91.43452,28.00425],[91.43106,28.00838],[91.43098,28.017],[91.42105,28.01997],[91.41421,28.01779],[91.40427,28.02397],[91.39776,28.03137],[91.39229,28.02949],[91.38271,28.03185],[91.37243,28.04118],[91.36216,28.0487],[91.34196,28.04903],[91.34304,28.06148],[91.33834,28.06639],[91.33402,28.06666],[91.32833,28.06207],[91.32126,28.06294],[91.30939,28.06078],[91.29899,28.06668],[91.29645,28.06369],[91.29185,28.06435],[91.28678,28.06262],[91.27456,28.06644],[91.2673,28.0656],[91.26308,28.0718],[91.24755,28.06267],[91.246,28.05464],[91.24925,28.05024],[91.24529,28.04311],[91.23859,28.0378],[91.23788,28.02901],[91.23237,28.02869],[91.2265,28.02231],[91.21788,28.01774],[91.21508,27.99792],[91.21502,27.99204],[91.20845,27.98677],[91.20325,27.98635],[91.19068,27.98648],[91.16897,28.0013],[91.15953,27.99731],[91.14871,27.9897],[91.13256,27.99568],[91.12209,27.99442],[91.11367,27.99135],[91.10878,27.99421],[91.10663,27.99707],[91.10165,28.00037],[91.09476,27.99626],[91.0872,28.00179],[91.0762,28.00368],[91.07285,27.99977],[91.07358,27.99236],[91.06675,27.99223],[91.06271,27.99742],[91.05387,27.99958],[91.04939,28.0076],[91.04251,28.00555],[91.02877,28.01623],[91.02326,28.02486],[91.01535,28.02327],[91.00402,28.02168],[90.99782,28.02213],[90.99093,28.01699],[90.98813,28.00548],[90.97846,28.00064],[90.97154,28.00429],[90.96995,28.00918],[90.96472,28.00806],[90.95798,28.01462],[90.95261,28.01754],[90.94463,28.02763],[90.94702,28.03343],[90.92985,28.04166],[90.92778,28.04443],[90.91836,28.03775],[90.92061,28.03288],[90.91256,28.02741],[90.90658,28.02558],[90.90113,28.02918],[90.89293,28.02854],[90.89928,28.0363],[90.88957,28.0429],[90.87301,28.04526],[90.86322,28.05179],[90.8529,28.0537],[90.85315,28.04631],[90.83577,28.04836],[90.82885,28.04403],[90.82298,28.04247],[90.8173,28.04745],[90.81378,28.0466],[90.80682,28.04939],[90.802,28.0496],[90.79718,28.04617],[90.79303,28.04839],[90.78821,28.0436],[90.77996,28.04123],[90.77411,28.04885],[90.77375,28.05163],[90.76301,28.04757],[90.74299,28.05383],[90.72709,28.0625],[90.72412,28.06896],[90.7078,28.07022],[90.70286,28.07235],[90.69929,28.07934],[90.69079,28.08057],[90.68425,28.07724],[90.67634,28.06785],[90.67081,28.06725],[90.6689,28.06179],[90.66151,28.05634],[90.65426,28.05755],[90.63559,28.04665],[90.62585,28.04666],[90.61611,28.04788],[90.59971,28.03304],[90.58468,28.02185],[90.58089,28.0256],[90.58052,28.03056],[90.57569,28.02977],[90.57223,28.03261],[90.57032,28.04],[90.56361,28.04679],[90.55223,28.05126],[90.54886,28.0507],[90.53107,28.05498],[90.52571,28.05991],[90.50673,28.06614],[90.49402,28.05904],[90.48268,28.05074],[90.46997,28.04819],[90.4552,28.04746],[90.4483,28.05159],[90.44416,28.06183],[90.44208,28.06419],[90.44549,28.06959],[90.44789,28.07955],[90.45165,28.08649],[90.47153,28.08698],[90.48385,28.09815],[90.50029,28.1075],[90.49545,28.11897],[90.4865,28.12834],[90.48442,28.13468],[90.49254,28.13843],[90.5034,28.14218],[90.50865,28.14908],[90.54698,28.15737],[90.5579,28.17755],[90.56782,28.18946],[90.57432,28.20077],[90.60206,28.20779],[90.60647,28.22086],[90.61389,28.22764],[90.60698,28.23171],[90.6035,28.2376],[90.5983,28.23501],[90.59311,28.23424],[90.58357,28.24041],[90.57404,28.24477],[90.53614,28.24756],[90.52983,28.25155],[90.50504,28.25082],[90.48026,28.25554],[90.46982,28.27284],[90.45664,28.28046],[90.44415,28.2905],[90.43359,28.29426],[90.42195,28.28884],[90.41032,28.27557],[90.39868,28.28013],[90.38911,28.2859],[90.38254,28.28676],[90.38146,28.29245],[90.38274,28.30626],[90.37903,28.30825],[90.37222,28.30662],[90.35585,28.30548],[90.34854,28.305],[90.34282,28.29981],[90.33643,28.27527],[90.33277,28.26585],[90.32336,28.26376],[90.31179,28.26573],[90.30091,28.27013],[90.28772,28.27197],[90.28003,28.27925],[90.26876,28.2793],[90.26004,28.28537],[90.25681,28.29145],[90.26667,28.33034],[90.25665,28.33842],[90.25371,28.34638],[90.24664,28.35374],[90.23768,28.35793],[90.22461,28.36091],[90.21287,28.35962],[90.18913,28.34103],[90.18697,28.33079],[90.18206,28.31994],[90.17475,28.31907],[90.16057,28.31397],[90.15266,28.31673],[90.14956,28.3222],[90.13614,28.33376],[90.12049,28.33579],[90.11102,28.34085],[90.10588,28.3407],[90.0925,28.32966],[90.08566,28.33358],[90.07161,28.33478],[90.05978,28.34505],[90.05551,28.34626],[90.04489,28.34247],[90.03633,28.34171],[90.00855,28.33641],[89.999999,28.33293]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:BY:**China, west of 90º E#9N:**Nepal","itu_zone_number":42,"itu_zone_name_loc":[39,82.5]},"geometry":{"type":"Polygon","coordinates":[[[89.999999,28.33293],[89.98701,28.33257],[89.98226,28.31379],[89.94074,28.31527],[89.93013,28.31827],[89.9176,28.31795],[89.90439,28.31188],[89.89719,28.30942],[89.89239,28.31417],[89.88039,28.3109],[89.87405,28.31335],[89.86839,28.31338],[89.85878,28.30799],[89.83956,28.28869],[89.82997,28.28214],[89.82748,28.25891],[89.82294,28.24959],[89.82038,28.24122],[89.81438,28.23893],[89.80563,28.23785],[89.79775,28.24657],[89.79229,28.24647],[89.79131,28.23917],[89.78691,28.22944],[89.7781,28.22814],[89.77306,28.22381],[89.76803,28.2219],[89.77239,28.21824],[89.77539,28.21096],[89.78103,28.21091],[89.78339,28.20779],[89.77583,28.19638],[89.76964,28.19344],[89.7655,28.18697],[89.76545,28.18309],[89.75528,28.18617],[89.74786,28.19077],[89.74559,28.18901],[89.74194,28.19027],[89.72907,28.17552],[89.71894,28.17166],[89.71397,28.17725],[89.68917,28.18156],[89.68291,28.18466],[89.67532,28.18156],[89.66978,28.17059],[89.66116,28.17142],[89.65871,28.16801],[89.64593,28.16968],[89.64138,28.17376],[89.62431,28.16521],[89.61959,28.16816],[89.60972,28.16808],[89.59642,28.16377],[89.59515,28.15287],[89.59005,28.1453],[89.58289,28.14015],[89.56936,28.11956],[89.5602,28.12165],[89.55052,28.11665],[89.5532,28.1053],[89.54879,28.1034],[89.543,28.09727],[89.53521,28.08925],[89.52495,28.09016],[89.51022,28.0947],[89.50531,28.08677],[89.50556,28.08126],[89.49781,28.07449],[89.49384,28.06892],[89.48506,28.06215],[89.48503,28.05795],[89.47608,28.05011],[89.47452,28.04498],[89.46816,28.04167],[89.46498,28.03698],[89.45973,28.03533],[89.46024,28.0308],[89.47129,28.02316],[89.46862,28.01431],[89.45771,28.01122],[89.4516,28.00692],[89.45478,27.99724],[89.45041,27.98816],[89.45198,27.97486],[89.43931,27.96464],[89.43927,27.95549],[89.43375,27.95058],[89.43371,27.94719],[89.41995,27.94441],[89.41507,27.93596],[89.4102,27.93358],[89.41456,27.92557],[89.4061,27.92248],[89.39901,27.91877],[89.39862,27.90988],[89.39412,27.90585],[89.38956,27.89141],[89.37565,27.88376],[89.36843,27.87151],[89.36016,27.87188],[89.34932,27.86538],[89.33779,27.86252],[89.32949,27.85437],[89.31192,27.85442],[89.30877,27.85751],[89.30518,27.85393],[89.29815,27.85338],[89.29301,27.84835],[89.28788,27.83997],[89.28137,27.83827],[89.27419,27.82881],[89.26563,27.82845],[89.26635,27.8224],[89.26843,27.81271],[89.25712,27.8071],[89.24512,27.80271],[89.23947,27.80348],[89.2345,27.80243],[89.2349,27.79318],[89.23221,27.78849],[89.23096,27.78396],[89.225,27.78341],[89.22518,27.77576],[89.22159,27.77207],[89.22263,27.76468],[89.21991,27.7584],[89.22266,27.75695],[89.22679,27.74639],[89.22061,27.74167],[89.222,27.738],[89.22887,27.73291],[89.2196,27.72356],[89.20725,27.72059],[89.20519,27.72187],[89.19697,27.72094],[89.19219,27.70213],[89.18363,27.69365],[89.18435,27.68851],[89.17751,27.68155],[89.18272,27.67432],[89.17419,27.67317],[89.17077,27.66722],[89.16392,27.66553],[89.15604,27.65684],[89.15159,27.65545],[89.14066,27.64807],[89.14209,27.6419],[89.13391,27.63939],[89.12923,27.63259],[89.13279,27.62944],[89.12983,27.62142],[89.12893,27.61522],[89.12337,27.61509],[89.11782,27.61983],[89.1126,27.6194],[89.10739,27.62383],[89.10073,27.62296],[89.09683,27.62574],[89.07872,27.62175],[89.07194,27.61746],[89.06112,27.61405],[89.05854,27.60912],[89.05116,27.60723],[89.04125,27.59753],[89.03786,27.58906],[89.03451,27.57819],[89.02391,27.57595],[89.014,27.57432],[89.00721,27.56985],[89.00284,27.5602],[88.99846,27.55542],[89.00575,27.5552],[89.00481,27.54951],[88.9983,27.5459],[88.99746,27.54044],[88.99386,27.53681],[88.98361,27.5296],[88.97888,27.52917],[88.97562,27.52587],[88.97544,27.51954],[88.97183,27.51442],[88.97834,27.50856],[88.98691,27.49174],[88.97521,27.48489],[88.96557,27.47348],[88.96721,27.46004],[88.96136,27.45188],[88.95551,27.43702],[88.9644,27.42437],[88.96295,27.41707],[88.94987,27.41372],[88.96324,27.40565],[88.96607,27.39952],[88.97027,27.39887],[88.97516,27.38603],[88.98035,27.36285],[88.97745,27.35674],[88.98767,27.35156],[88.98937,27.34721],[88.99656,27.34652],[89.00135,27.3376],[89.00477,27.32624],[88.98162,27.31592],[88.97289,27.3056],[88.96139,27.31058],[88.95297,27.32044],[88.93752,27.33771],[88.9267,27.33506],[88.92618,27.32997],[88.9224,27.32773],[88.91758,27.33127],[88.90567,27.32894],[88.90097,27.333],[88.895,27.3326],[88.89267,27.33849],[88.88252,27.3454],[88.88488,27.35008],[88.88205,27.35272],[88.8805,27.36105],[88.87294,27.36316],[88.86195,27.37015],[88.86332,27.37924],[88.86126,27.38645],[88.84598,27.3848],[88.83853,27.37899],[88.8304,27.38964],[88.82168,27.39205],[88.81984,27.40085],[88.82143,27.40479],[88.80806,27.40443],[88.80602,27.40803],[88.80743,27.41036],[88.80477,27.41563],[88.80769,27.42434],[88.80185,27.42237],[88.79927,27.42748],[88.79601,27.42772],[88.79051,27.4378],[88.79428,27.43935],[88.79325,27.44699],[88.78947,27.44765],[88.78621,27.45255],[88.78295,27.4544],[88.78294,27.45877],[88.77607,27.47055],[88.78292,27.47523],[88.7802,27.48207],[88.78434,27.48465],[88.78402,27.49971],[88.78645,27.50381],[88.78667,27.50957],[88.79032,27.51472],[88.78801,27.52107],[88.79395,27.52498],[88.79295,27.53148],[88.78269,27.52976],[88.77792,27.5317],[88.77387,27.53923],[88.77254,27.55699],[88.76296,27.56685],[88.76969,27.57122],[88.78123,27.57012],[88.7859,27.57388],[88.79263,27.5746],[88.78866,27.58601],[88.80475,27.59544],[88.80847,27.60244],[88.80662,27.60875],[88.80992,27.61903],[88.80394,27.62443],[88.81121,27.63734],[88.81572,27.64842],[88.82407,27.64443],[88.83122,27.64702],[88.84922,27.66747],[88.84799,27.67575],[88.84141,27.68351],[88.84788,27.69309],[88.84744,27.69697],[88.84357,27.70267],[88.83789,27.70555],[88.83958,27.71194],[88.85669,27.71681],[88.8587,27.73809],[88.86757,27.74357],[88.86185,27.75393],[88.85682,27.75335],[88.85467,27.76924],[88.85595,27.77357],[88.85483,27.77913],[88.8592,27.79075],[88.86089,27.80446],[88.8574,27.80576],[88.85866,27.81687],[88.87503,27.82828],[88.87978,27.82974],[88.88316,27.83544],[88.88013,27.84094],[88.88122,27.85128],[88.8889,27.8568],[88.88101,27.86728],[88.87792,27.88261],[88.88137,27.89142],[88.87074,27.90114],[88.86921,27.91875],[88.8602,27.92725],[88.84745,27.92603],[88.83471,27.93028],[88.83812,27.94606],[88.84223,27.94788],[88.84376,27.9538],[88.83981,27.96942],[88.84219,27.97519],[88.84078,27.98247],[88.84281,27.98552],[88.83758,28.0007],[88.8358,28.0165],[88.8293,28.01763],[88.82075,28.0224],[88.81494,28.02112],[88.80433,28.03074],[88.79683,28.04149],[88.79343,28.04384],[88.79208,28.04922],[88.78765,28.04998],[88.78321,28.05376],[88.7764,28.05467],[88.75523,28.08073],[88.74292,28.07575],[88.72992,28.07259],[88.71502,28.07843],[88.69778,28.0765],[88.69255,28.07882],[88.68265,28.07838],[88.67873,28.0724],[88.6675,28.07531],[88.66451,28.08731],[88.6443,28.1027],[88.64058,28.11567],[88.63381,28.12343],[88.6275,28.11625],[88.61638,28.11271],[88.60857,28.10804],[88.60118,28.08962],[88.59481,28.09059],[88.58914,28.08731],[88.58705,28.08451],[88.57741,28.08492],[88.56916,28.09139],[88.56431,28.0898],[88.56218,28.08631],[88.55525,28.08221],[88.55491,28.07838],[88.55732,28.07454],[88.55423,28.06692],[88.5539,28.05627],[88.54979,28.0483],[88.55324,28.03881],[88.54642,28.03358],[88.53497,28.03368],[88.52832,28.03803],[88.52396,28.03581],[88.51935,28.0429],[88.51116,28.04282],[88.5025,28.05099],[88.49522,28.05493],[88.49164,28.04752],[88.48531,28.04436],[88.47541,28.03621],[88.47443,28.02716],[88.46796,28.01749],[88.45547,28.01435],[88.4375,28.00878],[88.43023,28.00736],[88.42365,28.00169],[88.41666,27.99946],[88.4135,27.99059],[88.41377,27.98051],[88.40189,27.98062],[88.39001,27.97649],[88.38259,27.98448],[88.37723,27.98884],[88.35626,27.98846],[88.33461,27.98322],[88.3315,27.97616],[88.32289,27.98002],[88.31532,27.97807],[88.31393,27.97248],[88.3029,27.96495],[88.29322,27.96686],[88.28415,27.96523],[88.28017,27.95466],[88.27138,27.9544],[88.26891,27.95753],[88.26396,27.95529],[88.25935,27.94653],[88.25063,27.9414],[88.23799,27.96937],[88.23127,27.96815],[88.22317,27.96147],[88.21317,27.96388],[88.20593,27.96129],[88.20694,27.94051],[88.19586,27.94297],[88.18753,27.9424],[88.17851,27.94972],[88.17327,27.95036],[88.16185,27.95782],[88.15351,27.95862],[88.1493,27.96275],[88.14166,27.96506],[88.13529,27.95364],[88.1303,27.9495],[88.13458,27.94567],[88.13611,27.93698],[88.13104,27.93287],[88.12941,27.92511],[88.12133,27.92355],[88.11752,27.9168],[88.12434,27.90419],[88.13871,27.88977],[88.13576,27.88122],[88.14087,27.87729],[88.14391,27.87883],[88.14904,27.87702],[88.15554,27.87035],[88.16119,27.8696],[88.17989,27.85609],[88.19737,27.8558],[88.1956,27.8492],[88.19917,27.84439],[88.19931,27.83957],[88.18895,27.82842],[88.18203,27.82395],[88.17286,27.82185],[88.17237,27.81947],[88.18128,27.81052],[88.18882,27.79974],[88.19635,27.79018],[88.19051,27.78297],[88.1826,27.77576],[88.18121,27.76757],[88.17776,27.75695],[88.17841,27.74663],[88.16976,27.74394],[88.1563,27.74185],[88.1531,27.71555],[88.14755,27.70969],[88.14613,27.70383],[88.15071,27.69897],[88.15082,27.69259],[88.14544,27.68134],[88.14499,27.66614],[88.13938,27.66112],[88.12485,27.65246],[88.1205,27.64425],[88.11799,27.62449],[88.10849,27.6061],[88.10449,27.60109],[88.09446,27.59917],[88.08855,27.59421],[88.07742,27.57393],[88.07967,27.56309],[88.07781,27.56017],[88.06994,27.55633],[88.0684,27.54985],[88.05932,27.5391],[88.06074,27.51742],[88.05544,27.50864],[88.04567,27.49804],[88.04353,27.48604],[88.04552,27.47708],[88.0641,27.46258],[88.06824,27.45076],[88.07375,27.44626],[88.06411,27.42796],[88.05104,27.41089],[88.04447,27.37828],[88.04771,27.36868],[88.0713,27.34375],[88.07842,27.33408],[88.07803,27.32647],[88.05725,27.31369],[88.04549,27.30059],[88.03441,27.28444],[88.03199,27.26132],[88.02708,27.24638],[88.01861,27.23555],[88.01289,27.22044],[88.00993,27.19634],[88.01211,27.16583],[88.01086,27.15182],[87.99704,27.12745],[87.99283,27.11347],[87.99595,27.103],[88.01502,27.09074],[88.01898,27.08642],[88.0314,27.05263],[88.04619,27.042],[88.05618,27.03994],[88.07272,27.03153],[88.08108,27.02418],[88.08969,27.00453],[88.10037,27.0017],[88.10776,26.99463],[88.11585,26.98756],[88.12805,26.98813],[88.13407,26.98503],[88.12333,26.96822],[88.12083,26.94956],[88.13584,26.93539],[88.14466,26.92122],[88.14481,26.91216],[88.13755,26.89895],[88.14746,26.88911],[88.15997,26.88297],[88.1645,26.87653],[88.16506,26.87086],[88.16774,26.86802],[88.17179,26.86886],[88.17375,26.85287],[88.16752,26.8507],[88.16974,26.84403],[88.16853,26.83798],[88.17324,26.83342],[88.17109,26.82641],[88.1789,26.81511],[88.1773,26.80394],[88.18068,26.79609],[88.18132,26.7858],[88.18807,26.77255],[88.18659,26.74725],[88.18099,26.7195],[88.16635,26.70016],[88.16797,26.68358],[88.16519,26.67201],[88.1638,26.66316],[88.16242,26.64572],[88.1555,26.63241],[88.14028,26.62542],[88.13869,26.61146],[88.13001,26.60317],[88.12916,26.57644],[88.11458,26.56936],[88.10602,26.55151],[88.1095,26.54408],[88.09586,26.53535],[88.10694,26.52662],[88.09468,26.51052],[88.10061,26.50364],[88.09968,26.48938],[88.10605,26.48914],[88.10543,26.47956],[88.09796,26.4792],[88.10146,26.46409],[88.08883,26.46282],[88.0968,26.44925],[88.09077,26.4258],[88.07539,26.41899],[88.05313,26.40234],[88.02785,26.3838],[88.03085,26.36516],[88.00698,26.36151],[88.00053,26.36614],[87.99535,26.36442],[87.99154,26.37007],[87.99216,26.38015],[87.97222,26.39257],[87.96087,26.39693],[87.94952,26.39945],[87.93919,26.41372],[87.92407,26.42516],[87.92611,26.44521],[87.92231,26.44808],[87.90849,26.44557],[87.9029,26.4486],[87.89723,26.46633],[87.88931,26.47351],[87.86583,26.46063],[87.85721,26.45387],[87.84722,26.43973],[87.83617,26.43913],[87.81737,26.44932],[87.80471,26.45872],[87.79067,26.4589],[87.77564,26.45003],[87.77374,26.42461],[87.77047,26.41271],[87.76752,26.40776],[87.76114,26.40773],[87.74494,26.41443],[87.7356,26.41252],[87.72627,26.41431],[87.72236,26.42187],[87.71639,26.42636],[87.70858,26.4255],[87.69596,26.43017],[87.68379,26.42404],[87.67771,26.41759],[87.67506,26.41114],[87.66652,26.40379],[87.64875,26.39955],[87.64273,26.39229],[87.63173,26.39008],[87.60906,26.38664],[87.60459,26.38117],[87.59256,26.37878],[87.58567,26.38261],[87.58081,26.39027],[87.53128,26.41788],[87.49724,26.43123],[87.4838,26.43596],[87.46448,26.43498],[87.44167,26.43147],[87.40375,26.42057],[87.36857,26.40291],[87.3595,26.38833],[87.35064,26.35736],[87.34255,26.35017],[87.32939,26.34772],[87.31897,26.35205],[87.30981,26.36346],[87.29697,26.37028],[87.27281,26.3725],[87.2665,26.37963],[87.25911,26.40386],[87.24589,26.41209],[87.23953,26.41356],[87.22905,26.41088],[87.21995,26.40574],[87.20998,26.40591],[87.20588,26.40935],[87.19972,26.41095],[87.18466,26.40246],[87.17032,26.40024],[87.15194,26.39887],[87.13322,26.4135],[87.11999,26.42874],[87.11366,26.43184],[87.10294,26.44231],[87.09566,26.45216],[87.08369,26.48665],[87.06869,26.55255],[87.06947,26.58004],[87.06682,26.58666],[87.06076,26.58852],[87.0499,26.5867],[87.03365,26.57199],[87.0046,26.53398],[86.99094,26.52619],[86.96628,26.52453],[86.94856,26.53044],[86.9402,26.52653],[86.93321,26.51954],[86.93089,26.51354],[86.9169,26.51091],[86.90154,26.50244],[86.89485,26.48796],[86.89108,26.47191],[86.82104,26.43673],[86.79877,26.44697],[86.7765,26.45106],[86.76079,26.44942],[86.74543,26.42379],[86.73694,26.41968],[86.73128,26.41976],[86.72561,26.42169],[86.69627,26.4398],[86.68341,26.4493],[86.65991,26.45603],[86.6419,26.4646],[86.61669,26.48437],[86.5908,26.48999],[86.57374,26.49283],[86.55703,26.50345],[86.54032,26.52452],[86.52681,26.53224],[86.48881,26.53847],[86.47072,26.54869],[86.43957,26.5583],[86.42456,26.56269],[86.40985,26.56795],[86.40112,26.57703],[86.3917,26.58242],[86.37945,26.58799],[86.35553,26.58926],[86.3324,26.58443],[86.32804,26.58767],[86.33466,26.60687],[86.33166,26.61256],[86.3268,26.61395],[86.30477,26.61351],[86.29029,26.61429],[86.27581,26.612],[86.2488,26.60224],[86.22086,26.587],[86.20654,26.58539],[86.19881,26.58977],[86.1897,26.60644],[86.18523,26.60845],[86.16222,26.60725],[86.14127,26.60236],[86.13505,26.6049],[86.12745,26.61634],[86.11782,26.61869],[86.11368,26.61551],[86.10472,26.61805],[86.07927,26.6433],[86.06861,26.6524],[86.04696,26.66149],[86.02907,26.66312],[86.00336,26.65031],[85.9962,26.64855],[85.96998,26.64832],[85.96265,26.64656],[85.94489,26.61818],[85.92095,26.60822],[85.90608,26.59985],[85.89727,26.59107],[85.89533,26.59026],[85.87795,26.58152],[85.86929,26.57447],[85.85471,26.5702],[85.84971,26.5728],[85.84677,26.57601],[85.84227,26.58735],[85.84493,26.59284],[85.84142,26.60324],[85.83653,26.6075],[85.83071,26.60919],[85.81166,26.60075],[85.80842,26.60151],[85.78458,26.62316],[85.76781,26.6321],[85.75104,26.6435],[85.73054,26.66629],[85.72394,26.70452],[85.72764,26.73477],[85.73231,26.78577],[85.7279,26.8001],[85.70898,26.81737],[85.6832,26.8328],[85.66859,26.83646],[85.65888,26.84319],[85.64918,26.84747],[85.63938,26.86062],[85.63026,26.86826],[85.62182,26.86606],[85.60857,26.86019],[85.59991,26.85395],[85.58948,26.84944],[85.57067,26.84594],[85.50729,26.81351],[85.47943,26.80196],[85.46735,26.79838],[85.45994,26.79107],[85.45253,26.78683],[85.44605,26.78549],[85.42997,26.7909],[85.42148,26.79589],[85.41207,26.79484],[85.39184,26.77754],[85.3807,26.76246],[85.37001,26.75455],[85.35197,26.75029],[85.34628,26.74664],[85.34002,26.73757],[85.33496,26.7345],[85.30999,26.73941],[85.29575,26.74554],[85.27413,26.74984],[85.21065,26.76763],[85.19993,26.77384],[85.19333,26.78373],[85.18743,26.79301],[85.18426,26.80351],[85.18745,26.81777],[85.19339,26.83141],[85.19633,26.84951],[85.18849,26.86517],[85.17165,26.87023],[85.14004,26.87222],[85.10156,26.86763],[85.09122,26.86182],[85.07814,26.85049],[85.05991,26.84728],[85.04167,26.84713],[85.03611,26.8499],[85.03432,26.85611],[85.04695,26.87702],[85.04062,26.88639],[85.00858,26.88934],[84.97447,26.90118],[84.96832,26.90878],[84.96628,26.92066],[84.96751,26.93331],[84.96668,26.94596],[84.94833,26.96205],[84.92723,26.96925],[84.89395,26.97326],[84.87928,26.98306],[84.85431,26.99591],[84.84857,27.01091],[84.84351,27.0149],[84.81367,27.01983],[84.80322,27.01581],[84.79971,27.00707],[84.79484,27.00262],[84.78876,27.00382],[84.78061,27.01175],[84.76938,27.01265],[84.75965,27.00698],[84.7506,27.00743],[84.70328,27.02233],[84.68785,27.031],[84.66263,27.03656],[84.64977,27.04212],[84.6451,27.04999],[84.64386,27.05908],[84.65326,27.08254],[84.66335,27.09927],[84.67968,27.13135],[84.68201,27.14296],[84.67816,27.16801],[84.68693,27.19795],[84.68011,27.23433],[84.65816,27.2684],[84.65269,27.29391],[84.63234,27.31573],[84.60925,27.33632],[84.59695,27.34086],[84.58464,27.34356],[84.56346,27.3441],[84.50108,27.35652],[84.46303,27.35969],[84.44282,27.36895],[84.39583,27.36819],[84.33285,27.37726],[84.29871,27.38755],[84.28234,27.40352],[84.27484,27.42796],[84.26148,27.44505],[84.2548,27.44994],[84.24262,27.45483],[84.23505,27.45247],[84.22268,27.44218],[84.2182,27.44042],[84.21166,27.4411],[84.2061,27.44625],[84.20632,27.45781],[84.20106,27.4712],[84.1897,27.47836],[84.17628,27.48125],[84.15445,27.48962],[84.14635,27.49738],[84.14512,27.50355],[84.14732,27.51215],[84.14417,27.52387],[84.1268,27.518],[84.106,27.51761],[84.09927,27.51616],[84.09598,27.51288],[84.09437,27.50234],[84.08829,27.49455],[84.06242,27.47895],[84.06063,27.46537],[84.05542,27.45422],[84.04018,27.44412],[84.00778,27.44345],[83.983,27.4483],[83.96714,27.45254],[83.95868,27.45153],[83.95273,27.44797],[83.93923,27.44686],[83.93329,27.44788],[83.92347,27.45114],[83.89285,27.44182],[83.86738,27.4386],[83.84709,27.44094],[83.83866,27.43937],[83.83436,27.43476],[83.83439,27.42833],[83.83786,27.41947],[83.85853,27.39382],[83.86989,27.38328],[83.87851,27.36847],[83.87721,27.36203],[83.87264,27.35657],[83.86602,27.35294],[83.8538,27.35331],[83.8358,27.36534],[83.81169,27.37806],[83.78759,27.38835],[83.74916,27.408],[83.69769,27.42704],[83.65037,27.45232],[83.60785,27.46846],[83.52444,27.47346],[83.44207,27.47023],[83.4208,27.47309],[83.39473,27.47839],[83.38659,27.47286],[83.38325,27.45818],[83.37692,27.44345],[83.37848,27.43573],[83.38211,27.42801],[83.39097,27.42402],[83.3964,27.41698],[83.3973,27.41296],[83.38721,27.39218],[83.3737,27.372],[83.34734,27.34537],[83.33745,27.33874],[83.32069,27.33578],[83.29198,27.33687],[83.27095,27.34576],[83.25636,27.38606],[83.23786,27.40124],[83.21181,27.4146],[83.20086,27.42643],[83.18443,27.44679],[83.16247,27.44951],[83.11649,27.44856],[83.03963,27.4479],[82.96899,27.4612],[82.9474,27.46861],[82.93455,27.48572],[82.92513,27.49429],[82.91368,27.49683],[82.89388,27.4911],[82.87408,27.49084],[82.82813,27.49658],[82.78217,27.49927],[82.76522,27.50211],[82.75011,27.54056],[82.74187,27.55604],[82.7453,27.57138],[82.74736,27.58429],[82.73637,27.60342],[82.73156,27.61646],[82.73448,27.63162],[82.73121,27.64253],[82.72126,27.65462],[82.72246,27.68164],[82.71061,27.70502],[82.69996,27.71103],[82.6916,27.70664],[82.68118,27.70347],[82.66515,27.70685],[82.65163,27.70692],[82.59279,27.68905],[82.55719,27.68346],[82.53258,27.68517],[82.4897,27.6743],[82.47135,27.6719],[82.45026,27.67194],[82.43111,27.67634],[82.40046,27.69483],[82.38595,27.71454],[82.35555,27.74363],[82.34077,27.74749],[82.32154,27.74922],[82.30222,27.76142],[82.27741,27.77909],[82.22986,27.81897],[82.19879,27.83759],[82.17046,27.85743],[82.14917,27.86462],[82.12238,27.86365],[82.11277,27.86755],[82.10469,27.87732],[82.09799,27.89315],[82.08184,27.90722],[82.06998,27.91302],[82.04439,27.91882],[82.00144,27.92252],[81.97859,27.91832],[81.95677,27.90563],[81.93441,27.8851],[81.91138,27.85543],[81.89796,27.85246],[81.88214,27.85557],[81.86111,27.86835],[81.82188,27.89326],[81.78188,27.90911],[81.71442,27.96712],[81.69789,27.97624],[81.68034,27.98081],[81.66862,27.98114],[81.64457,27.98525],[81.63356,27.98814],[81.62187,27.99624],[81.61567,28.00859],[81.60466,28.02117],[81.55553,28.04314],[81.50503,28.06814],[81.47801,28.08117],[81.47228,28.08875],[81.47036,28.09792],[81.47325,28.11193],[81.47078,28.12421],[81.45049,28.13391],[81.43913,28.15602],[81.42246,28.16632],[81.40442,28.17117],[81.38413,28.17421],[81.37387,28.16683],[81.3739,28.1595],[81.37048,28.14613],[81.36439,28.13863],[81.34104,28.13195],[81.31975,28.13012],[81.31643,28.13437],[81.31724,28.13863],[81.3213,28.14273],[81.32331,28.14804],[81.31771,28.15019],[81.31211,28.1493],[81.30433,28.1528],[81.2993,28.1569],[81.29816,28.16207],[81.30138,28.16758],[81.31605,28.17042],[81.32092,28.17219],[81.31477,28.18185],[81.31069,28.18848],[81.31219,28.19505],[81.2788,28.22655],[81.24953,28.25443],[81.23631,28.2754],[81.22703,28.31171],[81.21227,28.34802],[81.20093,28.36015],[81.1896,28.36927],[81.13097,28.38457],[81.07304,28.39686],[81.05639,28.40166],[81.04662,28.40646],[81.03806,28.4064],[81.03224,28.40211],[81.02368,28.40265],[81.01346,28.40723],[81.01475,28.42176],[81.01466,28.43507],[81.00803,28.44244],[80.99728,28.44135],[80.98258,28.43544],[80.97681,28.43676],[80.97169,28.43867],[80.96932,28.443],[80.96389,28.44501],[80.95331,28.44037],[80.94205,28.43936],[80.90084,28.46274],[80.89887,28.46896],[80.902,28.48565],[80.89861,28.49842],[80.89329,28.50633],[80.87423,28.50791],[80.85655,28.50044],[80.84432,28.50062],[80.83277,28.50443],[80.77878,28.53617],[80.75663,28.56949],[80.74659,28.57349],[80.71663,28.57447],[80.70204,28.57944],[80.69361,28.58602],[80.68998,28.59259],[80.68959,28.60635],[80.68538,28.60914],[80.67504,28.61461],[80.66676,28.62128],[80.66603,28.62825],[80.66255,28.63282],[80.64486,28.63565],[80.62305,28.63668],[80.60757,28.64175],[80.58075,28.6567],[80.57884,28.66471],[80.58304,28.67654],[80.58242,28.68235],[80.57654,28.68571],[80.56566,28.68261],[80.55753,28.68101],[80.54882,28.68505],[80.53963,28.68529],[80.50768,28.66376],[80.50437,28.65232],[80.52166,28.57941],[80.51573,28.5668],[80.50799,28.56691],[80.47207,28.58945],[80.46343,28.61158],[80.45514,28.62046],[80.43586,28.63189],[80.41795,28.63369],[80.40102,28.62733],[80.37791,28.62338],[80.36224,28.62693],[80.35278,28.63352],[80.34444,28.64601],[80.33473,28.66513],[80.31237,28.69821],[80.29819,28.70496],[80.27508,28.70991],[80.26216,28.71859],[80.25408,28.74519],[80.24391,28.75162],[80.20352,28.75263],[80.18696,28.75855],[80.17528,28.76464],[80.16155,28.77855],[80.15468,28.78952],[80.13064,28.81568],[80.09819,28.82372],[80.06814,28.82484],[80.06007,28.82897],[80.05543,28.83671],[80.0592,28.86206],[80.05491,28.87425],[80.05336,28.88644],[80.05182,28.90133],[80.05439,28.91563],[80.0616,28.93339],[80.06881,28.94875],[80.08837,28.96258],[80.11893,28.97671],[80.12217,28.97959],[80.12815,28.99027],[80.13292,29.00292],[80.12946,29.01383],[80.12188,29.02233],[80.12047,29.03154],[80.13107,29.05305],[80.13911,29.0638],[80.1451,29.07876],[80.14866,29.10042],[80.14673,29.10828],[80.15819,29.11867],[80.17239,29.12607],[80.18398,29.12977],[80.19775,29.12877],[80.20773,29.12467],[80.22045,29.12297],[80.23165,29.12751],[80.2408,29.1357],[80.25682,29.14388],[80.26002,29.14886],[80.25581,29.15703],[80.24959,29.16292],[80.2468,29.1688],[80.24457,29.18875],[80.23718,29.2036],[80.23667,29.21125],[80.2449,29.21911],[80.26782,29.20935],[80.2818,29.20319],[80.28815,29.20555],[80.29046,29.23161],[80.2969,29.25766],[80.3077,29.31096],[80.2998,29.31965],[80.27954,29.31936],[80.2761,29.3228],[80.26443,29.36275],[80.2658,29.37233],[80.26236,29.39089],[80.24587,29.40638],[80.23694,29.4126],[80.23625,29.42495],[80.2414,29.43999],[80.25599,29.44988],[80.28062,29.45422],[80.2874,29.46095],[80.28739,29.47922],[80.29048,29.48343],[80.29648,29.48374],[80.30155,29.4833],[80.30661,29.48525],[80.30781,29.49179],[80.31382,29.49893],[80.34145,29.51683],[80.35055,29.52576],[80.35132,29.53529],[80.3466,29.54124],[80.34574,29.54805],[80.35518,29.55779],[80.36968,29.5643],[80.38831,29.57738],[80.40443,29.59268],[80.4089,29.59899],[80.41061,29.62082],[80.41884,29.63548],[80.41541,29.64717],[80.40578,29.65524],[80.39066,29.66332],[80.38396,29.68168],[80.38,29.70122],[80.37141,29.73675],[80.37537,29.7463],[80.38139,29.75346],[80.39893,29.7672],[80.41959,29.7899],[80.44385,29.79652],[80.48493,29.79688],[80.51366,29.82496],[80.54101,29.84679],[80.55263,29.87103],[80.5663,29.89705],[80.58067,29.92084],[80.58748,29.93868],[80.59338,29.95041],[80.6041,29.95917],[80.6269,29.96359],[80.65946,29.96292],[80.67932,29.97087],[80.69574,29.98596],[80.705,29.99942],[80.71426,30.00872],[80.72181,30.011],[80.73005,30.01327],[80.74172,30.01703],[80.74721,30.02197],[80.74719,30.02511],[80.75405,30.03479],[80.75882,30.05563],[80.76911,30.06219],[80.78043,30.06517],[80.78626,30.07053],[80.80177,30.09472],[80.81453,30.10345],[80.83284,30.10874],[80.8412,30.11126],[80.84475,30.11913],[80.87521,30.14081],[80.87668,30.14893],[80.87541,30.15825],[80.87012,30.16411],[80.86346,30.1676],[80.86161,30.1705],[80.88339,30.1846],[80.88423,30.19514],[80.89297,30.20658],[80.8967,30.21122],[80.90111,30.21348],[80.90994,30.22276],[80.91987,30.22764],[80.92808,30.21383],[80.92321,30.20311],[80.92309,30.19474],[80.92628,30.18691],[80.93951,30.17944],[80.95969,30.18535],[80.96806,30.18534],[80.97369,30.18948],[80.98472,30.18606],[80.99987,30.18501],[81.0137,30.19418],[81.03449,30.1971],[81.03453,30.20087],[81.0435,30.20464],[81.04462,30.21069],[81.04137,30.21449],[81.03005,30.2203],[81.02938,30.22552],[81.02596,30.22778],[81.03044,30.23596],[81.02805,30.23881],[81.03151,30.24629],[81.02037,30.25114],[81.01128,30.25421],[81.0041,30.2645],[80.98149,30.26967],[80.95276,30.26992],[80.9365,30.2639],[80.92665,30.26622],[80.92435,30.27211],[80.93144,30.27617],[80.9275,30.28292],[80.91454,30.28733],[80.90776,30.29708],[80.90991,30.3012],[80.90725,30.30413],[80.89261,30.3013],[80.87384,30.30085],[80.87338,30.30467],[80.86079,30.31351],[80.84248,30.31755],[80.83332,30.31377],[80.82461,30.31511],[80.81886,30.32312],[80.80051,30.32314],[80.80127,30.33413],[80.78796,30.34008],[80.78563,30.34841],[80.78536,30.35317],[80.7783,30.35471],[80.77431,30.3622],[80.76413,30.37266],[80.76094,30.37224],[80.75919,30.3762],[80.75125,30.38016],[80.75029,30.38737],[80.74384,30.38925],[80.7337,30.40012],[80.72919,30.40112],[80.71675,30.4132],[80.70474,30.41855],[80.70045,30.41384],[80.69418,30.41362],[80.6879,30.41517],[80.68634,30.42124],[80.67771,30.42332],[80.67832,30.42866],[80.67025,30.43248],[80.66287,30.43985],[80.64056,30.45104],[80.63764,30.44997],[80.63172,30.45624],[80.62855,30.4566],[80.62409,30.46216],[80.61388,30.45848],[80.6074,30.46492],[80.60641,30.47136],[80.59835,30.4711],[80.59647,30.4683],[80.58291,30.46847],[80.57725,30.46478],[80.56541,30.46346],[80.5661,30.45935],[80.54997,30.4499],[80.54276,30.44873],[80.52719,30.45828],[80.52534,30.46665],[80.51891,30.47214],[80.50733,30.47615],[80.49849,30.48844],[80.48943,30.48453],[80.48244,30.49068],[80.46995,30.48972],[80.4458,30.49764],[80.44121,30.50407],[80.43182,30.50695],[80.42814,30.51329],[80.41519,30.51608],[80.41528,30.52006],[80.41773,30.52354],[80.41096,30.5246],[80.39898,30.5175],[80.38014,30.51869],[80.3768,30.52343],[80.36393,30.527],[80.35724,30.52317],[80.34574,30.51993],[80.3363,30.52833],[80.3351,30.53496],[80.32034,30.54525],[80.31623,30.56465],[80.28456,30.57053],[80.25358,30.56458],[80.23771,30.57784],[80.22016,30.57916],[80.2088,30.58756],[80.20398,30.58643],[80.19779,30.58825],[80.18953,30.58185],[80.17852,30.5784],[80.16958,30.57435],[80.15907,30.5775],[80.14763,30.57051],[80.14191,30.5611],[80.1362,30.5576],[80.12294,30.55934],[80.10899,30.56464],[80.10672,30.56934],[80.10239,30.57227],[80.0856,30.57175],[80.07776,30.59112],[80.07696,30.59344],[80.06449,30.59577],[80.06008,30.59588],[80.0543,30.59481],[80.04824,30.5974],[80.04217,30.59822],[80.03846,30.61004],[80.03269,30.61064],[80.02871,30.61597],[80.03606,30.621],[80.03355,30.62677],[80.03036,30.62899],[80.03152,30.63373],[80.02926,30.63906],[80.02081,30.63996],[80.02129,30.64381],[80.01377,30.64829],[80.01724,30.65632],[80.01256,30.66716],[80.00542,30.66964],[79.99827,30.6786],[79.9925,30.68226],[79.98398,30.69063],[79.98567,30.69715],[79.98255,30.70366],[79.9866,30.71079],[79.98579,30.73094],[79.98292,30.74017],[79.98457,30.74331],[79.98485,30.74822],[79.97954,30.74981],[79.97559,30.75436],[79.97268,30.75537],[79.96703,30.76286],[79.95108,30.76753],[79.95229,30.77219],[79.95853,30.7767],[79.94612,30.78205],[79.93782,30.79153],[79.9305,30.7917],[79.9258,30.79532],[79.92111,30.79482],[79.91139,30.80118],[79.89754,30.80046],[79.88988,30.81319],[79.89218,30.81766],[79.90615,30.81623],[79.90881,30.83766],[79.89255,30.8469],[79.88796,30.85968],[79.88015,30.86284],[79.8741,30.8624],[79.8708,30.85961],[79.86283,30.86052],[79.83768,30.85022],[79.82765,30.85054],[79.80954,30.87364],[79.80467,30.88399],[79.79912,30.89021],[79.79693,30.8997],[79.78751,30.90624],[79.78153,30.91338],[79.77093,30.92707],[79.77009,30.93406],[79.76376,30.93516],[79.75709,30.94363],[79.7511,30.94679],[79.73832,30.94081],[79.7218,30.94872],[79.71077,30.9525],[79.70073,30.96302],[79.70031,30.97059],[79.68847,30.97483],[79.67457,30.98261],[79.66635,30.98316],[79.66292,30.97552],[79.66498,30.96788],[79.66361,30.96497],[79.64971,30.96013],[79.63513,30.95352],[79.61822,30.94948],[79.61436,30.94426],[79.60183,30.93913],[79.58949,30.94561],[79.58265,30.95268],[79.55317,30.95798],[79.54837,30.96758],[79.54152,30.97307],[79.53672,30.9815],[79.52849,30.98462],[79.52696,30.99011],[79.52337,30.99088],[79.51618,30.99773],[79.51976,31.00465],[79.51579,31.01275],[79.50874,31.01555],[79.50727,31.02195],[79.5106,31.02541],[79.50709,31.0322],[79.49095,31.03156],[79.47208,31.03386],[79.46384,31.03089],[79.45354,31.03086],[79.43706,31.0226],[79.42745,31.02257],[79.42202,31.03578],[79.41866,31.04841],[79.42126,31.05597],[79.41906,31.06589],[79.41261,31.07278],[79.4171,31.07953],[79.41748,31.08864],[79.41411,31.10685],[79.40806,31.11446],[79.39208,31.11687],[79.38241,31.11483],[79.37756,31.11279],[79.37393,31.11603],[79.36824,31.11692],[79.36442,31.1234],[79.35347,31.12209],[79.34183,31.12725],[79.33916,31.13228],[79.32833,31.13293],[79.31131,31.14879],[79.30864,31.16215],[79.30456,31.16883],[79.30872,31.17199],[79.30553,31.18726],[79.3044,31.20723],[79.2994,31.21898],[79.29035,31.2269],[79.28335,31.23894],[79.26591,31.23776],[79.25569,31.24275],[79.24337,31.25317],[79.22624,31.26066],[79.23016,31.26829],[79.23831,31.27064],[79.24684,31.27681],[79.24699,31.28018],[79.24844,31.28891],[79.25126,31.29236],[79.24395,31.29794],[79.22978,31.3041],[79.22522,31.31085],[79.22066,31.31643],[79.2251,31.32818],[79.23573,31.33464],[79.22868,31.34014],[79.22507,31.34564],[79.21631,31.34792],[79.21373,31.3543],[79.1981,31.35416],[79.16942,31.36282],[79.16906,31.37383],[79.17643,31.3852],[79.17222,31.39323],[79.17144,31.39833],[79.16505,31.39677],[79.15361,31.41093],[79.15058,31.41857],[79.14343,31.42446],[79.14218,31.43212],[79.12837,31.43898],[79.12089,31.44013],[79.1086,31.44479],[79.1067,31.44943],[79.09807,31.45403],[79.08318,31.45028],[79.07997,31.45708],[79.07491,31.45778],[79.06891,31.45069],[79.06859,31.43926],[79.06209,31.43369],[79.06145,31.42957],[79.05605,31.43072],[79.05091,31.4248],[79.0444,31.43236],[79.03102,31.43112],[79.01764,31.42521],[79.0156,31.40985],[79.017,31.38747],[79.0092,31.38214],[79.01114,31.37097],[79.01857,31.35922],[79.01807,31.34856],[79.00095,31.34101],[78.98688,31.3481],[78.9886,31.35635],[78.98003,31.36319],[78.97077,31.35639],[78.9507,31.36589],[78.94435,31.36601],[78.93955,31.34631],[78.93339,31.34186],[78.92516,31.32846],[78.91692,31.32059],[78.9183,31.31565],[78.9123,31.30866],[78.90561,31.30871],[78.89704,31.30235],[78.90133,31.298],[78.90083,31.29013],[78.88264,31.28612],[78.87635,31.30359],[78.86909,31.30676],[78.86114,31.31462],[78.85405,31.31199],[78.85107,31.30789],[78.85243,31.30342],[78.8562,31.30013],[78.85686,31.29412],[78.84101,31.29632],[78.83787,31.29353],[78.82409,31.29574],[78.81511,31.30087],[78.81601,31.30366],[78.81107,31.30703],[78.79394,31.3044],[78.77921,31.31173],[78.7795,31.32036],[78.77209,31.3232],[78.7688,31.32547],[78.7686,31.33015],[78.77297,31.33102],[78.7739,31.33365],[78.76389,31.34067],[78.77099,31.34912],[78.75428,31.35834],[78.74857,31.36755],[78.75489,31.37058],[78.75772,31.37474],[78.75573,31.37889],[78.75328,31.38496],[78.76253,31.39906],[78.77315,31.4155],[78.78617,31.43165],[78.79508,31.43725],[78.79726,31.44318],[78.77748,31.45262],[78.76675,31.47266],[78.76039,31.48114],[78.74896,31.48433],[78.7396,31.48168],[78.72705,31.48456],[78.72008,31.50707],[78.7217,31.51318],[78.72606,31.51608],[78.73248,31.53361],[78.7444,31.54171],[78.75774,31.54137],[78.76146,31.54805],[78.77544,31.54328],[78.7798,31.55548],[78.80381,31.56599],[78.80654,31.5765],[78.82053,31.57774],[78.82649,31.58859],[78.83382,31.59711],[78.84025,31.59747],[78.84737,31.60836],[78.84084,31.62239],[78.8295,31.62531],[78.81781,31.63759],[78.80954,31.63817],[78.80077,31.64964],[78.79818,31.66929],[78.80039,31.67784],[78.79849,31.68288],[78.7884,31.67832],[78.76663,31.67405],[78.754,31.6772],[78.74933,31.68466],[78.75373,31.68999],[78.75263,31.69591],[78.74597,31.7057],[78.74295,31.71826],[78.73378,31.72403],[78.72754,31.74255],[78.72888,31.74539],[78.72542,31.75115],[78.72461,31.75783],[78.7207,31.76119],[78.71747,31.76719],[78.70601,31.77435],[78.70465,31.78123],[78.70741,31.78403],[78.70261,31.79442],[78.70468,31.8013],[78.70267,31.80782],[78.71731,31.82222],[78.73057,31.83138],[78.74724,31.8744],[78.73938,31.88579],[78.74669,31.89448],[78.74163,31.902],[78.74992,31.90779],[78.74859,31.91301],[78.75462,31.9146],[78.76065,31.92551],[78.76723,31.92752],[78.76905,31.93625],[78.76813,31.94497],[78.76354,31.94844],[78.76467,31.95072],[78.76476,31.95998],[78.7703,31.96345],[78.77719,31.96315],[78.77859,31.96459],[78.77504,31.9731],[78.77631,31.97696],[78.77403,31.98584],[78.77976,31.99485],[78.76921,31.99722],[78.76517,32.00454],[78.75518,32.00172],[78.7493,32.00326],[78.73984,32.00127],[78.73312,32.00568],[78.73411,32.01276],[78.72797,32.01703],[78.72321,32.02711],[78.72055,32.03098],[78.7221,32.03929],[78.71305,32.04705],[78.71154,32.05364],[78.70764,32.05645],[78.70442,32.06624],[78.6894,32.07069],[78.68262,32.08038],[78.69014,32.088],[78.69268,32.09736],[78.68299,32.11354],[78.67471,32.11378],[78.6733,32.11707],[78.65812,32.11552],[78.64847,32.11895],[78.64226,32.12355],[78.63051,32.12636],[78.63031,32.13287],[78.62598,32.13822],[78.60979,32.15184],[78.59633,32.1576],[78.59112,32.16801],[78.59949,32.17431],[78.59928,32.19339],[78.59268,32.20017],[78.57965,32.2034],[78.57142,32.20197],[78.56387,32.20404],[78.56045,32.20261],[78.55423,32.21374],[78.54391,32.2225],[78.54114,32.22835],[78.53214,32.24393],[78.5252,32.24528],[78.51963,32.26289],[78.50894,32.26861],[78.49689,32.27606],[78.49132,32.27386],[78.48773,32.27583],[78.49965,32.29172],[78.49908,32.29443],[78.51019,32.30295],[78.50451,32.30957],[78.49883,32.32373],[78.47889,32.3242],[78.47648,32.33496],[78.48161,32.34629],[78.48057,32.3511],[78.4864,32.35706],[78.48046,32.36592],[78.46942,32.36533],[78.46511,32.37339],[78.45771,32.37972],[78.45237,32.38721],[78.46003,32.39179],[78.47112,32.39521],[78.47019,32.40407],[78.4727,32.41235],[78.46921,32.41927],[78.47189,32.42909],[78.47109,32.44294],[78.46467,32.4463],[78.46201,32.4549],[78.45042,32.4606],[78.45669,32.47021],[78.44716,32.47576],[78.4415,32.47934],[78.43819,32.48806],[78.43077,32.49098],[78.42622,32.50088],[78.42897,32.50457],[78.41318,32.51753],[78.40702,32.5265],[78.39607,32.52939],[78.39271,32.53808],[78.3987,32.54546],[78.40376,32.54409],[78.40538,32.55429],[78.41309,32.55878],[78.4153,32.56675],[78.42191,32.57053],[78.43001,32.56953],[78.43469,32.57258],[78.45022,32.57463],[78.45339,32.58073],[78.46317,32.57931],[78.46676,32.58078],[78.47526,32.57631],[78.48431,32.57783],[78.49268,32.58514],[78.50074,32.58314],[78.50897,32.59238],[78.51239,32.60161],[78.51564,32.60029],[78.51851,32.60676],[78.51451,32.61206],[78.51683,32.61343],[78.5465,32.61353],[78.5463,32.61884],[78.5553,32.6173],[78.5588,32.62328],[78.56368,32.61653],[78.56788,32.61557],[78.57193,32.62413],[78.57942,32.62112],[78.57997,32.6261],[78.57846,32.63252],[78.57901,32.63721],[78.58534,32.64208],[78.59698,32.64045],[78.61344,32.64345],[78.62472,32.63397],[78.63153,32.6346],[78.63393,32.64562],[78.64216,32.64275],[78.65142,32.6516],[78.66446,32.65813],[78.67166,32.65671],[78.70427,32.66801],[78.7101,32.66804],[78.71671,32.67281],[78.724,32.67412],[78.73927,32.69523],[78.75071,32.6886],[78.74648,32.67821],[78.74018,32.66204],[78.74299,32.65533],[78.75128,32.64631],[78.75048,32.64134],[78.76684,32.63348],[78.7705,32.63006],[78.77313,32.61822],[78.78125,32.61621],[78.77982,32.60841],[78.7777,32.60755],[78.77759,32.5931],[78.77017,32.58094],[78.76241,32.57919],[78.75685,32.5673],[78.76085,32.55955],[78.76005,32.55759],[78.76342,32.54851],[78.77023,32.54],[78.76708,32.53613],[78.77011,32.52357],[78.78102,32.51633],[78.77912,32.51047],[78.77927,32.50055],[78.77763,32.49776],[78.78149,32.48571],[78.78027,32.47898],[78.79414,32.47557],[78.80842,32.44111],[78.81694,32.43083],[78.83232,32.42751],[78.83424,32.41565],[78.84303,32.41017],[78.85484,32.41387],[78.86871,32.41293],[78.88014,32.39831],[78.88746,32.39828],[78.89204,32.40115],[78.89593,32.39416],[78.9005,32.39587],[78.90637,32.38939],[78.90149,32.38632],[78.90216,32.38164],[78.90626,32.3787],[78.90622,32.37398],[78.92592,32.36287],[78.93876,32.35699],[78.954,32.34531],[78.96924,32.33536],[78.9738,32.33924],[78.98936,32.37038],[79.01275,32.38116],[79.0231,32.38383],[79.02749,32.3792],[79.03669,32.38327],[79.04451,32.38227],[79.05989,32.38765],[79.07355,32.38353],[79.08175,32.37901],[79.0879,32.37274],[79.09805,32.37001],[79.10462,32.37442],[79.10157,32.38636],[79.10402,32.38989],[79.10078,32.39484],[79.10097,32.3969],[79.10479,32.40101],[79.10518,32.40744],[79.11243,32.41156],[79.11419,32.41857],[79.12553,32.41864],[79.12656,32.42277],[79.12169,32.43523],[79.11785,32.43754],[79.12122,32.4471],[79.11707,32.45449],[79.1191,32.4584],[79.12755,32.4613],[79.12903,32.46652],[79.13181,32.46985],[79.12909,32.47724],[79.1312,32.48158],[79.14923,32.47696],[79.15216,32.48971],[79.1592,32.49667],[79.16436,32.49451],[79.18462,32.49698],[79.18102,32.50346],[79.183,32.50642],[79.18154,32.51169],[79.18877,32.51598],[79.20148,32.51303],[79.20535,32.50983],[79.21265,32.51069],[79.22106,32.51008],[79.22077,32.52464],[79.22328,32.52451],[79.23402,32.51802],[79.24795,32.51603],[79.25242,32.52156],[79.25844,32.53764],[79.26454,32.53584],[79.26795,32.53886],[79.26861,32.54536],[79.27271,32.5478],[79.27612,32.55603],[79.28369,32.55047],[79.28266,32.54654],[79.29399,32.53971],[79.30017,32.54648],[79.30704,32.55152],[79.3079,32.55635],[79.31082,32.55887],[79.32301,32.55878],[79.32636,32.56366],[79.33108,32.56622],[79.33436,32.55908],[79.34038,32.5531],[79.33287,32.54966],[79.33429,32.54042],[79.35567,32.52716],[79.364,32.53358],[79.39357,32.52434],[79.40012,32.52638],[79.40461,32.51916],[79.4134,32.51965],[79.41265,32.52367],[79.41776,32.52567],[79.41876,32.53231],[79.41382,32.53729],[79.41369,32.54054],[79.41596,32.54147],[79.42852,32.54009],[79.43275,32.54345],[79.43629,32.55028],[79.42757,32.55585],[79.42788,32.56157],[79.43568,32.56785],[79.44005,32.58049],[79.44535,32.58379],[79.44585,32.58795],[79.45228,32.5938],[79.45321,32.60253],[79.46382,32.60609],[79.46962,32.6166],[79.47885,32.619],[79.48397,32.62603],[79.49397,32.63177],[79.50189,32.64302],[79.50706,32.64387],[79.525,32.65187],[79.52728,32.65776],[79.53574,32.66364],[79.53973,32.67183],[79.54922,32.67656],[79.54416,32.68096],[79.53911,32.68246],[79.54023,32.69957],[79.54204,32.70454],[79.54624,32.70687],[79.55044,32.70515],[79.55361,32.70805],[79.55747,32.70922],[79.56107,32.71372],[79.55986,32.71822],[79.55469,32.72087],[79.54884,32.72121],[79.5426,32.73008],[79.54631,32.73923],[79.54728,32.74839],[79.55374,32.75134],[79.55745,32.75775],[79.55114,32.76422],[79.54171,32.76413],[79.54481,32.77378],[79.52147,32.77911],[79.50499,32.78445],[79.48886,32.79498],[79.48097,32.80147],[79.48097,32.81114],[79.4693,32.8208],[79.46759,32.82989],[79.46107,32.83263],[79.46296,32.83852],[79.47077,32.84233],[79.47261,32.84972],[79.47103,32.8548],[79.47275,32.86572],[79.46932,32.86796],[79.47276,32.87877],[79.46145,32.88122],[79.45837,32.87906],[79.45385,32.8825],[79.45138,32.8894],[79.43209,32.8914],[79.42104,32.89629],[79.40821,32.90663],[79.39058,32.91698],[79.40097,32.94141],[79.37904,32.94498],[79.36604,32.9376],[79.35249,32.95174],[79.35362,32.95564],[79.36104,32.95932],[79.36298,32.963],[79.35865,32.96651],[79.35614,32.97317],[79.35225,32.97925],[79.34427,32.97936],[79.34247,32.98509],[79.33862,32.98737],[79.33708,32.99423],[79.33073,33.00108],[79.3383,33.00098],[79.34174,33.01866],[79.33831,33.0277],[79.32801,33.0337],[79.33519,33.04691],[79.33843,33.05582],[79.3488,33.06128],[79.35884,33.06185],[79.35788,33.07055],[79.36128,33.07228],[79.36262,33.07689],[79.36668,33.07979],[79.36809,33.08672],[79.3649,33.09276],[79.36702,33.10105],[79.36426,33.1059],[79.3684,33.10762],[79.37066,33.1112],[79.37345,33.11903],[79.38149,33.12577],[79.39158,33.13941],[79.39853,33.13822],[79.4,33.15025],[79.39494,33.1528],[79.39193,33.15649],[79.3971,33.17013],[79.40998,33.16847],[79.41256,33.17715],[79.40948,33.18819],[79.40009,33.19545],[79.38521,33.20271],[79.38007,33.19824],[79.36188,33.19722],[79.35021,33.20223],[79.33511,33.20322],[79.3237,33.19472],[79.32294,33.19054],[79.30286,33.19108],[79.29568,33.20281],[79.28918,33.20276],[79.28062,33.20731],[79.27274,33.21358],[79.27284,33.22085],[79.26602,33.21859],[79.26019,33.21502],[79.25368,33.21603],[79.25027,33.22094],[79.238,33.23367],[79.22995,33.23299],[79.21709,33.23805],[79.21241,33.23214],[79.21391,33.22394],[79.21005,33.22045],[79.2092,33.21289],[79.20132,33.20869],[79.19755,33.21478],[79.19103,33.22087],[79.1828,33.2204],[79.18196,33.21218],[79.17493,33.20913],[79.17546,33.20436],[79.16844,33.19959],[79.16412,33.19437],[79.16391,33.19146],[79.1539,33.18562],[79.15241,33.18086],[79.14495,33.1864],[79.14367,33.19022],[79.13462,33.19436],[79.13106,33.19965],[79.12647,33.2012],[79.12531,33.20332],[79.12163,33.20097],[79.11451,33.20263],[79.10783,33.19907],[79.10287,33.20628],[79.09386,33.21132],[79.08486,33.21981],[79.07234,33.22329],[79.06539,33.23422],[79.06806,33.23653],[79.07555,33.24064],[79.08029,33.24533],[79.06884,33.25298],[79.06071,33.25537],[79.05258,33.26178],[79.04482,33.26114],[79.03293,33.27772],[79.03938,33.28505],[79.03855,33.28996],[79.03153,33.29314],[79.03894,33.30809],[79.02883,33.30761],[79.02491,33.31402],[79.02736,33.31996],[79.01985,33.32468],[79.01129,33.32274],[79.0041,33.32768],[78.99537,33.32516],[78.97977,33.32724],[78.97673,33.33425],[78.96212,33.3398],[78.95919,33.34706],[78.95419,33.35519],[78.95675,33.35873],[78.94917,33.36523],[78.95463,33.37116],[78.94701,33.37901],[78.94115,33.38092],[78.93665,33.38685],[78.92804,33.38916],[78.92286,33.39319],[78.91047,33.4008],[78.90425,33.40956],[78.89561,33.4116],[78.89108,33.41537],[78.86967,33.41436],[78.8668,33.41852],[78.85712,33.4158],[78.8447,33.41938],[78.84252,33.42483],[78.83563,33.42515],[78.83492,33.43178],[78.83319,33.43583],[78.83694,33.43816],[78.82852,33.44484],[78.82834,33.44866],[78.82317,33.45514],[78.81647,33.45834],[78.81664,33.46383],[78.80942,33.4748],[78.8142,33.48301],[78.80327,33.48979],[78.79402,33.49976],[78.78478,33.50573],[78.77252,33.51815],[78.77022,33.52513],[78.7329,33.56931],[78.7423,33.57709],[78.74072,33.5906],[78.74134,33.60073],[78.75316,33.60995],[78.754,33.61916],[78.75843,33.62359],[78.75149,33.62729],[78.72476,33.62267],[78.71725,33.62262],[78.72033,33.63381],[78.72547,33.64442],[78.72958,33.64818],[78.73027,33.65177],[78.73507,33.66051],[78.76387,33.72011],[78.76513,33.72627],[78.77195,33.73106],[78.77533,33.73871],[78.77718,33.74647],[78.77032,33.74946],[78.76415,33.7593],[78.7627,33.76629],[78.76399,33.77727],[78.75422,33.78326],[78.76079,33.80751],[78.76168,33.82334],[78.7653,33.83346],[78.76403,33.84259],[78.76013,33.84558],[78.75898,33.85314],[78.76148,33.85514],[78.75672,33.86755],[78.75127,33.88509],[78.76303,33.891],[78.76107,33.90318],[78.76476,33.90639],[78.76228,33.91473],[78.74958,33.91473],[78.74375,33.92043],[78.73174,33.92043],[78.72797,33.92271],[78.73511,33.93967],[78.73469,33.95548],[78.74114,33.97614],[78.74241,33.98401],[78.74024,33.99302],[78.74278,33.99908],[78.73558,34.0065],[78.72718,34.00851],[78.72701,34.01564],[78.72169,34.01416],[78.70539,34.01837],[78.70179,34.02401],[78.70163,34.02793],[78.68962,34.02284],[78.67419,34.02515],[78.66803,34.03203],[78.66362,34.03073],[78.65508,34.03227],[78.65528,34.03842],[78.65632,34.04115],[78.65461,34.05354],[78.65882,34.05768],[78.66647,34.07091],[78.65704,34.0752],[78.66025,34.08045],[78.66141,34.0857],[78.66921,34.09222],[78.67519,34.08934],[78.68168,34.07959],[78.69502,34.08377],[78.69277,34.08899],[78.69804,34.09299],[78.70744,34.09473],[78.71511,34.0902],[78.72098,34.09205],[78.72822,34.08993],[78.74061,34.09235],[78.74545,34.09023],[78.75118,34.09914],[78.75988,34.09876],[78.76034,34.10578],[78.76985,34.10872],[78.77583,34.11699],[78.78524,34.12014],[78.78608,34.1287],[78.79446,34.13725],[78.81433,34.1312],[78.82596,34.12459],[78.83478,34.12803],[78.83467,34.13317],[78.84133,34.14176],[78.85673,34.14211],[78.86032,34.16217],[78.86322,34.16575],[78.87375,34.16454],[78.88176,34.15542],[78.88153,34.15368],[78.8916,34.14728],[78.89825,34.14856],[78.90489,34.14074],[78.90947,34.14273],[78.90787,34.1487],[78.9136,34.1521],[78.92553,34.15322],[78.92588,34.16204],[78.92759,34.16745],[78.92382,34.17145],[78.93309,34.19107],[78.94476,34.22518],[78.95214,34.22777],[78.9609,34.23604],[78.95922,34.24357],[78.96442,34.24769],[78.96313,34.25934],[78.97017,34.27925],[78.98515,34.30059],[78.97953,34.30662],[78.9803,34.315],[79.01174,34.30291],[79.01571,34.30671],[79.02777,34.30579],[79.03845,34.29608],[79.05463,34.29658],[79.0586,34.30139],[79.05719,34.30784],[79.05303,34.31372],[79.05364,34.32151],[79.04596,34.32456],[79.04034,34.33158],[79.03117,34.33313],[79.0316,34.34574],[79.03869,34.3563],[79.03753,34.35836],[79.03223,34.36232],[79.02898,34.36969],[79.02334,34.37393],[79.02524,34.37818],[79.02127,34.38331],[79.02141,34.38845],[79.01744,34.39046],[79.0169,34.39474],[79.00964,34.40076],[79.00718,34.40677],[78.98665,34.4018],[78.97436,34.39852],[78.96426,34.38768],[78.94593,34.38874],[78.94133,34.38441],[78.93261,34.38121],[78.92778,34.37992],[78.91609,34.38883],[78.91262,34.38909],[78.90499,34.3998],[78.88931,34.39826],[78.87843,34.39503],[78.86962,34.402],[78.86217,34.40443],[78.85415,34.41354],[78.84682,34.41756],[78.83186,34.41728],[78.8162,34.42098],[78.81305,34.42893],[78.80784,34.42924],[78.80538,34.43635],[78.79726,34.43699],[78.78982,34.44046],[78.7832,34.44287],[78.77657,34.4388],[78.76375,34.43927],[78.75735,34.44699],[78.74711,34.45056],[78.73893,34.45584],[78.73831,34.45913],[78.75035,34.46134],[78.75691,34.46638],[78.75372,34.47135],[78.75739,34.47857],[78.76268,34.48057],[78.74774,34.4885],[78.73554,34.49359],[78.71459,34.50209],[78.71318,34.51513],[78.70831,34.52705],[78.68625,34.52749],[78.68272,34.53019],[78.66742,34.53277],[78.64972,34.53987],[78.64438,34.54414],[78.64705,34.54992],[78.6238,34.53649],[78.61291,34.53947],[78.60279,34.53412],[78.60316,34.53191],[78.59222,34.52747],[78.5937,34.51747],[78.58831,34.51228],[78.58841,34.50709],[78.5799,34.50387],[78.57241,34.50885],[78.56012,34.51044],[78.56035,34.5161],[78.55634,34.52006],[78.56127,34.52629],[78.55669,34.53337],[78.56036,34.53988],[78.5606,34.55631],[78.55625,34.55647],[78.5526,34.56285],[78.55146,34.57165],[78.54144,34.57274],[78.5328,34.57722],[78.51595,34.57268],[78.50458,34.57718],[78.49834,34.58393],[78.49246,34.57894],[78.48383,34.58018],[78.47824,34.57587],[78.47849,34.57014],[78.47244,34.56756],[78.46014,34.56938],[78.45746,34.56781],[78.45565,34.56279],[78.45041,34.55833],[78.45159,34.55225],[78.44535,34.54263],[78.43631,34.54204],[78.42899,34.55616],[78.42578,34.55897],[78.43104,34.57052],[78.43012,34.59055],[78.42439,34.59256],[78.42141,34.59514],[78.41672,34.59348],[78.41202,34.5969],[78.40784,34.5958],[78.3913,34.60487],[78.38699,34.60446],[78.38474,34.60687],[78.37185,34.60589],[78.36514,34.60886],[78.36376,34.60534],[78.35619,34.60238],[78.35135,34.60494],[78.34787,34.60281],[78.33753,34.60294],[78.33126,34.60716],[78.32902,34.6122],[78.32163,34.61217],[78.31699,34.61439],[78.31149,34.6135],[78.30256,34.61487],[78.29362,34.61762],[78.29014,34.61505],[78.28322,34.62236],[78.27289,34.62913],[78.26875,34.63646],[78.26933,34.6494],[78.26649,34.6516],[78.26628,34.65742],[78.26127,34.66098],[78.26433,34.66581],[78.2722,34.66782],[78.27491,34.67321],[78.279,34.67635],[78.27463,34.6862],[78.27618,34.68896],[78.27517,34.69561],[78.27177,34.70157],[78.26425,34.70189],[78.25947,34.70899],[78.25607,34.70759],[78.24718,34.709],[78.239,34.71495],[78.23186,34.71383],[78.22265,34.7178],[78.21695,34.71613],[78.2078,34.72068],[78.20395,34.73118],[78.20146,34.73604],[78.20456,34.74023],[78.20389,34.74184],[78.20461,34.75128],[78.18816,34.79061],[78.18545,34.79385],[78.18567,34.79838],[78.1907,34.80009],[78.19582,34.8044],[78.19939,34.80717],[78.20295,34.80705],[78.20479,34.80862],[78.20949,34.80641],[78.21622,34.80834],[78.21849,34.81111],[78.2225,34.81228],[78.22568,34.81173],[78.22955,34.81935],[78.2286,34.82218],[78.22835,34.82586],[78.23076,34.82816],[78.23342,34.83347],[78.23265,34.83709],[78.2342,34.83954],[78.23354,34.84537],[78.23134,34.8467],[78.23085,34.84972],[78.22815,34.85182],[78.2282,34.85504],[78.23184,34.85667],[78.23705,34.87006],[78.23436,34.875],[78.23648,34.88107],[78.22699,34.88616],[78.22573,34.88901],[78.21499,34.8885],[78.20424,34.89137],[78.20343,34.89723],[78.20811,34.90366],[78.19802,34.90896],[78.19687,34.91371],[78.18805,34.91917],[78.18747,34.92239],[78.17693,34.92898],[78.17407,34.93903],[78.17744,34.94209],[78.18356,34.94064],[78.19374,34.95003],[78.20253,34.95435],[78.20309,34.96599],[78.20228,34.97256],[78.19619,34.97388],[78.18421,34.98271],[78.17823,34.98487],[78.17636,34.98759],[78.1713,34.98557],[78.15662,34.98861],[78.15169,34.99231],[78.14881,34.99938],[78.14375,35.00228],[78.14135,35.03272],[78.13912,35.03787],[78.13414,35.04048],[78.1283,35.04628],[78.12899,35.04888],[78.13788,35.05061],[78.13408,35.05654],[78.13303,35.06077],[78.13814,35.06475],[78.13981,35.0676],[78.14454,35.06909],[78.14651,35.07171],[78.14,35.07654],[78.13709,35.08233],[78.13074,35.09149],[78.13522,35.09521],[78.13215,35.09982],[78.12771,35.10051],[78.11269,35.10719],[78.11239,35.11713],[78.10248,35.12034],[78.10183,35.12831],[78.09927,35.13143],[78.09945,35.13623],[78.10119,35.1419],[78.08506,35.16585],[78.07116,35.17165],[78.0552,35.17914],[78.05086,35.1853],[78.0431,35.19201],[78.0391,35.20012],[78.03374,35.20319],[78.02777,35.20459],[78.02592,35.2116],[78.02153,35.21608],[78.0155,35.21551],[78.011,35.22896],[78.00583,35.22769],[78.00478,35.23034],[78.00817,35.23846],[78.00328,35.23978],[78.00319,35.24335],[78.01092,35.27376],[78.01136,35.3052],[78.02277,35.35795],[78.0276,35.36469],[78.03518,35.37032],[78.04415,35.381],[78.04675,35.38859],[78.05285,35.39882],[78.06483,35.40841],[78.072,35.41129],[78.07428,35.41549],[78.08343,35.42081],[78.08936,35.42195],[78.09564,35.42588],[78.10123,35.43093],[78.10282,35.43397],[78.10784,35.4398],[78.10428,35.44423],[78.10415,35.44699],[78.10991,35.46159],[78.10901,35.46833],[78.11429,35.47395],[78.10462,35.48366],[78.1003,35.48209],[78.08499,35.4861],[78.08185,35.49106],[78.07596,35.49546],[78.07482,35.49335],[78.07025,35.49348],[78.06569,35.48728],[78.05311,35.49159],[78.04053,35.48919],[78.03556,35.48312],[78.03608,35.47928],[78.0342,35.476],[78.03532,35.47324],[78.03369,35.47049],[78.02753,35.47036],[78.02548,35.46856],[78.00838,35.4826],[78.00707,35.48992],[78.00095,35.49389],[77.99639,35.48937],[77.96986,35.49492],[77.96794,35.49323],[77.96741,35.48148],[77.95348,35.48398],[77.94779,35.4781],[77.93918,35.48382],[77.93538,35.49121],[77.92435,35.4965],[77.91712,35.48934],[77.92158,35.48385],[77.91813,35.47892],[77.91812,35.47288],[77.91398,35.4689],[77.9119,35.46156],[77.90465,35.46533],[77.90083,35.4652],[77.89765,35.47331],[77.8931,35.47416],[77.88915,35.47948],[77.88314,35.47922],[77.87627,35.48595],[77.87696,35.49044],[77.86734,35.49804],[77.86047,35.50004],[77.85427,35.49072],[77.84419,35.49671],[77.8403,35.50269],[77.82702,35.50628],[77.82313,35.51402],[77.81328,35.52223],[77.80858,35.51981],[77.80388,35.51964],[77.79881,35.51054],[77.7934,35.50843],[77.79143,35.50633],[77.78404,35.50491],[77.78009,35.49845],[77.76995,35.49969],[77.76463,35.50204],[77.75724,35.50327],[77.75466,35.4978],[77.74288,35.49561],[77.71879,35.46264],[77.70869,35.46215],[77.70682,35.46334],[77.69965,35.46404],[77.69522,35.46195],[77.69301,35.4567],[77.68668,35.45426],[77.67791,35.46489],[77.6712,35.46713],[77.65282,35.48727],[77.63888,35.48345],[77.63738,35.47629],[77.64206,35.46802],[77.63082,35.4621],[77.61581,35.47016],[77.60423,35.47263],[77.60158,35.46951],[77.59549,35.46974],[77.59156,35.46574],[77.5782,35.47002],[77.5827,35.47934],[77.57293,35.484],[77.56042,35.48643],[77.5509,35.48288],[77.54275,35.48438],[77.54019,35.48848],[77.53574,35.48894],[77.52512,35.48437],[77.52041,35.48674],[77.51639,35.48407],[77.50903,35.48712],[77.50118,35.48931],[77.49028,35.48475],[77.4835,35.48354],[77.48016,35.48065],[77.4642,35.47263],[77.46035,35.46862],[77.45305,35.46685],[77.44294,35.4612],[77.4342,35.46506],[77.43046,35.46495],[77.42434,35.47143],[77.4188,35.47033],[77.40844,35.47371],[77.40035,35.47331],[77.39363,35.4701],[77.3898,35.47208],[77.38145,35.47325],[77.37654,35.48337],[77.37059,35.49041],[77.3722,35.49745],[77.36306,35.49978],[77.35529,35.49429],[77.33963,35.50362],[77.33976,35.50959],[77.33615,35.51392],[77.3394,35.51826],[77.33766,35.52442],[77.32869,35.5317],[77.32762,35.53395],[77.31899,35.539],[77.31376,35.53625],[77.31059,35.54243],[77.30347,35.54498],[77.30047,35.54139],[77.29609,35.54087],[77.29378,35.5437],[77.28277,35.53849],[77.27314,35.53606],[77.26451,35.53959],[77.24956,35.53074],[77.22705,35.52972],[77.21141,35.52282],[77.19371,35.52151],[77.17997,35.52816],[77.17584,35.53201],[77.16414,35.53804],[77.15251,35.53788],[77.14637,35.54052],[77.13684,35.55138],[77.1267,35.55691],[77.12084,35.55679],[77.11102,35.56354],[77.10032,35.56355],[77.09169,35.5658],[77.06279,35.59903],[77.05656,35.60212],[77.04541,35.59899],[77.02747,35.60049],[77.01022,35.61093],[77.00095,35.60853],[76.99443,35.61003],[76.98379,35.5987],[76.97297,35.6014],[76.96697,35.59546],[76.95805,35.59549],[76.94814,35.60335],[76.93803,35.60589],[76.93136,35.61065],[76.91767,35.61126],[76.89984,35.61909],[76.89987,35.62358],[76.87923,35.64086],[76.85996,35.65199],[76.85233,35.66869],[76.84414,35.67467],[76.83871,35.66837],[76.83292,35.66905],[76.82302,35.66583],[76.81455,35.66997],[76.80539,35.66463],[76.79394,35.66428],[76.78866,35.66169],[76.78292,35.66126],[76.77718,35.65804],[76.77327,35.66076],[76.76662,35.65958],[76.75642,35.66596],[76.75378,35.67401],[76.75674,35.6812],[76.75115,35.68566],[76.74763,35.68567],[76.74382,35.68904],[76.7431,35.69491],[76.73794,35.70008],[76.73209,35.69968],[76.72845,35.7043],[76.72687,35.70948],[76.7151,35.71486],[76.70264,35.7247],[76.69626,35.72486],[76.69568,35.72923],[76.69373,35.7336],[76.69773,35.74052],[76.69343,35.74731],[76.685,35.75298],[76.67158,35.75597],[76.66263,35.75449],[76.653,35.75682],[76.64749,35.76138],[76.64851,35.76496],[76.64197,35.77021],[76.63439,35.77125],[76.6254,35.7683],[76.61567,35.76185],[76.60302,35.77101],[76.58664,35.77497],[76.58467,35.77894],[76.59105,35.78296],[76.57771,35.79853],[76.57879,35.80407],[76.57096,35.80712],[76.56588,35.8124],[76.56509,35.82018],[76.56087,35.8224],[76.5709,35.83157],[76.58779,35.84353],[76.5858,35.84825],[76.58313,35.863],[76.57345,35.86825],[76.57271,35.87127],[76.58246,35.87928],[76.58809,35.88728],[76.59201,35.88889],[76.59112,35.89161],[76.59923,35.90082],[76.58456,35.91089],[76.5862,35.91554],[76.58372,35.9202],[76.56692,35.92546],[76.56216,35.92208],[76.5562,35.9278],[76.5475,35.92741],[76.54394,35.92493],[76.54319,35.90729],[76.54588,35.90299],[76.53408,35.89926],[76.51954,35.88775],[76.51243,35.8814],[76.50892,35.88716],[76.49443,35.89013],[76.48124,35.88774],[76.47593,35.89133],[76.46651,35.89046],[76.45658,35.88317],[76.44772,35.87416],[76.44442,35.86559],[76.43184,35.8591],[76.42751,35.85262],[76.41678,35.85439],[76.40249,35.85306],[76.3882,35.86062],[76.37842,35.85833],[76.36975,35.86359],[76.36521,35.86328],[76.35149,35.85467],[76.35596,35.84439],[76.35477,35.83592],[76.35838,35.82855],[76.35084,35.83011],[76.33918,35.83054],[76.32699,35.83536],[76.31619,35.83739],[76.3083,35.83254],[76.29983,35.84305],[76.28873,35.8419],[76.27007,35.84187],[76.26549,35.83784],[76.25787,35.84098],[76.24888,35.8391],[76.24161,35.84085],[76.22267,35.84203],[76.22038,35.838],[76.22181,35.83446],[76.22049,35.82868],[76.20738,35.82674],[76.20045,35.82368],[76.17527,35.82397],[76.17,35.82092],[76.15788,35.82625],[76.14508,35.83716],[76.14532,35.84333],[76.14075,35.85006],[76.14546,35.85637],[76.15159,35.85897],[76.15497,35.86546],[76.14859,35.87419],[76.15334,35.88163],[76.14778,35.89241],[76.15796,35.90813],[76.15921,35.91828],[76.15266,35.92772],[76.14663,35.93188],[76.14294,35.94258],[76.13718,35.94772],[76.13506,35.9552],[76.11983,35.96738],[76.11479,35.96875],[76.1125,35.97234],[76.10775,35.97691],[76.10643,35.98315],[76.10422,35.98572],[76.10339,35.99217],[76.09817,35.99707],[76.09707,36.00918],[76.1031,36.01175],[76.10054,36.01588],[76.08562,36.02279],[76.04753,36.02438],[76.03727,36.02147],[76.02912,36.02287],[76.02365,36.01732],[76.01474,36.01648],[76.00445,36.01676],[75.99282,36.02176],[75.98398,36.03121],[75.9766,36.03234],[75.97472,36.03624],[75.95688,36.0463],[75.95484,36.05197],[75.94863,36.05562],[75.9493,36.06217],[75.9534,36.06482],[75.95278,36.06623],[75.94117,36.07042],[75.94227,36.07571],[75.95504,36.07823],[75.95363,36.08188],[75.94398,36.08775],[75.94602,36.09609],[75.93777,36.10499],[75.94187,36.1089],[75.94872,36.1117],[75.9472,36.11854],[75.93195,36.12759],[75.93241,36.13589],[75.95083,36.14143],[75.96513,36.14751],[75.96854,36.14923],[75.96302,36.15704],[75.96845,36.16379],[75.98281,36.16444],[75.98825,36.16288],[75.99695,36.16755],[76.00427,36.16668],[76.01257,36.17248],[76.02773,36.17329],[76.0299,36.17547],[76.018,36.17864],[76.01033,36.17995],[76.00472,36.18292],[76.00495,36.18815],[76.00998,36.19061],[76.01158,36.19474],[76.00693,36.19929],[76.00915,36.20773],[76.00671,36.22626],[76.00322,36.23229],[76.00972,36.23545],[76.01828,36.23308],[76.01962,36.23608],[76.02646,36.23619],[76.03331,36.23409],[76.03501,36.22867],[76.0435,36.22426],[76.05611,36.22318],[76.06211,36.22657],[76.05744,36.23072],[76.06033,36.23488],[76.05738,36.23959],[76.05786,36.24541],[76.04647,36.25372],[76.03782,36.26424],[76.026,36.26944],[76.01693,36.30065],[75.99534,36.30773],[75.99558,36.32385],[75.99238,36.33148],[75.98505,36.34132],[75.9846,36.35171],[75.99376,36.35602],[75.99811,36.3633],[75.99817,36.36885],[76.00098,36.37164],[76.00275,36.38106],[76.016,36.38881],[76.02719,36.39159],[76.02664,36.39799],[76.03322,36.40285],[76.03569,36.40771],[76.02767,36.41924],[76.02308,36.43575],[76.01626,36.45377],[76.00807,36.47345],[75.99383,36.48866],[75.98637,36.50469],[75.97371,36.51354],[75.9638,36.52294],[75.95939,36.53159],[75.9488,36.54135],[75.9393,36.55646],[75.92533,36.5644],[75.92441,36.57069],[75.94145,36.59153],[75.94201,36.59859],[75.93529,36.60055],[75.9285,36.60952],[75.92446,36.61409],[75.91818,36.62003],[75.91328,36.62762],[75.90691,36.63179],[75.89034,36.63744],[75.88088,36.64821],[75.87348,36.65568],[75.87201,36.66203],[75.86642,36.66894],[75.85662,36.67393],[75.84829,36.67353],[75.8395,36.68],[75.83207,36.68372],[75.82637,36.6924],[75.81699,36.69702],[75.81105,36.69778],[75.80277,36.71072],[75.79449,36.7121],[75.79204,36.71541],[75.76556,36.72533],[75.7466,36.74009],[75.73505,36.74582],[75.72076,36.75265],[75.71347,36.74651],[75.70411,36.74696],[75.69864,36.74682],[75.69042,36.75768],[75.67399,36.76509],[75.66442,36.76453],[75.65485,36.76782],[75.64704,36.76752],[75.63991,36.77053],[75.63082,36.7669],[75.62241,36.76878],[75.5867,36.76841],[75.57297,36.7664],[75.56902,36.76745],[75.56783,36.7751],[75.55118,36.77038],[75.53384,36.7717],[75.53368,36.76167],[75.52677,36.75669],[75.53154,36.75116],[75.53665,36.74205],[75.53577,36.73832],[75.53774,36.73371],[75.53215,36.72029],[75.51803,36.72203],[75.50823,36.72896],[75.50435,36.73682],[75.50048,36.73919],[75.49239,36.73428],[75.48629,36.7288],[75.47469,36.72332],[75.46901,36.71538],[75.46057,36.72011],[75.45278,36.72346],[75.4498,36.73177],[75.44451,36.74508],[75.43442,36.75013],[75.43531,36.75849],[75.42975,36.7615],[75.42762,36.76561],[75.4213,36.77053],[75.42144,36.77794],[75.42432,36.78371],[75.42735,36.79415],[75.42034,36.79907],[75.4235,36.80906],[75.42323,36.81904],[75.42993,36.82888],[75.42977,36.8453],[75.42258,36.86662],[75.42261,36.87409],[75.41956,36.88046],[75.422,36.88738],[75.41906,36.89085],[75.41064,36.89158],[75.39706,36.90026],[75.38623,36.90401],[75.39153,36.9175],[75.38723,36.9266],[75.39211,36.93266],[75.40592,36.93652],[75.41012,36.94615],[75.40295,36.94986],[75.40133,36.95491],[75.39421,36.95556],[75.39303,36.95083],[75.38613,36.94739],[75.37305,36.94723],[75.35856,36.9568],[75.34167,36.95662],[75.32341,36.9592],[75.31925,36.96745],[75.31441,36.96967],[75.30816,36.96477],[75.29644,36.9733],[75.28542,36.9747],[75.27711,36.972],[75.27064,36.97329],[75.26868,36.96818],[75.25917,36.96416],[75.25241,36.96454],[75.2485,36.96173],[75.23967,36.96114],[75.23497,36.95891],[75.21664,36.96543],[75.21616,36.97194],[75.19947,36.97632],[75.19422,36.97413],[75.17786,36.97879],[75.17318,36.98619],[75.16874,36.98608],[75.16019,36.98817],[75.15747,36.99712],[75.16332,37.00406],[75.16659,37.00561],[75.16779,37.0088],[75.16281,37.01638],[75.15234,37.01574],[75.14976,37.02346],[75.14444,37.02679],[75.13755,37.02695],[75.12929,37.0196],[75.12511,37.01259],[75.11607,37.0117],[75.11345,37.00665],[75.10464,37.01135],[75.09594,37.01096],[75.09068,37.00838],[75.08199,37.00791],[75.07146,37.00258],[75.05733,37.00177],[75.04457,37.00698],[75.04172,37.01412],[75.02913,37.01688],[75.01955,37.00976],[75.01134,37.00044],[75.00454,37.001],[74.99876,36.99772],[74.99587,36.99252],[74.98955,36.99006],[74.98263,36.98973],[74.97815,36.99643],[74.97366,36.99764],[74.96376,36.98788],[74.94328,36.98811],[74.92892,36.97945],[74.91636,36.97816],[74.92204,36.97107],[74.92359,36.96069],[74.92995,36.9547],[74.9315,36.94597],[74.92782,36.94478],[74.91658,36.94633],[74.92182,36.93554],[74.91951,36.93298],[74.91411,36.93343],[74.90802,36.9284],[74.89997,36.93425],[74.88608,36.93352],[74.88386,36.93663],[74.8858,36.94835],[74.8812,36.95294],[74.88026,36.95993],[74.87486,36.96499],[74.87358,36.97061],[74.86517,36.98019],[74.84853,37.01007],[74.83952,37.0174],[74.84631,37.02857],[74.84108,37.04275],[74.84087,37.0556],[74.8386,37.05967],[74.82535,37.05539],[74.79973,37.0522],[74.79108,37.04281],[74.79487,37.0311],[74.78801,37.02744],[74.78115,37.02761],[74.77343,37.02152],[74.7616,37.02475],[74.74892,37.02216],[74.73487,37.02177],[74.72581,37.02846],[74.72361,37.03405],[74.7173,37.03773],[74.71716,37.04195],[74.72152,37.05738],[74.70597,37.06597],[74.7068,37.07765],[74.69939,37.08359],[74.6689,37.08289],[74.65778,37.07788],[74.65146,37.07013],[74.64206,37.06855],[74.62304,37.06039],[74.62414,37.04572],[74.57155,37.02978],[74.55239,37.03074],[74.52958,37.02938],[74.52478,37.03235],[74.50283,37.07444],[74.48644,37.09338],[74.48127,37.09619],[74.46619,37.10433],[74.45533,37.11022],[74.43311,37.11574],[74.43222,37.12328],[74.44875,37.13169],[74.45671,37.14702],[74.48374,37.16424],[74.49433,37.17555],[74.49372,37.17966],[74.47872,37.18419],[74.4733,37.18761],[74.46978,37.19569],[74.47269,37.20249],[74.48078,37.21302],[74.48847,37.2173],[74.49258,37.22325],[74.49227,37.23083],[74.48664,37.23697],[74.48911,37.24191],[74.49847,37.23963],[74.50797,37.23919],[74.53221,37.24497],[74.54272,37.24274],[74.56194,37.23566],[74.57211,37.2343],[74.58033,37.23563],[74.59552,37.24327],[74.61411,37.24808],[74.62513,37.24633],[74.63772,37.23961],[74.6503,37.23652],[74.65992,37.23838],[74.6933,37.26733],[74.70469,37.27247],[74.72016,37.27666],[74.74725,37.27541],[74.76136,37.26955],[74.76505,37.268],[74.77727,37.25825],[74.78147,37.25202],[74.78888,37.2333],[74.79544,37.2265],[74.81469,37.21844],[74.82685,37.21694],[74.84494,37.22077],[74.87322,37.23016],[74.87855,37.23569],[74.89203,37.23294],[74.90583,37.23287],[74.91411,37.23639],[74.91722,37.2417],[74.91208,37.24701],[74.91559,37.25678],[74.91909,37.26108],[74.91374,37.26777],[74.91113,37.27501],[74.92605,37.28375],[74.93214,37.28239],[74.93998,37.2858],[74.94254,37.28915],[74.95127,37.2914],[74.9631,37.28758],[74.9697,37.29031],[74.97973,37.2854],[75.00718,37.29195],[75.02606,37.29796],[75.03275,37.30233],[75.04468,37.30588],[75.0518,37.30343],[75.06242,37.30616],[75.06362,37.31108],[75.07349,37.31162],[75.07739,37.3149],[75.08746,37.31517],[75.09685,37.31818],[75.11001,37.31463],[75.12318,37.31435],[75.12894,37.3241],[75.12166,37.33057],[75.12151,37.34024],[75.11503,37.34592],[75.10546,37.3576],[75.10411,37.36072],[75.09452,37.37011],[75.10218,37.37612],[75.11122,37.37777],[75.11487,37.3838],[75.12298,37.38574],[75.12896,37.39072],[75.13013,37.39898],[75.14297,37.40287],[75.15307,37.40895],[75.14627,37.4166],[75.14772,37.42099],[75.13961,37.43521],[75.13357,37.44289],[75.12884,37.44373],[75.12548,37.44838],[75.12466,37.46492],[75.10999,37.47293],[75.10399,37.4715],[75.09473,37.485],[75.08907,37.48515],[75.08272,37.49401],[75.08384,37.49749],[75.07878,37.50641],[75.07415,37.50738],[75.0632,37.51995],[75.06188,37.52549],[75.05718,37.52458],[75.04779,37.50806],[75.03312,37.50061],[75.0264,37.50829],[75.01926,37.50941],[75.0183,37.51707],[75.01103,37.52482],[75.00129,37.52452],[74.98869,37.53482],[74.98123,37.53478],[74.97378,37.53909],[74.96456,37.53891],[74.95489,37.54808],[74.95553,37.55345],[74.94415,37.55337],[74.93193,37.56857],[74.93483,37.57615],[74.9305,37.58617],[74.93903,37.60241],[74.92543,37.61285],[74.92695,37.62274],[74.92311,37.62946],[74.91085,37.63538],[74.90752,37.64346],[74.90191,37.64846],[74.90179,37.65617],[74.89606,37.6629],[74.90265,37.67786],[74.933,37.69202],[74.92216,37.70373],[74.93466,37.71708],[74.94744,37.71821],[74.95061,37.72477],[74.96106,37.72974],[74.96687,37.75164],[74.98487,37.7518],[74.98984,37.76174],[74.99644,37.76154],[75.00098,37.76895],[75.00964,37.76985],[75.01019,37.77735],[75.00594,37.77888],[74.98642,37.80778],[74.979,37.80584],[74.96609,37.8104],[74.95318,37.80737],[74.94576,37.81519],[74.94396,37.82404],[74.92522,37.82766],[74.92242,37.83887],[74.9131,37.85468],[74.91916,37.86225],[74.92867,37.8682],[74.93199,37.87821],[74.93777,37.88131],[74.93702,37.89634],[74.92967,37.90013],[74.91957,37.90012],[74.91221,37.9077],[74.92065,37.9169],[74.91664,37.92717],[74.92202,37.93623],[74.91778,37.94312],[74.91927,37.95131],[74.9132,37.95516],[74.91411,37.9621],[74.90748,37.9647],[74.90862,37.97045],[74.91522,37.97487],[74.91715,37.98547],[74.91289,37.99769],[74.9186,38.00693],[74.91537,38.01455],[74.91648,38.02438],[74.90648,38.03395],[74.89821,38.03271],[74.89268,38.03687],[74.88498,38.02322],[74.86903,38.02554],[74.86656,38.03076],[74.86669,38.03769],[74.85543,38.04359],[74.85175,38.05007],[74.8522,38.05709],[74.85652,38.06139],[74.85383,38.06909],[74.84495,38.07463],[74.83916,38.07259],[74.83406,38.07327],[74.82695,38.08245],[74.82052,38.08568],[74.81763,38.10026],[74.81954,38.10673],[74.8165,38.12021],[74.81827,38.12937],[74.80527,38.13813],[74.806,38.14742],[74.79786,38.15468],[74.8031,38.16589],[74.8056,38.17981],[74.80303,38.18767],[74.8034,38.198],[74.80098,38.20168],[74.7704,38.19619],[74.76077,38.2058],[74.7532,38.21488],[74.73393,38.21495],[74.71055,38.21287],[74.70659,38.22138],[74.69783,38.22827],[74.69541,38.2647],[74.70569,38.28254],[74.70362,38.29738],[74.69331,38.30845],[74.68831,38.3314],[74.66546,38.38021],[74.69529,38.42477],[74.665,38.43574],[74.65119,38.4467],[74.61747,38.44853],[74.50959,38.47187],[74.2849,38.59747],[74.25908,38.60175],[74.18643,38.64091],[74.12195,38.64171],[74.11515,38.6114],[74.09666,38.61247],[74.07679,38.60926],[74.07477,38.58672],[74.06315,38.57706],[74.07835,38.55131],[74.09075,38.54863],[74.08665,38.53763],[74.07844,38.53092],[74.0431,38.54387],[74.00675,38.53219],[74.00813,38.52404],[73.99441,38.52232],[73.97658,38.53609],[73.95668,38.53411],[73.92579,38.5418],[73.91928,38.55432],[73.90504,38.56487],[73.89766,38.58402],[73.88025,38.58565],[73.86147,38.57869],[73.83101,38.59802],[73.79849,38.61575],[73.80933,38.63779],[73.80239,38.64961],[73.80368,38.66358],[73.78197,38.68116],[73.77948,38.69017],[73.77175,38.69639],[73.77414,38.70134],[73.76657,38.70587],[73.77065,38.71708],[73.74311,38.73307],[73.75333,38.7496],[73.7557,38.77072],[73.76631,38.77042],[73.76707,38.77954],[73.75135,38.80043],[73.73777,38.8251],[73.72847,38.83377],[73.72908,38.84363],[73.71047,38.84654],[73.69872,38.85159],[73.70347,38.86393],[73.69998,38.87734],[73.71092,38.88808],[73.70812,38.89669],[73.71625,38.90588],[73.734,38.91293],[73.73859,38.92757],[73.75555,38.94007],[73.76867,38.93873],[73.77904,38.94165],[73.79354,38.92909],[73.80529,38.93415],[73.81986,38.91997],[73.83031,38.91648],[73.84709,38.94848],[73.85563,38.9527],[73.84439,38.9799],[73.84289,39.00044],[73.82766,39.02098],[73.81204,39.0423],[73.79207,39.0433],[73.78582,39.0315],[73.77471,39.02604],[73.76497,39.03231],[73.74973,39.02364],[73.73717,39.03661],[73.73834,39.05277],[73.72969,39.06697],[73.71555,39.07157],[73.71103,39.0783],[73.71914,39.09603],[73.71358,39.10223],[73.72038,39.11163],[73.70627,39.12243],[73.70588,39.13535],[73.67563,39.14348],[73.68588,39.16013],[73.67781,39.16722],[73.66011,39.16473],[73.65769,39.19275],[73.65147,39.20089],[73.64287,39.20416],[73.63856,39.21537],[73.63151,39.22871],[73.61293,39.24696],[73.58534,39.23735],[73.56187,39.24795],[73.56298,39.27126],[73.54831,39.27172],[73.53776,39.27749],[73.54908,39.29034],[73.56315,39.30638],[73.55284,39.31401],[73.55145,39.33989],[73.56789,39.34705],[73.53897,39.36456],[73.52242,39.37464],[73.50727,39.37437],[73.499,39.38047],[73.52711,39.39029],[73.5566,39.39374],[73.57098,39.39825],[73.57542,39.40475],[73.59085,39.41125],[73.59238,39.42093],[73.59665,39.42531],[73.58925,39.43605],[73.59696,39.44255],[73.5952,39.45343],[73.60169,39.46007],[73.61771,39.46441],[73.62686,39.47301],[73.64586,39.47597],[73.65524,39.46834],[73.66302,39.47216],[73.67034,39.46549],[73.67904,39.46306],[73.69322,39.46499],[73.73761,39.46056],[73.78247,39.46736],[73.79711,39.46673],[73.83852,39.47272],[73.87443,39.48294],[73.87692,39.49431],[73.87254,39.49932],[73.87476,39.51146],[73.89156,39.53362],[73.87848,39.54298],[73.91548,39.56595],[73.91395,39.58966],[73.94798,39.59898],[73.94695,39.61879],[73.94179,39.63225],[73.93698,39.66023],[73.92322,39.69398],[73.92594,39.70441],[73.91076,39.72213],[73.91896,39.7257],[73.90658,39.73277],[73.90245,39.74513],[73.87288,39.74607],[73.86222,39.75815],[73.84659,39.75944],[73.8392,39.7544],[73.84003,39.76769],[73.83262,39.78098],[73.84024,39.80371],[73.84923,39.83594],[73.86647,39.84971],[73.87959,39.85293],[73.88467,39.8637],[73.90487,39.86182],[73.91511,39.88327],[73.92123,39.90683],[73.90263,39.91459],[73.94208,39.96796],[73.95819,39.97501],[73.97581,40.00503],[73.93551,40.02405],[73.93606,40.03343],[73.95447,40.03439],[73.98303,40.04894],[73.99759,40.04545],[74.00453,40.06368],[74.01833,40.07245],[74.01184,40.07972],[74.04243,40.10065],[74.06928,40.07842],[74.10458,40.08775],[74.12233,40.11161],[74.14695,40.10502],[74.16169,40.11387],[74.21625,40.12692],[74.23062,40.12153],[74.25941,40.13398],[74.27792,40.10346],[74.30605,40.11389],[74.34289,40.09123],[74.41213,40.1366],[74.46254,40.16349],[74.46646,40.17747],[74.48489,40.18708],[74.49647,40.20351],[74.52588,40.20873],[74.56256,40.25328],[74.59237,40.2821],[74.62864,40.2821],[74.64404,40.27215],[74.66217,40.27372],[74.68598,40.29102],[74.67751,40.29508],[74.70005,40.32224],[74.69925,40.33684],[74.69193,40.34917],[74.7185,40.34827],[74.73684,40.34318],[74.74464,40.35215],[74.77188,40.34722],[74.79089,40.3538],[74.83164,40.33974],[74.85729,40.32359],[74.88136,40.33633],[74.91229,40.34592],[74.90097,40.35526],[74.88004,40.36459],[74.85602,40.39267],[74.84538,40.40178],[74.82513,40.41402],[74.79974,40.4312],[74.7874,40.45301],[74.80786,40.45531],[74.81809,40.4878],[74.81596,40.50671],[74.83904,40.52282],[74.88374,40.50679],[74.92158,40.49284],[74.9189,40.4857],[74.95153,40.46876],[74.98829,40.45182],[75,40.45768],[75.00363,40.45856],[75.01755,40.4657],[75.02668,40.45952],[75.02884,40.45591],[75.03678,40.45175],[75.04316,40.45359],[75.04532,40.44955],[75.05152,40.44462],[75.05634,40.44712],[75.06253,40.447],[75.06666,40.44401],[75.0756,40.4405],[75.08454,40.44222],[75.0897,40.43445],[75.1012,40.43684],[75.10661,40.44587],[75.11446,40.44804],[75.12079,40.45487],[75.12369,40.45752],[75.1279,40.45656],[75.14065,40.46209],[75.14359,40.45754],[75.14791,40.45613],[75.15894,40.45513],[75.17066,40.45674],[75.17693,40.45421],[75.18269,40.44829],[75.19278,40.44716],[75.20149,40.4476],[75.20695,40.44424],[75.21514,40.44873],[75.21907,40.44601],[75.223,40.44538],[75.23841,40.4483],[75.23809,40.45701],[75.23915,40.46102],[75.26046,40.47115],[75.25669,40.48035],[75.26158,40.48121],[75.26442,40.48312],[75.27068,40.48137],[75.27519,40.48154],[75.28038,40.47857],[75.30237,40.49121],[75.30246,40.49645],[75.29911,40.50064],[75.30753,40.51059],[75.31972,40.51844],[75.32985,40.52108],[75.32745,40.52636],[75.3278,40.53163],[75.33295,40.53199],[75.34154,40.53078],[75.34567,40.53567],[75.35185,40.53533],[75.36198,40.54282],[75.37142,40.54821],[75.37649,40.54843],[75.38087,40.545],[75.38786,40.55111],[75.39211,40.55252],[75.40014,40.55263],[75.40885,40.55326],[75.4171,40.55717],[75.42225,40.56121],[75.42946,40.56473],[75.43358,40.57099],[75.43874,40.5749],[75.44183,40.57881],[75.44595,40.5788],[75.45695,40.59027],[75.46109,40.60174],[75.46796,40.605],[75.47759,40.60617],[75.48378,40.61197],[75.48859,40.61881],[75.50679,40.62914],[75.52842,40.63738],[75.52842,40.64041],[75.53443,40.64495],[75.54778,40.65077],[75.55975,40.65503],[75.56791,40.65417],[75.57289,40.65739],[75.57924,40.65905],[75.5849,40.66252],[75.59331,40.66444],[75.59743,40.66116],[75.60155,40.66385],[75.60326,40.66103],[75.59622,40.65415],[75.59755,40.64996],[75.59476,40.64576],[75.60192,40.64626],[75.61115,40.64623],[75.61526,40.64033],[75.61114,40.63521],[75.61766,40.63186],[75.6192,40.62811],[75.62899,40.62383],[75.63242,40.61984],[75.62714,40.61468],[75.62048,40.60066],[75.62276,40.58116],[75.62389,40.57115],[75.62137,40.5651],[75.62434,40.56062],[75.62339,40.55317],[75.62313,40.54573],[75.6263,40.5435],[75.63634,40.53241],[75.64054,40.52783],[75.63856,40.52274],[75.64315,40.51299],[75.64705,40.50533],[75.6576,40.50358],[75.66772,40.49592],[75.67303,40.49921],[75.67834,40.49989],[75.68722,40.49897],[75.68575,40.49321],[75.69253,40.48484],[75.69852,40.48585],[75.70692,40.48007],[75.71395,40.47952],[75.7242,40.47364],[75.71883,40.46568],[75.7213,40.463],[75.70674,40.45304],[75.7101,40.44441],[75.70114,40.43434],[75.69117,40.43036],[75.69046,40.42506],[75.68149,40.42168],[75.67529,40.40431],[75.66944,40.39631],[75.67047,40.38621],[75.66977,40.37455],[75.66565,40.37178],[75.66116,40.3644],[75.66475,40.35757],[75.66354,40.35545],[75.67997,40.34541],[75.68167,40.3362],[75.68611,40.33432],[75.68506,40.3237],[75.6902,40.31622],[75.69498,40.31381],[75.70004,40.30316],[75.69141,40.29941],[75.68942,40.29415],[75.69224,40.28837],[75.6906,40.28495],[75.69527,40.28454],[75.69967,40.27962],[75.70609,40.28036],[75.70976,40.28581],[75.71756,40.28759],[75.72105,40.29013],[75.72248,40.29686],[75.72907,40.30202],[75.73496,40.30614],[75.7423,40.29409],[75.74529,40.29487],[75.74884,40.29893],[75.75513,40.30246],[75.76247,40.30063],[75.76981,40.30193],[75.77303,40.30036],[75.77831,40.30035],[75.78222,40.30559],[75.78794,40.30716],[75.78955,40.31082],[75.79728,40.31107],[75.80355,40.31276],[75.80494,40.31672],[75.80771,40.31806],[75.81119,40.32441],[75.81703,40.32412],[75.82561,40.32749],[75.82707,40.32295],[75.82986,40.3212],[75.82988,40.31771],[75.83197,40.31474],[75.84475,40.31151],[75.85081,40.31016],[75.8548,40.31194],[75.86492,40.31411],[75.87025,40.31053],[75.87729,40.3127],[75.88638,40.30597],[75.89402,40.30732],[75.90098,40.30291],[75.90943,40.3028],[75.90896,40.29483],[75.91213,40.29094],[75.91711,40.29477],[75.92209,40.2944],[75.92304,40.29867],[75.92879,40.30189],[75.92806,40.30572],[75.93145,40.31165],[75.929,40.31654],[75.92518,40.318],[75.9241,40.32155],[75.92508,40.32642],[75.92351,40.32963],[75.92582,40.3315],[75.92538,40.33494],[75.93274,40.33608],[75.94535,40.34251],[75.9463,40.35104],[75.95918,40.36078],[75.96038,40.36606],[75.95358,40.36986],[75.95433,40.37575],[75.96201,40.37446],[75.97416,40.38101],[75.98689,40.37879],[75.9907,40.38128],[75.99708,40.37736],[75.99719,40.36964],[75.99964,40.36762],[76.00224,40.36922],[76.00938,40.36375],[76.0126,40.35577],[76.01868,40.35388],[76.02132,40.35304],[76.03884,40.35516],[76.04675,40.35467],[76.04714,40.35809],[76.04253,40.36477],[76.04135,40.36936],[76.04566,40.37239],[76.05273,40.37227],[76.05876,40.37476],[76.05937,40.37784],[76.06826,40.38226],[76.07715,40.38354],[76.08575,40.37485],[76.10397,40.37716],[76.11224,40.37292],[76.11808,40.37524],[76.1253,40.37496],[76.13462,40.37171],[76.13825,40.36695],[76.14933,40.36614],[76.15973,40.36585],[76.16159,40.36783],[76.16835,40.36778],[76.17752,40.37923],[76.18566,40.37944],[76.18727,40.38226],[76.196,40.38895],[76.20795,40.39291],[76.21461,40.39516],[76.21485,40.39863],[76.22768,40.40377],[76.23226,40.41466],[76.25068,40.41841],[76.25302,40.4229],[76.26243,40.42437],[76.26679,40.43085],[76.27184,40.43889],[76.27976,40.43214],[76.2863,40.42853],[76.2834,40.42149],[76.27843,40.41237],[76.29166,40.40768],[76.29656,40.40508],[76.31244,40.40561],[76.31504,40.39442],[76.32252,40.3917],[76.32794,40.38688],[76.32271,40.37958],[76.32147,40.37149],[76.31508,40.36444],[76.32291,40.36263],[76.32615,40.35576],[76.32833,40.35025],[76.33189,40.34789],[76.33557,40.33844],[76.34362,40.34073],[76.33906,40.34946],[76.34296,40.35566],[76.35315,40.36399],[76.35585,40.3747],[76.36218,40.38182],[76.36578,40.38685],[76.37194,40.38691],[76.37879,40.38907],[76.38215,40.3854],[76.38005,40.37991],[76.38344,40.37494],[76.39332,40.37807],[76.40251,40.37807],[76.4075,40.38329],[76.40974,40.3859],[76.42486,40.3859],[76.43174,40.38824],[76.43931,40.38915],[76.44755,40.39379],[76.44447,40.39716],[76.44413,40.40052],[76.45375,40.40326],[76.45445,40.41175],[76.46373,40.41606],[76.46975,40.41324],[76.47859,40.42073],[76.48125,40.42716],[76.48667,40.42853],[76.49266,40.42652],[76.49796,40.42817],[76.50513,40.42729],[76.50389,40.43359],[76.50636,40.43831],[76.50471,40.44146],[76.50703,40.44518],[76.52438,40.45681],[76.53271,40.46184],[76.53761,40.4653],[76.53506,40.46733],[76.53547,40.47244],[76.53833,40.4743],[76.53581,40.48796],[76.5404,40.49021],[76.54018,40.49691],[76.54064,40.50412],[76.53151,40.50949],[76.53711,40.51617],[76.54202,40.52076],[76.54533,40.52266],[76.54864,40.53031],[76.55184,40.5315],[76.5493,40.53912],[76.5557,40.55094],[76.5676,40.55963],[76.57664,40.56854],[76.58567,40.57275],[76.58853,40.57644],[76.59276,40.57753],[76.59741,40.57972],[76.59698,40.58343],[76.5993,40.58714],[76.60516,40.59154],[76.60416,40.60242],[76.61278,40.6107],[76.62155,40.61225],[76.62825,40.61484],[76.63701,40.61248],[76.64521,40.61893],[76.65478,40.6212],[76.65148,40.63599],[76.64818,40.6492],[76.64906,40.65708],[76.65922,40.66184],[76.65426,40.67909],[76.665,40.68694],[76.67369,40.69374],[76.67087,40.69716],[76.66637,40.70746],[76.66187,40.70943],[76.65623,40.71523],[76.65316,40.71508],[76.6501,40.71701],[76.64603,40.72503],[76.64681,40.73639],[76.64394,40.73829],[76.64107,40.748],[76.63929,40.75104],[76.6437,40.75615],[76.64083,40.7617],[76.64463,40.76568],[76.64843,40.76602],[76.65397,40.76878],[76.66849,40.77378],[76.66821,40.78339],[76.6848,40.77765],[76.69298,40.78234],[76.70185,40.78755],[76.70508,40.79678],[76.709,40.80446],[76.70915,40.80771],[76.71334,40.80934],[76.71131,40.81301],[76.72783,40.81824],[76.72167,40.82034],[76.72065,40.82424],[76.71773,40.82957],[76.71825,40.84217],[76.73202,40.84532],[76.73141,40.84799],[76.72949,40.84813],[76.72497,40.85387],[76.7277,40.85787],[76.72837,40.86343],[76.73282,40.86665],[76.73933,40.87559],[76.73861,40.89189],[76.73269,40.89594],[76.72973,40.90005],[76.73088,40.90363],[76.73482,40.90809],[76.73499,40.91247],[76.73954,40.91907],[76.74409,40.91996],[76.74923,40.9287],[76.75469,40.93282],[76.75329,40.93848],[76.75117,40.94204],[76.75146,40.94741],[76.75381,40.95355],[76.76267,40.95341],[76.76953,40.95688],[76.77432,40.95723],[76.77671,40.96018],[76.78546,40.96139],[76.79146,40.96053],[76.79469,40.96253],[76.79586,40.96869],[76.80665,40.97199],[76.80826,40.97442],[76.818,40.97667],[76.82321,40.97598],[76.8368,40.97693],[76.84559,40.97373],[76.8536,40.97707],[76.84935,40.9805],[76.85129,40.98807],[76.84761,40.99648],[76.84976,40.99996],[76.85398,41.00137],[76.86069,41.01041],[76.86672,41.01531],[76.86611,41.02142],[76.86928,41.02468],[76.87314,41.02535],[76.8805,41.02825],[76.88718,41.02493],[76.89262,41.01735],[76.90355,41.0178],[76.90938,41.02042],[76.91315,41.02044],[76.91864,41.0241],[76.92757,41.02464],[76.92662,41.02582],[76.93254,41.02959],[76.93958,41.03092],[76.94541,41.03408],[76.9454,41.03815],[76.95294,41.03963],[76.95346,41.04464],[76.95946,41.04655],[76.96029,41.05305],[76.96319,41.05852],[76.97055,41.06036],[76.98114,41.06561],[76.98899,41.06931],[76.99301,41.07204],[77.00086,41.0708],[77.00427,41.06682],[77.01282,41.06491],[77.01332,41.05842],[77.03284,41.05838],[77.04035,41.06274],[77.04772,41.06214],[77.05509,41.06259],[77.06212,41.06018],[77.06983,41.05985],[77.07764,41.06209],[77.08477,41.06279],[77.08562,41.05945],[77.09129,41.05457],[77.0985,41.05359],[77.10674,41.04854],[77.10211,41.04394],[77.10022,41.03831],[77.10734,41.03484],[77.11035,41.03138],[77.1146,41.03042],[77.11816,41.02688],[77.12322,41.02756],[77.13009,41.026],[77.13902,41.02599],[77.14143,41.01976],[77.14796,41.02027],[77.15312,41.01714],[77.16378,41.01349],[77.16723,41.01086],[77.17206,41.01185],[77.17966,41.01151],[77.18452,41.00961],[77.18539,41.02326],[77.20471,41.02244],[77.21471,41.02643],[77.21834,41.02558],[77.22256,41.02878],[77.22952,41.03043],[77.23653,41.02731],[77.24312,41.02705],[77.24504,41.02304],[77.23873,41.01643],[77.24313,41.01383],[77.25748,41.01486],[77.26429,41.01277],[77.26079,41.00991],[77.26248,41.00408],[77.26959,41.00404],[77.27602,41.00142],[77.29069,41.00372],[77.29494,41.00668],[77.30358,41.00894],[77.30619,41.00851],[77.3123,41.01089],[77.31085,41.01741],[77.31788,41.01916],[77.32215,41.02194],[77.32368,41.02446],[77.33166,41.02832],[77.33894,41.02802],[77.34288,41.03119],[77.35093,41.0354],[77.35589,41.04064],[77.36215,41.03808],[77.37356,41.0407],[77.37615,41.03264],[77.37985,41.02758],[77.38355,41.03029],[77.39129,41.03129],[77.39766,41.03385],[77.40047,41.03788],[77.40875,41.03756],[77.41427,41.03413],[77.41104,41.02933],[77.41467,41.02609],[77.42125,41.02788],[77.42548,41.02526],[77.42844,41.02104],[77.44467,41.01884],[77.44691,41.02271],[77.46031,41.02061],[77.46996,41.02158],[77.47353,41.01694],[77.46997,41.0129],[77.46642,41.0117],[77.46412,41.00231],[77.46776,40.99856],[77.47854,40.99562],[77.48451,40.99785],[77.4922,40.99646],[77.5036,40.99888],[77.51157,40.99766],[77.52492,41.00262],[77.52798,41.00032],[77.535,41.00176],[77.54133,41.0001],[77.55194,41.00453],[77.55755,41.00192],[77.56522,40.99568],[77.57358,40.99617],[77.58399,40.99252],[77.58377,41.00176],[77.58813,41.00417],[77.59695,41.00166],[77.60646,41.0095],[77.6137,41.00928],[77.61751,41.0044],[77.62405,41.00196],[77.63403,41.00729],[77.64331,41.01106],[77.64711,41.01432],[77.65186,41.00795],[77.65936,41.00157],[77.66699,41.00361],[77.67461,41.00409],[77.68781,41.00349],[77.69334,41.00684],[77.69749,41.00604],[77.701,41.00652],[77.70114,41.01007],[77.70888,41.01442],[77.71457,41.0138],[77.71957,41.0194],[77.72889,41.02178],[77.73104,41.02966],[77.7413,41.02466],[77.74643,41.02397],[77.7495,41.02122],[77.7565,41.01738],[77.76487,41.01433],[77.76884,41.01663],[77.7687,41.01997],[77.7739,41.02251],[77.77876,41.02168],[77.78119,41.02463],[77.77898,41.02741],[77.77951,41.02914],[77.78682,41.03732],[77.78711,41.04067],[77.79151,41.04297],[77.7962,41.04862],[77.80294,41.04738],[77.80872,41.04287],[77.81583,41.04434],[77.82041,41.05025],[77.8195,41.05305],[77.82479,41.05857],[77.81805,41.06597],[77.81132,41.06922],[77.80733,41.07481],[77.80059,41.09023],[77.80227,41.10966],[77.80463,41.11719],[77.80317,41.12345],[77.81,41.12998],[77.81442,41.13728],[77.83154,41.15027],[77.84043,41.15551],[77.85339,41.15719],[77.87459,41.16455],[77.88253,41.16979],[77.88635,41.17554],[77.89463,41.17871],[77.91116,41.18549],[77.91777,41.18562],[77.92186,41.18758],[77.93075,41.18591],[77.9403,41.18724],[77.95775,41.19063],[77.96352,41.18885],[77.96687,41.18473],[77.97262,41.18086],[77.98091,41.18313],[77.98301,41.18539],[77.98938,41.18717],[77.99095,41.18895],[77.99836,41.19227],[78.00618,41.19316],[78.00871,41.18973],[78.0196,41.19189],[78.02592,41.19657],[78.02744,41.20176],[78.0293,41.20256],[78.03367,41.20011],[78.03872,41.20129],[78.0546,41.21047],[78.06391,41.21196],[78.072,41.21451],[78.08902,41.22429],[78.11143,41.22598],[78.11791,41.22695],[78.12439,41.22715],[78.12748,41.23599],[78.13057,41.23915],[78.12971,41.24422],[78.13365,41.24567],[78.13314,41.24996],[78.13125,41.25218],[78.13193,41.26172],[78.13055,41.26378],[78.13329,41.27048],[78.13208,41.27796],[78.13293,41.28492],[78.13875,41.28749],[78.13863,41.29513],[78.13782,41.30483],[78.13757,41.31289],[78.1466,41.32108],[78.14807,41.32387],[78.14886,41.32976],[78.1517,41.33256],[78.1518,41.33484],[78.15756,41.33841],[78.15646,41.3492],[78.15261,41.35419],[78.14863,41.36132],[78.14533,41.36639],[78.15514,41.37389],[78.1549,41.38124],[78.17269,41.38746],[78.18808,41.39393],[78.19522,41.39371],[78.2113,41.39607],[78.21738,41.39598],[78.2262,41.40104],[78.23905,41.40035],[78.2452,41.39376],[78.25721,41.39176],[78.26303,41.39284],[78.27809,41.38842],[78.28525,41.39198],[78.29054,41.39196],[78.29358,41.38886],[78.30006,41.38628],[78.30957,41.38936],[78.31392,41.38606],[78.31622,41.38275],[78.3208,41.38078],[78.33637,41.39529],[78.34244,41.39481],[78.34959,41.39149],[78.35523,41.39163],[78.36155,41.39357],[78.36712,41.39117],[78.37608,41.39255],[78.38229,41.39135],[78.38717,41.39539],[78.3927,41.40102],[78.3893,41.40819],[78.3938,41.41259],[78.40105,41.41442],[78.40661,41.40932],[78.42433,41.41617],[78.429,41.41375],[78.43676,41.41699],[78.44201,41.41655],[78.44567,41.41325],[78.45001,41.41303],[78.46373,41.42009],[78.47813,41.42562],[78.49391,41.43062],[78.50642,41.43267],[78.50778,41.43408],[78.50528,41.43535],[78.51226,41.43933],[78.51984,41.44007],[78.52742,41.43926],[78.5326,41.44206],[78.53072,41.44604],[78.53296,41.45156],[78.53948,41.45979],[78.54601,41.46596],[78.55254,41.47008],[78.5534,41.47368],[78.557,41.47625],[78.56549,41.47978],[78.57397,41.48176],[78.58005,41.4804],[78.58054,41.47505],[78.58412,41.46866],[78.59295,41.46958],[78.59903,41.46742],[78.60711,41.46932],[78.60971,41.47225],[78.61745,41.47441],[78.62039,41.47657],[78.62882,41.47449],[78.63244,41.47138],[78.64026,41.47098],[78.64464,41.46903],[78.64972,41.47326],[78.64755,41.47767],[78.655,41.48155],[78.65799,41.49033],[78.66325,41.4996],[78.67092,41.50346],[78.67653,41.50835],[78.68191,41.51003],[78.69141,41.51067],[78.69473,41.51594],[78.70354,41.5207],[78.7031,41.52321],[78.6951,41.52468],[78.68951,41.53053],[78.69632,41.53962],[78.69939,41.5398],[78.70195,41.54605],[78.71284,41.55252],[78.7176,41.55139],[78.72342,41.55442],[78.73113,41.5549],[78.73842,41.55104],[78.7411,41.55277],[78.74722,41.55347],[78.74846,41.55642],[78.75994,41.55707],[78.77393,41.55893],[78.77714,41.56089],[78.78596,41.56187],[78.78968,41.56416],[78.79635,41.55914],[78.80517,41.55996],[78.81606,41.55874],[78.81644,41.56134],[78.82281,41.56521],[78.82438,41.57165],[78.83678,41.57142],[78.84162,41.57788],[78.85166,41.57897],[78.85365,41.5822],[78.85221,41.59056],[78.85483,41.59496],[78.86201,41.59755],[78.87487,41.59217],[78.87636,41.59493],[78.88541,41.59564],[78.88691,41.59943],[78.88491,41.60415],[78.89044,41.60856],[78.89801,41.61205],[78.9066,41.61251],[78.91124,41.61968],[78.92145,41.623],[78.91937,41.62653],[78.91945,41.63195],[78.92879,41.63262],[78.92984,41.63348],[78.92917,41.63485],[78.93076,41.63618],[78.92919,41.63803],[78.9283,41.64182],[78.93256,41.64123],[78.9363,41.63993],[78.94183,41.64497],[78.95079,41.64539],[78.95338,41.64894],[78.95913,41.65148],[78.96352,41.65043],[78.96886,41.65424],[78.97599,41.6546],[78.99067,41.66369],[78.99794,41.66043],[78.99667,41.65667],[79.00432,41.65701],[79.00614,41.65838],[79.01735,41.65701],[79.02124,41.6594],[79.0194,41.66829],[79.02536,41.66684],[79.02936,41.67048],[79.0269,41.67537],[79.02925,41.67872],[79.04424,41.68016],[79.04796,41.68523],[79.05511,41.68466],[79.059,41.68907],[79.06805,41.68808],[79.07325,41.69016],[79.08258,41.68915],[79.08819,41.69484],[79.09305,41.69665],[79.09586,41.70001],[79.1033,41.70041],[79.11143,41.70236],[79.12425,41.72214],[79.13363,41.7234],[79.14141,41.7207],[79.14977,41.7232],[79.16184,41.72624],[79.16293,41.72877],[79.173,41.72926],[79.17598,41.72746],[79.18124,41.72835],[79.18559,41.72367],[79.20642,41.72468],[79.21695,41.7262],[79.21947,41.73129],[79.22718,41.73318],[79.23077,41.73814],[79.22834,41.7414],[79.2338,41.74337],[79.2489,41.74488],[79.25198,41.74922],[79.2482,41.75459],[79.24888,41.75714],[79.25668,41.76062],[79.25989,41.76006],[79.27203,41.76411],[79.27468,41.7699],[79.27046,41.77364],[79.27197,41.77549],[79.27548,41.77309],[79.28444,41.77855],[79.29478,41.79066],[79.30897,41.79564],[79.31218,41.80062],[79.31881,41.80433],[79.32271,41.81059],[79.33475,41.80668],[79.34,41.80072],[79.3473,41.79321],[79.35323,41.79365],[79.35688,41.80026],[79.36466,41.80422],[79.37175,41.81022],[79.38182,41.81302],[79.39149,41.82415],[79.3916,41.829],[79.39732,41.83002],[79.40946,41.84127],[79.42462,41.84191],[79.4391,41.84255],[79.45083,41.84677],[79.45635,41.84734],[79.4598,41.85096],[79.46462,41.85303],[79.47399,41.85057],[79.48749,41.84402],[79.48278,41.83925],[79.4849,41.83713],[79.49726,41.83629],[79.50757,41.838],[79.53711,41.83888],[79.54423,41.83774],[79.55548,41.84274],[79.5681,41.84263],[79.57316,41.84711],[79.59394,41.85302],[79.59892,41.85535],[79.60562,41.85589],[79.61438,41.86001],[79.61704,41.86603],[79.62176,41.87205],[79.61747,41.87541],[79.61946,41.87883],[79.62389,41.88079],[79.63126,41.8874],[79.63322,41.89121],[79.63725,41.8935],[79.6475,41.89344],[79.65775,41.89542],[79.66835,41.8946],[79.67963,41.89684],[79.68572,41.89724],[79.69318,41.89815],[79.69951,41.89587],[79.70447,41.89564],[79.71819,41.89975],[79.72092,41.90233],[79.72606,41.90004],[79.7312,41.90082],[79.74012,41.90288],[79.74664,41.90058],[79.75316,41.90186],[79.76689,41.89164],[79.77101,41.89267],[79.77715,41.9001],[79.78365,41.901],[79.7881,41.91162],[79.7963,41.91317],[79.79559,41.9165],[79.80314,41.92072],[79.80279,41.92513],[79.80776,41.93091],[79.80244,41.93669],[79.80481,41.94029],[79.81266,41.94542],[79.81365,41.94928],[79.81827,41.94967],[79.81611,41.95881],[79.81739,41.96539],[79.82136,41.96755],[79.82506,41.96582],[79.83137,41.96955],[79.83418,41.97728],[79.84177,41.9809],[79.84762,41.97862],[79.84995,41.98329],[79.85227,41.9854],[79.84532,42.00027],[79.84806,42.00295],[79.84805,42.00717],[79.84596,42.01357],[79.85004,42.01871],[79.85649,42.02266],[79.87461,42.02917],[79.87921,42.03064],[79.88037,42.03415],[79.88782,42.03514],[79.89595,42.03459],[79.90992,42.04221],[79.92274,42.04169],[79.93122,42.03964],[79.94987,42.0455],[79.96092,42.04384],[79.96921,42.04065],[79.97635,42.04537],[79.99021,42.04417],[79.99509,42.04076],[80.01778,42.04211],[80.02466,42.04891],[80.03841,42.04755],[80.0428,42.04921],[80.05158,42.04588],[80.06655,42.04408],[80.07362,42.04687],[80.08471,42.0424],[80.09649,42.03946],[80.10562,42.03856],[80.11818,42.03765],[80.12903,42.03496],[80.13919,42.03124],[80.14738,42.03376],[80.14869,42.03576],[80.15447,42.03521],[80.16158,42.03699],[80.16663,42.03519],[80.17467,42.03875],[80.18863,42.03714],[80.19915,42.03758],[80.20322,42.04079],[80.20934,42.04248],[80.21265,42.04839],[80.22043,42.05584],[80.22753,42.06329],[80.22391,42.06633],[80.21136,42.06988],[80.20481,42.07646],[80.18899,42.08229],[80.17179,42.09423],[80.16696,42.09916],[80.158,42.11275],[80.15214,42.11565],[80.14902,42.11905],[80.15115,42.12467],[80.15122,42.12978],[80.15163,42.13361],[80.14793,42.13949],[80.14395,42.14156],[80.13791,42.14821],[80.1396,42.15308],[80.1358,42.15693],[80.13093,42.1682],[80.14632,42.17012],[80.16412,42.16974],[80.16372,42.206],[80.16884,42.20951],[80.17464,42.21098],[80.1806,42.22212],[80.20074,42.22972],[80.21744,42.22817],[80.21973,42.22268],[80.22957,42.21719],[80.23381,42.21877],[80.24313,42.21803],[80.24972,42.21882],[80.25257,42.22141],[80.2616,42.22364],[80.272,42.22638],[80.27495,42.23034],[80.27893,42.232],[80.28421,42.23573],[80.28538,42.24453],[80.28084,42.2474],[80.29009,42.26024],[80.28442,42.2725],[80.27943,42.28171],[80.26772,42.28504],[80.2601,42.2927],[80.26002,42.30418],[80.26994,42.3084],[80.27044,42.31305],[80.27893,42.31487],[80.2842,42.31882],[80.27997,42.32486],[80.2758,42.32357],[80.26901,42.32766],[80.26428,42.32768],[80.25955,42.33177],[80.25277,42.33434],[80.2469,42.34105],[80.23729,42.34055],[80.23659,42.34766],[80.23246,42.34869],[80.22971,42.35327],[80.2297,42.35734],[80.22623,42.35841],[80.2289,42.36309],[80.22599,42.36635],[80.23804,42.37998],[80.23674,42.38339],[80.2399,42.38782],[80.2355,42.39224],[80.23014,42.39172],[80.22753,42.39778],[80.23144,42.4004],[80.23399,42.40402],[80.23096,42.4052],[80.22588,42.40892],[80.22327,42.40874],[80.21558,42.41311],[80.21462,42.42388],[80.20514,42.42818],[80.21036,42.4373],[80.2094,42.44338],[80.21269,42.44718],[80.21255,42.453],[80.2083,42.45756],[80.20891,42.46238],[80.20679,42.46871],[80.21617,42.47299],[80.21937,42.48132],[80.2291,42.48711],[80.23516,42.49077],[80.23608,42.49898],[80.23939,42.50146],[80.24271,42.50546],[80.24946,42.50161],[80.25896,42.5003],[80.26571,42.50328],[80.27355,42.51465],[80.27452,42.51943],[80.25963,42.51518],[80.25299,42.51852],[80.25044,42.52328],[80.23896,42.52729],[80.23435,42.52572],[80.22209,42.53213],[80.21098,42.54494],[80.20124,42.55573],[80.20031,42.56113],[80.19942,42.56295],[80.19441,42.56579],[80.1892,42.57096],[80.18565,42.57877],[80.18197,42.58123],[80.17898,42.59053],[80.17942,42.59375],[80.17775,42.60363],[80.17196,42.60921],[80.1676,42.61894],[80.16255,42.62514],[80.16206,42.63146],[80.16765,42.63985],[80.16819,42.64435],[80.16804,42.64885],[80.17461,42.65329],[80.17338,42.66057],[80.17517,42.66471],[80.17421,42.66785],[80.1782,42.67232],[80.18424,42.67628],[80.19289,42.6832],[80.20334,42.68543],[80.20528,42.68879],[80.2165,42.69013],[80.21947,42.69197],[80.22748,42.69339],[80.22931,42.69582],[80.22565,42.70252],[80.22243,42.71339],[80.23296,42.73563],[80.25378,42.78258],[80.26145,42.82446],[80.27554,42.83807],[80.32241,42.8338],[80.33358,42.82953],[80.40571,42.83258],[80.4284,42.85275],[80.50291,42.87592],[80.54704,42.88449],[80.60215,42.89507],[80.59896,42.89399],[80.59714,42.89744],[80.59763,42.90032],[80.59503,42.9037],[80.59448,42.90658],[80.59094,42.91357],[80.58076,42.91699],[80.57791,42.9188],[80.57083,42.9199],[80.56118,42.92855],[80.545,42.93368],[80.53935,42.93609],[80.52737,42.9384],[80.51229,42.9387],[80.4979,42.94202],[80.49451,42.94456],[80.48837,42.9441],[80.47472,42.9502],[80.47488,42.95185],[80.45048,42.96268],[80.43738,42.96776],[80.43454,42.9714],[80.41581,42.98269],[80.41406,42.98568],[80.40443,42.99007],[80.39274,42.99647],[80.38858,43.00373],[80.3802,43.02175],[80.393,43.02644],[80.39481,43.03616],[80.39834,43.04035],[80.39843,43.04504],[80.40582,43.05091],[80.4091,43.05729],[80.43214,43.0644],[80.43995,43.06731],[80.44296,43.06771],[80.44838,43.07263],[80.45791,43.07554],[80.46539,43.07211],[80.47355,43.0722],[80.47759,43.06903],[80.48369,43.06987],[80.48628,43.0718],[80.49448,43.07404],[80.49925,43.07878],[80.50627,43.08003],[80.50986,43.08528],[80.52058,43.08741],[80.52559,43.09073],[80.52649,43.09405],[80.5327,43.09462],[80.53824,43.10019],[80.53983,43.09838],[80.54829,43.09707],[80.55372,43.10068],[80.5564,43.10228],[80.55737,43.10689],[80.5604,43.1105],[80.56059,43.1158],[80.57259,43.11859],[80.57772,43.12739],[80.58661,43.13648],[80.59202,43.13863],[80.60208,43.13514],[80.60938,43.14217],[80.61793,43.14247],[80.62304,43.14026],[80.6297,43.14105],[80.63094,43.14576],[80.63698,43.14746],[80.64199,43.14516],[80.64771,43.14796],[80.65754,43.14977],[80.66498,43.14881],[80.6731,43.14385],[80.68367,43.14419],[80.69905,43.14303],[80.70412,43.1463],[80.71537,43.13403],[80.72277,43.13406],[80.73316,43.14071],[80.74218,43.14736],[80.75086,43.14625],[80.76481,43.14569],[80.77041,43.1404],[80.78151,43.13762],[80.7853,43.14102],[80.78841,43.14243],[80.78808,43.14708],[80.79307,43.15542],[80.79188,43.16076],[80.79672,43.16407],[80.79399,43.17048],[80.79676,43.17338],[80.80349,43.17493],[80.80747,43.17699],[80.79759,43.1846],[80.79327,43.19383],[80.787,43.20069],[80.78621,43.20305],[80.78817,43.2079],[80.78315,43.2161],[80.7826,43.22756],[80.78617,43.23602],[80.79015,43.23634],[80.78974,43.23838],[80.78568,43.24039],[80.78163,43.24791],[80.77812,43.24919],[80.77255,43.25547],[80.77171,43.25904],[80.76454,43.26667],[80.76575,43.27286],[80.76972,43.27706],[80.77342,43.2799],[80.77094,43.28975],[80.77429,43.29634],[80.77393,43.30087],[80.77837,43.30389],[80.77939,43.30841],[80.77834,43.31193],[80.76631,43.31607],[80.75722,43.31539],[80.75018,43.3192],[80.74605,43.31598],[80.73162,43.31699],[80.71789,43.3175],[80.70414,43.31903],[80.69793,43.31562],[80.68931,43.32247],[80.68344,43.32781],[80.68324,43.33251],[80.68579,43.33721],[80.69427,43.34255],[80.69589,43.3459],[80.70202,43.35032],[80.70677,43.35674],[80.7053,43.36358],[80.71692,43.3725],[80.72343,43.37497],[80.73062,43.38993],[80.73473,43.39291],[80.733,43.40288],[80.73695,43.41111],[80.73246,43.41713],[80.73484,43.42265],[80.73412,43.43418],[80.74523,43.44197],[80.75634,43.44727],[80.75665,43.4517],[80.75284,43.45763],[80.75277,43.4655],[80.72043,43.52243],[80.68741,43.57738],[80.60436,43.6998],[80.52268,43.82223],[80.52105,43.83969],[80.51941,43.85914],[80.51202,43.86634],[80.50685,43.87479],[80.51161,43.8823],[80.50808,43.90624],[80.49279,43.91503],[80.48471,43.92778],[80.4732,43.93757],[80.47628,43.94758],[80.48143,43.95611],[80.47044,43.96823],[80.45945,43.97517],[80.45257,43.98805],[80.44911,44.00889],[80.45593,44.02998],[80.44936,44.03502],[80.45475,44.04509],[80.44494,44.06722],[80.4411,44.06905],[80.44511,44.07467],[80.41582,44.0978],[80.39477,44.11157],[80.39603,44.11763],[80.40043,44.12854],[80.40141,44.13256],[80.4053,44.14369],[80.40335,44.15409],[80.4021,44.16301],[80.40187,44.16765],[80.40005,44.17003],[80.39837,44.18415],[80.39875,44.19335],[80.39779,44.19402],[80.39737,44.20161],[80.40214,44.21391],[80.40416,44.2262],[80.40483,44.23333],[80.4031,44.24169],[80.40617,44.24907],[80.40478,44.25276],[80.40587,44.2921],[80.39817,44.30397],[80.39253,44.3124],[80.39097,44.3229],[80.3901,44.33439],[80.3875,44.33876],[80.38628,44.35442],[80.38415,44.37485],[80.38068,44.382],[80.37861,44.39495],[80.37723,44.41182],[80.37103,44.41761],[80.37255,44.4219],[80.36858,44.43208],[80.36681,44.44067],[80.35817,44.4478],[80.35523,44.4565],[80.34954,44.45982],[80.35115,44.47259],[80.34727,44.48046],[80.34791,44.48294],[80.35475,44.4903],[80.36159,44.49472],[80.36738,44.50405],[80.37061,44.51141],[80.36949,44.51852],[80.36836,44.52416],[80.371,44.52789],[80.3709,44.5326],[80.37647,44.53609],[80.37822,44.54567],[80.38081,44.55094],[80.37997,44.55329],[80.38688,44.5576],[80.38554,44.56143],[80.39316,44.5681],[80.39173,44.57595],[80.39376,44.5833],[80.39167,44.59114],[80.399,44.59509],[80.40506,44.60146],[80.41182,44.60881],[80.40642,44.61328],[80.40446,44.61725],[80.39873,44.62172],[80.39642,44.62912],[80.39103,44.63175],[80.38289,44.63585],[80.38172,44.6416],[80.37765,44.64309],[80.37425,44.64823],[80.36741,44.65484],[80.35805,44.65931],[80.35075,44.66573],[80.34894,44.67191],[80.34576,44.67468],[80.34402,44.67547],[80.34397,44.68048],[80.33633,44.69001],[80.33408,44.68953],[80.31242,44.70372],[80.2882,44.709],[80.2746,44.7141],[80.26236,44.71822],[80.24875,44.72015],[80.24298,44.72136],[80.23789,44.72062],[80.22806,44.72638],[80.21891,44.73067],[80.21079,44.73765],[80.20473,44.74219],[80.20257,44.74225],[80.19149,44.75108],[80.19299,44.75579],[80.19723,44.75757],[80.19748,44.76114],[80.19352,44.76486],[80.18216,44.7796],[80.17613,44.78326],[80.17627,44.78984],[80.17313,44.79422],[80.16878,44.79435],[80.16375,44.79934],[80.16673,44.80349],[80.1648,44.80911],[80.16149,44.81277],[80.16316,44.8201],[80.16758,44.82596],[80.16684,44.83913],[80.16405,44.84159],[80.15789,44.84193],[80.15311,44.83934],[80.15315,44.83515],[80.14804,44.83144],[80.14706,44.82676],[80.12655,44.82349],[80.12457,44.81631],[80.11823,44.81317],[80.11325,44.80955],[80.10381,44.81103],[80.09644,44.8135],[80.08734,44.81182],[80.07825,44.81257],[80.07277,44.80927],[80.05974,44.80742],[80.05288,44.80156],[80.04122,44.80057],[80.03301,44.80395],[80.01939,44.79845],[80.01893,44.79355],[80.0068,44.79073],[80.00108,44.78992],[79.99604,44.79155],[79.99334,44.79416],[79.99269,44.79822],[79.99758,44.80343],[79.99912,44.81628],[79.99654,44.82036],[79.99602,44.82396],[79.98914,44.82385],[79.98226,44.83055],[79.9771,44.83166],[79.97177,44.83659],[79.96781,44.83812],[79.96642,44.84179],[79.95773,44.84405],[79.95832,44.84851],[79.95569,44.85062],[79.95198,44.84997],[79.95032,44.84834],[79.94511,44.84962],[79.94394,44.85174],[79.94689,44.85775],[79.94592,44.86589],[79.95213,44.86837],[79.95422,44.87329],[79.96184,44.8768],[79.96368,44.87896],[79.96415,44.8816],[79.9538,44.88193],[79.94208,44.88616],[79.93105,44.88673],[79.92894,44.89266],[79.91992,44.89539],[79.91365,44.90104],[79.90385,44.90115],[79.89352,44.89457],[79.88594,44.89383],[79.88807,44.90317],[79.88196,44.91106],[79.89142,44.91801],[79.90225,44.92399],[79.90538,44.92867],[79.91506,44.92731],[79.92447,44.93142],[79.92957,44.93293],[79.93467,44.9325],[79.93894,44.93776],[79.9432,44.93815],[79.94816,44.94389],[79.9448,44.94749],[79.94483,44.95196],[79.95309,44.95322],[79.95619,44.95718],[79.95654,44.96163],[79.96237,44.96312],[79.96959,44.96607],[79.9744,44.96202],[79.9846,44.96702],[79.9893,44.97882],[80.01382,44.98057],[80.01406,44.98521],[80.01831,44.98825],[80.01911,44.9913],[80.0276,44.99327],[80.03149,44.9963],[80.03412,44.99637],[80.03332,45.00031],[80.03905,45.00299],[80.0458,45.00178],[80.04972,45.00367],[80.05433,45.01235],[80.05619,45.01423],[80.06054,45.01283],[80.0649,45.01336],[80.07566,45.01007],[80.0751,45.00727],[80.08237,45.00756],[80.08497,45.00504],[80.09108,45.00718],[80.09719,45.00786],[80.09396,45.02712],[80.08798,45.02939],[80.0867,45.03307],[80.09092,45.03773],[80.08896,45.04626],[80.09689,45.04761],[80.10618,45.04531],[80.1134,45.0489],[80.11788,45.04132],[80.12286,45.03948],[80.12785,45.03957],[80.13023,45.04504],[80.13467,45.04711],[80.13944,45.0532],[80.13935,45.05761],[80.14893,45.05303],[80.15232,45.05329],[80.15674,45.04725],[80.16974,45.03757],[80.18113,45.0426],[80.18528,45.03505],[80.19149,45.02846],[80.19566,45.02717],[80.20259,45.03025],[80.21363,45.02289],[80.23189,45.03374],[80.2358,45.02972],[80.23972,45.02715],[80.25463,45.04109],[80.26002,45.0483],[80.2613,45.05405],[80.26667,45.05399],[80.27712,45.05931],[80.2855,45.06123],[80.29285,45.06655],[80.29207,45.06509],[80.31296,45.06824],[80.31722,45.07006],[80.32561,45.06945],[80.32982,45.0636],[80.32815,45.06019],[80.33041,45.0546],[80.33335,45.05338],[80.33859,45.04584],[80.34521,45.04023],[80.35955,45.03971],[80.37114,45.04308],[80.37454,45.041],[80.37898,45.04142],[80.38136,45.03989],[80.38785,45.04558],[80.39256,45.04445],[80.39869,45.04704],[80.40276,45.04721],[80.40782,45.05773],[80.41749,45.06108],[80.42717,45.06638],[80.43338,45.07254],[80.43821,45.0758],[80.44304,45.08312],[80.44236,45.09045],[80.43792,45.09535],[80.43759,45.09734],[80.44545,45.10024],[80.44918,45.1041],[80.45635,45.10626],[80.46215,45.11231],[80.47821,45.11398],[80.48418,45.12329],[80.48877,45.12679],[80.49728,45.11865],[80.49923,45.11395],[80.50599,45.11118],[80.50966,45.106],[80.51471,45.10517],[80.52802,45.10745],[80.54806,45.11101],[80.55774,45.11109],[80.56193,45.11263],[80.57528,45.10967],[80.58177,45.10573],[80.59993,45.1047],[80.60292,45.10736],[80.60729,45.10904],[80.6148,45.10782],[80.62024,45.11532],[80.62466,45.11822],[80.63305,45.11459],[80.63724,45.11616],[80.63659,45.11913],[80.64741,45.12132],[80.65549,45.12158],[80.66005,45.12461],[80.66666,45.12426],[80.67065,45.12711],[80.67739,45.12851],[80.6792,45.13227],[80.68798,45.13398],[80.6967,45.13241],[80.70518,45.14422],[80.71148,45.14625],[80.71572,45.14585],[80.72444,45.15082],[80.72605,45.15403],[80.72995,45.1537],[80.7319,45.15741],[80.73836,45.15757],[80.74346,45.16015],[80.75597,45.15319],[80.76299,45.15156],[80.76864,45.14606],[80.77497,45.14297],[80.78214,45.14625],[80.78726,45.15049],[80.79196,45.14894],[80.79461,45.15078],[80.80412,45.14681],[80.82467,45.14241],[80.83423,45.13969],[80.84509,45.13062],[80.85157,45.1266],[80.86012,45.125],[80.86624,45.12761],[80.87764,45.13127],[80.88972,45.12427],[80.89759,45.12509],[80.90007,45.12953],[80.90461,45.13301],[80.90709,45.13696],[80.91163,45.13899],[80.91468,45.14368],[80.92117,45.14499],[80.92797,45.15728],[80.94203,45.15842],[80.94648,45.16101],[80.95161,45.15997],[80.95743,45.16667],[80.96736,45.16757],[80.97383,45.16333],[80.98531,45.16072],[80.98855,45.16102],[80.99532,45.15883],[81.00575,45.16209],[81.01068,45.16196],[81.01658,45.16455],[81.02454,45.16328],[81.02938,45.16603],[81.03627,45.16684],[81.04557,45.17056],[81.05091,45.1763],[81.05694,45.17767],[81.06276,45.17256],[81.07064,45.1718],[81.07543,45.17927],[81.07491,45.18489],[81.07843,45.18673],[81.08332,45.19389],[81.0874,45.19627],[81.09353,45.19622],[81.1007,45.19956],[81.10924,45.2],[81.10777,45.20304],[81.10698,45.20947],[81.10336,45.21023],[81.09954,45.21708],[81.107,45.22206],[81.11135,45.21741],[81.12005,45.21508],[81.12955,45.21827],[81.13218,45.21807],[81.13859,45.20906],[81.14179,45.20988],[81.14912,45.20899],[81.15644,45.20521],[81.16376,45.2065],[81.17052,45.2144],[81.16628,45.22424],[81.17292,45.22605],[81.18058,45.22622],[81.18757,45.2322],[81.20496,45.2369],[81.21171,45.23326],[81.22264,45.23832],[81.22121,45.24484],[81.22831,45.24817],[81.2382,45.23995],[81.25036,45.24189],[81.25289,45.23814],[81.26102,45.23627],[81.26915,45.23681],[81.27522,45.24002],[81.28128,45.23935],[81.28838,45.2428],[81.29468,45.24742],[81.29892,45.24817],[81.30264,45.24673],[81.30704,45.24673],[81.3075,45.25399],[81.31791,45.25424],[81.33176,45.25641],[81.34252,45.25835],[81.3519,45.26077],[81.35676,45.25902],[81.36231,45.26065],[81.36887,45.25446],[81.37679,45.25262],[81.38075,45.25786],[81.38128,45.26358],[81.38902,45.26931],[81.38921,45.27068],[81.40099,45.27588],[81.40208,45.27896],[81.4087,45.28094],[81.4167,45.28099],[81.42102,45.28301],[81.42641,45.27955],[81.43426,45.28],[81.43799,45.27754],[81.4348,45.27408],[81.43767,45.26728],[81.45043,45.26218],[81.45613,45.26423],[81.45977,45.26337],[81.46567,45.26643],[81.46952,45.27095],[81.47269,45.27159],[81.47791,45.27514],[81.47987,45.27355],[81.49658,45.27582],[81.4982,45.28147],[81.50633,45.28169],[81.51516,45.28046],[81.52113,45.28186],[81.52315,45.28858],[81.52998,45.2953],[81.52785,45.30052],[81.53217,45.3059],[81.53993,45.30548],[81.54788,45.30101],[81.55309,45.30476],[81.56693,45.30597],[81.5746,45.30718],[81.57071,45.3154],[81.56842,45.31806],[81.56888,45.32555],[81.57826,45.32824],[81.58541,45.33193],[81.59119,45.33996],[81.6006,45.34205],[81.61276,45.34172],[81.61958,45.35153],[81.62434,45.35169],[81.6315,45.35595],[81.63934,45.35635],[81.65011,45.35012],[81.65523,45.35133],[81.66962,45.35134],[81.67815,45.35497],[81.67706,45.36245],[81.67941,45.36415],[81.68634,45.36345],[81.69464,45.36902],[81.70191,45.3653],[81.7027,45.36208],[81.71172,45.35789],[81.7219,45.36291],[81.72837,45.36326],[81.73414,45.36601],[81.73059,45.37224],[81.73184,45.37461],[81.73659,45.37371],[81.74789,45.37302],[81.75164,45.37474],[81.75913,45.37239],[81.76494,45.37484],[81.76869,45.37777],[81.78562,45.36782],[81.78997,45.36382],[81.79317,45.3594],[81.80233,45.35671],[81.80668,45.35547],[81.80914,45.35146],[81.81998,45.34029],[81.8206,45.33712],[81.8267,45.33394],[81.83122,45.32656],[81.83039,45.3178],[81.8365,45.31149],[81.84333,45.31002],[81.84398,45.3047],[81.85417,45.30156],[81.85543,45.29553],[81.86893,45.28792],[81.87969,45.2837],[81.88335,45.27863],[81.89926,45.25884],[81.90858,45.24483],[81.92203,45.22889],[81.93874,45.23546],[81.95361,45.23512],[81.97055,45.2343],[81.97547,45.23539],[81.97971,45.23866],[81.98526,45.2363],[81.99493,45.2325],[82.00597,45.23461],[82.00944,45.23301],[82.017,45.23777],[82.02628,45.24005],[82.04036,45.24668],[82.04174,45.25365],[82.04506,45.25414],[82.0531,45.25028],[82.06457,45.24641],[82.06746,45.2498],[82.07162,45.24932],[82.07372,45.24594],[82.07734,45.2469],[82.08165,45.24594],[82.08493,45.24714],[82.09095,45.24545],[82.08672,45.23785],[82.08112,45.23507],[82.08295,45.22909],[82.08204,45.22312],[82.08353,45.22004],[82.08839,45.21874],[82.09769,45.20769],[82.10081,45.20245],[82.11572,45.20198],[82.12445,45.21118],[82.14066,45.2165],[82.15549,45.22231],[82.17046,45.22122],[82.18475,45.22497],[82.19135,45.22329],[82.20076,45.2285],[82.21086,45.23274],[82.23313,45.23445],[82.24312,45.23119],[82.24983,45.23585],[82.25722,45.23422],[82.26758,45.24124],[82.27526,45.24126],[82.29014,45.23257],[82.29999,45.22267],[82.31384,45.22086],[82.32356,45.21131],[82.33286,45.20935],[82.3401,45.20884],[82.35352,45.2035],[82.36488,45.20154],[82.37382,45.2018],[82.38275,45.19965],[82.39101,45.19486],[82.39908,45.19283],[82.41677,45.19176],[82.42949,45.1877],[82.44925,45.18605],[82.45596,45.18731],[82.47384,45.17676],[82.56202,45.20412],[82.58223,45.22012],[82.58786,45.34449],[82.54268,45.42125],[82.43846,45.45952],[82.27888,45.53544],[82.27085,45.55042],[82.26591,45.57142],[82.25786,45.61594],[82.27042,45.62827],[82.27609,45.63187],[82.28314,45.64844],[82.28486,45.67532],[82.28169,45.68054],[82.28745,45.7083],[82.29904,45.71928],[82.30994,45.73792],[82.31389,45.75796],[82.31854,45.76314],[82.32849,45.77142],[82.33776,45.78065],[82.34189,45.79204],[82.34532,45.79625],[82.34292,45.80993],[82.34395,45.82457],[82.34705,45.83279],[82.34603,45.83815],[82.33882,45.84996],[82.33437,45.8656],[82.33026,45.88636],[82.33423,45.89109],[82.33557,45.89645],[82.33896,45.90182],[82.34099,45.9079],[82.34098,45.91694],[82.33548,45.93459],[82.3358,45.9393],[82.37593,45.96422],[82.39342,45.96665],[82.41023,45.96908],[82.42669,45.96722],[82.4562,45.97682],[82.47764,46.04964],[82.51213,46.15391],[82.55153,46.21433],[82.56759,46.24006],[82.57437,46.25012],[82.58116,46.25875],[82.60563,46.29401],[82.63697,46.34635],[82.71362,46.47395],[82.72197,46.48575],[82.72757,46.49803],[82.73466,46.50824],[82.73901,46.51846],[82.74496,46.5351],[82.76986,46.60049],[82.77416,46.63568],[82.77384,46.65937],[82.77798,46.66416],[82.78623,46.68025],[82.78831,46.69359],[82.82407,46.74598],[82.83474,46.75925],[82.84007,46.768],[82.8527,46.78695],[82.86141,46.79713],[82.86463,46.80308],[82.86672,46.81669],[82.87119,46.82467],[82.87567,46.8397],[82.89426,46.88383],[82.90191,46.8951],[82.90819,46.90897],[82.91927,46.92893],[82.91966,46.93842],[82.92131,46.94046],[82.92124,46.95192],[82.92529,46.96104],[82.92859,46.96709],[82.93174,46.9717],[82.93009,46.97819],[82.93201,46.9798],[82.92989,46.99302],[82.93672,47.00431],[82.93567,47.00691],[82.93858,47.01079],[82.93806,47.01607],[82.94216,47.01846],[82.95107,47.02038],[82.95758,47.02497],[82.96272,47.0319],[82.96718,47.03602],[82.96906,47.04229],[82.96888,47.04856],[82.97453,47.05166],[82.97743,47.05475],[82.98033,47.05527],[82.99216,47.06328],[82.99332,47.07],[82.99802,47.07781],[82.99969,47.08943],[83.00258,47.10014],[83.00547,47.10338],[83.0064,47.10616],[83.00938,47.10894],[83.00825,47.11242],[83.01003,47.11462],[83.00927,47.11643],[83.00683,47.11791],[83.00267,47.12057],[83.00912,47.12728],[83.01904,47.13052],[83.01971,47.13307],[83.01832,47.13493],[83.01973,47.13631],[83.01845,47.14212],[83.01141,47.14276],[83.0121,47.1469],[83.02103,47.15312],[83.02446,47.15621],[83.02313,47.15994],[83.02867,47.16216],[83.02601,47.16483],[83.02713,47.16751],[83.02618,47.16972],[83.02687,47.17119],[83.02894,47.17219],[83.02971,47.17508],[83.02705,47.17937],[83.02709,47.18198],[83.02405,47.18693],[83.02587,47.18958],[83.0285,47.19172],[83.02638,47.19885],[83.02529,47.19969],[83.02523,47.20187],[83.02814,47.20448],[83.02659,47.21128],[83.02382,47.21416],[83.02373,47.21496],[83.02741,47.21622],[83.02848,47.21983],[83.03039,47.22116],[83.03195,47.22367],[83.03412,47.22249],[83.03726,47.21876],[83.04143,47.21503],[83.04252,47.21494],[83.04806,47.22254],[83.05086,47.2235],[83.05194,47.2254],[83.05743,47.22507],[83.06361,47.22801],[83.07252,47.22783],[83.08384,47.22881],[83.08847,47.2251],[83.09379,47.22373],[83.10992,47.22949],[83.11712,47.22966],[83.13462,47.23379],[83.14337,47.23422],[83.15074,47.23465],[83.15854,47.22835],[83.17321,47.22018],[83.1841,47.21994],[83.19362,47.21876],[83.20142,47.21549],[83.20785,47.21175],[83.20883,47.20603],[83.20638,47.19845],[83.21425,47.19209],[83.22075,47.1876],[83.22553,47.18871],[83.23581,47.18935],[83.23767,47.18742],[83.23541,47.18082],[83.24414,47.17703],[83.26533,47.1756],[83.28308,47.17557],[83.28847,47.18232],[83.2958,47.18173],[83.30381,47.17788],[83.30731,47.17747],[83.31835,47.17145],[83.33489,47.17034],[83.33973,47.17212],[83.35278,47.1735],[83.35485,47.17721],[83.36379,47.17763],[83.36574,47.17517],[83.36091,47.17257],[83.36363,47.16764],[83.36429,47.1634],[83.37458,47.15802],[83.38006,47.15509],[83.38246,47.15176],[83.38624,47.15077],[83.38876,47.14639],[83.38785,47.14201],[83.40754,47.12875],[83.40845,47.12353],[83.41303,47.12161],[83.41315,47.11596],[83.4292,47.11452],[83.42755,47.1203],[83.43002,47.1242],[83.44155,47.12487],[83.45034,47.13161],[83.45775,47.13157],[83.46201,47.12724],[83.47107,47.12805],[83.46634,47.12542],[83.46259,47.12176],[83.46519,47.11877],[83.48082,47.11764],[83.48433,47.11291],[83.48127,47.11031],[83.48446,47.10908],[83.49451,47.11018],[83.49816,47.10687],[83.50593,47.10965],[83.50958,47.10774],[83.51101,47.10084],[83.51481,47.09786],[83.51587,47.09487],[83.5276,47.09148],[83.52559,47.08574],[83.53536,47.0827],[83.5447,47.08445],[83.54993,47.08012],[83.56602,47.07823],[83.56446,47.06946],[83.55877,47.06068],[83.5631,47.05644],[83.5688,47.05501],[83.57334,47.0601],[83.58063,47.0605],[83.60247,47.05439],[83.60721,47.05133],[83.60614,47.0463],[83.61351,47.04869],[83.62234,47.04872],[83.62705,47.04641],[83.63905,47.04354],[83.64333,47.04421],[83.65611,47.04197],[83.66045,47.03921],[83.67233,47.03833],[83.68055,47.03499],[83.69563,47.0354],[83.70074,47.03013],[83.70141,47.02094],[83.69617,47.01759],[83.70672,47.01751],[83.71144,47.02306],[83.7186,47.02512],[83.73248,47.02756],[83.74018,47.03328],[83.74731,47.03327],[83.75431,47.02578],[83.75884,47.02437],[83.76419,47.02718],[83.78369,47.0239],[83.79447,47.01688],[83.7978,47.01876],[83.8055,47.01536],[83.81251,47.01665],[83.81714,47.01334],[83.82795,47.01097],[83.83738,47.00369],[83.83459,46.99917],[83.83524,46.99419],[83.83882,46.99767],[83.85201,46.99506],[83.85987,46.99734],[83.87118,46.99424],[83.87032,46.98777],[83.88593,46.98505],[83.88994,46.98851],[83.89438,46.98492],[83.90568,46.98087],[83.90256,46.97564],[83.91645,46.9742],[83.92134,46.97699],[83.92187,46.9805],[83.92557,46.98436],[83.92927,46.98588],[83.93309,46.98447],[83.9395,46.98699],[83.94728,46.99092],[83.95575,46.99121],[83.95873,46.98635],[83.95896,46.9822],[83.97001,46.98549],[83.97625,46.99019],[83.98248,46.99232],[83.98597,46.99538],[84.00824,46.98906],[84.01089,46.98209],[84.01496,46.98142],[84.01765,46.98356],[84.03129,46.97776],[84.04188,46.97393],[84.04512,46.97037],[84.05385,46.96822],[84.05743,46.96928],[84.06032,46.97268],[84.07203,46.97071],[84.07825,46.96922],[84.10437,46.96913],[84.11504,46.96675],[84.12037,46.96883],[84.12501,46.96764],[84.13058,46.97051],[84.1416,46.97359],[84.15071,46.97881],[84.15569,46.98075],[84.15828,46.98081],[84.15888,46.98834],[84.1647,46.98999],[84.1664,46.99445],[84.17702,46.99352],[84.17734,46.99681],[84.1871,46.99807],[84.18793,47.00028],[84.19322,46.9985],[84.20195,47.00187],[84.21222,47.00103],[84.22524,46.99738],[84.23205,47.00132],[84.2479,46.99837],[84.25757,47.00151],[84.27995,47.00044],[84.28289,46.99709],[84.28721,47.00171],[84.30003,46.99487],[84.30644,46.99801],[84.31062,46.99634],[84.31342,46.99935],[84.32,46.99674],[84.33002,47.00303],[84.33811,47.00047],[84.35033,46.99884],[84.35554,47.00075],[84.38218,46.99585],[84.39234,47.00265],[84.39803,47.00056],[84.40054,47.00397],[84.41586,47.00497],[84.43657,47.00828],[84.44762,47.00759],[84.45866,47.00831],[84.45807,47.0043],[84.46161,46.99796],[84.45999,46.99677],[84.46044,46.99277],[84.4778,46.99062],[84.48487,46.99221],[84.4918,46.98534],[84.5011,46.97932],[84.50971,46.97472],[84.51492,46.98048],[84.54279,46.98391],[84.55106,46.98879],[84.55452,46.99366],[84.56466,46.99493],[84.57145,46.99814],[84.58099,46.99901],[84.59533,46.99964],[84.60422,46.99738],[84.61379,46.99793],[84.61607,46.99655],[84.62384,46.99752],[84.62944,46.99776],[84.63092,46.9952],[84.64008,46.99637],[84.64511,46.99896],[84.65478,46.99931],[84.66135,47.00178],[84.67104,46.99746],[84.67179,47.00158],[84.6788,47.00325],[84.69419,47.00473],[84.71054,47.00908],[84.71373,47.00654],[84.72481,47.00541],[84.75237,47.00522],[84.75427,46.99991],[84.76121,46.9989],[84.77583,46.99117],[84.77665,46.98493],[84.78118,46.98251],[84.7809,46.97634],[84.78263,46.97326],[84.78574,46.97346],[84.79777,46.9664],[84.80482,46.96334],[84.81461,46.95793],[84.82292,46.96038],[84.84664,46.95434],[84.84746,46.95153],[84.85034,46.95107],[84.85061,46.9478],[84.85732,46.94642],[84.86065,46.9443],[84.85957,46.93949],[84.8578,46.92765],[84.86281,46.92634],[84.87116,46.92006],[84.8729,46.91696],[84.87808,46.91105],[84.88774,46.90815],[84.88932,46.90684],[84.89502,46.90413],[84.89613,46.90058],[84.90526,46.89833],[84.90583,46.89613],[84.91464,46.8897],[84.91486,46.87976],[84.91921,46.87927],[84.92287,46.87549],[84.93019,46.87497],[84.93342,46.87069],[84.94353,46.86219],[84.9526,46.86354],[84.96503,46.86703],[84.96369,46.87042],[84.96612,46.87282],[84.97316,46.87214],[84.97884,46.87287],[84.97697,46.87751],[84.97716,46.88168],[84.97391,46.88515],[84.9741,46.88862],[84.9783,46.89076],[84.97814,46.89552],[84.98074,46.89652],[84.97974,46.90416],[84.98012,46.91063],[84.98394,46.91522],[84.99396,46.92116],[85.00172,46.92179],[85.00216,46.92562],[85.00604,46.9257],[85.01916,46.92368],[85.03364,46.92165],[85.04854,46.92768],[85.06045,46.92741],[85.06298,46.9254],[85.06664,46.9251],[85.06825,46.92855],[85.07353,46.93142],[85.07779,46.93077],[85.07777,46.93777],[85.08256,46.94008],[85.08323,46.94499],[85.08597,46.94895],[85.07841,46.95386],[85.07909,46.9583],[85.08847,46.95802],[85.09441,46.95869],[85.09669,46.9647],[85.10881,46.96735],[85.11143,46.97136],[85.1168,46.97117],[85.11999,46.9703],[85.12862,46.97481],[85.1273,46.97908],[85.12941,46.98101],[85.13397,46.98135],[85.14608,46.98919],[85.15339,46.98591],[85.15945,46.98684],[85.16619,46.98637],[85.17625,46.99292],[85.17876,46.9962],[85.17556,46.99971],[85.17578,47.00369],[85.18185,47.00416],[85.18688,47.00674],[85.18796,47.00943],[85.19407,47.01198],[85.194,47.01687],[85.19756,47.02065],[85.2018,47.02631],[85.20411,47.03248],[85.21216,47.03873],[85.21109,47.04516],[85.21514,47.05192],[85.22022,47.05344],[85.22482,47.05163],[85.22506,47.04909],[85.23547,47.04993],[85.24109,47.05403],[85.24788,47.05252],[85.25399,47.05288],[85.26148,47.04973],[85.26628,47.05164],[85.26901,47.05448],[85.27467,47.05548],[85.27484,47.05882],[85.27243,47.06551],[85.27653,47.06952],[85.27652,47.06622],[85.28166,47.06363],[85.28475,47.06432],[85.28953,47.06334],[85.29908,47.06464],[85.30378,47.05696],[85.30684,47.05036],[85.31196,47.0489],[85.31949,47.04394],[85.32426,47.04319],[85.33,47.04707],[85.3394,47.04735],[85.34173,47.05446],[85.34777,47.05465],[85.35062,47.05205],[85.36651,47.05226],[85.37691,47.04732],[85.38387,47.0466],[85.38957,47.04854],[85.39457,47.04814],[85.40596,47.05202],[85.41373,47.06051],[85.42366,47.06053],[85.42725,47.05727],[85.43282,47.05727],[85.43839,47.06055],[85.45347,47.05987],[85.46168,47.06386],[85.46698,47.05952],[85.47547,47.05735],[85.48122,47.05284],[85.49732,47.05352],[85.50482,47.05628],[85.51681,47.05427],[85.53017,47.05085],[85.5322,47.04907],[85.53836,47.04888],[85.54144,47.05183],[85.54727,47.05338],[85.55471,47.0507],[85.55871,47.05037],[85.56167,47.06216],[85.56521,47.06548],[85.56738,47.07114],[85.57811,47.09519],[85.57613,47.1003],[85.57965,47.11149],[85.58616,47.11417],[85.58375,47.11919],[85.57447,47.12422],[85.57787,47.13871],[85.57941,47.14193],[85.58988,47.14701],[85.59348,47.15209],[85.61012,47.16044],[85.6132,47.16524],[85.62676,47.17371],[85.63045,47.17911],[85.64032,47.18451],[85.64351,47.19245],[85.64683,47.19502],[85.64671,47.19853],[85.64967,47.20554],[85.65743,47.20859],[85.65971,47.21351],[85.6791,47.21965],[85.682,47.2223],[85.68621,47.22992],[85.68556,47.23606],[85.68936,47.2403],[85.68782,47.24172],[85.68835,47.24593],[85.68233,47.24572],[85.67974,47.25064],[85.68746,47.26232],[85.69105,47.26421],[85.69413,47.27192],[85.69378,47.27777],[85.69789,47.28316],[85.69856,47.28854],[85.69131,47.29774],[85.68338,47.30507],[85.68527,47.30831],[85.67446,47.3111],[85.67327,47.3218],[85.68496,47.32972],[85.68565,47.34264],[85.68805,47.35555],[85.68703,47.36056],[85.68943,47.36562],[85.69819,47.36583],[85.69947,47.37244],[85.70214,47.38138],[85.69513,47.3866],[85.68675,47.39322],[85.68524,47.40007],[85.68236,47.40692],[85.68661,47.40875],[85.68275,47.42962],[85.67722,47.43622],[85.67375,47.4419],[85.66543,47.44999],[85.65001,47.45358],[85.64683,47.45806],[85.64022,47.4644],[85.63868,47.4678],[85.63217,47.4746],[85.62531,47.48587],[85.61642,47.49125],[85.61235,47.49935],[85.60829,47.50885],[85.6104,47.51185],[85.60771,47.52273],[85.60953,47.52549],[85.60861,47.53102],[85.6181,47.54419],[85.61866,47.54854],[85.62709,47.55762],[85.62804,47.56517],[85.62899,47.57736],[85.6357,47.58644],[85.55278,47.98125],[85.53917,47.98438],[85.53998,47.98934],[85.5401,47.99661],[85.54435,48.00112],[85.5469,48.01041],[85.54034,48.01983],[85.5279,48.02487],[85.5271,48.02722],[85.53249,48.03049],[85.53022,48.0352],[85.53048,48.04277],[85.54113,48.05332],[85.53669,48.0717],[85.54665,48.08123],[85.54682,48.09929],[85.55137,48.10718],[85.54953,48.11502],[85.55043,48.12837],[85.55368,48.12888],[85.55737,48.12479],[85.55899,48.13169],[85.56411,48.13226],[85.55551,48.13582],[85.55376,48.13937],[85.56916,48.15724],[85.57439,48.15667],[85.57837,48.16532],[85.58277,48.17422],[85.58634,48.18279],[85.5851,48.19136],[85.59033,48.1908],[85.58847,48.19693],[85.59647,48.19701],[85.61077,48.20552],[85.62233,48.20259],[85.63424,48.2317],[85.64913,48.23871],[85.65039,48.24496],[85.65823,48.24146],[85.66661,48.25868],[85.67527,48.26226],[85.67239,48.26794],[85.67472,48.27146],[85.67774,48.27133],[85.68211,48.27932],[85.68291,48.29085],[85.6919,48.30073],[85.69124,48.32965],[85.70259,48.34274],[85.71325,48.34898],[85.71074,48.3529],[85.71224,48.36125],[85.72328,48.36702],[85.72519,48.37154],[85.74193,48.38224],[85.75099,48.39284],[85.7573,48.40297],[85.76367,48.40454],[85.79201,48.41818],[85.80521,48.4156],[85.81765,48.41784],[85.83005,48.42238],[85.83213,48.42601],[85.86475,48.43079],[85.88519,48.42954],[85.89884,48.4321],[85.90532,48.4352],[85.91386,48.43603],[86.05821,48.43824],[86.2248,48.43205],[86.23428,48.43306],[86.23751,48.43889],[86.24565,48.44591],[86.25035,48.45201],[86.25378,48.45427],[86.25996,48.4547],[86.2682,48.45081],[86.27232,48.45876],[86.28123,48.46278],[86.2819,48.47173],[86.29699,48.47726],[86.29698,48.48253],[86.30144,48.48699],[86.29904,48.49008],[86.32211,48.48798],[86.32403,48.49376],[86.33014,48.49369],[86.32942,48.49092],[86.35001,48.49148],[86.36854,48.49296],[86.36853,48.50171],[86.37746,48.50071],[86.37883,48.49288],[86.38913,48.49052],[86.3905,48.48752],[86.39393,48.48534],[86.39599,48.48106],[86.40766,48.47906],[86.58255,48.53947],[86.58937,48.542],[86.59503,48.55093],[86.59656,48.55985],[86.59466,48.56719],[86.59714,48.56882],[86.59701,48.57236],[86.59413,48.57544],[86.59837,48.57644],[86.5985,48.58107],[86.60102,48.5823],[86.60149,48.58489],[86.6086,48.58507],[86.61228,48.59797],[86.61948,48.59793],[86.62823,48.6054],[86.63423,48.61151],[86.63421,48.6264],[86.64154,48.62919],[86.6689,48.63149],[86.66987,48.63355],[86.67654,48.63367],[86.6809,48.63668],[86.69145,48.64287],[86.68919,48.64778],[86.69724,48.65269],[86.69876,48.66122],[86.7002,48.66844],[86.71226,48.67658],[86.72568,48.68337],[86.73912,48.69669],[86.75392,48.70775],[86.77147,48.72018],[86.77803,48.73509],[86.7709,48.75054],[86.76775,48.75859],[86.76253,48.76211],[86.75142,48.77821],[86.75648,48.79152],[86.76154,48.80392],[86.76862,48.80899],[86.7908,48.81632],[86.8044,48.82501],[86.81869,48.83234],[86.81814,48.84428],[86.81691,48.85576],[86.8015,48.86711],[86.7902,48.87258],[86.78342,48.8763],[86.77663,48.88883],[86.75164,48.89594],[86.75187,48.90273],[86.74112,48.91269],[86.73163,48.9371],[86.73038,48.94979],[86.72701,48.95028],[86.7272,48.95863],[86.73013,48.97194],[86.72723,48.98006],[86.7299,48.98345],[86.72776,48.99134],[86.74861,49.01086],[86.76946,49.02633],[86.78106,49.02806],[86.79511,49.0386],[86.83131,49.05062],[86.84726,49.06557],[86.84221,49.08587],[86.84472,49.10167],[86.85793,49.11417],[86.87526,49.12127],[86.87903,49.12842],[86.89945,49.13513],[86.94142,49.13029],[86.9573,49.13174],[86.97893,49.13698],[86.99884,49.14311],[87.02251,49.13834],[87.04396,49.13123],[87.05991,49.12929],[87.06463,49.12662],[87.06728,49.13024],[87.07395,49.13258],[87.08192,49.13083],[87.08886,49.13761],[87.10014,49.14004],[87.10078,49.14786],[87.10554,49.15118],[87.11558,49.15253],[87.12562,49.15254],[87.12995,49.1512],[87.13978,49.15075],[87.14137,49.15233],[87.15051,49.15076],[87.15273,49.14482],[87.1693,49.13893],[87.17415,49.1398],[87.18515,49.13867],[87.18861,49.14247],[87.1935,49.14161],[87.19976,49.14344],[87.20373,49.14008],[87.2077,49.13537],[87.21442,49.13246],[87.21564,49.12864],[87.21308,49.12292],[87.22348,49.11984],[87.2277,49.11945],[87.22892,49.11463],[87.23451,49.11413],[87.23804,49.11138],[87.2425,49.11321],[87.25383,49.11235],[87.26035,49.11463],[87.27253,49.1142],[87.27725,49.11803],[87.28197,49.11782],[87.28886,49.11457],[87.29506,49.11357],[87.304,49.10785],[87.32256,49.10438],[87.32156,49.10081],[87.33308,49.09902],[87.34666,49.10218],[87.35119,49.10089],[87.3561,49.09618],[87.36101,49.09462],[87.36533,49.09689],[87.38161,49.09272],[87.38447,49.0891],[87.39764,49.08637],[87.39925,49.08321],[87.40497,49.08049],[87.40663,49.07531],[87.42477,49.07373],[87.42746,49.07125],[87.43565,49.07237],[87.43954,49.07442],[87.44619,49.08006],[87.4562,49.08457],[87.46073,49.08548],[87.46634,49.08865],[87.47722,49.0896],[87.49017,49.0865],[87.49939,49.08968],[87.50312,49.09286],[87.50445,49.09604],[87.50509,49.10057],[87.50741,49.10401],[87.5056,49.11015],[87.50645,49.11658],[87.49357,49.1266],[87.4908,49.13228],[87.49353,49.13885],[87.50575,49.13786],[87.52079,49.14141],[87.52347,49.14452],[87.53439,49.14065],[87.54187,49.14173],[87.54905,49.14003],[87.55485,49.14012],[87.56168,49.13594],[87.56645,49.13536],[87.56941,49.14156],[87.57638,49.14264],[87.58197,49.14103],[87.58929,49.14604],[87.59797,49.14925],[87.60643,49.14862],[87.61009,49.14528],[87.61452,49.14422],[87.61758,49.14496],[87.6203,49.14772],[87.62714,49.15003],[87.63294,49.14796],[87.64081,49.14859],[87.64629,49.15081],[87.64971,49.15348],[87.65879,49.15144],[87.67131,49.15164],[87.68005,49.15896],[87.68339,49.16375],[87.68674,49.17168],[87.69519,49.17595],[87.70399,49.17618],[87.71982,49.17731],[87.73703,49.17574],[87.74586,49.1734],[87.75127,49.16747],[87.77083,49.17266],[87.77383,49.17654],[87.77854,49.17891],[87.78695,49.17417],[87.80093,49.17],[87.81183,49.16751],[87.81646,49.16982],[87.80908,49.15612],[87.82092,49.14241],[87.82812,49.14734],[87.8645,49.11048],[87.83838,49.09067],[87.83833,49.08165],[87.85063,49.07262],[87.84855,49.06182],[87.83273,49.0618],[87.82977,49.04373],[87.84339,49.03607],[87.85702,49.03561],[87.88026,49.01895],[87.86853,49.00612],[87.87228,48.9907],[87.90025,48.98479],[87.89775,48.97463],[87.87453,48.97495],[87.86841,48.96069],[87.87328,48.94824],[87.84401,48.94555],[87.812,48.94827],[87.78007,48.92674],[87.75192,48.93327],[87.75981,48.91627],[87.73475,48.88393],[87.74231,48.86799],[87.7835,48.86957],[87.79312,48.84054],[87.81372,48.8432],[87.82333,48.82374],[87.79449,48.82055],[87.83157,48.79865],[87.8556,48.80308],[87.89508,48.78087],[87.93457,48.75323],[87.9689,48.77286],[88.02031,48.7503],[88.05524,48.71325],[88.0894,48.7116],[88.06314,48.68007],[88.01156,48.65071],[88.02589,48.63041],[87.97336,48.60635],[87.95929,48.59319],[87.97396,48.56986],[88.00716,48.56676],[88.02387,48.54911],[88.05695,48.54211],[88.07623,48.5486],[88.10236,48.54185],[88.112,48.52419],[88.13546,48.52992],[88.18153,48.49548],[88.21935,48.5029],[88.29134,48.4857],[88.35235,48.45939],[88.3543,48.44583],[88.35625,48.43045],[88.39586,48.41427],[88.43822,48.38715],[88.47993,48.39541],[88.48568,48.40774],[88.52289,48.3911],[88.51128,48.38006],[88.54736,48.35812],[88.54824,48.37179],[88.56928,48.36585],[88.57155,48.35193],[88.60565,48.33219],[88.56834,48.27411],[88.59684,48.24456],[88.58729,48.21935],[88.62234,48.21042],[88.633,48.18215],[88.66563,48.16853],[88.69185,48.17582],[88.71183,48.17031],[88.70877,48.15748],[88.73318,48.15198],[88.82806,48.09975],[88.84617,48.11083],[88.93213,48.10719],[88.95362,48.08427],[88.97237,48.06685],[89.00759,48.05219],[89.02795,48.02466],[89.05929,47.98795],[89.12281,47.98416],[89.15448,47.99701],[89.1889,47.97676],[89.24117,47.9749],[89.25632,47.99051],[89.28174,47.98636],[89.29583,48.0137],[89.31446,48.01317],[89.34682,48.02367],[89.35446,48.01579],[89.37079,48.02209],[89.37888,48.04492],[89.40208,48.02916],[89.44495,48.03166],[89.49333,48.0268],[89.5491,48.03907],[89.5811,48.03143],[89.60535,48.00648],[89.58564,47.9999],[89.59335,47.97267],[89.60763,47.95759],[89.6384,47.94802],[89.63895,47.92558],[89.65324,47.90314],[89.72431,47.89986],[89.74963,47.87601],[89.73924,47.86506],[89.7577,47.82922],[89.80601,47.83235],[89.85707,47.82625],[89.89027,47.83767],[89.93022,47.83324],[89.95094,47.83434],[89.95325,47.86004],[89.95556,47.88758],[89.999999,47.88026],[89.999999,28.33293]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:BY:**China, between 90º and 110º E - excluding Hainan Island","itu_zone_number":43,"itu_zone_name_loc":[33,100]},"geometry":{"type":"Polygon","coordinates":[[[110,20.04166],[110,42.63674],[109.89816,42.63306],[109.6796,42.55965],[109.62641,42.52739],[109.53203,42.46882],[109.51757,42.46688],[109.4983,42.46696],[109.48144,42.4559],[109.47576,42.45442],[109.45197,42.45166],[109.43917,42.45193],[109.41606,42.44906],[109.38334,42.4467],[109.31,42.43969],[109.28452,42.43504],[109.2623,42.43597],[109.01485,42.45717],[109.00583,42.45056],[108.99818,42.448],[108.98563,42.44845],[108.9516,42.43871],[108.8396,42.39643],[108.83542,42.39907],[108.82816,42.40322],[108.81971,42.40593],[108.79994,42.41117],[108.78512,42.41634],[108.77905,42.41368],[108.74569,42.41432],[108.71544,42.41325],[108.69412,42.41344],[108.53491,42.44325],[108.4408,42.44393],[108.43088,42.44255],[108.42111,42.44224],[108.40791,42.44143],[108.38861,42.44111],[108.3573,42.43954],[108.29468,42.43942],[108.24464,42.46397],[108.19923,42.45424],[108.15725,42.44881],[108.13501,42.44503],[108.11307,42.44212],[108.08461,42.4377],[108.06451,42.43774],[108.0409,42.43548],[108.02003,42.4355],[108.0102,42.4298],[107.99865,42.42411],[107.991,42.41957],[107.97982,42.4148],[107.96396,42.41456],[107.92939,42.40153],[107.90506,42.40337],[107.73792,42.41308],[107.65437,42.41277],[107.57494,42.41069],[107.56565,42.41147],[107.52982,42.43376],[107.51247,42.4444],[107.49477,42.45498],[107.45818,42.4582],[107.42656,42.44769],[107.2904,42.40785],[107.26025,42.36046],[107.05158,42.31712],[106.78668,42.28831],[106.64526,42.25072],[106.36581,42.15564],[106.10285,42.06056],[105.71839,41.93778],[105.58247,41.88159],[105.48154,41.83071],[105.38611,41.79825],[105.36071,41.7791],[105.29412,41.74767],[105.23167,41.74591],[105.00579,41.58008],[104.91912,41.65444],[104.68322,41.64484],[104.51873,41.66192],[104.52621,41.87442],[104.07733,41.80345],[103.85643,41.79799],[103.41716,41.88043],[102.99978,42.03342],[102.70874,42.14764],[102.54798,42.15834],[102.44564,42.14129],[102.07962,42.22196],[101.80481,42.50359],[101.55891,42.52878],[100.84198,42.67322],[100.31997,42.68622],[100.26277,42.63729],[99.97486,42.64694],[99.50065,42.56523],[98.56227,42.63358],[98.20068,42.65342],[97.1733,42.79391],[96.96796,42.75391],[96.75712,42.75423],[96.38763,42.72362],[96.3594,42.89626],[96.13536,43.06738],[95.91407,43.23047],[95.8768,43.2765],[95.86778,43.32951],[95.85876,43.40849],[95.73616,43.59621],[95.65151,43.76851],[95.62179,43.84955],[95.52391,44.00389],[95.44244,44.00451],[95.40422,44.01009],[95.36601,44.02358],[95.32253,44.02685],[95.34525,44.08108],[95.35424,44.17476],[95.37771,44.22609],[95.41079,44.24401],[95.42871,44.27755],[95.41091,44.29536],[94.99614,44.25089],[94.93022,44.29333],[94.81966,44.31819],[94.76954,44.34108],[94.72696,44.33774],[94.67511,44.38838],[94.60129,44.44883],[94.54679,44.45951],[94.47031,44.50744],[94.39152,44.521],[94.34928,44.51285],[94.3408,44.52686],[94.34604,44.54479],[94.32907,44.5826],[94.26491,44.61127],[94.22448,44.64515],[94.2068,44.67189],[94.14945,44.6824],[94.06223,44.73081],[93.73605,44.86028],[93.71493,44.86979],[93.70755,44.89292],[93.60266,44.93066],[93.50601,44.96452],[93.42759,44.95505],[93.39586,44.97473],[93.36802,44.98548],[93.32369,44.99429],[93.31744,44.98082],[93.28846,44.98301],[93.21554,44.9954],[93.1893,45.0078],[93.14521,45.01242],[93.08465,45.00733],[93.05605,45.01714],[93.00435,45.00955],[92.98423,44.99905],[92.96961,45.01574],[92.92759,45.01648],[92.92321,45.03349],[92.88148,45.04617],[92.84473,45.03658],[92.77671,45.04846],[92.74447,45.04217],[92.73146,45.03588],[92.64226,45.02136],[92.549,45.01755],[92.48596,45.00015],[92.42291,45.01771],[92.34214,45.01107],[92.31355,45.02772],[92.27423,45.02027],[92.25045,45.02042],[92.23766,45.01281],[92.18735,45.0364],[92.10134,45.07552],[92.05996,45.08264],[91.89508,45.07553],[91.80435,45.08201],[91.6856,45.06162],[91.61814,45.0701],[91.56992,45.08052],[91.55877,45.06767],[91.53534,45.08548],[91.49327,45.10273],[91.4924,45.11416],[91.46045,45.14866],[91.42952,45.15564],[91.39624,45.12888],[91.37669,45.10986],[91.32968,45.12767],[91.24146,45.13191],[91.22297,45.15007],[91.189,45.15624],[91.17976,45.16435],[91.16346,45.20017],[91.11988,45.21372],[91.08392,45.21445],[91.04796,45.2055],[90.99827,45.21687],[90.95132,45.19534],[90.88439,45.18857],[90.86428,45.19906],[90.8936,45.25211],[90.86985,45.28278],[90.83607,45.29772],[90.79874,45.28896],[90.8129,45.31939],[90.7726,45.40167],[90.76526,45.43765],[90.7057,45.46285],[90.66535,45.48805],[90.66021,45.53336],[90.68372,45.62716],[90.71273,45.72864],[90.84697,45.88774],[91.01966,46.02008],[91.02058,46.05632],[91.00777,46.07922],[91.01509,46.085],[91.01052,46.12705],[90.97666,46.15786],[90.96111,46.19657],[90.9428,46.21436],[90.95014,46.22904],[90.89435,46.30682],[90.92997,46.33551],[90.97658,46.3604],[90.99434,46.42038],[91.00597,46.4343],[91.01042,46.45831],[91.03419,46.49504],[91.05246,46.51097],[91.05016,46.54022],[91.07808,46.55814],[91.07074,46.57508],[91.0176,46.57876],[91.01381,46.60833],[91.04846,46.71712],[91.01249,46.76264],[90.99313,46.76847],[90.98202,46.78935],[90.9348,46.8202],[90.95218,46.84435],[90.95582,46.87601],[90.9329,46.88676],[90.9141,46.91535],[90.91727,46.93643],[90.87534,46.97064],[90.82517,46.99549],[90.76458,46.98801],[90.7429,47.02696],[90.72947,47.02659],[90.68583,47.07489],[90.6463,47.11102],[90.6442,47.12729],[90.62287,47.14356],[90.56098,47.20973],[90.53412,47.24866],[90.51824,47.28945],[90.48099,47.31886],[90.50539,47.33936],[90.49957,47.35242],[90.51815,47.37667],[90.50588,47.40286],[90.48132,47.39758],[90.45694,47.41306],[90.46414,47.44344],[90.47133,47.4924],[90.42668,47.52994],[90.40125,47.5378],[90.37512,47.59902],[90.34282,47.625],[90.35002,47.64539],[90.37096,47.64357],[90.37395,47.65092],[90.34948,47.67123],[90.32526,47.68408],[90.28593,47.69232],[90.25485,47.69501],[90.24036,47.70762],[90.21413,47.70327],[90.17816,47.72231],[90.13917,47.72341],[90.09839,47.75307],[90.07134,47.77904],[90.06489,47.81885],[90.07218,47.84944],[90.09201,47.8579],[90.05927,47.8842],[90.04575,47.87366],[90.0034,47.8797],[89.999999,47.88026],[89.999999,28.33293],[90.00855,28.33641],[90.03633,28.34171],[90.04489,28.34247],[90.05551,28.34626],[90.05978,28.34505],[90.07161,28.33478],[90.08566,28.33358],[90.0925,28.32966],[90.10588,28.3407],[90.11102,28.34085],[90.12049,28.33579],[90.13614,28.33376],[90.14956,28.3222],[90.15266,28.31673],[90.16057,28.31397],[90.17475,28.31907],[90.18206,28.31994],[90.18697,28.33079],[90.18913,28.34103],[90.21287,28.35962],[90.22461,28.36091],[90.23768,28.35793],[90.24664,28.35374],[90.25371,28.34638],[90.25665,28.33842],[90.26667,28.33034],[90.25681,28.29145],[90.26004,28.28537],[90.26876,28.2793],[90.28003,28.27925],[90.28772,28.27197],[90.30091,28.27013],[90.31179,28.26573],[90.32336,28.26376],[90.33277,28.26585],[90.33643,28.27527],[90.34282,28.29981],[90.34854,28.305],[90.35585,28.30548],[90.37222,28.30662],[90.37903,28.30825],[90.38274,28.30626],[90.38146,28.29245],[90.38254,28.28676],[90.38911,28.2859],[90.39868,28.28013],[90.41032,28.27557],[90.42195,28.28884],[90.43359,28.29426],[90.44415,28.2905],[90.45664,28.28046],[90.46982,28.27284],[90.48026,28.25554],[90.50504,28.25082],[90.52983,28.25155],[90.53614,28.24756],[90.57404,28.24477],[90.58357,28.24041],[90.59311,28.23424],[90.5983,28.23501],[90.6035,28.2376],[90.60698,28.23171],[90.61389,28.22764],[90.60647,28.22086],[90.60206,28.20779],[90.57432,28.20077],[90.56782,28.18946],[90.5579,28.17755],[90.54698,28.15737],[90.50865,28.14908],[90.5034,28.14218],[90.49254,28.13843],[90.48442,28.13468],[90.4865,28.12834],[90.49545,28.11897],[90.50029,28.1075],[90.48385,28.09815],[90.47153,28.08698],[90.45165,28.08649],[90.44789,28.07955],[90.44549,28.06959],[90.44208,28.06419],[90.44416,28.06183],[90.4483,28.05159],[90.4552,28.04746],[90.46997,28.04819],[90.48268,28.05074],[90.49402,28.05904],[90.50673,28.06614],[90.52571,28.05991],[90.53107,28.05498],[90.54886,28.0507],[90.55223,28.05126],[90.56361,28.04679],[90.57032,28.04],[90.57223,28.03261],[90.57569,28.02977],[90.58052,28.03056],[90.58089,28.0256],[90.58468,28.02185],[90.59971,28.03304],[90.61611,28.04788],[90.62585,28.04666],[90.63559,28.04665],[90.65426,28.05755],[90.66151,28.05634],[90.6689,28.06179],[90.67081,28.06725],[90.67634,28.06785],[90.68425,28.07724],[90.69079,28.08057],[90.69929,28.07934],[90.70286,28.07235],[90.7078,28.07022],[90.72412,28.06896],[90.72709,28.0625],[90.74299,28.05383],[90.76301,28.04757],[90.77375,28.05163],[90.77411,28.04885],[90.77996,28.04123],[90.78821,28.0436],[90.79303,28.04839],[90.79718,28.04617],[90.802,28.0496],[90.80682,28.04939],[90.81378,28.0466],[90.8173,28.04745],[90.82298,28.04247],[90.82885,28.04403],[90.83577,28.04836],[90.85315,28.04631],[90.8529,28.0537],[90.86322,28.05179],[90.87301,28.04526],[90.88957,28.0429],[90.89928,28.0363],[90.89293,28.02854],[90.90113,28.02918],[90.90658,28.02558],[90.91256,28.02741],[90.92061,28.03288],[90.91836,28.03775],[90.92778,28.04443],[90.92985,28.04166],[90.94702,28.03343],[90.94463,28.02763],[90.95261,28.01754],[90.95798,28.01462],[90.96472,28.00806],[90.96995,28.00918],[90.97154,28.00429],[90.97846,28.00064],[90.98813,28.00548],[90.99093,28.01699],[90.99782,28.02213],[91.00402,28.02168],[91.01535,28.02327],[91.02326,28.02486],[91.02877,28.01623],[91.04251,28.00555],[91.04939,28.0076],[91.05387,27.99958],[91.06271,27.99742],[91.06675,27.99223],[91.07358,27.99236],[91.07285,27.99977],[91.0762,28.00368],[91.0872,28.00179],[91.09476,27.99626],[91.10165,28.00037],[91.10663,27.99707],[91.10878,27.99421],[91.11367,27.99135],[91.12209,27.99442],[91.13256,27.99568],[91.14871,27.9897],[91.15953,27.99731],[91.16897,28.0013],[91.19068,27.98648],[91.20325,27.98635],[91.20845,27.98677],[91.21502,27.99204],[91.21508,27.99792],[91.21788,28.01774],[91.2265,28.02231],[91.23237,28.02869],[91.23788,28.02901],[91.23859,28.0378],[91.24529,28.04311],[91.24925,28.05024],[91.246,28.05464],[91.24755,28.06267],[91.26308,28.0718],[91.2673,28.0656],[91.27456,28.06644],[91.28678,28.06262],[91.29185,28.06435],[91.29645,28.06369],[91.29899,28.06668],[91.30939,28.06078],[91.32126,28.06294],[91.32833,28.06207],[91.33402,28.06666],[91.33834,28.06639],[91.34304,28.06148],[91.34196,28.04903],[91.36216,28.0487],[91.37243,28.04118],[91.38271,28.03185],[91.39229,28.02949],[91.39776,28.03137],[91.40427,28.02397],[91.41421,28.01779],[91.42105,28.01997],[91.43098,28.017],[91.43106,28.00838],[91.43452,28.00425],[91.43934,28.00255],[91.44693,28.01006],[91.46563,28.00555],[91.4638,27.99864],[91.4677,27.99609],[91.47445,27.97996],[91.48297,27.97978],[91.48415,27.97393],[91.48738,27.97353],[91.49128,27.96456],[91.48327,27.9442],[91.49526,27.9382],[91.50245,27.93948],[91.50963,27.93681],[91.51847,27.92917],[91.5273,27.92335],[91.53373,27.92389],[91.53763,27.92144],[91.5484,27.91898],[91.55481,27.89857],[91.56866,27.89686],[91.57564,27.90485],[91.5919,27.90711],[91.59589,27.90249],[91.60991,27.89472],[91.61829,27.89569],[91.62529,27.89181],[91.62543,27.88816],[91.62007,27.88511],[91.61897,27.88205],[91.62226,27.87533],[91.6206,27.86431],[91.61178,27.85745],[91.60205,27.86404],[91.59369,27.85606],[91.58954,27.85627],[91.58678,27.86093],[91.57509,27.86497],[91.57092,27.84778],[91.55836,27.85558],[91.5531,27.85461],[91.55357,27.84988],[91.56342,27.82961],[91.56937,27.81856],[91.57669,27.81115],[91.58157,27.81156],[91.58851,27.81865],[91.5985,27.81855],[91.60163,27.8227],[91.6099,27.82382],[91.62424,27.81377],[91.63447,27.80312],[91.63694,27.7899],[91.63941,27.77364],[91.64435,27.77029],[91.6453,27.76116],[91.85005,27.7607],[91.86076,27.74072],[91.86035,27.73512],[91.86818,27.73134],[91.87295,27.7223],[91.8942,27.72361],[91.901,27.72986],[91.90627,27.72907],[91.91978,27.71735],[91.94182,27.72881],[91.95181,27.73545],[91.96385,27.74088],[91.96701,27.75082],[91.97579,27.76217],[91.97771,27.77291],[91.98453,27.77805],[91.99409,27.78259],[92.00231,27.78106],[92.01053,27.78257],[92.01721,27.7771],[92.03634,27.77558],[92.04724,27.78135],[92.0577,27.77952],[92.0606,27.78802],[92.09965,27.79983],[92.10769,27.80232],[92.12893,27.81795],[92.13182,27.82621],[92.14173,27.83394],[92.16385,27.82839],[92.1743,27.84713],[92.18536,27.84466],[92.20117,27.85892],[92.21218,27.86225],[92.21082,27.868],[92.2129,27.87315],[92.22203,27.87313],[92.23107,27.8795],[92.24078,27.88525],[92.24463,27.8846],[92.25542,27.87846],[92.26896,27.88566],[92.27569,27.88296],[92.2842,27.87615],[92.2934,27.86994],[92.29591,27.86283],[92.30391,27.85146],[92.29878,27.84171],[92.29709,27.83318],[92.30605,27.82556],[92.31225,27.82279],[92.32017,27.81092],[92.31917,27.79783],[92.33858,27.79645],[92.35662,27.80478],[92.36353,27.80332],[92.37181,27.80915],[92.38387,27.81284],[92.39593,27.82019],[92.40598,27.81939],[92.41328,27.82891],[92.42462,27.83482],[92.42607,27.83121],[92.42272,27.82154],[92.42631,27.81494],[92.42312,27.80846],[92.42749,27.80197],[92.43761,27.80539],[92.45609,27.79358],[92.45702,27.80065],[92.46756,27.80954],[92.47227,27.82055],[92.47766,27.82793],[92.47589,27.83312],[92.49328,27.8429],[92.50037,27.85086],[92.51142,27.84712],[92.52998,27.85588],[92.53309,27.86057],[92.53344,27.86646],[92.54566,27.86597],[92.55513,27.87336],[92.56528,27.8768],[92.56857,27.88207],[92.58293,27.88114],[92.58081,27.88871],[92.59071,27.89991],[92.59443,27.91112],[92.60757,27.91682],[92.62202,27.91354],[92.62754,27.90965],[92.63656,27.91149],[92.64587,27.9118],[92.65328,27.91832],[92.65862,27.92545],[92.6645,27.93001],[92.67039,27.94124],[92.67632,27.94823],[92.69006,27.95197],[92.6983,27.96298],[92.70792,27.96337],[92.73161,27.97995],[92.73316,27.98641],[92.72372,27.98985],[92.7203,28.00044],[92.72615,28.01847],[92.73611,28.03953],[92.73131,28.04908],[92.73132,28.05439],[92.71382,28.06492],[92.70181,28.06818],[92.69324,28.06603],[92.684,28.06813],[92.66687,28.06809],[92.65799,28.07532],[92.65597,28.08497],[92.66301,28.09691],[92.66748,28.12505],[92.67744,28.15103],[92.69163,28.15011],[92.70285,28.15571],[92.71086,28.16547],[92.71681,28.16796],[92.72508,28.16168],[92.73128,28.16035],[92.7361,28.1554],[92.74109,28.15649],[92.7454,28.16122],[92.75898,28.16141],[92.76954,28.16453],[92.77139,28.17002],[92.76672,28.17673],[92.77773,28.18399],[92.79062,28.18853],[92.80393,28.18323],[92.80715,28.18059],[92.8145,28.17975],[92.82692,28.17491],[92.83434,28.17531],[92.84313,28.18115],[92.85502,28.18609],[92.86748,28.19008],[92.87578,28.19721],[92.88338,28.20193],[92.91162,28.20152],[92.91921,28.2001],[92.92987,28.20575],[92.93658,28.21825],[92.92749,28.22592],[92.93193,28.2491],[92.947,28.26159],[92.95177,28.26168],[92.95793,28.26354],[92.96066,28.26721],[92.99071,28.27363],[92.9954,28.27962],[93.00282,28.29408],[93.02776,28.29946],[93.05133,28.31029],[93.05912,28.30487],[93.0637,28.30638],[93.07423,28.32225],[93.0779,28.32483],[93.08569,28.32696],[93.1,28.34019],[93.11569,28.34436],[93.13859,28.36265],[93.14799,28.36661],[93.14864,28.37596],[93.16852,28.41974],[93.17394,28.47106],[93.1852,28.49461],[93.24831,28.54985],[93.30792,28.5931],[93.38195,28.63335],[93.39399,28.63945],[93.41477,28.65426],[93.4232,28.65762],[93.42733,28.66248],[93.43695,28.66433],[93.44777,28.66887],[93.45928,28.66919],[93.47182,28.67072],[93.4768,28.67406],[93.48431,28.67274],[93.49387,28.66962],[93.51099,28.66892],[93.52124,28.67423],[93.58454,28.67909],[93.60389,28.68456],[93.61397,28.6843],[93.62336,28.68766],[93.62795,28.68047],[93.62921,28.66483],[93.63734,28.65461],[93.65841,28.66821],[93.67135,28.66959],[93.6884,28.67759],[93.70606,28.66452],[93.71369,28.66496],[93.7275,28.67323],[93.72998,28.6803],[93.73383,28.68375],[93.74909,28.69276],[93.75543,28.69876],[93.78556,28.71434],[93.78686,28.72962],[93.78899,28.73619],[93.79181,28.73615],[93.80253,28.73459],[93.81051,28.74027],[93.82542,28.73987],[93.84102,28.74851],[93.85223,28.74659],[93.86069,28.74167],[93.86743,28.74547],[93.89683,28.7571],[93.90975,28.74104],[93.91487,28.74108],[93.9193,28.74535],[93.91169,28.77313],[93.92633,28.78356],[93.9396,28.78917],[93.94806,28.80321],[93.95756,28.80823],[93.97461,28.82046],[93.9786,28.81819],[93.98809,28.8069],[93.98494,28.79658],[93.99552,28.79109],[94.00355,28.79165],[94.01296,28.79401],[94.02079,28.79333],[94.01814,28.82609],[94.02265,28.84397],[94.02892,28.85326],[94.03863,28.85773],[94.05805,28.85885],[94.05746,28.87401],[94.07055,28.87648],[94.07883,28.88256],[94.08471,28.88172],[94.10173,28.88431],[94.11669,28.8893],[94.1325,28.88888],[94.14557,28.89808],[94.16001,28.90397],[94.17514,28.91107],[94.16596,28.91849],[94.16755,28.92761],[94.17876,28.93613],[94.19414,28.93513],[94.20678,28.93173],[94.2153,28.93313],[94.23206,28.92732],[94.25323,28.929],[94.26024,28.93077],[94.26656,28.93976],[94.26753,28.9463],[94.27485,28.95206],[94.27369,28.96719],[94.27983,28.96985],[94.30176,28.98332],[94.30855,28.99405],[94.32134,28.99322],[94.34319,29.00241],[94.36641,29.02601],[94.36115,29.03529],[94.34285,29.03557],[94.32823,29.03942],[94.3239,29.05648],[94.31374,29.06693],[94.3165,29.07147],[94.31377,29.079],[94.29733,29.08266],[94.27917,29.08873],[94.27405,29.10079],[94.27694,29.11245],[94.28978,29.12171],[94.29585,29.13444],[94.29369,29.15257],[94.30373,29.1522],[94.31857,29.15603],[94.32462,29.153],[94.3341,29.15476],[94.33901,29.15504],[94.34736,29.15113],[94.35536,29.15291],[94.36732,29.1514],[94.3731,29.1541],[94.38025,29.15469],[94.38534,29.16069],[94.38893,29.18093],[94.39184,29.18439],[94.40326,29.18305],[94.4181,29.17871],[94.42925,29.18741],[94.43946,29.18532],[94.44555,29.18083],[94.45335,29.19073],[94.45245,29.20646],[94.45773,29.21261],[94.47402,29.21009],[94.49306,29.20757],[94.50214,29.21584],[94.5053,29.22656],[94.5119,29.2313],[94.51549,29.22698],[94.54105,29.21907],[94.5516,29.22845],[94.55597,29.22884],[94.56034,29.23762],[94.56761,29.24026],[94.57145,29.2477],[94.57157,29.25598],[94.58212,29.26116],[94.5913,29.27173],[94.59554,29.27358],[94.60184,29.27542],[94.61845,29.28295],[94.62613,29.29587],[94.64406,29.29627],[94.65718,29.30624],[94.66717,29.30471],[94.67492,29.30844],[94.68266,29.31457],[94.69373,29.3181],[94.71005,29.3019],[94.71547,29.2914],[94.72401,29.29124],[94.7353,29.28629],[94.73627,29.27584],[94.73805,29.27098],[94.74465,29.26313],[94.74849,29.25677],[94.74891,29.25041],[94.74391,29.2445],[94.75197,29.23021],[94.77391,29.21659],[94.79342,29.21872],[94.80415,29.20808],[94.8003,29.20508],[94.79768,29.1859],[94.80427,29.16641],[94.80887,29.16435],[94.8224,29.17248],[94.82803,29.17282],[94.83366,29.17855],[94.83943,29.17833],[94.84931,29.1835],[94.86155,29.18042],[94.879,29.17979],[94.89195,29.17768],[94.89803,29.17437],[94.90754,29.16837],[94.90796,29.16139],[94.91675,29.15731],[94.92485,29.15622],[94.93316,29.15944],[94.94079,29.16087],[94.95192,29.15891],[94.96168,29.15996],[94.99212,29.14609],[94.99612,29.14113],[94.99944,29.13196],[95.01649,29.1267],[95.02255,29.12743],[95.01585,29.13245],[95.01464,29.14466],[95.01015,29.1541],[95.00119,29.16218],[94.99493,29.16935],[94.98833,29.17082],[94.98516,29.17409],[94.99427,29.17314],[94.99981,29.17215],[95.00155,29.16866],[95.00535,29.16756],[95.00574,29.16567],[95.02266,29.15816],[95.04301,29.15064],[95.05419,29.15359],[95.0652,29.14719],[95.07757,29.14529],[95.08925,29.14158],[95.09681,29.14198],[95.10085,29.1275],[95.11027,29.12208],[95.11901,29.11366],[95.11617,29.1084],[95.10096,29.10134],[95.10224,29.09668],[95.10908,29.09566],[95.12485,29.09945],[95.12998,29.09753],[95.13048,29.09238],[95.13691,29.0883],[95.1518,29.09046],[95.15914,29.09862],[95.16696,29.09884],[95.17889,29.10385],[95.18903,29.10068],[95.21016,29.10772],[95.21946,29.10498],[95.23012,29.10285],[95.23676,29.08569],[95.24308,29.08219],[95.25215,29.0829],[95.25999,29.08011],[95.25878,29.07616],[95.26169,29.06801],[95.2706,29.07301],[95.27179,29.08716],[95.27229,29.10432],[95.2829,29.11072],[95.27704,29.11593],[95.28539,29.12096],[95.29506,29.12798],[95.29992,29.1362],[95.30587,29.13839],[95.31182,29.13879],[95.32818,29.13553],[95.33905,29.13708],[95.3458,29.13413],[95.37939,29.13685],[95.39172,29.13491],[95.39515,29.1298],[95.39721,29.1247],[95.40476,29.12439],[95.413,29.12589],[95.41386,29.13173],[95.40991,29.13698],[95.40888,29.14387],[95.41574,29.14925],[95.41436,29.16363],[95.41968,29.16616],[95.4195,29.18128],[95.42688,29.18471],[95.43563,29.19294],[95.44616,29.18564],[95.44724,29.17992],[95.45382,29.1754],[95.45282,29.17029],[95.45456,29.16398],[95.44891,29.16112],[95.45356,29.15227],[95.45142,29.14635],[95.4589,29.13622],[95.46744,29.13461],[95.47461,29.14139],[95.48058,29.14142],[95.50386,29.12724],[95.5093,29.12566],[95.51055,29.13809],[95.51523,29.14272],[95.51305,29.14855],[95.51521,29.15362],[95.51256,29.15808],[95.51379,29.16521],[95.50677,29.16994],[95.50579,29.17791],[95.50001,29.18228],[95.50227,29.19196],[95.5068,29.19453],[95.52892,29.18896],[95.53249,29.19477],[95.54853,29.19603],[95.55152,29.20209],[95.56024,29.20641],[95.56396,29.19857],[95.58882,29.18775],[95.59651,29.18786],[95.60173,29.19181],[95.60351,29.19576],[95.59486,29.20737],[95.5972,29.21538],[95.5961,29.22519],[95.60352,29.23463],[95.60613,29.23507],[95.61818,29.23355],[95.63709,29.22244],[95.63831,29.21508],[95.64777,29.21012],[95.65757,29.21715],[95.666,29.22418],[95.69886,29.22397],[95.70552,29.21381],[95.70361,29.20484],[95.70994,29.20426],[95.71825,29.21416],[95.72756,29.21792],[95.73658,29.21766],[95.74354,29.22519],[95.73768,29.22675],[95.73114,29.23431],[95.73042,29.24043],[95.73584,29.25088],[95.73638,29.25561],[95.74241,29.26184],[95.75187,29.27585],[95.74881,29.28058],[95.74711,29.2901],[95.73755,29.29896],[95.75725,29.32222],[95.77969,29.32355],[95.79801,29.33805],[95.8051,29.3411],[95.8122,29.34715],[95.82857,29.35141],[95.83876,29.35207],[95.84334,29.34071],[95.83676,29.33398],[95.8398,29.32127],[95.84612,29.3194],[95.8497,29.31633],[95.85561,29.31704],[95.86151,29.31536],[95.86784,29.31798],[95.87632,29.31443],[95.88897,29.32851],[95.90559,29.33615],[95.92503,29.34255],[95.93073,29.34715],[95.93939,29.34978],[95.94203,29.36597],[95.95477,29.36726],[95.96613,29.37573],[95.97404,29.37189],[95.97766,29.36398],[95.98127,29.36146],[95.99572,29.36873],[96.00657,29.36748],[96.01742,29.36323],[96.0273,29.3686],[96.03718,29.37637],[96.05213,29.38352],[96.05755,29.38111],[96.06163,29.37482],[96.07052,29.37272],[96.08348,29.36523],[96.09165,29.36551],[96.10465,29.35919],[96.1156,29.35526],[96.12517,29.34953],[96.13749,29.3456],[96.14359,29.32906],[96.13943,29.3166],[96.14559,29.31157],[96.15004,29.29348],[96.16616,29.29456],[96.17402,29.28307],[96.1805,29.27997],[96.18252,29.27208],[96.18783,29.26681],[96.19658,29.26274],[96.21425,29.26406],[96.2175,29.26239],[96.22381,29.25569],[96.23912,29.24863],[96.24894,29.24875],[96.26171,29.24421],[96.26217,29.23684],[96.2592,29.23008],[96.2624,29.2269],[96.26218,29.22074],[96.2528,29.2135],[96.26179,29.21453],[96.27078,29.20958],[96.28325,29.20955],[96.28308,29.2022],[96.30007,29.19035],[96.30169,29.17663],[96.29783,29.15932],[96.29285,29.15647],[96.2609,29.15914],[96.25436,29.15372],[96.24541,29.1504],[96.24394,29.13861],[96.23874,29.13182],[96.22805,29.12833],[96.19353,29.11767],[96.18353,29.11073],[96.18841,29.09687],[96.19603,29.08421],[96.19815,29.07245],[96.18581,29.0596],[96.18239,29.05516],[96.186,29.05353],[96.18686,29.05009],[96.18241,29.04442],[96.18585,29.04069],[96.19546,29.03515],[96.19822,29.02348],[96.20553,29.02415],[96.21353,29.02723],[96.23011,29.04712],[96.23772,29.06066],[96.24257,29.07421],[96.25377,29.08457],[96.26176,29.08825],[96.26908,29.09673],[96.28198,29.09989],[96.29626,29.09885],[96.30952,29.10141],[96.32536,29.10123],[96.34155,29.10014],[96.34744,29.10131],[96.36843,29.10952],[96.35884,29.09388],[96.35199,29.07466],[96.35405,29.06804],[96.3623,29.06864],[96.36164,29.0485],[96.36585,29.03922],[96.37516,29.03219],[96.38654,29.03115],[96.39633,29.02942],[96.43445,29.00614],[96.43519,29.0013],[96.42879,28.9983],[96.42823,28.98479],[96.43523,28.97669],[96.43639,28.96168],[96.44309,28.9515],[96.45511,28.93595],[96.46404,28.9337],[96.47298,28.92799],[96.48193,28.9478],[96.50839,28.94614],[96.52025,28.93359],[96.52455,28.91564],[96.51537,28.90794],[96.51718,28.88701],[96.52423,28.87882],[96.51939,28.86918],[96.52141,28.86134],[96.52751,28.8583],[96.53773,28.84774],[96.54387,28.84728],[96.54795,28.84921],[96.5521,28.84016],[96.55829,28.83202],[96.56586,28.82448],[96.57827,28.8178],[96.58937,28.81827],[96.58479,28.81144],[96.57804,28.80561],[96.57746,28.79738],[96.57048,28.78784],[96.57269,28.78335],[96.57832,28.77886],[96.59323,28.78069],[96.60092,28.78071],[96.60351,28.75872],[96.61806,28.73713],[96.62162,28.73539],[96.62079,28.72766],[96.60905,28.70723],[96.60349,28.69945],[96.59772,28.69723],[96.55693,28.6908],[96.54409,28.68758],[96.53605,28.68135],[96.53446,28.67526],[96.5371,28.66257],[96.537,28.6547],[96.51254,28.62624],[96.50594,28.6234],[96.49658,28.62597],[96.49511,28.62223],[96.49502,28.60944],[96.48931,28.60636],[96.46162,28.60147],[96.44676,28.58687],[96.45165,28.58267],[96.48056,28.56642],[96.48235,28.56041],[96.4814,28.55501],[96.46765,28.54405],[96.4587,28.5343],[96.45248,28.53048],[96.43202,28.5253],[96.41155,28.51711],[96.40838,28.50857],[96.43413,28.50586],[96.44289,28.49908],[96.44684,28.48927],[96.47775,28.49049],[96.48325,28.44916],[96.48926,28.43408],[96.49596,28.42987],[96.50543,28.43865],[96.51077,28.45771],[96.51356,28.5278],[96.5237,28.55184],[96.53796,28.57166],[96.55138,28.58295],[96.5799,28.59213],[96.61459,28.61397],[96.63039,28.61097],[96.65408,28.60977],[96.66679,28.59952],[96.6922,28.58688],[96.71487,28.58448],[96.72792,28.57425],[96.74511,28.57158],[96.75954,28.55865],[96.74952,28.54263],[96.76751,28.51411],[96.78344,28.51394],[96.82148,28.50034],[96.86089,28.48492],[96.86573,28.44851],[96.87913,28.43442],[96.88909,28.42819],[96.89323,28.41693],[96.88424,28.40519],[96.88349,28.39829],[96.89023,28.38449],[96.89972,28.38096],[96.90921,28.3738],[96.91342,28.36764],[96.92244,28.3639],[96.92383,28.35249],[96.95269,28.3453],[96.97652,28.32978],[96.99119,28.32745],[97.00311,28.32452],[97.02728,28.32985],[97.04384,28.34943],[97.0545,28.35901],[97.06584,28.36375],[97.07893,28.37203],[97.09329,28.36878],[97.10049,28.366],[97.12279,28.36262],[97.14098,28.35169],[97.14611,28.35284],[97.14914,28.34416],[97.15561,28.33669],[97.16853,28.32961],[97.17219,28.33401],[97.17928,28.33297],[97.19174,28.3197],[97.19694,28.3161],[97.19979,28.31005],[97.20812,28.30099],[97.21862,28.30826],[97.22147,28.3024],[97.23942,28.29353],[97.23579,28.28346],[97.2405,28.27298],[97.24383,28.27158],[97.24603,28.26484],[97.26361,28.26328],[97.2702,28.25628],[97.27186,28.24492],[97.27818,28.24407],[97.2845,28.24565],[97.2847,28.23338],[97.29863,28.23199],[97.33007,28.21518],[97.33618,28.21495],[97.3406,28.21574],[97.34503,28.2141],[97.34874,28.22621],[97.35039,28.24014],[97.35688,28.24227],[97.36287,28.24151],[97.36818,28.24318],[97.37429,28.23836],[97.38282,28.23871],[97.38982,28.24131],[97.39614,28.24088],[97.40295,28.24789],[97.40838,28.25006],[97.41168,28.25107],[97.41362,28.2545],[97.41174,28.26157],[97.40129,28.27227],[97.40113,28.28236],[97.4053,28.28766],[97.4105,28.28994],[97.41365,28.29464],[97.42451,28.298],[97.43132,28.29151],[97.44537,28.2795],[97.45411,28.27592],[97.46285,28.26991],[97.46928,28.27446],[97.47009,28.27916],[97.47682,28.28245],[97.48286,28.2809],[97.48326,28.28355],[97.4763,28.28946],[97.46797,28.30626],[97.47732,28.3096],[97.48117,28.31597],[97.49842,28.3184],[97.50275,28.31433],[97.5092,28.32121],[97.51142,28.32671],[97.51775,28.3304],[97.51806,28.33353],[97.50175,28.33824],[97.50329,28.34173],[97.49641,28.34523],[97.48954,28.35054],[97.49433,28.36206],[97.48634,28.36789],[97.48316,28.37855],[97.47887,28.37993],[97.48141,28.38683],[97.48668,28.39233],[97.49127,28.3924],[97.49688,28.3985],[97.50003,28.39793],[97.50298,28.40067],[97.50171,28.40657],[97.50691,28.41193],[97.50642,28.41793],[97.50078,28.42303],[97.50746,28.43501],[97.51582,28.44133],[97.52488,28.44523],[97.52122,28.45034],[97.51425,28.45199],[97.50355,28.4667],[97.50404,28.48356],[97.50041,28.49318],[97.51062,28.49697],[97.52121,28.49132],[97.52377,28.49574],[97.52014,28.50257],[97.52451,28.50636],[97.53597,28.50765],[97.53758,28.51252],[97.53644,28.52162],[97.53875,28.52428],[97.54313,28.52271],[97.54583,28.52902],[97.55128,28.5311],[97.5552,28.52883],[97.55648,28.5298],[97.5557,28.535],[97.56698,28.54734],[97.58043,28.54722],[97.58991,28.53902],[97.5897,28.53531],[97.59636,28.53039],[97.59114,28.52207],[97.59581,28.52202],[97.60226,28.51746],[97.61476,28.51941],[97.62554,28.52558],[97.62688,28.53231],[97.63302,28.53664],[97.64637,28.53508],[97.65286,28.54257],[97.66356,28.53882],[97.66807,28.52421],[97.68063,28.52491],[97.69034,28.51982],[97.69044,28.50689],[97.70076,28.50246],[97.71245,28.50054],[97.72276,28.49681],[97.72444,28.48273],[97.73053,28.47996],[97.73342,28.47429],[97.73769,28.4668],[97.73406,28.45057],[97.73843,28.44577],[97.7358,28.43281],[97.73318,28.43192],[97.73549,28.41919],[97.74465,28.41337],[97.73596,28.40694],[97.73574,28.39832],[97.74341,28.3945],[97.75549,28.38503],[97.75466,28.37789],[97.75974,28.37945],[97.76022,28.38567],[97.76413,28.38463],[97.77764,28.37039],[97.78645,28.35723],[97.78914,28.34612],[97.79645,28.3304],[97.80583,28.33055],[97.81189,28.33425],[97.81973,28.33428],[97.8255,28.32949],[97.84254,28.32888],[97.84696,28.33458],[97.84381,28.35115],[97.85923,28.35733],[97.86762,28.36675],[97.87739,28.36652],[97.88868,28.36604],[97.90822,28.36919],[97.91356,28.3632],[97.91409,28.35842],[97.9282,28.34464],[97.93788,28.33942],[97.94104,28.32967],[97.9488,28.32691],[97.95999,28.32536],[97.95765,28.3124],[97.95187,28.30427],[97.95474,28.30012],[97.96687,28.2952],[97.98736,28.29366],[97.99206,28.2909],[97.99401,28.28501],[98.01387,28.27178],[98.02378,28.24586],[98.01553,28.24575],[98.01167,28.23264],[98.01329,28.22437],[98.00694,28.22235],[98.00921,28.21029],[98.01766,28.20429],[98.01914,28.19766],[98.02406,28.19708],[98.02976,28.19108],[98.05267,28.19027],[98.04881,28.20368],[98.07933,28.20628],[98.08206,28.19926],[98.08823,28.20029],[98.09183,28.19132],[98.08925,28.18537],[98.09817,28.16501],[98.11756,28.16678],[98.12781,28.15965],[98.13259,28.15034],[98.13875,28.14526],[98.14363,28.1353],[98.15057,28.12232],[98.14797,28.11694],[98.16062,28.10407],[98.15917,28.09483],[98.15977,28.08924],[98.1544,28.07553],[98.15179,28.06486],[98.14574,28.05464],[98.13969,28.04563],[98.13986,28.0293],[98.14254,28.02582],[98.14385,28.01931],[98.13892,28.01113],[98.1405,27.99872],[98.13375,27.99524],[98.1336,27.98679],[98.1362,27.97895],[98.13674,27.9705],[98.14072,27.95477],[98.15446,27.94091],[98.17059,27.94095],[98.18879,27.94281],[98.18948,27.93346],[98.19429,27.92533],[98.20236,27.90445],[98.20137,27.8971],[98.20588,27.89158],[98.2018,27.88545],[98.20185,27.87568],[98.18125,27.87429],[98.18082,27.86728],[98.17546,27.865],[98.1749,27.85785],[98.17035,27.85419],[98.17267,27.84142],[98.17593,27.83591],[98.19718,27.82527],[98.2143,27.81342],[98.22486,27.81401],[98.22413,27.80163],[98.22683,27.79715],[98.21975,27.78554],[98.21748,27.76481],[98.22564,27.7557],[98.24306,27.74842],[98.2471,27.74342],[98.24519,27.7373],[98.23805,27.73364],[98.23352,27.73455],[98.23174,27.7312],[98.22474,27.72815],[98.22575,27.72356],[98.22332,27.71471],[98.2341,27.7069],[98.23336,27.70373],[98.23674,27.69934],[98.2332,27.69482],[98.26011,27.67971],[98.26434,27.67509],[98.26824,27.66075],[98.27706,27.6649],[98.2853,27.65782],[98.28582,27.64266],[98.28839,27.63664],[98.30041,27.63553],[98.30325,27.63009],[98.29711,27.61673],[98.30537,27.59453],[98.31089,27.58815],[98.30686,27.56082],[98.30862,27.54623],[98.31739,27.53681],[98.31621,27.52283],[98.32884,27.51976],[98.33817,27.51107],[98.35232,27.5164],[98.37024,27.51015],[98.38335,27.51517],[98.39573,27.52654],[98.40125,27.54339],[98.41415,27.54974],[98.43048,27.55183],[98.43465,27.58338],[98.42921,27.59546],[98.43476,27.60814],[98.42932,27.61352],[98.43849,27.62816],[98.43793,27.63608],[98.43255,27.64218],[98.43451,27.65042],[98.43029,27.65927],[98.43263,27.6661],[98.44358,27.66921],[98.44941,27.66203],[98.45799,27.65851],[98.46691,27.64355],[98.47513,27.63735],[98.50592,27.63617],[98.50847,27.62858],[98.51994,27.62828],[98.52798,27.6219],[98.53465,27.62526],[98.53838,27.63858],[98.54897,27.64339],[98.55029,27.64881],[98.55573,27.64997],[98.56254,27.64371],[98.57385,27.61442],[98.5776,27.60825],[98.58203,27.59751],[98.58647,27.59104],[98.58264,27.57352],[98.59061,27.56838],[98.59858,27.57298],[98.59728,27.5788],[98.60696,27.58157],[98.61407,27.57711],[98.62119,27.57935],[98.64708,27.56862],[98.65097,27.57093],[98.6528,27.57994],[98.65716,27.58579],[98.66654,27.59079],[98.67492,27.58494],[98.68465,27.56666],[98.69438,27.5636],[98.70217,27.56539],[98.70733,27.55725],[98.69807,27.54851],[98.69962,27.53824],[98.70461,27.52006],[98.69835,27.51793],[98.69447,27.51976],[98.68921,27.51307],[98.69175,27.50698],[98.68853,27.498],[98.68395,27.48963],[98.69584,27.47472],[98.7043,27.46711],[98.70147,27.4525],[98.68766,27.4513],[98.68891,27.4379],[98.68672,27.43395],[98.689,27.42406],[98.70158,27.41752],[98.7006,27.40465],[98.7032,27.39943],[98.70373,27.3869],[98.69829,27.38303],[98.70726,27.36513],[98.71332,27.36392],[98.71731,27.3554],[98.73629,27.3536],[98.73183,27.34806],[98.73166,27.34011],[98.74042,27.33155],[98.7358,27.30482],[98.73211,27.30243],[98.73323,27.28967],[98.7274,27.27939],[98.71813,27.27461],[98.71453,27.25914],[98.7305,27.24886],[98.73025,27.2453],[98.72519,27.24479],[98.71807,27.23634],[98.72571,27.23003],[98.72288,27.22283],[98.70907,27.22174],[98.69784,27.21454],[98.69141,27.20123],[98.70326,27.18797],[98.70643,27.18073],[98.70579,27.16626],[98.71027,27.15852],[98.70856,27.15017],[98.7127,27.14263],[98.70781,27.13699],[98.71253,27.12647],[98.71335,27.11815],[98.70964,27.11308],[98.71005,27.10433],[98.71464,27.09724],[98.71237,27.07853],[98.72628,27.06989],[98.74088,27.07593],[98.76527,27.05288],[98.7669,27.04437],[98.76305,27.0221],[98.74631,27.01695],[98.73301,27.00477],[98.74435,26.99562],[98.73646,26.97179],[98.73818,26.96064],[98.74265,26.9556],[98.74677,26.94598],[98.74369,26.93429],[98.75227,26.92626],[98.75402,26.90805],[98.75783,26.88371],[98.75237,26.87394],[98.74534,26.87028],[98.73146,26.85498],[98.73567,26.8427],[98.7495,26.8298],[98.75508,26.81568],[98.75998,26.81198],[98.76188,26.80198],[98.75665,26.78043],[98.7584,26.7769],[98.75893,26.76838],[98.75671,26.76661],[98.75572,26.74959],[98.75238,26.74533],[98.75453,26.73617],[98.74991,26.73256],[98.74689,26.72151],[98.74386,26.71965],[98.74224,26.71313],[98.74623,26.71109],[98.74679,26.69985],[98.75993,26.69333],[98.771,26.69417],[98.77093,26.68629],[98.76467,26.68148],[98.76803,26.67268],[98.76109,26.66572],[98.76823,26.64994],[98.77193,26.63784],[98.78181,26.62375],[98.77817,26.61732],[98.77807,26.61073],[98.78208,26.60536],[98.77509,26.58843],[98.76879,26.57457],[98.76047,26.57401],[98.7549,26.56977],[98.75482,26.55142],[98.75405,26.53798],[98.75299,26.52357],[98.74917,26.50979],[98.75665,26.50065],[98.75123,26.48316],[98.75062,26.46936],[98.74734,26.45897],[98.74215,26.43941],[98.75237,26.4292],[98.74543,26.41685],[98.74848,26.41283],[98.74348,26.40651],[98.74167,26.38767],[98.73183,26.3844],[98.72795,26.37169],[98.73367,26.35376],[98.70622,26.32783],[98.68289,26.30929],[98.68544,26.29504],[98.67769,26.28634],[98.67729,26.28001],[98.68036,26.27285],[98.67999,26.25706],[98.67169,26.24212],[98.68187,26.24113],[98.69136,26.23645],[98.69845,26.24439],[98.71241,26.2357],[98.71478,26.22589],[98.72196,26.22038],[98.72533,26.21184],[98.72441,26.20176],[98.73654,26.1886],[98.73179,26.1747],[98.72704,26.16327],[98.72243,26.16032],[98.71165,26.16046],[98.70793,26.15211],[98.70821,26.14496],[98.71281,26.14631],[98.71752,26.13959],[98.71948,26.13041],[98.70567,26.12043],[98.7008,26.11292],[98.69304,26.11611],[98.68665,26.10511],[98.67934,26.09961],[98.67409,26.10027],[98.6678,26.09169],[98.66015,26.09236],[98.65728,26.10472],[98.66477,26.11367],[98.66746,26.12386],[98.66095,26.13053],[98.66062,26.13659],[98.65103,26.14623],[98.63254,26.15135],[98.62685,26.1497],[98.6239,26.14374],[98.61525,26.14291],[98.60936,26.13468],[98.60346,26.13261],[98.58961,26.14451],[98.58193,26.14593],[98.58493,26.13686],[98.57968,26.12593],[98.57331,26.12196],[98.58411,26.09887],[98.58676,26.08271],[98.58186,26.08072],[98.58279,26.0736],[98.59264,26.0745],[98.59975,26.06244],[98.60193,26.03205],[98.60505,26.02244],[98.60936,26.02103],[98.60979,26.01663],[98.60795,26.01535],[98.60954,26.00852],[98.61077,25.99737],[98.61791,25.98594],[98.61544,25.97388],[98.62074,25.97449],[98.63017,25.97263],[98.63471,25.97579],[98.64199,25.97648],[98.64833,25.97292],[98.64805,25.9638],[98.6589,25.96109],[98.66158,25.9551],[98.68146,25.94223],[98.69002,25.92993],[98.68736,25.92809],[98.6895,25.91205],[98.69727,25.90789],[98.70561,25.89469],[98.70366,25.88829],[98.70857,25.88258],[98.70593,25.86883],[98.70752,25.8605],[98.70342,25.85391],[98.69383,25.84732],[98.68974,25.84845],[98.68565,25.84587],[98.68501,25.83948],[98.68232,25.8368],[98.67394,25.81989],[98.66058,25.82122],[98.65415,25.8166],[98.64979,25.80704],[98.64477,25.80961],[98.64112,25.80042],[98.6304,25.80029],[98.62892,25.80672],[98.62125,25.80944],[98.61417,25.80994],[98.6112,25.81384],[98.60411,25.81465],[98.58924,25.82615],[98.57781,25.829],[98.57465,25.83979],[98.56146,25.84839],[98.55332,25.84883],[98.55077,25.84415],[98.54685,25.8438],[98.54175,25.8468],[98.53303,25.84767],[98.52845,25.84092],[98.51976,25.83665],[98.51712,25.83173],[98.52067,25.82433],[98.50637,25.81602],[98.49481,25.81264],[98.49032,25.80574],[98.48995,25.79513],[98.48512,25.79472],[98.47479,25.78256],[98.47471,25.77312],[98.48149,25.75934],[98.46974,25.7499],[98.46004,25.73675],[98.45987,25.72646],[98.46932,25.70751],[98.4628,25.70178],[98.45937,25.68971],[98.4333,25.68257],[98.43261,25.67908],[98.41888,25.67312],[98.40688,25.65625],[98.41171,25.65189],[98.40538,25.63795],[98.40791,25.62348],[98.40976,25.61148],[98.40355,25.60691],[98.40282,25.59987],[98.38337,25.60218],[98.37261,25.58817],[98.36151,25.5791],[98.3503,25.5808],[98.34707,25.57816],[98.34384,25.58047],[98.33806,25.57333],[98.3241,25.56461],[98.31334,25.54781],[98.30395,25.55212],[98.29661,25.562],[98.2943,25.5768],[98.28302,25.58204],[98.27517,25.59347],[98.26938,25.59499],[98.26359,25.60146],[98.25879,25.6029],[98.25399,25.6062],[98.24713,25.60579],[98.24233,25.61342],[98.23617,25.60866],[98.21559,25.61288],[98.21493,25.61587],[98.20472,25.61975],[98.20013,25.61581],[98.19039,25.61527],[98.1843,25.62627],[98.16818,25.62693],[98.1684,25.62098],[98.17205,25.6175],[98.1816,25.59393],[98.18291,25.58336],[98.18828,25.574],[98.18208,25.56154],[98.17382,25.54907],[98.16178,25.54652],[98.15936,25.52725],[98.15309,25.52671],[98.14651,25.52179],[98.13994,25.52059],[98.13083,25.52013],[98.12426,25.50806],[98.13861,25.4977],[98.13925,25.49129],[98.1485,25.47692],[98.15638,25.46007],[98.15723,25.45318],[98.15464,25.45001],[98.15428,25.44118],[98.14532,25.43283],[98.15523,25.42231],[98.14818,25.41612],[98.14808,25.40806],[98.1446,25.40496],[98.14286,25.39597],[98.13769,25.38636],[98.12787,25.38607],[98.12181,25.38461],[98.1027,25.39431],[98.09951,25.39075],[98.10205,25.38892],[98.09714,25.38056],[98.10189,25.3801],[98.09896,25.3744],[98.09603,25.35133],[98.09189,25.35165],[98.0898,25.33831],[98.08152,25.33584],[98.07525,25.33648],[98.07275,25.32968],[98.07219,25.321],[98.06957,25.31481],[98.06232,25.31011],[98.03791,25.30479],[98.02862,25.30585],[98.02311,25.31095],[98.01141,25.30687],[98.00264,25.2966],[98.00691,25.28323],[98.0002,25.27699],[97.988,25.2571],[97.97767,25.25332],[97.96803,25.23837],[97.96173,25.2419],[97.95165,25.22587],[97.94432,25.21792],[97.93395,25.21862],[97.91743,25.21308],[97.90538,25.21809],[97.8954,25.23498],[97.88336,25.24753],[97.87575,25.26144],[97.8698,25.26389],[97.86797,25.26634],[97.86134,25.26414],[97.84097,25.27249],[97.83508,25.26384],[97.83248,25.25424],[97.82232,25.23781],[97.81643,25.22513],[97.8097,25.20388],[97.80298,25.18542],[97.8036,25.1787],[97.79803,25.1726],[97.79995,25.16786],[97.78916,25.15162],[97.77769,25.13165],[97.77849,25.12511],[97.76636,25.11049],[97.75698,25.0965],[97.75,25.09541],[97.74577,25.08127],[97.73913,25.07993],[97.73112,25.0817],[97.73049,25.08907],[97.72606,25.08591],[97.72025,25.08524],[97.72649,25.06667],[97.72861,25.04748],[97.71843,25.01345],[97.71884,25.00017],[97.71718,24.98004],[97.71987,24.97216],[97.72739,24.96293],[97.73046,24.95307],[97.73091,24.93803],[97.7284,24.93051],[97.73034,24.91147],[97.73984,24.90551],[97.74597,24.89443],[97.75641,24.88967],[97.75803,24.88558],[97.76376,24.88273],[97.77178,24.88981],[97.77622,24.88416],[97.7834,24.881],[97.78852,24.87442],[97.78971,24.86396],[97.79752,24.86372],[97.79845,24.85351],[97.78228,24.8399],[97.7711,24.83185],[97.76267,24.82878],[97.74857,24.82946],[97.74462,24.83354],[97.7344,24.82997],[97.70903,24.83815],[97.70253,24.84629],[97.70082,24.8418],[97.69568,24.83543],[97.68125,24.83031],[97.66717,24.81498],[97.65035,24.79622],[97.6341,24.79081],[97.61545,24.77885],[97.58914,24.77052],[97.5688,24.77007],[97.56077,24.75293],[97.54783,24.7428],[97.54926,24.73665],[97.55274,24.73049],[97.56669,24.72816],[97.56896,24.71461],[97.56897,24.70767],[97.56554,24.70322],[97.56556,24.69619],[97.56971,24.69337],[97.56909,24.66527],[97.57426,24.66285],[97.57393,24.65731],[97.56847,24.65622],[97.56746,24.64693],[97.56988,24.60207],[97.56474,24.59466],[97.56492,24.58097],[97.56192,24.57631],[97.56489,24.56243],[97.56139,24.56048],[97.55995,24.52981],[97.55702,24.52226],[97.55271,24.48598],[97.53741,24.46],[97.52898,24.4434],[97.53474,24.44292],[97.53006,24.43643],[97.54764,24.44069],[97.57737,24.44188],[97.5912,24.43872],[97.60018,24.44652],[97.60536,24.44073],[97.64228,24.44721],[97.67027,24.45557],[97.67796,24.44667],[97.67528,24.4341],[97.68012,24.41781],[97.68427,24.41528],[97.67582,24.4092],[97.69185,24.38678],[97.70467,24.38464],[97.70319,24.37856],[97.70794,24.37897],[97.71477,24.37667],[97.71407,24.36707],[97.71699,24.36499],[97.71467,24.35706],[97.7096,24.35477],[97.70231,24.34685],[97.68814,24.34393],[97.68795,24.34124],[97.68089,24.34043],[97.67707,24.34632],[97.66874,24.3481],[97.65905,24.33533],[97.66653,24.30067],[97.68979,24.29482],[97.70555,24.29659],[97.71924,24.30023],[97.72992,24.29138],[97.73854,24.28941],[97.74923,24.28274],[97.74961,24.27796],[97.7683,24.26444],[97.75815,24.25406],[97.74388,24.24806],[97.72807,24.22891],[97.72566,24.20274],[97.72736,24.18847],[97.74314,24.18468],[97.7512,24.17418],[97.7524,24.16556],[97.74364,24.16289],[97.7372,24.15059],[97.73467,24.13347],[97.73065,24.12868],[97.7287,24.11448],[97.71493,24.10962],[97.70871,24.10351],[97.70931,24.09943],[97.70091,24.09691],[97.69304,24.09751],[97.67729,24.07741],[97.65128,24.06102],[97.64047,24.04581],[97.63326,24.04799],[97.63258,24.02163],[97.62299,24.02347],[97.62714,24.00645],[97.61333,24.00055],[97.59677,23.99465],[97.57396,23.98725],[97.56762,23.97012],[97.56274,23.96438],[97.55001,23.96028],[97.5318,23.95116],[97.52835,23.94204],[97.52764,23.93167],[97.54238,23.9221],[97.55112,23.9239],[97.56536,23.91315],[97.57289,23.91457],[97.57666,23.91021],[97.5873,23.90774],[97.59931,23.89458],[97.61682,23.89272],[97.62231,23.88395],[97.63192,23.88083],[97.63291,23.87268],[97.63889,23.87143],[97.63742,23.86578],[97.64184,23.86045],[97.6413,23.85213],[97.64556,23.84255],[97.65004,23.84381],[97.64903,23.85511],[97.65728,23.86516],[97.65866,23.8727],[97.66107,23.86799],[97.65953,23.86187],[97.66417,23.85637],[97.66847,23.85716],[97.67141,23.8636],[97.67796,23.86328],[97.68426,23.88276],[97.69228,23.88309],[97.69389,23.87885],[97.68851,23.87548],[97.69887,23.86752],[97.71641,23.87232],[97.71385,23.87755],[97.7033,23.8764],[97.70386,23.88242],[97.70785,23.88655],[97.71874,23.88344],[97.72865,23.89915],[97.74665,23.90481],[97.75153,23.91046],[97.76427,23.91109],[97.76715,23.91439],[97.76248,23.91894],[97.76742,23.92349],[97.76549,23.93118],[97.77434,23.93871],[97.79181,23.94499],[97.79403,23.95691],[97.80612,23.95283],[97.80633,23.95958],[97.81227,23.96232],[97.81558,23.96087],[97.81243,23.95356],[97.80846,23.94833],[97.81248,23.94431],[97.81581,23.94844],[97.8171,23.95447],[97.82496,23.9578],[97.82649,23.96197],[97.82197,23.96576],[97.81827,23.97126],[97.8283,23.97236],[97.82982,23.9639],[97.83488,23.96175],[97.84228,23.9644],[97.8399,23.97471],[97.84409,23.97714],[97.84627,23.97195],[97.85751,23.98229],[97.87012,23.97599],[97.89188,23.97567],[97.89647,23.98288],[97.88745,23.98694],[97.88186,23.99602],[97.89332,24.00479],[97.8986,24.01607],[97.9176,24.02234],[97.92648,24.02265],[97.93878,24.01983],[97.96173,24.02798],[97.98399,24.03488],[97.99579,24.04905],[98.02091,24.06084],[98.04515,24.07614],[98.05143,24.07469],[98.05628,24.07868],[98.07004,24.08067],[98.07349,24.07915],[98.0838,24.0831],[98.08792,24.08266],[98.08873,24.08774],[98.11317,24.09342],[98.14839,24.09782],[98.15908,24.10049],[98.17115,24.10065],[98.16674,24.10551],[98.19371,24.10199],[98.20421,24.10411],[98.20588,24.11013],[98.21333,24.11179],[98.21667,24.11596],[98.224,24.11633],[98.24575,24.11042],[98.27849,24.11109],[98.29406,24.10237],[98.32732,24.10463],[98.34326,24.10169],[98.35123,24.10555],[98.35556,24.10434],[98.35188,24.10092],[98.35897,24.10014],[98.36183,24.11041],[98.36744,24.11379],[98.38979,24.11707],[98.46242,24.12811],[98.48432,24.12361],[98.54741,24.13038],[98.55432,24.11236],[98.57167,24.1019],[98.58901,24.09457],[98.59418,24.08305],[98.61869,24.09175],[98.62673,24.09793],[98.6476,24.10905],[98.66165,24.10725],[98.67981,24.10169],[98.70003,24.11054],[98.71339,24.12941],[98.72397,24.13067],[98.73338,24.12753],[98.74417,24.13004],[98.7575,24.12691],[98.76725,24.12879],[98.7722,24.13255],[98.81934,24.13693],[98.8373,24.12957],[98.85003,24.13165],[98.85795,24.1356],[98.8786,24.15604],[98.88793,24.14341],[98.89383,24.12514],[98.88906,24.11773],[98.89459,24.11721],[98.89839,24.10901],[98.89377,24.10178],[98.88401,24.09267],[98.87006,24.0878],[98.86391,24.08031],[98.86943,24.07471],[98.8631,24.06736],[98.83315,24.04895],[98.819,24.04622],[98.79858,24.02571],[98.77121,24.02926],[98.75922,24.01493],[98.76714,23.99873],[98.75865,23.99649],[98.7529,23.98295],[98.74003,23.98224],[98.73626,23.97139],[98.72599,23.96915],[98.71601,23.97807],[98.70123,23.98699],[98.67581,23.96235],[98.67373,23.95652],[98.69838,23.95457],[98.69755,23.94689],[98.70531,23.94047],[98.70345,23.93656],[98.69973,23.93815],[98.69532,23.93472],[98.68955,23.92894],[98.6872,23.92253],[98.67839,23.91284],[98.68871,23.89992],[98.68529,23.89327],[98.68942,23.89278],[98.69492,23.88726],[98.69527,23.87335],[98.70111,23.872],[98.69631,23.85778],[98.6915,23.85738],[98.69256,23.84817],[98.69834,23.84646],[98.7048,23.84286],[98.69094,23.81242],[98.67833,23.81562],[98.67303,23.80694],[98.68645,23.80342],[98.69488,23.78783],[98.70093,23.78614],[98.70877,23.7922],[98.73651,23.79135],[98.73982,23.78746],[98.74357,23.7846],[98.74662,23.78488],[98.75068,23.77665],[98.78988,23.78406],[98.79832,23.77445],[98.80744,23.76925],[98.80489,23.76625],[98.80567,23.76035],[98.81876,23.74577],[98.83117,23.72868],[98.8238,23.72678],[98.81575,23.71232],[98.81886,23.69784],[98.84019,23.68901],[98.84073,23.67092],[98.8447,23.66792],[98.84783,23.64368],[98.85097,23.63486],[98.8636,23.62982],[98.87828,23.62478],[98.89187,23.6166],[98.89066,23.60444],[98.88053,23.59229],[98.86369,23.58623],[98.85612,23.57725],[98.84475,23.58039],[98.83664,23.57204],[98.83324,23.56382],[98.81542,23.55559],[98.81029,23.54991],[98.80859,23.54296],[98.80107,23.54041],[98.80909,23.52498],[98.80612,23.52159],[98.81757,23.50435],[98.81975,23.49215],[98.81534,23.49078],[98.82104,23.48379],[98.82698,23.48565],[98.82742,23.47869],[98.83476,23.48153],[98.839,23.47877],[98.85004,23.47897],[98.84804,23.4842],[98.85984,23.48617],[98.87643,23.4894],[98.89785,23.45735],[98.89689,23.44794],[98.92064,23.41963],[98.92053,23.41275],[98.91081,23.39578],[98.92238,23.37818],[98.91855,23.37379],[98.92154,23.36466],[98.91767,23.35364],[98.90099,23.3568],[98.89026,23.34281],[98.87679,23.33009],[98.89748,23.33498],[98.90855,23.33546],[98.91529,23.32892],[98.92134,23.32932],[98.93288,23.31774],[98.94106,23.31478],[98.94512,23.30931],[98.93774,23.3068],[98.93662,23.29404],[98.93005,23.2938],[98.92555,23.29546],[98.92555,23.28225],[98.93173,23.26904],[98.91199,23.25456],[98.91148,23.23631],[98.90367,23.22308],[98.89037,23.21237],[98.89595,23.20703],[98.885,23.19142],[98.88503,23.1833],[98.88985,23.17897],[98.90257,23.18133],[98.90996,23.1885],[98.92602,23.18767],[98.93315,23.18243],[98.95241,23.1802],[98.95466,23.17546],[98.96652,23.17072],[98.98069,23.17025],[99.00447,23.16409],[99.01877,23.16432],[99.03444,23.16266],[99.04461,23.16669],[99.05245,23.16333],[99.06097,23.17324],[99.05619,23.15397],[99.049,23.1456],[99.05021,23.13446],[99.04661,23.12333],[99.09624,23.10249],[99.1033,23.09301],[99.11558,23.09253],[99.11276,23.10153],[99.11646,23.10485],[99.12236,23.10078],[99.12963,23.10177],[99.14481,23.10875],[99.15651,23.1053],[99.16546,23.10831],[99.17336,23.10634],[99.18238,23.10758],[99.18933,23.10504],[99.20015,23.11258],[99.20685,23.10861],[99.20737,23.10086],[99.21596,23.09166],[99.22661,23.09193],[99.23383,23.0941],[99.23813,23.09101],[99.2383,23.0854],[99.24895,23.07922],[99.26338,23.08581],[99.25995,23.091],[99.26442,23.10117],[99.27506,23.09809],[99.27987,23.10675],[99.29223,23.10792],[99.30597,23.10215],[99.31088,23.10752],[99.3178,23.10894],[99.32472,23.11288],[99.32493,23.11603],[99.32329,23.12013],[99.32573,23.12612],[99.32955,23.13591],[99.337,23.1329],[99.34245,23.13771],[99.3479,23.13747],[99.34883,23.13351],[99.36303,23.12679],[99.36361,23.11712],[99.3687,23.11608],[99.37125,23.11145],[99.38248,23.10882],[99.38501,23.10087],[99.39108,23.10195],[99.4053,23.0967],[99.41128,23.09839],[99.43442,23.08745],[99.43609,23.08266],[99.44119,23.08608],[99.45899,23.0854],[99.46172,23.08727],[99.47372,23.08252],[99.47869,23.08741],[99.48213,23.08621],[99.48558,23.08249],[99.4952,23.08288],[99.50071,23.08074],[99.51036,23.0848],[99.52486,23.07398],[99.52756,23.06181],[99.53164,23.0547],[99.53025,23.04921],[99.52612,23.04962],[99.52269,23.04687],[99.52542,23.04233],[99.52541,23.03905],[99.52145,23.03773],[99.5175,23.03451],[99.52127,23.02618],[99.51782,23.02511],[99.51644,23.02142],[99.5185,23.01835],[99.52326,23.00271],[99.51946,22.99931],[99.52511,22.9875],[99.53557,22.97506],[99.53449,22.96353],[99.53954,22.9627],[99.54391,22.9644],[99.5536,22.95868],[99.56191,22.946],[99.56526,22.93246],[99.56106,22.92461],[99.56089,22.90765],[99.553,22.90535],[99.54547,22.90835],[99.53659,22.8998],[99.52373,22.90264],[99.51637,22.90801],[99.50912,22.90816],[99.48814,22.91591],[99.47502,22.92887],[99.45709,22.93487],[99.44054,22.94214],[99.44073,22.937],[99.43612,22.92679],[99.43854,22.9207],[99.43581,22.91587],[99.44409,22.88945],[99.44977,22.88001],[99.45089,22.8677],[99.45049,22.86162],[99.45695,22.85807],[99.46204,22.84819],[99.44082,22.84746],[99.43056,22.83855],[99.42268,22.83631],[99.42045,22.83235],[99.42029,22.82775],[99.4032,22.83019],[99.39705,22.82191],[99.3974,22.8181],[99.3902,22.81556],[99.39192,22.81081],[99.38969,22.7964],[99.38502,22.7909],[99.38927,22.78034],[99.38609,22.76554],[99.37882,22.76472],[99.36674,22.76707],[99.36324,22.76467],[99.3618,22.76101],[99.35262,22.75964],[99.35043,22.76133],[99.34549,22.76113],[99.34056,22.75902],[99.34043,22.75564],[99.32636,22.75335],[99.32361,22.74219],[99.31469,22.73926],[99.3182,22.7298],[99.32583,22.72542],[99.32896,22.71562],[99.33758,22.71343],[99.34998,22.6745],[99.36169,22.66344],[99.35901,22.65739],[99.36332,22.6386],[99.369,22.61602],[99.37418,22.61078],[99.37081,22.60473],[99.38392,22.58791],[99.38267,22.58343],[99.38554,22.57451],[99.37296,22.55847],[99.35832,22.53798],[99.3601,22.53091],[99.35845,22.52637],[99.36572,22.51518],[99.38055,22.50652],[99.3809,22.4952],[99.36794,22.48808],[99.36116,22.47716],[99.35125,22.47123],[99.34477,22.46148],[99.33657,22.4565],[99.3325,22.44771],[99.3126,22.44093],[99.30902,22.43644],[99.30963,22.4307],[99.30407,22.42306],[99.28111,22.40329],[99.25236,22.39739],[99.24842,22.39258],[99.25084,22.38549],[99.2653,22.37449],[99.27838,22.36349],[99.27646,22.34869],[99.26666,22.34493],[99.25549,22.33482],[99.25032,22.32094],[99.2472,22.31406],[99.23981,22.30934],[99.23645,22.3054],[99.23684,22.3012],[99.23241,22.29828],[99.23545,22.28324],[99.22942,22.27159],[99.23574,22.25168],[99.22328,22.23734],[99.2188,22.23471],[99.2095,22.23589],[99.20433,22.22786],[99.20526,22.22235],[99.20071,22.22193],[99.19615,22.21611],[99.19656,22.20655],[99.19147,22.21161],[99.19016,22.20269],[99.17509,22.1906],[99.18094,22.18423],[99.1794,22.18201],[99.17486,22.18184],[99.17544,22.17863],[99.18357,22.17477],[99.18715,22.17722],[99.18997,22.17082],[99.19485,22.17459],[99.202,22.17505],[99.19474,22.16724],[99.18021,22.16576],[99.17323,22.17],[99.16477,22.16831],[99.16158,22.17065],[99.15727,22.16897],[99.15936,22.16467],[99.15597,22.16291],[99.16906,22.15035],[99.18178,22.14661],[99.18093,22.14506],[99.18943,22.14174],[99.19362,22.13757],[99.19983,22.13485],[99.20398,22.13022],[99.21366,22.1305],[99.2161,22.1246],[99.26126,22.10957],[99.27183,22.10014],[99.27601,22.10176],[99.27951,22.1091],[99.29132,22.11234],[99.29434,22.11297],[99.30354,22.10216],[99.31714,22.10279],[99.3269,22.0942],[99.33047,22.09897],[99.3385,22.09611],[99.34173,22.10024],[99.35808,22.09388],[99.36438,22.1062],[99.37578,22.10536],[99.39074,22.09954],[99.40543,22.0998],[99.40935,22.09898],[99.41336,22.10335],[99.41463,22.10898],[99.42643,22.11017],[99.43093,22.10506],[99.4342,22.10409],[99.43611,22.1114],[99.44094,22.11424],[99.44645,22.1128],[99.45813,22.12257],[99.46535,22.13001],[99.47393,22.1368],[99.48517,22.13536],[99.48324,22.12987],[99.48639,22.12745],[99.49517,22.12655],[99.49579,22.1207],[99.50848,22.10969],[99.52597,22.09805],[99.53316,22.1074],[99.54568,22.1108],[99.55332,22.10932],[99.56164,22.11739],[99.56884,22.10601],[99.57794,22.10223],[99.58386,22.10766],[99.59163,22.11005],[99.59322,22.11499],[99.60145,22.11189],[99.60506,22.10617],[99.60935,22.10364],[99.61175,22.09666],[99.62411,22.097],[99.62789,22.10257],[99.64213,22.10536],[99.65157,22.10497],[99.64985,22.10067],[99.65208,22.09216],[99.66212,22.09045],[99.66954,22.07782],[99.67497,22.07501],[99.68283,22.07551],[99.68677,22.07862],[99.69663,22.07127],[99.69401,22.06378],[99.69472,22.05856],[99.68789,22.04698],[99.71127,22.0405],[99.7178,22.04393],[99.72176,22.04979],[99.72069,22.0573],[99.71893,22.06035],[99.72269,22.06665],[99.7285,22.06914],[99.73466,22.06907],[99.74049,22.07445],[99.7573,22.07315],[99.7791,22.05656],[99.80914,22.05397],[99.81347,22.04975],[99.8233,22.04806],[99.83746,22.03707],[99.83308,22.02988],[99.85155,22.02681],[99.86659,22.0282],[99.86756,22.03627],[99.878,22.03903],[99.87807,22.04169],[99.86849,22.04747],[99.86234,22.05898],[99.87625,22.07039],[99.89109,22.07037],[99.90525,22.06972],[99.90851,22.06172],[99.91735,22.05836],[99.92745,22.05975],[99.93962,22.06241],[99.94252,22.05934],[99.94088,22.05717],[99.96237,22.0529],[99.96934,22.05872],[99.97317,22.05781],[99.96908,22.0475],[99.96222,22.04361],[99.95949,22.03972],[99.96049,22.03019],[99.96423,22.01812],[99.97056,22.01351],[99.97758,22.00191],[99.98613,21.99779],[99.99973,21.97495],[99.98998,21.96008],[99.98823,21.95254],[99.98236,21.93863],[99.98003,21.935],[99.98251,21.92308],[99.97443,21.91453],[99.96032,21.90954],[99.96235,21.89464],[99.96473,21.88528],[99.9582,21.874],[99.94577,21.86682],[99.94537,21.84848],[99.94702,21.84512],[99.94403,21.82404],[99.94927,21.80901],[99.95795,21.79972],[99.96062,21.79027],[99.96195,21.77662],[99.97016,21.76552],[99.97145,21.75416],[99.97687,21.74662],[99.97484,21.74298],[99.98104,21.73144],[99.98414,21.71706],[99.98981,21.7121],[99.99136,21.70587],[100.01684,21.69456],[100.02615,21.69752],[100.0339,21.69485],[100.03581,21.68885],[100.03291,21.6886],[100.03124,21.6798],[100.03453,21.67523],[100.04262,21.67642],[100.04581,21.66935],[100.05037,21.66675],[100.04944,21.67372],[100.05653,21.68359],[100.06328,21.68574],[100.07209,21.69299],[100.08542,21.69454],[100.09531,21.7063],[100.09972,21.70594],[100.10219,21.70106],[100.1103,21.69926],[100.11085,21.70384],[100.12053,21.70631],[100.12332,21.70163],[100.13054,21.70185],[100.14145,21.68994],[100.16128,21.67548],[100.17485,21.65613],[100.1744,21.65183],[100.17189,21.64882],[100.16114,21.65091],[100.15314,21.64981],[100.14517,21.63902],[100.1396,21.63684],[100.13441,21.62714],[100.13403,21.61807],[100.12915,21.61319],[100.12221,21.61086],[100.1175,21.60501],[100.10867,21.60172],[100.10722,21.59416],[100.10787,21.58527],[100.1178,21.57859],[100.1238,21.56632],[100.11881,21.54829],[100.12251,21.54105],[100.12505,21.532],[100.12072,21.52487],[100.12797,21.50805],[100.1479,21.50053],[100.16783,21.48661],[100.17283,21.49107],[100.1792,21.51788],[100.19129,21.51695],[100.20475,21.51282],[100.21587,21.49114],[100.22576,21.4874],[100.23001,21.48186],[100.23008,21.47398],[100.23358,21.46993],[100.25034,21.46715],[100.25525,21.47171],[100.26285,21.47016],[100.27045,21.47309],[100.28302,21.48605],[100.29688,21.47914],[100.3047,21.49024],[100.31552,21.49263],[100.33356,21.51642],[100.35022,21.53126],[100.37203,21.52965],[100.37572,21.53172],[100.38478,21.52605],[100.39109,21.52421],[100.40913,21.53442],[100.43197,21.5408],[100.44146,21.5226],[100.44106,21.51766],[100.44336,21.51722],[100.44566,21.51359],[100.45689,21.51251],[100.46319,21.49824],[100.45962,21.49339],[100.45879,21.48855],[100.4662,21.48243],[100.46648,21.47904],[100.4697,21.47608],[100.47029,21.47204],[100.47607,21.46906],[100.47656,21.46341],[100.47979,21.45777],[100.48912,21.45825],[100.49214,21.46221],[100.50271,21.46361],[100.51362,21.47044],[100.52179,21.47152],[100.53838,21.47056],[100.55429,21.45428],[100.56224,21.45731],[100.57205,21.45052],[100.58687,21.45314],[100.5955,21.46343],[100.61031,21.46476],[100.62356,21.47502],[100.63888,21.48222],[100.64666,21.48366],[100.65992,21.48287],[100.66907,21.47952],[100.67991,21.48614],[100.68533,21.50478],[100.68943,21.50417],[100.69285,21.50995],[100.70313,21.51541],[100.71376,21.51111],[100.72286,21.51152],[100.7332,21.52472],[100.74354,21.536],[100.74667,21.546],[100.75579,21.55611],[100.76653,21.56181],[100.77109,21.57133],[100.78166,21.57018],[100.7936,21.57094],[100.79285,21.58384],[100.80071,21.59156],[100.80017,21.60309],[100.81257,21.61905],[100.83458,21.63758],[100.84633,21.63759],[100.85441,21.65233],[100.86799,21.67089],[100.88534,21.6869],[100.89058,21.68438],[100.90453,21.68758],[100.90956,21.68376],[100.9138,21.68248],[100.91185,21.69014],[100.91757,21.69047],[100.92329,21.68879],[100.93382,21.6935],[100.93988,21.69852],[100.94449,21.7001],[100.95047,21.69976],[100.97327,21.69942],[100.98165,21.70355],[100.99832,21.70696],[101.01223,21.70974],[101.01585,21.7173],[101.03719,21.73322],[101.05714,21.75169],[101.08103,21.76651],[101.08706,21.77495],[101.10339,21.77478],[101.12178,21.77652],[101.11125,21.76246],[101.10999,21.74905],[101.11972,21.71396],[101.11583,21.69163],[101.12418,21.69001],[101.12561,21.68473],[101.13662,21.67284],[101.15176,21.67116],[101.15105,21.66098],[101.15173,21.65143],[101.15619,21.6508],[101.15928,21.6457],[101.16268,21.63812],[101.15853,21.63309],[101.16195,21.61749],[101.1688,21.60508],[101.16909,21.59246],[101.15275,21.59191],[101.14729,21.58889],[101.14183,21.58141],[101.13842,21.5724],[101.14289,21.56407],[101.14736,21.56212],[101.1496,21.56408],[101.15631,21.56492],[101.17485,21.56185],[101.18825,21.55751],[101.19828,21.56183],[101.20432,21.56176],[101.21037,21.56424],[101.21401,21.56209],[101.21696,21.55675],[101.21655,21.5461],[101.21889,21.538],[101.21645,21.53044],[101.20886,21.52543],[101.21082,21.51558],[101.20905,21.51289],[101.21072,21.50573],[101.22218,21.50008],[101.21453,21.49068],[101.20246,21.4831],[101.19108,21.47553],[101.19361,21.46188],[101.19338,21.45207],[101.19722,21.447],[101.20017,21.43936],[101.19145,21.42212],[101.18058,21.41838],[101.1883,21.41556],[101.19078,21.40712],[101.19786,21.40769],[101.20243,21.40319],[101.21364,21.40157],[101.21822,21.39821],[101.22348,21.39804],[101.23017,21.39298],[101.24098,21.38665],[101.2365,21.38325],[101.23872,21.37867],[101.24155,21.37958],[101.24125,21.37492],[101.25388,21.37024],[101.25635,21.37195],[101.26362,21.37174],[101.26472,21.36833],[101.27131,21.36556],[101.25926,21.35618],[101.25985,21.3492],[101.25563,21.33966],[101.2473,21.33908],[101.24034,21.33849],[101.2387,21.33319],[101.23843,21.32725],[101.22553,21.33008],[101.22555,21.32799],[101.22969,21.32655],[101.22698,21.31982],[101.21882,21.31915],[101.21924,21.31241],[101.21348,21.31015],[101.21682,21.30746],[101.23596,21.3067],[101.24313,21.30023],[101.24389,21.29718],[101.2474,21.29284],[101.2496,21.29569],[101.25182,21.292],[101.24649,21.28894],[101.24459,21.27757],[101.23857,21.27579],[101.23891,21.2681],[101.22825,21.26361],[101.22961,21.25783],[101.22205,21.25398],[101.22702,21.24797],[101.21551,21.23108],[101.21722,21.22796],[101.2246,21.23407],[101.22627,21.23288],[101.22588,21.22785],[101.23271,21.22282],[101.24195,21.22511],[101.24932,21.21953],[101.24855,21.2113],[101.24365,21.20499],[101.24899,21.20498],[101.25433,21.19985],[101.26639,21.19663],[101.27403,21.18954],[101.28037,21.17794],[101.29042,21.17405],[101.29922,21.1769],[101.31358,21.18889],[101.32519,21.1868],[101.33645,21.19735],[101.34429,21.20022],[101.35164,21.20581],[101.35899,21.2082],[101.36737,21.21892],[101.37575,21.22067],[101.3841,21.22674],[101.39926,21.22722],[101.40686,21.22577],[101.42683,21.23168],[101.44817,21.22672],[101.45835,21.22991],[101.4597,21.23375],[101.48164,21.24527],[101.50084,21.24943],[101.50836,21.24655],[101.53069,21.24988],[101.54752,21.25705],[101.55955,21.24736],[101.57448,21.24315],[101.5853,21.24023],[101.58875,21.23428],[101.59943,21.24313],[101.60944,21.23663],[101.61498,21.2282],[101.60352,21.22281],[101.60066,21.21874],[101.60369,21.21223],[101.59182,21.19905],[101.58543,21.19035],[101.59768,21.17764],[101.6038,21.18121],[101.60961,21.17563],[101.61325,21.17989],[101.62022,21.18459],[101.6217,21.188],[101.63036,21.19845],[101.65001,21.19962],[101.67309,21.20398],[101.67801,21.19769],[101.676,21.19198],[101.67949,21.18115],[101.68715,21.18062],[101.69147,21.17536],[101.69922,21.17395],[101.70388,21.16325],[101.69509,21.15609],[101.69797,21.14894],[101.70711,21.14947],[101.71487,21.1468],[101.71665,21.14338],[101.73255,21.14724],[101.73745,21.14407],[101.74545,21.14794],[101.75666,21.14475],[101.76513,21.14476],[101.7642,21.15391],[101.77082,21.15602],[101.77465,21.16139],[101.7826,21.16613],[101.79123,21.18687],[101.78636,21.1919],[101.78972,21.20205],[101.77625,21.20291],[101.77203,21.20505],[101.76781,21.21551],[101.7804,21.21988],[101.79918,21.20634],[101.81573,21.21333],[101.82606,21.21139],[101.82848,21.20497],[101.84102,21.20721],[101.83969,21.21209],[101.8418,21.21696],[101.83738,21.2196],[101.8361,21.22938],[101.84512,21.25325],[101.83423,21.25823],[101.8298,21.25755],[101.82124,21.26072],[101.80993,21.25588],[101.81236,21.26129],[101.80247,21.27436],[101.80082,21.29192],[101.79011,21.28733],[101.78283,21.29489],[101.76759,21.2889],[101.75551,21.29582],[101.7393,21.31042],[101.74027,21.31415],[101.73505,21.32235],[101.72696,21.3547],[101.73673,21.36434],[101.74168,21.36439],[101.73656,21.37191],[101.74381,21.37878],[101.73731,21.39845],[101.74025,21.40988],[101.74455,21.41108],[101.75045,21.40629],[101.75361,21.40917],[101.75523,21.41688],[101.7468,21.42972],[101.75604,21.43752],[101.75529,21.4544],[101.74967,21.45876],[101.75079,21.46685],[101.74617,21.46512],[101.73761,21.48468],[101.74413,21.48982],[101.7486,21.49112],[101.7534,21.49883],[101.76027,21.50212],[101.76783,21.51252],[101.77952,21.51608],[101.76999,21.52871],[101.7584,21.53047],[101.75446,21.54677],[101.76236,21.56276],[101.75653,21.56247],[101.75215,21.56575],[101.74778,21.57286],[101.74992,21.58253],[101.74932,21.58773],[101.75533,21.58614],[101.76203,21.58265],[101.76632,21.5849],[101.78113,21.57812],[101.80418,21.57581],[101.81072,21.58423],[101.80903,21.58946],[101.82243,21.59989],[101.83445,21.61416],[101.82588,21.62385],[101.81867,21.62396],[101.81147,21.62917],[101.8107,21.63718],[101.80585,21.63991],[101.80168,21.63498],[101.79817,21.63532],[101.7916,21.63773],[101.78504,21.63631],[101.78572,21.64207],[101.78229,21.64783],[101.78435,21.65744],[101.78058,21.65588],[101.77681,21.65943],[101.76995,21.65759],[101.77272,21.66446],[101.77136,21.67324],[101.77585,21.67788],[101.7769,21.6889],[101.7715,21.6934],[101.76412,21.69476],[101.77326,21.70147],[101.76799,21.7184],[101.75881,21.7261],[101.751,21.72614],[101.74594,21.72809],[101.7474,21.73731],[101.742,21.75034],[101.75136,21.75222],[101.75866,21.75793],[101.7609,21.78082],[101.77027,21.80437],[101.77237,21.81934],[101.78287,21.82045],[101.78443,21.82411],[101.77601,21.82909],[101.7772,21.83216],[101.77801,21.83556],[101.77195,21.83768],[101.76809,21.83682],[101.76514,21.83486],[101.75259,21.83863],[101.73847,21.84808],[101.73602,21.85976],[101.73769,21.86443],[101.73869,21.87153],[101.73557,21.87799],[101.72517,21.88408],[101.71408,21.88189],[101.70598,21.89345],[101.69445,21.90278],[101.6995,21.90999],[101.7073,21.92039],[101.70571,21.92646],[101.70274,21.92872],[101.69852,21.94596],[101.6897,21.94649],[101.67984,21.94129],[101.67799,21.93598],[101.66809,21.93173],[101.66322,21.93959],[101.65766,21.94298],[101.65477,21.95296],[101.63163,21.95562],[101.61662,21.977],[101.61802,21.99126],[101.62011,22.00234],[101.63389,22.01049],[101.6177,22.02401],[101.61113,22.03816],[101.61445,22.0512],[101.60771,22.05581],[101.60439,22.06297],[101.59364,22.06336],[101.59661,22.08349],[101.58817,22.08947],[101.58935,22.09355],[101.5862,22.10234],[101.57948,22.1018],[101.57612,22.11489],[101.57344,22.12798],[101.58903,22.13158],[101.59477,22.12702],[101.59936,22.13142],[101.606,22.13009],[101.59983,22.13556],[101.59366,22.14675],[101.60397,22.15578],[101.60057,22.16047],[101.59784,22.15805],[101.59649,22.16263],[101.59237,22.16316],[101.58689,22.16688],[101.59136,22.17632],[101.58897,22.18258],[101.57752,22.1866],[101.56745,22.20015],[101.57135,22.20819],[101.56523,22.21602],[101.54263,22.2283],[101.54475,22.23646],[101.53894,22.24244],[101.538,22.2487],[101.53913,22.25496],[101.55536,22.26949],[101.56129,22.28083],[101.58755,22.28108],[101.59927,22.27272],[101.60824,22.26944],[101.61606,22.27434],[101.62684,22.28028],[101.62982,22.28707],[101.62732,22.2983],[101.63266,22.31445],[101.63938,22.31567],[101.64789,22.32486],[101.65227,22.33468],[101.65103,22.34007],[101.64704,22.34608],[101.65695,22.36687],[101.67633,22.37313],[101.67957,22.38162],[101.6712,22.40097],[101.66078,22.41969],[101.66923,22.42699],[101.67157,22.4311],[101.66636,22.43838],[101.66321,22.44186],[101.66555,22.44851],[101.67286,22.45035],[101.68611,22.45721],[101.69062,22.46459],[101.68313,22.47165],[101.684,22.47452],[101.68693,22.47803],[101.6956,22.47535],[101.71115,22.47583],[101.72026,22.473],[101.72583,22.47531],[101.73414,22.49728],[101.74259,22.49701],[101.75173,22.49356],[101.75389,22.49517],[101.75193,22.49868],[101.75489,22.50062],[101.77221,22.50333],[101.78334,22.4997],[101.79974,22.48009],[101.81055,22.48337],[101.81416,22.47998],[101.80807,22.47544],[101.81292,22.46365],[101.8212,22.46391],[101.82669,22.45144],[101.82429,22.43917],[101.83279,22.42039],[101.85558,22.40243],[101.866,22.38765],[101.88193,22.38651],[101.8892,22.38784],[101.89284,22.38312],[101.89912,22.38139],[101.90265,22.38347],[101.9044,22.38905],[101.91096,22.39718],[101.9148,22.40455],[101.91212,22.41255],[101.9161,22.4248],[101.90985,22.43125],[101.90741,22.43637],[101.91573,22.43956],[101.92748,22.44084],[101.92755,22.43704],[101.9403,22.43705],[101.94495,22.43959],[101.95071,22.44086],[101.95304,22.44213],[101.9569,22.43685],[101.96673,22.42817],[101.97585,22.43082],[101.98498,22.42902],[101.99911,22.4324],[102.00088,22.43579],[101.99853,22.44044],[102.00145,22.44383],[102.01158,22.44087],[102.01497,22.44727],[102.0211,22.45049],[102.02239,22.45568],[102.04059,22.45505],[102.04643,22.45822],[102.0581,22.44966],[102.07595,22.44506],[102.08728,22.44117],[102.09466,22.44367],[102.10205,22.443],[102.11166,22.43633],[102.12265,22.43602],[102.12574,22.43284],[102.12728,22.42015],[102.1332,22.40714],[102.14462,22.39857],[102.14751,22.40555],[102.15411,22.41285],[102.15534,22.42412],[102.15802,22.42372],[102.16001,22.42904],[102.16918,22.42793],[102.17698,22.43253],[102.18157,22.4315],[102.18821,22.43364],[102.20893,22.42626],[102.21291,22.43061],[102.22444,22.4248],[102.22987,22.42681],[102.2401,22.42565],[102.24899,22.41825],[102.26337,22.41211],[102.26661,22.4192],[102.26986,22.42248],[102.2644,22.43655],[102.25893,22.44231],[102.25689,22.44935],[102.24941,22.45591],[102.25025,22.46078],[102.26359,22.4646],[102.26614,22.47539],[102.2729,22.47952],[102.27168,22.4842],[102.28144,22.50094],[102.28845,22.50372],[102.29402,22.51208],[102.30298,22.53165],[102.32293,22.54773],[102.32256,22.55456],[102.33946,22.55881],[102.35499,22.56495],[102.35554,22.56993],[102.35136,22.57495],[102.34649,22.58188],[102.34828,22.5893],[102.35317,22.58863],[102.35805,22.59177],[102.36328,22.58952],[102.37263,22.5917],[102.38713,22.6072],[102.39196,22.61852],[102.39918,22.6245],[102.40365,22.63111],[102.41087,22.63344],[102.42083,22.63514],[102.41878,22.64096],[102.41124,22.6426],[102.40506,22.63981],[102.4007,22.64756],[102.39909,22.65595],[102.389,22.66513],[102.38393,22.68158],[102.39438,22.69049],[102.4099,22.68434],[102.42075,22.69092],[102.42569,22.6913],[102.43682,22.70182],[102.44588,22.72532],[102.45769,22.73171],[102.45218,22.74221],[102.45388,22.74714],[102.45215,22.75207],[102.46927,22.77116],[102.47878,22.77008],[102.48211,22.77343],[102.4827,22.77995],[102.51078,22.77806],[102.5269,22.76414],[102.53565,22.76002],[102.54371,22.74831],[102.55124,22.74483],[102.54918,22.74024],[102.55569,22.7294],[102.56071,22.72875],[102.56574,22.72304],[102.5696,22.70339],[102.58582,22.70559],[102.58878,22.72189],[102.60056,22.7313],[102.60753,22.73185],[102.62586,22.71492],[102.64464,22.70012],[102.65163,22.69715],[102.65656,22.68912],[102.67156,22.69712],[102.68318,22.69827],[102.69,22.70259],[102.70843,22.69286],[102.71113,22.67975],[102.72449,22.67764],[102.7274,22.6731],[102.73675,22.66512],[102.7452,22.6662],[102.74884,22.67045],[102.7542,22.66646],[102.76505,22.6479],[102.77385,22.64835],[102.7779,22.64509],[102.78813,22.64373],[102.78718,22.63797],[102.78396,22.63667],[102.78853,22.62525],[102.79476,22.62581],[102.80237,22.62256],[102.80929,22.62501],[102.81828,22.62303],[102.82216,22.62604],[102.82605,22.62714],[102.8317,22.62355],[102.84559,22.61995],[102.84796,22.61213],[102.86474,22.61128],[102.86636,22.6023],[102.87025,22.59876],[102.87484,22.59839],[102.884,22.58845],[102.88204,22.57927],[102.87459,22.57516],[102.88509,22.56758],[102.88451,22.563],[102.8798,22.56032],[102.88883,22.55288],[102.89305,22.55242],[102.89895,22.54328],[102.89262,22.54303],[102.89316,22.53643],[102.89767,22.53085],[102.90876,22.52476],[102.91259,22.51775],[102.9123,22.51011],[102.92407,22.50782],[102.9235,22.49493],[102.92594,22.48655],[102.93196,22.48204],[102.93913,22.48456],[102.95248,22.48137],[102.95484,22.4839],[102.95789,22.48388],[102.96513,22.4774],[102.9794,22.47861],[102.98817,22.47791],[102.98857,22.47305],[102.99309,22.47199],[102.99321,22.46417],[103.00959,22.45583],[103.03146,22.44177],[103.03616,22.44586],[103.05328,22.44504],[103.05666,22.45057],[103.06965,22.44643],[103.08059,22.45053],[103.08211,22.45988],[103.08046,22.46361],[103.07951,22.46923],[103.07087,22.47588],[103.07204,22.49039],[103.08057,22.50053],[103.08841,22.51066],[103.10107,22.51603],[103.12079,22.5173],[103.12507,22.52586],[103.13064,22.52871],[103.14102,22.54044],[103.14866,22.54456],[103.15801,22.54107],[103.17064,22.55044],[103.1843,22.56045],[103.17523,22.56696],[103.17028,22.57663],[103.16292,22.58314],[103.15762,22.59472],[103.16248,22.59791],[103.16576,22.61154],[103.17719,22.62978],[103.18531,22.63097],[103.18353,22.64012],[103.18642,22.64438],[103.19679,22.65063],[103.20747,22.64552],[103.2286,22.64867],[103.23196,22.65753],[103.25355,22.67273],[103.26194,22.6713],[103.26545,22.67407],[103.26896,22.67304],[103.28378,22.68313],[103.28276,22.68906],[103.2838,22.70323],[103.28829,22.70653],[103.28832,22.71601],[103.2904,22.71916],[103.28596,22.72928],[103.28752,22.73782],[103.29632,22.74676],[103.30375,22.75824],[103.30901,22.76279],[103.31358,22.77684],[103.32135,22.78151],[103.31734,22.78648],[103.31959,22.79009],[103.31798,22.8014],[103.31911,22.807],[103.32136,22.81189],[103.3273,22.81338],[103.33027,22.81159],[103.33004,22.8088],[103.33461,22.80664],[103.35394,22.80275],[103.3719,22.79886],[103.38482,22.78696],[103.39086,22.78266],[103.40888,22.7778],[103.41316,22.77483],[103.41745,22.76902],[103.41571,22.76468],[103.42163,22.76043],[103.42892,22.76061],[103.4369,22.75478],[103.44007,22.75338],[103.44312,22.74184],[103.44549,22.73854],[103.43964,22.738],[103.42829,22.73366],[103.42966,22.71898],[103.4269,22.7138],[103.4311,22.71029],[103.43256,22.70234],[103.43436,22.70358],[103.44578,22.69405],[103.44629,22.68988],[103.45512,22.68431],[103.46122,22.67747],[103.45708,22.66015],[103.46497,22.65243],[103.46312,22.64909],[103.46735,22.64331],[103.47432,22.64322],[103.47797,22.63734],[103.48299,22.63464],[103.4817,22.62986],[103.48964,22.61923],[103.50047,22.6136],[103.50856,22.61304],[103.50786,22.60411],[103.52295,22.59585],[103.5305,22.59328],[103.54828,22.61313],[103.54672,22.61794],[103.55177,22.62573],[103.55339,22.63542],[103.57087,22.64059],[103.58007,22.66298],[103.57667,22.67125],[103.56846,22.67888],[103.56441,22.69921],[103.58058,22.72046],[103.6098,22.75754],[103.61015,22.76555],[103.62012,22.77418],[103.61789,22.78314],[103.62048,22.78576],[103.63165,22.78974],[103.6369,22.78888],[103.63986,22.79636],[103.64392,22.79472],[103.65072,22.79309],[103.6624,22.78818],[103.66721,22.76864],[103.6806,22.76429],[103.68369,22.75456],[103.69399,22.74546],[103.7036,22.74246],[103.73828,22.71082],[103.73996,22.70821],[103.73751,22.70053],[103.74743,22.69634],[103.75082,22.68803],[103.76678,22.69058],[103.77288,22.6818],[103.77829,22.6781],[103.78155,22.66942],[103.79409,22.662],[103.80598,22.64605],[103.81306,22.64087],[103.82379,22.61784],[103.83984,22.60681],[103.84628,22.59514],[103.86027,22.58791],[103.87688,22.56559],[103.88313,22.56394],[103.88591,22.57072],[103.89143,22.56863],[103.91582,22.54415],[103.9138,22.53418],[103.91932,22.53396],[103.92655,22.54039],[103.93277,22.5263],[103.94518,22.52648],[103.95145,22.51384],[103.96355,22.50438],[103.96568,22.51045],[103.97087,22.51126],[103.97277,22.50596],[103.97922,22.50712],[103.98313,22.51245],[103.98817,22.5148],[103.99116,22.51906],[104.00269,22.5175],[104.01217,22.52101],[104.00963,22.53277],[104.0063,22.53896],[104.00978,22.54301],[104.0153,22.54282],[104.01222,22.54685],[104.01515,22.54981],[104.01146,22.55922],[104.01683,22.56297],[104.01573,22.56865],[104.00729,22.57086],[104.00587,22.57648],[104.00994,22.5783],[104.01366,22.57791],[104.01552,22.59324],[104.01876,22.59399],[104.02587,22.61355],[104.02387,22.62461],[104.03148,22.64012],[104.03051,22.65087],[104.0316,22.65338],[104.02648,22.65713],[104.02136,22.66532],[104.03103,22.6836],[104.02978,22.68847],[104.03465,22.70436],[104.03951,22.72216],[104.04813,22.73399],[104.06102,22.74972],[104.06635,22.74962],[104.07325,22.75511],[104.0822,22.75807],[104.0812,22.76156],[104.0905,22.76695],[104.09739,22.78531],[104.10907,22.79798],[104.12144,22.80748],[104.13002,22.80969],[104.13947,22.80131],[104.1441,22.80178],[104.15569,22.80756],[104.16733,22.81614],[104.17758,22.81777],[104.18841,22.82236],[104.19391,22.81888],[104.22002,22.82711],[104.22587,22.82522],[104.24889,22.83915],[104.258,22.84074],[104.26599,22.84407],[104.27639,22.83822],[104.26682,22.81911],[104.26824,22.81393],[104.25528,22.77762],[104.2588,22.77075],[104.2582,22.76641],[104.26989,22.75443],[104.26879,22.74155],[104.27452,22.74008],[104.27956,22.74177],[104.30143,22.72921],[104.30878,22.72876],[104.31452,22.7317],[104.32026,22.73085],[104.33826,22.72217],[104.3407,22.71825],[104.34176,22.71117],[104.34867,22.70726],[104.35351,22.69322],[104.36523,22.6924],[104.3742,22.68969],[104.3897,22.69838],[104.3997,22.70137],[104.40938,22.72579],[104.4156,22.72882],[104.42214,22.7373],[104.45974,22.75262],[104.46507,22.75148],[104.47715,22.75786],[104.49408,22.77275],[104.49574,22.77584],[104.50083,22.77576],[104.50723,22.78448],[104.51712,22.78765],[104.52652,22.80285],[104.52967,22.81282],[104.53777,22.81781],[104.54312,22.82532],[104.5659,22.83324],[104.57014,22.84779],[104.57879,22.85444],[104.57803,22.85895],[104.58688,22.85966],[104.58771,22.85416],[104.59952,22.84487],[104.59907,22.83927],[104.60343,22.83241],[104.60401,22.82776],[104.59847,22.82417],[104.59842,22.81615],[104.6071,22.81969],[104.61442,22.81626],[104.61807,22.82523],[104.62124,22.82229],[104.62484,22.83222],[104.65744,22.83626],[104.66395,22.82733],[104.6684,22.826],[104.67659,22.81685],[104.69027,22.82796],[104.72183,22.82244],[104.73485,22.81818],[104.73397,22.83171],[104.73857,22.84018],[104.73563,22.84959],[104.73817,22.85395],[104.75729,22.8606],[104.76542,22.87391],[104.76605,22.88531],[104.77014,22.88879],[104.77184,22.89591],[104.77613,22.90042],[104.78178,22.9005],[104.78306,22.90418],[104.79051,22.90564],[104.79441,22.90645],[104.79693,22.91169],[104.80118,22.91124],[104.80576,22.91553],[104.8102,22.91894],[104.81875,22.9236],[104.8358,22.92521],[104.85114,22.9363],[104.86305,22.94992],[104.85952,22.96205],[104.85384,22.96572],[104.84746,22.96559],[104.84295,22.97039],[104.84689,22.97948],[104.8431,22.99513],[104.83757,22.99483],[104.8375,22.99928],[104.82705,23.01198],[104.83096,23.02416],[104.82801,23.03634],[104.83034,23.04806],[104.82401,23.07024],[104.81262,23.08287],[104.8129,23.11886],[104.82008,23.12139],[104.83191,23.11823],[104.85061,23.11633],[104.85504,23.11791],[104.85879,23.12643],[104.86294,23.12632],[104.86228,23.12279],[104.87259,23.12115],[104.87816,23.14366],[104.87625,23.15078],[104.87791,23.16502],[104.8964,23.18021],[104.90803,23.18719],[104.91881,23.18609],[104.94725,23.17062],[104.95097,23.1722],[104.95901,23.18814],[104.95514,23.19958],[104.95623,23.20528],[104.95869,23.20782],[104.96699,23.20406],[104.97666,23.19398],[104.99612,23.19999],[105.00173,23.2153],[105.00483,23.21879],[105.01755,23.21912],[105.02925,23.22295],[105.03484,23.23235],[105.04386,23.2367],[105.05022,23.24476],[105.05934,23.24936],[105.06183,23.25544],[105.06692,23.25681],[105.07201,23.26195],[105.0819,23.25953],[105.08204,23.25548],[105.09413,23.26008],[105.10278,23.26216],[105.10996,23.24907],[105.11931,23.24975],[105.12523,23.2561],[105.13677,23.25864],[105.14425,23.26212],[105.15312,23.26497],[105.16246,23.27384],[105.16653,23.2849],[105.17337,23.28459],[105.1802,23.28176],[105.18361,23.27704],[105.19355,23.27846],[105.19784,23.27633],[105.19757,23.26707],[105.19802,23.26444],[105.20328,23.26559],[105.20648,23.27084],[105.21254,23.27473],[105.21385,23.26658],[105.22045,23.26825],[105.22395,23.27213],[105.23123,23.27159],[105.23315,23.27637],[105.22794,23.28317],[105.22955,23.2855],[105.23391,23.28594],[105.23764,23.28837],[105.24411,23.2889],[105.25264,23.3112],[105.25705,23.31205],[105.25888,23.31964],[105.2487,23.32878],[105.25528,23.34187],[105.26338,23.34305],[105.27353,23.33982],[105.28406,23.34299],[105.28418,23.34835],[105.28772,23.35056],[105.28795,23.35877],[105.29528,23.36161],[105.30054,23.37454],[105.32274,23.39347],[105.33332,23.38068],[105.34732,23.37042],[105.35072,23.36576],[105.35137,23.34345],[105.36885,23.32366],[105.37106,23.3185],[105.38384,23.30993],[105.38955,23.30186],[105.39411,23.29309],[105.40658,23.28307],[105.40989,23.28279],[105.41869,23.29955],[105.42531,23.30215],[105.43291,23.29919],[105.44669,23.27983],[105.45188,23.27846],[105.47069,23.25588],[105.47851,23.25096],[105.48483,23.23904],[105.48634,23.23406],[105.49035,23.23062],[105.49093,23.22277],[105.49529,23.21586],[105.49507,23.20736],[105.49896,23.20453],[105.5267,23.19374],[105.54365,23.1814],[105.55855,23.16906],[105.56227,23.15963],[105.56207,23.14986],[105.56736,23.14073],[105.55764,23.13228],[105.56496,23.12645],[105.5652,23.12046],[105.57162,23.10942],[105.57323,23.1028],[105.56731,23.09275],[105.5671,23.0878],[105.57032,23.07749],[105.5747,23.07328],[105.58467,23.07098],[105.5902,23.07521],[105.59264,23.07977],[105.5985,23.08053],[105.60715,23.07922],[105.61237,23.07537],[105.61607,23.06885],[105.62621,23.07316],[105.63011,23.07961],[105.64501,23.08416],[105.6496,23.07987],[105.65213,23.07557],[105.66399,23.07388],[105.67721,23.06271],[105.70847,23.06374],[105.72616,23.06521],[105.73157,23.05773],[105.72983,23.05396],[105.72878,23.04388],[105.73426,23.0379],[105.73698,23.03508],[105.7472,23.03993],[105.75505,23.03793],[105.75726,23.03504],[105.76428,23.03341],[105.77373,23.02352],[105.78163,23.02017],[105.78747,23.00544],[105.80362,22.99261],[105.81496,22.99318],[105.833,22.97924],[105.83201,22.97086],[105.83515,22.96374],[105.84221,22.96065],[105.85476,22.94998],[105.85289,22.94626],[105.85809,22.94027],[105.85986,22.93555],[105.86609,22.93778],[105.87263,22.93131],[105.87135,22.92795],[105.87002,22.92406],[105.87588,22.91927],[105.88174,22.91891],[105.88914,22.93559],[105.92336,22.94945],[105.92486,22.94233],[105.93453,22.93687],[105.94658,22.93731],[105.95519,22.939],[105.9575,22.95006],[105.98177,22.945],[105.98945,22.93899],[105.99497,22.94238],[105.99775,22.94009],[105.99982,22.95001],[106.00327,22.95803],[106.00791,22.96599],[106.00509,22.97219],[106.00157,22.97332],[105.99729,22.97149],[105.99583,22.97531],[106.00163,22.98007],[106.00262,22.99051],[106.02329,22.99067],[106.03709,22.99271],[106.04163,22.98908],[106.05008,22.99263],[106.06185,22.98998],[106.07844,22.99808],[106.08733,22.99581],[106.09486,22.98931],[106.10876,22.98969],[106.1224,22.97992],[106.12545,22.98358],[106.12209,22.98623],[106.12285,22.99014],[106.12773,22.99279],[106.13055,22.99924],[106.13979,22.99381],[106.14509,22.99458],[106.16199,22.98785],[106.16516,22.98365],[106.18375,22.98462],[106.20371,22.98244],[106.21128,22.97059],[106.21575,22.97099],[106.21832,22.9636],[106.22408,22.96528],[106.22365,22.95748],[106.23293,22.95511],[106.23586,22.95773],[106.23629,22.94797],[106.24131,22.94182],[106.24382,22.94634],[106.24908,22.92493],[106.25769,22.91989],[106.26276,22.91421],[106.2644,22.90726],[106.26161,22.90489],[106.26088,22.89619],[106.25157,22.89446],[106.26408,22.88125],[106.25592,22.8794],[106.28617,22.86708],[106.29031,22.86946],[106.28998,22.87382],[106.29908,22.87378],[106.30809,22.86396],[106.31093,22.86362],[106.32026,22.87069],[106.32346,22.87309],[106.32802,22.87296],[106.3358,22.86498],[106.34563,22.85701],[106.36234,22.86359],[106.36342,22.86697],[106.36176,22.87035],[106.36491,22.87374],[106.36325,22.87902],[106.37574,22.88366],[106.38239,22.87977],[106.39127,22.88385],[106.39533,22.88035],[106.40278,22.88093],[106.40605,22.87357],[106.41535,22.87466],[106.41608,22.87937],[106.40863,22.88499],[106.42325,22.89624],[106.42913,22.88584],[106.43397,22.88839],[106.44292,22.89094],[106.44671,22.90202],[106.45478,22.90281],[106.46156,22.89499],[106.46496,22.90025],[106.47215,22.90035],[106.4712,22.9048],[106.47518,22.90766],[106.47917,22.90735],[106.48234,22.90264],[106.4965,22.90424],[106.50132,22.90836],[106.49824,22.91865],[106.50197,22.92215],[106.50021,22.92881],[106.50397,22.92913],[106.50292,22.93578],[106.51045,22.93959],[106.51111,22.94845],[106.52755,22.94484],[106.53781,22.94438],[106.54086,22.94203],[106.54204,22.93263],[106.54606,22.92667],[106.56588,22.91755],[106.57332,22.92375],[106.58076,22.92426],[106.58603,22.93004],[106.59129,22.93267],[106.59621,22.9277],[106.60211,22.92775],[106.60732,22.92084],[106.6095,22.90953],[106.61986,22.89628],[106.63159,22.89125],[106.62428,22.88064],[106.63212,22.87733],[106.64339,22.87403],[106.65289,22.86363],[106.66514,22.87537],[106.66886,22.87364],[106.67072,22.87816],[106.66604,22.88324],[106.6689,22.89212],[106.67549,22.89055],[106.68413,22.88202],[106.6876,22.88614],[106.69379,22.88756],[106.69655,22.8833],[106.70139,22.88362],[106.70244,22.88757],[106.70639,22.88892],[106.71047,22.88166],[106.71867,22.87441],[106.70897,22.8637],[106.74337,22.84232],[106.74272,22.83828],[106.75167,22.83626],[106.75443,22.83234],[106.7683,22.82629],[106.76416,22.81228],[106.76501,22.80942],[106.77341,22.81794],[106.78071,22.81524],[106.79487,22.81571],[106.80469,22.82132],[106.81864,22.81997],[106.82523,22.81276],[106.83457,22.80808],[106.83677,22.80252],[106.83277,22.80113],[106.8274,22.78961],[106.82283,22.78809],[106.82384,22.77972],[106.81866,22.77325],[106.81383,22.76963],[106.80625,22.76917],[106.79722,22.77051],[106.78449,22.7515],[106.77141,22.73375],[106.76981,22.73066],[106.7744,22.7206],[106.76846,22.71569],[106.78214,22.71007],[106.78552,22.70381],[106.77022,22.69831],[106.75972,22.68963],[106.76632,22.68261],[106.76241,22.67561],[106.75781,22.67178],[106.74216,22.66976],[106.73682,22.66221],[106.73895,22.65717],[106.73284,22.6458],[106.72627,22.64465],[106.72137,22.63728],[106.7289,22.63282],[106.72338,22.61949],[106.7144,22.61311],[106.71713,22.61024],[106.7274,22.60293],[106.72735,22.58641],[106.70809,22.57865],[106.69844,22.58356],[106.68073,22.5712],[106.66655,22.5769],[106.65225,22.57468],[106.63546,22.58998],[106.6269,22.60464],[106.6098,22.60289],[106.60296,22.58804],[106.60691,22.58559],[106.6095,22.57934],[106.59887,22.57572],[106.60386,22.56148],[106.59846,22.55657],[106.59924,22.5504],[106.59,22.5495],[106.58937,22.53105],[106.58118,22.51703],[106.58129,22.50486],[106.58415,22.47556],[106.58109,22.47312],[106.57734,22.46814],[106.57259,22.47149],[106.55897,22.46235],[106.55728,22.45602],[106.55902,22.44397],[106.56526,22.43639],[106.56563,22.42466],[106.55895,22.42197],[106.56531,22.40976],[106.56603,22.39613],[106.57608,22.38233],[106.58338,22.37614],[106.57965,22.37099],[106.57195,22.37031],[106.57317,22.36265],[106.55953,22.34917],[106.5686,22.3427],[106.57704,22.34617],[106.58205,22.34011],[106.58919,22.34279],[106.60252,22.33849],[106.61446,22.33959],[106.62023,22.3337],[106.63784,22.34044],[106.65008,22.33809],[106.65958,22.33383],[106.66002,22.32596],[106.66321,22.32126],[106.66637,22.32152],[106.66541,22.31067],[106.67008,22.29857],[106.66658,22.28998],[106.66689,22.28537],[106.6728,22.28533],[106.67871,22.28973],[106.6812,22.29049],[106.69054,22.27853],[106.68894,22.27109],[106.68393,22.26722],[106.68991,22.25764],[106.695,22.23274],[106.70215,22.23072],[106.7045,22.22044],[106.69953,22.218],[106.69869,22.2073],[106.68945,22.20179],[106.67852,22.20411],[106.68215,22.20035],[106.67205,22.18196],[106.67747,22.17627],[106.67877,22.16993],[106.68934,22.16265],[106.70355,22.16155],[106.70747,22.15536],[106.69862,22.15515],[106.69526,22.14285],[106.68813,22.13755],[106.69336,22.13289],[106.69249,22.11974],[106.69617,22.11381],[106.69608,22.10724],[106.7072,22.1013],[106.71215,22.09537],[106.71127,22.08926],[106.70626,22.08505],[106.70847,22.08181],[106.70656,22.06711],[106.69655,22.05361],[106.70092,22.04864],[106.69841,22.04113],[106.70508,22.0382],[106.70831,22.02495],[106.69774,22.01388],[106.68374,22.00343],[106.68484,21.98503],[106.6928,21.96409],[106.70081,21.96941],[106.70607,21.96901],[106.70687,21.97624],[106.71928,21.97413],[106.73184,21.99488],[106.72628,21.99968],[106.7283,22.00718],[106.74545,22.01379],[106.74716,22.00939],[106.75093,22.00818],[106.75454,22.01219],[106.76707,22.01302],[106.77333,22.00563],[106.78371,22.00461],[106.78792,21.98991],[106.79052,21.98894],[106.79586,21.99306],[106.79811,21.98763],[106.79747,21.98564],[106.80027,21.97982],[106.80578,21.98058],[106.80718,21.97496],[106.81204,21.97329],[106.83239,21.97421],[106.83215,21.98246],[106.8382,21.98308],[106.8454,21.97839],[106.84916,21.98133],[106.86494,21.98173],[106.87797,21.98021],[106.90437,21.97145],[106.91449,21.97567],[106.91911,21.97224],[106.92367,21.96203],[106.92205,21.95244],[106.92833,21.94127],[106.93049,21.92978],[106.95285,21.93348],[106.95364,21.92445],[106.96198,21.91925],[106.97924,21.92646],[106.98768,21.94117],[106.99337,21.95332],[107.00466,21.94601],[107.02351,21.94506],[107.02847,21.93695],[107.0348,21.93775],[107.04003,21.93194],[107.04937,21.92932],[107.05116,21.92319],[107.05982,21.91961],[107.05786,21.91088],[107.06345,21.89323],[107.05214,21.88256],[107.04013,21.87825],[107.03122,21.86758],[107.01613,21.862],[107.01358,21.85314],[107.02064,21.84236],[107.02515,21.82336],[107.03941,21.81495],[107.06096,21.8093],[107.08182,21.80908],[107.09849,21.79525],[107.11721,21.79416],[107.12567,21.77775],[107.13402,21.77369],[107.13962,21.76325],[107.15975,21.75704],[107.16477,21.74892],[107.17152,21.75283],[107.17621,21.74781],[107.18559,21.74669],[107.1936,21.73346],[107.19817,21.73172],[107.19654,21.72089],[107.22042,21.70754],[107.24841,21.70407],[107.25012,21.71618],[107.26436,21.72766],[107.28109,21.7334],[107.28751,21.73181],[107.28843,21.73659],[107.30058,21.74297],[107.30538,21.73881],[107.30744,21.7294],[107.31361,21.72892],[107.31413,21.72446],[107.32219,21.72509],[107.31824,21.7152],[107.33446,21.6975],[107.33594,21.68925],[107.34492,21.6848],[107.34841,21.68035],[107.34474,21.67625],[107.35961,21.66576],[107.36268,21.63959],[107.36225,21.6348],[107.35426,21.63001],[107.35473,21.62203],[107.35932,21.6198],[107.36007,21.61118],[107.3567,21.60575],[107.36369,21.59841],[107.36949,21.6008],[107.38285,21.59616],[107.39273,21.60593],[107.39781,21.60931],[107.3943,21.6162],[107.408,21.62252],[107.4073,21.62568],[107.41759,21.63269],[107.41449,21.63874],[107.43217,21.64943],[107.45234,21.6586],[107.46702,21.66395],[107.47803,21.66257],[107.49658,21.63348],[107.49281,21.6234],[107.49745,21.61709],[107.49496,21.60563],[107.48183,21.59577],[107.48995,21.59686],[107.49806,21.59539],[107.50446,21.59679],[107.51933,21.59303],[107.52511,21.59001],[107.53281,21.59201],[107.53775,21.59465],[107.54382,21.5899],[107.55799,21.6125],[107.56941,21.61243],[107.57268,21.61763],[107.58118,21.61864],[107.58556,21.61007],[107.61123,21.60445],[107.62316,21.60713],[107.67243,21.60611],[107.69597,21.61548],[107.71404,21.62021],[107.72181,21.62878],[107.73136,21.62939],[107.74228,21.63894],[107.75183,21.64242],[107.75795,21.64208],[107.78114,21.64921],[107.78209,21.65597],[107.79778,21.65558],[107.81827,21.65711],[107.82228,21.65322],[107.82772,21.65319],[107.83525,21.64264],[107.84416,21.64183],[107.84553,21.64845],[107.85308,21.65016],[107.85445,21.65379],[107.85876,21.65398],[107.86091,21.64833],[107.86787,21.64906],[107.87054,21.64708],[107.87252,21.64191],[107.87934,21.64028],[107.87793,21.63163],[107.88873,21.62619],[107.88579,21.61883],[107.88903,21.61818],[107.89237,21.61498],[107.88266,21.61114],[107.88511,21.60633],[107.89182,21.60712],[107.89312,21.60209],[107.88965,21.59989],[107.89359,21.59711],[107.89753,21.5956],[107.89941,21.59298],[107.89863,21.58927],[107.90047,21.58662],[107.90328,21.58689],[107.90455,21.59131],[107.91648,21.58617],[107.92378,21.59029],[107.92743,21.58852],[107.92627,21.58292],[107.93057,21.57775],[107.94311,21.57002],[107.94261,21.56591],[107.9518,21.5399],[107.95619,21.53625],[107.96347,21.53756],[107.96711,21.5355],[107.97178,21.54079],[107.97425,21.53955],[107.97721,21.54005],[107.97748,21.54349],[107.97913,21.54469],[107.98648,21.54365],[107.99315,21.54612],[108.02479,21.54625],[108.03905,21.54502],[108.05022,21.53826],[108.05597,21.52993],[108.33333,21.29166],[108.33333,20.04166],[110,20.04166]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:BV:**Taiwan#BY:**China, south of 44º N and east of 110º E - including Hainan Island#BV9P:**Pratas Island#HL:**South Korea#P5:**North Korea#VR2:**Hong Kong#XX9:**Macau","itu_zone_number":44,"itu_zone_name_loc":[33,118]},"geometry":{"type":"Polygon","coordinates":[[[121.73667,22.00146],[126.52906,32.47984],[131.99573,37.18814],[136.66227,42.24603],[130.77271,42.24603],[130.68908,42.29407],[130.68248,42.30341],[130.6594,42.31581],[130.64937,42.32363],[130.64483,42.33451],[130.64424,42.3469],[130.64913,42.3527],[130.65536,42.35915],[130.66294,42.36225],[130.66846,42.36636],[130.66855,42.37495],[130.6651,42.37996],[130.66063,42.38398],[130.65753,42.38775],[130.65486,42.39042],[130.64514,42.40221],[130.64472,42.40826],[130.64337,42.4104],[130.64082,42.4131],[130.64067,42.41543],[130.63897,42.42016],[130.63762,42.42189],[130.63524,42.42374],[130.635,42.42489],[130.63425,42.42604],[130.6313,42.42718],[130.62422,42.43262],[130.61714,42.43528],[130.61418,42.43464],[130.61139,42.43653],[130.60895,42.43944],[130.6029,42.44121],[130.59427,42.44627],[130.59354,42.45059],[130.59142,42.45441],[130.59235,42.45621],[130.59035,42.46409],[130.59522,42.46766],[130.59083,42.4732],[130.5854,42.47873],[130.58604,42.48106],[130.58392,42.48465],[130.58484,42.48728],[130.55825,42.50303],[130.55264,42.51861],[130.55381,42.52098],[130.56254,42.51729],[130.55787,42.52523],[130.56075,42.52912],[130.56499,42.534],[130.56921,42.53787],[130.56256,42.55497],[130.56903,42.55488],[130.5748,42.55834],[130.58498,42.55918],[130.59412,42.55724],[130.60395,42.55176],[130.60417,42.56506],[130.61538,42.57077],[130.62178,42.58179],[130.62029,42.58543],[130.62566,42.58857],[130.62589,42.59373],[130.62817,42.59888],[130.62054,42.60538],[130.61635,42.61238],[130.61833,42.61836],[130.61482,42.6284],[130.61289,42.63038],[130.60616,42.63085],[130.60505,42.63431],[130.59604,42.6403],[130.59809,42.64356],[130.59463,42.64683],[130.59596,42.65184],[130.58842,42.6602],[130.58843,42.66488],[130.58362,42.67108],[130.57676,42.67538],[130.56853,42.67817],[130.5621,42.68535],[130.5548,42.68931],[130.55286,42.69001],[130.54851,42.68946],[130.54514,42.69175],[130.54229,42.69122],[130.53243,42.69839],[130.52256,42.70103],[130.51654,42.70054],[130.50776,42.69552],[130.50051,42.69506],[130.49842,42.69258],[130.49428,42.69336],[130.49151,42.69011],[130.48763,42.69044],[130.48443,42.68826],[130.47849,42.69011],[130.47186,42.68944],[130.46822,42.68987],[130.45908,42.68474],[130.44977,42.69444],[130.44802,42.70161],[130.44543,42.70078],[130.43871,42.70147],[130.4344,42.70367],[130.43077,42.70788],[130.42009,42.70333],[130.40735,42.7129],[130.40853,42.71541],[130.40147,42.72398],[130.39422,42.72447],[130.46619,42.7686],[130.57111,42.8087],[130.67053,42.85482],[130.72024,42.82955],[130.76446,42.84052],[130.78396,42.87214],[130.82667,42.87989],[130.88586,42.84739],[130.91635,42.87498],[130.98103,42.85455],[131.04022,42.8623],[131.01605,42.91746],[131.11272,42.91227],[131.13322,42.92919],[131.14273,42.96219],[131.10682,42.97192],[131.09838,43.02183],[131.11739,43.07175],[131.16601,43.07062],[131.16972,43.1062],[131.21187,43.14579],[131.20274,43.16659],[131.21009,43.18338],[131.19272,43.20618],[131.20281,43.22898],[131.25005,43.27213],[131.27532,43.37125],[131.31157,43.38849],[131.28575,43.43302],[131.30937,43.45761],[131.26361,43.4936],[131.19312,43.5256],[131.18124,43.55376],[131.22615,43.58614],[131.21708,43.67874],[131.20994,43.80828],[131.22285,43.86712],[131.25773,43.91012],[131.23493,43.98083],[131.24869,44],[111.78081,44],[111.86206,43.94186],[111.89582,43.89499],[111.95567,43.8214],[111.96506,43.74945],[111.96363,43.73717],[111.95121,43.70503],[111.94835,43.69039],[111.92352,43.68618],[111.87946,43.67154],[111.78584,43.66857],[111.60364,43.5131],[111.56152,43.48804],[111.50635,43.485],[111.45119,43.48994],[111.40151,43.47445],[111.3527,43.43667],[111.23042,43.40688],[111.14964,43.37722],[111.06268,43.35255],[111.05698,43.34415],[111.0519,43.34245],[111.04065,43.3405],[111.02708,43.33356],[111.00081,43.31513],[110.99701,43.31375],[110.9669,43.2894],[110.91961,43.24456],[110.90885,43.23528],[110.87062,43.19797],[110.81968,43.1504],[110.76669,43.09982],[110.74684,43.09168],[110.73284,43.08568],[110.72764,43.07907],[110.71317,43.0677],[110.68371,43.03869],[110.68302,43.03262],[110.68369,43.0273],[110.68437,43.02274],[110.68385,43.01705],[110.66925,42.99601],[110.65911,42.98301],[110.65378,42.97265],[110.62562,42.93327],[110.50277,42.8585],[110.48409,42.84571],[110.46506,42.83393],[110.43713,42.78393],[110.43392,42.77978],[110.34172,42.73557],[110.32403,42.72818],[110.30321,42.72329],[110.26145,42.71033],[110.23011,42.70081],[110.13619,42.67167],[110.12739,42.66571],[110.10519,42.64409],[110.10063,42.64101],[110.01323,42.6366],[110,42.63674],[110,20.04166],[108.33333,20.04166],[108.33333,18],[112.19409,14.97469],[121.73667,22.00146]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:JA:**Japan#JD1:**Ogasawara Islands","itu_zone_number":45,"itu_zone_name_loc":[33,140]},"geometry":{"type":"Polygon","coordinates":[[[150,45.21871],[146.16455,43.26843],[145.54187,43.542],[145.22612,43.82251],[146.49147,45.73822],[139.77955,45.73822],[136.66227,42.24603],[131.99573,37.18814],[126.52906,32.47984],[121.73667,22.00146],[130,22.00146],[130,20],[140,20],[140,22],[150,22],[150,45.21871]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!!!!!!:C5:**Gambia#D4:**Cape Verde#EL:**Liberia#J5:**Guinea-Bissau#S0:**Western Sahara#TU:**Ivory Coast#TY:**Benin#TZ:**Mali#XT:**Burkina Faso#3X:**Guinea#5N:**Nigeria#5T:**Mauritania#5U:**Niger#5V:**Togo#6W:**Senegal#9G:**Ghana#9L:**Sierra Leone","itu_zone_number":46,"itu_zone_name_loc":[15,-10]},"geometry":{"type":"Polygon","coordinates":[[[5,0],[-28,0],[-28,7],[-40,23],[-17,23],[-13.45361,27.66646],[-8.66588,27.66646],[-8.66667,27.29444],[-4.85704,25.0159],[-3.72807,24.28551],[1.16658,21.1163],[1.19058,20.99261],[1.19109,20.94114],[1.15863,20.74085],[1.18773,20.72156],[1.22781,20.72796],[1.32282,20.7395],[1.3574,20.67141],[1.59766,20.59637],[1.66322,20.53259],[1.67385,20.40193],[1.81356,20.2918],[1.88736,20.28986],[1.91653,20.22541],[1.94896,20.25246],[1.97698,20.25922],[2.005,20.24537],[2.04457,20.2692],[2.1237,20.23697],[2.18523,20.26982],[2.20832,20.31812],[2.25122,20.30522],[2.30768,20.27479],[2.30371,20.23406],[2.35742,20.19591],[2.35956,20.16137],[2.40564,20.13198],[2.39281,20.10204],[2.37746,20.09675],[2.38547,20.06437],[2.3749,20.02771],[2.39729,20.04135],[2.39706,20.06315],[2.41204,20.07469],[2.4339,20.0772],[2.4482,20.08745],[2.45701,20.08867],[2.46581,20.0957],[2.47325,20.09628],[2.48067,20.08504],[2.4977,20.09316],[2.50993,20.08772],[2.51941,20.0939],[2.52689,20.08199],[2.53713,20.06235],[2.55148,20.0556],[2.55522,20.03997],[2.56171,20.03337],[2.59667,20.03243],[2.60278,20.04439],[2.62469,20.05377],[2.6377,20.04814],[2.63528,20.0408],[2.66085,20.05326],[2.66449,20.05186],[2.66677,20.05949],[2.6711,20.0768],[2.66914,20.08416],[2.68053,20.0988],[2.68642,20.09797],[2.69937,20.08355],[2.69883,20.07123],[2.73125,19.99699],[2.82616,19.96468],[2.8936,19.96334],[2.97443,19.95002],[3.01251,19.93371],[3.03507,19.91543],[3.09197,19.89844],[3.11561,19.87865],[3.13376,19.87306],[3.14946,19.85801],[3.19802,19.84148],[3.23741,19.84161],[3.25689,19.83463],[3.26354,19.81648],[3.2472,19.79353],[3.24735,19.768],[3.24612,19.74377],[3.23116,19.70919],[3.23363,19.67444],[3.25533,19.63711],[3.23007,19.59995],[3.23667,19.56294],[3.26524,19.52851],[3.24986,19.49926],[3.26744,19.44931],[3.2591,19.43548],[3.20682,19.42942],[3.1971,19.39098],[3.17915,19.3629],[3.18592,19.32769],[3.20367,19.30803],[3.19798,19.27649],[3.12754,19.18359],[3.11479,19.13998],[3.23896,19.05925],[3.28732,19.02019],[3.29941,18.99938],[3.33347,18.99157],[3.35764,18.96814],[5.81301,19.44323],[7.45937,20.84341],[12,23.49999],[13.41288,23.21085],[13.50089,23.1768],[13.56143,23.1478],[13.61797,23.11379],[13.76653,23.0027],[13.79011,22.97882],[14.1894,22.64545],[14.99767,23.00427],[15.19752,21.99847],[15.19994,21.49606],[15.28202,21.45203],[15.48187,20.99663],[15.50754,20.97375],[15.50252,20.9636],[15.49475,20.95088],[15.4806,20.90365],[15.42213,20.87259],[15.40937,20.84038],[15.42565,20.79667],[15.52296,20.73115],[15.52894,20.70027],[15.54316,20.68737],[15.59632,20.60505],[15.60005,20.58699],[15.59553,20.56892],[15.62289,20.53851],[15.67914,20.53102],[15.71067,20.50809],[15.72161,20.48066],[15.74078,20.45838],[15.7599,20.46013],[15.99843,20.36163],[15.75588,19.94567],[15.66698,19.31669],[15.59181,18.79144],[15.53348,16.74936],[14.99431,16.27434],[14.64876,15.99965],[14.39523,15.74564],[14.23537,15.536],[14.08101,15.3171],[14.00001,15.20149],[13.9705,15.16357],[13.87233,15.05209],[13.78997,14.87381],[13.79616,14.79729],[13.8106,14.73139],[13.77336,14.70155],[13.7471,14.70359],[13.67415,14.64187],[13.69459,14.62],[13.69289,14.55899],[13.63436,14.51253],[13.57308,14.51393],[13.50102,14.48495],[13.47015,14.46395],[13.4712,14.41127],[13.63293,13.71035],[14.0835,13.08413],[14.20167,12.53671],[14.19995,12.50047],[14.18176,12.47765],[14.19104,12.43739],[14.17645,12.41592],[14.21404,12.36763],[14.33971,12.36625],[14.46537,12.35682],[14.54229,12.28164],[14.55534,12.23466],[14.59311,12.22526],[14.61371,12.18902],[14.66453,12.19573],[14.68177,12.15968],[14.65505,12.13974],[14.65269,12.11701],[14.63658,12.09429],[14.65656,12.0663],[14.62786,12.05731],[14.62113,12.03354],[14.65739,11.96],[14.6408,11.93451],[14.6407,11.9144],[14.60479,11.8688],[14.61262,11.78299],[14.55137,11.71889],[14.59735,11.6969],[14.64334,11.65608],[14.64538,11.5776],[14.62306,11.54778],[14.61996,11.51526],[14.51556,11.474],[14.4661,11.42914],[14.43038,11.41658],[14.33696,11.33695],[14.23805,11.29233],[14.22565,11.27061],[14.18442,11.2381],[14.14799,11.24836],[14.10575,11.26695],[14.08822,11.26938],[13.97554,11.31682],[13.94049,11.21963],[13.87659,11.1359],[13.7955,11.00888],[13.73408,11.00349],[13.71573,10.9536],[13.72852,10.92327],[13.71432,10.85821],[13.65068,10.80933],[13.62684,10.7129],[13.57921,10.68088],[13.57829,10.62024],[13.56547,10.61826],[13.57462,10.55689],[13.59201,10.5247],[13.57678,10.51106],[13.53957,10.50823],[13.53608,10.47981],[13.51336,10.43518],[13.54207,10.37023],[13.51916,10.27002],[13.49947,10.2483],[13.50175,10.20765],[13.47755,10.1936],[13.45609,10.17145],[13.42417,10.15147],[13.43404,10.14411],[13.43018,10.11783],[13.39774,10.13285],[13.39826,10.12083],[13.36857,10.11422],[13.35227,10.10491],[13.33871,10.11723],[13.30867,10.10251],[13.29512,10.07427],[13.29547,10.05158],[13.24913,10.03431],[13.25222,9.99779],[13.27987,9.98629],[13.28678,9.97462],[13.27995,9.93861],[13.26356,9.92881],[13.23481,9.91764],[13.24726,9.86049],[13.26666,9.8517],[13.30529,9.82803],[13.26701,9.78813],[13.21074,9.55277],[13.02469,9.50186],[12.97424,9.46016],[12.93477,9.41303],[12.85382,9.36812],[12.87425,9.3452],[12.89469,9.35208],[12.91238,9.35626],[12.92732,9.33604],[12.91149,9.30997],[12.91213,9.24053],[12.88733,9.14637],[12.89343,9.11525],[12.88579,9.07058],[12.86786,9.01915],[12.82181,8.97173],[12.81147,8.92432],[12.80648,8.84953],[12.81523,8.83174],[12.78328,8.7473],[12.71938,8.76028],[12.70787,8.73536],[12.6991,8.67243],[12.67883,8.64704],[12.65221,8.64927],[12.61186,8.63793],[12.59982,8.59353],[12.50474,8.64222],[12.43437,8.6203],[12.46223,8.5376],[12.33627,8.44946],[12.34196,8.43052],[12.31194,8.42244],[12.2986,8.44432],[12.26307,8.44764],[12.24558,8.38363],[12.25,8.16731],[12.19316,8.11354],[12.20773,7.9673],[12.07345,7.79448],[12.05575,7.74345],[11.9996,7.67337],[12.01976,7.52255],[11.91632,7.46432],[11.92926,7.43682],[11.92572,7.38754],[11.88412,7.36358],[11.88097,7.32328],[11.84447,7.26446],[11.88133,7.24356],[11.85856,7.21267],[11.86228,7.14818],[11.88248,7.10549],[11.86787,7.08182],[11.82714,7.08272],[11.78916,7.06454],[11.77726,7.04499],[11.726,7.04885],[11.65962,6.99598],[11.62621,6.98399],[11.60515,6.91749],[11.56853,6.89787],[11.55663,6.85643],[11.57623,6.84423],[11.58191,6.81631],[11.59583,6.7993],[11.57199,6.78775],[11.58385,6.73801],[11.55538,6.71218],[11.55201,6.67142],[11.52286,6.64285],[11.51843,6.61429],[11.49171,6.60184],[11.4595,6.60575],[11.4198,6.59721],[11.4324,6.54876],[11.42304,6.53169],[11.36311,6.52619],[11.35853,6.50265],[11.32375,6.50367],[11.28027,6.53572],[11.2416,6.52343],[11.22089,6.53912],[11.20018,6.5357],[11.20112,6.5123],[11.13751,6.50391],[11.13939,6.53078],[11.11655,6.51399],[11.09371,6.52176],[11.09573,6.67836],[11.06342,6.71627],[11.03215,6.71204],[11.00638,6.69689],[10.97718,6.68584],[10.94816,6.68986],[10.91639,6.70753],[10.91429,6.76453],[10.89297,6.76699],[10.87665,6.79624],[10.84926,6.80814],[10.82462,6.82549],[10.81945,6.85399],[10.84203,6.93183],[10.79839,6.96258],[10.7546,6.96432],[10.66404,7.04425],[10.64414,7.04584],[10.60502,7.0665],[10.59886,7.13759],[10.57622,7.16234],[10.56729,7.14355],[10.55287,6.99393],[10.53226,6.92365],[10.49518,6.91744],[10.489,6.89525],[10.46634,6.91941],[10.21638,6.88641],[10.17788,6.94035],[10.1751,7.00246],[10.15308,7.04003],[9.8654,6.77597],[9.78043,6.79245],[9.70773,6.51288],[9.5986,6.52589],[9.58285,6.47614],[9.52123,6.44219],[9.46785,6.45191],[9.43148,6.31767],[9.34453,6.35548],[9.33378,6.29464],[9.30655,6.25837],[9.26583,6.18036],[9.21322,6.17042],[9.16906,6.13541],[9.15237,6.09494],[9.05718,6.00718],[9.04781,5.99616],[8.94505,5.91412],[8.91531,5.90029],[8.90478,5.8625],[8.87812,5.8592],[8.84047,5.82311],[8.85226,5.79932],[8.88602,5.80012],[8.88099,5.77052],[8.851,5.7079],[8.8375,5.70267],[8.84277,5.67855],[8.90572,5.62163],[8.919,5.56791],[8.87141,5.48783],[8.8325,5.43275],[8.84579,5.38587],[8.83413,5.32886],[8.8132,5.28122],[8.81372,5.21911],[8.82085,5.18122],[8.78321,5.11578],[8.74654,5.10221],[8.72433,5.05778],[8.72009,5.03693],[8.68563,5.00514],[8.69775,4.98807],[8.6736,4.9727],[8.66839,4.94859],[8.65219,4.9409],[8.651,4.91401],[8.63332,4.90628],[8.62174,4.90446],[8.59916,4.87255],[8.61994,4.8525],[8.63454,4.82219],[8.59514,4.80429],[8.54751,4.80009],[8.52502,4.7643],[8.5282,4.7293],[8.54511,4.71346],[8,4],[5,4],[5,0]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:ST:**Sudan, west of 31º E#S9:**Sao Tome and Principe#TJ:**Cameroon#TL:**Central African Republic#TT:**Chad#Z8:**South Sudan, west of 31º E#3C:**Equatorial Guinea","itu_zone_number":47,"itu_zone_name_loc":[12.5,22]},"geometry":{"type":"Polygon","coordinates":[[[5,0],[8,0],[8,1],[9.36582,1],[9.58786,1.01923],[9.6633,1.0636],[9.7551,1.06347],[9.8002,1.00018],[9.84255,1.00279],[9.88845,0.98488],[9.89237,0.95637],[9.93141,0.93662],[9.94848,0.91688],[9.99085,0.93505],[9.99203,0.99717],[11.33801,0.99862],[11.33268,2.17257],[11.35847,2.17226],[11.35942,2.22158],[11.37913,2.25173],[11.37686,2.29286],[11.6957,2.31342],[11.75636,2.27361],[12.00105,2.29143],[12.21128,2.27838],[12.25048,2.25265],[12.30616,2.27631],[12.46868,2.25157],[12.57071,2.26632],[12.67823,2.24264],[12.7418,2.2272],[12.80655,2.24693],[12.89052,2.23646],[12.93638,2.2428],[13.08112,2.24915],[13.13523,2.28568],[13.18933,2.28379],[13.28792,2.24708],[13.29863,2.16645],[14.28984,2.17164],[14.41273,2.18757],[14.44773,2.12665],[14.60013,2.20518],[14.65573,2.14152],[14.769,2.09707],[14.77654,2.07046],[14.83473,2.06861],[14.87094,2.10793],[14.8815,2.07201],[14.91128,2.0608],[14.8875,2.01801],[14.92415,1.99993],[14.96122,2.0055],[14.9873,2.03028],[15.04221,1.98103],[15.10606,1.98659],[15.13661,2.02094],[15.1754,2.02785],[15.20939,2.03543],[15.24887,2.0238],[15.30208,1.97375],[15.30671,1.93774],[15.33237,1.93895],[15.3443,1.91546],[15.48571,1.98165],[15.74593,1.91318],[15.88428,1.79247],[16.03311,1.76094],[16.01607,1.71531],[16.02649,1.65595],[16.06123,1.66196],[16.08224,1.68444],[16.09157,1.698],[16.11657,1.70208],[16.13881,1.68969],[16.14733,1.69788],[16.1476,1.71157],[16.1341,1.74328],[16.14257,1.76539],[16.13479,1.80001],[16.10985,1.84491],[16.10688,1.89119],[16.08401,1.88964],[16.07625,1.94505],[16.04788,1.9785],[16.05221,1.99252],[16.04967,2.01067],[16.07792,2.03689],[16.08106,2.04863],[16.07047,2.05625],[16.05753,2.0667],[16.08304,2.08675],[16.07933,2.13744],[16.08386,2.19911],[16.13618,2.19757],[16.14105,2.17553],[16.17988,2.20088],[16.19261,2.22073],[16.50901,2.83207],[16.51851,2.87557],[16.51059,2.90084],[16.48619,2.92063],[16.50299,2.96648],[16.49353,2.98803],[16.51215,3.03721],[16.53626,3.05896],[16.53896,3.07934],[16.50595,3.09424],[16.50452,3.16262],[16.52715,3.20366],[16.52748,3.24201],[16.52781,3.27213],[16.56685,3.32387],[16.58391,3.35917],[16.57685,3.38239],[16.58901,3.4056],[16.58586,3.4822],[16.66472,3.54903],[16.76078,3.55398],[16.85409,3.51782],[16.9419,3.55567],[17.03521,3.51676],[17.06807,3.55858],[17.15587,3.58122],[17.18461,3.56822],[17.24632,3.58537],[17.24612,3.61556],[17.32843,3.6101],[17.33932,3.57723],[17.36247,3.58138],[17.36366,3.60472],[17.39446,3.66093],[17.46371,3.70891],[17.60713,3.64726],[17.82303,3.62465],[17.85491,3.53626],[17.90357,3.55941],[17.93575,3.60175],[17.95282,3.56596],[17.97813,3.54662],[18.02738,3.55317],[18.07196,3.57126],[18.13852,3.56467],[18.16525,3.52382],[18.1755,3.4857],[18.23142,3.49058],[18.27037,3.59308],[18.31953,3.59013],[18.3577,3.60911],[18.39175,3.57874],[18.42114,3.58275],[18.40836,3.60257],[18.42944,3.61248],[18.44273,3.59825],[18.45876,3.60595],[18.45985,3.62972],[18.48292,3.65349],[18.53757,3.606],[18.55844,3.55198],[18.60128,3.47328],[18.62655,3.4749],[18.60845,3.5222],[18.58211,3.78059],[18.61458,3.93006],[18.64866,3.95411],[18.66077,3.99735],[18.61109,4.1714],[18.53943,4.31805],[18.60504,4.36929],[18.62665,4.35726],[18.68122,4.36165],[18.76289,4.40058],[18.80886,4.48879],[18.83011,4.58248],[18.907,4.65292],[19.01409,4.76716],[19.11019,4.94363],[19.20321,4.9443],[19.23855,5.01063],[19.36316,5.07697],[19.40898,5.12381],[19.48502,5.12415],[19.54273,5.15451],[19.61418,5.13015],[19.68842,5.14162],[19.8259,5.09891],[19.9086,4.9916],[19.93216,4.97596],[19.9667,4.98221],[20.01107,4.97009],[20.0998,4.9048],[20.18303,4.89014],[20.20955,4.83081],[20.25254,4.79338],[20.29291,4.7732],[20.34703,4.76944],[20.38301,4.72582],[20.39702,4.68493],[20.46349,4.61959],[20.45197,4.55257],[20.47436,4.5129],[20.51049,4.47597],[20.54524,4.43903],[20.58823,4.41032],[20.71232,4.43058],[20.79796,4.42619],[20.84652,4.44782],[20.94727,4.44206],[21.04252,4.40901],[21.09658,4.38417],[21.10531,4.34291],[21.21817,4.29214],[21.25537,4.33797],[21.28708,4.33998],[21.35213,4.28296],[21.44463,4.28619],[21.49089,4.26316],[21.55362,4.24834],[21.65162,4.31184],[21.77632,4.29103],[21.82961,4.27022],[21.8829,4.24394],[21.94937,4.23353],[21.99662,4.2423],[22.09717,4.21659],[22.1605,4.15923],[22.2403,4.11829],[22.44111,4.12683],[22.54726,4.21362],[22.54221,4.30379],[22.61407,4.36931],[22.58705,4.40608],[22.59299,4.47571],[22.65705,4.49447],[22.67992,4.47216],[22.70299,4.47505],[22.70684,4.52997],[22.73101,4.55766],[22.73816,4.62399],[22.78542,4.72381],[22.81592,4.72992],[22.84641,4.69771],[22.89339,4.75446],[22.88381,4.79064],[22.90444,4.81586],[22.93198,4.81158],[22.96783,4.83858],[23.01346,4.75764],[23.10853,4.70954],[23.16958,4.74747],[23.23675,4.67551],[23.26419,4.6719],[23.27789,4.64091],[23.32727,4.60903],[23.36088,4.61705],[23.38351,4.58674],[23.42603,4.60004],[23.42692,4.65405],[23.46559,4.68055],[23.50152,4.67969],[23.59238,4.75546],[23.67901,4.76598],[23.70859,4.78766],[23.77662,4.78197],[23.83075,4.83721],[23.85232,4.8142],[23.86565,4.81582],[23.89231,4.83274],[23.92212,4.81794],[23.95467,4.81409],[23.95661,4.85154],[23.96259,4.87321],[23.99878,4.873],[24.02398,4.86047],[24.04644,4.86983],[24.05153,4.8824],[24.11155,4.91686],[24.14411,4.88974],[24.16293,4.89547],[24.18991,4.93711],[24.23336,4.95686],[24.24661,4.93966],[24.26421,4.93517],[24.27633,4.95257],[24.26162,4.97291],[24.3037,5.0036],[24.35128,5.00693],[24.40229,5.03632],[24.38669,5.05594],[24.36241,5.0425],[24.34362,5.05368],[24.36235,5.07193],[24.36622,5.09884],[24.38107,5.11754],[24.4199,5.09387],[24.4297,5.06562],[24.45324,5.05925],[24.452,5.10133],[24.53467,5.08701],[24.55993,5.03374],[24.61869,5.03117],[24.63458,4.97403],[24.67314,4.97162],[24.65808,4.9198],[24.71647,4.9103],[24.72515,4.89475],[24.76381,4.90749],[24.78051,4.89835],[24.80335,4.92471],[24.8564,4.92917],[24.86276,4.95006],[24.90804,4.94971],[24.92382,4.9769],[24.96156,4.9904],[25.06037,4.92677],[25.08503,4.97669],[25.12207,4.98661],[25.12616,5.0102],[25.15061,5.0293],[25.17478,5.00457],[25.21228,5.00793],[25.24977,5.02498],[25.31652,5.03445],[25.32032,5.07983],[25.3351,5.09237],[25.34713,5.11997],[25.34543,5.1503],[25.3252,5.14986],[25.30221,5.18497],[25.32917,5.20595],[25.33141,5.25975],[25.35563,5.28346],[25.3746,5.29259],[25.36611,5.30718],[25.39018,5.33297],[25.40908,5.31031],[25.4527,5.33961],[25.48089,5.3613],[25.50047,5.3448],[25.54323,5.36116],[25.53379,5.38299],[25.5744,5.37738],[25.58509,5.3527],[25.61775,5.3499],[25.59519,5.32515],[25.63335,5.30594],[25.6332,5.32642],[25.65228,5.32775],[25.66345,5.31107],[25.70209,5.29987],[25.71945,5.26199],[25.73681,5.26788],[25.74137,5.23869],[25.7766,5.25691],[25.76401,5.26876],[25.78163,5.2806],[25.79717,5.26098],[25.77885,5.24434],[25.81089,5.24832],[25.80219,5.22159],[25.83194,5.1976],[25.85018,5.22373],[25.88127,5.22176],[25.9023,5.16606],[25.91694,5.18198],[25.90366,5.19951],[25.95195,5.20281],[25.97553,5.24713],[26.01436,5.21309],[26.06261,5.20838],[26.09773,5.2279],[26.14108,5.27205],[26.29724,5.15011],[26.34795,5.15177],[26.39866,5.13975],[26.48361,5.05553],[26.76337,5.10867],[26.80299,5.05181],[26.8591,5.04692],[26.90505,5.08194],[26.94002,5.14431],[27.02305,5.18616],[27.10608,5.2116],[27.18019,5.18438],[27.2502,5.14752],[27.32296,5.12981],[27.44238,5.0725],[27.44167,5.01922],[27.46018,4.99056],[27.5124,4.96205],[27.50555,4.93274],[27.56118,4.89346],[27.64942,4.89435],[27.7059,4.82363],[27.69843,4.79238],[27.7254,4.79141],[27.7359,4.80139],[27.77611,4.78303],[27.76927,4.69432],[27.79882,4.60753],[27.89873,4.5395],[27.93332,4.53686],[27.94869,4.57803],[28.04259,4.54401],[28.03542,4.47789],[28.08401,4.41608],[28.10145,4.44405],[28.1436,4.43094],[28.14215,4.40346],[28.1785,4.38287],[28.20661,4.35132],[28.27238,4.3566],[28.35874,4.35504],[28.38193,4.28227],[28.45564,4.28788],[28.51837,4.37566],[28.58246,4.38402],[28.60674,4.42113],[28.64773,4.42347],[28.67499,4.4395],[28.72635,4.54469],[28.80078,4.5658],[28.81204,4.49928],[28.8369,4.47972],[28.87607,4.49125],[28.92623,4.47815],[29.02655,4.49301],[29.04718,4.47169],[29.0788,4.45584],[29.08433,4.43726],[29.1338,4.42963],[29.22183,4.33886],[29.25062,4.35569],[29.25402,4.38328],[29.26567,4.39717],[29.30676,4.38429],[29.34499,4.3996],[29.35713,4.4505],[29.37476,4.47129],[29.40729,4.47726],[29.44805,4.52157],[29.4463,4.56463],[29.47575,4.59326],[29.46676,4.66502],[29.49347,4.69435],[29.5359,4.65852],[29.553,4.6721],[29.69887,4.61865],[29.74847,4.56866],[29.7664,4.58611],[29.82617,4.5565],[29.79838,4.51021],[29.80852,4.49459],[29.79711,4.42654],[29.80218,4.36944],[29.84655,4.33639],[29.89916,4.34715],[29.96592,4.28926],[29.94564,4.24195],[29.97685,4.21382],[30.02318,4.20759],[30.02967,4.17535],[30.06364,4.12941],[30.12232,4.11086],[30.15903,4.11422],[30.1679,4.03878],[30.18501,4.03182],[30.2165,3.93845],[30.2882,3.95651],[30.30223,3.91428],[30.34951,3.91751],[30.38688,3.89412],[30.41601,3.86525],[30.44515,3.87954],[30.47428,3.83354],[30.52627,3.8537],[30.55079,3.84098],[30.58198,3.72921],[30.55824,3.62292],[30.6219,3.60266],[30.6526,3.62078],[30.6833,3.64301],[30.73048,3.62139],[30.7754,3.6823],[30.79624,3.65366],[30.79705,3.61057],[30.80885,3.59488],[30.85991,3.57722],[30.86621,3.54508],[30.85151,3.52354],[30.85054,3.49925],[30.85411,3.49246],[30.86593,3.49527],[30.89079,3.55839],[30.90494,3.57454],[30.90796,3.59176],[30.91908,3.60192],[30.93296,3.61927],[30.94999,3.63385],[30.9489,3.65182],[30.97994,3.70191],[31,3.70541],[31,22],[30.64489,22.00045],[28.0931,22.01895],[25.00004,21.99993],[25.00003,20.00042],[24.00134,19.9996],[23.99966,19.50146],[22.05295,20.51722],[20.07329,21.51239],[15.99997,23.44918],[14.99767,23.00427],[15.19752,21.99847],[15.19994,21.49606],[15.28202,21.45203],[15.48187,20.99663],[15.50754,20.97375],[15.50252,20.9636],[15.49475,20.95088],[15.4806,20.90365],[15.42213,20.87259],[15.40937,20.84038],[15.42565,20.79667],[15.52296,20.73115],[15.52894,20.70027],[15.54316,20.68737],[15.59632,20.60505],[15.60005,20.58699],[15.59553,20.56892],[15.62289,20.53851],[15.67914,20.53102],[15.71067,20.50809],[15.72161,20.48066],[15.74078,20.45838],[15.7599,20.46013],[15.99843,20.36163],[15.75588,19.94567],[15.66698,19.31669],[15.59181,18.79144],[15.53348,16.74936],[14.99431,16.27434],[14.64876,15.99965],[14.39523,15.74564],[14.23537,15.536],[14.08101,15.3171],[14.00001,15.20149],[13.9705,15.16357],[13.87233,15.05209],[13.78997,14.87381],[13.79616,14.79729],[13.8106,14.73139],[13.77336,14.70155],[13.7471,14.70359],[13.67415,14.64187],[13.69459,14.62],[13.69289,14.55899],[13.63436,14.51253],[13.57308,14.51393],[13.50102,14.48495],[13.47015,14.46395],[13.4712,14.41127],[13.63293,13.71035],[14.0835,13.08413],[14.20167,12.53671],[14.19995,12.50047],[14.18176,12.47765],[14.19104,12.43739],[14.17645,12.41592],[14.21404,12.36763],[14.33971,12.36625],[14.46537,12.35682],[14.54229,12.28164],[14.55534,12.23466],[14.59311,12.22526],[14.61371,12.18902],[14.66453,12.19573],[14.68177,12.15968],[14.65505,12.13974],[14.65269,12.11701],[14.63658,12.09429],[14.65656,12.0663],[14.62786,12.05731],[14.62113,12.03354],[14.65739,11.96],[14.6408,11.93451],[14.6407,11.9144],[14.60479,11.8688],[14.61262,11.78299],[14.55137,11.71889],[14.59735,11.6969],[14.64334,11.65608],[14.64538,11.5776],[14.62306,11.54778],[14.61996,11.51526],[14.51556,11.474],[14.4661,11.42914],[14.43038,11.41658],[14.33696,11.33695],[14.23805,11.29233],[14.22565,11.27061],[14.18442,11.2381],[14.14799,11.24836],[14.10575,11.26695],[14.08822,11.26938],[13.97554,11.31682],[13.94049,11.21963],[13.87659,11.1359],[13.7955,11.00888],[13.73408,11.00349],[13.71573,10.9536],[13.72852,10.92327],[13.71432,10.85821],[13.65068,10.80933],[13.62684,10.7129],[13.57921,10.68088],[13.57829,10.62024],[13.56547,10.61826],[13.57462,10.55689],[13.59201,10.5247],[13.57678,10.51106],[13.53957,10.50823],[13.53608,10.47981],[13.51336,10.43518],[13.54207,10.37023],[13.51916,10.27002],[13.49947,10.2483],[13.50175,10.20765],[13.47755,10.1936],[13.45609,10.17145],[13.42417,10.15147],[13.43404,10.14411],[13.43018,10.11783],[13.39774,10.13285],[13.39826,10.12083],[13.36857,10.11422],[13.35227,10.10491],[13.33871,10.11723],[13.30867,10.10251],[13.29512,10.07427],[13.29547,10.05158],[13.24913,10.03431],[13.25222,9.99779],[13.27987,9.98629],[13.28678,9.97462],[13.27995,9.93861],[13.26356,9.92881],[13.23481,9.91764],[13.24726,9.86049],[13.26666,9.8517],[13.30529,9.82803],[13.26701,9.78813],[13.21074,9.55277],[13.02469,9.50186],[12.97424,9.46016],[12.93477,9.41303],[12.85382,9.36812],[12.87425,9.3452],[12.89469,9.35208],[12.91238,9.35626],[12.92732,9.33604],[12.91149,9.30997],[12.91213,9.24053],[12.88733,9.14637],[12.89343,9.11525],[12.88579,9.07058],[12.86786,9.01915],[12.82181,8.97173],[12.81147,8.92432],[12.80648,8.84953],[12.81523,8.83174],[12.78328,8.7473],[12.71938,8.76028],[12.70787,8.73536],[12.6991,8.67243],[12.67883,8.64704],[12.65221,8.64927],[12.61186,8.63793],[12.59982,8.59353],[12.50474,8.64222],[12.43437,8.6203],[12.46223,8.5376],[12.33627,8.44946],[12.34196,8.43052],[12.31194,8.42244],[12.2986,8.44432],[12.26307,8.44764],[12.24558,8.38363],[12.25,8.16731],[12.19316,8.11354],[12.20773,7.9673],[12.07345,7.79448],[12.05575,7.74345],[11.9996,7.67337],[12.01976,7.52255],[11.91632,7.46432],[11.92926,7.43682],[11.92572,7.38754],[11.88412,7.36358],[11.88097,7.32328],[11.84447,7.26446],[11.88133,7.24356],[11.85856,7.21267],[11.86228,7.14818],[11.88248,7.10549],[11.86787,7.08182],[11.82714,7.08272],[11.78916,7.06454],[11.77726,7.04499],[11.726,7.04885],[11.65962,6.99598],[11.62621,6.98399],[11.60515,6.91749],[11.56853,6.89787],[11.55663,6.85643],[11.57623,6.84423],[11.58191,6.81631],[11.59583,6.7993],[11.57199,6.78775],[11.58385,6.73801],[11.55538,6.71218],[11.55201,6.67142],[11.52286,6.64285],[11.51843,6.61429],[11.49171,6.60184],[11.4595,6.60575],[11.4198,6.59721],[11.4324,6.54876],[11.42304,6.53169],[11.36311,6.52619],[11.35853,6.50265],[11.32375,6.50367],[11.28027,6.53572],[11.2416,6.52343],[11.22089,6.53912],[11.20018,6.5357],[11.20112,6.5123],[11.13751,6.50391],[11.13939,6.53078],[11.11655,6.51399],[11.09371,6.52176],[11.09573,6.67836],[11.06342,6.71627],[11.03215,6.71204],[11.00638,6.69689],[10.97718,6.68584],[10.94816,6.68986],[10.91639,6.70753],[10.91429,6.76453],[10.89297,6.76699],[10.87665,6.79624],[10.84926,6.80814],[10.82462,6.82549],[10.81945,6.85399],[10.84203,6.93183],[10.79839,6.96258],[10.7546,6.96432],[10.66404,7.04425],[10.64414,7.04584],[10.60502,7.0665],[10.59886,7.13759],[10.57622,7.16234],[10.56729,7.14355],[10.55287,6.99393],[10.53226,6.92365],[10.49518,6.91744],[10.489,6.89525],[10.46634,6.91941],[10.21638,6.88641],[10.17788,6.94035],[10.1751,7.00246],[10.15308,7.04003],[9.8654,6.77597],[9.78043,6.79245],[9.70773,6.51288],[9.5986,6.52589],[9.58285,6.47614],[9.52123,6.44219],[9.46785,6.45191],[9.43148,6.31767],[9.34453,6.35548],[9.33378,6.29464],[9.30655,6.25837],[9.26583,6.18036],[9.21322,6.17042],[9.16906,6.13541],[9.15237,6.09494],[9.05718,6.00718],[9.04781,5.99616],[8.94505,5.91412],[8.91531,5.90029],[8.90478,5.8625],[8.87812,5.8592],[8.84047,5.82311],[8.85226,5.79932],[8.88602,5.80012],[8.88099,5.77052],[8.851,5.7079],[8.8375,5.70267],[8.84277,5.67855],[8.90572,5.62163],[8.919,5.56791],[8.87141,5.48783],[8.8325,5.43275],[8.84579,5.38587],[8.83413,5.32886],[8.8132,5.28122],[8.81372,5.21911],[8.82085,5.18122],[8.78321,5.11578],[8.74654,5.10221],[8.72433,5.05778],[8.72009,5.03693],[8.68563,5.00514],[8.69775,4.98807],[8.6736,4.9727],[8.66839,4.94859],[8.65219,4.9409],[8.651,4.91401],[8.63332,4.90628],[8.62174,4.90446],[8.59916,4.87255],[8.61994,4.8525],[8.63454,4.82219],[8.59514,4.80429],[8.54751,4.80009],[8.52502,4.7643],[8.5282,4.7293],[8.54511,4.71346],[8,4],[5,4],[5,0]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!:ET:**Ethiopia#E3:**Eritrea#J2:**Djibouti#ST:**Sudan, east of 31º E#T5:**Somalia#Z8:**South Sudan, east of 31º E#5X:**Uganda#5Z:**Kenya#7O:**Yemen - only Socotra and Abd al Kuri islands","itu_zone_number":48,"itu_zone_name_loc":[5,40]},"geometry":{"type":"Polygon","coordinates":[[[36.52087,23.83941],[35.62166,23.14851],[35.2079,22.7861],[34.94687,22.85971],[34.81584,22.57721],[34.68756,22.29472],[34.42051,22.24805],[34.14935,22.20393],[34.07868,22.00018],[34.00321,21.77032],[33.55737,21.72439],[33.16646,21.99978],[31,22],[31,3.70541],[30.97994,3.70191],[30.9489,3.65182],[30.94999,3.63385],[30.93296,3.61927],[30.91908,3.60192],[30.90796,3.59176],[30.90494,3.57454],[30.89079,3.55839],[30.86593,3.49527],[30.85411,3.49246],[30.85054,3.49925],[30.84791,3.48868],[30.86582,3.47791],[30.87921,3.48137],[30.88162,3.48893],[30.8988,3.50269],[30.94276,3.50754],[30.94072,3.49114],[30.93826,3.40604],[30.88896,3.33607],[30.89041,3.31891],[30.87602,3.30485],[30.86713,3.27708],[30.84064,3.26397],[30.82877,3.20531],[30.80361,3.12388],[30.79377,3.06397],[30.77295,3.05342],[30.78199,3.01754],[30.80711,3.0092],[30.82125,3.00908],[30.83813,2.96885],[30.85343,2.95834],[30.85226,2.93959],[30.89151,2.86188],[30.87681,2.7901],[30.83189,2.75124],[30.77599,2.60128],[30.75215,2.58254],[30.76358,2.49772],[30.74733,2.48686],[30.74205,2.44719],[30.75156,2.41602],[30.7803,2.43149],[30.83502,2.42127],[30.88405,2.34047],[30.93877,2.33026],[30.94406,2.36669],[30.95425,2.39452],[30.98917,2.40862],[31.03153,2.37645],[31.07328,2.34382],[31.0741,2.32537],[31.08591,2.30693],[31.06888,2.30083],[31.12903,2.26347],[31.144,2.2791],[31.16933,2.27868],[31.20291,2.29198],[31.2038,2.21991],[31.24887,2.19828],[31.31592,2.14783],[31.31543,2.11692],[31.23005,1.99715],[31.03205,1.75111],[30.71646,1.50123],[30.48038,1.21567],[30.45635,1.19735],[30.40177,1.19231],[30.36212,1.1994],[30.34718,1.17628],[30.33654,1.14653],[30.28745,1.17169],[30.2387,1.13415],[30.24317,1.1037],[30.23029,1.07887],[30.22566,1.04854],[30.22635,0.9904],[30.19133,0.95698],[30.17297,0.93215],[30.17108,0.90457],[30.14259,0.88511],[30.10758,0.89103],[30.06158,0.87499],[29.99773,0.84521],[29.97783,0.82916],[29.96444,0.77501],[29.97304,0.74009],[29.96825,0.67573],[29.95418,0.64424],[29.97307,0.59352],[29.96947,0.5716],[29.98235,0.54967],[29.97789,0.50582],[29.87365,0.38518],[29.82435,0.16704],[29.77762,0.16728],[29.74189,0.12071],[29.71715,0.06865],[29.72398,0.01396],[29.74454,-0.02974],[29.72241,-0.07272],[29.7276,-0.08725],[29.65282,-0.45965],[29.67326,-0.47379],[29.67357,-0.55217],[29.68211,-0.56737],[29.66742,-0.59074],[29.64999,-0.60038],[29.66182,-0.6279],[29.63878,-0.68018],[29.62626,-0.70805],[29.63099,-0.80713],[29.64178,-0.82846],[29.63061,-0.8498],[29.62767,-0.87525],[29.63572,-0.90071],[29.58818,-0.89906],[29.58281,-0.90736],[29.59941,-0.98707],[29.58442,-0.98988],[29.58866,-1.06135],[29.57815,-1.19344],[29.60657,-1.22694],[29.60705,-1.24644],[29.59104,-1.27418],[29.60573,-1.31867],[29.59115,-1.38568],[29.63989,-1.38733],[29.67489,-1.3835],[29.69994,-1.35687],[29.73324,-1.33573],[29.76516,-1.35166],[29.77837,-1.36787],[29.79708,-1.37308],[29.80049,-1.34728],[29.81731,-1.32752],[29.82313,-1.30775],[29.86192,-1.36075],[29.88148,-1.35883],[29.88731,-1.42556],[29.89297,-1.45069],[29.91511,-1.48268],[29.98822,-1.45259],[30.02013,-1.41426],[30.05669,-1.43491],[30.05479,-1.40064],[30.08396,-1.37055],[30.11894,-1.38588],[30.13799,-1.35676],[30.16527,-1.34687],[30.17196,-1.27244],[30.20748,-1.27765],[30.28195,-1.19927],[30.30408,-1.14635],[30.34543,-1.12638],[30.33887,-1.09881],[30.35429,-1.06574],[30.42534,-1.06328],[30.4485,-1.04832],[30.49167,-1.06143],[30.51287,-1.07455],[30.54221,-1.07538],[30.58254,-1.05973],[30.64947,-1.06688],[30.66771,-1.05482],[30.67222,-1.04],[30.69496,-1.01313],[30.71572,-1.0143],[30.76548,-0.98369],[30.79909,-0.99937],[34.01135,-0.99957],[34.01833,-1.00279],[34.02805,-1.01356],[34.02827,-1.02549],[34.02786,-1.03334],[34.03089,-1.04051],[34.03769,-1.04596],[34.04587,-1.0466],[34.07969,-1.02155],[35.8564,-2.02381],[37.51227,-2.95293],[37.6733,-3.06109],[37.71202,-3.31141],[37.68562,-3.32299],[37.68529,-3.35081],[37.68092,-3.35666],[37.66402,-3.3584],[37.6177,-3.40357],[37.58444,-3.44068],[37.58656,-3.46282],[37.61578,-3.46293],[37.62489,-3.46847],[37.62602,-3.48631],[37.59677,-3.5223],[37.62335,-3.52796],[37.66778,-3.5062],[37.69003,-3.51889],[37.70109,-3.5296],[37.72313,-3.53757],[37.74524,-3.54528],[37.76199,-3.61671],[37.7856,-3.67718],[38.68495,-4.30718],[39.21428,-4.67826],[39.69966,-4.74546],[50,0],[60,0],[60,15],[44.32215,11.48006],[42.64797,13.47029],[36.52087,23.83941]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!:E2:**Thailand#VU4:**Andaman and Nicobar Islands#XU:**Cambodia#XW:**Laos#XZ:**Myanmar#3W:**Vietnam","itu_zone_number":49,"itu_zone_name_loc":[15,100]},"geometry":{"type":"Polygon","coordinates":[[[97.34503,28.2141],[97.34874,28.22621],[97.35039,28.24014],[97.35688,28.24227],[97.36287,28.24151],[97.36818,28.24318],[97.37429,28.23836],[97.38282,28.23871],[97.38982,28.24131],[97.39614,28.24088],[97.40295,28.24789],[97.40838,28.25006],[97.41168,28.25107],[97.41362,28.2545],[97.41174,28.26157],[97.40129,28.27227],[97.40113,28.28236],[97.4053,28.28766],[97.4105,28.28994],[97.41365,28.29464],[97.42451,28.298],[97.43132,28.29151],[97.44537,28.2795],[97.45411,28.27592],[97.46285,28.26991],[97.46928,28.27446],[97.47009,28.27916],[97.47682,28.28245],[97.48286,28.2809],[97.48326,28.28355],[97.4763,28.28946],[97.46797,28.30626],[97.47732,28.3096],[97.48117,28.31597],[97.49842,28.3184],[97.50275,28.31433],[97.5092,28.32121],[97.51142,28.32671],[97.51775,28.3304],[97.51806,28.33353],[97.50175,28.33824],[97.50329,28.34173],[97.49641,28.34523],[97.48954,28.35054],[97.49433,28.36206],[97.48634,28.36789],[97.48316,28.37855],[97.47887,28.37993],[97.48141,28.38683],[97.48668,28.39233],[97.49127,28.3924],[97.49688,28.3985],[97.50003,28.39793],[97.50298,28.40067],[97.50171,28.40657],[97.50691,28.41193],[97.50642,28.41793],[97.50078,28.42303],[97.50746,28.43501],[97.51582,28.44133],[97.52488,28.44523],[97.52122,28.45034],[97.51425,28.45199],[97.50355,28.4667],[97.50404,28.48356],[97.50041,28.49318],[97.51062,28.49697],[97.52121,28.49132],[97.52377,28.49574],[97.52014,28.50257],[97.52451,28.50636],[97.53597,28.50765],[97.53758,28.51252],[97.53644,28.52162],[97.53875,28.52428],[97.54313,28.52271],[97.54583,28.52902],[97.55128,28.5311],[97.5552,28.52883],[97.55648,28.5298],[97.5557,28.535],[97.56698,28.54734],[97.58043,28.54722],[97.58991,28.53902],[97.5897,28.53531],[97.59636,28.53039],[97.59114,28.52207],[97.59581,28.52202],[97.60226,28.51746],[97.61476,28.51941],[97.62554,28.52558],[97.62688,28.53231],[97.63302,28.53664],[97.64637,28.53508],[97.65286,28.54257],[97.66356,28.53882],[97.66807,28.52421],[97.68063,28.52491],[97.69034,28.51982],[97.69044,28.50689],[97.70076,28.50246],[97.71245,28.50054],[97.72276,28.49681],[97.72444,28.48273],[97.73053,28.47996],[97.73342,28.47429],[97.73769,28.4668],[97.73406,28.45057],[97.73843,28.44577],[97.7358,28.43281],[97.73318,28.43192],[97.73549,28.41919],[97.74465,28.41337],[97.73596,28.40694],[97.73574,28.39832],[97.74341,28.3945],[97.75549,28.38503],[97.75466,28.37789],[97.75974,28.37945],[97.76022,28.38567],[97.76413,28.38463],[97.77764,28.37039],[97.78645,28.35723],[97.78914,28.34612],[97.79645,28.3304],[97.80583,28.33055],[97.81189,28.33425],[97.81973,28.33428],[97.8255,28.32949],[97.84254,28.32888],[97.84696,28.33458],[97.84381,28.35115],[97.85923,28.35733],[97.86762,28.36675],[97.87739,28.36652],[97.88868,28.36604],[97.90822,28.36919],[97.91356,28.3632],[97.91409,28.35842],[97.9282,28.34464],[97.93788,28.33942],[97.94104,28.32967],[97.9488,28.32691],[97.95999,28.32536],[97.95765,28.3124],[97.95187,28.30427],[97.95474,28.30012],[97.96687,28.2952],[97.98736,28.29366],[97.99206,28.2909],[97.99401,28.28501],[98.01387,28.27178],[98.02378,28.24586],[98.01553,28.24575],[98.01167,28.23264],[98.01329,28.22437],[98.00694,28.22235],[98.00921,28.21029],[98.01766,28.20429],[98.01914,28.19766],[98.02406,28.19708],[98.02976,28.19108],[98.05267,28.19027],[98.04881,28.20368],[98.07933,28.20628],[98.08206,28.19926],[98.08823,28.20029],[98.09183,28.19132],[98.08925,28.18537],[98.09817,28.16501],[98.11756,28.16678],[98.12781,28.15965],[98.13259,28.15034],[98.13875,28.14526],[98.14363,28.1353],[98.15057,28.12232],[98.14797,28.11694],[98.16062,28.10407],[98.15917,28.09483],[98.15977,28.08924],[98.1544,28.07553],[98.15179,28.06486],[98.14574,28.05464],[98.13969,28.04563],[98.13986,28.0293],[98.14254,28.02582],[98.14385,28.01931],[98.13892,28.01113],[98.1405,27.99872],[98.13375,27.99524],[98.1336,27.98679],[98.1362,27.97895],[98.13674,27.9705],[98.14072,27.95477],[98.15446,27.94091],[98.17059,27.94095],[98.18879,27.94281],[98.18948,27.93346],[98.19429,27.92533],[98.20236,27.90445],[98.20137,27.8971],[98.20588,27.89158],[98.2018,27.88545],[98.20185,27.87568],[98.18125,27.87429],[98.18082,27.86728],[98.17546,27.865],[98.1749,27.85785],[98.17035,27.85419],[98.17267,27.84142],[98.17593,27.83591],[98.19718,27.82527],[98.2143,27.81342],[98.22486,27.81401],[98.22413,27.80163],[98.22683,27.79715],[98.21975,27.78554],[98.21748,27.76481],[98.22564,27.7557],[98.24306,27.74842],[98.2471,27.74342],[98.24519,27.7373],[98.23805,27.73364],[98.23352,27.73455],[98.23174,27.7312],[98.22474,27.72815],[98.22575,27.72356],[98.22332,27.71471],[98.2341,27.7069],[98.23336,27.70373],[98.23674,27.69934],[98.2332,27.69482],[98.26011,27.67971],[98.26434,27.67509],[98.26824,27.66075],[98.27706,27.6649],[98.2853,27.65782],[98.28582,27.64266],[98.28839,27.63664],[98.30041,27.63553],[98.30325,27.63009],[98.29711,27.61673],[98.30537,27.59453],[98.31089,27.58815],[98.30686,27.56082],[98.30862,27.54623],[98.31739,27.53681],[98.31621,27.52283],[98.32884,27.51976],[98.33817,27.51107],[98.35232,27.5164],[98.37024,27.51015],[98.38335,27.51517],[98.39573,27.52654],[98.40125,27.54339],[98.41415,27.54974],[98.43048,27.55183],[98.43465,27.58338],[98.42921,27.59546],[98.43476,27.60814],[98.42932,27.61352],[98.43849,27.62816],[98.43793,27.63608],[98.43255,27.64218],[98.43451,27.65042],[98.43029,27.65927],[98.43263,27.6661],[98.44358,27.66921],[98.44941,27.66203],[98.45799,27.65851],[98.46691,27.64355],[98.47513,27.63735],[98.50592,27.63617],[98.50847,27.62858],[98.51994,27.62828],[98.52798,27.6219],[98.53465,27.62526],[98.53838,27.63858],[98.54897,27.64339],[98.55029,27.64881],[98.55573,27.64997],[98.56254,27.64371],[98.57385,27.61442],[98.5776,27.60825],[98.58203,27.59751],[98.58647,27.59104],[98.58264,27.57352],[98.59061,27.56838],[98.59858,27.57298],[98.59728,27.5788],[98.60696,27.58157],[98.61407,27.57711],[98.62119,27.57935],[98.64708,27.56862],[98.65097,27.57093],[98.6528,27.57994],[98.65716,27.58579],[98.66654,27.59079],[98.67492,27.58494],[98.68465,27.56666],[98.69438,27.5636],[98.70217,27.56539],[98.70733,27.55725],[98.69807,27.54851],[98.69962,27.53824],[98.70461,27.52006],[98.69835,27.51793],[98.69447,27.51976],[98.68921,27.51307],[98.69175,27.50698],[98.68853,27.498],[98.68395,27.48963],[98.69584,27.47472],[98.7043,27.46711],[98.70147,27.4525],[98.68766,27.4513],[98.68891,27.4379],[98.68672,27.43395],[98.689,27.42406],[98.70158,27.41752],[98.7006,27.40465],[98.7032,27.39943],[98.70373,27.3869],[98.69829,27.38303],[98.70726,27.36513],[98.71332,27.36392],[98.71731,27.3554],[98.73629,27.3536],[98.73183,27.34806],[98.73166,27.34011],[98.74042,27.33155],[98.7358,27.30482],[98.73211,27.30243],[98.73323,27.28967],[98.7274,27.27939],[98.71813,27.27461],[98.71453,27.25914],[98.7305,27.24886],[98.73025,27.2453],[98.72519,27.24479],[98.71807,27.23634],[98.72571,27.23003],[98.72288,27.22283],[98.70907,27.22174],[98.69784,27.21454],[98.69141,27.20123],[98.70326,27.18797],[98.70643,27.18073],[98.70579,27.16626],[98.71027,27.15852],[98.70856,27.15017],[98.7127,27.14263],[98.70781,27.13699],[98.71253,27.12647],[98.71335,27.11815],[98.70964,27.11308],[98.71005,27.10433],[98.71464,27.09724],[98.71237,27.07853],[98.72628,27.06989],[98.74088,27.07593],[98.76527,27.05288],[98.7669,27.04437],[98.76305,27.0221],[98.74631,27.01695],[98.73301,27.00477],[98.74435,26.99562],[98.73646,26.97179],[98.73818,26.96064],[98.74265,26.9556],[98.74677,26.94598],[98.74369,26.93429],[98.75227,26.92626],[98.75402,26.90805],[98.75783,26.88371],[98.75237,26.87394],[98.74534,26.87028],[98.73146,26.85498],[98.73567,26.8427],[98.7495,26.8298],[98.75508,26.81568],[98.75998,26.81198],[98.76188,26.80198],[98.75665,26.78043],[98.7584,26.7769],[98.75893,26.76838],[98.75671,26.76661],[98.75572,26.74959],[98.75238,26.74533],[98.75453,26.73617],[98.74991,26.73256],[98.74689,26.72151],[98.74386,26.71965],[98.74224,26.71313],[98.74623,26.71109],[98.74679,26.69985],[98.75993,26.69333],[98.771,26.69417],[98.77093,26.68629],[98.76467,26.68148],[98.76803,26.67268],[98.76109,26.66572],[98.76823,26.64994],[98.77193,26.63784],[98.78181,26.62375],[98.77817,26.61732],[98.77807,26.61073],[98.78208,26.60536],[98.77509,26.58843],[98.76879,26.57457],[98.76047,26.57401],[98.7549,26.56977],[98.75482,26.55142],[98.75405,26.53798],[98.75299,26.52357],[98.74917,26.50979],[98.75665,26.50065],[98.75123,26.48316],[98.75062,26.46936],[98.74734,26.45897],[98.74215,26.43941],[98.75237,26.4292],[98.74543,26.41685],[98.74848,26.41283],[98.74348,26.40651],[98.74167,26.38767],[98.73183,26.3844],[98.72795,26.37169],[98.73367,26.35376],[98.70622,26.32783],[98.68289,26.30929],[98.68544,26.29504],[98.67769,26.28634],[98.67729,26.28001],[98.68036,26.27285],[98.67999,26.25706],[98.67169,26.24212],[98.68187,26.24113],[98.69136,26.23645],[98.69845,26.24439],[98.71241,26.2357],[98.71478,26.22589],[98.72196,26.22038],[98.72533,26.21184],[98.72441,26.20176],[98.73654,26.1886],[98.73179,26.1747],[98.72704,26.16327],[98.72243,26.16032],[98.71165,26.16046],[98.70793,26.15211],[98.70821,26.14496],[98.71281,26.14631],[98.71752,26.13959],[98.71948,26.13041],[98.70567,26.12043],[98.7008,26.11292],[98.69304,26.11611],[98.68665,26.10511],[98.67934,26.09961],[98.67409,26.10027],[98.6678,26.09169],[98.66015,26.09236],[98.65728,26.10472],[98.66477,26.11367],[98.66746,26.12386],[98.66095,26.13053],[98.66062,26.13659],[98.65103,26.14623],[98.63254,26.15135],[98.62685,26.1497],[98.6239,26.14374],[98.61525,26.14291],[98.60936,26.13468],[98.60346,26.13261],[98.58961,26.14451],[98.58193,26.14593],[98.58493,26.13686],[98.57968,26.12593],[98.57331,26.12196],[98.58411,26.09887],[98.58676,26.08271],[98.58186,26.08072],[98.58279,26.0736],[98.59264,26.0745],[98.59975,26.06244],[98.60193,26.03205],[98.60505,26.02244],[98.60936,26.02103],[98.60979,26.01663],[98.60795,26.01535],[98.60954,26.00852],[98.61077,25.99737],[98.61791,25.98594],[98.61544,25.97388],[98.62074,25.97449],[98.63017,25.97263],[98.63471,25.97579],[98.64199,25.97648],[98.64833,25.97292],[98.64805,25.9638],[98.6589,25.96109],[98.66158,25.9551],[98.68146,25.94223],[98.69002,25.92993],[98.68736,25.92809],[98.6895,25.91205],[98.69727,25.90789],[98.70561,25.89469],[98.70366,25.88829],[98.70857,25.88258],[98.70593,25.86883],[98.70752,25.8605],[98.70342,25.85391],[98.69383,25.84732],[98.68974,25.84845],[98.68565,25.84587],[98.68501,25.83948],[98.68232,25.8368],[98.67394,25.81989],[98.66058,25.82122],[98.65415,25.8166],[98.64979,25.80704],[98.64477,25.80961],[98.64112,25.80042],[98.6304,25.80029],[98.62892,25.80672],[98.62125,25.80944],[98.61417,25.80994],[98.6112,25.81384],[98.60411,25.81465],[98.58924,25.82615],[98.57781,25.829],[98.57465,25.83979],[98.56146,25.84839],[98.55332,25.84883],[98.55077,25.84415],[98.54685,25.8438],[98.54175,25.8468],[98.53303,25.84767],[98.52845,25.84092],[98.51976,25.83665],[98.51712,25.83173],[98.52067,25.82433],[98.50637,25.81602],[98.49481,25.81264],[98.49032,25.80574],[98.48995,25.79513],[98.48512,25.79472],[98.47479,25.78256],[98.47471,25.77312],[98.48149,25.75934],[98.46974,25.7499],[98.46004,25.73675],[98.45987,25.72646],[98.46932,25.70751],[98.4628,25.70178],[98.45937,25.68971],[98.4333,25.68257],[98.43261,25.67908],[98.41888,25.67312],[98.40688,25.65625],[98.41171,25.65189],[98.40538,25.63795],[98.40791,25.62348],[98.40976,25.61148],[98.40355,25.60691],[98.40282,25.59987],[98.38337,25.60218],[98.37261,25.58817],[98.36151,25.5791],[98.3503,25.5808],[98.34707,25.57816],[98.34384,25.58047],[98.33806,25.57333],[98.3241,25.56461],[98.31334,25.54781],[98.30395,25.55212],[98.29661,25.562],[98.2943,25.5768],[98.28302,25.58204],[98.27517,25.59347],[98.26938,25.59499],[98.26359,25.60146],[98.25879,25.6029],[98.25399,25.6062],[98.24713,25.60579],[98.24233,25.61342],[98.23617,25.60866],[98.21559,25.61288],[98.21493,25.61587],[98.20472,25.61975],[98.20013,25.61581],[98.19039,25.61527],[98.1843,25.62627],[98.16818,25.62693],[98.1684,25.62098],[98.17205,25.6175],[98.1816,25.59393],[98.18291,25.58336],[98.18828,25.574],[98.18208,25.56154],[98.17382,25.54907],[98.16178,25.54652],[98.15936,25.52725],[98.15309,25.52671],[98.14651,25.52179],[98.13994,25.52059],[98.13083,25.52013],[98.12426,25.50806],[98.13861,25.4977],[98.13925,25.49129],[98.1485,25.47692],[98.15638,25.46007],[98.15723,25.45318],[98.15464,25.45001],[98.15428,25.44118],[98.14532,25.43283],[98.15523,25.42231],[98.14818,25.41612],[98.14808,25.40806],[98.1446,25.40496],[98.14286,25.39597],[98.13769,25.38636],[98.12787,25.38607],[98.12181,25.38461],[98.1027,25.39431],[98.09951,25.39075],[98.10205,25.38892],[98.09714,25.38056],[98.10189,25.3801],[98.09896,25.3744],[98.09603,25.35133],[98.09189,25.35165],[98.0898,25.33831],[98.08152,25.33584],[98.07525,25.33648],[98.07275,25.32968],[98.07219,25.321],[98.06957,25.31481],[98.06232,25.31011],[98.03791,25.30479],[98.02862,25.30585],[98.02311,25.31095],[98.01141,25.30687],[98.00264,25.2966],[98.00691,25.28323],[98.0002,25.27699],[97.988,25.2571],[97.97767,25.25332],[97.96803,25.23837],[97.96173,25.2419],[97.95165,25.22587],[97.94432,25.21792],[97.93395,25.21862],[97.91743,25.21308],[97.90538,25.21809],[97.8954,25.23498],[97.88336,25.24753],[97.87575,25.26144],[97.8698,25.26389],[97.86797,25.26634],[97.86134,25.26414],[97.84097,25.27249],[97.83508,25.26384],[97.83248,25.25424],[97.82232,25.23781],[97.81643,25.22513],[97.8097,25.20388],[97.80298,25.18542],[97.8036,25.1787],[97.79803,25.1726],[97.79995,25.16786],[97.78916,25.15162],[97.77769,25.13165],[97.77849,25.12511],[97.76636,25.11049],[97.75698,25.0965],[97.75,25.09541],[97.74577,25.08127],[97.73913,25.07993],[97.73112,25.0817],[97.73049,25.08907],[97.72606,25.08591],[97.72025,25.08524],[97.72649,25.06667],[97.72861,25.04748],[97.71843,25.01345],[97.71884,25.00017],[97.71718,24.98004],[97.71987,24.97216],[97.72739,24.96293],[97.73046,24.95307],[97.73091,24.93803],[97.7284,24.93051],[97.73034,24.91147],[97.73984,24.90551],[97.74597,24.89443],[97.75641,24.88967],[97.75803,24.88558],[97.76376,24.88273],[97.77178,24.88981],[97.77622,24.88416],[97.7834,24.881],[97.78852,24.87442],[97.78971,24.86396],[97.79752,24.86372],[97.79845,24.85351],[97.78228,24.8399],[97.7711,24.83185],[97.76267,24.82878],[97.74857,24.82946],[97.74462,24.83354],[97.7344,24.82997],[97.70903,24.83815],[97.70253,24.84629],[97.70082,24.8418],[97.69568,24.83543],[97.68125,24.83031],[97.66717,24.81498],[97.65035,24.79622],[97.6341,24.79081],[97.61545,24.77885],[97.58914,24.77052],[97.5688,24.77007],[97.56077,24.75293],[97.54783,24.7428],[97.54926,24.73665],[97.55274,24.73049],[97.56669,24.72816],[97.56896,24.71461],[97.56897,24.70767],[97.56554,24.70322],[97.56556,24.69619],[97.56971,24.69337],[97.56909,24.66527],[97.57426,24.66285],[97.57393,24.65731],[97.56847,24.65622],[97.56746,24.64693],[97.56988,24.60207],[97.56474,24.59466],[97.56492,24.58097],[97.56192,24.57631],[97.56489,24.56243],[97.56139,24.56048],[97.55995,24.52981],[97.55702,24.52226],[97.55271,24.48598],[97.53741,24.46],[97.52898,24.4434],[97.53474,24.44292],[97.53006,24.43643],[97.54764,24.44069],[97.57737,24.44188],[97.5912,24.43872],[97.60018,24.44652],[97.60536,24.44073],[97.64228,24.44721],[97.67027,24.45557],[97.67796,24.44667],[97.67528,24.4341],[97.68012,24.41781],[97.68427,24.41528],[97.67582,24.4092],[97.69185,24.38678],[97.70467,24.38464],[97.70319,24.37856],[97.70794,24.37897],[97.71477,24.37667],[97.71407,24.36707],[97.71699,24.36499],[97.71467,24.35706],[97.7096,24.35477],[97.70231,24.34685],[97.68814,24.34393],[97.68795,24.34124],[97.68089,24.34043],[97.67707,24.34632],[97.66874,24.3481],[97.65905,24.33533],[97.66653,24.30067],[97.68979,24.29482],[97.70555,24.29659],[97.71924,24.30023],[97.72992,24.29138],[97.73854,24.28941],[97.74923,24.28274],[97.74961,24.27796],[97.7683,24.26444],[97.75815,24.25406],[97.74388,24.24806],[97.72807,24.22891],[97.72566,24.20274],[97.72736,24.18847],[97.74314,24.18468],[97.7512,24.17418],[97.7524,24.16556],[97.74364,24.16289],[97.7372,24.15059],[97.73467,24.13347],[97.73065,24.12868],[97.7287,24.11448],[97.71493,24.10962],[97.70871,24.10351],[97.70931,24.09943],[97.70091,24.09691],[97.69304,24.09751],[97.67729,24.07741],[97.65128,24.06102],[97.64047,24.04581],[97.63326,24.04799],[97.63258,24.02163],[97.62299,24.02347],[97.62714,24.00645],[97.61333,24.00055],[97.59677,23.99465],[97.57396,23.98725],[97.56762,23.97012],[97.56274,23.96438],[97.55001,23.96028],[97.5318,23.95116],[97.52835,23.94204],[97.52764,23.93167],[97.54238,23.9221],[97.55112,23.9239],[97.56536,23.91315],[97.57289,23.91457],[97.57666,23.91021],[97.5873,23.90774],[97.59931,23.89458],[97.61682,23.89272],[97.62231,23.88395],[97.63192,23.88083],[97.63291,23.87268],[97.63889,23.87143],[97.63742,23.86578],[97.64184,23.86045],[97.6413,23.85213],[97.64556,23.84255],[97.65004,23.84381],[97.64903,23.85511],[97.65728,23.86516],[97.65866,23.8727],[97.66107,23.86799],[97.65953,23.86187],[97.66417,23.85637],[97.66847,23.85716],[97.67141,23.8636],[97.67796,23.86328],[97.68426,23.88276],[97.69228,23.88309],[97.69389,23.87885],[97.68851,23.87548],[97.69887,23.86752],[97.71641,23.87232],[97.71385,23.87755],[97.7033,23.8764],[97.70386,23.88242],[97.70785,23.88655],[97.71874,23.88344],[97.72865,23.89915],[97.74665,23.90481],[97.75153,23.91046],[97.76427,23.91109],[97.76715,23.91439],[97.76248,23.91894],[97.76742,23.92349],[97.76549,23.93118],[97.77434,23.93871],[97.79181,23.94499],[97.79403,23.95691],[97.80612,23.95283],[97.80633,23.95958],[97.81227,23.96232],[97.81558,23.96087],[97.81243,23.95356],[97.80846,23.94833],[97.81248,23.94431],[97.81581,23.94844],[97.8171,23.95447],[97.82496,23.9578],[97.82649,23.96197],[97.82197,23.96576],[97.81827,23.97126],[97.8283,23.97236],[97.82982,23.9639],[97.83488,23.96175],[97.84228,23.9644],[97.8399,23.97471],[97.84409,23.97714],[97.84627,23.97195],[97.85751,23.98229],[97.87012,23.97599],[97.89188,23.97567],[97.89647,23.98288],[97.88745,23.98694],[97.88186,23.99602],[97.89332,24.00479],[97.8986,24.01607],[97.9176,24.02234],[97.92648,24.02265],[97.93878,24.01983],[97.96173,24.02798],[97.98399,24.03488],[97.99579,24.04905],[98.02091,24.06084],[98.04515,24.07614],[98.05143,24.07469],[98.05628,24.07868],[98.07004,24.08067],[98.07349,24.07915],[98.0838,24.0831],[98.08792,24.08266],[98.08873,24.08774],[98.11317,24.09342],[98.14839,24.09782],[98.15908,24.10049],[98.17115,24.10065],[98.16674,24.10551],[98.19371,24.10199],[98.20421,24.10411],[98.20588,24.11013],[98.21333,24.11179],[98.21667,24.11596],[98.224,24.11633],[98.24575,24.11042],[98.27849,24.11109],[98.29406,24.10237],[98.32732,24.10463],[98.34326,24.10169],[98.35123,24.10555],[98.35556,24.10434],[98.35188,24.10092],[98.35897,24.10014],[98.36183,24.11041],[98.36744,24.11379],[98.38979,24.11707],[98.46242,24.12811],[98.48432,24.12361],[98.54741,24.13038],[98.55432,24.11236],[98.57167,24.1019],[98.58901,24.09457],[98.59418,24.08305],[98.61869,24.09175],[98.62673,24.09793],[98.6476,24.10905],[98.66165,24.10725],[98.67981,24.10169],[98.70003,24.11054],[98.71339,24.12941],[98.72397,24.13067],[98.73338,24.12753],[98.74417,24.13004],[98.7575,24.12691],[98.76725,24.12879],[98.7722,24.13255],[98.81934,24.13693],[98.8373,24.12957],[98.85003,24.13165],[98.85795,24.1356],[98.8786,24.15604],[98.88793,24.14341],[98.89383,24.12514],[98.88906,24.11773],[98.89459,24.11721],[98.89839,24.10901],[98.89377,24.10178],[98.88401,24.09267],[98.87006,24.0878],[98.86391,24.08031],[98.86943,24.07471],[98.8631,24.06736],[98.83315,24.04895],[98.819,24.04622],[98.79858,24.02571],[98.77121,24.02926],[98.75922,24.01493],[98.76714,23.99873],[98.75865,23.99649],[98.7529,23.98295],[98.74003,23.98224],[98.73626,23.97139],[98.72599,23.96915],[98.71601,23.97807],[98.70123,23.98699],[98.67581,23.96235],[98.67373,23.95652],[98.69838,23.95457],[98.69755,23.94689],[98.70531,23.94047],[98.70345,23.93656],[98.69973,23.93815],[98.69532,23.93472],[98.68955,23.92894],[98.6872,23.92253],[98.67839,23.91284],[98.68871,23.89992],[98.68529,23.89327],[98.68942,23.89278],[98.69492,23.88726],[98.69527,23.87335],[98.70111,23.872],[98.69631,23.85778],[98.6915,23.85738],[98.69256,23.84817],[98.69834,23.84646],[98.7048,23.84286],[98.69094,23.81242],[98.67833,23.81562],[98.67303,23.80694],[98.68645,23.80342],[98.69488,23.78783],[98.70093,23.78614],[98.70877,23.7922],[98.73651,23.79135],[98.73982,23.78746],[98.74357,23.7846],[98.74662,23.78488],[98.75068,23.77665],[98.78988,23.78406],[98.79832,23.77445],[98.80744,23.76925],[98.80489,23.76625],[98.80567,23.76035],[98.81876,23.74577],[98.83117,23.72868],[98.8238,23.72678],[98.81575,23.71232],[98.81886,23.69784],[98.84019,23.68901],[98.84073,23.67092],[98.8447,23.66792],[98.84783,23.64368],[98.85097,23.63486],[98.8636,23.62982],[98.87828,23.62478],[98.89187,23.6166],[98.89066,23.60444],[98.88053,23.59229],[98.86369,23.58623],[98.85612,23.57725],[98.84475,23.58039],[98.83664,23.57204],[98.83324,23.56382],[98.81542,23.55559],[98.81029,23.54991],[98.80859,23.54296],[98.80107,23.54041],[98.80909,23.52498],[98.80612,23.52159],[98.81757,23.50435],[98.81975,23.49215],[98.81534,23.49078],[98.82104,23.48379],[98.82698,23.48565],[98.82742,23.47869],[98.83476,23.48153],[98.839,23.47877],[98.85004,23.47897],[98.84804,23.4842],[98.85984,23.48617],[98.87643,23.4894],[98.89785,23.45735],[98.89689,23.44794],[98.92064,23.41963],[98.92053,23.41275],[98.91081,23.39578],[98.92238,23.37818],[98.91855,23.37379],[98.92154,23.36466],[98.91767,23.35364],[98.90099,23.3568],[98.89026,23.34281],[98.87679,23.33009],[98.89748,23.33498],[98.90855,23.33546],[98.91529,23.32892],[98.92134,23.32932],[98.93288,23.31774],[98.94106,23.31478],[98.94512,23.30931],[98.93774,23.3068],[98.93662,23.29404],[98.93005,23.2938],[98.92555,23.29546],[98.92555,23.28225],[98.93173,23.26904],[98.91199,23.25456],[98.91148,23.23631],[98.90367,23.22308],[98.89037,23.21237],[98.89595,23.20703],[98.885,23.19142],[98.88503,23.1833],[98.88985,23.17897],[98.90257,23.18133],[98.90996,23.1885],[98.92602,23.18767],[98.93315,23.18243],[98.95241,23.1802],[98.95466,23.17546],[98.96652,23.17072],[98.98069,23.17025],[99.00447,23.16409],[99.01877,23.16432],[99.03444,23.16266],[99.04461,23.16669],[99.05245,23.16333],[99.06097,23.17324],[99.05619,23.15397],[99.049,23.1456],[99.05021,23.13446],[99.04661,23.12333],[99.09624,23.10249],[99.1033,23.09301],[99.11558,23.09253],[99.11276,23.10153],[99.11646,23.10485],[99.12236,23.10078],[99.12963,23.10177],[99.14481,23.10875],[99.15651,23.1053],[99.16546,23.10831],[99.17336,23.10634],[99.18238,23.10758],[99.18933,23.10504],[99.20015,23.11258],[99.20685,23.10861],[99.20737,23.10086],[99.21596,23.09166],[99.22661,23.09193],[99.23383,23.0941],[99.23813,23.09101],[99.2383,23.0854],[99.24895,23.07922],[99.26338,23.08581],[99.25995,23.091],[99.26442,23.10117],[99.27506,23.09809],[99.27987,23.10675],[99.29223,23.10792],[99.30597,23.10215],[99.31088,23.10752],[99.3178,23.10894],[99.32472,23.11288],[99.32493,23.11603],[99.32329,23.12013],[99.32573,23.12612],[99.32955,23.13591],[99.337,23.1329],[99.34245,23.13771],[99.3479,23.13747],[99.34883,23.13351],[99.36303,23.12679],[99.36361,23.11712],[99.3687,23.11608],[99.37125,23.11145],[99.38248,23.10882],[99.38501,23.10087],[99.39108,23.10195],[99.4053,23.0967],[99.41128,23.09839],[99.43442,23.08745],[99.43609,23.08266],[99.44119,23.08608],[99.45899,23.0854],[99.46172,23.08727],[99.47372,23.08252],[99.47869,23.08741],[99.48213,23.08621],[99.48558,23.08249],[99.4952,23.08288],[99.50071,23.08074],[99.51036,23.0848],[99.52486,23.07398],[99.52756,23.06181],[99.53164,23.0547],[99.53025,23.04921],[99.52612,23.04962],[99.52269,23.04687],[99.52542,23.04233],[99.52541,23.03905],[99.52145,23.03773],[99.5175,23.03451],[99.52127,23.02618],[99.51782,23.02511],[99.51644,23.02142],[99.5185,23.01835],[99.52326,23.00271],[99.51946,22.99931],[99.52511,22.9875],[99.53557,22.97506],[99.53449,22.96353],[99.53954,22.9627],[99.54391,22.9644],[99.5536,22.95868],[99.56191,22.946],[99.56526,22.93246],[99.56106,22.92461],[99.56089,22.90765],[99.553,22.90535],[99.54547,22.90835],[99.53659,22.8998],[99.52373,22.90264],[99.51637,22.90801],[99.50912,22.90816],[99.48814,22.91591],[99.47502,22.92887],[99.45709,22.93487],[99.44054,22.94214],[99.44073,22.937],[99.43612,22.92679],[99.43854,22.9207],[99.43581,22.91587],[99.44409,22.88945],[99.44977,22.88001],[99.45089,22.8677],[99.45049,22.86162],[99.45695,22.85807],[99.46204,22.84819],[99.44082,22.84746],[99.43056,22.83855],[99.42268,22.83631],[99.42045,22.83235],[99.42029,22.82775],[99.4032,22.83019],[99.39705,22.82191],[99.3974,22.8181],[99.3902,22.81556],[99.39192,22.81081],[99.38969,22.7964],[99.38502,22.7909],[99.38927,22.78034],[99.38609,22.76554],[99.37882,22.76472],[99.36674,22.76707],[99.36324,22.76467],[99.3618,22.76101],[99.35262,22.75964],[99.35043,22.76133],[99.34549,22.76113],[99.34056,22.75902],[99.34043,22.75564],[99.32636,22.75335],[99.32361,22.74219],[99.31469,22.73926],[99.3182,22.7298],[99.32583,22.72542],[99.32896,22.71562],[99.33758,22.71343],[99.34998,22.6745],[99.36169,22.66344],[99.35901,22.65739],[99.36332,22.6386],[99.369,22.61602],[99.37418,22.61078],[99.37081,22.60473],[99.38392,22.58791],[99.38267,22.58343],[99.38554,22.57451],[99.37296,22.55847],[99.35832,22.53798],[99.3601,22.53091],[99.35845,22.52637],[99.36572,22.51518],[99.38055,22.50652],[99.3809,22.4952],[99.36794,22.48808],[99.36116,22.47716],[99.35125,22.47123],[99.34477,22.46148],[99.33657,22.4565],[99.3325,22.44771],[99.3126,22.44093],[99.30902,22.43644],[99.30963,22.4307],[99.30407,22.42306],[99.28111,22.40329],[99.25236,22.39739],[99.24842,22.39258],[99.25084,22.38549],[99.2653,22.37449],[99.27838,22.36349],[99.27646,22.34869],[99.26666,22.34493],[99.25549,22.33482],[99.25032,22.32094],[99.2472,22.31406],[99.23981,22.30934],[99.23645,22.3054],[99.23684,22.3012],[99.23241,22.29828],[99.23545,22.28324],[99.22942,22.27159],[99.23574,22.25168],[99.22328,22.23734],[99.2188,22.23471],[99.2095,22.23589],[99.20433,22.22786],[99.20526,22.22235],[99.20071,22.22193],[99.19615,22.21611],[99.19656,22.20655],[99.19147,22.21161],[99.19016,22.20269],[99.17509,22.1906],[99.18094,22.18423],[99.1794,22.18201],[99.17486,22.18184],[99.17544,22.17863],[99.18357,22.17477],[99.18715,22.17722],[99.18997,22.17082],[99.19485,22.17459],[99.202,22.17505],[99.19474,22.16724],[99.18021,22.16576],[99.17323,22.17],[99.16477,22.16831],[99.16158,22.17065],[99.15727,22.16897],[99.15936,22.16467],[99.15597,22.16291],[99.16906,22.15035],[99.18178,22.14661],[99.18093,22.14506],[99.18943,22.14174],[99.19362,22.13757],[99.19983,22.13485],[99.20398,22.13022],[99.21366,22.1305],[99.2161,22.1246],[99.26126,22.10957],[99.27183,22.10014],[99.27601,22.10176],[99.27951,22.1091],[99.29132,22.11234],[99.29434,22.11297],[99.30354,22.10216],[99.31714,22.10279],[99.3269,22.0942],[99.33047,22.09897],[99.3385,22.09611],[99.34173,22.10024],[99.35808,22.09388],[99.36438,22.1062],[99.37578,22.10536],[99.39074,22.09954],[99.40543,22.0998],[99.40935,22.09898],[99.41336,22.10335],[99.41463,22.10898],[99.42643,22.11017],[99.43093,22.10506],[99.4342,22.10409],[99.43611,22.1114],[99.44094,22.11424],[99.44645,22.1128],[99.45813,22.12257],[99.46535,22.13001],[99.47393,22.1368],[99.48517,22.13536],[99.48324,22.12987],[99.48639,22.12745],[99.49517,22.12655],[99.49579,22.1207],[99.50848,22.10969],[99.52597,22.09805],[99.53316,22.1074],[99.54568,22.1108],[99.55332,22.10932],[99.56164,22.11739],[99.56884,22.10601],[99.57794,22.10223],[99.58386,22.10766],[99.59163,22.11005],[99.59322,22.11499],[99.60145,22.11189],[99.60506,22.10617],[99.60935,22.10364],[99.61175,22.09666],[99.62411,22.097],[99.62789,22.10257],[99.64213,22.10536],[99.65157,22.10497],[99.64985,22.10067],[99.65208,22.09216],[99.66212,22.09045],[99.66954,22.07782],[99.67497,22.07501],[99.68283,22.07551],[99.68677,22.07862],[99.69663,22.07127],[99.69401,22.06378],[99.69472,22.05856],[99.68789,22.04698],[99.71127,22.0405],[99.7178,22.04393],[99.72176,22.04979],[99.72069,22.0573],[99.71893,22.06035],[99.72269,22.06665],[99.7285,22.06914],[99.73466,22.06907],[99.74049,22.07445],[99.7573,22.07315],[99.7791,22.05656],[99.80914,22.05397],[99.81347,22.04975],[99.8233,22.04806],[99.83746,22.03707],[99.83308,22.02988],[99.85155,22.02681],[99.86659,22.0282],[99.86756,22.03627],[99.878,22.03903],[99.87807,22.04169],[99.86849,22.04747],[99.86234,22.05898],[99.87625,22.07039],[99.89109,22.07037],[99.90525,22.06972],[99.90851,22.06172],[99.91735,22.05836],[99.92745,22.05975],[99.93962,22.06241],[99.94252,22.05934],[99.94088,22.05717],[99.96237,22.0529],[99.96934,22.05872],[99.97317,22.05781],[99.96908,22.0475],[99.96222,22.04361],[99.95949,22.03972],[99.96049,22.03019],[99.96423,22.01812],[99.97056,22.01351],[99.97758,22.00191],[99.98613,21.99779],[99.99973,21.97495],[99.98998,21.96008],[99.98823,21.95254],[99.98236,21.93863],[99.98003,21.935],[99.98251,21.92308],[99.97443,21.91453],[99.96032,21.90954],[99.96235,21.89464],[99.96473,21.88528],[99.9582,21.874],[99.94577,21.86682],[99.94537,21.84848],[99.94702,21.84512],[99.94403,21.82404],[99.94927,21.80901],[99.95795,21.79972],[99.96062,21.79027],[99.96195,21.77662],[99.97016,21.76552],[99.97145,21.75416],[99.97687,21.74662],[99.97484,21.74298],[99.98104,21.73144],[99.98414,21.71706],[99.98981,21.7121],[99.99136,21.70587],[100.01684,21.69456],[100.02615,21.69752],[100.0339,21.69485],[100.03581,21.68885],[100.03291,21.6886],[100.03124,21.6798],[100.03453,21.67523],[100.04262,21.67642],[100.04581,21.66935],[100.05037,21.66675],[100.04944,21.67372],[100.05653,21.68359],[100.06328,21.68574],[100.07209,21.69299],[100.08542,21.69454],[100.09531,21.7063],[100.09972,21.70594],[100.10219,21.70106],[100.1103,21.69926],[100.11085,21.70384],[100.12053,21.70631],[100.12332,21.70163],[100.13054,21.70185],[100.14145,21.68994],[100.16128,21.67548],[100.17485,21.65613],[100.1744,21.65183],[100.17189,21.64882],[100.16114,21.65091],[100.15314,21.64981],[100.14517,21.63902],[100.1396,21.63684],[100.13441,21.62714],[100.13403,21.61807],[100.12915,21.61319],[100.12221,21.61086],[100.1175,21.60501],[100.10867,21.60172],[100.10722,21.59416],[100.10787,21.58527],[100.1178,21.57859],[100.1238,21.56632],[100.11881,21.54829],[100.12251,21.54105],[100.12505,21.532],[100.12072,21.52487],[100.12797,21.50805],[100.1479,21.50053],[100.16783,21.48661],[100.17283,21.49107],[100.1792,21.51788],[100.19129,21.51695],[100.20475,21.51282],[100.21587,21.49114],[100.22576,21.4874],[100.23001,21.48186],[100.23008,21.47398],[100.23358,21.46993],[100.25034,21.46715],[100.25525,21.47171],[100.26285,21.47016],[100.27045,21.47309],[100.28302,21.48605],[100.29688,21.47914],[100.3047,21.49024],[100.31552,21.49263],[100.33356,21.51642],[100.35022,21.53126],[100.37203,21.52965],[100.37572,21.53172],[100.38478,21.52605],[100.39109,21.52421],[100.40913,21.53442],[100.43197,21.5408],[100.44146,21.5226],[100.44106,21.51766],[100.44336,21.51722],[100.44566,21.51359],[100.45689,21.51251],[100.46319,21.49824],[100.45962,21.49339],[100.45879,21.48855],[100.4662,21.48243],[100.46648,21.47904],[100.4697,21.47608],[100.47029,21.47204],[100.47607,21.46906],[100.47656,21.46341],[100.47979,21.45777],[100.48912,21.45825],[100.49214,21.46221],[100.50271,21.46361],[100.51362,21.47044],[100.52179,21.47152],[100.53838,21.47056],[100.55429,21.45428],[100.56224,21.45731],[100.57205,21.45052],[100.58687,21.45314],[100.5955,21.46343],[100.61031,21.46476],[100.62356,21.47502],[100.63888,21.48222],[100.64666,21.48366],[100.65992,21.48287],[100.66907,21.47952],[100.67991,21.48614],[100.68533,21.50478],[100.68943,21.50417],[100.69285,21.50995],[100.70313,21.51541],[100.71376,21.51111],[100.72286,21.51152],[100.7332,21.52472],[100.74354,21.536],[100.74667,21.546],[100.75579,21.55611],[100.76653,21.56181],[100.77109,21.57133],[100.78166,21.57018],[100.7936,21.57094],[100.79285,21.58384],[100.80071,21.59156],[100.80017,21.60309],[100.81257,21.61905],[100.83458,21.63758],[100.84633,21.63759],[100.85441,21.65233],[100.86799,21.67089],[100.88534,21.6869],[100.89058,21.68438],[100.90453,21.68758],[100.90956,21.68376],[100.9138,21.68248],[100.91185,21.69014],[100.91757,21.69047],[100.92329,21.68879],[100.93382,21.6935],[100.93988,21.69852],[100.94449,21.7001],[100.95047,21.69976],[100.97327,21.69942],[100.98165,21.70355],[100.99832,21.70696],[101.01223,21.70974],[101.01585,21.7173],[101.03719,21.73322],[101.05714,21.75169],[101.08103,21.76651],[101.08706,21.77495],[101.10339,21.77478],[101.12178,21.77652],[101.11125,21.76246],[101.10999,21.74905],[101.11972,21.71396],[101.11583,21.69163],[101.12418,21.69001],[101.12561,21.68473],[101.13662,21.67284],[101.15176,21.67116],[101.15105,21.66098],[101.15173,21.65143],[101.15619,21.6508],[101.15928,21.6457],[101.16268,21.63812],[101.15853,21.63309],[101.16195,21.61749],[101.1688,21.60508],[101.16909,21.59246],[101.15275,21.59191],[101.14729,21.58889],[101.14183,21.58141],[101.13842,21.5724],[101.14289,21.56407],[101.14736,21.56212],[101.1496,21.56408],[101.15631,21.56492],[101.17485,21.56185],[101.18825,21.55751],[101.19828,21.56183],[101.20432,21.56176],[101.21037,21.56424],[101.21401,21.56209],[101.21696,21.55675],[101.21655,21.5461],[101.21889,21.538],[101.21645,21.53044],[101.20886,21.52543],[101.21082,21.51558],[101.20905,21.51289],[101.21072,21.50573],[101.22218,21.50008],[101.21453,21.49068],[101.20246,21.4831],[101.19108,21.47553],[101.19361,21.46188],[101.19338,21.45207],[101.19722,21.447],[101.20017,21.43936],[101.19145,21.42212],[101.18058,21.41838],[101.1883,21.41556],[101.19078,21.40712],[101.19786,21.40769],[101.20243,21.40319],[101.21364,21.40157],[101.21822,21.39821],[101.22348,21.39804],[101.23017,21.39298],[101.24098,21.38665],[101.2365,21.38325],[101.23872,21.37867],[101.24155,21.37958],[101.24125,21.37492],[101.25388,21.37024],[101.25635,21.37195],[101.26362,21.37174],[101.26472,21.36833],[101.27131,21.36556],[101.25926,21.35618],[101.25985,21.3492],[101.25563,21.33966],[101.2473,21.33908],[101.24034,21.33849],[101.2387,21.33319],[101.23843,21.32725],[101.22553,21.33008],[101.22555,21.32799],[101.22969,21.32655],[101.22698,21.31982],[101.21882,21.31915],[101.21924,21.31241],[101.21348,21.31015],[101.21682,21.30746],[101.23596,21.3067],[101.24313,21.30023],[101.24389,21.29718],[101.2474,21.29284],[101.2496,21.29569],[101.25182,21.292],[101.24649,21.28894],[101.24459,21.27757],[101.23857,21.27579],[101.23891,21.2681],[101.22825,21.26361],[101.22961,21.25783],[101.22205,21.25398],[101.22702,21.24797],[101.21551,21.23108],[101.21722,21.22796],[101.2246,21.23407],[101.22627,21.23288],[101.22588,21.22785],[101.23271,21.22282],[101.24195,21.22511],[101.24932,21.21953],[101.24855,21.2113],[101.24365,21.20499],[101.24899,21.20498],[101.25433,21.19985],[101.26639,21.19663],[101.27403,21.18954],[101.28037,21.17794],[101.29042,21.17405],[101.29922,21.1769],[101.31358,21.18889],[101.32519,21.1868],[101.33645,21.19735],[101.34429,21.20022],[101.35164,21.20581],[101.35899,21.2082],[101.36737,21.21892],[101.37575,21.22067],[101.3841,21.22674],[101.39926,21.22722],[101.40686,21.22577],[101.42683,21.23168],[101.44817,21.22672],[101.45835,21.22991],[101.4597,21.23375],[101.48164,21.24527],[101.50084,21.24943],[101.50836,21.24655],[101.53069,21.24988],[101.54752,21.25705],[101.55955,21.24736],[101.57448,21.24315],[101.5853,21.24023],[101.58875,21.23428],[101.59943,21.24313],[101.60944,21.23663],[101.61498,21.2282],[101.60352,21.22281],[101.60066,21.21874],[101.60369,21.21223],[101.59182,21.19905],[101.58543,21.19035],[101.59768,21.17764],[101.6038,21.18121],[101.60961,21.17563],[101.61325,21.17989],[101.62022,21.18459],[101.6217,21.188],[101.63036,21.19845],[101.65001,21.19962],[101.67309,21.20398],[101.67801,21.19769],[101.676,21.19198],[101.67949,21.18115],[101.68715,21.18062],[101.69147,21.17536],[101.69922,21.17395],[101.70388,21.16325],[101.69509,21.15609],[101.69797,21.14894],[101.70711,21.14947],[101.71487,21.1468],[101.71665,21.14338],[101.73255,21.14724],[101.73745,21.14407],[101.74545,21.14794],[101.75666,21.14475],[101.76513,21.14476],[101.7642,21.15391],[101.77082,21.15602],[101.77465,21.16139],[101.7826,21.16613],[101.79123,21.18687],[101.78636,21.1919],[101.78972,21.20205],[101.77625,21.20291],[101.77203,21.20505],[101.76781,21.21551],[101.7804,21.21988],[101.79918,21.20634],[101.81573,21.21333],[101.82606,21.21139],[101.82848,21.20497],[101.84102,21.20721],[101.83969,21.21209],[101.8418,21.21696],[101.83738,21.2196],[101.8361,21.22938],[101.84512,21.25325],[101.83423,21.25823],[101.8298,21.25755],[101.82124,21.26072],[101.80993,21.25588],[101.81236,21.26129],[101.80247,21.27436],[101.80082,21.29192],[101.79011,21.28733],[101.78283,21.29489],[101.76759,21.2889],[101.75551,21.29582],[101.7393,21.31042],[101.74027,21.31415],[101.73505,21.32235],[101.72696,21.3547],[101.73673,21.36434],[101.74168,21.36439],[101.73656,21.37191],[101.74381,21.37878],[101.73731,21.39845],[101.74025,21.40988],[101.74455,21.41108],[101.75045,21.40629],[101.75361,21.40917],[101.75523,21.41688],[101.7468,21.42972],[101.75604,21.43752],[101.75529,21.4544],[101.74967,21.45876],[101.75079,21.46685],[101.74617,21.46512],[101.73761,21.48468],[101.74413,21.48982],[101.7486,21.49112],[101.7534,21.49883],[101.76027,21.50212],[101.76783,21.51252],[101.77952,21.51608],[101.76999,21.52871],[101.7584,21.53047],[101.75446,21.54677],[101.76236,21.56276],[101.75653,21.56247],[101.75215,21.56575],[101.74778,21.57286],[101.74992,21.58253],[101.74932,21.58773],[101.75533,21.58614],[101.76203,21.58265],[101.76632,21.5849],[101.78113,21.57812],[101.80418,21.57581],[101.81072,21.58423],[101.80903,21.58946],[101.82243,21.59989],[101.83445,21.61416],[101.82588,21.62385],[101.81867,21.62396],[101.81147,21.62917],[101.8107,21.63718],[101.80585,21.63991],[101.80168,21.63498],[101.79817,21.63532],[101.7916,21.63773],[101.78504,21.63631],[101.78572,21.64207],[101.78229,21.64783],[101.78435,21.65744],[101.78058,21.65588],[101.77681,21.65943],[101.76995,21.65759],[101.77272,21.66446],[101.77136,21.67324],[101.77585,21.67788],[101.7769,21.6889],[101.7715,21.6934],[101.76412,21.69476],[101.77326,21.70147],[101.76799,21.7184],[101.75881,21.7261],[101.751,21.72614],[101.74594,21.72809],[101.7474,21.73731],[101.742,21.75034],[101.75136,21.75222],[101.75866,21.75793],[101.7609,21.78082],[101.77027,21.80437],[101.77237,21.81934],[101.78287,21.82045],[101.78443,21.82411],[101.77601,21.82909],[101.7772,21.83216],[101.77801,21.83556],[101.77195,21.83768],[101.76809,21.83682],[101.76514,21.83486],[101.75259,21.83863],[101.73847,21.84808],[101.73602,21.85976],[101.73769,21.86443],[101.73869,21.87153],[101.73557,21.87799],[101.72517,21.88408],[101.71408,21.88189],[101.70598,21.89345],[101.69445,21.90278],[101.6995,21.90999],[101.7073,21.92039],[101.70571,21.92646],[101.70274,21.92872],[101.69852,21.94596],[101.6897,21.94649],[101.67984,21.94129],[101.67799,21.93598],[101.66809,21.93173],[101.66322,21.93959],[101.65766,21.94298],[101.65477,21.95296],[101.63163,21.95562],[101.61662,21.977],[101.61802,21.99126],[101.62011,22.00234],[101.63389,22.01049],[101.6177,22.02401],[101.61113,22.03816],[101.61445,22.0512],[101.60771,22.05581],[101.60439,22.06297],[101.59364,22.06336],[101.59661,22.08349],[101.58817,22.08947],[101.58935,22.09355],[101.5862,22.10234],[101.57948,22.1018],[101.57612,22.11489],[101.57344,22.12798],[101.58903,22.13158],[101.59477,22.12702],[101.59936,22.13142],[101.606,22.13009],[101.59983,22.13556],[101.59366,22.14675],[101.60397,22.15578],[101.60057,22.16047],[101.59784,22.15805],[101.59649,22.16263],[101.59237,22.16316],[101.58689,22.16688],[101.59136,22.17632],[101.58897,22.18258],[101.57752,22.1866],[101.56745,22.20015],[101.57135,22.20819],[101.56523,22.21602],[101.54263,22.2283],[101.54475,22.23646],[101.53894,22.24244],[101.538,22.2487],[101.53913,22.25496],[101.55536,22.26949],[101.56129,22.28083],[101.58755,22.28108],[101.59927,22.27272],[101.60824,22.26944],[101.61606,22.27434],[101.62684,22.28028],[101.62982,22.28707],[101.62732,22.2983],[101.63266,22.31445],[101.63938,22.31567],[101.64789,22.32486],[101.65227,22.33468],[101.65103,22.34007],[101.64704,22.34608],[101.65695,22.36687],[101.67633,22.37313],[101.67957,22.38162],[101.6712,22.40097],[101.66078,22.41969],[101.66923,22.42699],[101.67157,22.4311],[101.66636,22.43838],[101.66321,22.44186],[101.66555,22.44851],[101.67286,22.45035],[101.68611,22.45721],[101.69062,22.46459],[101.68313,22.47165],[101.684,22.47452],[101.68693,22.47803],[101.6956,22.47535],[101.71115,22.47583],[101.72026,22.473],[101.72583,22.47531],[101.73414,22.49728],[101.74259,22.49701],[101.75173,22.49356],[101.75389,22.49517],[101.75193,22.49868],[101.75489,22.50062],[101.77221,22.50333],[101.78334,22.4997],[101.79974,22.48009],[101.81055,22.48337],[101.81416,22.47998],[101.80807,22.47544],[101.81292,22.46365],[101.8212,22.46391],[101.82669,22.45144],[101.82429,22.43917],[101.83279,22.42039],[101.85558,22.40243],[101.866,22.38765],[101.88193,22.38651],[101.8892,22.38784],[101.89284,22.38312],[101.89912,22.38139],[101.90265,22.38347],[101.9044,22.38905],[101.91096,22.39718],[101.9148,22.40455],[101.91212,22.41255],[101.9161,22.4248],[101.90985,22.43125],[101.90741,22.43637],[101.91573,22.43956],[101.92748,22.44084],[101.92755,22.43704],[101.9403,22.43705],[101.94495,22.43959],[101.95071,22.44086],[101.95304,22.44213],[101.9569,22.43685],[101.96673,22.42817],[101.97585,22.43082],[101.98498,22.42902],[101.99911,22.4324],[102.00088,22.43579],[101.99853,22.44044],[102.00145,22.44383],[102.01158,22.44087],[102.01497,22.44727],[102.0211,22.45049],[102.02239,22.45568],[102.04059,22.45505],[102.04643,22.45822],[102.0581,22.44966],[102.07595,22.44506],[102.08728,22.44117],[102.09466,22.44367],[102.10205,22.443],[102.11166,22.43633],[102.12265,22.43602],[102.12574,22.43284],[102.12728,22.42015],[102.1332,22.40714],[102.14462,22.39857],[102.14751,22.40555],[102.15411,22.41285],[102.15534,22.42412],[102.15802,22.42372],[102.16001,22.42904],[102.16918,22.42793],[102.17698,22.43253],[102.18157,22.4315],[102.18821,22.43364],[102.20893,22.42626],[102.21291,22.43061],[102.22444,22.4248],[102.22987,22.42681],[102.2401,22.42565],[102.24899,22.41825],[102.26337,22.41211],[102.26661,22.4192],[102.26986,22.42248],[102.2644,22.43655],[102.25893,22.44231],[102.25689,22.44935],[102.24941,22.45591],[102.25025,22.46078],[102.26359,22.4646],[102.26614,22.47539],[102.2729,22.47952],[102.27168,22.4842],[102.28144,22.50094],[102.28845,22.50372],[102.29402,22.51208],[102.30298,22.53165],[102.32293,22.54773],[102.32256,22.55456],[102.33946,22.55881],[102.35499,22.56495],[102.35554,22.56993],[102.35136,22.57495],[102.34649,22.58188],[102.34828,22.5893],[102.35317,22.58863],[102.35805,22.59177],[102.36328,22.58952],[102.37263,22.5917],[102.38713,22.6072],[102.39196,22.61852],[102.39918,22.6245],[102.40365,22.63111],[102.41087,22.63344],[102.42083,22.63514],[102.41878,22.64096],[102.41124,22.6426],[102.40506,22.63981],[102.4007,22.64756],[102.39909,22.65595],[102.389,22.66513],[102.38393,22.68158],[102.39438,22.69049],[102.4099,22.68434],[102.42075,22.69092],[102.42569,22.6913],[102.43682,22.70182],[102.44588,22.72532],[102.45769,22.73171],[102.45218,22.74221],[102.45388,22.74714],[102.45215,22.75207],[102.46927,22.77116],[102.47878,22.77008],[102.48211,22.77343],[102.4827,22.77995],[102.51078,22.77806],[102.5269,22.76414],[102.53565,22.76002],[102.54371,22.74831],[102.55124,22.74483],[102.54918,22.74024],[102.55569,22.7294],[102.56071,22.72875],[102.56574,22.72304],[102.5696,22.70339],[102.58582,22.70559],[102.58878,22.72189],[102.60056,22.7313],[102.60753,22.73185],[102.62586,22.71492],[102.64464,22.70012],[102.65163,22.69715],[102.65656,22.68912],[102.67156,22.69712],[102.68318,22.69827],[102.69,22.70259],[102.70843,22.69286],[102.71113,22.67975],[102.72449,22.67764],[102.7274,22.6731],[102.73675,22.66512],[102.7452,22.6662],[102.74884,22.67045],[102.7542,22.66646],[102.76505,22.6479],[102.77385,22.64835],[102.7779,22.64509],[102.78813,22.64373],[102.78718,22.63797],[102.78396,22.63667],[102.78853,22.62525],[102.79476,22.62581],[102.80237,22.62256],[102.80929,22.62501],[102.81828,22.62303],[102.82216,22.62604],[102.82605,22.62714],[102.8317,22.62355],[102.84559,22.61995],[102.84796,22.61213],[102.86474,22.61128],[102.86636,22.6023],[102.87025,22.59876],[102.87484,22.59839],[102.884,22.58845],[102.88204,22.57927],[102.87459,22.57516],[102.88509,22.56758],[102.88451,22.563],[102.8798,22.56032],[102.88883,22.55288],[102.89305,22.55242],[102.89895,22.54328],[102.89262,22.54303],[102.89316,22.53643],[102.89767,22.53085],[102.90876,22.52476],[102.91259,22.51775],[102.9123,22.51011],[102.92407,22.50782],[102.9235,22.49493],[102.92594,22.48655],[102.93196,22.48204],[102.93913,22.48456],[102.95248,22.48137],[102.95484,22.4839],[102.95789,22.48388],[102.96513,22.4774],[102.9794,22.47861],[102.98817,22.47791],[102.98857,22.47305],[102.99309,22.47199],[102.99321,22.46417],[103.00959,22.45583],[103.03146,22.44177],[103.03616,22.44586],[103.05328,22.44504],[103.05666,22.45057],[103.06965,22.44643],[103.08059,22.45053],[103.08211,22.45988],[103.08046,22.46361],[103.07951,22.46923],[103.07087,22.47588],[103.07204,22.49039],[103.08057,22.50053],[103.08841,22.51066],[103.10107,22.51603],[103.12079,22.5173],[103.12507,22.52586],[103.13064,22.52871],[103.14102,22.54044],[103.14866,22.54456],[103.15801,22.54107],[103.17064,22.55044],[103.1843,22.56045],[103.17523,22.56696],[103.17028,22.57663],[103.16292,22.58314],[103.15762,22.59472],[103.16248,22.59791],[103.16576,22.61154],[103.17719,22.62978],[103.18531,22.63097],[103.18353,22.64012],[103.18642,22.64438],[103.19679,22.65063],[103.20747,22.64552],[103.2286,22.64867],[103.23196,22.65753],[103.25355,22.67273],[103.26194,22.6713],[103.26545,22.67407],[103.26896,22.67304],[103.28378,22.68313],[103.28276,22.68906],[103.2838,22.70323],[103.28829,22.70653],[103.28832,22.71601],[103.2904,22.71916],[103.28596,22.72928],[103.28752,22.73782],[103.29632,22.74676],[103.30375,22.75824],[103.30901,22.76279],[103.31358,22.77684],[103.32135,22.78151],[103.31734,22.78648],[103.31959,22.79009],[103.31798,22.8014],[103.31911,22.807],[103.32136,22.81189],[103.3273,22.81338],[103.33027,22.81159],[103.33004,22.8088],[103.33461,22.80664],[103.35394,22.80275],[103.3719,22.79886],[103.38482,22.78696],[103.39086,22.78266],[103.40888,22.7778],[103.41316,22.77483],[103.41745,22.76902],[103.41571,22.76468],[103.42163,22.76043],[103.42892,22.76061],[103.4369,22.75478],[103.44007,22.75338],[103.44312,22.74184],[103.44549,22.73854],[103.43964,22.738],[103.42829,22.73366],[103.42966,22.71898],[103.4269,22.7138],[103.4311,22.71029],[103.43256,22.70234],[103.43436,22.70358],[103.44578,22.69405],[103.44629,22.68988],[103.45512,22.68431],[103.46122,22.67747],[103.45708,22.66015],[103.46497,22.65243],[103.46312,22.64909],[103.46735,22.64331],[103.47432,22.64322],[103.47797,22.63734],[103.48299,22.63464],[103.4817,22.62986],[103.48964,22.61923],[103.50047,22.6136],[103.50856,22.61304],[103.50786,22.60411],[103.52295,22.59585],[103.5305,22.59328],[103.54828,22.61313],[103.54672,22.61794],[103.55177,22.62573],[103.55339,22.63542],[103.57087,22.64059],[103.58007,22.66298],[103.57667,22.67125],[103.56846,22.67888],[103.56441,22.69921],[103.58058,22.72046],[103.6098,22.75754],[103.61015,22.76555],[103.62012,22.77418],[103.61789,22.78314],[103.62048,22.78576],[103.63165,22.78974],[103.6369,22.78888],[103.63986,22.79636],[103.64392,22.79472],[103.65072,22.79309],[103.6624,22.78818],[103.66721,22.76864],[103.6806,22.76429],[103.68369,22.75456],[103.69399,22.74546],[103.7036,22.74246],[103.73828,22.71082],[103.73996,22.70821],[103.73751,22.70053],[103.74743,22.69634],[103.75082,22.68803],[103.76678,22.69058],[103.77288,22.6818],[103.77829,22.6781],[103.78155,22.66942],[103.79409,22.662],[103.80598,22.64605],[103.81306,22.64087],[103.82379,22.61784],[103.83984,22.60681],[103.84628,22.59514],[103.86027,22.58791],[103.87688,22.56559],[103.88313,22.56394],[103.88591,22.57072],[103.89143,22.56863],[103.91582,22.54415],[103.9138,22.53418],[103.91932,22.53396],[103.92655,22.54039],[103.93277,22.5263],[103.94518,22.52648],[103.95145,22.51384],[103.96355,22.50438],[103.96568,22.51045],[103.97087,22.51126],[103.97277,22.50596],[103.97922,22.50712],[103.98313,22.51245],[103.98817,22.5148],[103.99116,22.51906],[104.00269,22.5175],[104.01217,22.52101],[104.00963,22.53277],[104.0063,22.53896],[104.00978,22.54301],[104.0153,22.54282],[104.01222,22.54685],[104.01515,22.54981],[104.01146,22.55922],[104.01683,22.56297],[104.01573,22.56865],[104.00729,22.57086],[104.00587,22.57648],[104.00994,22.5783],[104.01366,22.57791],[104.01552,22.59324],[104.01876,22.59399],[104.02587,22.61355],[104.02387,22.62461],[104.03148,22.64012],[104.03051,22.65087],[104.0316,22.65338],[104.02648,22.65713],[104.02136,22.66532],[104.03103,22.6836],[104.02978,22.68847],[104.03465,22.70436],[104.03951,22.72216],[104.04813,22.73399],[104.06102,22.74972],[104.06635,22.74962],[104.07325,22.75511],[104.0822,22.75807],[104.0812,22.76156],[104.0905,22.76695],[104.09739,22.78531],[104.10907,22.79798],[104.12144,22.80748],[104.13002,22.80969],[104.13947,22.80131],[104.1441,22.80178],[104.15569,22.80756],[104.16733,22.81614],[104.17758,22.81777],[104.18841,22.82236],[104.19391,22.81888],[104.22002,22.82711],[104.22587,22.82522],[104.24889,22.83915],[104.258,22.84074],[104.26599,22.84407],[104.27639,22.83822],[104.26682,22.81911],[104.26824,22.81393],[104.25528,22.77762],[104.2588,22.77075],[104.2582,22.76641],[104.26989,22.75443],[104.26879,22.74155],[104.27452,22.74008],[104.27956,22.74177],[104.30143,22.72921],[104.30878,22.72876],[104.31452,22.7317],[104.32026,22.73085],[104.33826,22.72217],[104.3407,22.71825],[104.34176,22.71117],[104.34867,22.70726],[104.35351,22.69322],[104.36523,22.6924],[104.3742,22.68969],[104.3897,22.69838],[104.3997,22.70137],[104.40938,22.72579],[104.4156,22.72882],[104.42214,22.7373],[104.45974,22.75262],[104.46507,22.75148],[104.47715,22.75786],[104.49408,22.77275],[104.49574,22.77584],[104.50083,22.77576],[104.50723,22.78448],[104.51712,22.78765],[104.52652,22.80285],[104.52967,22.81282],[104.53777,22.81781],[104.54312,22.82532],[104.5659,22.83324],[104.57014,22.84779],[104.57879,22.85444],[104.57803,22.85895],[104.58688,22.85966],[104.58771,22.85416],[104.59952,22.84487],[104.59907,22.83927],[104.60343,22.83241],[104.60401,22.82776],[104.59847,22.82417],[104.59842,22.81615],[104.6071,22.81969],[104.61442,22.81626],[104.61807,22.82523],[104.62124,22.82229],[104.62484,22.83222],[104.65744,22.83626],[104.66395,22.82733],[104.6684,22.826],[104.67659,22.81685],[104.69027,22.82796],[104.72183,22.82244],[104.73485,22.81818],[104.73397,22.83171],[104.73857,22.84018],[104.73563,22.84959],[104.73817,22.85395],[104.75729,22.8606],[104.76542,22.87391],[104.76605,22.88531],[104.77014,22.88879],[104.77184,22.89591],[104.77613,22.90042],[104.78178,22.9005],[104.78306,22.90418],[104.79051,22.90564],[104.79441,22.90645],[104.79693,22.91169],[104.80118,22.91124],[104.80576,22.91553],[104.8102,22.91894],[104.81875,22.9236],[104.8358,22.92521],[104.85114,22.9363],[104.86305,22.94992],[104.85952,22.96205],[104.85384,22.96572],[104.84746,22.96559],[104.84295,22.97039],[104.84689,22.97948],[104.8431,22.99513],[104.83757,22.99483],[104.8375,22.99928],[104.82705,23.01198],[104.83096,23.02416],[104.82801,23.03634],[104.83034,23.04806],[104.82401,23.07024],[104.81262,23.08287],[104.8129,23.11886],[104.82008,23.12139],[104.83191,23.11823],[104.85061,23.11633],[104.85504,23.11791],[104.85879,23.12643],[104.86294,23.12632],[104.86228,23.12279],[104.87259,23.12115],[104.87816,23.14366],[104.87625,23.15078],[104.87791,23.16502],[104.8964,23.18021],[104.90803,23.18719],[104.91881,23.18609],[104.94725,23.17062],[104.95097,23.1722],[104.95901,23.18814],[104.95514,23.19958],[104.95623,23.20528],[104.95869,23.20782],[104.96699,23.20406],[104.97666,23.19398],[104.99612,23.19999],[105.00173,23.2153],[105.00483,23.21879],[105.01755,23.21912],[105.02925,23.22295],[105.03484,23.23235],[105.04386,23.2367],[105.05022,23.24476],[105.05934,23.24936],[105.06183,23.25544],[105.06692,23.25681],[105.07201,23.26195],[105.0819,23.25953],[105.08204,23.25548],[105.09413,23.26008],[105.10278,23.26216],[105.10996,23.24907],[105.11931,23.24975],[105.12523,23.2561],[105.13677,23.25864],[105.14425,23.26212],[105.15312,23.26497],[105.16246,23.27384],[105.16653,23.2849],[105.17337,23.28459],[105.1802,23.28176],[105.18361,23.27704],[105.19355,23.27846],[105.19784,23.27633],[105.19757,23.26707],[105.19802,23.26444],[105.20328,23.26559],[105.20648,23.27084],[105.21254,23.27473],[105.21385,23.26658],[105.22045,23.26825],[105.22395,23.27213],[105.23123,23.27159],[105.23315,23.27637],[105.22794,23.28317],[105.22955,23.2855],[105.23391,23.28594],[105.23764,23.28837],[105.24411,23.2889],[105.25264,23.3112],[105.25705,23.31205],[105.25888,23.31964],[105.2487,23.32878],[105.25528,23.34187],[105.26338,23.34305],[105.27353,23.33982],[105.28406,23.34299],[105.28418,23.34835],[105.28772,23.35056],[105.28795,23.35877],[105.29528,23.36161],[105.30054,23.37454],[105.32274,23.39347],[105.33332,23.38068],[105.34732,23.37042],[105.35072,23.36576],[105.35137,23.34345],[105.36885,23.32366],[105.37106,23.3185],[105.38384,23.30993],[105.38955,23.30186],[105.39411,23.29309],[105.40658,23.28307],[105.40989,23.28279],[105.41869,23.29955],[105.42531,23.30215],[105.43291,23.29919],[105.44669,23.27983],[105.45188,23.27846],[105.47069,23.25588],[105.47851,23.25096],[105.48483,23.23904],[105.48634,23.23406],[105.49035,23.23062],[105.49093,23.22277],[105.49529,23.21586],[105.49507,23.20736],[105.49896,23.20453],[105.5267,23.19374],[105.54365,23.1814],[105.55855,23.16906],[105.56227,23.15963],[105.56207,23.14986],[105.56736,23.14073],[105.55764,23.13228],[105.56496,23.12645],[105.5652,23.12046],[105.57162,23.10942],[105.57323,23.1028],[105.56731,23.09275],[105.5671,23.0878],[105.57032,23.07749],[105.5747,23.07328],[105.58467,23.07098],[105.5902,23.07521],[105.59264,23.07977],[105.5985,23.08053],[105.60715,23.07922],[105.61237,23.07537],[105.61607,23.06885],[105.62621,23.07316],[105.63011,23.07961],[105.64501,23.08416],[105.6496,23.07987],[105.65213,23.07557],[105.66399,23.07388],[105.67721,23.06271],[105.70847,23.06374],[105.72616,23.06521],[105.73157,23.05773],[105.72983,23.05396],[105.72878,23.04388],[105.73426,23.0379],[105.73698,23.03508],[105.7472,23.03993],[105.75505,23.03793],[105.75726,23.03504],[105.76428,23.03341],[105.77373,23.02352],[105.78163,23.02017],[105.78747,23.00544],[105.80362,22.99261],[105.81496,22.99318],[105.833,22.97924],[105.83201,22.97086],[105.83515,22.96374],[105.84221,22.96065],[105.85476,22.94998],[105.85289,22.94626],[105.85809,22.94027],[105.85986,22.93555],[105.86609,22.93778],[105.87263,22.93131],[105.87135,22.92795],[105.87002,22.92406],[105.87588,22.91927],[105.88174,22.91891],[105.88914,22.93559],[105.92336,22.94945],[105.92486,22.94233],[105.93453,22.93687],[105.94658,22.93731],[105.95519,22.939],[105.9575,22.95006],[105.98177,22.945],[105.98945,22.93899],[105.99497,22.94238],[105.99775,22.94009],[105.99982,22.95001],[106.00327,22.95803],[106.00791,22.96599],[106.00509,22.97219],[106.00157,22.97332],[105.99729,22.97149],[105.99583,22.97531],[106.00163,22.98007],[106.00262,22.99051],[106.02329,22.99067],[106.03709,22.99271],[106.04163,22.98908],[106.05008,22.99263],[106.06185,22.98998],[106.07844,22.99808],[106.08733,22.99581],[106.09486,22.98931],[106.10876,22.98969],[106.1224,22.97992],[106.12545,22.98358],[106.12209,22.98623],[106.12285,22.99014],[106.12773,22.99279],[106.13055,22.99924],[106.13979,22.99381],[106.14509,22.99458],[106.16199,22.98785],[106.16516,22.98365],[106.18375,22.98462],[106.20371,22.98244],[106.21128,22.97059],[106.21575,22.97099],[106.21832,22.9636],[106.22408,22.96528],[106.22365,22.95748],[106.23293,22.95511],[106.23586,22.95773],[106.23629,22.94797],[106.24131,22.94182],[106.24382,22.94634],[106.24908,22.92493],[106.25769,22.91989],[106.26276,22.91421],[106.2644,22.90726],[106.26161,22.90489],[106.26088,22.89619],[106.25157,22.89446],[106.26408,22.88125],[106.25592,22.8794],[106.28617,22.86708],[106.29031,22.86946],[106.28998,22.87382],[106.29908,22.87378],[106.30809,22.86396],[106.31093,22.86362],[106.32026,22.87069],[106.32346,22.87309],[106.32802,22.87296],[106.3358,22.86498],[106.34563,22.85701],[106.36234,22.86359],[106.36342,22.86697],[106.36176,22.87035],[106.36491,22.87374],[106.36325,22.87902],[106.37574,22.88366],[106.38239,22.87977],[106.39127,22.88385],[106.39533,22.88035],[106.40278,22.88093],[106.40605,22.87357],[106.41535,22.87466],[106.41608,22.87937],[106.40863,22.88499],[106.42325,22.89624],[106.42913,22.88584],[106.43397,22.88839],[106.44292,22.89094],[106.44671,22.90202],[106.45478,22.90281],[106.46156,22.89499],[106.46496,22.90025],[106.47215,22.90035],[106.4712,22.9048],[106.47518,22.90766],[106.47917,22.90735],[106.48234,22.90264],[106.4965,22.90424],[106.50132,22.90836],[106.49824,22.91865],[106.50197,22.92215],[106.50021,22.92881],[106.50397,22.92913],[106.50292,22.93578],[106.51045,22.93959],[106.51111,22.94845],[106.52755,22.94484],[106.53781,22.94438],[106.54086,22.94203],[106.54204,22.93263],[106.54606,22.92667],[106.56588,22.91755],[106.57332,22.92375],[106.58076,22.92426],[106.58603,22.93004],[106.59129,22.93267],[106.59621,22.9277],[106.60211,22.92775],[106.60732,22.92084],[106.6095,22.90953],[106.61986,22.89628],[106.63159,22.89125],[106.62428,22.88064],[106.63212,22.87733],[106.64339,22.87403],[106.65289,22.86363],[106.66514,22.87537],[106.66886,22.87364],[106.67072,22.87816],[106.66604,22.88324],[106.6689,22.89212],[106.67549,22.89055],[106.68413,22.88202],[106.6876,22.88614],[106.69379,22.88756],[106.69655,22.8833],[106.70139,22.88362],[106.70244,22.88757],[106.70639,22.88892],[106.71047,22.88166],[106.71867,22.87441],[106.70897,22.8637],[106.74337,22.84232],[106.74272,22.83828],[106.75167,22.83626],[106.75443,22.83234],[106.7683,22.82629],[106.76416,22.81228],[106.76501,22.80942],[106.77341,22.81794],[106.78071,22.81524],[106.79487,22.81571],[106.80469,22.82132],[106.81864,22.81997],[106.82523,22.81276],[106.83457,22.80808],[106.83677,22.80252],[106.83277,22.80113],[106.8274,22.78961],[106.82283,22.78809],[106.82384,22.77972],[106.81866,22.77325],[106.81383,22.76963],[106.80625,22.76917],[106.79722,22.77051],[106.78449,22.7515],[106.77141,22.73375],[106.76981,22.73066],[106.7744,22.7206],[106.76846,22.71569],[106.78214,22.71007],[106.78552,22.70381],[106.77022,22.69831],[106.75972,22.68963],[106.76632,22.68261],[106.76241,22.67561],[106.75781,22.67178],[106.74216,22.66976],[106.73682,22.66221],[106.73895,22.65717],[106.73284,22.6458],[106.72627,22.64465],[106.72137,22.63728],[106.7289,22.63282],[106.72338,22.61949],[106.7144,22.61311],[106.71713,22.61024],[106.7274,22.60293],[106.72735,22.58641],[106.70809,22.57865],[106.69844,22.58356],[106.68073,22.5712],[106.66655,22.5769],[106.65225,22.57468],[106.63546,22.58998],[106.6269,22.60464],[106.6098,22.60289],[106.60296,22.58804],[106.60691,22.58559],[106.6095,22.57934],[106.59887,22.57572],[106.60386,22.56148],[106.59846,22.55657],[106.59924,22.5504],[106.59,22.5495],[106.58937,22.53105],[106.58118,22.51703],[106.58129,22.50486],[106.58415,22.47556],[106.58109,22.47312],[106.57734,22.46814],[106.57259,22.47149],[106.55897,22.46235],[106.55728,22.45602],[106.55902,22.44397],[106.56526,22.43639],[106.56563,22.42466],[106.55895,22.42197],[106.56531,22.40976],[106.56603,22.39613],[106.57608,22.38233],[106.58338,22.37614],[106.57965,22.37099],[106.57195,22.37031],[106.57317,22.36265],[106.55953,22.34917],[106.5686,22.3427],[106.57704,22.34617],[106.58205,22.34011],[106.58919,22.34279],[106.60252,22.33849],[106.61446,22.33959],[106.62023,22.3337],[106.63784,22.34044],[106.65008,22.33809],[106.65958,22.33383],[106.66002,22.32596],[106.66321,22.32126],[106.66637,22.32152],[106.66541,22.31067],[106.67008,22.29857],[106.66658,22.28998],[106.66689,22.28537],[106.6728,22.28533],[106.67871,22.28973],[106.6812,22.29049],[106.69054,22.27853],[106.68894,22.27109],[106.68393,22.26722],[106.68991,22.25764],[106.695,22.23274],[106.70215,22.23072],[106.7045,22.22044],[106.69953,22.218],[106.69869,22.2073],[106.68945,22.20179],[106.67852,22.20411],[106.68215,22.20035],[106.67205,22.18196],[106.67747,22.17627],[106.67877,22.16993],[106.68934,22.16265],[106.70355,22.16155],[106.70747,22.15536],[106.69862,22.15515],[106.69526,22.14285],[106.68813,22.13755],[106.69336,22.13289],[106.69249,22.11974],[106.69617,22.11381],[106.69608,22.10724],[106.7072,22.1013],[106.71215,22.09537],[106.71127,22.08926],[106.70626,22.08505],[106.70847,22.08181],[106.70656,22.06711],[106.69655,22.05361],[106.70092,22.04864],[106.69841,22.04113],[106.70508,22.0382],[106.70831,22.02495],[106.69774,22.01388],[106.68374,22.00343],[106.68484,21.98503],[106.6928,21.96409],[106.70081,21.96941],[106.70607,21.96901],[106.70687,21.97624],[106.71928,21.97413],[106.73184,21.99488],[106.72628,21.99968],[106.7283,22.00718],[106.74545,22.01379],[106.74716,22.00939],[106.75093,22.00818],[106.75454,22.01219],[106.76707,22.01302],[106.77333,22.00563],[106.78371,22.00461],[106.78792,21.98991],[106.79052,21.98894],[106.79586,21.99306],[106.79811,21.98763],[106.79747,21.98564],[106.80027,21.97982],[106.80578,21.98058],[106.80718,21.97496],[106.81204,21.97329],[106.83239,21.97421],[106.83215,21.98246],[106.8382,21.98308],[106.8454,21.97839],[106.84916,21.98133],[106.86494,21.98173],[106.87797,21.98021],[106.90437,21.97145],[106.91449,21.97567],[106.91911,21.97224],[106.92367,21.96203],[106.92205,21.95244],[106.92833,21.94127],[106.93049,21.92978],[106.95285,21.93348],[106.95364,21.92445],[106.96198,21.91925],[106.97924,21.92646],[106.98768,21.94117],[106.99337,21.95332],[107.00466,21.94601],[107.02351,21.94506],[107.02847,21.93695],[107.0348,21.93775],[107.04003,21.93194],[107.04937,21.92932],[107.05116,21.92319],[107.05982,21.91961],[107.05786,21.91088],[107.06345,21.89323],[107.05214,21.88256],[107.04013,21.87825],[107.03122,21.86758],[107.01613,21.862],[107.01358,21.85314],[107.02064,21.84236],[107.02515,21.82336],[107.03941,21.81495],[107.06096,21.8093],[107.08182,21.80908],[107.09849,21.79525],[107.11721,21.79416],[107.12567,21.77775],[107.13402,21.77369],[107.13962,21.76325],[107.15975,21.75704],[107.16477,21.74892],[107.17152,21.75283],[107.17621,21.74781],[107.18559,21.74669],[107.1936,21.73346],[107.19817,21.73172],[107.19654,21.72089],[107.22042,21.70754],[107.24841,21.70407],[107.25012,21.71618],[107.26436,21.72766],[107.28109,21.7334],[107.28751,21.73181],[107.28843,21.73659],[107.30058,21.74297],[107.30538,21.73881],[107.30744,21.7294],[107.31361,21.72892],[107.31413,21.72446],[107.32219,21.72509],[107.31824,21.7152],[107.33446,21.6975],[107.33594,21.68925],[107.34492,21.6848],[107.34841,21.68035],[107.34474,21.67625],[107.35961,21.66576],[107.36268,21.63959],[107.36225,21.6348],[107.35426,21.63001],[107.35473,21.62203],[107.35932,21.6198],[107.36007,21.61118],[107.3567,21.60575],[107.36369,21.59841],[107.36949,21.6008],[107.38285,21.59616],[107.39273,21.60593],[107.39781,21.60931],[107.3943,21.6162],[107.408,21.62252],[107.4073,21.62568],[107.41759,21.63269],[107.41449,21.63874],[107.43217,21.64943],[107.45234,21.6586],[107.46702,21.66395],[107.47803,21.66257],[107.49658,21.63348],[107.49281,21.6234],[107.49745,21.61709],[107.49496,21.60563],[107.48183,21.59577],[107.48995,21.59686],[107.49806,21.59539],[107.50446,21.59679],[107.51933,21.59303],[107.52511,21.59001],[107.53281,21.59201],[107.53775,21.59465],[107.54382,21.5899],[107.55799,21.6125],[107.56941,21.61243],[107.57268,21.61763],[107.58118,21.61864],[107.58556,21.61007],[107.61123,21.60445],[107.62316,21.60713],[107.67243,21.60611],[107.69597,21.61548],[107.71404,21.62021],[107.72181,21.62878],[107.73136,21.62939],[107.74228,21.63894],[107.75183,21.64242],[107.75795,21.64208],[107.78114,21.64921],[107.78209,21.65597],[107.79778,21.65558],[107.81827,21.65711],[107.82228,21.65322],[107.82772,21.65319],[107.83525,21.64264],[107.84416,21.64183],[107.84553,21.64845],[107.85308,21.65016],[107.85445,21.65379],[107.85876,21.65398],[107.86091,21.64833],[107.86787,21.64906],[107.87054,21.64708],[107.87252,21.64191],[107.87934,21.64028],[107.87793,21.63163],[107.88873,21.62619],[107.88579,21.61883],[107.88903,21.61818],[107.89237,21.61498],[107.88266,21.61114],[107.88511,21.60633],[107.89182,21.60712],[107.89312,21.60209],[107.88965,21.59989],[107.89359,21.59711],[107.89753,21.5956],[107.89941,21.59298],[107.89863,21.58927],[107.90047,21.58662],[107.90328,21.58689],[107.90455,21.59131],[107.91648,21.58617],[107.92378,21.59029],[107.92743,21.58852],[107.92627,21.58292],[107.93057,21.57775],[107.94311,21.57002],[107.94261,21.56591],[107.9518,21.5399],[107.95619,21.53625],[107.96347,21.53756],[107.96711,21.5355],[107.97178,21.54079],[107.97425,21.53955],[107.97721,21.54005],[107.97748,21.54349],[107.97913,21.54469],[107.98648,21.54365],[107.99315,21.54612],[108.02479,21.54625],[108.03905,21.54502],[108.05022,21.53826],[108.05597,21.52993],[108.33333,21.29166],[108.33333,18],[112.19409,14.97469],[108.53354,6.87119],[102.13866,6.2691],[102.09119,6.23429],[102.0805,6.22507],[102.07927,6.17131],[102.08484,6.16082],[102.09315,6.14486],[102.07803,6.12609],[102.06154,6.10185],[102.05328,6.08069],[102.03158,6.06636],[102.02091,6.05339],[102.00425,6.05237],[102.00278,6.04025],[101.98896,6.04042],[101.97916,6.02779],[101.97349,6.0097],[101.94205,5.98017],[101.94494,5.95337],[101.93013,5.94621],[101.93192,5.92581],[101.92527,5.92312],[101.92135,5.91087],[101.9318,5.90832],[101.94156,5.89074],[101.94171,5.86907],[101.93123,5.86079],[101.92898,5.85251],[101.91488,5.84142],[101.89666,5.84399],[101.89115,5.83724],[101.88701,5.84005],[101.87597,5.8197],[101.88,5.81044],[101.87236,5.80391],[101.86334,5.80148],[101.86812,5.7921],[101.85266,5.79219],[101.8372,5.78818],[101.82275,5.76104],[101.82376,5.73287],[101.81624,5.73305],[101.81128,5.74082],[101.79259,5.75406],[101.77305,5.77098],[101.77823,5.78243],[101.75502,5.79816],[101.73689,5.78144],[101.72996,5.78272],[101.72439,5.77991],[101.71739,5.78794],[101.71711,5.76575],[101.70846,5.7602],[101.70393,5.75192],[101.69349,5.75312],[101.68717,5.76235],[101.68909,5.77978],[101.67783,5.77911],[101.66725,5.79825],[101.6654,5.81123],[101.65942,5.81056],[101.65846,5.83687],[101.66279,5.84593],[101.6575,5.85635],[101.66271,5.86422],[101.65557,5.87619],[101.63899,5.86856],[101.62515,5.87527],[101.62298,5.89428],[101.61572,5.90037],[101.61533,5.91056],[101.60904,5.91488],[101.59726,5.91238],[101.59034,5.91932],[101.58892,5.929],[101.58195,5.93332],[101.57257,5.92484],[101.55908,5.91772],[101.54627,5.92153],[101.52522,5.90759],[101.525,5.89959],[101.51516,5.90389],[101.50235,5.89062],[101.49595,5.88092],[101.48543,5.87941],[101.48498,5.8682],[101.475,5.86719],[101.46364,5.87301],[101.45329,5.86415],[101.4367,5.86831],[101.42081,5.87382],[101.39392,5.87251],[101.38616,5.85076],[101.37153,5.83175],[101.35821,5.83061],[101.349,5.82537],[101.34639,5.81147],[101.33793,5.80826],[101.32397,5.81324],[101.31391,5.8027],[101.3051,5.81281],[101.2908,5.81608],[101.26769,5.80759],[101.26017,5.787],[101.26053,5.7767],[101.25677,5.7746],[101.24997,5.76074],[101.25759,5.75097],[101.25591,5.74267],[101.26133,5.73479],[101.2585,5.72691],[101.26247,5.71798],[101.251,5.70848],[101.25144,5.69963],[101.24549,5.69794],[101.2464,5.69215],[101.23445,5.68683],[101.21742,5.68575],[101.2216,5.67701],[101.21546,5.66307],[101.20483,5.6602],[101.19832,5.64982],[101.17642,5.64859],[101.16962,5.64395],[101.16625,5.63214],[101.15327,5.62306],[101.14578,5.62149],[101.14479,5.61319],[101.13555,5.61309],[101.12283,5.66182],[101.11279,5.67844],[101.09862,5.6896],[101.09913,5.70234],[101.05963,5.74218],[101.03798,5.73693],[100.98436,5.80612],[100.99807,5.81556],[101.01179,5.83456],[101.00697,5.85089],[101.0104,5.87132],[101.02962,5.90063],[101.02686,5.91218],[101.03956,5.91502],[101.055,5.9083],[101.06253,5.91945],[101.07694,5.91694],[101.08447,5.90623],[101.087,5.92606],[101.09913,5.93906],[101.09594,5.95004],[101.11266,5.96034],[101.12526,5.97883],[101.11005,5.9898],[101.10858,6.0281],[101.11672,6.03498],[101.10288,6.05142],[101.11339,6.07014],[101.1184,6.09023],[101.12616,6.09256],[101.1298,6.10582],[101.11857,6.11159],[101.10734,6.11327],[101.10504,6.12177],[101.08901,6.13165],[101.05784,6.14109],[101.07676,6.16117],[101.07645,6.17033],[101.08781,6.17608],[101.09917,6.17773],[101.1171,6.18171],[101.12403,6.19252],[101.10502,6.23886],[101.11165,6.25008],[101.09906,6.26131],[101.0614,6.25581],[101.02787,6.24348],[101.01572,6.2475],[100.98526,6.27532],[100.96853,6.28404],[100.96643,6.27173],[100.94786,6.26216],[100.94231,6.23891],[100.91472,6.24839],[100.90112,6.23165],[100.89165,6.2463],[100.87133,6.26333],[100.87024,6.24076],[100.85404,6.22912],[100.834,6.2932],[100.84829,6.31223],[100.82607,6.35576],[100.81917,6.36757],[100.82326,6.37939],[100.82457,6.40575],[100.81345,6.44209],[100.79204,6.44841],[100.7775,6.46155],[100.77108,6.45703],[100.75505,6.45525],[100.74497,6.47078],[100.73832,6.48904],[100.7453,6.49817],[100.73854,6.51139],[100.73187,6.50406],[100.73069,6.49673],[100.72421,6.49435],[100.71925,6.48634],[100.71018,6.48105],[100.70988,6.47185],[100.70054,6.46989],[100.69531,6.4652],[100.68624,6.46538],[100.68319,6.45345],[100.66092,6.44902],[100.65238,6.44187],[100.64123,6.44819],[100.64518,6.45724],[100.62029,6.45673],[100.61188,6.46578],[100.59592,6.4762],[100.57584,6.47979],[100.56314,6.49379],[100.54701,6.48631],[100.51714,6.48837],[100.49552,6.50613],[100.49587,6.51979],[100.48471,6.52475],[100.47218,6.52015],[100.45811,6.53143],[100.44867,6.52683],[100.43511,6.5236],[100.4231,6.51714],[100.40886,6.52892],[100.39324,6.5366],[100.37419,6.54429],[100.36749,6.53833],[100.35968,6.5495],[100.35874,6.55659],[100.35162,6.56981],[100.3445,6.57757],[100.33531,6.58534],[100.32476,6.58492],[100.31489,6.60087],[100.30227,6.60863],[100.32442,6.61902],[100.31901,6.63888],[100.32111,6.65563],[100.32734,6.66284],[100.30648,6.6694],[100.30292,6.6795],[100.29112,6.68141],[100.29335,6.7109],[100.26399,6.70152],[100.25687,6.70978],[100.24013,6.69213],[100.21971,6.69844],[100.21499,6.71727],[100.2034,6.7252],[100.19001,6.71802],[100.17113,6.69311],[100.17817,6.68066],[100.17971,6.66821],[100.17989,6.65507],[100.16907,6.64739],[100.16804,6.61395],[100.1792,6.60064],[100.17929,6.59058],[100.18349,6.57369],[100.17457,6.56684],[100.1581,6.5777],[100.1605,6.5596],[100.15329,6.55923],[100.1569,6.53858],[100.15639,6.52202],[100.16137,6.50205],[100.15948,6.48345],[100.15399,6.47756],[100.15261,6.47167],[100.143,6.46398],[100.1485,6.45133],[100.13579,6.44501],[100.13408,6.43049],[100.11966,6.42331],[99.86587,6.52268],[99.58333,6.45833],[89.999999,6.45833],[89.999999,20],[92.37132,20.7013],[92.37498,20.72474],[92.35827,20.76408],[92.33881,20.82396],[92.30905,20.88501],[92.29165,20.91527],[92.27287,20.94424],[92.27088,20.95565],[92.27233,20.97924],[92.26835,21.00077],[92.25353,21.0214],[92.25264,21.03572],[92.25656,21.0494],[92.26161,21.05432],[92.26459,21.05988],[92.2589,21.07741],[92.23338,21.09529],[92.22468,21.11733],[92.21769,21.12205],[92.2075,21.11752],[92.20006,21.12324],[92.19753,21.13853],[92.20324,21.14997],[92.19932,21.16052],[92.1917,21.16292],[92.18136,21.15771],[92.17515,21.15827],[92.17236,21.16907],[92.17337,21.17479],[92.17233,21.18051],[92.17557,21.18367],[92.18087,21.18619],[92.18275,21.19209],[92.18669,21.19671],[92.19423,21.20019],[92.19968,21.20064],[92.21062,21.22476],[92.21711,21.22745],[92.21947,21.23333],[92.21175,21.24791],[92.21348,21.25147],[92.22106,21.25603],[92.21662,21.26762],[92.21784,21.27886],[92.20944,21.28562],[92.21083,21.28824],[92.20294,21.29946],[92.1978,21.31069],[92.20124,21.31808],[92.1985,21.32738],[92.21362,21.33989],[92.21602,21.34493],[92.22409,21.35001],[92.23079,21.34806],[92.23319,21.35182],[92.25276,21.35879],[92.25898,21.36436],[92.25469,21.36703],[92.25316,21.37226],[92.25771,21.37744],[92.25402,21.38708],[92.26785,21.39993],[92.26383,21.40818],[92.26394,21.41322],[92.26937,21.41492],[92.2697,21.41918],[92.26918,21.4277],[92.27441,21.43292],[92.28012,21.42945],[92.28686,21.42827],[92.29292,21.42964],[92.29418,21.42398],[92.29749,21.42024],[92.30137,21.42402],[92.31073,21.41758],[92.31504,21.42067],[92.32435,21.41917],[92.32649,21.43089],[92.33832,21.43643],[92.33618,21.44785],[92.34061,21.45421],[92.34366,21.46823],[92.35724,21.46935],[92.36464,21.47367],[92.36792,21.47927],[92.37344,21.4761],[92.38241,21.47931],[92.39861,21.4624],[92.41208,21.44167],[92.41648,21.44179],[92.4254,21.43415],[92.43157,21.40508],[92.42744,21.39647],[92.42743,21.38148],[92.43085,21.37224],[92.43697,21.37174],[92.43897,21.36515],[92.45783,21.3689],[92.46211,21.36533],[92.46982,21.36305],[92.47182,21.35518],[92.48484,21.35765],[92.48724,21.36082],[92.49718,21.36208],[92.50266,21.35628],[92.50706,21.3573],[92.51145,21.36792],[92.50712,21.37595],[92.51447,21.37758],[92.5163,21.38838],[92.53119,21.38831],[92.53555,21.37793],[92.54013,21.37642],[92.54952,21.37875],[92.55181,21.38215],[92.55685,21.38491],[92.56223,21.37776],[92.56349,21.36997],[92.56651,21.3451],[92.57296,21.33365],[92.57145,21.32931],[92.57197,21.32311],[92.57593,21.31818],[92.58658,21.28658],[92.58419,21.28185],[92.59124,21.26381],[92.59623,21.24513],[92.61358,21.24744],[92.62406,21.25167],[92.62116,21.25942],[92.62932,21.26457],[92.63066,21.26779],[92.65364,21.27835],[92.66822,21.28236],[92.68006,21.28636],[92.6796,21.29685],[92.66427,21.31969],[92.65626,21.34998],[92.65151,21.35915],[92.64882,21.37791],[92.65093,21.38644],[92.64893,21.38986],[92.64446,21.39969],[92.63998,21.41462],[92.64064,21.42852],[92.63783,21.43714],[92.63457,21.43873],[92.62992,21.44864],[92.63231,21.45247],[92.62404,21.47547],[92.62742,21.48697],[92.62016,21.51619],[92.62113,21.52881],[92.61484,21.56873],[92.6082,21.59141],[92.61049,21.62048],[92.60343,21.65299],[92.6047,21.6718],[92.60872,21.68487],[92.60176,21.70304],[92.6048,21.72137],[92.6099,21.73142],[92.60534,21.73651],[92.61107,21.78179],[92.60813,21.79965],[92.60999,21.81879],[92.62078,21.82359],[92.6145,21.84224],[92.61396,21.85201],[92.62097,21.86177],[92.63106,21.86167],[92.63084,21.86923],[92.63384,21.87413],[92.61992,21.92218],[92.61342,21.92337],[92.61378,21.92711],[92.61313,21.93205],[92.61664,21.93937],[92.61541,21.94318],[92.60953,21.94381],[92.6115,21.95779],[92.60307,21.98259],[92.61348,21.9873],[92.6232,21.99456],[92.63293,22.00404],[92.64471,22.01862],[92.6522,22.02254],[92.66587,22.02073],[92.67105,22.02058],[92.68017,22.02783],[92.68516,22.03953],[92.68317,22.07233],[92.67878,22.08603],[92.67851,22.09974],[92.68346,22.10139],[92.69588,22.09457],[92.70004,22.09562],[92.7004,22.09965],[92.69646,22.14904],[92.70067,22.15593],[92.71102,22.16033],[92.72477,22.15808],[92.73372,22.14692],[92.75733,22.13098],[92.78802,22.11634],[92.80954,22.10074],[92.81962,22.08818],[92.8242,22.07879],[92.8398,22.06486],[92.85722,22.05885],[92.86833,22.04502],[92.88081,22.02674],[92.88535,22.01405],[92.89126,21.96315],[92.89546,21.9546],[92.90034,21.95432],[92.90684,21.96006],[92.91421,21.96961],[92.92168,21.99189],[92.92914,22.01991],[92.93857,22.02612],[92.94947,22.0289],[92.95967,22.02469],[92.97357,22.00225],[92.98429,21.99103],[92.99158,21.99127],[93.00038,21.99554],[93.00713,22.00427],[93.00219,22.02287],[92.99246,22.04656],[92.9889,22.05529],[92.99161,22.06781],[93.00669,22.09115],[93.01074,22.10792],[93.0168,22.1157],[93.02415,22.11749],[93.03435,22.11774],[93.03974,22.11609],[93.04778,22.11724],[93.05238,22.11966],[93.04784,22.13618],[93.04241,22.14619],[93.04038,22.16169],[93.04486,22.17326],[93.04866,22.17783],[93.04886,22.18872],[93.04426,22.20215],[93.05075,22.20852],[93.06479,22.21172],[93.07845,22.21176],[93.08906,22.20797],[93.1031,22.20671],[93.11165,22.20324],[93.12348,22.18815],[93.13124,22.18549],[93.14106,22.18346],[93.14951,22.18589],[93.1662,22.19213],[93.16172,22.20548],[93.15655,22.21565],[93.14623,22.22487],[93.14141,22.23154],[93.14362,22.23743],[93.14747,22.24037],[93.15407,22.2414],[93.17413,22.24172],[93.19138,22.24792],[93.19691,22.25515],[93.19901,22.26365],[93.19863,22.27894],[93.19756,22.29106],[93.19718,22.31843],[93.19012,22.38197],[93.18282,22.41089],[93.18294,22.42566],[93.18101,22.44044],[93.16563,22.4531],[93.1418,22.4626],[93.13514,22.47528],[93.13768,22.4914],[93.13569,22.4988],[93.1241,22.51635],[93.11739,22.53433],[93.11926,22.55548],[93.13427,22.58254],[93.13662,22.59321],[93.13555,22.60199],[93.12952,22.61998],[93.11731,22.63416],[93.10389,22.64858],[93.0977,22.66106],[93.09632,22.66983],[93.09907,22.67739],[93.09769,22.68874],[93.09494,22.69894],[93.0915,22.71547],[93.09733,22.7282],[93.09973,22.73903],[93.10109,22.77761],[93.09901,22.79148],[93.105,22.81106],[93.11168,22.83001],[93.11595,22.86478],[93.11954,22.87613],[93.1397,22.89138],[93.14405,22.90009],[93.14291,22.91323],[93.14852,22.91458],[93.15413,22.91277],[93.16158,22.91927],[93.14711,22.93986],[93.13848,22.95791],[93.13495,22.99276],[93.12686,23.00825],[93.12536,23.01465],[93.1266,23.02547],[93.13779,23.0483],[93.14648,23.05435],[93.15735,23.05168],[93.16478,23.05218],[93.18052,23.05889],[93.19491,23.05941],[93.20724,23.0574],[93.21302,23.0499],[93.2238,23.02245],[93.22978,23.01333],[93.24005,23.00784],[93.25101,23.00678],[93.26986,23.00319],[93.2841,23.00582],[93.29352,23.00908],[93.30783,23.01809],[93.31729,23.02858],[93.32443,23.04394],[93.33281,23.05699],[93.34626,23.06667],[93.35011,23.07256],[93.35004,23.09139],[93.3579,23.11217],[93.36938,23.12572],[93.38474,23.13471],[93.38737,23.13948],[93.38452,23.14489],[93.37479,23.1506],[93.37165,23.15473],[93.37125,23.16201],[93.37702,23.19347],[93.38965,23.2243],[93.38624,23.24855],[93.37115,23.27582],[93.37132,23.28958],[93.36875,23.30459],[93.37339,23.32087],[93.37322,23.32895],[93.36607,23.34973],[93.36746,23.35449],[93.37091,23.35736],[93.37988,23.35995],[93.38816,23.36096],[93.39369,23.36575],[93.40414,23.37673],[93.40418,23.3894],[93.40285,23.39387],[93.39881,23.43434],[93.39992,23.45495],[93.40562,23.4725],[93.40308,23.48375],[93.40411,23.50074],[93.41474,23.53977],[93.41577,23.54984],[93.41405,23.56746],[93.42091,23.58351],[93.42434,23.59704],[93.42605,23.60822],[93.42416,23.62607],[93.42012,23.64066],[93.41947,23.65267],[93.42158,23.66091],[93.43221,23.67492],[93.43323,23.67887],[93.42944,23.69157],[93.41672,23.7005],[93.4105,23.70703],[93.40631,23.71759],[93.3993,23.74436],[93.39901,23.7822],[93.39569,23.80948],[93.38492,23.83956],[93.38194,23.88539],[93.3872,23.90987],[93.38573,23.91816],[93.38357,23.92332],[93.37651,23.92924],[93.36857,23.93292],[93.36298,23.93337],[93.3583,23.93689],[93.35499,23.94543],[93.34151,23.97067],[93.33205,23.97534],[93.3274,23.98252],[93.32927,24.00852],[93.32771,24.03515],[93.32993,24.03983],[93.33283,24.06834],[93.33556,24.07579],[93.35031,24.08766],[93.36352,24.09109],[93.3794,24.0903],[93.39386,24.08551],[93.40352,24.07885],[93.41171,24.06615],[93.41918,24.04453],[93.43867,24.02165],[93.44944,24.01271],[93.46296,24.00315],[93.46786,23.98544],[93.46795,23.97651],[93.47606,23.96671],[93.49131,23.96285],[93.50861,23.9615],[93.52935,23.96359],[93.54521,23.97092],[93.55555,23.98211],[93.56245,23.98514],[93.56672,23.98647],[93.57649,23.97901],[93.58092,23.97099],[93.59222,23.97081],[93.60283,23.97566],[93.61204,23.99883],[93.62193,24.01636],[93.63356,24.01593],[93.65481,24.01174],[93.66197,24.01194],[93.68768,24.01527],[93.70189,24.01108],[93.71815,24.00438],[93.74225,24.00558],[93.75879,24.00677],[93.76579,24.00289],[93.77669,23.99231],[93.78472,23.97636],[93.78691,23.9673],[93.79266,23.95735],[93.8024,23.94641],[93.81764,23.9361],[93.82824,23.93552],[93.84227,23.93807],[93.86553,23.9438],[93.89227,23.95232],[93.92175,23.95706],[93.93609,23.95213],[93.97282,23.93175],[93.99857,23.92611],[94.03256,23.9211],[94.04647,23.90997],[94.04999,23.90032],[94.05999,23.89518],[94.07754,23.89381],[94.09797,23.88581],[94.10956,23.86769],[94.1102,23.86208],[94.11963,23.85188],[94.12906,23.84357],[94.13609,23.84374],[94.1451,23.84822],[94.15303,23.85862],[94.16131,23.88095],[94.16127,23.90278],[94.16053,23.92398],[94.16151,23.93451],[94.16524,23.94442],[94.17373,23.94917],[94.1869,23.95563],[94.20619,23.9849],[94.21633,23.9999],[94.22579,24.03058],[94.22289,24.05123],[94.2241,24.0587],[94.23911,24.06929],[94.24321,24.0829],[94.24181,24.10905],[94.2452,24.12062],[94.25025,24.14593],[94.25965,24.16329],[94.26973,24.17877],[94.27289,24.19627],[94.27881,24.22693],[94.29296,24.25132],[94.29695,24.25319],[94.30272,24.26258],[94.31109,24.27791],[94.31391,24.28589],[94.31604,24.29763],[94.31442,24.31947],[94.31898,24.3363],[94.32878,24.34556],[94.35403,24.36578],[94.36143,24.37473],[94.35392,24.39889],[94.35464,24.40492],[94.37601,24.40838],[94.38624,24.41886],[94.38926,24.43403],[94.38851,24.45701],[94.38913,24.47937],[94.39358,24.48564],[94.40129,24.49003],[94.41408,24.49253],[94.42412,24.50253],[94.42958,24.51821],[94.43813,24.55449],[94.44579,24.56867],[94.45521,24.5753],[94.46874,24.58006],[94.4937,24.59648],[94.5044,24.60668],[94.51648,24.62062],[94.5289,24.65141],[94.53476,24.69146],[94.53529,24.70243],[94.53788,24.70779],[94.54655,24.71133],[94.57582,24.70925],[94.58587,24.71372],[94.59728,24.72442],[94.61823,24.76101],[94.61892,24.76808],[94.61825,24.80031],[94.62308,24.81614],[94.63962,24.84096],[94.65581,24.85426],[94.66925,24.86942],[94.68756,24.91506],[94.69294,24.92544],[94.69597,24.93499],[94.69645,24.9488],[94.69314,24.96096],[94.69258,24.97438],[94.69659,24.98311],[94.7034,24.98965],[94.70952,24.99308],[94.7226,25.00826],[94.73361,25.02157],[94.73711,25.0426],[94.73301,25.10136],[94.73474,25.12452],[94.72892,25.13524],[94.72137,25.13995],[94.69631,25.15131],[94.67056,25.16143],[94.65752,25.16525],[94.63881,25.16762],[94.61598,25.16999],[94.59916,25.17847],[94.59015,25.18829],[94.58458,25.19626],[94.57617,25.21404],[94.57669,25.23711],[94.57995,25.2521],[94.58202,25.2891],[94.58917,25.30204],[94.59962,25.31192],[94.61074,25.32987],[94.61515,25.34189],[94.61793,25.35828],[94.61865,25.37033],[94.62422,25.39567],[94.6339,25.40953],[94.64767,25.41709],[94.66007,25.42588],[94.66413,25.43279],[94.67025,25.449],[94.68907,25.46893],[94.69962,25.47453],[94.71291,25.47951],[94.72333,25.48417],[94.73472,25.49301],[94.74679,25.49689],[94.76031,25.49318],[94.77107,25.49133],[94.78962,25.49666],[94.80405,25.50768],[94.81779,25.52181],[94.83119,25.54541],[94.84185,25.55972],[94.85046,25.56697],[94.87159,25.56594],[94.88008,25.56836],[94.88513,25.57263],[94.88562,25.57808],[94.87769,25.58649],[94.88036,25.59341],[94.89689,25.6033],[94.9108,25.61962],[94.92128,25.63595],[94.94446,25.66651],[94.96421,25.69026],[94.97365,25.69798],[94.98035,25.70755],[94.98619,25.72112],[94.99306,25.72972],[94.99976,25.73416],[95.01581,25.73545],[95.0274,25.73767],[95.03426,25.74376],[95.03976,25.75254],[95.03908,25.76856],[95.03463,25.79625],[95.02881,25.82579],[95.01822,25.89237],[95.02012,25.92268],[95.02271,25.93076],[95.03375,25.93931],[95.06022,25.94329],[95.07404,25.94875],[95.08649,25.95484],[95.11469,25.98119],[95.13534,26.00321],[95.14995,26.02001],[95.15976,26.03002],[95.17163,26.04558],[95.17722,26.05583],[95.17938,26.06485],[95.17566,26.07654],[95.17311,26.08053],[95.15788,26.08986],[95.11793,26.10165],[95.11152,26.11325],[95.11072,26.12676],[95.11266,26.1378],[95.11414,26.15156],[95.1118,26.16152],[95.1041,26.16958],[95.10372,26.181],[95.10952,26.18933],[95.11669,26.19335],[95.11994,26.19813],[95.12044,26.2023],[95.11581,26.20878],[95.09908,26.2114],[95.08763,26.21672],[95.08098,26.22881],[95.07695,26.25961],[95.07087,26.29472],[95.06718,26.30429],[95.06534,26.32876],[95.06831,26.3477],[95.08857,26.39051],[95.09528,26.40638],[95.09451,26.41678],[95.09031,26.42717],[95.0692,26.45338],[95.06483,26.46833],[95.06746,26.48287],[95.07735,26.49783],[95.08745,26.50653],[95.09548,26.51032],[95.10976,26.52262],[95.11717,26.54412],[95.14312,26.56134],[95.14751,26.56564],[95.15032,26.57501],[95.14902,26.58131],[95.13913,26.59406],[95.13837,26.6043],[95.14143,26.61342],[95.15188,26.62289],[95.1589,26.62622],[95.17466,26.62996],[95.19454,26.63616],[95.20515,26.64358],[95.21423,26.65957],[95.22632,26.66848],[95.23106,26.67362],[95.2461,26.67999],[95.25328,26.67903],[95.25702,26.67378],[95.25752,26.66701],[95.2539,26.65656],[95.25715,26.65072],[95.26392,26.64534],[95.27138,26.64487],[95.31813,26.66856],[95.34734,26.67887],[95.38959,26.68488],[95.43875,26.70797],[95.45027,26.71614],[95.4708,26.74322],[95.48072,26.75769],[95.49083,26.78485],[95.503,26.81016],[95.51573,26.82019],[95.52313,26.82459],[95.54151,26.82715],[95.60471,26.81909],[95.61347,26.82298],[95.61949,26.8287],[95.63015,26.8521],[95.63385,26.87029],[95.64394,26.88506],[95.65791,26.8949],[95.6681,26.89873],[95.68006,26.89728],[95.69909,26.89105],[95.71194,26.88849],[95.71903,26.89293],[95.72716,26.89787],[95.73803,26.91016],[95.74719,26.93347],[95.75074,26.94727],[95.75978,26.96351],[95.77521,26.97273],[95.78395,26.97734],[95.79657,26.99281],[95.80781,27.0046],[95.84006,27.00984],[95.86373,27.00989],[95.87417,27.01259],[95.90616,27.02648],[95.92663,27.0426],[95.94269,27.05984],[95.95107,27.07029],[95.96151,27.08013],[95.98135,27.11016],[96.00363,27.15543],[96.01271,27.17135],[96.0248,27.18359],[96.03634,27.19215],[96.06889,27.20926],[96.09045,27.2282],[96.15342,27.25483],[96.1722,27.25808],[96.18685,27.26865],[96.19285,27.2707],[96.2168,27.27172],[96.22838,27.27579],[96.25816,27.27605],[96.27146,27.27875],[96.28201,27.28603],[96.29805,27.29026],[96.32413,27.28672],[96.34163,27.28953],[96.35467,27.29478],[96.37411,27.29324],[96.3915,27.29353],[96.4082,27.30206],[96.42714,27.30603],[96.44828,27.30313],[96.46531,27.29718],[96.4819,27.30266],[96.49779,27.30203],[96.50745,27.29562],[96.51675,27.29271],[96.52551,27.29431],[96.53436,27.30365],[96.54252,27.30506],[96.55652,27.30397],[96.56902,27.30922],[96.57987,27.31907],[96.59113,27.3365],[96.59642,27.3504],[96.60318,27.36162],[96.60994,27.36674],[96.6177,27.36806],[96.63222,27.36079],[96.64566,27.34617],[96.64834,27.34298],[96.65444,27.33917],[96.66501,27.33933],[96.67284,27.34193],[96.68003,27.34372],[96.68791,27.35038],[96.6951,27.35857],[96.70298,27.36493],[96.71359,27.36775],[96.7491,27.36092],[96.78496,27.34617],[96.80017,27.33049],[96.80525,27.3281],[96.81858,27.32448],[96.82395,27.3197],[96.83413,27.29249],[96.84774,27.26894],[96.8585,27.26083],[96.87474,27.25882],[96.88001,27.25924],[96.8839,27.25416],[96.8855,27.24872],[96.88435,27.24328],[96.88252,27.23937],[96.87657,27.23729],[96.86845,27.22885],[96.86101,27.21614],[96.86249,27.20862],[96.86604,27.19804],[96.87802,27.18432],[96.89809,27.17196],[96.96511,27.14531],[96.98043,27.1381],[97.0001,27.13266],[97.01703,27.12722],[97.02895,27.11974],[97.0459,27.0995],[97.06078,27.0927],[97.06687,27.09195],[97.09017,27.10196],[97.10935,27.10098],[97.12478,27.08755],[97.12881,27.08496],[97.13764,27.08542],[97.14618,27.09589],[97.14717,27.10758],[97.15879,27.12172],[97.16012,27.13647],[97.1489,27.15062],[97.12531,27.16354],[97.12296,27.17077],[97.12443,27.17654],[97.12796,27.17988],[97.12816,27.18532],[97.12595,27.19214],[97.11963,27.19774],[97.09668,27.2065],[97.07309,27.24873],[97.05706,27.26837],[97.04823,27.28222],[97.03598,27.2979],[96.99909,27.33051],[96.99035,27.34298],[96.97268,27.36247],[96.96257,27.37526],[96.95787,27.38347],[96.95515,27.39284],[96.94899,27.40404],[96.93394,27.41303],[96.92506,27.43008],[96.91239,27.44258],[96.90589,27.45019],[96.89981,27.46481],[96.90006,27.47577],[96.90441,27.484],[96.91769,27.50014],[96.91816,27.5044],[96.90802,27.52594],[96.90475,27.55966],[96.8958,27.56499],[96.88874,27.57703],[96.88589,27.59126],[96.88687,27.60568],[96.88923,27.61766],[96.89493,27.62581],[96.91368,27.63821],[96.9179,27.64426],[96.92213,27.65092],[96.93219,27.66183],[96.94157,27.66486],[96.95313,27.66486],[96.96125,27.6679],[96.97933,27.6843],[97.00343,27.71807],[97.01587,27.74212],[97.02685,27.74587],[97.04195,27.74835],[97.0598,27.75205],[97.07833,27.74638],[97.08382,27.74922],[97.08721,27.75587],[97.08822,27.77742],[97.0906,27.78196],[97.09727,27.78498],[97.1163,27.78922],[97.12484,27.79526],[97.13046,27.81011],[97.13402,27.81403],[97.15166,27.81673],[97.15762,27.82126],[97.1659,27.83026],[97.17831,27.83744],[97.18691,27.84832],[97.20581,27.86284],[97.22299,27.87996],[97.22849,27.88494],[97.23744,27.89673],[97.24859,27.90726],[97.26659,27.9087],[97.28047,27.91681],[97.28553,27.91859],[97.29332,27.91916],[97.30583,27.91392],[97.31011,27.90364],[97.30985,27.89304],[97.3113,27.88031],[97.3173,27.87762],[97.32841,27.88225],[97.33952,27.88932],[97.3435,27.89131],[97.36465,27.8927],[97.36746,27.89669],[97.36743,27.90243],[97.36259,27.92578],[97.36069,27.94083],[97.36489,27.96063],[97.38278,27.99479],[97.39312,28.00712],[97.39578,28.01223],[97.39431,28.01915],[97.37597,28.03216],[97.36724,28.04213],[97.36764,28.04753],[97.36285,28.05138],[97.35874,28.05766],[97.35945,28.06233],[97.35538,28.06682],[97.34862,28.06551],[97.3426,28.06066],[97.33452,28.05884],[97.32648,28.06196],[97.32004,28.05852],[97.3129,28.06175],[97.3219,28.08232],[97.32815,28.08532],[97.32785,28.0947],[97.32479,28.10226],[97.3345,28.10809],[97.33043,28.11191],[97.32498,28.11331],[97.32508,28.12459],[97.31899,28.12678],[97.31438,28.1345],[97.30976,28.141],[97.31606,28.1481],[97.32167,28.14792],[97.32462,28.14304],[97.33433,28.1418],[97.34542,28.15087],[97.35474,28.1532],[97.35613,28.15969],[97.36027,28.16496],[97.3548,28.17672],[97.36108,28.19026],[97.36323,28.20076],[97.36075,28.20521],[97.3538,28.20785],[97.34731,28.20812],[97.34503,28.2141]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:DU:**Philippines#BS7:**Scarborough Reef#1S:**Spratly Islands","itu_zone_number":50,"itu_zone_name_loc":[10,120]},"geometry":{"type":"Polygon","coordinates":[[[112.19409,14.97469],[121.73667,22.00146],[130,22.00146],[130,2.5],[127.00219,5.5],[119.1477,4.19658],[118.98877,4.79656],[119.45312,5.3708],[118.13962,6.04534],[117.93055,6.61753],[117.35361,7.39417],[116.78216,7.66089],[114.75624,5.79238],[108.53354,6.87119],[112.19409,14.97469]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!:H4:**Solomon Islands#H40:**Temotu Province#P2:**Papua New Guinea#YB:**Indonesia, east of 130º E","itu_zone_number":51,"itu_zone_name_loc":[-4,150]},"geometry":{"type":"Polygon","coordinates":[[[130,2.5],[140,0],[162,0],[173,-12],[158.60986,-12.11939],[144.88891,-12.00696],[144.32409,-9.26347],[142.62997,-9.35315],[142.17979,-9.18656],[142.06744,-9.24768],[130,-10],[130,2.5]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:D2:**Angola#TN:**Republic of Congo#TR:**Gabon#3C0:**Annobon Island#9Q:**Democratic Republic of Congo#9U:**Burundi#9X:**Rwanda","itu_zone_number":52,"itu_zone_name_loc":[-7,17]},"geometry":{"type":"Polygon","coordinates":[[[5,0],[8,0],[8,1],[9.36582,1],[9.58786,1.01923],[9.6633,1.0636],[9.7551,1.06347],[9.8002,1.00018],[9.84255,1.00279],[9.88845,0.98488],[9.89237,0.95637],[9.93141,0.93662],[9.94848,0.91688],[9.99085,0.93505],[9.99203,0.99717],[11.33801,0.99862],[11.33268,2.17257],[11.35847,2.17226],[11.35942,2.22158],[11.37913,2.25173],[11.37686,2.29286],[11.6957,2.31342],[11.75636,2.27361],[12.00105,2.29143],[12.21128,2.27838],[12.25048,2.25265],[12.30616,2.27631],[12.46868,2.25157],[12.57071,2.26632],[12.67823,2.24264],[12.7418,2.2272],[12.80655,2.24693],[12.89052,2.23646],[12.93638,2.2428],[13.08112,2.24915],[13.13523,2.28568],[13.18933,2.28379],[13.28792,2.24708],[13.29863,2.16645],[14.28984,2.17164],[14.41273,2.18757],[14.44773,2.12665],[14.60013,2.20518],[14.65573,2.14152],[14.769,2.09707],[14.77654,2.07046],[14.83473,2.06861],[14.87094,2.10793],[14.8815,2.07201],[14.91128,2.0608],[14.8875,2.01801],[14.92415,1.99993],[14.96122,2.0055],[14.9873,2.03028],[15.04221,1.98103],[15.10606,1.98659],[15.13661,2.02094],[15.1754,2.02785],[15.20939,2.03543],[15.24887,2.0238],[15.30208,1.97375],[15.30671,1.93774],[15.33237,1.93895],[15.3443,1.91546],[15.48571,1.98165],[15.74593,1.91318],[15.88428,1.79247],[16.03311,1.76094],[16.01607,1.71531],[16.02649,1.65595],[16.06123,1.66196],[16.08224,1.68444],[16.09157,1.698],[16.11657,1.70208],[16.13881,1.68969],[16.14733,1.69788],[16.1476,1.71157],[16.1341,1.74328],[16.14257,1.76539],[16.13479,1.80001],[16.10985,1.84491],[16.10688,1.89119],[16.08401,1.88964],[16.07625,1.94505],[16.04788,1.9785],[16.05221,1.99252],[16.04967,2.01067],[16.07792,2.03689],[16.08106,2.04863],[16.07047,2.05625],[16.05753,2.0667],[16.08304,2.08675],[16.07933,2.13744],[16.08386,2.19911],[16.13618,2.19757],[16.14105,2.17553],[16.17988,2.20088],[16.19261,2.22073],[16.50901,2.83207],[16.51851,2.87557],[16.51059,2.90084],[16.48619,2.92063],[16.50299,2.96648],[16.49353,2.98803],[16.51215,3.03721],[16.53626,3.05896],[16.53896,3.07934],[16.50595,3.09424],[16.50452,3.16262],[16.52715,3.20366],[16.52748,3.24201],[16.52781,3.27213],[16.56685,3.32387],[16.58391,3.35917],[16.57685,3.38239],[16.58901,3.4056],[16.58586,3.4822],[16.66472,3.54903],[16.76078,3.55398],[16.85409,3.51782],[16.9419,3.55567],[17.03521,3.51676],[17.06807,3.55858],[17.15587,3.58122],[17.18461,3.56822],[17.24632,3.58537],[17.24612,3.61556],[17.32843,3.6101],[17.33932,3.57723],[17.36247,3.58138],[17.36366,3.60472],[17.39446,3.66093],[17.46371,3.70891],[17.60713,3.64726],[17.82303,3.62465],[17.85491,3.53626],[17.90357,3.55941],[17.93575,3.60175],[17.95282,3.56596],[17.97813,3.54662],[18.02738,3.55317],[18.07196,3.57126],[18.13852,3.56467],[18.16525,3.52382],[18.1755,3.4857],[18.23142,3.49058],[18.27037,3.59308],[18.31953,3.59013],[18.3577,3.60911],[18.39175,3.57874],[18.42114,3.58275],[18.40836,3.60257],[18.42944,3.61248],[18.44273,3.59825],[18.45876,3.60595],[18.45985,3.62972],[18.48292,3.65349],[18.53757,3.606],[18.55844,3.55198],[18.60128,3.47328],[18.62655,3.4749],[18.60845,3.5222],[18.58211,3.78059],[18.61458,3.93006],[18.64866,3.95411],[18.66077,3.99735],[18.61109,4.1714],[18.53943,4.31805],[18.60504,4.36929],[18.62665,4.35726],[18.68122,4.36165],[18.76289,4.40058],[18.80886,4.48879],[18.83011,4.58248],[18.907,4.65292],[19.01409,4.76716],[19.11019,4.94363],[19.20321,4.9443],[19.23855,5.01063],[19.36316,5.07697],[19.40898,5.12381],[19.48502,5.12415],[19.54273,5.15451],[19.61418,5.13015],[19.68842,5.14162],[19.8259,5.09891],[19.9086,4.9916],[19.93216,4.97596],[19.9667,4.98221],[20.01107,4.97009],[20.0998,4.9048],[20.18303,4.89014],[20.20955,4.83081],[20.25254,4.79338],[20.29291,4.7732],[20.34703,4.76944],[20.38301,4.72582],[20.39702,4.68493],[20.46349,4.61959],[20.45197,4.55257],[20.47436,4.5129],[20.51049,4.47597],[20.54524,4.43903],[20.58823,4.41032],[20.71232,4.43058],[20.79796,4.42619],[20.84652,4.44782],[20.94727,4.44206],[21.04252,4.40901],[21.09658,4.38417],[21.10531,4.34291],[21.21817,4.29214],[21.25537,4.33797],[21.28708,4.33998],[21.35213,4.28296],[21.44463,4.28619],[21.49089,4.26316],[21.55362,4.24834],[21.65162,4.31184],[21.77632,4.29103],[21.82961,4.27022],[21.8829,4.24394],[21.94937,4.23353],[21.99662,4.2423],[22.09717,4.21659],[22.1605,4.15923],[22.2403,4.11829],[22.44111,4.12683],[22.54726,4.21362],[22.54221,4.30379],[22.61407,4.36931],[22.58705,4.40608],[22.59299,4.47571],[22.65705,4.49447],[22.67992,4.47216],[22.70299,4.47505],[22.70684,4.52997],[22.73101,4.55766],[22.73816,4.62399],[22.78542,4.72381],[22.81592,4.72992],[22.84641,4.69771],[22.89339,4.75446],[22.88381,4.79064],[22.90444,4.81586],[22.93198,4.81158],[22.96783,4.83858],[23.01346,4.75764],[23.10853,4.70954],[23.16958,4.74747],[23.23675,4.67551],[23.26419,4.6719],[23.27789,4.64091],[23.32727,4.60903],[23.36088,4.61705],[23.38351,4.58674],[23.42603,4.60004],[23.42692,4.65405],[23.46559,4.68055],[23.50152,4.67969],[23.59238,4.75546],[23.67901,4.76598],[23.70859,4.78766],[23.77662,4.78197],[23.83075,4.83721],[23.85232,4.8142],[23.86565,4.81582],[23.89231,4.83274],[23.92212,4.81794],[23.95467,4.81409],[23.95661,4.85154],[23.96259,4.87321],[23.99878,4.873],[24.02398,4.86047],[24.04644,4.86983],[24.05153,4.8824],[24.11155,4.91686],[24.14411,4.88974],[24.16293,4.89547],[24.18991,4.93711],[24.23336,4.95686],[24.24661,4.93966],[24.26421,4.93517],[24.27633,4.95257],[24.26162,4.97291],[24.3037,5.0036],[24.35128,5.00693],[24.40229,5.03632],[24.38669,5.05594],[24.36241,5.0425],[24.34362,5.05368],[24.36235,5.07193],[24.36622,5.09884],[24.38107,5.11754],[24.4199,5.09387],[24.4297,5.06562],[24.45324,5.05925],[24.452,5.10133],[24.53467,5.08701],[24.55993,5.03374],[24.61869,5.03117],[24.63458,4.97403],[24.67314,4.97162],[24.65808,4.9198],[24.71647,4.9103],[24.72515,4.89475],[24.76381,4.90749],[24.78051,4.89835],[24.80335,4.92471],[24.8564,4.92917],[24.86276,4.95006],[24.90804,4.94971],[24.92382,4.9769],[24.96156,4.9904],[25.06037,4.92677],[25.08503,4.97669],[25.12207,4.98661],[25.12616,5.0102],[25.15061,5.0293],[25.17478,5.00457],[25.21228,5.00793],[25.24977,5.02498],[25.31652,5.03445],[25.32032,5.07983],[25.3351,5.09237],[25.34713,5.11997],[25.34543,5.1503],[25.3252,5.14986],[25.30221,5.18497],[25.32917,5.20595],[25.33141,5.25975],[25.35563,5.28346],[25.3746,5.29259],[25.36611,5.30718],[25.39018,5.33297],[25.40908,5.31031],[25.4527,5.33961],[25.48089,5.3613],[25.50047,5.3448],[25.54323,5.36116],[25.53379,5.38299],[25.5744,5.37738],[25.58509,5.3527],[25.61775,5.3499],[25.59519,5.32515],[25.63335,5.30594],[25.6332,5.32642],[25.65228,5.32775],[25.66345,5.31107],[25.70209,5.29987],[25.71945,5.26199],[25.73681,5.26788],[25.74137,5.23869],[25.7766,5.25691],[25.76401,5.26876],[25.78163,5.2806],[25.79717,5.26098],[25.77885,5.24434],[25.81089,5.24832],[25.80219,5.22159],[25.83194,5.1976],[25.85018,5.22373],[25.88127,5.22176],[25.9023,5.16606],[25.91694,5.18198],[25.90366,5.19951],[25.95195,5.20281],[25.97553,5.24713],[26.01436,5.21309],[26.06261,5.20838],[26.09773,5.2279],[26.14108,5.27205],[26.29724,5.15011],[26.34795,5.15177],[26.39866,5.13975],[26.48361,5.05553],[26.76337,5.10867],[26.80299,5.05181],[26.8591,5.04692],[26.90505,5.08194],[26.94002,5.14431],[27.02305,5.18616],[27.10608,5.2116],[27.18019,5.18438],[27.2502,5.14752],[27.32296,5.12981],[27.44238,5.0725],[27.44167,5.01922],[27.46018,4.99056],[27.5124,4.96205],[27.50555,4.93274],[27.56118,4.89346],[27.64942,4.89435],[27.7059,4.82363],[27.69843,4.79238],[27.7254,4.79141],[27.7359,4.80139],[27.77611,4.78303],[27.76927,4.69432],[27.79882,4.60753],[27.89873,4.5395],[27.93332,4.53686],[27.94869,4.57803],[28.04259,4.54401],[28.03542,4.47789],[28.08401,4.41608],[28.10145,4.44405],[28.1436,4.43094],[28.14215,4.40346],[28.1785,4.38287],[28.20661,4.35132],[28.27238,4.3566],[28.35874,4.35504],[28.38193,4.28227],[28.45564,4.28788],[28.51837,4.37566],[28.58246,4.38402],[28.60674,4.42113],[28.64773,4.42347],[28.67499,4.4395],[28.72635,4.54469],[28.80078,4.5658],[28.81204,4.49928],[28.8369,4.47972],[28.87607,4.49125],[28.92623,4.47815],[29.02655,4.49301],[29.04718,4.47169],[29.0788,4.45584],[29.08433,4.43726],[29.1338,4.42963],[29.22183,4.33886],[29.25062,4.35569],[29.25402,4.38328],[29.26567,4.39717],[29.30676,4.38429],[29.34499,4.3996],[29.35713,4.4505],[29.37476,4.47129],[29.40729,4.47726],[29.44805,4.52157],[29.4463,4.56463],[29.47575,4.59326],[29.46676,4.66502],[29.49347,4.69435],[29.5359,4.65852],[29.553,4.6721],[29.69887,4.61865],[29.74847,4.56866],[29.7664,4.58611],[29.82617,4.5565],[29.79838,4.51021],[29.80852,4.49459],[29.79711,4.42654],[29.80218,4.36944],[29.84655,4.33639],[29.89916,4.34715],[29.96592,4.28926],[29.94564,4.24195],[29.97685,4.21382],[30.02318,4.20759],[30.02967,4.17535],[30.06364,4.12941],[30.12232,4.11086],[30.15903,4.11422],[30.1679,4.03878],[30.18501,4.03182],[30.2165,3.93845],[30.2882,3.95651],[30.30223,3.91428],[30.34951,3.91751],[30.38688,3.89412],[30.41601,3.86525],[30.44515,3.87954],[30.47428,3.83354],[30.52627,3.8537],[30.55079,3.84098],[30.58198,3.72921],[30.55824,3.62292],[30.6219,3.60266],[30.6526,3.62078],[30.6833,3.64301],[30.73048,3.62139],[30.7754,3.6823],[30.79624,3.65366],[30.79705,3.61057],[30.80885,3.59488],[30.85991,3.57722],[30.86621,3.54508],[30.85151,3.52354],[30.85054,3.49925],[30.84791,3.48868],[30.86582,3.47791],[30.87921,3.48137],[30.88162,3.48893],[30.8988,3.50269],[30.94276,3.50754],[30.94072,3.49114],[30.93826,3.40604],[30.88896,3.33607],[30.89041,3.31891],[30.87602,3.30485],[30.86713,3.27708],[30.84064,3.26397],[30.82877,3.20531],[30.80361,3.12388],[30.79377,3.06397],[30.77295,3.05342],[30.78199,3.01754],[30.80711,3.0092],[30.82125,3.00908],[30.83813,2.96885],[30.85343,2.95834],[30.85226,2.93959],[30.89151,2.86188],[30.87681,2.7901],[30.83189,2.75124],[30.77599,2.60128],[30.75215,2.58254],[30.76358,2.49772],[30.74733,2.48686],[30.74205,2.44719],[30.75156,2.41602],[30.7803,2.43149],[30.83502,2.42127],[30.88405,2.34047],[30.93877,2.33026],[30.94406,2.36669],[30.95425,2.39452],[30.98917,2.40862],[31.03153,2.37645],[31.07328,2.34382],[31.0741,2.32537],[31.08591,2.30693],[31.06888,2.30083],[31.12903,2.26347],[31.144,2.2791],[31.16933,2.27868],[31.20291,2.29198],[31.2038,2.21991],[31.24887,2.19828],[31.31592,2.14783],[31.31543,2.11692],[31.23005,1.99715],[31.03205,1.75111],[30.71646,1.50123],[30.48038,1.21567],[30.45635,1.19735],[30.40177,1.19231],[30.36212,1.1994],[30.34718,1.17628],[30.33654,1.14653],[30.28745,1.17169],[30.2387,1.13415],[30.24317,1.1037],[30.23029,1.07887],[30.22566,1.04854],[30.22635,0.9904],[30.19133,0.95698],[30.17297,0.93215],[30.17108,0.90457],[30.14259,0.88511],[30.10758,0.89103],[30.06158,0.87499],[29.99773,0.84521],[29.97783,0.82916],[29.96444,0.77501],[29.97304,0.74009],[29.96825,0.67573],[29.95418,0.64424],[29.97307,0.59352],[29.96947,0.5716],[29.98235,0.54967],[29.97789,0.50582],[29.87365,0.38518],[29.82435,0.16704],[29.77762,0.16728],[29.74189,0.12071],[29.71715,0.06865],[29.72398,0.01396],[29.74454,-0.02974],[29.72241,-0.07272],[29.7276,-0.08725],[29.65282,-0.45965],[29.67326,-0.47379],[29.67357,-0.55217],[29.68211,-0.56737],[29.66742,-0.59074],[29.64999,-0.60038],[29.66182,-0.6279],[29.63878,-0.68018],[29.62626,-0.70805],[29.63099,-0.80713],[29.64178,-0.82846],[29.63061,-0.8498],[29.62767,-0.87525],[29.63572,-0.90071],[29.58818,-0.89906],[29.58281,-0.90736],[29.59941,-0.98707],[29.58442,-0.98988],[29.58866,-1.06135],[29.57815,-1.19344],[29.60657,-1.22694],[29.60705,-1.24644],[29.59104,-1.27418],[29.60573,-1.31867],[29.59115,-1.38568],[29.63989,-1.38733],[29.67489,-1.3835],[29.69994,-1.35687],[29.73324,-1.33573],[29.76516,-1.35166],[29.77837,-1.36787],[29.79708,-1.37308],[29.80049,-1.34728],[29.81731,-1.32752],[29.82313,-1.30775],[29.86192,-1.36075],[29.88148,-1.35883],[29.88731,-1.42556],[29.89297,-1.45069],[29.91511,-1.48268],[29.98822,-1.45259],[30.02013,-1.41426],[30.05669,-1.43491],[30.05479,-1.40064],[30.08396,-1.37055],[30.11894,-1.38588],[30.13799,-1.35676],[30.16527,-1.34687],[30.17196,-1.27244],[30.20748,-1.27765],[30.28195,-1.19927],[30.30408,-1.14635],[30.34543,-1.12638],[30.33887,-1.09881],[30.35429,-1.06574],[30.42534,-1.06328],[30.4485,-1.04832],[30.47386,-1.05762],[30.45262,-1.08299],[30.4587,-1.12099],[30.47301,-1.1233],[30.4736,-1.15718],[30.49723,-1.16039],[30.50714,-1.17184],[30.55225,-1.25472],[30.56244,-1.29478],[30.55793,-1.30795],[30.57264,-1.34033],[30.61398,-1.35179],[30.63008,-1.38262],[30.68464,-1.39699],[30.73883,-1.45043],[30.74358,-1.51759],[30.83897,-1.65066],[30.82074,-1.69831],[30.82998,-1.8146],[30.80727,-1.93737],[30.86457,-2.02895],[30.89716,-2.07387],[30.84872,-2.20387],[30.84279,-2.24186],[30.85609,-2.31279],[30.84111,-2.32527],[30.82613,-2.35696],[30.80016,-2.36669],[30.77419,-2.39015],[30.71365,-2.35572],[30.65861,-2.41186],[30.62278,-2.39939],[30.57878,-2.41648],[30.54027,-2.41436],[30.48339,-2.55856],[30.42102,-2.65886],[30.43143,-2.68097],[30.46548,-2.69203],[30.5237,-2.65229],[30.5307,-2.67185],[30.48614,-2.72141],[30.46951,-2.72077],[30.46111,-2.73658],[30.43883,-2.75176],[30.44542,-2.78075],[30.41081,-2.86185],[30.43333,-2.87257],[30.43773,-2.89713],[30.45036,-2.91347],[30.50365,-2.95411],[30.57357,-2.89375],[30.64561,-2.95683],[30.65004,-2.97328],[30.67095,-2.99248],[30.69939,-2.97155],[30.7498,-2.99452],[30.85062,-2.97736],[30.7982,-3.06376],[30.84191,-3.1008],[30.84168,-3.2064],[30.81135,-3.22355],[30.8387,-3.25715],[30.76331,-3.29089],[30.73897,-3.26368],[30.71737,-3.30502],[30.6632,-3.32463],[30.6358,-3.36412],[30.67432,-3.39812],[30.66897,-3.42501],[30.63474,-3.45638],[30.58678,-3.48227],[30.5347,-3.50268],[30.51283,-3.52858],[30.49127,-3.52249],[30.44541,-3.56514],[30.45818,-3.59675],[30.43023,-3.63174],[30.38855,-3.71881],[30.41041,-3.76028],[30.40479,-3.799],[30.38533,-3.78327],[30.35076,-3.77164],[30.32992,-3.79017],[30.30424,-3.84782],[30.25796,-3.89123],[30.21559,-3.99377],[30.22816,-4.01412],[30.22219,-4.03925],[30.20523,-4.04795],[30.18552,-4.05801],[30.19054,-4.08177],[30.07601,-4.1741],[30.04113,-4.2719],[30.01385,-4.27454],[30.00031,-4.29361],[29.98146,-4.29615],[29.95475,-4.33135],[29.86837,-4.37984],[29.82309,-4.36133],[29.76133,-4.42497],[29.76964,-4.45367],[29.75605,-4.46725],[29.66354,-4.44765],[29.41996,-4.44996],[29.43242,-4.54033],[29.34489,-4.7737],[29.34251,-4.89484],[29.38271,-5.0543],[29.46135,-5.19188],[29.53285,-5.45344],[29.60019,-5.58013],[29.63524,-5.74597],[29.6126,-5.80249],[29.51272,-5.92255],[29.49523,-5.99616],[29.49747,-6.04868],[29.53268,-6.1804],[29.55414,-6.31485],[29.65664,-6.45339],[29.71056,-6.60242],[29.89683,-6.7615],[30.04189,-6.82511],[30.17996,-6.94863],[30.30394,-7.12756],[30.39477,-7.31785],[30.43891,-7.51632],[30.45549,-7.58419],[30.52695,-7.69707],[30.59841,-7.80178],[30.70298,-7.9784],[30.77203,-8.20381],[28.89206,-8.47755],[28.9529,-8.59025],[28.95331,-8.69209],[28.85347,-8.8523],[28.67948,-9.05866],[28.379,-9.2491],[28.41004,-9.28902],[28.52347,-9.35605],[28.5188,-9.44211],[28.59612,-9.55291],[28.62094,-9.72277],[28.6952,-9.81141],[28.62939,-9.93531],[28.62669,-10.14873],[28.57316,-10.21489],[28.63703,-10.30473],[28.624,-10.36214],[28.65209,-10.51622],[28.68566,-10.6541],[28.66949,-10.68808],[28.66141,-10.71991],[28.61625,-10.71666],[28.57715,-10.79933],[28.48174,-11.09779],[28.49692,-11.16348],[28.44894,-11.37611],[28.39473,-11.50664],[28.40095,-11.5995],[28.42857,-11.7421],[28.49739,-11.87932],[28.71149,-11.98039],[28.86798,-12.14376],[29.01763,-12.29524],[29.04851,-12.38171],[29.16729,-12.40378],[29.27015,-12.36535],[29.47539,-12.47489],[29.52857,-12.40089],[29.44024,-12.33409],[29.50594,-12.24164],[29.57164,-12.20288],[29.66459,-12.24345],[29.7605,-12.15635],[29.81521,-12.15247],[29.81414,-13.44083],[29.71494,-13.45441],[29.60475,-13.40923],[29.67551,-13.22798],[29.62817,-13.25255],[29.58632,-13.2076],[29.18273,-13.4501],[29.13344,-13.36657],[29.01274,-13.41663],[28.78508,-12.95753],[28.64927,-12.83506],[28.56489,-12.90237],[28.46777,-12.72177],[28.53544,-12.6376],[28.31876,-12.42002],[28.05135,-12.39015],[27.88282,-12.2315],[27.63364,-12.27915],[27.5063,-12.15801],[27.45587,-11.95095],[27.38671,-11.86085],[27.21867,-11.77074],[27.2012,-11.57977],[27.05828,-11.6033],[26.99781,-11.85709],[26.86043,-11.9926],[26.37684,-11.97541],[25.94799,-11.87646],[25.321,-11.6138],[25.30375,-11.37243],[25.35242,-11.19568],[24.82491,-11.29948],[24.48416,-11.46792],[24.30272,-11.37777],[24.40426,-11.23575],[24.38362,-11.09469],[24.28507,-11.03247],[24.16456,-11.03494],[24.12095,-10.9053],[24.01141,-10.90509],[24.02094,-11.24321],[24.06343,-11.4089],[23.9946,-11.62187],[23.97778,-12.17722],[24.06825,-12.34221],[23.939,-12.57158],[23.88115,-12.79556],[24.02106,-12.99812],[22.00241,-13.00087],[21.99975,-16.17237],[22.07327,-16.23868],[22.08087,-16.28391],[22.12555,-16.34364],[22.13415,-16.417],[22.13159,-16.48001],[22.14276,-16.49035],[22.47656,-16.77131],[22.74233,-17.05381],[23.07847,-17.34723],[23.20586,-17.48332],[23.43529,-17.6073],[23.43401,-17.63702],[21.42353,-18.02662],[21.3088,-17.98042],[21.21055,-17.92899],[20.96461,-17.96723],[20.83615,-18.03859],[20.75681,-18.0168],[20.70769,-18.01591],[20.65307,-17.98106],[20.6012,-17.97755],[20.54246,-17.98189],[20.50416,-17.95205],[20.47411,-17.94573],[20.45448,-17.91095],[20.38816,-17.89708],[20.31869,-17.86542],[20.13717,-17.91449],[19.85871,-17.86001],[19.75243,-17.90596],[19.62419,-17.86826],[19.31994,-17.84295],[19.13992,-17.81325],[19.09848,-17.8375],[18.87278,-17.81281],[18.7336,-17.71359],[18.61639,-17.63008],[18.62778,-17.6088],[18.60071,-17.5823],[18.56855,-17.58164],[18.54818,-17.55416],[18.51293,-17.49396],[18.48088,-17.47831],[18.47721,-17.45228],[18.42042,-17.38975],[14.21877,-17.3923],[14.21319,-17.40158],[14.21311,-17.41086],[14.19861,-17.41425],[14.18685,-17.41239],[14.1618,-17.41676],[14.15133,-17.42779],[14.14224,-17.42965],[14.1249,-17.43609],[14.11581,-17.42419],[14.10208,-17.43948],[14.07737,-17.43511],[14.05231,-17.42736],[14.04373,-17.42092],[14.03789,-17.42365],[14.01283,-17.41458],[14.00442,-17.42075],[14.00013,-17.43085],[13.98744,-17.43533],[13.98023,-17.42736],[13.95655,-17.43381],[13.92612,-17.41167],[13.93151,-17.40519],[13.92866,-17.39741],[13.9154,-17.38641],[13.91725,-17.37804],[13.9053,-17.37074],[13.89884,-17.36213],[13.8873,-17.35933],[13.87245,-17.34325],[13.85758,-17.34291],[13.84821,-17.33734],[13.83746,-17.32848],[13.82396,-17.32618],[13.78509,-17.30387],[13.77629,-17.29402],[13.76063,-17.2868],[13.73755,-17.26973],[13.71661,-17.26641],[13.69499,-17.24736],[13.68427,-17.24866],[13.66393,-17.23554],[13.63835,-17.20929],[13.61553,-17.20009],[13.5927,-17.17909],[13.55108,-17.1539],[13.54244,-17.14731],[13.53312,-17.14465],[13.51104,-17.1354],[13.50808,-17.12609],[13.51731,-17.12088],[13.52105,-17.11305],[13.52274,-17.10699],[13.52169,-17.10029],[13.52097,-17.09016],[13.49815,-17.06866],[13.48425,-17.03797],[13.47773,-17.0335],[13.4767,-17.02575],[13.46847,-17.02095],[13.46366,-17.0109],[13.44341,-17.00951],[13.42813,-17.00159],[13.41767,-16.99761],[13.40857,-16.9988],[13.39879,-16.99671],[13.39416,-16.99594],[13.39081,-16.99062],[13.38678,-16.98859],[13.37923,-16.98305],[13.3703,-16.98146],[13.36241,-16.97953],[13.35383,-16.97432],[13.3512,-16.97417],[13.34342,-16.9773],[13.32959,-16.98291],[13.31524,-16.98572],[13.30926,-16.98795],[13.30157,-16.98821],[13.2945,-16.99088],[13.2864,-16.9929],[13.28091,-16.99468],[13.27131,-16.99941],[13.25795,-16.99279],[13.25487,-16.99388],[13.25316,-16.99629],[13.25076,-16.99869],[13.24699,-17.00012],[13.23842,-16.99606],[13.24118,-16.993],[13.23686,-16.9878],[13.23219,-16.98621],[13.22375,-16.98462],[13.21943,-16.98632],[13.2042,-16.98916],[13.20097,-16.98904],[13.19809,-16.98467],[13.19751,-16.98198],[13.19898,-16.97996],[13.2008,-16.9776],[13.19953,-16.97393],[13.18638,-16.96928],[13.18113,-16.97152],[13.17982,-16.97384],[13.17646,-16.97255],[13.16938,-16.96341],[13.16518,-16.96528],[13.16102,-16.96523],[13.15514,-16.96452],[13.15145,-16.96705],[13.146,-16.96552],[13.14055,-16.9653],[13.12151,-16.96901],[13.10898,-16.97242],[13.1016,-16.97484],[13.09972,-16.97792],[13.09715,-16.97936],[13.09053,-16.98032],[13.0873,-16.97719],[13.08305,-16.97569],[13.07667,-16.97564],[13.06289,-16.97289],[13.0516,-16.98059],[13.04417,-16.97998],[13.03711,-16.98157],[13.03245,-16.97724],[13.02794,-16.97712],[13.01969,-16.98191],[12.98363,-16.98211],[12.97541,-16.99018],[12.97019,-16.98987],[12.96668,-16.9912],[12.96619,-17.00075],[12.96261,-17.01031],[12.95327,-17.01032],[12.94808,-17.00984],[12.94392,-17.01231],[12.94772,-17.01809],[12.9428,-17.02019],[12.93941,-17.01851],[12.92887,-17.01976],[12.92261,-17.02166],[12.91499,-17.0216],[12.90763,-17.02877],[12.90336,-17.03693],[12.8907,-17.04405],[12.8727,-17.04794],[12.87118,-17.05839],[12.87241,-17.06622],[12.84617,-17.07799],[12.83555,-17.08869],[12.82356,-17.08495],[12.81056,-17.1011],[12.80511,-17.11593],[12.77907,-17.12158],[12.76332,-17.1397],[12.73659,-17.146],[12.73421,-17.15112],[12.72359,-17.15624],[12.71435,-17.1594],[12.71334,-17.17174],[12.70573,-17.17315],[12.69984,-17.16865],[12.69466,-17.16993],[12.68879,-17.1722],[12.68464,-17.17299],[12.68015,-17.1764],[12.67738,-17.17345],[12.67357,-17.17215],[12.66901,-17.17502],[12.66616,-17.17954],[12.66542,-17.18139],[12.66297,-17.18258],[12.65841,-17.18594],[12.65597,-17.18538],[12.64685,-17.19055],[12.64665,-17.19442],[12.64421,-17.19746],[12.63746,-17.19871],[12.6322,-17.199],[12.63174,-17.20291],[12.62622,-17.20599],[12.62172,-17.20678],[12.61723,-17.20625],[12.61102,-17.20934],[12.60564,-17.21632],[12.60862,-17.2267],[12.6061,-17.23118],[12.60197,-17.22903],[12.59921,-17.23213],[12.59679,-17.23572],[12.59094,-17.23177],[12.5813,-17.23043],[12.57852,-17.2281],[12.57182,-17.23529],[12.56873,-17.23734],[12.56461,-17.23938],[12.56495,-17.2438],[12.55954,-17.2414],[12.5531,-17.24063],[12.54378,-17.23926],[12.5422,-17.24296],[12.54181,-17.24797],[12.53593,-17.2461],[12.53292,-17.24253],[12.52425,-17.24813],[12.51034,-17.2453],[12.4942,-17.24798],[12.4808,-17.24279],[12.47771,-17.25072],[12.46912,-17.25472],[12.46156,-17.25806],[12.45263,-17.25484],[12.44714,-17.26342],[12.43615,-17.26282],[12.44023,-17.25051],[12.43745,-17.24475],[12.43055,-17.24031],[12.43601,-17.22275],[12.4235,-17.20768],[12.42102,-17.2131],[12.41579,-17.2113],[12.40851,-17.20721],[12.39642,-17.20771],[12.39325,-17.21346],[12.3942,-17.22117],[12.38667,-17.21873],[12.37364,-17.22678],[12.37023,-17.23384],[12.35925,-17.22918],[12.3517,-17.21861],[12.34374,-17.22387],[12.33234,-17.22586],[12.32747,-17.22915],[12.31779,-17.22851],[12.30983,-17.23492],[12.29568,-17.23412],[12.28429,-17.24217],[12.27069,-17.23275],[12.26259,-17.23251],[12.25362,-17.24069],[12.23435,-17.2351],[12.2298,-17.22458],[12.21688,-17.21785],[12.21082,-17.21898],[12.19941,-17.20814],[12.19485,-17.19729],[12.1824,-17.19628],[12.17579,-17.17789],[12.16128,-17.16146],[12.14781,-17.16045],[12.13158,-17.16732],[12.1181,-17.15713],[12.10462,-17.16005],[12.08179,-17.14229],[12.05801,-17.15572],[12.03423,-17.15077],[12.02558,-17.1564],[12.02236,-17.16192],[12.01778,-17.16055],[12.00741,-17.16601],[11.99909,-17.16853],[11.99586,-17.17112],[11.98678,-17.17273],[11.9834,-17.17268],[11.97418,-17.17672],[11.96324,-17.17486],[11.96037,-17.17685],[11.95877,-17.17965],[11.95579,-17.18213],[11.95109,-17.18157],[11.94777,-17.18035],[11.94318,-17.18054],[11.93834,-17.18454],[11.93213,-17.19051],[11.92368,-17.19468],[11.92169,-17.19643],[11.91763,-17.19622],[11.91039,-17.19965],[11.909,-17.20202],[11.9052,-17.20439],[11.90184,-17.20414],[11.90053,-17.20651],[11.89768,-17.20707],[11.89174,-17.21026],[11.88437,-17.22491],[11.8697,-17.23289],[11.86116,-17.23409],[11.85818,-17.24133],[11.85489,-17.23962],[11.84954,-17.24218],[11.84612,-17.23567],[11.83755,-17.23605],[11.83436,-17.23853],[11.831,-17.24248],[11.82361,-17.25495],[11.82146,-17.25803],[11.82,-17.26209],[11.81674,-17.26464],[11.81243,-17.26451],[11.80846,-17.26864],[11.79881,-17.26772],[11.79396,-17.27467],[11.77552,-17.25938],[11.75845,-17.25328],[11.5,-17],[5,-17],[5,0]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!!!!!!!!:C9:**Mozambique#D6:**Comoros#FH:**Mayotte#FR:**Reunion#FT...G:**Glorioso Island#FT...J:**Juan de Nova#FT...E:**Europa islands#FT...T:**Tromelin Island#S7:**Seychelles#Z2:**Zimbabwe#3B6:**Agalega & St. Brandon Islands#3B8:**Mauritius#3B9:**Rodrigues Island#5H:**Tanzania#5R:**Madagascar#7Q:**Malawi#9J:**Zambia","itu_zone_number":53,"itu_zone_name_loc":[-12.5,45]},"geometry":{"type":"Polygon","coordinates":[[[23.43401,-17.63702],[23.43529,-17.6073],[23.20586,-17.48332],[23.07847,-17.34723],[22.74233,-17.05381],[22.47656,-16.77131],[22.14276,-16.49035],[22.13159,-16.48001],[22.13415,-16.417],[22.12555,-16.34364],[22.08087,-16.28391],[22.07327,-16.23868],[21.99975,-16.17237],[22.00241,-13.00087],[24.02106,-12.99812],[23.88115,-12.79556],[23.939,-12.57158],[24.06825,-12.34221],[23.97778,-12.17722],[23.9946,-11.62187],[24.06343,-11.4089],[24.02094,-11.24321],[24.01141,-10.90509],[24.12095,-10.9053],[24.16456,-11.03494],[24.28507,-11.03247],[24.38362,-11.09469],[24.40426,-11.23575],[24.30272,-11.37777],[24.48416,-11.46792],[24.82491,-11.29948],[25.35242,-11.19568],[25.30375,-11.37243],[25.321,-11.6138],[25.94799,-11.87646],[26.37684,-11.97541],[26.86043,-11.9926],[26.99781,-11.85709],[27.05828,-11.6033],[27.2012,-11.57977],[27.21867,-11.77074],[27.38671,-11.86085],[27.45587,-11.95095],[27.5063,-12.15801],[27.63364,-12.27915],[27.88282,-12.2315],[28.05135,-12.39015],[28.31876,-12.42002],[28.53544,-12.6376],[28.46777,-12.72177],[28.56489,-12.90237],[28.64927,-12.83506],[28.78508,-12.95753],[29.01274,-13.41663],[29.13344,-13.36657],[29.18273,-13.4501],[29.58632,-13.2076],[29.62817,-13.25255],[29.67551,-13.22798],[29.60475,-13.40923],[29.71494,-13.45441],[29.81414,-13.44083],[29.81521,-12.15247],[29.7605,-12.15635],[29.66459,-12.24345],[29.57164,-12.20288],[29.50594,-12.24164],[29.44024,-12.33409],[29.52857,-12.40089],[29.47539,-12.47489],[29.27015,-12.36535],[29.16729,-12.40378],[29.04851,-12.38171],[29.01763,-12.29524],[28.86798,-12.14376],[28.71149,-11.98039],[28.49739,-11.87932],[28.42857,-11.7421],[28.40095,-11.5995],[28.39473,-11.50664],[28.44894,-11.37611],[28.49692,-11.16348],[28.48174,-11.09779],[28.57715,-10.79933],[28.61625,-10.71666],[28.66141,-10.71991],[28.66949,-10.68808],[28.68566,-10.6541],[28.65209,-10.51622],[28.624,-10.36214],[28.63703,-10.30473],[28.57316,-10.21489],[28.62669,-10.14873],[28.62939,-9.93531],[28.6952,-9.81141],[28.62094,-9.72277],[28.59612,-9.55291],[28.5188,-9.44211],[28.52347,-9.35605],[28.41004,-9.28902],[28.379,-9.2491],[28.67948,-9.05866],[28.85347,-8.8523],[28.95331,-8.69209],[28.9529,-8.59025],[28.89206,-8.47755],[30.77203,-8.20381],[30.70298,-7.9784],[30.59841,-7.80178],[30.52695,-7.69707],[30.45549,-7.58419],[30.43891,-7.51632],[30.39477,-7.31785],[30.30394,-7.12756],[30.17996,-6.94863],[30.04189,-6.82511],[29.89683,-6.7615],[29.71056,-6.60242],[29.65664,-6.45339],[29.55414,-6.31485],[29.53268,-6.1804],[29.49747,-6.04868],[29.49523,-5.99616],[29.51272,-5.92255],[29.6126,-5.80249],[29.63524,-5.74597],[29.60019,-5.58013],[29.53285,-5.45344],[29.46135,-5.19188],[29.38271,-5.0543],[29.34251,-4.89484],[29.34489,-4.7737],[29.43242,-4.54033],[29.41996,-4.44996],[29.66354,-4.44765],[29.75605,-4.46725],[29.76964,-4.45367],[29.76133,-4.42497],[29.82309,-4.36133],[29.86837,-4.37984],[29.95475,-4.33135],[29.98146,-4.29615],[30.00031,-4.29361],[30.01385,-4.27454],[30.04113,-4.2719],[30.07601,-4.1741],[30.19054,-4.08177],[30.18552,-4.05801],[30.20523,-4.04795],[30.22219,-4.03925],[30.22816,-4.01412],[30.21559,-3.99377],[30.25796,-3.89123],[30.30424,-3.84782],[30.32992,-3.79017],[30.35076,-3.77164],[30.38533,-3.78327],[30.40479,-3.799],[30.41041,-3.76028],[30.38855,-3.71881],[30.43023,-3.63174],[30.45818,-3.59675],[30.44541,-3.56514],[30.49127,-3.52249],[30.51283,-3.52858],[30.5347,-3.50268],[30.58678,-3.48227],[30.63474,-3.45638],[30.66897,-3.42501],[30.67432,-3.39812],[30.6358,-3.36412],[30.6632,-3.32463],[30.71737,-3.30502],[30.73897,-3.26368],[30.76331,-3.29089],[30.8387,-3.25715],[30.81135,-3.22355],[30.84168,-3.2064],[30.84191,-3.1008],[30.7982,-3.06376],[30.85062,-2.97736],[30.7498,-2.99452],[30.69939,-2.97155],[30.67095,-2.99248],[30.65004,-2.97328],[30.64561,-2.95683],[30.57357,-2.89375],[30.50365,-2.95411],[30.45036,-2.91347],[30.43773,-2.89713],[30.43333,-2.87257],[30.41081,-2.86185],[30.44542,-2.78075],[30.43883,-2.75176],[30.46111,-2.73658],[30.46951,-2.72077],[30.48614,-2.72141],[30.5307,-2.67185],[30.5237,-2.65229],[30.46548,-2.69203],[30.43143,-2.68097],[30.42102,-2.65886],[30.48339,-2.55856],[30.54027,-2.41436],[30.57878,-2.41648],[30.62278,-2.39939],[30.65861,-2.41186],[30.71365,-2.35572],[30.77419,-2.39015],[30.80016,-2.36669],[30.82613,-2.35696],[30.84111,-2.32527],[30.85609,-2.31279],[30.84279,-2.24186],[30.84872,-2.20387],[30.89716,-2.07387],[30.86457,-2.02895],[30.80727,-1.93737],[30.82998,-1.8146],[30.82074,-1.69831],[30.83897,-1.65066],[30.74358,-1.51759],[30.73883,-1.45043],[30.68464,-1.39699],[30.63008,-1.38262],[30.61398,-1.35179],[30.57264,-1.34033],[30.55793,-1.30795],[30.56244,-1.29478],[30.55225,-1.25472],[30.50714,-1.17184],[30.49723,-1.16039],[30.4736,-1.15718],[30.47301,-1.1233],[30.4587,-1.12099],[30.45262,-1.08299],[30.47386,-1.05762],[30.49167,-1.06143],[30.51287,-1.07455],[30.54221,-1.07538],[30.58254,-1.05973],[30.64947,-1.06688],[30.66771,-1.05482],[30.67222,-1.04],[30.69496,-1.01313],[30.71572,-1.0143],[30.76548,-0.98369],[30.79909,-0.99937],[34.01135,-0.99957],[34.01833,-1.00279],[34.02805,-1.01356],[34.02827,-1.02549],[34.02786,-1.03334],[34.03089,-1.04051],[34.03769,-1.04596],[34.04587,-1.0466],[34.07969,-1.02155],[35.8564,-2.02381],[37.51227,-2.95293],[37.6733,-3.06109],[37.71202,-3.31141],[37.68562,-3.32299],[37.68529,-3.35081],[37.68092,-3.35666],[37.66402,-3.3584],[37.6177,-3.40357],[37.58444,-3.44068],[37.58656,-3.46282],[37.61578,-3.46293],[37.62489,-3.46847],[37.62602,-3.48631],[37.59677,-3.5223],[37.62335,-3.52796],[37.66778,-3.5062],[37.69003,-3.51889],[37.70109,-3.5296],[37.72313,-3.53757],[37.74524,-3.54528],[37.76199,-3.61671],[37.7856,-3.67718],[38.68495,-4.30718],[39.21428,-4.67826],[39.69966,-4.74546],[50,0],[60,0],[65,-20],[60,-27],[33,-27],[32.89373,-26.857],[32.85914,-26.86327],[32.79796,-26.86423],[32.77661,-26.86151],[32.72848,-26.86675],[32.6982,-26.86832],[32.51572,-26.86371],[32.33186,-26.864],[32.32972,-26.86165],[32.32415,-26.85378],[32.31918,-26.85214],[32.31387,-26.8551],[32.30856,-26.85622],[32.29416,-26.85263],[32.28765,-26.8536],[32.28113,-26.84905],[32.27573,-26.8494],[32.26347,-26.84731],[32.25636,-26.84919],[32.25383,-26.84339],[32.24718,-26.84005],[32.23639,-26.83953],[32.2201,-26.83227],[32.21188,-26.83627],[32.20777,-26.8398],[32.20743,-26.84279],[32.20572,-26.847],[32.20607,-26.85345],[32.20299,-26.85621],[32.1982,-26.8553],[32.18722,-26.86419],[32.15808,-26.85748],[32.14282,-26.8477],[32.14171,-26.84127],[32.13443,-26.83975],[32.13492,-26.5272],[32.07766,-26.40524],[32.07443,-26.30614],[32.10314,-26.17102],[32.08576,-26.02989],[32.08761,-26.00873],[32.03003,-26.00029],[32.01039,-25.99324],[32.00311,-25.99699],[31.97587,-25.95336],[31.93065,-25.8403],[31.97839,-25.693],[31.99642,-25.6763],[32.00587,-25.64505],[32.00535,-25.60474],[32.00038,-25.58516],[31.9954,-25.52621],[31.98006,-25.52419],[31.97712,-25.50908],[31.9781,-25.49283],[31.97736,-25.47441],[31.97903,-25.46668],[31.97897,-25.45803],[31.98615,-25.44354],[31.9899,-25.4303],[32.01453,-25.38638],[32.0268,-25.26211],[32.03629,-25.13251],[31.99736,-24.69592],[32.01061,-24.46112],[31.98542,-24.30632],[31.90735,-24.1803],[31.88421,-23.9553],[31.76758,-23.88479],[31.69765,-23.72385],[31.68961,-23.62814],[31.66392,-23.58777],[31.56131,-23.48194],[31.54837,-23.41635],[31.56368,-23.1869],[31.30724,-22.42436],[31.29489,-22.41034],[31.28854,-22.40492],[31.27635,-22.3849],[31.27618,-22.37924],[31.27087,-22.3685],[31.25799,-22.36284],[31.244,-22.36335],[31.23409,-22.36574],[31.22604,-22.36948],[31.22006,-22.37068],[31.21064,-22.36913],[31.20087,-22.36234],[31.19439,-22.3494],[31.1831,-22.3355],[31.17162,-22.32982],[31.15739,-22.32796],[31.12348,-22.33859],[31.10171,-22.34613],[31.08682,-22.34859],[31.06329,-22.34286],[31.02714,-22.32634],[30.9965,-22.31522],[30.99059,-22.32606],[30.98194,-22.32705],[30.97535,-22.32487],[30.96739,-22.31443],[30.94494,-22.31482],[30.93966,-22.31013],[30.9315,-22.30076],[30.92276,-22.30096],[30.89892,-22.29607],[30.88351,-22.30473],[30.86983,-22.29886],[30.86027,-22.29743],[30.83977,-22.29141],[30.77395,-22.30477],[30.75783,-22.30469],[30.74994,-22.30779],[30.72593,-22.31017],[30.70744,-22.31749],[30.65991,-22.30861],[30.64602,-22.32355],[30.63221,-22.3361],[30.61843,-22.33317],[30.6129,-22.32706],[30.60634,-22.32206],[30.58433,-22.31817],[30.56523,-22.32199],[30.55369,-22.33056],[30.52212,-22.32502],[30.50359,-22.32225],[30.4878,-22.31567],[30.4727,-22.32115],[30.44387,-22.33553],[30.39857,-22.34523],[30.37866,-22.35167],[30.36837,-22.34794],[30.3567,-22.34676],[30.34092,-22.35066],[30.31621,-22.34702],[30.30248,-22.35536],[30.28876,-22.35735],[30.27215,-22.34594],[30.25416,-22.31548],[30.24242,-22.31168],[30.23755,-22.30407],[30.23336,-22.29773],[30.22506,-22.2952],[30.15586,-22.30038],[30.1271,-22.31361],[30.10109,-22.28619],[30.07439,-22.27464],[30.0576,-22.25616],[30.03258,-22.25675],[30.02138,-22.25256],[30.01978,-22.22931],[29.99622,-22.22831],[29.96991,-22.22095],[29.92484,-22.18843],[29.88389,-22.19533],[29.86045,-22.17488],[29.82951,-22.17484],[29.8068,-22.16589],[29.77444,-22.14099],[29.72696,-22.14153],[29.7166,-22.14346],[29.70417,-22.13839],[29.69329,-22.13523],[29.67691,-22.13843],[29.67173,-22.13875],[29.66723,-22.13145],[29.65823,-22.12447],[29.64031,-22.13148],[29.63101,-22.13372],[29.62567,-22.13738],[29.62239,-22.14231],[29.61093,-22.15793],[29.59534,-22.14684],[29.58034,-22.13843],[29.56396,-22.15037],[29.53808,-22.15391],[29.53445,-22.15771],[29.53357,-22.16279],[29.53475,-22.16818],[29.5318,-22.17294],[29.52764,-22.17928],[29.5118,-22.17799],[29.49433,-22.17018],[29.47617,-22.16555],[29.45836,-22.16632],[29.44054,-22.16964],[29.43724,-22.17184],[29.42294,-22.1715],[29.42043,-22.17388],[29.41586,-22.17498],[29.40922,-22.17767],[29.4074,-22.181],[29.37425,-22.19618],[29.35767,-22.19036],[29.34453,-22.1731],[29.32829,-22.15393],[29.31548,-22.14557],[29.28594,-22.12028],[29.28009,-22.10389],[29.26909,-22.07605],[29.24676,-22.06094],[29.21916,-22.07025],[29.19087,-22.07575],[29.15949,-22.07583],[29.1288,-22.07019],[29.09982,-22.05803],[29.07428,-22.04141],[29.05355,-22.02224],[29.03624,-21.99734],[29.02684,-21.97594],[29.02087,-21.95135],[29.01936,-21.92613],[29.02265,-21.90091],[29.03076,-21.87552],[29.04367,-21.85332],[29.05898,-21.83463],[29.07704,-21.81785],[29.06394,-21.80198],[29.04736,-21.80008],[29.0356,-21.79626],[29.02417,-21.79181],[29.00657,-21.78927],[28.99952,-21.7708],[28.98535,-21.76826],[28.96225,-21.77592],[28.89044,-21.76006],[28.87889,-21.76007],[28.87489,-21.75753],[28.86918,-21.75531],[28.8614,-21.75627],[28.84276,-21.74099],[28.82962,-21.73463],[28.82205,-21.7329],[28.798,-21.73308],[28.78752,-21.72568],[28.77773,-21.71508],[28.76004,-21.70991],[28.74785,-21.70155],[28.70799,-21.68979],[28.67226,-21.67804],[28.66399,-21.6741],[28.65229,-21.65485],[28.63614,-21.65032],[28.62635,-21.6503],[28.61312,-21.6458],[28.59594,-21.64351],[28.58701,-21.63344],[28.57739,-21.6291],[28.57328,-21.6295],[28.5599,-21.64183],[28.55476,-21.64395],[28.53968,-21.64156],[28.52357,-21.65991],[28.50678,-21.66997],[28.49562,-21.66706],[28.48722,-21.66223],[28.47247,-21.65833],[28.45704,-21.6541],[28.44572,-21.64158],[28.43423,-21.63767],[28.42471,-21.63668],[28.41519,-21.63377],[28.40302,-21.62635],[28.3959,-21.62424],[28.38947,-21.61766],[28.36985,-21.60577],[28.36278,-21.60175],[28.35709,-21.60538],[28.35071,-21.60886],[28.33952,-21.60212],[28.33142,-21.59793],[28.31646,-21.59693],[28.30439,-21.59479],[28.29389,-21.58892],[28.28613,-21.592],[28.2538,-21.59528],[28.24551,-21.59728],[28.2205,-21.59801],[28.20099,-21.60385],[28.17941,-21.59692],[28.14617,-21.59318],[28.13118,-21.58652],[28.11687,-21.58561],[28.09879,-21.57799],[28.09032,-21.58187],[28.07893,-21.58431],[28.07373,-21.58101],[28.0668,-21.57834],[28.05027,-21.58014],[28.02038,-21.57608],[28.00724,-21.55586],[28.00781,-21.54724],[28.00254,-21.53942],[27.99539,-21.5324],[27.99372,-21.52539],[27.99712,-21.52244],[28.00086,-21.52141],[28.00389,-21.51647],[27.99037,-21.51634],[27.98258,-21.51595],[27.97684,-21.52514],[27.97043,-21.51805],[27.97546,-21.50716],[27.97294,-21.49754],[27.98059,-21.49172],[27.98345,-21.48463],[27.95949,-21.4751],[27.96399,-21.46522],[27.97674,-21.46046],[27.96548,-21.4391],[27.95149,-21.43053],[27.9592,-21.41594],[27.9444,-21.38421],[27.91894,-21.36806],[27.92094,-21.32889],[27.80409,-21.18017],[27.79273,-21.1814],[27.77313,-21.15702],[27.75316,-21.15179],[27.69611,-21.09092],[27.68887,-21.05536],[27.70361,-21.0403],[27.6998,-21.00345],[27.70973,-20.99993],[27.69768,-20.98615],[27.70761,-20.95955],[27.6897,-20.93778],[27.69651,-20.90061],[27.69096,-20.87114],[27.71288,-20.84423],[27.71791,-20.79579],[27.72935,-20.79645],[27.73164,-20.70672],[27.7036,-20.66329],[27.70577,-20.60445],[27.7266,-20.5613],[27.7298,-20.51873],[27.68402,-20.48504],[27.67462,-20.49474],[27.64806,-20.4993],[27.62377,-20.47946],[27.60222,-20.47957],[27.57519,-20.49511],[27.54815,-20.48363],[27.52112,-20.47859],[27.46979,-20.46722],[27.43494,-20.48158],[27.38594,-20.47912],[27.36165,-20.46764],[27.28783,-20.49894],[27.28406,-20.48817],[27.29813,-20.42465],[27.29608,-20.35937],[27.30432,-20.33052],[27.29943,-20.29724],[27.28835,-20.28071],[27.29093,-20.27082],[27.28509,-20.23302],[27.27677,-20.22268],[27.2657,-20.21492],[27.26698,-20.2004],[27.26003,-20.18329],[27.25025,-20.16713],[27.24733,-20.14581],[27.23222,-20.11855],[27.22261,-20.10943],[27.21849,-20.09644],[27.20613,-20.08086],[27.18485,-20.0756],[27.14434,-20.08066],[27.11241,-20.06578],[27.09559,-20.0496],[27.08477,-20.03197],[27.04374,-20.00789],[27.02881,-20.01026],[27.00564,-20.00747],[26.99259,-20.01308],[26.97139,-20.01476],[26.91586,-19.98934],[26.9023,-19.97979],[26.87801,-19.97276],[26.8496,-19.96315],[26.82737,-19.96192],[26.79909,-19.94905],[26.77905,-19.94392],[26.75356,-19.93544],[26.72532,-19.93987],[26.70292,-19.89847],[26.70386,-19.88935],[26.63915,-19.87175],[26.6225,-19.88385],[26.60593,-19.86035],[26.59349,-19.83815],[26.57958,-19.79504],[26.56225,-19.78293],[26.53847,-19.78269],[26.53529,-19.77083],[26.51512,-19.76922],[26.50435,-19.76066],[26.48672,-19.75727],[26.47114,-19.75259],[26.45281,-19.75308],[26.4299,-19.74501],[26.41659,-19.7308],[26.41016,-19.71013],[26.40441,-19.69204],[26.39535,-19.683],[26.38904,-19.66878],[26.35394,-19.67543],[26.32677,-19.66194],[26.32845,-19.65233],[26.34003,-19.63052],[26.35711,-19.61389],[26.32991,-19.59725],[26.31231,-19.57674],[26.25214,-19.58534],[26.23779,-19.58328],[26.21519,-19.56311],[26.20543,-19.56065],[26.18879,-19.55302],[26.16788,-19.54423],[26.16176,-19.52277],[26.15258,-19.49425],[26.14203,-19.43726],[26.12667,-19.42753],[26.11131,-19.3647],[26.09526,-19.34559],[26.08882,-19.32259],[26.07415,-19.29506],[26.07183,-19.27141],[26.06214,-19.263],[26.0442,-19.23515],[26.04403,-19.21184],[25.97916,-19.13152],[25.96149,-19.10078],[25.96579,-19.06355],[25.99637,-19.03062],[25.99124,-19.00809],[25.98474,-18.97386],[25.97531,-18.96048],[25.96863,-18.94191],[25.95389,-18.91645],[25.94088,-18.9032],[25.92411,-18.89938],[25.9087,-18.88776],[25.8727,-18.86055],[25.84234,-18.84824],[25.82434,-18.83334],[25.82053,-18.80658],[25.80711,-18.79153],[25.7885,-18.72112],[25.79325,-18.69492],[25.80348,-18.68693],[25.791,-18.6651],[25.78401,-18.62506],[25.77573,-18.61603],[25.76746,-18.6135],[25.75644,-18.60317],[25.74268,-18.59934],[25.72995,-18.59226],[25.71721,-18.59169],[25.70136,-18.57753],[25.69102,-18.57078],[25.68069,-18.55751],[25.67072,-18.54404],[25.66487,-18.52797],[25.65591,-18.51927],[25.64754,-18.49616],[25.60828,-18.4836],[25.57176,-18.43392],[25.51464,-18.37641],[25.51795,-18.36582],[25.49036,-18.2982],[25.45528,-18.24222],[25.45727,-18.22928],[25.44739,-18.21716],[25.44574,-18.20765],[25.43283,-18.18731],[25.41251,-18.14926],[25.3911,-18.11752],[25.37254,-18.12046],[25.36498,-18.11385],[25.36429,-18.10071],[25.35467,-18.0901],[25.32167,-18.0777],[25.3148,-18.06076],[25.30381,-18.05101],[25.28457,-18.01584],[25.28113,-18.00417],[25.2818,-17.98988],[25.26641,-17.95014],[25.25376,-17.94306],[25.23812,-17.91286],[25.24308,-17.89965],[25.238,-17.88781],[25.23842,-17.87467],[25.26482,-17.81491],[25.26375,-17.79176],[25.22304,-17.76755],[25.19074,-17.76934],[25.18546,-17.76478],[25.18018,-17.75859],[25.17662,-17.75256],[25.1679,-17.74522],[25.15923,-17.74477],[25.15604,-17.74138],[25.1554,-17.73706],[25.15921,-17.73275],[25.16114,-17.72942],[25.16135,-17.72347],[25.15697,-17.71419],[25.15156,-17.70622],[25.14879,-17.70441],[25.14508,-17.70416],[25.14233,-17.70538],[25.13853,-17.71151],[25.13517,-17.71216],[25.13308,-17.7092],[25.13587,-17.70036],[25.13408,-17.69404],[25.12508,-17.69213],[25.12015,-17.69378],[25.11111,-17.70197],[25.10629,-17.70655],[25.09923,-17.71016],[25.09422,-17.70886],[25.09334,-17.70387],[25.09804,-17.6996],[25.10059,-17.69723],[25.1016,-17.69419],[25.10448,-17.68682],[25.10924,-17.68009],[25.10834,-17.67615],[25.10401,-17.67417],[25.10722,-17.66729],[25.10426,-17.66563],[25.10066,-17.66298],[25.09293,-17.66426],[25.08503,-17.66027],[25.08366,-17.64116],[25.07576,-17.63599],[25.06915,-17.63519],[25.06585,-17.62988],[25.06598,-17.62392],[25.06765,-17.61566],[25.06108,-17.61461],[25.0552,-17.61388],[25.05688,-17.62362],[25.05474,-17.62906],[25.04849,-17.63156],[25.0431,-17.62849],[25.04217,-17.62281],[25.04685,-17.61366],[25.05176,-17.59927],[25.04751,-17.58949],[25.02555,-17.58426],[25.02372,-17.59266],[25.01775,-17.59613],[25.00697,-17.59796],[24.99665,-17.59057],[24.99113,-17.57827],[24.98905,-17.5627],[24.9801,-17.55368],[24.97329,-17.55226],[24.96374,-17.56394],[24.95281,-17.56514],[24.94326,-17.57027],[24.94126,-17.55708],[24.9475,-17.54911],[24.94076,-17.54759],[24.91148,-17.55437],[24.9028,-17.55198],[24.8956,-17.54572],[24.88102,-17.52703],[24.87626,-17.52672],[24.86978,-17.52869],[24.85665,-17.53019],[24.84069,-17.52563],[24.82971,-17.51943],[24.8097,-17.53047],[24.80197,-17.53725],[24.79587,-17.5368],[24.79098,-17.53487],[24.78865,-17.53008],[24.78599,-17.5135],[24.78048,-17.508],[24.7768,-17.50835],[24.77071,-17.51313],[24.76497,-17.5175],[24.75974,-17.51793],[24.75119,-17.51314],[24.74488,-17.51258],[24.72724,-17.50007],[24.70672,-17.49683],[24.69495,-17.50079],[24.67906,-17.50058],[24.66599,-17.49862],[24.66356,-17.49699],[24.6571,-17.49499],[24.64901,-17.49602],[24.64223,-17.49671],[24.63716,-17.50066],[24.63724,-17.50397],[24.64179,-17.5094],[24.64249,-17.51262],[24.64095,-17.51438],[24.63778,-17.5149],[24.63462,-17.51346],[24.62829,-17.51165],[24.62178,-17.51491],[24.6186,-17.52239],[24.61795,-17.5299],[24.60769,-17.53609],[24.58716,-17.53408],[24.57299,-17.53681],[24.56522,-17.5385],[24.55608,-17.53889],[24.55242,-17.53289],[24.55083,-17.52492],[24.54958,-17.51434],[24.54627,-17.50899],[24.53605,-17.50732],[24.52342,-17.51497],[24.50956,-17.51348],[24.48985,-17.49856],[24.4753,-17.48741],[24.45937,-17.48051],[24.44898,-17.47891],[24.43206,-17.47928],[24.39033,-17.46954],[24.36113,-17.47814],[24.33193,-17.49198],[24.32428,-17.49249],[24.31012,-17.48645],[24.28007,-17.4842],[24.275,-17.48684],[24.27199,-17.49112],[24.26182,-17.48892],[24.2537,-17.48115],[24.24949,-17.47446],[23.43401,-17.63702]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!:V8:**Brunei#VK9C:**Cocos-Keeling Islands#VK9X:**Christmas Islands#YB:**Indonesia, west of 130º E#4W:**East Timor#9M2:**West Malaysia#9M6:**East Malaysia#9V:**Singapore","itu_zone_number":54,"itu_zone_name_loc":[-2,115]},"geometry":{"type":"Polygon","coordinates":[[[89.999999,-13],[115,-13],[129,-10],[130,-10],[130,2.5],[127.00219,5.5],[119.1477,4.19658],[118.98877,4.79656],[119.45312,5.3708],[118.13962,6.04534],[117.93055,6.61753],[117.35361,7.39417],[116.78216,7.66089],[114.75624,5.79238],[108.53354,6.87119],[102.13866,6.2691],[102.09119,6.23429],[102.0805,6.22507],[102.07927,6.17131],[102.08484,6.16082],[102.09315,6.14486],[102.07803,6.12609],[102.06154,6.10185],[102.05328,6.08069],[102.03158,6.06636],[102.02091,6.05339],[102.00425,6.05237],[102.00278,6.04025],[101.98896,6.04042],[101.97916,6.02779],[101.97349,6.0097],[101.94205,5.98017],[101.94494,5.95337],[101.93013,5.94621],[101.93192,5.92581],[101.92527,5.92312],[101.92135,5.91087],[101.9318,5.90832],[101.94156,5.89074],[101.94171,5.86907],[101.93123,5.86079],[101.92898,5.85251],[101.91488,5.84142],[101.89666,5.84399],[101.89115,5.83724],[101.88701,5.84005],[101.87597,5.8197],[101.88,5.81044],[101.87236,5.80391],[101.86334,5.80148],[101.86812,5.7921],[101.85266,5.79219],[101.8372,5.78818],[101.82275,5.76104],[101.82376,5.73287],[101.81624,5.73305],[101.81128,5.74082],[101.79259,5.75406],[101.77305,5.77098],[101.77823,5.78243],[101.75502,5.79816],[101.73689,5.78144],[101.72996,5.78272],[101.72439,5.77991],[101.71739,5.78794],[101.71711,5.76575],[101.70846,5.7602],[101.70393,5.75192],[101.69349,5.75312],[101.68717,5.76235],[101.68909,5.77978],[101.67783,5.77911],[101.66725,5.79825],[101.6654,5.81123],[101.65942,5.81056],[101.65846,5.83687],[101.66279,5.84593],[101.6575,5.85635],[101.66271,5.86422],[101.65557,5.87619],[101.63899,5.86856],[101.62515,5.87527],[101.62298,5.89428],[101.61572,5.90037],[101.61533,5.91056],[101.60904,5.91488],[101.59726,5.91238],[101.59034,5.91932],[101.58892,5.929],[101.58195,5.93332],[101.57257,5.92484],[101.55908,5.91772],[101.54627,5.92153],[101.52522,5.90759],[101.525,5.89959],[101.51516,5.90389],[101.50235,5.89062],[101.49595,5.88092],[101.48543,5.87941],[101.48498,5.8682],[101.475,5.86719],[101.46364,5.87301],[101.45329,5.86415],[101.4367,5.86831],[101.42081,5.87382],[101.39392,5.87251],[101.38616,5.85076],[101.37153,5.83175],[101.35821,5.83061],[101.349,5.82537],[101.34639,5.81147],[101.33793,5.80826],[101.32397,5.81324],[101.31391,5.8027],[101.3051,5.81281],[101.2908,5.81608],[101.26769,5.80759],[101.26017,5.787],[101.26053,5.7767],[101.25677,5.7746],[101.24997,5.76074],[101.25759,5.75097],[101.25591,5.74267],[101.26133,5.73479],[101.2585,5.72691],[101.26247,5.71798],[101.251,5.70848],[101.25144,5.69963],[101.24549,5.69794],[101.2464,5.69215],[101.23445,5.68683],[101.21742,5.68575],[101.2216,5.67701],[101.21546,5.66307],[101.20483,5.6602],[101.19832,5.64982],[101.17642,5.64859],[101.16962,5.64395],[101.16625,5.63214],[101.15327,5.62306],[101.14578,5.62149],[101.14479,5.61319],[101.13555,5.61309],[101.12283,5.66182],[101.11279,5.67844],[101.09862,5.6896],[101.09913,5.70234],[101.05963,5.74218],[101.03798,5.73693],[100.98436,5.80612],[100.99807,5.81556],[101.01179,5.83456],[101.00697,5.85089],[101.0104,5.87132],[101.02962,5.90063],[101.02686,5.91218],[101.03956,5.91502],[101.055,5.9083],[101.06253,5.91945],[101.07694,5.91694],[101.08447,5.90623],[101.087,5.92606],[101.09913,5.93906],[101.09594,5.95004],[101.11266,5.96034],[101.12526,5.97883],[101.11005,5.9898],[101.10858,6.0281],[101.11672,6.03498],[101.10288,6.05142],[101.11339,6.07014],[101.1184,6.09023],[101.12616,6.09256],[101.1298,6.10582],[101.11857,6.11159],[101.10734,6.11327],[101.10504,6.12177],[101.08901,6.13165],[101.05784,6.14109],[101.07676,6.16117],[101.07645,6.17033],[101.08781,6.17608],[101.09917,6.17773],[101.1171,6.18171],[101.12403,6.19252],[101.10502,6.23886],[101.11165,6.25008],[101.09906,6.26131],[101.0614,6.25581],[101.02787,6.24348],[101.01572,6.2475],[100.98526,6.27532],[100.96853,6.28404],[100.96643,6.27173],[100.94786,6.26216],[100.94231,6.23891],[100.91472,6.24839],[100.90112,6.23165],[100.89165,6.2463],[100.87133,6.26333],[100.87024,6.24076],[100.85404,6.22912],[100.834,6.2932],[100.84829,6.31223],[100.82607,6.35576],[100.81917,6.36757],[100.82326,6.37939],[100.82457,6.40575],[100.81345,6.44209],[100.79204,6.44841],[100.7775,6.46155],[100.77108,6.45703],[100.75505,6.45525],[100.74497,6.47078],[100.73832,6.48904],[100.7453,6.49817],[100.73854,6.51139],[100.73187,6.50406],[100.73069,6.49673],[100.72421,6.49435],[100.71925,6.48634],[100.71018,6.48105],[100.70988,6.47185],[100.70054,6.46989],[100.69531,6.4652],[100.68624,6.46538],[100.68319,6.45345],[100.66092,6.44902],[100.65238,6.44187],[100.64123,6.44819],[100.64518,6.45724],[100.62029,6.45673],[100.61188,6.46578],[100.59592,6.4762],[100.57584,6.47979],[100.56314,6.49379],[100.54701,6.48631],[100.51714,6.48837],[100.49552,6.50613],[100.49587,6.51979],[100.48471,6.52475],[100.47218,6.52015],[100.45811,6.53143],[100.44867,6.52683],[100.43511,6.5236],[100.4231,6.51714],[100.40886,6.52892],[100.39324,6.5366],[100.37419,6.54429],[100.36749,6.53833],[100.35968,6.5495],[100.35874,6.55659],[100.35162,6.56981],[100.3445,6.57757],[100.33531,6.58534],[100.32476,6.58492],[100.31489,6.60087],[100.30227,6.60863],[100.32442,6.61902],[100.31901,6.63888],[100.32111,6.65563],[100.32734,6.66284],[100.30648,6.6694],[100.30292,6.6795],[100.29112,6.68141],[100.29335,6.7109],[100.26399,6.70152],[100.25687,6.70978],[100.24013,6.69213],[100.21971,6.69844],[100.21499,6.71727],[100.2034,6.7252],[100.19001,6.71802],[100.17113,6.69311],[100.17817,6.68066],[100.17971,6.66821],[100.17989,6.65507],[100.16907,6.64739],[100.16804,6.61395],[100.1792,6.60064],[100.17929,6.59058],[100.18349,6.57369],[100.17457,6.56684],[100.1581,6.5777],[100.1605,6.5596],[100.15329,6.55923],[100.1569,6.53858],[100.15639,6.52202],[100.16137,6.50205],[100.15948,6.48345],[100.15399,6.47756],[100.15261,6.47167],[100.143,6.46398],[100.1485,6.45133],[100.13579,6.44501],[100.13408,6.43049],[100.11966,6.42331],[99.86587,6.52268],[99.58333,6.45833],[89.999999,6.45833],[89.999999,-13]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!:!!!VK:**Australia#VK4:Queensland#VK8:Northern Territory#VK9W:**Willis Islets","itu_zone_number":55,"itu_zone_name_loc":[-20,140]},"geometry":{"type":"Polygon","coordinates":[[[130,-10],[129,-10],[129,-26],[140.97138,-26],[140.97958,-28.99379],[148.95372,-29.0002],[148.96602,-28.99178],[148.97077,-28.97916],[148.97723,-28.97495],[148.98713,-28.97374],[148.99191,-28.97178],[149.0015,-28.97162],[149.00559,-28.96066],[149.00968,-28.9575],[149.01497,-28.95584],[149.01958,-28.95899],[149.02418,-28.95493],[149.03016,-28.95628],[149.03535,-28.9528],[149.03435,-28.94632],[149.03918,-28.94038],[149.04332,-28.93924],[149.04541,-28.93156],[149.04308,-28.92821],[149.04741,-28.92533],[149.04761,-28.91825],[149.05737,-28.91065],[149.05618,-28.90114],[149.05937,-28.89728],[149.05912,-28.89342],[149.06431,-28.88822],[149.05301,-28.88632],[149.06095,-28.87901],[149.07014,-28.87226],[149.07336,-28.86107],[149.08001,-28.8577],[149.08123,-28.843],[149.09618,-28.83251],[149.10215,-28.8332],[149.10331,-28.83749],[149.11511,-28.83036],[149.12761,-28.83525],[149.14375,-28.82144],[149.13723,-28.81243],[149.14239,-28.80734],[149.15389,-28.8093],[149.16033,-28.80999],[149.16197,-28.80706],[149.17777,-28.80334],[149.18671,-28.79065],[149.18843,-28.78069],[149.19426,-28.77254],[149.25026,-28.74536],[149.298,-28.71096],[149.35505,-28.68791],[149.38463,-28.69499],[149.43529,-28.63952],[149.43376,-28.62262],[149.45679,-28.59243],[149.50079,-28.5788],[149.57775,-28.57724],[149.59252,-28.57553],[149.61278,-28.60277],[149.63408,-28.59695],[149.64989,-28.61525],[149.66482,-28.615],[149.67152,-28.63404],[149.7014,-28.63113],[149.70897,-28.61688],[149.79069,-28.61227],[149.86625,-28.61028],[149.89443,-28.62397],[149.91127,-28.61393],[149.94184,-28.61354],[149.97927,-28.60953],[150.0222,-28.58141],[150.0514,-28.58946],[150.09071,-28.57901],[150.09707,-28.56615],[150.1613,-28.55603],[150.2118,-28.57244],[150.25955,-28.5418],[150.32103,-28.54012],[150.37087,-28.62043],[150.40952,-28.63286],[150.4262,-28.65733],[150.52939,-28.65349],[150.52606,-28.66964],[150.54745,-28.67615],[150.55177,-28.65785],[150.58237,-28.65629],[150.60591,-28.67358],[150.6322,-28.67641],[150.67419,-28.65641],[150.74051,-28.63548],[150.86725,-28.68685],[150.89079,-28.70109],[150.9061,-28.68882],[150.92954,-28.70858],[150.93651,-28.73076],[150.97781,-28.73487],[150.99846,-28.73812],[151.01636,-28.75342],[151.02174,-28.79651],[151.03953,-28.7976],[151.03607,-28.82702],[151.04359,-28.842],[151.0621,-28.84766],[151.09709,-28.83648],[151.12522,-28.85537],[151.16158,-28.86705],[151.17307,-28.87859],[151.20103,-28.88533],[151.21027,-28.90121],[151.237,-28.90652],[151.24398,-28.92836],[151.28117,-28.943],[151.27441,-29.0273],[151.28963,-29.05637],[151.27258,-29.09323],[151.30771,-29.12529],[151.31401,-29.16334],[151.34502,-29.18461],[151.3968,-29.17045],[151.42662,-29.14669],[151.46879,-29.10254],[151.49997,-29.07519],[151.48818,-29.03609],[151.5478,-28.95137],[151.60991,-28.92431],[151.63907,-28.92369],[151.68608,-28.89062],[151.72759,-28.87438],[151.77554,-28.95608],[151.80538,-28.94765],[151.83796,-28.96566],[151.8537,-28.90555],[151.92437,-28.92356],[152.00602,-28.9031],[152.02856,-28.88752],[152.04012,-28.85752],[152.01929,-28.84561],[152.03428,-28.83003],[152.04103,-28.77114],[152.04504,-28.72908],[152.07376,-28.7063],[152.0582,-28.66995],[152.00693,-28.66492],[151.99228,-28.59222],[151.95566,-28.55809],[151.96023,-28.51431],[151.97746,-28.50329],[151.99156,-28.52915],[152.0194,-28.52123],[152.06821,-28.47158],[152.12526,-28.45815],[152.17407,-28.42539],[152.22013,-28.45059],[152.23735,-28.41542],[152.2738,-28.39715],[152.31923,-28.36364],[152.38664,-28.36879],[152.41622,-28.33571],[152.41284,-28.2978],[152.44654,-28.29859],[152.45516,-28.26149],[152.50222,-28.24616],[152.53541,-28.26421],[152.5274,-28.30887],[152.57844,-28.34022],[152.613,-28.27242],[152.67662,-28.33029],[152.74849,-28.36157],[152.77625,-28.34612],[152.80125,-28.35726],[152.82625,-28.32126],[152.86499,-28.30943],[152.9348,-28.33466],[153.03482,-28.34296],[153.10463,-28.35852],[153.13702,-28.31331],[153.1694,-28.29228],[153.17924,-28.25022],[153.23148,-28.26511],[153.24387,-28.24474],[153.29197,-28.23646],[153.3291,-28.23562],[153.3408,-28.24973],[153.36349,-28.25173],[153.39582,-28.22851],[153.42266,-28.19561],[153.43975,-28.18648],[153.45753,-28.18037],[153.4657,-28.16458],[153.48005,-28.15544],[153.4983,-28.16128],[153.53446,-28.1769],[153.54204,-28.16915],[153.55168,-28.16473],[154,-28],[154,-12.08162],[144.88891,-12.00696],[144.32409,-9.26347],[142.62997,-9.35315],[142.17979,-9.18656],[142.06744,-9.24768],[130,-10]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:FK:**New Caledonia#FK/C:**Chesterfield Islands#VK9M:**Mellish Reef#YJ:**Vanuatu#3D2:**Conway Reef#3D2:**Fiji#3D2:**Rotuma Island","itu_zone_number":56,"itu_zone_name_loc":[-20,170]},"geometry":{"type":"Polygon","coordinates":[[[154,-28],[154,-12],[178,-12],[183,-16],[183,-22],[180,-22],[180,-28],[154,-28]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!:A2:**Botswana#V5:**Namibia#ZS:**South Africa#ZS8:**Prince Edward & Marion Islands#3DA:**Swaziland#7P:**Lesotho","itu_zone_number":57,"itu_zone_name_loc":[-30,24]},"geometry":{"type":"Polygon","coordinates":[[[5,-17],[5,-20],[20,-50],[40,-50],[40,-27],[33,-27],[32.89373,-26.857],[32.85914,-26.86327],[32.79796,-26.86423],[32.77661,-26.86151],[32.72848,-26.86675],[32.6982,-26.86832],[32.51572,-26.86371],[32.33186,-26.864],[32.32972,-26.86165],[32.32415,-26.85378],[32.31918,-26.85214],[32.31387,-26.8551],[32.30856,-26.85622],[32.29416,-26.85263],[32.28765,-26.8536],[32.28113,-26.84905],[32.27573,-26.8494],[32.26347,-26.84731],[32.25636,-26.84919],[32.25383,-26.84339],[32.24718,-26.84005],[32.23639,-26.83953],[32.2201,-26.83227],[32.21188,-26.83627],[32.20777,-26.8398],[32.20743,-26.84279],[32.20572,-26.847],[32.20607,-26.85345],[32.20299,-26.85621],[32.1982,-26.8553],[32.18722,-26.86419],[32.15808,-26.85748],[32.14282,-26.8477],[32.14171,-26.84127],[32.13443,-26.83975],[32.13492,-26.5272],[32.07766,-26.40524],[32.07443,-26.30614],[32.10314,-26.17102],[32.08576,-26.02989],[32.08761,-26.00873],[32.03003,-26.00029],[32.01039,-25.99324],[32.00311,-25.99699],[31.97587,-25.95336],[31.93065,-25.8403],[31.97839,-25.693],[31.99642,-25.6763],[32.00587,-25.64505],[32.00535,-25.60474],[32.00038,-25.58516],[31.9954,-25.52621],[31.98006,-25.52419],[31.97712,-25.50908],[31.9781,-25.49283],[31.97736,-25.47441],[31.97903,-25.46668],[31.97897,-25.45803],[31.98615,-25.44354],[31.9899,-25.4303],[32.01453,-25.38638],[32.0268,-25.26211],[32.03629,-25.13251],[31.99736,-24.69592],[32.01061,-24.46112],[31.98542,-24.30632],[31.90735,-24.1803],[31.88421,-23.9553],[31.76758,-23.88479],[31.69765,-23.72385],[31.68961,-23.62814],[31.66392,-23.58777],[31.56131,-23.48194],[31.54837,-23.41635],[31.56368,-23.1869],[31.30724,-22.42436],[31.29489,-22.41034],[31.28854,-22.40492],[31.27635,-22.3849],[31.27618,-22.37924],[31.27087,-22.3685],[31.25799,-22.36284],[31.244,-22.36335],[31.23409,-22.36574],[31.22604,-22.36948],[31.22006,-22.37068],[31.21064,-22.36913],[31.20087,-22.36234],[31.19439,-22.3494],[31.1831,-22.3355],[31.17162,-22.32982],[31.15739,-22.32796],[31.12348,-22.33859],[31.10171,-22.34613],[31.08682,-22.34859],[31.06329,-22.34286],[31.02714,-22.32634],[30.9965,-22.31522],[30.99059,-22.32606],[30.98194,-22.32705],[30.97535,-22.32487],[30.96739,-22.31443],[30.94494,-22.31482],[30.93966,-22.31013],[30.9315,-22.30076],[30.92276,-22.30096],[30.89892,-22.29607],[30.88351,-22.30473],[30.86983,-22.29886],[30.86027,-22.29743],[30.83977,-22.29141],[30.77395,-22.30477],[30.75783,-22.30469],[30.74994,-22.30779],[30.72593,-22.31017],[30.70744,-22.31749],[30.65991,-22.30861],[30.64602,-22.32355],[30.63221,-22.3361],[30.61843,-22.33317],[30.6129,-22.32706],[30.60634,-22.32206],[30.58433,-22.31817],[30.56523,-22.32199],[30.55369,-22.33056],[30.52212,-22.32502],[30.50359,-22.32225],[30.4878,-22.31567],[30.4727,-22.32115],[30.44387,-22.33553],[30.39857,-22.34523],[30.37866,-22.35167],[30.36837,-22.34794],[30.3567,-22.34676],[30.34092,-22.35066],[30.31621,-22.34702],[30.30248,-22.35536],[30.28876,-22.35735],[30.27215,-22.34594],[30.25416,-22.31548],[30.24242,-22.31168],[30.23755,-22.30407],[30.23336,-22.29773],[30.22506,-22.2952],[30.15586,-22.30038],[30.1271,-22.31361],[30.10109,-22.28619],[30.07439,-22.27464],[30.0576,-22.25616],[30.03258,-22.25675],[30.02138,-22.25256],[30.01978,-22.22931],[29.99622,-22.22831],[29.96991,-22.22095],[29.92484,-22.18843],[29.88389,-22.19533],[29.86045,-22.17488],[29.82951,-22.17484],[29.8068,-22.16589],[29.77444,-22.14099],[29.72696,-22.14153],[29.7166,-22.14346],[29.70417,-22.13839],[29.69329,-22.13523],[29.67691,-22.13843],[29.67173,-22.13875],[29.66723,-22.13145],[29.65823,-22.12447],[29.64031,-22.13148],[29.63101,-22.13372],[29.62567,-22.13738],[29.62239,-22.14231],[29.61093,-22.15793],[29.59534,-22.14684],[29.58034,-22.13843],[29.56396,-22.15037],[29.53808,-22.15391],[29.53445,-22.15771],[29.53357,-22.16279],[29.53475,-22.16818],[29.5318,-22.17294],[29.52764,-22.17928],[29.5118,-22.17799],[29.49433,-22.17018],[29.47617,-22.16555],[29.45836,-22.16632],[29.44054,-22.16964],[29.43724,-22.17184],[29.42294,-22.1715],[29.42043,-22.17388],[29.41586,-22.17498],[29.40922,-22.17767],[29.4074,-22.181],[29.37425,-22.19618],[29.35767,-22.19036],[29.34453,-22.1731],[29.32829,-22.15393],[29.31548,-22.14557],[29.28594,-22.12028],[29.28009,-22.10389],[29.26909,-22.07605],[29.24676,-22.06094],[29.21916,-22.07025],[29.19087,-22.07575],[29.15949,-22.07583],[29.1288,-22.07019],[29.09982,-22.05803],[29.07428,-22.04141],[29.05355,-22.02224],[29.03624,-21.99734],[29.02684,-21.97594],[29.02087,-21.95135],[29.01936,-21.92613],[29.02265,-21.90091],[29.03076,-21.87552],[29.04367,-21.85332],[29.05898,-21.83463],[29.07704,-21.81785],[29.06394,-21.80198],[29.04736,-21.80008],[29.0356,-21.79626],[29.02417,-21.79181],[29.00657,-21.78927],[28.99952,-21.7708],[28.98535,-21.76826],[28.96225,-21.77592],[28.89044,-21.76006],[28.87889,-21.76007],[28.87489,-21.75753],[28.86918,-21.75531],[28.8614,-21.75627],[28.84276,-21.74099],[28.82962,-21.73463],[28.82205,-21.7329],[28.798,-21.73308],[28.78752,-21.72568],[28.77773,-21.71508],[28.76004,-21.70991],[28.74785,-21.70155],[28.70799,-21.68979],[28.67226,-21.67804],[28.66399,-21.6741],[28.65229,-21.65485],[28.63614,-21.65032],[28.62635,-21.6503],[28.61312,-21.6458],[28.59594,-21.64351],[28.58701,-21.63344],[28.57739,-21.6291],[28.57328,-21.6295],[28.5599,-21.64183],[28.55476,-21.64395],[28.53968,-21.64156],[28.52357,-21.65991],[28.50678,-21.66997],[28.49562,-21.66706],[28.48722,-21.66223],[28.47247,-21.65833],[28.45704,-21.6541],[28.44572,-21.64158],[28.43423,-21.63767],[28.42471,-21.63668],[28.41519,-21.63377],[28.40302,-21.62635],[28.3959,-21.62424],[28.38947,-21.61766],[28.36985,-21.60577],[28.36278,-21.60175],[28.35709,-21.60538],[28.35071,-21.60886],[28.33952,-21.60212],[28.33142,-21.59793],[28.31646,-21.59693],[28.30439,-21.59479],[28.29389,-21.58892],[28.28613,-21.592],[28.2538,-21.59528],[28.24551,-21.59728],[28.2205,-21.59801],[28.20099,-21.60385],[28.17941,-21.59692],[28.14617,-21.59318],[28.13118,-21.58652],[28.11687,-21.58561],[28.09879,-21.57799],[28.09032,-21.58187],[28.07893,-21.58431],[28.07373,-21.58101],[28.0668,-21.57834],[28.05027,-21.58014],[28.02038,-21.57608],[28.00724,-21.55586],[28.00781,-21.54724],[28.00254,-21.53942],[27.99539,-21.5324],[27.99372,-21.52539],[27.99712,-21.52244],[28.00086,-21.52141],[28.00389,-21.51647],[27.99037,-21.51634],[27.98258,-21.51595],[27.97684,-21.52514],[27.97043,-21.51805],[27.97546,-21.50716],[27.97294,-21.49754],[27.98059,-21.49172],[27.98345,-21.48463],[27.95949,-21.4751],[27.96399,-21.46522],[27.97674,-21.46046],[27.96548,-21.4391],[27.95149,-21.43053],[27.9592,-21.41594],[27.9444,-21.38421],[27.91894,-21.36806],[27.92094,-21.32889],[27.80409,-21.18017],[27.79273,-21.1814],[27.77313,-21.15702],[27.75316,-21.15179],[27.69611,-21.09092],[27.68887,-21.05536],[27.70361,-21.0403],[27.6998,-21.00345],[27.70973,-20.99993],[27.69768,-20.98615],[27.70761,-20.95955],[27.6897,-20.93778],[27.69651,-20.90061],[27.69096,-20.87114],[27.71288,-20.84423],[27.71791,-20.79579],[27.72935,-20.79645],[27.73164,-20.70672],[27.7036,-20.66329],[27.70577,-20.60445],[27.7266,-20.5613],[27.7298,-20.51873],[27.68402,-20.48504],[27.67462,-20.49474],[27.64806,-20.4993],[27.62377,-20.47946],[27.60222,-20.47957],[27.57519,-20.49511],[27.54815,-20.48363],[27.52112,-20.47859],[27.46979,-20.46722],[27.43494,-20.48158],[27.38594,-20.47912],[27.36165,-20.46764],[27.28783,-20.49894],[27.28406,-20.48817],[27.29813,-20.42465],[27.29608,-20.35937],[27.30432,-20.33052],[27.29943,-20.29724],[27.28835,-20.28071],[27.29093,-20.27082],[27.28509,-20.23302],[27.27677,-20.22268],[27.2657,-20.21492],[27.26698,-20.2004],[27.26003,-20.18329],[27.25025,-20.16713],[27.24733,-20.14581],[27.23222,-20.11855],[27.22261,-20.10943],[27.21849,-20.09644],[27.20613,-20.08086],[27.18485,-20.0756],[27.14434,-20.08066],[27.11241,-20.06578],[27.09559,-20.0496],[27.08477,-20.03197],[27.04374,-20.00789],[27.02881,-20.01026],[27.00564,-20.00747],[26.99259,-20.01308],[26.97139,-20.01476],[26.91586,-19.98934],[26.9023,-19.97979],[26.87801,-19.97276],[26.8496,-19.96315],[26.82737,-19.96192],[26.79909,-19.94905],[26.77905,-19.94392],[26.75356,-19.93544],[26.72532,-19.93987],[26.70292,-19.89847],[26.70386,-19.88935],[26.63915,-19.87175],[26.6225,-19.88385],[26.60593,-19.86035],[26.59349,-19.83815],[26.57958,-19.79504],[26.56225,-19.78293],[26.53847,-19.78269],[26.53529,-19.77083],[26.51512,-19.76922],[26.50435,-19.76066],[26.48672,-19.75727],[26.47114,-19.75259],[26.45281,-19.75308],[26.4299,-19.74501],[26.41659,-19.7308],[26.41016,-19.71013],[26.40441,-19.69204],[26.39535,-19.683],[26.38904,-19.66878],[26.35394,-19.67543],[26.32677,-19.66194],[26.32845,-19.65233],[26.34003,-19.63052],[26.35711,-19.61389],[26.32991,-19.59725],[26.31231,-19.57674],[26.25214,-19.58534],[26.23779,-19.58328],[26.21519,-19.56311],[26.20543,-19.56065],[26.18879,-19.55302],[26.16788,-19.54423],[26.16176,-19.52277],[26.15258,-19.49425],[26.14203,-19.43726],[26.12667,-19.42753],[26.11131,-19.3647],[26.09526,-19.34559],[26.08882,-19.32259],[26.07415,-19.29506],[26.07183,-19.27141],[26.06214,-19.263],[26.0442,-19.23515],[26.04403,-19.21184],[25.97916,-19.13152],[25.96149,-19.10078],[25.96579,-19.06355],[25.99637,-19.03062],[25.99124,-19.00809],[25.98474,-18.97386],[25.97531,-18.96048],[25.96863,-18.94191],[25.95389,-18.91645],[25.94088,-18.9032],[25.92411,-18.89938],[25.9087,-18.88776],[25.8727,-18.86055],[25.84234,-18.84824],[25.82434,-18.83334],[25.82053,-18.80658],[25.80711,-18.79153],[25.7885,-18.72112],[25.79325,-18.69492],[25.80348,-18.68693],[25.791,-18.6651],[25.78401,-18.62506],[25.77573,-18.61603],[25.76746,-18.6135],[25.75644,-18.60317],[25.74268,-18.59934],[25.72995,-18.59226],[25.71721,-18.59169],[25.70136,-18.57753],[25.69102,-18.57078],[25.68069,-18.55751],[25.67072,-18.54404],[25.66487,-18.52797],[25.65591,-18.51927],[25.64754,-18.49616],[25.60828,-18.4836],[25.57176,-18.43392],[25.51464,-18.37641],[25.51795,-18.36582],[25.49036,-18.2982],[25.45528,-18.24222],[25.45727,-18.22928],[25.44739,-18.21716],[25.44574,-18.20765],[25.43283,-18.18731],[25.41251,-18.14926],[25.3911,-18.11752],[25.37254,-18.12046],[25.36498,-18.11385],[25.36429,-18.10071],[25.35467,-18.0901],[25.32167,-18.0777],[25.3148,-18.06076],[25.30381,-18.05101],[25.28457,-18.01584],[25.28113,-18.00417],[25.2818,-17.98988],[25.26641,-17.95014],[25.25376,-17.94306],[25.23812,-17.91286],[25.24308,-17.89965],[25.238,-17.88781],[25.23842,-17.87467],[25.26482,-17.81491],[25.26375,-17.79176],[25.22304,-17.76755],[25.19074,-17.76934],[25.18546,-17.76478],[25.18018,-17.75859],[25.17662,-17.75256],[25.1679,-17.74522],[25.15923,-17.74477],[25.15604,-17.74138],[25.1554,-17.73706],[25.15921,-17.73275],[25.16114,-17.72942],[25.16135,-17.72347],[25.15697,-17.71419],[25.15156,-17.70622],[25.14879,-17.70441],[25.14508,-17.70416],[25.14233,-17.70538],[25.13853,-17.71151],[25.13517,-17.71216],[25.13308,-17.7092],[25.13587,-17.70036],[25.13408,-17.69404],[25.12508,-17.69213],[25.12015,-17.69378],[25.11111,-17.70197],[25.10629,-17.70655],[25.09923,-17.71016],[25.09422,-17.70886],[25.09334,-17.70387],[25.09804,-17.6996],[25.10059,-17.69723],[25.1016,-17.69419],[25.10448,-17.68682],[25.10924,-17.68009],[25.10834,-17.67615],[25.10401,-17.67417],[25.10722,-17.66729],[25.10426,-17.66563],[25.10066,-17.66298],[25.09293,-17.66426],[25.08503,-17.66027],[25.08366,-17.64116],[25.07576,-17.63599],[25.06915,-17.63519],[25.06585,-17.62988],[25.06598,-17.62392],[25.06765,-17.61566],[25.06108,-17.61461],[25.0552,-17.61388],[25.05688,-17.62362],[25.05474,-17.62906],[25.04849,-17.63156],[25.0431,-17.62849],[25.04217,-17.62281],[25.04685,-17.61366],[25.05176,-17.59927],[25.04751,-17.58949],[25.02555,-17.58426],[25.02372,-17.59266],[25.01775,-17.59613],[25.00697,-17.59796],[24.99665,-17.59057],[24.99113,-17.57827],[24.98905,-17.5627],[24.9801,-17.55368],[24.97329,-17.55226],[24.96374,-17.56394],[24.95281,-17.56514],[24.94326,-17.57027],[24.94126,-17.55708],[24.9475,-17.54911],[24.94076,-17.54759],[24.91148,-17.55437],[24.9028,-17.55198],[24.8956,-17.54572],[24.88102,-17.52703],[24.87626,-17.52672],[24.86978,-17.52869],[24.85665,-17.53019],[24.84069,-17.52563],[24.82971,-17.51943],[24.8097,-17.53047],[24.80197,-17.53725],[24.79587,-17.5368],[24.79098,-17.53487],[24.78865,-17.53008],[24.78599,-17.5135],[24.78048,-17.508],[24.7768,-17.50835],[24.77071,-17.51313],[24.76497,-17.5175],[24.75974,-17.51793],[24.75119,-17.51314],[24.74488,-17.51258],[24.72724,-17.50007],[24.70672,-17.49683],[24.69495,-17.50079],[24.67906,-17.50058],[24.66599,-17.49862],[24.66356,-17.49699],[24.6571,-17.49499],[24.64901,-17.49602],[24.64223,-17.49671],[24.63716,-17.50066],[24.63724,-17.50397],[24.64179,-17.5094],[24.64249,-17.51262],[24.64095,-17.51438],[24.63778,-17.5149],[24.63462,-17.51346],[24.62829,-17.51165],[24.62178,-17.51491],[24.6186,-17.52239],[24.61795,-17.5299],[24.60769,-17.53609],[24.58716,-17.53408],[24.57299,-17.53681],[24.56522,-17.5385],[24.55608,-17.53889],[24.55242,-17.53289],[24.55083,-17.52492],[24.54958,-17.51434],[24.54627,-17.50899],[24.53605,-17.50732],[24.52342,-17.51497],[24.50956,-17.51348],[24.48985,-17.49856],[24.4753,-17.48741],[24.45937,-17.48051],[24.44898,-17.47891],[24.43206,-17.47928],[24.39033,-17.46954],[24.36113,-17.47814],[24.33193,-17.49198],[24.32428,-17.49249],[24.31012,-17.48645],[24.28007,-17.4842],[24.275,-17.48684],[24.27199,-17.49112],[24.26182,-17.48892],[24.2537,-17.48115],[24.24949,-17.47446],[21.42353,-18.02662],[21.3088,-17.98042],[21.21055,-17.92899],[20.96461,-17.96723],[20.83615,-18.03859],[20.75681,-18.0168],[20.70769,-18.01591],[20.65307,-17.98106],[20.6012,-17.97755],[20.54246,-17.98189],[20.50416,-17.95205],[20.47411,-17.94573],[20.45448,-17.91095],[20.38816,-17.89708],[20.31869,-17.86542],[20.13717,-17.91449],[19.85871,-17.86001],[19.75243,-17.90596],[19.62419,-17.86826],[19.31994,-17.84295],[19.13992,-17.81325],[19.09848,-17.8375],[18.87278,-17.81281],[18.7336,-17.71359],[18.61639,-17.63008],[18.62778,-17.6088],[18.60071,-17.5823],[18.56855,-17.58164],[18.54818,-17.55416],[18.51293,-17.49396],[18.48088,-17.47831],[18.47721,-17.45228],[18.42042,-17.38975],[14.21877,-17.3923],[14.21319,-17.40158],[14.21311,-17.41086],[14.19861,-17.41425],[14.18685,-17.41239],[14.1618,-17.41676],[14.15133,-17.42779],[14.14224,-17.42965],[14.1249,-17.43609],[14.11581,-17.42419],[14.10208,-17.43948],[14.07737,-17.43511],[14.05231,-17.42736],[14.04373,-17.42092],[14.03789,-17.42365],[14.01283,-17.41458],[14.00442,-17.42075],[14.00013,-17.43085],[13.98744,-17.43533],[13.98023,-17.42736],[13.95655,-17.43381],[13.92612,-17.41167],[13.93151,-17.40519],[13.92866,-17.39741],[13.9154,-17.38641],[13.91725,-17.37804],[13.9053,-17.37074],[13.89884,-17.36213],[13.8873,-17.35933],[13.87245,-17.34325],[13.85758,-17.34291],[13.84821,-17.33734],[13.83746,-17.32848],[13.82396,-17.32618],[13.78509,-17.30387],[13.77629,-17.29402],[13.76063,-17.2868],[13.73755,-17.26973],[13.71661,-17.26641],[13.69499,-17.24736],[13.68427,-17.24866],[13.66393,-17.23554],[13.63835,-17.20929],[13.61553,-17.20009],[13.5927,-17.17909],[13.55108,-17.1539],[13.54244,-17.14731],[13.53312,-17.14465],[13.51104,-17.1354],[13.50808,-17.12609],[13.51731,-17.12088],[13.52105,-17.11305],[13.52274,-17.10699],[13.52169,-17.10029],[13.52097,-17.09016],[13.49815,-17.06866],[13.48425,-17.03797],[13.47773,-17.0335],[13.4767,-17.02575],[13.46847,-17.02095],[13.46366,-17.0109],[13.44341,-17.00951],[13.42813,-17.00159],[13.41767,-16.99761],[13.40857,-16.9988],[13.39879,-16.99671],[13.39416,-16.99594],[13.39081,-16.99062],[13.38678,-16.98859],[13.37923,-16.98305],[13.3703,-16.98146],[13.36241,-16.97953],[13.35383,-16.97432],[13.3512,-16.97417],[13.34342,-16.9773],[13.32959,-16.98291],[13.31524,-16.98572],[13.30926,-16.98795],[13.30157,-16.98821],[13.2945,-16.99088],[13.2864,-16.9929],[13.28091,-16.99468],[13.27131,-16.99941],[13.25795,-16.99279],[13.25487,-16.99388],[13.25316,-16.99629],[13.25076,-16.99869],[13.24699,-17.00012],[13.23842,-16.99606],[13.24118,-16.993],[13.23686,-16.9878],[13.23219,-16.98621],[13.22375,-16.98462],[13.21943,-16.98632],[13.2042,-16.98916],[13.20097,-16.98904],[13.19809,-16.98467],[13.19751,-16.98198],[13.19898,-16.97996],[13.2008,-16.9776],[13.19953,-16.97393],[13.18638,-16.96928],[13.18113,-16.97152],[13.17982,-16.97384],[13.17646,-16.97255],[13.16938,-16.96341],[13.16518,-16.96528],[13.16102,-16.96523],[13.15514,-16.96452],[13.15145,-16.96705],[13.146,-16.96552],[13.14055,-16.9653],[13.12151,-16.96901],[13.10898,-16.97242],[13.1016,-16.97484],[13.09972,-16.97792],[13.09715,-16.97936],[13.09053,-16.98032],[13.0873,-16.97719],[13.08305,-16.97569],[13.07667,-16.97564],[13.06289,-16.97289],[13.0516,-16.98059],[13.04417,-16.97998],[13.03711,-16.98157],[13.03245,-16.97724],[13.02794,-16.97712],[13.01969,-16.98191],[12.98363,-16.98211],[12.97541,-16.99018],[12.97019,-16.98987],[12.96668,-16.9912],[12.96619,-17.00075],[12.96261,-17.01031],[12.95327,-17.01032],[12.94808,-17.00984],[12.94392,-17.01231],[12.94772,-17.01809],[12.9428,-17.02019],[12.93941,-17.01851],[12.92887,-17.01976],[12.92261,-17.02166],[12.91499,-17.0216],[12.90763,-17.02877],[12.90336,-17.03693],[12.8907,-17.04405],[12.8727,-17.04794],[12.87118,-17.05839],[12.87241,-17.06622],[12.84617,-17.07799],[12.83555,-17.08869],[12.82356,-17.08495],[12.81056,-17.1011],[12.80511,-17.11593],[12.77907,-17.12158],[12.76332,-17.1397],[12.73659,-17.146],[12.73421,-17.15112],[12.72359,-17.15624],[12.71435,-17.1594],[12.71334,-17.17174],[12.70573,-17.17315],[12.69984,-17.16865],[12.69466,-17.16993],[12.68879,-17.1722],[12.68464,-17.17299],[12.68015,-17.1764],[12.67738,-17.17345],[12.67357,-17.17215],[12.66901,-17.17502],[12.66616,-17.17954],[12.66542,-17.18139],[12.66297,-17.18258],[12.65841,-17.18594],[12.65597,-17.18538],[12.64685,-17.19055],[12.64665,-17.19442],[12.64421,-17.19746],[12.63746,-17.19871],[12.6322,-17.199],[12.63174,-17.20291],[12.62622,-17.20599],[12.62172,-17.20678],[12.61723,-17.20625],[12.61102,-17.20934],[12.60564,-17.21632],[12.60862,-17.2267],[12.6061,-17.23118],[12.60197,-17.22903],[12.59921,-17.23213],[12.59679,-17.23572],[12.59094,-17.23177],[12.5813,-17.23043],[12.57852,-17.2281],[12.57182,-17.23529],[12.56873,-17.23734],[12.56461,-17.23938],[12.56495,-17.2438],[12.55954,-17.2414],[12.5531,-17.24063],[12.54378,-17.23926],[12.5422,-17.24296],[12.54181,-17.24797],[12.53593,-17.2461],[12.53292,-17.24253],[12.52425,-17.24813],[12.51034,-17.2453],[12.4942,-17.24798],[12.4808,-17.24279],[12.47771,-17.25072],[12.46912,-17.25472],[12.46156,-17.25806],[12.45263,-17.25484],[12.44714,-17.26342],[12.43615,-17.26282],[12.44023,-17.25051],[12.43745,-17.24475],[12.43055,-17.24031],[12.43601,-17.22275],[12.4235,-17.20768],[12.42102,-17.2131],[12.41579,-17.2113],[12.40851,-17.20721],[12.39642,-17.20771],[12.39325,-17.21346],[12.3942,-17.22117],[12.38667,-17.21873],[12.37364,-17.22678],[12.37023,-17.23384],[12.35925,-17.22918],[12.3517,-17.21861],[12.34374,-17.22387],[12.33234,-17.22586],[12.32747,-17.22915],[12.31779,-17.22851],[12.30983,-17.23492],[12.29568,-17.23412],[12.28429,-17.24217],[12.27069,-17.23275],[12.26259,-17.23251],[12.25362,-17.24069],[12.23435,-17.2351],[12.2298,-17.22458],[12.21688,-17.21785],[12.21082,-17.21898],[12.19941,-17.20814],[12.19485,-17.19729],[12.1824,-17.19628],[12.17579,-17.17789],[12.16128,-17.16146],[12.14781,-17.16045],[12.13158,-17.16732],[12.1181,-17.15713],[12.10462,-17.16005],[12.08179,-17.14229],[12.05801,-17.15572],[12.03423,-17.15077],[12.02558,-17.1564],[12.02236,-17.16192],[12.01778,-17.16055],[12.00741,-17.16601],[11.99909,-17.16853],[11.99586,-17.17112],[11.98678,-17.17273],[11.9834,-17.17268],[11.97418,-17.17672],[11.96324,-17.17486],[11.96037,-17.17685],[11.95877,-17.17965],[11.95579,-17.18213],[11.95109,-17.18157],[11.94777,-17.18035],[11.94318,-17.18054],[11.93834,-17.18454],[11.93213,-17.19051],[11.92368,-17.19468],[11.92169,-17.19643],[11.91763,-17.19622],[11.91039,-17.19965],[11.909,-17.20202],[11.9052,-17.20439],[11.90184,-17.20414],[11.90053,-17.20651],[11.89768,-17.20707],[11.89174,-17.21026],[11.88437,-17.22491],[11.8697,-17.23289],[11.86116,-17.23409],[11.85818,-17.24133],[11.85489,-17.23962],[11.84954,-17.24218],[11.84612,-17.23567],[11.83755,-17.23605],[11.83436,-17.23853],[11.831,-17.24248],[11.82361,-17.25495],[11.82146,-17.25803],[11.82,-17.26209],[11.81674,-17.26464],[11.81243,-17.26451],[11.80846,-17.26864],[11.79881,-17.26772],[11.79396,-17.27467],[11.77552,-17.25938],[11.75845,-17.25328],[11.5,-17],[5,-17]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:!!VK:**Australia#VK6:Western Australia","itu_zone_number":58,"itu_zone_name_loc":[-25,120]},"geometry":{"type":"Polygon","coordinates":[[[129,-10],[129,-40],[110,-40],[110,-13],[115,-13],[129,-10]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!:!!!!!!VK:**Australia#VK1:Capital Territory#VK2:New South Wales#VK3:Victoria#VK5:South Australia#VK7:Tasmania","itu_zone_number":59,"itu_zone_name_loc":[-40,140]},"geometry":{"type":"Polygon","coordinates":[[[129,-26],[140.97138,-26],[140.97958,-28.99379],[148.95372,-29.0002],[148.96602,-28.99178],[148.97077,-28.97916],[148.97723,-28.97495],[148.98713,-28.97374],[148.99191,-28.97178],[149.0015,-28.97162],[149.00559,-28.96066],[149.00968,-28.9575],[149.01497,-28.95584],[149.01958,-28.95899],[149.02418,-28.95493],[149.03016,-28.95628],[149.03535,-28.9528],[149.03435,-28.94632],[149.03918,-28.94038],[149.04332,-28.93924],[149.04541,-28.93156],[149.04308,-28.92821],[149.04741,-28.92533],[149.04761,-28.91825],[149.05737,-28.91065],[149.05618,-28.90114],[149.05937,-28.89728],[149.05912,-28.89342],[149.06431,-28.88822],[149.05301,-28.88632],[149.06095,-28.87901],[149.07014,-28.87226],[149.07336,-28.86107],[149.08001,-28.8577],[149.08123,-28.843],[149.09618,-28.83251],[149.10215,-28.8332],[149.10331,-28.83749],[149.11511,-28.83036],[149.12761,-28.83525],[149.14375,-28.82144],[149.13723,-28.81243],[149.14239,-28.80734],[149.15389,-28.8093],[149.16033,-28.80999],[149.16197,-28.80706],[149.17777,-28.80334],[149.18671,-28.79065],[149.18843,-28.78069],[149.19426,-28.77254],[149.25026,-28.74536],[149.298,-28.71096],[149.35505,-28.68791],[149.38463,-28.69499],[149.43529,-28.63952],[149.43376,-28.62262],[149.45679,-28.59243],[149.50079,-28.5788],[149.57775,-28.57724],[149.59252,-28.57553],[149.61278,-28.60277],[149.63408,-28.59695],[149.64989,-28.61525],[149.66482,-28.615],[149.67152,-28.63404],[149.7014,-28.63113],[149.70897,-28.61688],[149.79069,-28.61227],[149.86625,-28.61028],[149.89443,-28.62397],[149.91127,-28.61393],[149.94184,-28.61354],[149.97927,-28.60953],[150.0222,-28.58141],[150.0514,-28.58946],[150.09071,-28.57901],[150.09707,-28.56615],[150.1613,-28.55603],[150.2118,-28.57244],[150.25955,-28.5418],[150.32103,-28.54012],[150.37087,-28.62043],[150.40952,-28.63286],[150.4262,-28.65733],[150.52939,-28.65349],[150.52606,-28.66964],[150.54745,-28.67615],[150.55177,-28.65785],[150.58237,-28.65629],[150.60591,-28.67358],[150.6322,-28.67641],[150.67419,-28.65641],[150.74051,-28.63548],[150.86725,-28.68685],[150.89079,-28.70109],[150.9061,-28.68882],[150.92954,-28.70858],[150.93651,-28.73076],[150.97781,-28.73487],[150.99846,-28.73812],[151.01636,-28.75342],[151.02174,-28.79651],[151.03953,-28.7976],[151.03607,-28.82702],[151.04359,-28.842],[151.0621,-28.84766],[151.09709,-28.83648],[151.12522,-28.85537],[151.16158,-28.86705],[151.17307,-28.87859],[151.20103,-28.88533],[151.21027,-28.90121],[151.237,-28.90652],[151.24398,-28.92836],[151.28117,-28.943],[151.27441,-29.0273],[151.28963,-29.05637],[151.27258,-29.09323],[151.30771,-29.12529],[151.31401,-29.16334],[151.34502,-29.18461],[151.3968,-29.17045],[151.42662,-29.14669],[151.46879,-29.10254],[151.49997,-29.07519],[151.48818,-29.03609],[151.5478,-28.95137],[151.60991,-28.92431],[151.63907,-28.92369],[151.68608,-28.89062],[151.72759,-28.87438],[151.77554,-28.95608],[151.80538,-28.94765],[151.83796,-28.96566],[151.8537,-28.90555],[151.92437,-28.92356],[152.00602,-28.9031],[152.02856,-28.88752],[152.04012,-28.85752],[152.01929,-28.84561],[152.03428,-28.83003],[152.04103,-28.77114],[152.04504,-28.72908],[152.07376,-28.7063],[152.0582,-28.66995],[152.00693,-28.66492],[151.99228,-28.59222],[151.95566,-28.55809],[151.96023,-28.51431],[151.97746,-28.50329],[151.99156,-28.52915],[152.0194,-28.52123],[152.06821,-28.47158],[152.12526,-28.45815],[152.17407,-28.42539],[152.22013,-28.45059],[152.23735,-28.41542],[152.2738,-28.39715],[152.31923,-28.36364],[152.38664,-28.36879],[152.41622,-28.33571],[152.41284,-28.2978],[152.44654,-28.29859],[152.45516,-28.26149],[152.50222,-28.24616],[152.53541,-28.26421],[152.5274,-28.30887],[152.57844,-28.34022],[152.613,-28.27242],[152.67662,-28.33029],[152.74849,-28.36157],[152.77625,-28.34612],[152.80125,-28.35726],[152.82625,-28.32126],[152.86499,-28.30943],[152.9348,-28.33466],[153.03482,-28.34296],[153.10463,-28.35852],[153.13702,-28.31331],[153.1694,-28.29228],[153.17924,-28.25022],[153.23148,-28.26511],[153.24387,-28.24474],[153.29197,-28.23646],[153.3291,-28.23562],[153.3408,-28.24973],[153.36349,-28.25173],[153.39582,-28.22851],[153.42266,-28.19561],[153.43975,-28.18648],[153.45753,-28.18037],[153.4657,-28.16458],[153.48005,-28.15544],[153.4983,-28.16128],[153.53446,-28.1769],[153.54204,-28.16915],[153.55168,-28.16473],[154,-28],[154,-50],[140,-50],[129,-40],[129,-26]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:VK9L:**Lord Howe Islands#VK9N:**Norfolk Islands#VK0M:**Macquarie Islands#ZL:**New Zealand#ZL7:**Chatham Islands#ZL8:**Kermadec Islands#ZL9:**Auckland & Campbell islands","itu_zone_number":60,"itu_zone_name_loc":[-40,170]},"geometry":{"type":"Polygon","coordinates":[[[154,-28],[154,-55],[185,-55],[185,-28],[154,-28]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!:KH1:**Baker & Howland islands#KH3:**Johnston Island#KH5:**Palmyra Island & Kingman Reef – but not Jarvis Island#KH6:**Hawaii & Midway & Kure#T32:**Eastern Kiribati – Northern Line Is. only","itu_zone_number":61,"itu_zone_name_loc":[15,-170]},"geometry":{"type":"Polygon","coordinates":[[[-189.999999,30],[-189.999999,15],[-185,15],[-185,0],[-150,0],[-150,30],[-189.999999,30]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!!!:A3:**Tonga#E51:**North Cook Islands#E6:**Niue#FW:**Wallis & Futuna Islands#KH5:**Jarvis Island – but not Palmyra Island#KH8:**American Samoa#KH8:**Swains Island#T31:**Central Kiribati#ZK3:**Tokelau Islands#5W:**Samoa","itu_zone_number":62,"itu_zone_name_loc":[-15,-170]},"geometry":{"type":"Polygon","coordinates":[[[-178,0],[-178,-12],[-182,-12],[-177,-16],[-177,-22],[-180,-22],[-180,-28],[-163,-28],[-163.5,-13],[-156,-10],[-159,0],[-178,0]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!!:CE0Y:**Easter Island – but not Salas y Gomez Island#E52:**South Cook Islands#FO:**Austral Islands#FO:**French Polynesia#FO:**Marquesas Islands#T32:**Eastern Kiribati – Central and Southern Line Is. only#VP6:**Ducie Island#VP6:**Pitcairn Islands","itu_zone_number":63,"itu_zone_name_loc":[-15,-135]},"geometry":{"type":"Polygon","coordinates":[[[-159,0],[-156,-10],[-163.5,-13],[-163,-28],[-107,-28],[-107,-20],[-120,0],[-159,0]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!:T8:**Palau#KH2:**Guam#KH0:**Mariana Islands#V6:**Federated States of Micronesia - west of 150º E","itu_zone_number":64,"itu_zone_name_loc":[10,140]},"geometry":{"type":"Polygon","coordinates":[[[150,22],[150,0],[140,0],[130,2.5],[130,20],[140,20],[140,22],[150,22]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!!:C2:**Nauru#KH9:**Wake Island#T2:**Tuvalu#T30:**Western Kiribati#T33:**Banaba Island#V6:**Federated States of Micronesia - east of 150º E#V7:**Marshall Islands","itu_zone_number":65,"itu_zone_name_loc":[10,162]},"geometry":{"type":"Polygon","coordinates":[[[150,22],[170,22],[170,15],[175,15],[175,0],[182,0],[182,-12],[173,-12],[162,0],[150,0],[150,22]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!:ZD7:**Saint Helena#ZD8:**Ascension Island#ZD9:**Tristan da Cunha & Gough Islands","itu_zone_number":66,"itu_zone_name_loc":[-23,-11]},"geometry":{"type":"Polygon","coordinates":[[[-28,0],[5,0],[5,-45],[-28,-45],[-28,0]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:.:**Antarctica - north of 80º S and between 20º W and 40º E#3Y:**Bouvet Island","itu_zone_number":67,"itu_zone_name_loc":[-70,10]},"geometry":{"type":"Polygon","coordinates":[[[-20,-50],[40,-50],[40,-80],[-20,-80],[-20,-50]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!:FT...W:**Crozet Islands#FT...X:**Kerguelen Islands#FT...Z:**Amsterdam & St. Paul Islands#VK0:**Heard Island","itu_zone_number":68,"itu_zone_name_loc":[-47.5,60]},"geometry":{"type":"Polygon","coordinates":[[[40,-60],[40,-35],[80,-35],[80,-60],[40,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**Antarctica - north of 80º S and between 40º and 100º E","itu_zone_number":69,"itu_zone_name_loc":[-70,70]},"geometry":{"type":"Polygon","coordinates":[[[40,-60],[100,-60],[100,-80],[40,-80],[40,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**Antarctica - north of 80º S and between 100º and 160º E","itu_zone_number":70,"itu_zone_name_loc":[-70,130]},"geometry":{"type":"Polygon","coordinates":[[[100,-60],[160,-60],[160,-80],[100,-80],[100,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**Antarctica - north of 80º S and between 160º E and 140º W","itu_zone_number":71,"itu_zone_name_loc":[-70,-170]},"geometry":{"type":"Polygon","coordinates":[[[-200,-60],[-140,-60],[-140,-80],[-200,-80],[-200,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!:.:**Antarctica - north of 80º S and between 140º and 80º W#3Y:**Peter 1st Island","itu_zone_number":72,"itu_zone_name_loc":[-70,-110]},"geometry":{"type":"Polygon","coordinates":[[[-140,-60],[-80,-60],[-80,-80],[-140,-80],[-140,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!:.:**Antarctica - north of 80º S and between 80º and 20º W#VP8:**South Georgia Island#VP8:**South Orkney Islands#VP8:**South Sandwich Islands#VP8:**South Shetland Islands","itu_zone_number":73,"itu_zone_name_loc":[-70,-50]},"geometry":{"type":"Polygon","coordinates":[[[-80,-60],[-55,-60],[-55,-50],[-20,-50],[-20,-80],[-80,-80],[-80,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**Antarctica - between 80º and 90º S","itu_zone_number":74,"itu_zone_name_loc":[-82.5,0]},"geometry":{"type":"Polygon","coordinates":[[[180,-80],[-180,-80],[-180,-85],[180,-85]]]}},{"type":"Feature","properties":{"itu_zone_name":"!!!!!!:JW:**Svalbard, north of 80º N#OX:**Greenland, north of 80º N#RI1FJ:**Franz Josef Land, north of 80º N#UA0:**Asiatic Russia, north of 80º N – Severnaya Zemlya#!!VE:**Canada#VY0:Nunavut, north of 80º N","itu_zone_number":75,"itu_zone_name_loc":[82.5,0]},"geometry":{"type":"Polygon","coordinates":[[[-180,80],[180,80],[180,85],[-180,85]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":76,"itu_zone_name_loc":[40,-150]},"geometry":{"type":"Polygon","coordinates":[[[-175,30],[-123.1156,30],[-124.63097,32.46386],[-130.784,48.57479],[-141,58],[-170,50],[-175,50],[-175,30]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":77,"itu_zone_name_loc":[15,-135]},"geometry":{"type":"Polygon","coordinates":[[[-150,30],[-150,0],[-120,0],[-109.89813,6.32386],[-123.1156,30],[-150,30]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:CE0Y:**Salas y Gomez Island only","itu_zone_number":78,"itu_zone_name_loc":[-15,-95]},"geometry":{"type":"Polygon","coordinates":[[[-107,-28],[-82.24915,-28.94332],[-77.10206,-18.33367],[-92.02149,-5.96576],[-92.18997,6.011],[-109.89813,6.32386],[-120,0],[-107,-20],[-107,-28]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":79,"itu_zone_name_loc":[-40,-160]},"geometry":{"type":"Polygon","coordinates":[[[-175,-28],[-175,-55],[-180,-55],[-180,-60],[-140,-60],[-140,-28],[-175,-28]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":80,"itu_zone_name_loc":[-40,-125]},"geometry":{"type":"Polygon","coordinates":[[[-140,-28],[-140,-60],[-107,-60],[-107,-28],[-140,-28]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":81,"itu_zone_name_loc":[-40,-90]},"geometry":{"type":"Polygon","coordinates":[[[-107,-28],[-107,-60],[-78,-60],[-78,-40],[-79.31855,-40],[-82.24915,-28.94332],[-107,-28]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":82,"itu_zone_name_loc":[50,-30]},"geometry":{"type":"Polygon","coordinates":[[[-14,60.35968],[-13,44],[-40,44],[-40,43],[-50,43],[-50,54],[-14,60.35968]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":83,"itu_zone_name_loc":[25,-47.5]},"geometry":{"type":"Polygon","coordinates":[[[-57,43],[-57,10],[-60,10],[-51.62045,7],[-28,7],[-40,23],[-40,43],[-57,43]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":84,"itu_zone_name_loc":[-45,-40]},"geometry":{"type":"Polygon","coordinates":[[[-55,-40],[-55,-50],[-20,-50],[-20,-45],[-28,-45],[-28,-40],[-55,-40]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":85,"itu_zone_name_loc":[-45,10]},"geometry":{"type":"Polygon","coordinates":[[[-20,-45],[-20,-50],[20,-50],[5,-20],[5,-45],[-20,-45]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":86,"itu_zone_name_loc":[-25,70]},"geometry":{"type":"Polygon","coordinates":[[[40,-35],[40,-27],[60,-27],[65,-20],[62.46122,-10],[80,-10],[80,-35],[40,-35]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":87,"itu_zone_name_loc":[-25,95]},"geometry":{"type":"Polygon","coordinates":[[[80,-40],[110,-40],[110,-13],[89.999999,-13],[89.999999,-10],[80,-10],[80,-40]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":88,"itu_zone_name_loc":[-50,95]},"geometry":{"type":"Polygon","coordinates":[[[80,-60],[80,-40],[110,-40],[110,-60],[80,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:.:**only water zone+NOT VALID FOR ITUPSK","itu_zone_number":89,"itu_zone_name_loc":[-54,140]},"geometry":{"type":"Polygon","coordinates":[[[110,-60],[110,-40],[129,-40],[140,-50],[154,-50],[154,-55],[180,-55],[180,-60],[110,-60]]]}},{"type":"Feature","properties":{"itu_zone_name":"!:JD1:**Minami Tori-shima","itu_zone_number":90,"itu_zone_name_loc":[39,165]},"geometry":{"type":"Polygon","coordinates":[[[160,50],[185,50],[185,30],[170,30],[170,22],[150,22],[150,45.21871],[160,50]]]}}]} \ No newline at end of file diff --git a/src/StaticMap/LICENSE b/src/StaticMap/LICENSE new file mode 100644 index 000000000..f82968d2d --- /dev/null +++ b/src/StaticMap/LICENSE @@ -0,0 +1,23 @@ +https://github.com/DantSu/php-osm-static-api + +MIT License + +Copyright (c) 2021 Franck ALARY + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/StaticMap/README.md b/src/StaticMap/README.md new file mode 100644 index 000000000..1d3b9bed9 --- /dev/null +++ b/src/StaticMap/README.md @@ -0,0 +1,116 @@ +[![Packagist](https://img.shields.io/packagist/dt/DantSu/php-osm-static-api.svg)](https://packagist.org/packages/DantSu/php-osm-static-api) +[![Latest Stable Version](https://poser.pugx.org/DantSu/php-osm-static-api/v/stable)](https://packagist.org/packages/DantSu/php-osm-static-api) +[![GitHub license](https://img.shields.io/github/license/DantSu/php-osm-static-api.svg)](https://github.com/DantSu/php-osm-static-api/blob/master/LICENSE) + +# PHP OpenStreetMap Static API +https://github.com/DantSu/php-osm-static-api + +PHP library to easily get static image from OpenStreetMap with markers, lines, circles and polygons. + +This project uses the [Tile Server](https://wiki.openstreetmap.org/wiki/Tile_servers) of the OpenStreetMap Foundation which runs entirely on donated resources, see [Tile Usage Policy](https://operations.osmfoundation.org/policies/tiles/) for more information. + +## ✨ Supporting + +⭐ Star this repository to support this project. You will contribute to increase the visibility of this library 🙂 + +## Installation + +Install this library easily with composer : + +```cmd +composer require dantsu/php-osm-static-api +``` + +## How to use + +### Generate OpenStreetMap static image with markers and polygon : + +```php +use \Wavelog\StaticMapImage\OpenStreetMap; +use \Wavelog\StaticMapImage\LatLng; +use \Wavelog\StaticMapImage\Polygon; +use \Wavelog\StaticMapImage\Markers; + +\header('Content-type: image/png'); +(new OpenStreetMap(new LatLng(44.351933, 2.568113), 17, 600, 400)) + ->addMarkers( + (new Markers(__DIR__ . '/resources/marker.png')) + ->setAnchor(Markers::ANCHOR_CENTER, Markers::ANCHOR_BOTTOM) + ->addMarker(new LatLng(44.351933, 2.568113)) + ->addMarker(new LatLng(44.351510, 2.570020)) + ->addMarker(new LatLng(44.351873, 2.566250)) + ) + ->addDraw( + (new Polygon('FF0000', 2, 'FF0000DD')) + ->addPoint(new LatLng(44.351172, 2.571092)) + ->addPoint(new LatLng(44.352097, 2.570045)) + ->addPoint(new LatLng(44.352665, 2.568107)) + ->addPoint(new LatLng(44.352887, 2.566503)) + ->addPoint(new LatLng(44.352806, 2.565972)) + ->addPoint(new LatLng(44.351517, 2.565672)) + ) + ->getImage() + ->displayPNG(); +``` + +![Exported OpenStreetMap image](./src/samples/resources/sample1.png) + +### Align and zoom the map to drawings and markers : + +- `->fitToDraws(int $padding = 0)` +- `->fitToMarkers(int $padding = 0)` +- `->fitToDrawsAndMarkers(int $padding = 0)` +- `->fitToPoints(LatLng[] $points, int $padding = 0)` + +`$padding` sets the amount of padding in the borders of the map that shouldn't be accounted for when setting the view to fit bounds. This can be positive or negative according to your needs. + +```php +use \Wavelog\StaticMapImage\OpenStreetMap; +use \Wavelog\StaticMapImage\LatLng; +use \Wavelog\StaticMapImage\Polygon; +use \Wavelog\StaticMapImage\Markers; + +\header('Content-type: image/png'); +(new OpenStreetMap(new LatLng(0, 0), 0, 600, 400)) + ->addMarkers( + (new Markers(__DIR__ . '/resources/marker.png')) + ->setAnchor(Markers::ANCHOR_CENTER, Markers::ANCHOR_BOTTOM) + ->addMarker(new LatLng(44.351933, 2.568113)) + ->addMarker(new LatLng(44.351510, 2.570020)) + ->addMarker(new LatLng(44.351873, 2.566250)) + ) + ->addDraw( + (new Polygon('FF0000', 2, 'FF0000DD')) + ->addPoint(new LatLng(44.351172, 2.571092)) + ->addPoint(new LatLng(44.352097, 2.570045)) + ->addPoint(new LatLng(44.352665, 2.568107)) + ->addPoint(new LatLng(44.352887, 2.566503)) + ->addPoint(new LatLng(44.352806, 2.565972)) + ->addPoint(new LatLng(44.351517, 2.565672)) + ) + ->fitToDraws(10) + ->getImage() + ->displayPNG(); +``` + +## Documentation + +| Class | Description | +|--- |--- | +| [Circle](./docs/classes/DantSu/OpenStreetMapStaticAPI/Circle.md) | Wavelog\StaticMapImage\Circle draw circle on the map.| +| [LatLng](./docs/classes/DantSu/OpenStreetMapStaticAPI/LatLng.md) | Wavelog\StaticMapImage\LatLng define latitude and longitude for map, lines, markers.| +| [Line](./docs/classes/DantSu/OpenStreetMapStaticAPI/Line.md) | Wavelog\StaticMapImage\Line draw line on the map.| +| [MapData](./docs/classes/DantSu/OpenStreetMapStaticAPI/MapData.md) | Wavelog\StaticMapImage\MapData convert latitude and longitude to image pixel position.| +| [Markers](./docs/classes/DantSu/OpenStreetMapStaticAPI/Markers.md) | Wavelog\StaticMapImage\Markers display markers on the map.| +| [OpenStreetMap](./docs/classes/DantSu/OpenStreetMapStaticAPI/OpenStreetMap.md) | Wavelog\StaticMapImage\OpenStreetMap is a PHP library created for easily get static image from OpenStreetMap with markers, lines, polygons and circles.| +| [Polygon](./docs/classes/DantSu/OpenStreetMapStaticAPI/Polygon.md) | Wavelog\StaticMapImage\Polygon draw polygon on the map.| +| [TileLayer](./docs/classes/DantSu/OpenStreetMapStaticAPI/TileLayer.md) | Wavelog\StaticMapImage\TileLayer define tile server url and related configuration| +| [XY](./docs/classes/DantSu/OpenStreetMapStaticAPI/XY.md) | Wavelog\StaticMapImage\XY define X and Y pixel position for map, lines, markers.| + + +## Contributing + +Please fork this repository and contribute back using pull requests. + +Any contributions, large or small, major features, bug fixes, are welcomed and appreciated but will be thoroughly reviewed. + diff --git a/src/StaticMap/src/Circle.php b/src/StaticMap/src/Circle.php new file mode 100644 index 000000000..2e899c6a2 --- /dev/null +++ b/src/StaticMap/src/Circle.php @@ -0,0 +1,132 @@ +center = $center; + $this->edge = $center; + $this->strokeColor = \str_replace('#', '', $strokeColor); + $this->strokeWeight = $strokeWeight > 0 ? $strokeWeight : 0; + $this->fillColor = \str_replace('#', '', $fillColor); + $this->wrap = $wrap; + } + + /** + * Set a latitude and longitude to define the radius of the circle. + * + * @param LatLng $edge Latitude and longitude of the edge point of a circle + * @return $this Fluent interface + */ + public function setEdgePoint(LatLng $edge): Circle + { + $this->edge = $edge; + return $this; + } + + /** + * Set the radius of the circle in meters. + * + * @param float $radius radius of a circle in meters + * @return $this Fluent interface + */ + public function setRadius(float $radius): Circle + { + $this->edge = GeographicConverter::metersToLatLng($this->center, $radius, 45); + return $this; + } + + /** + * Draw the circle on the map image. + * + * @see https://github.com/DantSu/php-image-editor See more about DantSu\PHPImageEditor\Image + * + * @param Image $image The map image (An instance of DantSu\PHPImageEditor\Image) + * @param MapData $mapData Bounding box of the map + * @return $this Fluent interface + */ + public function draw(Image $image, MapData $mapData): Circle + { + $center = $mapData->convertLatLngToPxPosition($this->center, $this->wrap); + $edge = $mapData->convertLatLngToPxPosition($this->edge, $this->wrap); + + $angleAndLenght = Geometry2D::getAngleAndLengthFromPoints($center->getX(), $center->getY(), $edge->getX(), $edge->getY()); + $length = \round($angleAndLenght['length'] + $this->strokeWeight / 2); + + $dImage = Image::newCanvas($image->getWidth(), $image->getHeight()); + + if ($this->strokeWeight > 0) { + $dImage->drawCircle($center->getX(), $center->getY(), $length * 2, $this->strokeColor); + } + + $dImage->drawCircle($center->getX(), $center->getY(), ($length - $this->strokeWeight) * 2, $this->fillColor); + + $image->pasteOn($dImage, 0, 0); + return $this; + } + + + /** + * Get bounding box of the shape + * @return LatLng[] + */ + public function getBoundingBox(): array + { + $distance = GeographicConverter::latLngToMeters($this->center, $this->edge) * 1.4142; + return [ + GeographicConverter::metersToLatLng($this->center, $distance, 315), + GeographicConverter::metersToLatLng($this->center, $distance, 135) + ]; + } +} diff --git a/src/StaticMap/src/Geometry2D.php b/src/StaticMap/src/Geometry2D.php new file mode 100644 index 000000000..2333233b2 --- /dev/null +++ b/src/StaticMap/src/Geometry2D.php @@ -0,0 +1,61 @@ += 360) { + if ($angle < 0) $angle += 360; + elseif ($angle >= 360) $angle -= 360; + } + return $angle; + } + + public static function getDstXY(float $originX, float $originY, float $angle, float $length): array + { + $angle = 360 - $angle; + return [ + 'x' => $originX + \cos($angle * M_PI / 180) * $length, + 'y' => $originY + \sin($angle * M_PI / 180) * $length + ]; + } + + public static function getDstXYRounded(float $originX, float $originY, float $angle, float $length): array + { + $xy = Geometry2D::getDstXY($originX, $originY, $angle, $length); + return [ + 'x' => \round($xy['x']), + 'y' => \round($xy['y']) + ]; + } + + public static function getAngleAndLengthFromPoints(float $originX, float $originY, float $dstX, float $dstY): array + { + $width = $dstX - $originX; + $height = $dstY - $originY; + $diameter = \sqrt(\pow($width, 2) + \pow($height, 2)); + + if($width == 0) { + $angle = 90; + } elseif ($height == 0) { + $angle = 0; + } else { + $angle = \atan2(\abs($height), \abs($width)) * 180.0 / M_PI; + } + + if($width < 0 && $height < 0) { + $angle += 180; + } elseif ($width < 0) { + $angle = 180 - $angle; + } elseif ($height < 0) { + $angle = 360 - $angle; + } + + return [ + 'angle' => 360 - $angle, + 'length' => $diameter + ]; + } +} diff --git a/src/StaticMap/src/Image.php b/src/StaticMap/src/Image.php new file mode 100644 index 000000000..04e7031e7 --- /dev/null +++ b/src/StaticMap/src/Image.php @@ -0,0 +1,1369 @@ +image; + $this + ->resetCanvas($this->width, $this->height) + ->pasteGdImageOn($srcInstance, $this->width, $this->height, 0, 0); + } + + /** + * Return the image width + * + * @return int Image width + */ + public function getWidth(): int { + return $this->width; + } + + /** + * Return the image height + * + * @return int Image height + */ + public function getHeight(): int { + return $this->height; + } + + /** + * Return the image type + * Image type : 1 GIF; 2 JPG; 3 PNG + * + * @return int Image type + */ + public function getType(): int { + return $this->type; + } + + /** + * Return image resource + * @return resource|\GdImage Image resource + */ + public function getImage() { + return $this->image; + } + + /** + * Return true if $image is a resource or a GDImage instance + * @param resource|\GdImage A variable to be tested + * @return bool True if $image is a resource or a GDImage instance + */ + public static function isGdImage($image): bool { + return \is_resource($image) || (\is_object($image) && $image instanceof \GdImage); + } + + /** + * Return true if image is initialized + * + * @return bool Is image initialized + */ + public function isImageDefined(): bool { + return static::isGdImage($this->image); + } + + //=============================================================================================================================== + //============================================================CREATE/DESTROY===================================================== + //=============================================================================================================================== + + /** + * (Static method) Create a new image with transparent background + * + * @param int $width Pixel width of the image + * @param int $height Pixel height of the image + * @return Image Return Image instance + */ + public static function newCanvas(int $width, int $height): Image { + return (new Image)->resetCanvas($width, $height); + } + + /** + * Create a new image with transparent background + * + * @param int $width Pixel width of the image + * @param int $height Pixel height of the image + * @return $this Fluent interface + */ + public function resetCanvas(int $width, int $height): Image { + if (($this->image = \imagecreatetruecolor($width, $height)) === false) { + $this->resetFields(); + return $this; + } + + \imagealphablending($this->image, false); + \imagesavealpha($this->image, true); + \imagefill($this->image, 0, 0, \imagecolorallocatealpha($this->image, 0, 0, 0, 127)); + + $this->width = $width; + $this->height = $height; + return $this; + } + + /** + * (Static method) Open image from local path or URL. + * + * @param string $path Path to the image file + * @return Image Return Image instance + */ + public static function fromPath(string $path): Image { + return (new Image)->path($path); + } + + /** + * Open image from local path or URL. + * + * @param string $path Path to the image file + * @return $this Fluent interface + */ + public function path(string $path): Image { + $imageSize = \getimagesize($path); + + if ($imageSize === false) { + return $this; + } + + list($this->width, $this->height, $this->type, $attr) = $imageSize; + + switch ($this->type) { + case 1: + $this->image = \imagecreatefromgif($path); + break; + case 2: + $this->image = \imagecreatefromjpeg($path); + break; + case 3: + $this->image = \imagecreatefrompng($path); + break; + } + + if ($this->image === false) { + return $this->resetFields(); + } + + if (!\imageistruecolor($this->image)) { + \imagepalettetotruecolor($this->image); + } + + \imagealphablending($this->image, false); + \imagesavealpha($this->image, true); + + return $this; + } + + /** + * (Static method) Open an uploaded image from html form (using $file["tmp_name"]). + * + * @param array $file File array from html form + * @return Image Return Image instance + */ + public static function fromForm(array $file): Image { + return (new Image)->form($file); + } + + /** + * Open an uploaded image from html form (using $file["tmp_name"]). + * + * @param array $file File array from html form + * @return $this Fluent interface + */ + public function form(array $file): Image { + if (isset($file) && isset($file["name"]) && $file["name"] != "") { + $this->path($file["tmp_name"]); + } + return $this; + } + + /** + * (Static method) Create an Image instance from image raw data. + * + * @param string $data Raw data of the image + * @return Image Return Image instance + */ + public static function fromData(string $data): Image { + return (new Image)->data($data); + } + + /** + * Create an Image instance from image raw data. + * + * @param string $data Raw data of the image + * @return $this Fluent interface + */ + public function data(string $data): Image { + if (($this->image = \imagecreatefromstring($data)) === false) { + return $this->resetFields(); + } + + $this->width = \imagesx($this->image); + $this->height = \imagesy($this->image); + $this->type = 3; + + if (!\imageistruecolor($this->image)) { + \imagepalettetotruecolor($this->image); + } + + \imagealphablending($this->image, false); + \imagesavealpha($this->image, true); + + return $this; + } + + /** + * (Static method) Create an Image instance from base64 image data. + * + * @param string $base64 Base64 data of the image + * @return Image Return Image instance + */ + public static function fromBase64(string $base64): Image { + return (new Image)->base64($base64); + } + + /** + * Create an Image instance from base64 image data. + * + * @param string $base64 Base64 data of the image + * @return $this Fluent interface + */ + public function base64(string $base64): Image { + return $this->data(\base64_decode($base64)); + } + + /** + * (Static method) Open image from URL with cURL. + * + * @param string $url Url of the image file + * @param array $curlOptions cURL options + * @param bool $failOnError If true, throw an exception if the url cannot be loaded + * @return Image Return Image instance + * @throws \Exception + */ + public static function fromCurl(string $url, array $curlOptions = [], bool $failOnError = false): Image { + return (new Image)->curl($url, $curlOptions, $failOnError); + } + + /** + * Open image from URL with cURL. + * + * @param string $url Url of the image file + * @param array $curlOptions cURL options + * @param bool $failOnError If true, throw an exception if the url cannot be loaded + * @return $this Fluent interface + * @throws \Exception + */ + public function curl(string $url, array $curlOptions = [], bool $failOnError = false): Image { + $defaultCurlOptions = [ + CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/116.0', + CURLOPT_REFERER => \strtolower($_SERVER["REQUEST_SCHEME"] . '://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]), + CURLOPT_RETURNTRANSFER => 1, + CURLOPT_TIMEOUT => 5, + ]; + + $curl = \curl_init(); + \curl_setopt($curl, CURLOPT_URL, $url); + \curl_setopt_array($curl, $defaultCurlOptions + $curlOptions); + + $image = \curl_exec($curl); + + if ($failOnError && \curl_errno($curl)) { + throw new \Exception(\curl_error($curl)); + } + + \curl_close($curl); + + if ($image === false) { + return $this->resetFields(); + } + + return $this->data($image); + } + + + /** + * Destroy image + * + * @return $this Fluent interface + */ + public function destroy(): Image { + if ($this->isImageDefined()) { + \imagedestroy($this->image); + } + $this->resetFields(); + return $this; + } + + /** + * Reset private fields + * + * @return $this Fluent interface + */ + private function resetFields(): Image { + $this->image = null; + $this->type = null; + $this->width = null; + $this->height = null; + return $this; + } + + + + + //=============================================================================================================================== + //============================================================UTILS============================================================== + //=============================================================================================================================== + + /** + * Convert horizontal `Image::ALIGN_...` to int position. + * + * @param int|string $posX Pixel position or `Image::ALIGN_...` constant + * @param int $width Width of the element to align + * @return int Horizontal pixel position + */ + private function convertPosX($posX, int $width = 0): int { + switch ($posX) { + case static::ALIGN_LEFT: + return 0; + case static::ALIGN_CENTER: + return \round($this->width / 2 - $width / 2); + case static::ALIGN_RIGHT: + return $this->width - $width; + } + return \round($posX); + } + + /** + * Convert vertical `Image::ALIGN_...` to int position. + * + * @param int|string $posY Pixel position or `Image::ALIGN_...` constant + * @param int $height Height of the element to align + * @return int Vertical pixel position + */ + private function convertPosY($posY, int $height = 0): int { + switch ($posY) { + case static::ALIGN_TOP: + return 0; + case static::ALIGN_MIDDLE: + return \round($this->height / 2 - $height / 2); + case static::ALIGN_BOTTOM: + return $this->height - $height; + } + return \round($posY); + } + + //=============================================================================================================================== + //=================================================RESIZING/ROTATE/TRUNCATE====================================================== + //=============================================================================================================================== + + + /** + * Rotate counterclockwise the image + * + * @param float $angle Angle in degrees + * @return $this Fluent interface + */ + public function rotate(float $angle): Image { + if (!$this->isImageDefined()) { + return $this; + } + + if (($image = \imagerotate($this->image, Geometry2D::degrees0to360($angle), $this->colorAllocate('#000000FF'), 0)) !== false) { + $this->image = $image; + $this->width = \imagesx($this->image); + $this->height = \imagesy($this->image); + } + return $this; + } + + /** + * Resize the image keeping the proportions. + * + * @param int $width Max width + * @param int $height Max height + * @return $this Fluent interface + */ + public function resizeProportion(int $width, int $height): Image { + $finalWidth = $width; + $finalHeight = \round($this->height * $width / $this->width); + + if ($finalHeight > $height) { + $finalWidth = \round($this->width * $height / $this->height); + $finalHeight = $height; + } + + return $this->resize($finalWidth, $finalHeight); + } + + /** + * Downscale the image keeping the proportions. + * + * @param int $maxWidth Max width + * @param int $maxHeight Max height + * @return $this Fluent interface + */ + public function downscaleProportion(int $maxWidth, int $maxHeight): Image { + if ($this->width > $maxWidth || $this->height > $maxHeight) { + if ($this->width > $this->height) { + $finalHeight = \round($this->height * $maxWidth / $this->width); + $finalWidth = $maxWidth; + + if ($finalHeight > $maxHeight) { + $finalWidth = \round($this->width * $maxHeight / $this->height); + $finalHeight = $maxHeight; + } + } else { + $finalWidth = \round($this->width * $maxHeight / $this->height); + $finalHeight = $maxHeight; + } + } else { + $finalWidth = $this->width; + $finalHeight = $this->height; + } + + return $this->resize($finalWidth, $finalHeight); + } + + /** + * Resize the image. + * + * @param int $width Target width + * @param int $height Target height + * @return $this Fluent interface + */ + public function resize(int $width, int $height): Image { + if (!$this->isImageDefined()) { + return $this; + } + + // Vermeide unnötiges Resampling + if ($this->width == $width && $this->height == $height) { + return $this; // Keine Änderung notwendig + } + + $image = Image::newCanvas($width, $height)->getImage(); + + if (\imagecopyresampled($image, $this->image, 0, 0, 0, 0, $width, $height, $this->width, $this->height) !== false) { + $this->image = $image; + $this->width = $width; + $this->height = $height; + } + return $this; + } + + /** + * Downscale the image keeping the proportions then crop to fit to $width and $height params. + * Use $posX and $posY to select the cropping zone (You can use `Image::ALIGN_...`). + * + * @param int $width Max width + * @param int $height Max height + * @param int|string $posX Left crop position in pixel. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param int|string $posY Top crop position in pixel. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @return $this Fluent interface + */ + public function downscaleAndCrop(int $width, int $height, $posX = Image::ALIGN_CENTER, $posY = Image::ALIGN_MIDDLE): Image { + if ($this->width < $width) { + $width = $this->width; + } + if ($this->height < $height) { + $height = $this->height; + } + + $finalWidth = \round($this->width * $height / $this->height); + $finalHeight = $height; + + if ($finalWidth < $width) { + $finalHeight = \round($this->height * $width / $this->width); + $finalWidth = $width; + } + + if ($this->downscaleProportion($finalWidth, $finalHeight)) { + $this->crop($width, $height, $posX, $posY); + } + + return $this; + } + + /** + * Crop to fit to $width and $height params. + * Use $posX and $posY to select the cropping zone (You can use `Image::ALIGN_...`). + * + * @param int $width Target width + * @param int $height Target height + * @param int|string $posX Left crop position in pixel. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param int|string $posY Top crop position in pixel. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @return $this Fluent interface + */ + public function crop(int $width, int $height, $posX = Image::ALIGN_CENTER, $posY = Image::ALIGN_MIDDLE): Image { + if (!$this->isImageDefined()) { + return $this; + } + + if ($this->width < $width) { + $width = $this->width; + } + if ($this->height < $height) { + $height = $this->height; + } + + //============================================== + + $posX = $this->convertPosX($posX, $width); + $posY = $this->convertPosY($posY, $height); + + //============================================== + + if ($posX < 0) { + $posX = 0; + } + + if ($posX + $width > $this->width) { + $posX = $this->width - $width; + } + + if ($posY < 0) { + $posY = 0; + } + + if ($posY + $height > $this->height) { + $posY = $this->height - $height; + } + + //============================================== + + if ( + ($image = \imagecreatetruecolor($width, $height)) !== false && + \imagealphablending($image, false) !== false && + \imagesavealpha($image, true) !== false && + ($transparent = $this->colorAllocate('#000000FF')) !== false && + \imagefill($image, 0, 0, $transparent) !== false && + \imagecopyresampled($image, $this->image, 0, 0, $posX, $posY, $width, $height, $width, $height) !== false + ) { + $this->image = $image; + $this->width = $width; + $this->height = $height; + } + + return $this; + } + + //=============================================================================================================================== + //==========================================================COLOR================================================================ + //=============================================================================================================================== + + /** + * Format the string color. + * + * @param string $stringColor Hexadecimal string color + * @return string Formatted hexadecimal string color + */ + private static function formatColor(string $stringColor): string { + $stringColor = \trim(\str_replace('#', '', $stringColor)); + switch (\mb_strlen($stringColor)) { + case 3: + $r = \substr($stringColor, 0, 1); + $g = \substr($stringColor, 1, 1); + $b = \substr($stringColor, 2, 1); + return $r . $r . $g . $g . $b . $b . '00'; + case 6: + return $stringColor . '00'; + case 8: + return $stringColor; + default: + return '00000000'; + } + } + + /** + * Allocate a new color to the image. + * + * @param string $color Hexadecimal string color + * @return int|false Color id + */ + private function colorAllocate(string $color) { + $color = static::formatColor($color); + $red = \hexdec(\substr($color, 0, 2)); + $green = \hexdec(\substr($color, 2, 2)); + $blue = \hexdec(\substr($color, 4, 2)); + $alpha = \floor(\hexdec(\substr($color, 6, 2)) / 2); + + $colorId = \imagecolorexactalpha($this->image, $red, $green, $blue, $alpha); + if ($colorId === -1) { + $colorId = \imagecolorallocatealpha($this->image, $red, $green, $blue, $alpha); + } + + return $colorId; + } + + + //=============================================================================================================================== + //==========================================================PASTE================================================================ + //=============================================================================================================================== + + /** + * Paste the image at $posX and $posY position (You can use `Image::ALIGN_...`). + * + * @param Image $image Image instance to be paste on + * @param int|string $posX Left position in pixel. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param int|string $posY Top position in pixel. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @return $this Fluent interface + */ + public function pasteOn(Image $image, $posX = Image::ALIGN_CENTER, $posY = Image::ALIGN_MIDDLE): Image { + if (!$this->isImageDefined() || !$image->isImageDefined()) { + return $this; + } + + return $this->pasteGdImageOn($image->getImage(), $image->getWidth(), $image->getHeight(), $posX, $posY); + } + + /** + * Paste the image at $posX and $posY position (You can use `Image::ALIGN_...`). + * + * @param resource|\GdImage $image Image resource + * @param int $imageWidth Image width to paste + * @param int $imageHeight Image height to paste + * @param int|string $posX Left position in pixel. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param int|string $posY Top position in pixel. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @return $this Fluent interface + */ + public function pasteGdImageOn($image, int $imageWidth, int $imageHeight, $posX = Image::ALIGN_CENTER, $posY = Image::ALIGN_MIDDLE): Image { + if (!$this->isImageDefined() || !static::isGdImage($image)) { + return $this; + } + + $posX = $this->convertPosX($posX, $imageWidth); + $posY = $this->convertPosY($posY, $imageHeight); + + \imagesavealpha($this->image, false); + \imagealphablending($this->image, true); + \imagecopy($this->image, $image, $posX, $posY, 0, 0, $imageWidth, $imageHeight); + \imagealphablending($this->image, false); + \imagesavealpha($this->image, true); + + return $this; + } + + /** + * Use a grayscale image (`$mask`) to apply transparency to the image. + * + * @param Image $mask Image instance of the grayscale alpha mask + * @return $this Fluent interface + */ + public function alphaMask(Image $mask): Image { + if (!$this->isImageDefined() || !$mask->isImageDefined()) { + return $this; + } + + $this->downscaleAndCrop($mask->getWidth(), $mask->getHeight(), static::ALIGN_CENTER, static::ALIGN_MIDDLE); + + if (($newImage = \imagecreatetruecolor($mask->getWidth(), $mask->getHeight())) === false) { + return $this; + } + \imagealphablending($newImage, false); + \imagesavealpha($newImage, true); + + for ($i = 0; $i < $this->height; $i++) { + for ($j = 0; $j < $this->width; $j++) { + $alpha = \floor((255 - \imagecolorat($mask->getImage(), $j, $i) & 0xFF) / 2); + $red = 0; + $green = 0; + $blue = 0; + + if ($alpha != 127) { + $rgb = \imagecolorat($this->image, $j, $i); + $alpha = 127 - \ceil((127 - (($rgb >> 24) & 0x7F)) * (127 - $alpha) / 127); + } + + if ($alpha != 127) { + $red = ($rgb >> 16) & 0xFF; + $green = ($rgb >> 8) & 0xFF; + $blue = $rgb & 0xFF; + } + + $newColor = \imagecolorexactalpha($newImage, $red, $green, $blue, $alpha); + if ($newColor === -1) { + $newColor = \imagecolorallocatealpha($newImage, $red, $green, $blue, $alpha); + } + + if (!\imagesetpixel($newImage, $j, $i, $newColor)) { + return $this; + } + } + } + + \imagedestroy($this->image); + $this->image = $newImage; + + return $this; + } + + /** + * change the image opacity + * + * @param float $opacity Opacity (0 to 1) + * @return $this Fluent interface + */ + public function setOpacity(float $opacity): Image { + if (!$this->isImageDefined()) { + return $this; + } + + \imagealphablending($this->image, false); + \imagesavealpha($this->image, true); + \imagefilter($this->image, IMG_FILTER_COLORIZE, 0, 0, 0, \round(127 * (1 - $opacity))); + + return $this; + } + + //=============================================================================================================================== + //=========================================================POST PROD============================================================= + //=============================================================================================================================== + + /** + * Apply a grayscale filter on the image. + * + * @return $this Fluent interface + */ + public function grayscale(): Image { + if (!$this->isImageDefined()) { + return $this; + } + + \imagefilter($this->image, IMG_FILTER_GRAYSCALE); + return $this; + } + + /** + * Write text on the image. + * + * @param string $string Text to be added on the image + * @param string $fontPath Path to the TTF file + * @param float $fontSize Font size + * @param string $color Hexadecimal string color + * @param float|string $posX Left position in pixel. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param float|string $posY Top position in pixel. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @param float|string $anchorX Horizontal anchor of the text. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param float|string $anchorY Vertical anchor of the text. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @param float $rotation Counterclockwise text rotation in degrees + * @param float $letterSpacing add space between letters + * @return $this Fluent interface + */ + public function writeText(string $string, string $fontPath, float $fontSize, string $color = 'ffffff', $posX = 0, $posY = 0, $anchorX = Image::ALIGN_CENTER, $anchorY = Image::ALIGN_MIDDLE, float $rotation = 0, float $letterSpacing = 0, bool $wrap = false): Image { + $this->writeTextAndGetBoundingBox($string, $fontPath, $fontSize, $color, $posX, $posY, $anchorX, $anchorY, $rotation, $letterSpacing, $wrap); + return $this; + } + + /** + * Write text on the image and get the bounding box of the text in the image. + * + * @param string $string Text to be added on the image + * @param string $fontPath Path to the TTF file + * @param float $fontSize Font size + * @param string $color Hexadecimal string color + * @param float|string $posX Left position in pixel. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param float|string $posY Top position in pixel. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @param float|string $anchorX Horizontal anchor of the text. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param float|string $anchorY Vertical anchor of the text. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @param float $rotation Counterclockwise text rotation in degrees + * @param float $letterSpacing add space between letters + * @return array Bounding box positions of the text + */ + public function writeTextAndGetBoundingBox(string $string, string $fontPath, float $fontSize, string $color = 'ffffff', $posX = 0, $posY = 0, $anchorX = Image::ALIGN_CENTER, $anchorY = Image::ALIGN_MIDDLE, float $rotation = 0, float $letterSpacing = 0, bool $wrap = false): array { + if (!$this->isImageDefined()) { + return []; + } + + $posX = $this->convertPosX($posX); + $posY = $this->convertPosY($posY); + + \imagesavealpha($this->image, false); + \imagealphablending($this->image, true); + + $color = $this->colorAllocate($color); + + if ($color === false) { + return []; + } + + if ( + $anchorX == static::ALIGN_LEFT || + $anchorX == static::ALIGN_CENTER || + $anchorX == static::ALIGN_RIGHT || + $anchorY == static::ALIGN_TOP || + $anchorY == static::ALIGN_MIDDLE || + $anchorY == static::ALIGN_BOTTOM + ) { + if ( + ($newImg = \imagecreatetruecolor(1, 1)) === false || + ($posText = $this->imagettftextWithSpacing($newImg, $fontSize, $rotation, 0, 0, $color, $fontPath, $string, $letterSpacing)) === false + ) { + return []; + } + \imagedestroy($newImg); + + $xMin = 0; + $xMax = 0; + $yMin = 0; + $yMax = 0; + for ($i = 0; $i < 8; $i += 2) { + if ($posText[$i] < $xMin) { + $xMin = $posText[$i]; + } + if ($posText[$i] > $xMax) { + $xMax = $posText[$i]; + } + if ($posText[$i + 1] < $yMin) { + $yMin = $posText[$i + 1]; + } + if ($posText[$i + 1] > $yMax) { + $yMax = $posText[$i + 1]; + } + } + + $sizeWidth = $xMax - $xMin; + $sizeHeight = $yMax - $yMin; + + switch ($anchorX) { + case static::ALIGN_LEFT: + $posX = $posX - $xMin; + break; + case static::ALIGN_CENTER: + $posX = $posX - $sizeWidth / 2 - $xMin; + break; + case static::ALIGN_RIGHT: + $posX = $posX - $sizeWidth - $xMin; + break; + } + switch ($anchorY) { + case static::ALIGN_TOP: + $posY = $posY - $yMin; + break; + case static::ALIGN_MIDDLE: + $posY = $posY - $sizeHeight / 2 - $yMin; + break; + case static::ALIGN_BOTTOM: + $posY = $posY - $sizeHeight - $yMin; + break; + } + } + + $posText = $this->imagettftextWithSpacing($this->image, $fontSize, $rotation, $posX, $posY, $color, $fontPath, $string, $letterSpacing); + + if ($posText === false) { + return []; + } + + if ($wrap) { + $imageWidth = \imagesx($this->image); + $posTextLeft = $this->imagettftextWithSpacing($this->image, $fontSize, $rotation, $posX - $imageWidth, $posY, $color, $fontPath, $string, $letterSpacing); + $posTextRight = $this->imagettftextWithSpacing($this->image, $fontSize, $rotation, $posX + $imageWidth, $posY, $color, $fontPath, $string, $letterSpacing); + } + + \imagealphablending($this->image, false); + \imagesavealpha($this->image, true); + + return [ + 'top-left' => [ + 'x' => $posText[6], + 'y' => $posText[7] + ], + 'top-right' => [ + 'x' => $posText[4], + 'y' => $posText[5] + ], + 'bottom-left' => [ + 'x' => $posText[0], + 'y' => $posText[1] + ], + 'bottom-right' => [ + 'x' => $posText[2], + 'y' => $posText[3] + ], + 'baseline' => [ + 'x' => $posX, + 'y' => $posY + ] + ]; + } + + /** + * @param $image + * @param float $size + * @param float $angle + * @param float $x + * @param float $y + * @param int $color + * @param string $font + * @param string $text + * @param float $spacing + * @return array|false + */ + private function imagettftextWithSpacing($image, float $size, float $angle, float $x, float $y, int $color, string $font, string $text, float $spacing = 0) { + if ($spacing == 0) { + return \imagettftext($image, $size, $angle, \round($x), \round($y), $color, $font, $text); + } else { + $length = \mb_strlen($text); + + if ($length == 0) { + return false; + } + + $letterPos = ['x' => $x, 'y' => $y]; + $textWidth = $spacing * ($length - 1); + $top = 0; + $bottom = 0; + + for ($i = 0; $i < $length; ++$i) { + $char = \mb_substr($text, $i, 1); + \imagettftext($image, $size, $angle, \round($letterPos['x']), \round($letterPos['y']), $color, $font, $char); + $bbox = \imagettfbbox($size, 0, $font, $char); + $letterPos = Geometry2D::getDstXY($letterPos['x'], $letterPos['y'], $angle, $spacing + $bbox[2]); + + $textWidth += $bbox[2]; + if ($top > $bbox[5]) { + $top = $bbox[5]; + } + if ($bottom < $bbox[1]) { + $bottom = $bbox[1]; + } + } + + $bottomLeft = Geometry2D::getDstXY($x, $y, $angle - 90, $bottom); + $bottomRight = Geometry2D::getDstXY($bottomLeft['x'], $bottomLeft['y'], $angle, $textWidth); + $topLeft = Geometry2D::getDstXY($x, $y, $angle + 90, \abs($top)); + $topRight = Geometry2D::getDstXY($topLeft['x'], $topLeft['y'], $angle, $textWidth); + + return [$bottomLeft['x'], $bottomLeft['y'], $bottomRight['x'], $bottomRight['y'], $topRight['x'], $topRight['y'], $topLeft['x'], $topLeft['y']]; + } + } + + /** + * Draw a rectangle. + * + * @param int $left Left position in pixel + * @param int $top Top position in pixel + * @param int $right Right position in pixel + * @param int $bottom Bottom position in pixel + * @param string $color Hexadecimal string color + * @return $this Fluent interface + */ + public function drawRectangle(int $left, int $top, int $right, int $bottom, string $color): Image { + if (!$this->isImageDefined()) { + return $this; + } + + $color = $this->colorAllocate($color); + + if (($bottom - $top) <= 1.5) { + \imageline($this->image, $left, $top, $right, $top, $color); + } elseif (($right - $left) <= 1.5) { + \imageline($this->image, $left, $top, $left, $bottom, $color); + } else { + \imagefilledrectangle($this->image, $left, $top, $right, $bottom, $color); + } + return $this; + } + + /** + * Draw a polygon. + * + * @param int[] $points Array of polygon's points [x1, y1, x2, y2, x3, y3...] + * @param string $color Hexadecimal string color + * @return $this Fluent interface + */ + public function drawPolygon(array $points, string $color = '000000', $antialias = false): Image { + if (!$this->isImageDefined()) { + return $this; + } + + $color = $this->colorAllocate($color); + + if ($color === false) { + return $this; + } + + if ($antialias) { + \imageantialias($this->image, true); + if (PHP_MAJOR_VERSION >= 8) { + \imagepolygon($this->image, $points, $color); + } else { + \imagepolygon($this->image, $points, \count($points) / 2, $color); + } + } + + if (PHP_MAJOR_VERSION >= 8) { + \imagefilledpolygon($this->image, $points, $color); + } else { + \imagefilledpolygon($this->image, $points, \count($points) / 2, $color); + } + + if ($antialias) { + \imageantialias($this->image, false); + } + + return $this; + } + + /** + * Draw a Line from `$originX, $originY` to `$dstX, $dstY`. + * + * @param int $originX Horizontal start position in pixel + * @param int $originY Vertical start position in pixel + * @param int $dstX Horizontal destination in pixel + * @param int $dstY Vertical destination in pixel + * @param int $weight Line weight in pixel + * @param string $color Hexadecimal string color + * @return $this Fluent interface + */ + public function drawLine(int $originX, int $originY, int $dstX, int $dstY, int $weight, string $color = '#000000'): Image { + if (!$this->isImageDefined()) { + return $this; + } + + $angleAndLength = Geometry2D::getAngleAndLengthFromPoints($originX, $originY, $dstX, $dstY); + return $this->drawLineWithAngle($originX, $originY, $angleAndLength['angle'], $angleAndLength['length'], $weight, $color); + } + + /** + * Draw a line using angle and length. + * + * @param int $originX Horizontal start position in pixel + * @param int $originY Vertical start position in pixel + * @param float $angle Counterclockwise angle in degrees + * @param float $length Line length in pixel + * @param int $weight Line weight in pixel + * @param string $color Hexadecimal string color + * @return $this Fluent interface + */ + public function drawLineWithAngle(int $originX, int $originY, float $angle, float $length, int $weight, string $color = '#000000'): Image { + $angle = Geometry2D::degrees0to360($angle); + + $points1 = Geometry2D::getDstXY($originX, $originY, Geometry2D::degrees0to360($angle - 90), \floor($weight / 2)); + $points2 = Geometry2D::getDstXY($points1['x'], $points1['y'], $angle, $length); + $points4 = Geometry2D::getDstXY($originX, $originY, Geometry2D::degrees0to360($angle + 90), \floor($weight / 2)); + $points3 = Geometry2D::getDstXY($points4['x'], $points4['y'], $angle, $length); + + return $this->drawPolygon( + [ + \round($points1['x']), + \round($points1['y']), + \round($points2['x']), + \round($points2['y']), + \round($points3['x']), + \round($points3['y']), + \round($points4['x']), + \round($points4['y']) + ], + $color, + true + ); + } + + /** + * Draw an arrow with angle and length. + * + * @param int $originX Horizontal start position in pixel + * @param int $originY Vertical start position in pixel + * @param float $angle Counterclockwise angle in degrees + * @param float $length Line length in pixel + * @param int $weight Line weight in pixel + * @param string $color Hexadecimal string color + * @return $this Fluent interface + */ + public function drawArrowWithAngle(int $originX, int $originY, float $angle, float $length, int $weight, string $color = '#000000'): Image { + if (!$this->isImageDefined()) { + return $this; + } + + $headOrigin = Geometry2D::getDstXYRounded($originX, $originY, Geometry2D::degrees0to360($angle), \round($length - $weight / 2)); + $this->drawLineWithAngle($headOrigin['x'], $headOrigin['y'], Geometry2D::degrees0to360($angle + 150), \round($length / 10), $weight, $color); + $this->drawLineWithAngle($headOrigin['x'], $headOrigin['y'], Geometry2D::degrees0to360($angle - 150), \round($length / 10), $weight, $color); + return $this->drawLineWithAngle($originX, $originY, $angle, $length, $weight, $color); + } + + + /** + * Draw and arrow from `$originX, $originY` to `$dstX, $dstY`. + * + * @param int $originX Horizontal start position in pixel + * @param int $originY Vertical start position in pixel + * @param int $dstX Horizontal destination in pixel + * @param int $dstY Vertical destination in pixel + * @param int $weight Line weight in pixel + * @param string $color Hexadecimal string color + * @return $this Fluent interface + */ + public function drawArrow(int $originX, int $originY, int $dstX, int $dstY, int $weight, string $color = '#000000'): Image { + if (!$this->isImageDefined()) { + return $this; + } + + $angleAndLength = Geometry2D::getAngleAndLengthFromPoints($originX, $originY, $dstX, $dstY); + return $this->drawArrowWithAngle($originX, $originY, $angleAndLength['angle'], $angleAndLength['length'], $weight, $color); + } + + /** + * Draw a circle. + * + * @param int $posX Left position of the circle in pixel + * @param int $posY Top position of the circle in pixel + * @param int $diameter Circle diameter in pixel + * @param string $color Hexadecimal string color + * @param string $anchorX Horizontal anchor of the text. You can use `Image::ALIGN_LEFT`, `Image::ALIGN_CENTER`, `Image::ALIGN_RIGHT` + * @param string $anchorY Vertical anchor of the text. You can use `Image::ALIGN_TOP`, `Image::ALIGN_MIDDLE`, `Image::ALIGN_BOTTOM` + * @return $this Fluent interface + */ + public function drawCircle(int $posX, int $posY, int $diameter, string $color = '#FFFFFF', string $anchorX = Image::ALIGN_CENTER, string $anchorY = Image::ALIGN_MIDDLE): Image { + if (!$this->isImageDefined()) { + return $this; + } + + $color = $this->colorAllocate($color); + + if ($color === false) { + return $this; + } + + switch ($anchorX) { + case static::ALIGN_LEFT: + $posX = \round($posX + $diameter / 2); + break; + case static::ALIGN_CENTER: + break; + case static::ALIGN_RIGHT: + $posX = \round($posX - $diameter / 2); + break; + } + + switch ($anchorY) { + case static::ALIGN_TOP: + $posY = \round($posY + $diameter / 2); + break; + case static::ALIGN_MIDDLE: + break; + case static::ALIGN_BOTTOM: + $posY = \round($posY - $diameter / 2); + break; + } + + \imagefilledellipse($this->image, $posX, $posY, $diameter, $diameter, $color); + return $this; + } + + //=============================================================================================================================== + //=========================================================GET PICTURE=========================================================== + //=============================================================================================================================== + + /** + * Save the image to PNG file. + * + * @param string $path Path to the PNG image file + * @return bool return true if success + */ + public function savePNG(string $path): bool { + if (!$this->isImageDefined()) { + return false; + } + return \imagepng($this->image, $path); + } + + /** + * Save the image to JPG file. + * + * @param string $path Path to the JPG image file + * @param int $quality JPG quality : 0 to 100 + * @return bool return true if success + */ + public function saveJPG(string $path, int $quality = -1): bool { + if (!$this->isImageDefined()) { + return false; + } + return \imagejpeg($this->image, $path, $quality); + } + + /** + * Save the image to GIF file. + * + * @param string $path Path to the GIF image file + * @return bool return true if success + */ + public function saveGIF(string $path): bool { + if (!$this->isImageDefined()) { + return false; + } + return \imagegif($this->image, $path); + } + + /** + * Display in PNG format. + */ + public function displayPNG() { + if ($this->isImageDefined()) { + \imagepng($this->image); + } + } + + /** + * Display in JPG format. + * + * @param int $quality JPG quality : 0 to 100 + */ + public function displayJPG(int $quality = -1) { + if ($this->isImageDefined()) { + \imagejpeg($this->image, null, $quality); + } + } + + /** + * Display in GIF format. + */ + public function displayGIF() { + if ($this->isImageDefined()) { + \imagegif($this->image); + } + } + + /** + * Get image raw data + * + * @param callable $imgFunction Image function to be called + * @return string Data + */ + private function getData(callable $imgFunction): string { + if (!$this->isImageDefined()) { + return ''; + } + + \ob_start(); + $imgFunction(); + $imageData = \ob_get_contents(); + \ob_end_clean(); + + return $imageData; + } + + /** + * Get image PNG raw data + * + * @return string Data + */ + public function getDataPNG(): string { + return $this->getData(function () { + $this->displayPNG(); + }); + } + + /** + * Get image JPG raw data + * + * @param int $quality JPG quality : 0 to 100 + * @return string Data + */ + public function getDataJPG(int $quality = -1): string { + return $this->getData(function () use ($quality) { + $this->displayJPG($quality); + }); + } + + /** + * Get image GIF raw data + * + * @return string Data + */ + public function getDataGIF(): string { + return $this->getData(function () { + $this->displayGIF(); + }); + } + + /** + * Get image PNG base64 data + * + * @return string Data + */ + public function getBase64PNG(): string { + return \base64_encode($this->getDataPNG()); + } + + /** + * Get image JPG base64 data + * + * @param int $quality JPG quality : 0 to 100 + * @return string Data + */ + public function getBase64JPG(int $quality = -1): string { + return \base64_encode($this->getDataJPG($quality)); + } + + /** + * Get image GIF base64 data + * + * @return string Data + */ + public function getBase64GIF(): string { + return \base64_encode($this->getDataGIF()); + } + + /** + * Get image PNG base64 data for tag. + * + * @return string Data + */ + public function getBase64SourcePNG(): string { + return 'data:image/png;base64,' . $this->getBase64PNG(); + } + + /** + * Get image JPG base64 data for tag. + * + * @param int $quality JPG quality : 0 to 100 + * @return string Data + */ + public function getBase64SourceJPG(int $quality = -1): string { + return 'data:image/jpeg;base64,' . $this->getBase64JPG($quality); + } + + /** + * Get image GIF base64 data for tag. + * + * @return string Data + */ + public function getBase64SourceGIF(): string { + return 'data:image/gif;base64,' . $this->getBase64GIF(); + } +} diff --git a/src/StaticMap/src/Interfaces/Draw.php b/src/StaticMap/src/Interfaces/Draw.php new file mode 100644 index 000000000..3f9ed50b7 --- /dev/null +++ b/src/StaticMap/src/Interfaces/Draw.php @@ -0,0 +1,14 @@ +lat = $lat; + $this->lng = $lng; + } + + /** + * Get latitude + * @return float Latitude + */ + public function getLat(): float + { + return $this->lat; + } + + /** + * Get longitude + * @return float Longitude + */ + public function getLng(): float + { + return $this->lng; + } +} diff --git a/src/StaticMap/src/Line.php b/src/StaticMap/src/Line.php new file mode 100644 index 000000000..cd41ca6c1 --- /dev/null +++ b/src/StaticMap/src/Line.php @@ -0,0 +1,135 @@ +color = \str_replace('#', '', $color); + $this->weight = $weight; + $this->wrap = $wrap; + } + + /** + * Add a latitude and longitude to the multi-points line + * @param LatLng $latLng Latitude and longitude to add + * @return $this Fluent interface + */ + public function addPoint(LatLng $latLng): Line + { + $this->points[] = $latLng; + return $this; + } + + /** + * Draw the line on the map image. + * + * @see https://github.com/DantSu/php-image-editor See more about DantSu\PHPImageEditor\Image + * + * @param Image $image The map image (An instance of DantSu\PHPImageEditor\Image) + * @param MapData $mapData Bounding box of the map + * @return $this Fluent interface + */ + public function draw(Image $image, MapData $mapData): Line + { + /** + * @var $cPoints XY[] + */ + $cPoints = \array_map( + function (LatLng $p) use ($mapData) { + return $mapData->convertLatLngToPxPosition($p, !$this->wrap); + }, + $this->points + ); + + foreach ((array) $cPoints as $k => $point) { + if (isset($cPoints[$k - 1])) { + $image->drawLine($cPoints[$k - 1]->getX(), $cPoints[$k - 1]->getY(), $point->getX(), $point->getY(), $this->weight, $this->color); + + // do the same left and right if $wrap is disabled. 'Lines' are special here + if ($this->wrap) { + $image->drawLine($cPoints[$k - 1]->getX() + $image->getWidth(), $cPoints[$k - 1]->getY(), $point->getX() + $image->getWidth(), $point->getY(), $this->weight, $this->color); + $image->drawLine($cPoints[$k - 1]->getX() - $image->getWidth(), $cPoints[$k - 1]->getY(), $point->getX() - $image->getWidth(), $point->getY(), $this->weight, $this->color); + } + } + } + return $this; + } + + /** + * Get bounding box of the shape + * @return LatLng[] + */ + public function getBoundingBox(): array + { + return MapData::getBoundingBoxFromPoints($this->points); + } + + /** + * Geodesic points between two coordinates + * + * @param LatLng $start + * @param LatLng $end + * + * @return LatLng[] + */ + public function geodesicPoints(LatLng $start, LatLng $end): array { + $points = [$start]; + $totalDistance = GeographicConverter::latLngToMeters($start, $end); + $distanceInterval = 10000; + $currentDistance = 0; + + while ($currentDistance + $distanceInterval < $totalDistance) { + $currentDistance += $distanceInterval; + + $lastPoint = end($points); + $angle = GeographicConverter::getBearing($lastPoint, $end); + + $nextPoint = GeographicConverter::metersToLatLng($lastPoint, $distanceInterval, $angle); + $points[] = $nextPoint; + } + + $points[] = $end; + return $points; + } +} diff --git a/src/StaticMap/src/MapData.php b/src/StaticMap/src/MapData.php new file mode 100644 index 000000000..17b549806 --- /dev/null +++ b/src/StaticMap/src/MapData.php @@ -0,0 +1,361 @@ +centerMap->getLng(); + $wrappedLon = fmod(($lon - $centerLon + 180), 360) - 180 + $centerLon; + if ($wrap) { + $x = ($wrappedLon + 180) / 360 * \pow(2, $zoom); + } else { + $x = ($lon + 180) / 360 * \pow(2, $zoom); + } + // Continue with the existing calculation + $tile = \floor($x); + return [ + 'id' => $tile, + 'position' => \round($tileSize * ($x - $tile)) + ]; + } + + /** + * Convert latitude and zoom to vertical OpenStreetMap tile number and pixel position. + * @param float $lat Latitude + * @param int $zoom Zoom + * @param int $tileSize Tile size + * @return int[] OpenStreetMap tile id and pixel position of the given latitude and zoom + */ + public static function latToYTile(float $lat, int $zoom, int $tileSize): array { + $y = (1 - \log(\tan(\deg2rad($lat)) + 1 / \cos(\deg2rad($lat))) / M_PI) / 2 * \pow(2, $zoom); + $tile = \floor($y); + return [ + 'id' => $tile, + 'position' => \round($tileSize * ($y - $tile)) + ]; + } + + /** + * Convert horizontal OpenStreetMap tile number ad zoom to longitude. + * @param int $id Horizontal OpenStreetMap tile id + * @param int $position Horizontal pixel position on tile + * @param int $zoom Zoom + * @param int $tileSize Tile size + * @return float Longitude of the given OpenStreetMap tile id and zoom + */ + public static function xTileToLng(int $id, int $position, int $zoom, int $tileSize): float { + return ($id + $position / $tileSize) / \pow(2, $zoom) * 360 - 180; + } + + /** + * Convert vertical OpenStreetMap tile number and zoom to latitude. + * @param int $id Vertical OpenStreetMap tile id + * @param int $position Vertical pixel position on tile + * @param int $zoom Zoom + * @param int $tileSize Tile size + * @return float Latitude of the given OpenStreetMap tile id and zoom + */ + public static function yTileToLat(int $id, int $position, int $zoom, int $tileSize): float { + return \rad2deg(\atan(\sinh(M_PI * (1 - 2 * ($id + $position / $tileSize) / \pow(2, $zoom))))); + } + + /** + * Transform array of LatLng to bounding box + * + * @param LatLng[] $points + * @return LatLng[] + */ + public static function getBoundingBoxFromPoints(array $points): array { + $minLat = 360; + $maxLat = -360; + $minLng = 360; + $maxLng = -360; + foreach ($points as $point) { + if ($point->getLat() < $minLat) { + $minLat = $point->getLat(); + } + if ($point->getLat() > $maxLat) { + $maxLat = $point->getLat(); + } + if ($point->getLng() < $minLng) { + $minLng = $point->getLng(); + } + if ($point->getLng() > $maxLng) { + $maxLng = $point->getLng(); + } + } + return [new LatLng($maxLat, $minLng), new LatLng($minLat, $maxLng)]; + } + + /** + * Get center and zoom from two points. + * + * @param LatLng $topLeft + * @param LatLng $bottomRight + * @param int $padding + * @param int $imageWidth + * @param int $imageHeight + * @param int $tileSize + * @return array center : LatLng, zoom : int + */ + public static function getCenterAndZoomFromBoundingBox(LatLng $topLeft, LatLng $bottomRight, int $padding, int $imageWidth, int $imageHeight, int $tileSize): array { + $zoom = 20; + $padding *= 2; + $topTilePos = MapData::latToYTile($topLeft->getLat(), $zoom, $tileSize); + $bottomTilePos = MapData::latToYTile($bottomRight->getLat(), $zoom, $tileSize); + $leftTilePos = MapData::lngToXTile($topLeft->getLng(), $zoom, $tileSize); + $rightTilePos = MapData::lngToXTile($bottomRight->getLng(), $zoom, $tileSize); + $pxZoneWidth = ($rightTilePos['id'] - $leftTilePos['id']) * $tileSize + $rightTilePos['position'] - $leftTilePos['position']; + $pxZoneHeight = ($bottomTilePos['id'] - $topTilePos['id']) * $tileSize + $bottomTilePos['position'] - $topTilePos['position']; + + return [ + 'center' => GeographicConverter::getCenter($topLeft, $bottomRight), + 'zoom' => \intval( + \floor( + \log( + \min( + 1, + ($imageHeight - $padding) / $pxZoneHeight, + ($imageWidth - $padding) / $pxZoneWidth + ) * \pow(2, $zoom) + ) / 0.69314 + ) + ) + ]; + } + + /** + * @var int zoom + */ + private $zoom; + /** + * @var int tile size + */ + private $tileSize; + /** + * @var XY Width and height of the image in pixel + */ + private $outputSize; + /** + * @var XY top left tile numbers + */ + private $tileTopLeft; + /** + * @var XY bottom right tile numbers + */ + private $tileBottomRight; + /** + * @var XY left and top pixels to crop to fit final image size + */ + private $mapCropTopLeft; + /** + * @var XY bottom and right pixels to crop to fit final image size + */ + private $mapCropBottomRight; + /** + * @var LatLng Latitude and longitude of top left image + */ + private $latLngTopLeft; + /** + * @var LatLng Latitude and longitude of top right image + */ + private $latLngTopRight; + /** + * @var LatLng Latitude and longitude of bottom left image + */ + private $latLngBottomLeft; + /** + * @var LatLng Latitude and longitude of bottom right image + */ + private $latLngBottomRight; + + + /** + * @param LatLng $centerMap + * @param int $zoom + * @param XY $outputSize + * @param int $tileSize + */ + public function __construct(LatLng $centerMap, int $zoom, XY $outputSize, int $tileSize) { + $this->centerMap = $centerMap; + $this->zoom = $zoom; + $this->outputSize = $outputSize; + $this->tileSize = $tileSize; + + $x = static::lngToXTile($centerMap->getLng(), $zoom, $this->tileSize); + $y = static::latToYTile($centerMap->getLat(), $zoom, $this->tileSize); + + $startX = \floor($outputSize->getX() / 2 - $x['position']); + $startY = \floor($outputSize->getY() / 2 - $y['position']); + + + $rightSize = $outputSize->getX() - $startX; + $bottomSize = $outputSize->getY() - $startY; + + $this->mapCropTopLeft = new XY( + $startX < 0 ? \abs($startX) : ($startX % $this->tileSize == 0 ? 0 : $this->tileSize - $startX % $this->tileSize), + $startY < 0 ? \abs($startY) : ($startY % $this->tileSize == 0 ? 0 : $this->tileSize - $startY % $this->tileSize) + ); + $this->mapCropBottomRight = new XY( + ($rightSize % $this->tileSize == 0 ? 0 : $this->tileSize - $rightSize % $this->tileSize), + ($bottomSize % $this->tileSize == 0 ? 0 : $this->tileSize - $bottomSize % $this->tileSize) + ); + $this->tileTopLeft = new XY( + $x['id'] - \ceil($startX / $this->tileSize), + $y['id'] - \ceil($startY / $this->tileSize) + ); + $this->tileBottomRight = new XY( + $x['id'] - 1 + \ceil($rightSize / $this->tileSize), + $y['id'] - 1 + \ceil($bottomSize / $this->tileSize) + ); + + $this->latLngTopLeft = new LatLng( + static::yTileToLat($this->tileTopLeft->getY(), $this->mapCropTopLeft->getY(), $zoom, $this->tileSize), + static::xTileToLng($this->tileTopLeft->getX(), $this->mapCropTopLeft->getX(), $zoom, $this->tileSize) + ); + $this->latLngTopRight = new LatLng( + static::yTileToLat($this->tileTopLeft->getY(), $this->mapCropTopLeft->getY(), $zoom, $this->tileSize), + static::xTileToLng($this->tileBottomRight->getX(), $this->tileSize - $this->mapCropBottomRight->getX(), $zoom, $this->tileSize) + ); + $this->latLngBottomLeft = new LatLng( + static::yTileToLat($this->tileBottomRight->getY(), $this->tileSize - $this->mapCropBottomRight->getY(), $zoom, $this->tileSize), + static::xTileToLng($this->tileTopLeft->getX(), $this->mapCropTopLeft->getX(), $zoom, $this->tileSize) + ); + $this->latLngBottomRight = new LatLng( + static::yTileToLat($this->tileBottomRight->getY(), $this->tileSize - $this->mapCropBottomRight->getY(), $zoom, $this->tileSize), + static::xTileToLng($this->tileBottomRight->getX(), $this->tileSize - $this->mapCropBottomRight->getX(), $zoom, $this->tileSize) + ); + } + + + /** + * Get latitude and longitude of top left image + * @return LatLng Latitude and longitude of top left image + */ + public function getLatLngTopLeft(): LatLng { + return $this->latLngTopLeft; + } + + /** + * Get latitude and longitude of top right image + * @return LatLng Latitude and longitude of top right image + */ + public function getLatLngTopRight(): LatLng { + return $this->latLngTopRight; + } + + /** + * Get latitude and longitude of bottom left image + * @return LatLng Latitude and longitude of bottom left image + */ + public function getLatLngBottomLeft(): LatLng { + return $this->latLngBottomLeft; + } + + /** + * Get latitude and longitude of bottom right image + * @return LatLng Latitude and longitude of bottom right image + */ + public function getLatLngBottomRight(): LatLng { + return $this->latLngBottomRight; + } + + /** + * Get width and height of the image in pixel + * @return XY Width and height of the image in pixel + */ + public function getOutputSize(): XY { + return $this->outputSize; + } + + /** + * Get the zoom + * @return int zoom + */ + public function getZoom(): int { + return $this->zoom; + } + + /** + * Get tile size + * @return int tile size + */ + public function getTileSize(): int { + return $this->tileSize; + } + + + /** + * Get top left tile numbers + * @return XY top left tile numbers + */ + public function getTileTopLeft(): XY { + return $this->tileTopLeft; + } + + /** + * Get bottom right tile numbers + * @return XY bottom right tile numbers + */ + public function getTileBottomRight(): XY { + return $this->tileBottomRight; + } + + /** + * Get top left crop pixels + * @return XY top left crop pixels + */ + public function getMapCropTopLeft(): XY { + return $this->mapCropTopLeft; + } + + /** + * Get bottom right crop pixels + * @return XY bottom right crop pixels + */ + public function getMapCropBottomRight(): XY { + return $this->mapCropBottomRight; + } + + + /** + * Convert a latitude and longitude to a XY pixel position in the image + * @param LatLng $latLng Latitude and longitude to be converted + * @return XY Pixel position of latitude and longitude in the image + */ + public function convertLatLngToPxPosition(LatLng $latLng, $wrap = false): XY { + $x = static::lngToXTile($latLng->getLng(), $this->zoom, $this->tileSize, $wrap); // we only need to wrap X + $y = static::latToYTile($latLng->getLat(), $this->zoom, $this->tileSize); + + return new XY( + (int)(($x['id'] - $this->tileTopLeft->getX()) * $this->tileSize - $this->mapCropTopLeft->getX() + $x['position']), + (int)(($y['id'] - $this->tileTopLeft->getY()) * $this->tileSize - $this->mapCropTopLeft->getY() + $y['position']) + ); + } +} diff --git a/src/StaticMap/src/Markers.php b/src/StaticMap/src/Markers.php new file mode 100644 index 000000000..3d92f1863 --- /dev/null +++ b/src/StaticMap/src/Markers.php @@ -0,0 +1,145 @@ +wrap = $wrap; + $this->image = Image::fromPath($pathImage); + } + + /** + * Add a marker on the map. + * @param LatLng $coordinate Latitude and longitude of the marker + * @return $this Fluent interface + */ + public function addMarker(LatLng $coordinate): Markers { + $this->coordinates[] = $coordinate; + return $this; + } + + /** + * Resize the marker image. + * + * @param int $width Width of the marker + * @param int $height Height of the marker + * @return $this Fluent interface + * + */ + + public function resizeMarker(int $width, int $height): Markers { + $this->image = $this->image->resize($width, $height); + return $this; + } + + /** + * Define the anchor point of the image marker. + * @param int|string $horizontalAnchor Horizontal anchor in pixel or you can use `Markers::ANCHOR_LEFT`, `Markers::ANCHOR_CENTER`, `Markers::ANCHOR_RIGHT` + * @param int|string $verticalAnchor Vertical anchor in pixel or you can use `Markers::ANCHOR_TOP`, `Markers::ANCHOR_MIDDLE`, `Markers::ANCHOR_BOTTOM` + * @return $this Fluent interface + */ + public function setAnchor($horizontalAnchor, $verticalAnchor): Markers { + $this->horizontalAnchor = $horizontalAnchor; + $this->verticalAnchor = $verticalAnchor; + return $this; + } + + /** + * Draw markers on the image map. + * + * @see https://github.com/DantSu/php-image-editor See more about DantSu\PHPImageEditor\Image + * @param Image $image The map image (An instance of DantSu\PHPImageEditor\Image) + * @param MapData $mapData Bounding box of the map + * @return $this Fluent interface + */ + public function draw(Image $image, MapData $mapData): Markers { + $imageMarginLeft = $this->horizontalAnchor; + $offsetX = 1; + $offsetY = 6; + + switch ($imageMarginLeft) { + case Markers::ANCHOR_LEFT: + $imageMarginLeft = 0; + break; + case Markers::ANCHOR_CENTER: + $imageMarginLeft = $this->image->getWidth() / 2; + break; + case Markers::ANCHOR_RIGHT: + $imageMarginLeft = $this->image->getWidth(); + break; + } + + $imageMarginTop = $this->verticalAnchor; + switch ($imageMarginTop) { + case Markers::ANCHOR_TOP: + $imageMarginTop = 0; + break; + case Markers::ANCHOR_MIDDLE: + $imageMarginTop = $this->image->getHeight() / 2; + break; + case Markers::ANCHOR_BOTTOM: + $imageMarginTop = $this->image->getHeight(); + break; + } + + foreach ($this->coordinates as $coordinate) { + $xy = $mapData->convertLatLngToPxPosition($coordinate); + $image->pasteOn($this->image, $xy->getX() + $offsetX - $imageMarginLeft, $xy->getY() + $offsetY - $imageMarginTop); + + // pasteOn again for wrapping left and right + if ($this->wrap) { + $image->pasteOn($this->image, $xy->getX() + $offsetX - $imageMarginLeft + $image->getWidth(), $xy->getY() + $offsetY - $imageMarginTop); + $image->pasteOn($this->image, $xy->getX() + $offsetX - $imageMarginLeft - $image->getWidth(), $xy->getY() + $offsetY - $imageMarginTop); + } + } + + return $this; + } + + /** + * Get bounding box of markers + * @return LatLng[] + */ + public function getBoundingBox(): array { + return MapData::getBoundingBoxFromPoints($this->coordinates); + } +} diff --git a/src/StaticMap/src/OpenStreetMap.php b/src/StaticMap/src/OpenStreetMap.php new file mode 100644 index 000000000..28d3e9238 --- /dev/null +++ b/src/StaticMap/src/OpenStreetMap.php @@ -0,0 +1,308 @@ +mapData = new MapData($centerMap, $tileLayer->checkZoom($zoom), new XY($imageWidth, $imageHeight), $tileSize); + $this->layers = [$tileLayer]; + } + + /** + * Add tile layer to the map + * @param TileLayer $layer An instance of TileLayer + * @return $this Fluent interface + */ + public function addLayer(TileLayer $layer) + { + $this->layers[] = $layer; + return $this; + } + + /** + * Add markers on the map + * @param Markers $markers An instance of Markers + * @return $this Fluent interface + */ + public function addMarkers(Markers $markers) + { + $this->markers[] = $markers; + return $this; + } + + /** + * Add a line on the map + * @param Draw $draw An instance of Line + * @return $this Fluent interface + */ + public function addDraw(Draw $draw) + { + $this->draws[] = $draw; + return $this; + } + + /** + * Fit map to draws. + * + * @param int $padding Padding in pixel + * @return $this Fluent interface + */ + public function fitToDraws(int $padding = 0) + { + $points = []; + foreach ($this->draws as $draw) { + $points = \array_merge($points, $draw->getBoundingBox()); + } + return $this->fitToPoints($points, $padding); + } + + /** + * Fit map to markers. + * + * @param int $padding Padding in pixel + * @return $this Fluent interface + */ + public function fitToMarkers(int $padding = 0) + { + $points = []; + foreach ($this->markers as $markers) { + $points = \array_merge($points, $markers->getBoundingBox()); + } + return $this->fitToPoints($points, $padding); + } + + /** + * Fit map to draws and markers. + * + * @param int $padding Padding in pixel + * @return $this Fluent interface + */ + public function fitToMarkersAndDraws(int $padding = 0) + { + $points = []; + foreach ($this->draws as $draw) { + $points = \array_merge($points, $draw->getBoundingBox()); + } + foreach ($this->markers as $markers) { + $points = \array_merge($points, $markers->getBoundingBox()); + } + return $this->fitToPoints($points, $padding); + } + + /** + * Fit map to an array of points. + * + * @param LatLng[] $points LatLng points + * @param int $padding Padding in pixel + * @return $this Fluent interface + */ + public function fitToPoints(array $points, int $padding = 0) + { + $outputSize = $this->mapData->getOutputSize(); + $tileSize = $this->mapData->getTileSize(); + $boundingBox = MapData::getBoundingBoxFromPoints($points); + $latLngZoom = MapData::getCenterAndZoomFromBoundingBox($boundingBox[0], $boundingBox[1], $padding, $outputSize->getX(), $outputSize->getY(), $tileSize); + $this->mapData = new MapData($latLngZoom['center'], $this->layers[0]->checkZoom($latLngZoom['zoom']), $outputSize, $tileSize); + return $this; + } + + /** + * Get data about the generated map (bounding box, size, OSM tile ids...) + * @see https://github.com/DantSu/php-osm-static-api/blob/master/docs/classes/DantSu/OpenStreetMapStaticAPI/MapData.md See more about MapData + * @return MapData data about the generated map (bounding box, size, OSM tile ids...) + */ + public function getMapData(): MapData + { + return $this->mapData; + } + + /** + * Get only the map image. + * @see https://github.com/DantSu/php-image-editor See more about DantSu\PHPImageEditor\Image + * @return Image An instance of DantSu\PHPImageEditor\Image + */ + protected function getMapImage($centerMap): Image + { + $imgSize = $this->mapData->getOutputSize(); + $startX = $this->mapData->getMapCropTopLeft()->getX() * -1; + $startY = $this->mapData->getMapCropTopLeft()->getY() * -1; + + $image = Image::newCanvas($imgSize->getX(), $imgSize->getY()); + $tileSize = $this->mapData->getTileSize(); + + foreach ($this->layers as $tileLayer) { + $yTile = $this->mapData->getTileTopLeft()->getY(); + for ($y = $startY; $y < $imgSize->getY(); $y += $tileSize) { + $xTile = $this->mapData->getTileTopLeft()->getX(); + for ($x = $startX; $x < $imgSize->getX(); $x += $tileSize) { + $xTileWrapped = $this->wrapLongitudeTile($xTile); + $image->pasteOn( + $tileLayer->getTile($xTileWrapped, $yTile, $this->mapData->getZoom(), $tileSize, $centerMap), + $x, + $y + ); + ++$xTile; + } + ++$yTile; + } + } + return $image; + } + + /** + * Wrap the longitude tile. + * @param int $xTile The x tile + * @return int The wrapped x tile + */ + protected function wrapLongitudeTile($xTile) + { + $maxTile = pow(2, $this->mapData->getZoom()); + return ($xTile % $maxTile + $maxTile) % $maxTile; + } + + /** + * Draw OpenStreetMap attribution at the right bottom of the image + * @param Image $image The image of the map + * @return Image The image of the map with attribution + */ + protected function drawAttribution(Image $image): Image + { + $margin = 5; + + // Anonymous function to render the attribution text + $attribution = function (Image $image, $margin): array { + // Collect attribution text without HTML tags (strip tags from each layer) + $attributionText = \implode( + ' - ', + \array_map(function ($layer) { + // Strip HTML tags (like ) from the attribution text + return strip_tags($layer->getAttributionText()); + }, $this->layers) + ); + + // Draw the plain text onto the image and get its bounding box + return $image->writeTextAndGetBoundingBox( + $attributionText, + __DIR__ . '/resources/font.ttf', // Font path + 10, // Font size + '0078A8', // Text color + $margin, // X margin + $margin, // Y margin + Image::ALIGN_LEFT, // Horizontal alignment + Image::ALIGN_TOP // Vertical alignment + ); + }; + + // Calculate bounding box for the attribution text + $bbox = $attribution(Image::newCanvas(1, 1), $margin); + + // Create a new canvas for the attribution background + $imageAttribution = Image::newCanvas($bbox['bottom-right']['x'] + $margin, $bbox['bottom-right']['y'] + $margin); + // Draw a semi-transparent rectangle for the attribution background + $imageAttribution->drawRectangle(0, 0, $imageAttribution->getWidth(), $imageAttribution->getHeight(), 'FFFFFF33'); + // Write the attribution text on the new canvas + $attribution($imageAttribution, $margin); + + // Paste the attribution canvas onto the main image (bottom-right corner) + return $image->pasteOn($imageAttribution, Image::ALIGN_RIGHT, Image::ALIGN_BOTTOM); + } + + /** + * Get the map image with markers and lines. + * + * @see https://github.com/DantSu/php-image-editor See more about DantSu\PHPImageEditor\Image + * @return Image An instance of DantSu\PHPImageEditor\Image + */ + public function getImage($centerMap = '00'): Image + { + $image = $this->getMapImage($centerMap); + + foreach ($this->draws as $line) { + $line->draw($image, $this->mapData); + } + + foreach ($this->markers as $markers) { + $markers->draw($image, $this->mapData); + } + + return $this->drawAttribution($image); + } +} diff --git a/src/StaticMap/src/Polygon.php b/src/StaticMap/src/Polygon.php new file mode 100644 index 000000000..ffaa283b3 --- /dev/null +++ b/src/StaticMap/src/Polygon.php @@ -0,0 +1,171 @@ +strokeColor = \str_replace('#', '', $strokeColor); + $this->strokeWeight = $strokeWeight > 0 ? $strokeWeight : 0; + $this->fillColor = \str_replace('#', '', $fillColor); + $this->wrap = $wrap; + } + + /** + * Add a latitude and longitude to the polygon + * @param LatLng $latLng Latitude and longitude to add + * @return $this Fluent interface + */ + public function addPoint(LatLng $latLng): Polygon + { + $this->points[] = $latLng; + return $this; + } + + /** + * Get all Points of the polygon + * @return array of points + */ + + public function getPoints(): array + { + return $this->points; + } + + /** + * Draw the polygon on the map image. + * + * @see https://github.com/DantSu/php-image-editor See more about DantSu\PHPImageEditor\Image + * + * @param Image $image The map image (An instance of DantSu\PHPImageEditor\Image) + * @param MapData $mapData Bounding box of the map + * @return $this Fluent interface + */ + public function draw(Image $image, MapData $mapData): Polygon + { + /** + * @var $cPoints XY[] + */ + $cPoints = \array_map( + function (LatLng $p) use ($mapData) { + return $mapData->convertLatLngToPxPosition($p); + }, + $this->points + ); + + // Funktion zum Zeichnen des Polygons, um Wiederholungen zu reduzieren + $drawPolygon = function (array $points) use ($image) { + $image->pasteOn( + Image::newCanvas($image->getWidth(), $image->getHeight()) + ->drawPolygon( + \array_reduce( + $points, + function (array $acc, XY $p) { + $acc[] = $p->getX(); + $acc[] = $p->getY(); + return $acc; + }, + [] + ), + $this->fillColor + ), + 0, + 0 + ); + }; + + // Zeichne das ursprüngliche Polygon + $drawPolygon($cPoints); + + if ($this->wrap) { + // Zeichne das Polygon links und rechts des Bildes + $width = $image->getWidth(); + $shiftedLeft = \array_map(function (XY $p) use ($width) { + return new XY($p->getX() - $width, $p->getY()); + }, $cPoints); + + $shiftedRight = \array_map(function (XY $p) use ($width) { + return new XY($p->getX() + $width, $p->getY()); + }, $cPoints); + + $drawPolygon($shiftedLeft); + $drawPolygon($shiftedRight); + } + + if ($this->strokeWeight > 0) { + // Zeichne die Linien zwischen den Punkten für das Hauptpolygon + foreach ($cPoints as $k => $point) { + $pK = $k - 1; + if (!isset($cPoints[$pK])) { + $pK = \count($cPoints) - 1; + } + $image->drawLine($cPoints[$pK]->getX(), $cPoints[$pK]->getY(), $point->getX(), $point->getY(), $this->strokeWeight, $this->strokeColor); + } + + // Zeichne die Linien für die linken und rechten Kopien des Polygons, falls Wrap aktiv ist + if ($this->wrap) { + foreach ([$shiftedLeft, $shiftedRight] as $shiftedPoints) { + foreach ($shiftedPoints as $k => $point) { + $pK = $k - 1; + if (!isset($shiftedPoints[$pK])) { + $pK = \count($shiftedPoints) - 1; + } + $image->drawLine($shiftedPoints[$pK]->getX(), $shiftedPoints[$pK]->getY(), $point->getX(), $point->getY(), $this->strokeWeight, $this->strokeColor); + } + } + } + } + + return $this; + } + + /** + * Get bounding box of the shape + * @return LatLng[] + */ + public function getBoundingBox(): array + { + return MapData::getBoundingBoxFromPoints($this->points); + } +} diff --git a/src/StaticMap/src/TileLayer.php b/src/StaticMap/src/TileLayer.php new file mode 100644 index 000000000..63cc9e601 --- /dev/null +++ b/src/StaticMap/src/TileLayer.php @@ -0,0 +1,224 @@ + + * @access public + * @see https://github.com/DantSu/php-osm-static-api Github page of this project + */ +class TileLayer { + + /** + * Default tile server. OpenStreetMaps with related attribution text + * @return TileLayer default tile server + */ + public static function defaultTileLayer(): TileLayer { + $CI = &get_instance(); + $CI->load->model('themes_model'); + $r = $CI->themes_model->get_theme_mode($CI->optionslib->get_option('option_theme')); + if ($r == 'dark') { + $server = 'https://{s}.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}{r}.png'; + } else { + $server = $CI->optionslib->get_option('option_map_tile_server'); + } + $attribution = $CI->optionslib->get_option('option_map_tile_server_copyright'); + return new TileLayer($server, $attribution, $r); + } + + /** + * @var string Tile server url, defaults to OpenStreetMap tile server + */ + protected $url; + + /** + * @var string Theme mode, defined light or dark mode + */ + protected $thememode; + + /** + * @var string Tile server attribution according to license + */ + protected $attributionText; + + /** + * @var string[] Tile server subdomains + */ + protected $subdomains; + + /** + * @var float Opacity + */ + protected $opacity = 1; + + /* + * @var int Max zoom value + */ + protected $maxZoom = 20; + + /* + * @var int Min zoom value + */ + protected $minZoom = 0; + + + /** + * @array $curlOptions Array of curl options + */ + protected $curlOptions = []; + + /** + * @bool $failCurlOnError If true, curl will throw an exception on error. + */ + protected $failCurlOnError = false; + + /** + * TileLayer constructor + * @param string $url tile server url with placeholders (`x`, `y`, `z`, `r`, `s`) + * @param string $attributionText tile server attribution text + * @param string $subdomains tile server subdomains + * @param array $curlOptions Array of curl options + * @param bool $failCurlOnError If true, curl will throw an exception on error. + */ + public function __construct(string $url, string $attributionText, string $thememode, string $subdomains = 'abc', array $curlOptions = [], bool $failCurlOnError = false) { + $this->url = $url; + $this->thememode = $thememode; + $this->attributionText = $attributionText; + $this->subdomains = \str_split($subdomains); + $this->curlOptions = $curlOptions; + $this->failCurlOnError = $failCurlOnError; + } + + /** + * Set opacity of the layer + * @param float $opacity Opacity value (0 to 1) + * @return $this Fluent interface + */ + public function setOpacity(float $opacity) { + $this->opacity = $opacity; + return $this; + } + + /** + * Set a max zoom value + * @param int $maxZoom + * @return $this Fluent interface + */ + public function setMaxZoom(int $maxZoom) { + $this->maxZoom = $maxZoom; + return $this; + } + + /** + * Get max zoom value + * @return int + */ + public function getMaxZoom(): int { + return $this->maxZoom; + } + + /** + * Set a min zoom value + * @param int $minZoom + * @return $this Fluent interface + */ + public function setMinZoom(int $minZoom) { + $this->minZoom = $minZoom; + return $this; + } + + /** + * Get min zoom value + * @return int + */ + public function getMinZoom(): int { + return $this->minZoom; + } + + /** + * Check if zoom value is between min zoom and max zoom + * @param int $zoom Zoom value to be checked + * @return int + */ + public function checkZoom(int $zoom): int { + return \min(\max($zoom, $this->minZoom), $this->maxZoom); + } + + /** + * Get tile url for coordinates and zoom level + * @param int $x x coordinate + * @param int $y y coordinate + * @param int $z zoom level + * @return string tile url + */ + public function getTileUrl(int $x, int $y, int $z): string { + return \str_replace( + ['{r}', '{s}', '{x}', '{y}', '{z}'], + ['', $this->getSubdomain($x, $y), $x, $y, $z], + $this->url + ); + } + + /** + * Select subdomain of tile server to prevent rate limiting on remote server + * @param int $x x coordinate + * @param int $y y coordinate + * @return string selected subdomain + * @see https://github.com/Leaflet/Leaflet/blob/main/src/layer/tile/TileLayer.js#L233 Leaflet implementation + */ + protected function getSubdomain(int $x, int $y): string { + return $this->subdomains[\abs($x + $y) % \sizeof($this->subdomains)]; + } + + /** + * Get attribution text + * @return string Attribution text + */ + public function getAttributionText(): string { + return $this->attributionText; + } + + /** + * Get an image tile + * @param float $x + * @param float $y + * @param int $z + * @param int $tileSize + * @param string $centerMap + * @return Image Image instance containing the tile + * @throws \Exception + */ + public function getTile(float $x, float $y, int $z, int $tileSize, string $centerMap): Image { + $CI = &get_instance(); + $namehash = substr(md5($x . $y . $z . $centerMap . $this->thememode), 0, 16); + $cacheKey = $namehash . ".png"; + $cacheConfig = $CI->config->item('cache_path') == '' ? APPPATH . 'cache/' : $CI->config->item('cache_path'); + $cacheDir = $cacheConfig . "tilecache/" . $z . "/" . $y . "/" . $x . "/"; + $cachePath = $cacheDir . $cacheKey; + + if (!is_dir($cacheDir)) { + mkdir($cacheDir, 0755, true); + } + + if (file_exists($cachePath)) { + $tile = Image::fromPath($cachePath); + } else { + $tile = Image::fromCurl($this->getTileUrl($x, $y, $z), $this->curlOptions, $this->failCurlOnError); + $tile->savePNG($cachePath); + } + if ($this->opacity == 0) { + return Image::newCanvas($tileSize, $tileSize); + } + + if ($this->opacity > 0 && $this->opacity < 1) { + $tile->setOpacity($this->opacity); + } + + return $tile; + } +} diff --git a/src/StaticMap/src/Utils/GeographicConverter.php b/src/StaticMap/src/Utils/GeographicConverter.php new file mode 100644 index 000000000..a4dd0c3fa --- /dev/null +++ b/src/StaticMap/src/Utils/GeographicConverter.php @@ -0,0 +1,119 @@ +getLat()); + $lat = \deg2rad($from->getLat()); + $lng = \deg2rad($from->getLng()); + $angle = \deg2rad($angle); + + return new LatLng( + \rad2deg( + \asin( + \sin($lat) * \cos($distance / $earthRadius) + + \cos($lat) * \sin($distance / $earthRadius) * \cos($angle) + ) + ), + \rad2deg( + $lng + \atan2( + \sin($angle) * \sin($distance / $earthRadius) * \cos($lat), + \cos($distance / $earthRadius) - \sin($lat) * \sin($lat) + ) + ) + ); + } + + /** + * Get distance in meters between two points. + * + * @param LatLng $from Starting coordinate + * @param LatLng $end Ending coordinate + * @return float + */ + public static function latLngToMeters(LatLng $from, LatLng $end): float + { + $earthRadius = self::earthRadiusAtLatitude($from->getLat()); + $lat1 = \deg2rad($from->getLat()); + $lat2 = \deg2rad($end->getLat()); + $lat = \deg2rad($end->getLat() - $from->getLat()); + $lng = \deg2rad($end->getLng() - $from->getLng()); + + $a = \pow(\sin($lat / 2), 2) + \cos($lat1) * \cos($lat2) * \pow(\sin($lng / 2), 2); + return \abs($earthRadius * 2 * \atan2(\sqrt($a), \sqrt(1 - $a))); + } + + + /** + * Get center between two coordinates. + * @param LatLng $point1 Vertical OpenStreetMap tile id + * @param LatLng $point2 Vertical pixel position on tile + * @return LatLng midpoint between the given coordinates + */ + public static function getCenter(LatLng $point1, LatLng $point2): LatLng + { + //return new LatLng(($point1->getLat() + $point2->getLat()) / 2, ($point1->getLng() + $point2->getLng()) / 2); + $dLng = \deg2rad($point2->getLng() - $point1->getLng()); + $lat1 = \deg2rad($point1->getLat()); + $lat2 = \deg2rad($point2->getLat()); + $lng1 = \deg2rad($point1->getLng()); + $bx = \cos($lat2) * \cos($dLng); + $by = \cos($lat2) * \sin($dLng); + return new LatLng( + \rad2deg(\atan2(\sin($lat1) + \sin($lat2), \sqrt(\pow(\cos($lat1) + $bx, 2) + \pow($by, 2)))), + \rad2deg($lng1 + \atan2($by, \cos($lat1) + $bx)) + ); + } + + /** + * Get bearing between two coordinates. + * @param LatLng $from Starting coordinate + * @param LatLng $to Ending coordinate + * + * @return float bearing in degrees + */ + public static function getBearing(LatLng $from, LatLng $to): float + { + $lat1 = deg2rad($from->getLat()); + $lat2 = deg2rad($to->getLat()); + $dLon = deg2rad($to->getLng() - $from->getLng()); + + $y = sin($dLon) * cos($lat2); + $x = cos($lat1) * sin($lat2) - sin($lat1) * cos($lat2) * cos($dLon); + return fmod(rad2deg(atan2($y, $x)) + 360, 360); + } +} diff --git a/src/StaticMap/src/Utils/Terminator.php b/src/StaticMap/src/Utils/Terminator.php new file mode 100644 index 000000000..bc0e30206 --- /dev/null +++ b/src/StaticMap/src/Utils/Terminator.php @@ -0,0 +1,79 @@ +resolution = $resolution; + } + + public function getTerminatorCoordinates($time = null) { + $date = $time ? new DateTime($time) : new DateTime(); + $julianDay = $this->julian($date); + $gst = $this->GMST($julianDay); + + $sunEclPos = $this->sunEclipticPosition($julianDay); + $eclObliq = $this->eclipticObliquity($julianDay); + $sunEqPos = $this->sunEquatorialPosition($sunEclPos['lambda'], $eclObliq); + + $latLng = []; + for ($i = 0; $i <= 720 * $this->resolution; $i++) { + $lng = -360 + $i / $this->resolution; + $ha = $this->hourAngle($lng, $sunEqPos, $gst); + $latLng[] = [$this->latitude($ha, $sunEqPos), $lng]; + } + + if ($sunEqPos['delta'] < 0) { + array_unshift($latLng, [90, -360]); + array_push($latLng, [90, 360]); + } else { + array_unshift($latLng, [-90, -360]); + array_push($latLng, [-90, 360]); + } + + return $latLng; + } + + private function julian($date) { + // Julian date calculation + return ($date->getTimestamp() / 86400) + 2440587.5; + } + + private function GMST($julianDay) { + $d = $julianDay - 2451545.0; + return fmod(18.697374558 + 24.06570982441908 * $d, 24); + } + + private function sunEclipticPosition($julianDay) { + $n = $julianDay - 2451545.0; + $L = fmod(280.460 + 0.9856474 * $n, 360); + $g = fmod(357.528 + 0.9856003 * $n, 360); + $lambda = $L + 1.915 * sin(deg2rad($g)) + 0.02 * sin(deg2rad(2 * $g)); + $R = 1.00014 - 0.01671 * cos(deg2rad($g)) - 0.0014 * cos(deg2rad(2 * $g)); + return ['lambda' => $lambda, 'R' => $R]; + } + + private function eclipticObliquity($julianDay) { + $n = $julianDay - 2451545.0; + $T = $n / 36525; + return 23.43929111 - $T * (46.836769 / 3600 - $T * (0.0001831 / 3600 + $T * (0.00200340 / 3600 - $T * (0.576e-6 / 3600 - $T * 4.34e-8 / 3600)))); + } + + private function sunEquatorialPosition($sunEclLng, $eclObliq) { + $alpha = rad2deg(atan(cos(deg2rad($eclObliq)) * tan(deg2rad($sunEclLng)))); + $delta = rad2deg(asin(sin(deg2rad($eclObliq)) * sin(deg2rad($sunEclLng)))); + $lQuadrant = floor($sunEclLng / 90) * 90; + $raQuadrant = floor($alpha / 90) * 90; + $alpha = $alpha + ($lQuadrant - $raQuadrant); + return ['alpha' => $alpha, 'delta' => $delta]; + } + + private function hourAngle($lng, $sunPos, $gst) { + $lst = $gst + $lng / 15; + return $lst * 15 - $sunPos['alpha']; + } + + private function latitude($ha, $sunPos) { + return rad2deg(atan(-cos(deg2rad($ha)) / tan(deg2rad($sunPos['delta'])))); + } +} diff --git a/src/StaticMap/src/XY.php b/src/StaticMap/src/XY.php new file mode 100644 index 000000000..639b3f155 --- /dev/null +++ b/src/StaticMap/src/XY.php @@ -0,0 +1,52 @@ +x = $x; + $this->y = $y; + } + + /** + * Get X + * @return int X + */ + public function getX(): int + { + return $this->x; + } + + /** + * Get Y + * @return int Y + */ + public function getY(): int + { + return $this->y; + } +} diff --git a/src/StaticMap/src/resources/circle-dot-red.png b/src/StaticMap/src/resources/circle-dot-red.png new file mode 100644 index 000000000..f5a3e93c2 Binary files /dev/null and b/src/StaticMap/src/resources/circle-dot-red.png differ diff --git a/src/StaticMap/src/resources/font.ttf b/src/StaticMap/src/resources/font.ttf new file mode 100644 index 000000000..e31d5fdd6 Binary files /dev/null and b/src/StaticMap/src/resources/font.ttf differ diff --git a/src/StaticMap/src/resources/watermark_static_map.png b/src/StaticMap/src/resources/watermark_static_map.png new file mode 100644 index 000000000..2cf5d3a3c Binary files /dev/null and b/src/StaticMap/src/resources/watermark_static_map.png differ